blob: b62f6f38411a7069a6e6e543eb4c40df1d530fee [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 Wolf10e5d702023-02-03 16:21:40 +0100282static int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
283 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400284{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500285 IO_CODE();
286
Jeff Codye2b82472017-04-07 16:55:26 -0400287 /* Do not set read_only if copy_on_read is enabled */
288 if (bs->copy_on_read && read_only) {
289 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
290 bdrv_get_device_or_node_name(bs));
291 return -EINVAL;
292 }
293
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400294 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200295 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
296 !ignore_allow_rdw)
297 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400298 error_setg(errp, "Node '%s' is read only",
299 bdrv_get_device_or_node_name(bs));
300 return -EPERM;
301 }
302
Jeff Cody45803a02017-04-07 16:55:29 -0400303 return 0;
304}
305
Kevin Wolfeaa24102018-10-12 11:27:41 +0200306/*
307 * Called by a driver that can only provide a read-only image.
308 *
309 * Returns 0 if the node is already read-only or it could switch the node to
310 * read-only because BDRV_O_AUTO_RDONLY is set.
311 *
312 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
313 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
314 * is not NULL, it is used as the error message for the Error object.
315 */
316int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
317 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400318{
319 int ret = 0;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500320 IO_CODE();
Jeff Cody45803a02017-04-07 16:55:29 -0400321
Kevin Wolfeaa24102018-10-12 11:27:41 +0200322 if (!(bs->open_flags & BDRV_O_RDWR)) {
323 return 0;
324 }
325 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
326 goto fail;
327 }
328
329 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400330 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200331 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400332 }
333
Kevin Wolfeaa24102018-10-12 11:27:41 +0200334 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200335
Jeff Codye2b82472017-04-07 16:55:26 -0400336 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200337
338fail:
339 error_setg(errp, "%s", errmsg ?: "Image is read-only");
340 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400341}
342
Max Reitz645ae7d2019-02-01 20:29:14 +0100343/*
344 * If @backing is empty, this function returns NULL without setting
345 * @errp. In all other cases, NULL will only be returned with @errp
346 * set.
347 *
348 * Therefore, a return value of NULL without @errp set means that
349 * there is no backing file; if @errp is set, there is one but its
350 * absolute filename cannot be generated.
351 */
352char *bdrv_get_full_backing_filename_from_filename(const char *backed,
353 const char *backing,
354 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100355{
Max Reitz645ae7d2019-02-01 20:29:14 +0100356 if (backing[0] == '\0') {
357 return NULL;
358 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
359 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100360 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
361 error_setg(errp, "Cannot use relative backing file names for '%s'",
362 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100363 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100364 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100365 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100366 }
367}
368
Max Reitz9f4793d2019-02-01 20:29:16 +0100369/*
370 * If @filename is empty or NULL, this function returns NULL without
371 * setting @errp. In all other cases, NULL will only be returned with
372 * @errp set.
373 */
374static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
375 const char *filename, Error **errp)
376{
Max Reitz8df68612019-02-01 20:29:23 +0100377 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100378
Max Reitz8df68612019-02-01 20:29:23 +0100379 if (!filename || filename[0] == '\0') {
380 return NULL;
381 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
382 return g_strdup(filename);
383 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100384
Max Reitz8df68612019-02-01 20:29:23 +0100385 dir = bdrv_dirname(relative_to, errp);
386 if (!dir) {
387 return NULL;
388 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100389
Max Reitz8df68612019-02-01 20:29:23 +0100390 full_name = g_strconcat(dir, filename, NULL);
391 g_free(dir);
392 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100393}
394
Max Reitz6b6833c2019-02-01 20:29:15 +0100395char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200396{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500397 GLOBAL_STATE_CODE();
Max Reitz9f4793d2019-02-01 20:29:16 +0100398 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200399}
400
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100401void bdrv_register(BlockDriver *bdrv)
402{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100403 assert(bdrv->format_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500404 GLOBAL_STATE_CODE();
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100405 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000406}
bellardb3380822004-03-14 21:38:54 +0000407
Markus Armbrustere4e99862014-10-07 13:59:03 +0200408BlockDriverState *bdrv_new(void)
409{
410 BlockDriverState *bs;
411 int i;
412
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500413 GLOBAL_STATE_CODE();
414
Markus Armbruster5839e532014-08-19 10:31:08 +0200415 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800416 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800417 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
418 QLIST_INIT(&bs->op_blockers[i]);
419 }
Stefan Hajnoczifa9185f2023-08-08 11:58:52 -0400420 qemu_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200421 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800422 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200423 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200424
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300425 qemu_co_queue_init(&bs->flush_queue);
426
Hanna Reitz0bc329f2021-08-12 10:41:44 +0200427 qemu_co_mutex_init(&bs->bsc_modify_lock);
428 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
429
Kevin Wolf0f122642018-03-28 18:29:18 +0200430 for (i = 0; i < bdrv_drain_all_count; i++) {
431 bdrv_drained_begin(bs);
432 }
433
Max Reitz2c1d04e2016-01-29 16:36:11 +0100434 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
435
bellardb3380822004-03-14 21:38:54 +0000436 return bs;
437}
438
Marc Mari88d88792016-08-12 09:27:03 -0400439static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000440{
441 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500442 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400443
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100444 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
445 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000446 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100447 }
bellardea2384d2004-08-01 21:59:26 +0000448 }
Marc Mari88d88792016-08-12 09:27:03 -0400449
bellardea2384d2004-08-01 21:59:26 +0000450 return NULL;
451}
452
Marc Mari88d88792016-08-12 09:27:03 -0400453BlockDriver *bdrv_find_format(const char *format_name)
454{
455 BlockDriver *drv1;
456 int i;
457
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500458 GLOBAL_STATE_CODE();
459
Marc Mari88d88792016-08-12 09:27:03 -0400460 drv1 = bdrv_do_find_format(format_name);
461 if (drv1) {
462 return drv1;
463 }
464
465 /* The driver isn't registered, maybe we need to load a module */
466 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
467 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200468 Error *local_err = NULL;
469 int rv = block_module_load(block_driver_modules[i].library_name,
470 &local_err);
471 if (rv > 0) {
472 return bdrv_do_find_format(format_name);
473 } else if (rv < 0) {
474 error_report_err(local_err);
475 }
Marc Mari88d88792016-08-12 09:27:03 -0400476 break;
477 }
478 }
Claudio Fontanac551fb02022-09-29 11:30:33 +0200479 return NULL;
Marc Mari88d88792016-08-12 09:27:03 -0400480}
481
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300482static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100483{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800484 static const char *whitelist_rw[] = {
485 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200486 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800487 };
488 static const char *whitelist_ro[] = {
489 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200490 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100491 };
492 const char **p;
493
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800494 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100495 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800496 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100497
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800498 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300499 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100500 return 1;
501 }
502 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800503 if (read_only) {
504 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300505 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800506 return 1;
507 }
508 }
509 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100510 return 0;
511}
512
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300513int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
514{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500515 GLOBAL_STATE_CODE();
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300516 return bdrv_format_is_whitelisted(drv->format_name, read_only);
517}
518
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000519bool bdrv_uses_whitelist(void)
520{
521 return use_bdrv_whitelist;
522}
523
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800524typedef struct CreateCo {
525 BlockDriver *drv;
526 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800527 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800528 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200529 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800530} CreateCo;
531
Emanuele Giuseppe Esposito741443e2022-11-28 09:23:36 -0500532int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename,
533 QemuOpts *opts, Error **errp)
Emanuele Giuseppe Esposito84bdf212022-11-28 09:23:30 -0500534{
535 int ret;
536 GLOBAL_STATE_CODE();
537 ERRP_GUARD();
538
539 if (!drv->bdrv_co_create_opts) {
540 error_setg(errp, "Driver '%s' does not support image creation",
541 drv->format_name);
542 return -ENOTSUP;
543 }
544
545 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp);
546 if (ret < 0 && !*errp) {
547 error_setg_errno(errp, -ret, "Could not create image");
548 }
549
550 return ret;
551}
552
Max Reitzfd171462020-01-22 17:45:29 +0100553/**
554 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
555 * least the given @minimum_size.
556 *
557 * On success, return @blk's actual length.
558 * Otherwise, return -errno.
559 */
Paolo Bonzini84569a72023-06-01 13:51:38 +0200560static int64_t coroutine_fn GRAPH_UNLOCKED
561create_file_fallback_truncate(BlockBackend *blk, int64_t minimum_size,
562 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100563{
564 Error *local_err = NULL;
565 int64_t size;
566 int ret;
567
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500568 GLOBAL_STATE_CODE();
569
Paolo Bonzini84569a72023-06-01 13:51:38 +0200570 ret = blk_co_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
571 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100572 if (ret < 0 && ret != -ENOTSUP) {
573 error_propagate(errp, local_err);
574 return ret;
575 }
576
Paolo Bonzini84569a72023-06-01 13:51:38 +0200577 size = blk_co_getlength(blk);
Max Reitzfd171462020-01-22 17:45:29 +0100578 if (size < 0) {
579 error_free(local_err);
580 error_setg_errno(errp, -size,
581 "Failed to inquire the new image file's length");
582 return size;
583 }
584
585 if (size < minimum_size) {
586 /* Need to grow the image, but we failed to do that */
587 error_propagate(errp, local_err);
588 return -ENOTSUP;
589 }
590
591 error_free(local_err);
592 local_err = NULL;
593
594 return size;
595}
596
597/**
598 * Helper function for bdrv_create_file_fallback(): Zero the first
599 * sector to remove any potentially pre-existing image header.
600 */
Paolo Bonzini881a4c52022-09-22 10:49:00 +0200601static int coroutine_fn
602create_file_fallback_zero_first_sector(BlockBackend *blk,
603 int64_t current_size,
604 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100605{
606 int64_t bytes_to_clear;
607 int ret;
608
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500609 GLOBAL_STATE_CODE();
610
Max Reitzfd171462020-01-22 17:45:29 +0100611 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
612 if (bytes_to_clear) {
Alberto Fariace47ff22022-10-13 14:37:02 +0200613 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
Max Reitzfd171462020-01-22 17:45:29 +0100614 if (ret < 0) {
615 error_setg_errno(errp, -ret,
616 "Failed to clear the new image's first sector");
617 return ret;
618 }
619 }
620
621 return 0;
622}
623
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200624/**
625 * Simple implementation of bdrv_co_create_opts for protocol drivers
626 * which only support creation via opening a file
627 * (usually existing raw storage device)
628 */
629int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
630 const char *filename,
631 QemuOpts *opts,
632 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100633{
634 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100635 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100636 int64_t size = 0;
637 char *buf = NULL;
638 PreallocMode prealloc;
639 Error *local_err = NULL;
640 int ret;
641
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -0500642 GLOBAL_STATE_CODE();
643
Max Reitzfd171462020-01-22 17:45:29 +0100644 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
645 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
646 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
647 PREALLOC_MODE_OFF, &local_err);
648 g_free(buf);
649 if (local_err) {
650 error_propagate(errp, local_err);
651 return -EINVAL;
652 }
653
654 if (prealloc != PREALLOC_MODE_OFF) {
655 error_setg(errp, "Unsupported preallocation mode '%s'",
656 PreallocMode_str(prealloc));
657 return -ENOTSUP;
658 }
659
Max Reitzeeea1fa2020-02-25 16:56:18 +0100660 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100661 qdict_put_str(options, "driver", drv->format_name);
662
Kevin Wolfbe1a7322023-01-26 18:24:31 +0100663 blk = blk_co_new_open(filename, NULL, options,
664 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
Max Reitzfd171462020-01-22 17:45:29 +0100665 if (!blk) {
Hanna Czenczek81624862023-07-20 16:00:24 +0200666 error_prepend(errp, "Protocol driver '%s' does not support creating "
667 "new images, so an existing image must be selected as "
668 "the target; however, opening the given target as an "
669 "existing image failed: ",
Max Reitzfd171462020-01-22 17:45:29 +0100670 drv->format_name);
671 return -EINVAL;
672 }
673
674 size = create_file_fallback_truncate(blk, size, errp);
675 if (size < 0) {
676 ret = size;
677 goto out;
678 }
679
680 ret = create_file_fallback_zero_first_sector(blk, size, errp);
681 if (ret < 0) {
682 goto out;
683 }
684
685 ret = 0;
686out:
Kevin Wolfb2ab5f52023-05-04 13:57:33 +0200687 blk_co_unref(blk);
Max Reitzfd171462020-01-22 17:45:29 +0100688 return ret;
689}
690
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500691int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts,
692 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200693{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100694 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200695 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100696 QDict *qdict;
697 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200698
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500699 GLOBAL_STATE_CODE();
700
Max Reitzb65a5e12015-02-05 13:58:12 -0500701 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200702 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000703 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200704 }
705
Stefano Garzarella729222a2021-03-08 17:12:32 +0100706 if (!drv->create_opts) {
707 error_setg(errp, "Driver '%s' does not support image creation",
708 drv->format_name);
709 return -ENOTSUP;
710 }
711
712 /*
713 * 'opts' contains a QemuOptsList with a combination of format and protocol
714 * default values.
715 *
716 * The format properly removes its options, but the default values remain
717 * in 'opts->list'. So if the protocol has options with the same name
718 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
719 * of the format, since for overlapping options, the format wins.
720 *
721 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
722 * only the set options, and then convert it back to QemuOpts, using the
723 * create_opts of the protocol. So the new QemuOpts, will contain only the
724 * protocol defaults.
725 */
726 qdict = qemu_opts_to_qdict(opts, NULL);
727 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
728 if (protocol_opts == NULL) {
729 ret = -EINVAL;
730 goto out;
731 }
732
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500733 ret = bdrv_co_create(drv, filename, protocol_opts, errp);
Stefano Garzarella729222a2021-03-08 17:12:32 +0100734out:
735 qemu_opts_del(protocol_opts);
736 qobject_unref(qdict);
737 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200738}
739
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300740int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
741{
742 Error *local_err = NULL;
743 int ret;
744
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500745 IO_CODE();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300746 assert(bs != NULL);
Kevin Wolf48aef792023-02-03 16:22:00 +0100747 assert_bdrv_graph_readable();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300748
749 if (!bs->drv) {
750 error_setg(errp, "Block node '%s' is not opened", bs->filename);
751 return -ENOMEDIUM;
752 }
753
754 if (!bs->drv->bdrv_co_delete_file) {
755 error_setg(errp, "Driver '%s' does not support image deletion",
756 bs->drv->format_name);
757 return -ENOTSUP;
758 }
759
760 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
761 if (ret < 0) {
762 error_propagate(errp, local_err);
763 }
764
765 return ret;
766}
767
Maxim Levitskya890f082020-12-17 19:09:03 +0200768void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
769{
770 Error *local_err = NULL;
771 int ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500772 IO_CODE();
Maxim Levitskya890f082020-12-17 19:09:03 +0200773
774 if (!bs) {
775 return;
776 }
777
778 ret = bdrv_co_delete_file(bs, &local_err);
779 /*
780 * ENOTSUP will happen if the block driver doesn't support
781 * the 'bdrv_co_delete_file' interface. This is a predictable
782 * scenario and shouldn't be reported back to the user.
783 */
784 if (ret == -ENOTSUP) {
785 error_free(local_err);
786 } else if (ret < 0) {
787 error_report_err(local_err);
788 }
789}
790
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100791/**
792 * Try to get @bs's logical and physical block size.
793 * On success, store them in @bsz struct and return 0.
794 * On failure return -errno.
795 * @bs must not be empty.
796 */
797int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
798{
799 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200800 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500801 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100802
803 if (drv && drv->bdrv_probe_blocksizes) {
804 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200805 } else if (filtered) {
806 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100807 }
808
809 return -ENOTSUP;
810}
811
812/**
813 * Try to get @bs's geometry (cyls, heads, sectors).
814 * On success, store them in @geo struct and return 0.
815 * On failure return -errno.
816 * @bs must not be empty.
817 */
818int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
819{
820 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200821 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500822 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100823
824 if (drv && drv->bdrv_probe_geometry) {
825 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200826 } else if (filtered) {
827 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100828 }
829
830 return -ENOTSUP;
831}
832
Jim Meyeringeba25052012-05-28 09:27:54 +0200833/*
834 * Create a uniquely-named empty temporary file.
Bin Meng69fbfff2022-10-10 12:04:31 +0800835 * Return the actual file name used upon success, otherwise NULL.
836 * This string should be freed with g_free() when not needed any longer.
837 *
838 * Note: creating a temporary file for the caller to (re)open is
839 * inherently racy. Use g_file_open_tmp() instead whenever practical.
Jim Meyeringeba25052012-05-28 09:27:54 +0200840 */
Bin Meng69fbfff2022-10-10 12:04:31 +0800841char *create_tmp_file(Error **errp)
Jim Meyeringeba25052012-05-28 09:27:54 +0200842{
bellardea2384d2004-08-01 21:59:26 +0000843 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000844 const char *tmpdir;
Bin Meng69fbfff2022-10-10 12:04:31 +0800845 g_autofree char *filename = NULL;
846
847 tmpdir = g_get_tmp_dir();
848#ifndef _WIN32
849 /*
850 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
851 *
852 * This function is used to create temporary disk images (like -snapshot),
853 * so the files can become very large. /tmp is often a tmpfs where as
854 * /var/tmp is usually on a disk, so more appropriate for disk images.
855 */
856 if (!g_strcmp0(tmpdir, "/tmp")) {
Amit Shah69bef792014-02-26 15:12:37 +0530857 tmpdir = "/var/tmp";
858 }
bellardd5249392004-08-03 21:14:23 +0000859#endif
Bin Meng69fbfff2022-10-10 12:04:31 +0800860
861 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir);
862 fd = g_mkstemp(filename);
bellardea2384d2004-08-01 21:59:26 +0000863 if (fd < 0) {
Bin Meng69fbfff2022-10-10 12:04:31 +0800864 error_setg_errno(errp, errno, "Could not open temporary file '%s'",
865 filename);
866 return NULL;
bellardea2384d2004-08-01 21:59:26 +0000867 }
Bin Meng6b6471e2022-10-10 12:04:30 +0800868 close(fd);
Bin Meng69fbfff2022-10-10 12:04:31 +0800869
870 return g_steal_pointer(&filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200871}
bellardea2384d2004-08-01 21:59:26 +0000872
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200873/*
874 * Detect host devices. By convention, /dev/cdrom[N] is always
875 * recognized as a host CDROM.
876 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200877static BlockDriver *find_hdev_driver(const char *filename)
878{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200879 int score_max = 0, score;
880 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500881 GLOBAL_STATE_CODE();
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200882
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100883 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200884 if (d->bdrv_probe_device) {
885 score = d->bdrv_probe_device(filename);
886 if (score > score_max) {
887 score_max = score;
888 drv = d;
889 }
890 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200891 }
892
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200893 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200894}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200895
Marc Mari88d88792016-08-12 09:27:03 -0400896static BlockDriver *bdrv_do_find_protocol(const char *protocol)
897{
898 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500899 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400900
901 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
902 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
903 return drv1;
904 }
905 }
906
907 return NULL;
908}
909
Kevin Wolf98289622013-07-10 15:47:39 +0200910BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500911 bool allow_protocol_prefix,
912 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200913{
914 BlockDriver *drv1;
915 char protocol[128];
916 int len;
917 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400918 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200919
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500920 GLOBAL_STATE_CODE();
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200921 /* TODO Drivers without bdrv_file_open must be specified explicitly */
922
Christoph Hellwig39508e72010-06-23 12:25:17 +0200923 /*
924 * XXX(hch): we really should not let host device detection
925 * override an explicit protocol specification, but moving this
926 * later breaks access to device names with colons in them.
927 * Thanks to the brain-dead persistent naming schemes on udev-
928 * based Linux systems those actually are quite common.
929 */
930 drv1 = find_hdev_driver(filename);
931 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200932 return drv1;
933 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200934
Kevin Wolf98289622013-07-10 15:47:39 +0200935 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100936 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200937 }
Kevin Wolf98289622013-07-10 15:47:39 +0200938
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000939 p = strchr(filename, ':');
940 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200941 len = p - filename;
942 if (len > sizeof(protocol) - 1)
943 len = sizeof(protocol) - 1;
944 memcpy(protocol, filename, len);
945 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400946
947 drv1 = bdrv_do_find_protocol(protocol);
948 if (drv1) {
949 return drv1;
950 }
951
952 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
953 if (block_driver_modules[i].protocol_name &&
954 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200955 int rv = block_module_load(block_driver_modules[i].library_name, errp);
956 if (rv > 0) {
957 drv1 = bdrv_do_find_protocol(protocol);
958 } else if (rv < 0) {
959 return NULL;
960 }
Marc Mari88d88792016-08-12 09:27:03 -0400961 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200962 }
963 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500964
Marc Mari88d88792016-08-12 09:27:03 -0400965 if (!drv1) {
966 error_setg(errp, "Unknown protocol '%s'", protocol);
967 }
968 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200969}
970
Markus Armbrusterc6684242014-11-20 16:27:10 +0100971/*
972 * Guess image format by probing its contents.
973 * This is not a good idea when your image is raw (CVE-2008-2004), but
974 * we do it anyway for backward compatibility.
975 *
976 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100977 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
978 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100979 * @filename is its filename.
980 *
981 * For all block drivers, call the bdrv_probe() method to get its
982 * probing score.
983 * Return the first block driver with the highest probing score.
984 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100985BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
986 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100987{
988 int score_max = 0, score;
989 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -0500990 IO_CODE();
Markus Armbrusterc6684242014-11-20 16:27:10 +0100991
992 QLIST_FOREACH(d, &bdrv_drivers, list) {
993 if (d->bdrv_probe) {
994 score = d->bdrv_probe(buf, buf_size, filename);
995 if (score > score_max) {
996 score_max = score;
997 drv = d;
998 }
999 }
1000 }
1001
1002 return drv;
1003}
1004
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001005static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +02001006 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +00001007{
Markus Armbrusterc6684242014-11-20 16:27:10 +01001008 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +01001009 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +01001010 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001011
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001012 GLOBAL_STATE_CODE();
1013
Kevin Wolf08a00552010-06-01 18:37:31 +02001014 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001015 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +01001016 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +02001017 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -07001018 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001019
Alberto Fariaa9262f52022-07-05 17:15:11 +01001020 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
bellard83f64092006-08-01 16:21:11 +00001021 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001022 error_setg_errno(errp, -ret, "Could not read image for determining its "
1023 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +02001024 *pdrv = NULL;
1025 return ret;
bellard83f64092006-08-01 16:21:11 +00001026 }
1027
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001028 drv = bdrv_probe_all(buf, sizeof(buf), filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001029 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001030 error_setg(errp, "Could not determine image format: No compatible "
1031 "driver found");
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001032 *pdrv = NULL;
1033 return -ENOENT;
Stefan Weilc98ac352010-07-21 21:51:51 +02001034 }
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001035
Stefan Weilc98ac352010-07-21 21:51:51 +02001036 *pdrv = drv;
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001037 return 0;
bellardea2384d2004-08-01 21:59:26 +00001038}
1039
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001040/**
1041 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001042 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001043 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001044int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs,
1045 int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001046{
1047 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05001048 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01001049 assert_bdrv_graph_readable();
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001050
Max Reitzd470ad42017-11-10 21:31:09 +01001051 if (!drv) {
1052 return -ENOMEDIUM;
1053 }
1054
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001055 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001056 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001057 return 0;
1058
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001059 /* query actual device if possible, otherwise just trust the hint */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001060 if (drv->bdrv_co_getlength) {
1061 int64_t length = drv->bdrv_co_getlength(bs);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001062 if (length < 0) {
1063 return length;
1064 }
Fam Zheng7e382002013-11-06 19:48:06 +08001065 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001066 }
1067
1068 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001069
1070 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1071 return -EFBIG;
1072 }
1073
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001074 return 0;
1075}
1076
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001077/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001078 * Combines a QDict of new block driver @options with any missing options taken
1079 * from @old_options, so that leaving out an option defaults to its old value.
1080 */
1081static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1082 QDict *old_options)
1083{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001084 GLOBAL_STATE_CODE();
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001085 if (bs->drv && bs->drv->bdrv_join_options) {
1086 bs->drv->bdrv_join_options(options, old_options);
1087 } else {
1088 qdict_join(options, old_options, false);
1089 }
1090}
1091
Alberto Garcia543770b2018-09-06 12:37:09 +03001092static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1093 int open_flags,
1094 Error **errp)
1095{
1096 Error *local_err = NULL;
1097 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1098 BlockdevDetectZeroesOptions detect_zeroes =
1099 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1100 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001101 GLOBAL_STATE_CODE();
Alberto Garcia543770b2018-09-06 12:37:09 +03001102 g_free(value);
1103 if (local_err) {
1104 error_propagate(errp, local_err);
1105 return detect_zeroes;
1106 }
1107
1108 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1109 !(open_flags & BDRV_O_UNMAP))
1110 {
1111 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1112 "without setting discard operation to unmap");
1113 }
1114
1115 return detect_zeroes;
1116}
1117
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001118/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001119 * Set open flags for aio engine
1120 *
1121 * Return 0 on success, -1 if the engine specified is invalid
1122 */
1123int bdrv_parse_aio(const char *mode, int *flags)
1124{
1125 if (!strcmp(mode, "threads")) {
1126 /* do nothing, default */
1127 } else if (!strcmp(mode, "native")) {
1128 *flags |= BDRV_O_NATIVE_AIO;
1129#ifdef CONFIG_LINUX_IO_URING
1130 } else if (!strcmp(mode, "io_uring")) {
1131 *flags |= BDRV_O_IO_URING;
1132#endif
1133 } else {
1134 return -1;
1135 }
1136
1137 return 0;
1138}
1139
1140/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001141 * Set open flags for a given discard mode
1142 *
1143 * Return 0 on success, -1 if the discard mode was invalid.
1144 */
1145int bdrv_parse_discard_flags(const char *mode, int *flags)
1146{
1147 *flags &= ~BDRV_O_UNMAP;
1148
1149 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1150 /* do nothing */
1151 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1152 *flags |= BDRV_O_UNMAP;
1153 } else {
1154 return -1;
1155 }
1156
1157 return 0;
1158}
1159
1160/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001161 * Set open flags for a given cache mode
1162 *
1163 * Return 0 on success, -1 if the cache mode was invalid.
1164 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001165int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001166{
1167 *flags &= ~BDRV_O_CACHE_MASK;
1168
1169 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001170 *writethrough = false;
1171 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001172 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001173 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001174 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001175 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001176 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001177 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001178 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001179 *flags |= BDRV_O_NO_FLUSH;
1180 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001181 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001182 } else {
1183 return -1;
1184 }
1185
1186 return 0;
1187}
1188
Kevin Wolfb5411552017-01-17 15:56:16 +01001189static char *bdrv_child_get_parent_desc(BdrvChild *c)
1190{
1191 BlockDriverState *parent = c->opaque;
Vladimir Sementsov-Ogievskiy2c0a3ac2021-06-01 10:52:15 +03001192 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
Kevin Wolfb5411552017-01-17 15:56:16 +01001193}
1194
Kevin Wolf20018e12016-05-23 18:46:59 +02001195static void bdrv_child_cb_drained_begin(BdrvChild *child)
1196{
1197 BlockDriverState *bs = child->opaque;
Kevin Wolfa82a3bd2022-11-18 18:41:07 +01001198 bdrv_do_drained_begin_quiesce(bs, NULL);
Kevin Wolf20018e12016-05-23 18:46:59 +02001199}
1200
Kevin Wolf89bd0302018-03-22 14:11:20 +01001201static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1202{
1203 BlockDriverState *bs = child->opaque;
Kevin Wolf299403a2022-11-18 18:41:05 +01001204 return bdrv_drain_poll(bs, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001205}
1206
Kevin Wolf2f65df62022-11-18 18:40:59 +01001207static void bdrv_child_cb_drained_end(BdrvChild *child)
Kevin Wolf20018e12016-05-23 18:46:59 +02001208{
1209 BlockDriverState *bs = child->opaque;
Kevin Wolf2f65df62022-11-18 18:40:59 +01001210 bdrv_drained_end(bs);
Kevin Wolf20018e12016-05-23 18:46:59 +02001211}
1212
Kevin Wolf38701b62017-05-04 18:52:39 +02001213static int bdrv_child_cb_inactivate(BdrvChild *child)
1214{
1215 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001216 GLOBAL_STATE_CODE();
Kevin Wolf38701b62017-05-04 18:52:39 +02001217 assert(bs->open_flags & BDRV_O_INACTIVE);
1218 return 0;
1219}
1220
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001221static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx,
1222 GHashTable *visited, Transaction *tran,
1223 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02001224{
1225 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001226 return bdrv_change_aio_context(bs, ctx, visited, tran, errp);
Kevin Wolf53a7d042019-05-06 19:17:59 +02001227}
1228
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001229/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001230 * Returns the options and flags that a temporary snapshot should get, based on
1231 * the originally requested flags (the originally requested image will have
1232 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001233 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001234static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1235 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001236{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001237 GLOBAL_STATE_CODE();
Kevin Wolf73176be2016-03-07 13:02:15 +01001238 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1239
1240 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001241 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1242 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001243
Kevin Wolf3f486862019-04-04 17:04:43 +02001244 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001245 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001246 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001247
Kevin Wolf41869042016-06-16 12:59:30 +02001248 /* aio=native doesn't work for cache.direct=off, so disable it for the
1249 * temporary snapshot */
1250 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001251}
1252
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001253static void bdrv_backing_attach(BdrvChild *c)
1254{
1255 BlockDriverState *parent = c->opaque;
1256 BlockDriverState *backing_hd = c->bs;
1257
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001258 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001259 assert(!parent->backing_blocker);
1260 error_setg(&parent->backing_blocker,
1261 "node is used as backing hd of '%s'",
1262 bdrv_get_device_or_node_name(parent));
1263
Max Reitzf30c66b2019-02-01 20:29:05 +01001264 bdrv_refresh_filename(backing_hd);
1265
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001266 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001267
1268 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1269 /* Otherwise we won't be able to commit or stream */
1270 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1271 parent->backing_blocker);
1272 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1273 parent->backing_blocker);
1274 /*
1275 * We do backup in 3 ways:
1276 * 1. drive backup
1277 * The target bs is new opened, and the source is top BDS
1278 * 2. blockdev backup
1279 * Both the source and the target are top BDSes.
1280 * 3. internal backup(used for block replication)
1281 * Both the source and the target are backing file
1282 *
1283 * In case 1 and 2, neither the source nor the target is the backing file.
1284 * In case 3, we will block the top BDS, so there is only one block job
1285 * for the top BDS and its backing chain.
1286 */
1287 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1288 parent->backing_blocker);
1289 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1290 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001291}
Kevin Wolfd736f112017-12-18 16:05:48 +01001292
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001293static void bdrv_backing_detach(BdrvChild *c)
1294{
1295 BlockDriverState *parent = c->opaque;
1296
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001297 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001298 assert(parent->backing_blocker);
1299 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1300 error_free(parent->backing_blocker);
1301 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001302}
Kevin Wolfd736f112017-12-18 16:05:48 +01001303
Kevin Wolf6858eba2017-06-29 19:32:21 +02001304static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1305 const char *filename, Error **errp)
1306{
1307 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001308 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001309 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001310 GLOBAL_STATE_CODE();
Kevin Wolf6858eba2017-06-29 19:32:21 +02001311
Alberto Garciae94d3db2018-11-12 16:00:34 +02001312 if (read_only) {
1313 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001314 if (ret < 0) {
1315 return ret;
1316 }
1317 }
1318
Kevin Wolf6858eba2017-06-29 19:32:21 +02001319 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001320 base->drv ? base->drv->format_name : "",
1321 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001322 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001323 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001324 }
1325
Alberto Garciae94d3db2018-11-12 16:00:34 +02001326 if (read_only) {
1327 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001328 }
1329
Kevin Wolf6858eba2017-06-29 19:32:21 +02001330 return ret;
1331}
1332
Max Reitzfae8bd32020-05-13 13:05:20 +02001333/*
1334 * Returns the options and flags that a generic child of a BDS should
1335 * get, based on the given options and flags for the parent BDS.
1336 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001337static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1338 int *child_flags, QDict *child_options,
1339 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001340{
1341 int flags = parent_flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001342 GLOBAL_STATE_CODE();
Max Reitzfae8bd32020-05-13 13:05:20 +02001343
1344 /*
1345 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1346 * Generally, the question to answer is: Should this child be
1347 * format-probed by default?
1348 */
1349
1350 /*
1351 * Pure and non-filtered data children of non-format nodes should
1352 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1353 * set). This only affects a very limited set of drivers (namely
1354 * quorum and blkverify when this comment was written).
1355 * Force-clear BDRV_O_PROTOCOL then.
1356 */
1357 if (!parent_is_format &&
1358 (role & BDRV_CHILD_DATA) &&
1359 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1360 {
1361 flags &= ~BDRV_O_PROTOCOL;
1362 }
1363
1364 /*
1365 * All children of format nodes (except for COW children) and all
1366 * metadata children in general should never be format-probed.
1367 * Force-set BDRV_O_PROTOCOL then.
1368 */
1369 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1370 (role & BDRV_CHILD_METADATA))
1371 {
1372 flags |= BDRV_O_PROTOCOL;
1373 }
1374
1375 /*
1376 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1377 * the parent.
1378 */
1379 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1380 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1381 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1382
1383 if (role & BDRV_CHILD_COW) {
1384 /* backing files are opened read-only by default */
1385 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1386 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1387 } else {
1388 /* Inherit the read-only option from the parent if it's not set */
1389 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1390 qdict_copy_default(child_options, parent_options,
1391 BDRV_OPT_AUTO_READ_ONLY);
1392 }
1393
1394 /*
1395 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1396 * can default to enable it on lower layers regardless of the
1397 * parent option.
1398 */
1399 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1400
1401 /* Clear flags that only apply to the top layer */
1402 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1403
1404 if (role & BDRV_CHILD_METADATA) {
1405 flags &= ~BDRV_O_NO_IO;
1406 }
1407 if (role & BDRV_CHILD_COW) {
1408 flags &= ~BDRV_O_TEMPORARY;
1409 }
1410
1411 *child_flags = flags;
1412}
1413
Kevin Wolf303de472022-12-07 14:18:35 +01001414static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child)
Max Reitzca2f1232020-05-13 13:05:22 +02001415{
1416 BlockDriverState *bs = child->opaque;
1417
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001418 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001419 QLIST_INSERT_HEAD(&bs->children, child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001420 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) {
1421 /*
1422 * Here we handle filters and block/raw-format.c when it behave like
1423 * filter. They generally have a single PRIMARY child, which is also the
1424 * FILTERED child, and that they may have multiple more children, which
1425 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1426 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1427 * into bs->backing on exceptional cases; and bs->backing will be
1428 * nothing else.
1429 */
1430 assert(!(child->role & BDRV_CHILD_COW));
1431 if (child->role & BDRV_CHILD_PRIMARY) {
1432 assert(child->role & BDRV_CHILD_FILTERED);
1433 assert(!bs->backing);
1434 assert(!bs->file);
Hanna Reitza2253692021-11-15 15:53:58 +01001435
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001436 if (bs->drv->filtered_child_is_backing) {
1437 bs->backing = child;
1438 } else {
1439 bs->file = child;
1440 }
1441 } else {
1442 assert(!(child->role & BDRV_CHILD_FILTERED));
1443 }
1444 } else if (child->role & BDRV_CHILD_COW) {
1445 assert(bs->drv->supports_backing);
1446 assert(!(child->role & BDRV_CHILD_PRIMARY));
1447 assert(!bs->backing);
1448 bs->backing = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001449 bdrv_backing_attach(child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001450 } else if (child->role & BDRV_CHILD_PRIMARY) {
1451 assert(!bs->file);
1452 bs->file = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001453 }
Max Reitzca2f1232020-05-13 13:05:22 +02001454}
1455
Kevin Wolf303de472022-12-07 14:18:35 +01001456static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child)
Max Reitz48e08282020-05-13 13:05:23 +02001457{
1458 BlockDriverState *bs = child->opaque;
1459
1460 if (child->role & BDRV_CHILD_COW) {
1461 bdrv_backing_detach(child);
1462 }
1463
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001464 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001465 QLIST_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001466 if (child == bs->backing) {
1467 assert(child != bs->file);
1468 bs->backing = NULL;
1469 } else if (child == bs->file) {
1470 bs->file = NULL;
1471 }
Max Reitz48e08282020-05-13 13:05:23 +02001472}
1473
Max Reitz43483552020-05-13 13:05:24 +02001474static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1475 const char *filename, Error **errp)
1476{
1477 if (c->role & BDRV_CHILD_COW) {
1478 return bdrv_backing_update_filename(c, base, filename, errp);
1479 }
1480 return 0;
1481}
1482
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001483AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001484{
1485 BlockDriverState *bs = c->opaque;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05001486 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001487
1488 return bdrv_get_aio_context(bs);
1489}
1490
Max Reitz43483552020-05-13 13:05:24 +02001491const BdrvChildClass child_of_bds = {
1492 .parent_is_bds = true,
1493 .get_parent_desc = bdrv_child_get_parent_desc,
1494 .inherit_options = bdrv_inherited_options,
1495 .drained_begin = bdrv_child_cb_drained_begin,
1496 .drained_poll = bdrv_child_cb_drained_poll,
1497 .drained_end = bdrv_child_cb_drained_end,
1498 .attach = bdrv_child_cb_attach,
1499 .detach = bdrv_child_cb_detach,
1500 .inactivate = bdrv_child_cb_inactivate,
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001501 .change_aio_ctx = bdrv_child_cb_change_aio_ctx,
Max Reitz43483552020-05-13 13:05:24 +02001502 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001503 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001504};
1505
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001506AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1507{
Hanna Reitzd5f8d792022-11-07 16:13:19 +01001508 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001509 return c->klass->get_parent_aio_context(c);
1510}
1511
Kevin Wolf7b272452012-11-12 17:05:39 +01001512static int bdrv_open_flags(BlockDriverState *bs, int flags)
1513{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001514 int open_flags = flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001515 GLOBAL_STATE_CODE();
Kevin Wolf7b272452012-11-12 17:05:39 +01001516
1517 /*
1518 * Clear flags that are internal to the block layer before opening the
1519 * image.
1520 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001521 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001522
Kevin Wolf7b272452012-11-12 17:05:39 +01001523 return open_flags;
1524}
1525
Kevin Wolf91a097e2015-05-08 17:49:53 +02001526static void update_flags_from_options(int *flags, QemuOpts *opts)
1527{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001528 GLOBAL_STATE_CODE();
1529
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001530 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001531
Alberto Garcia57f9db92018-09-06 12:37:06 +03001532 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001533 *flags |= BDRV_O_NO_FLUSH;
1534 }
1535
Alberto Garcia57f9db92018-09-06 12:37:06 +03001536 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001537 *flags |= BDRV_O_NOCACHE;
1538 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001539
Alberto Garcia57f9db92018-09-06 12:37:06 +03001540 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001541 *flags |= BDRV_O_RDWR;
1542 }
1543
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001544 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1545 *flags |= BDRV_O_AUTO_RDONLY;
1546 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001547}
1548
1549static void update_options_from_flags(QDict *options, int flags)
1550{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001551 GLOBAL_STATE_CODE();
Kevin Wolf91a097e2015-05-08 17:49:53 +02001552 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001553 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001554 }
1555 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001556 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1557 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001558 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001559 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001560 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001561 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001562 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1563 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1564 flags & BDRV_O_AUTO_RDONLY);
1565 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001566}
1567
Kevin Wolf636ea372014-01-24 14:11:52 +01001568static void bdrv_assign_node_name(BlockDriverState *bs,
1569 const char *node_name,
1570 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001571{
Jeff Cody15489c72015-10-12 19:36:50 -04001572 char *gen_node_name = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001573 GLOBAL_STATE_CODE();
Benoît Canet6913c0c2014-01-23 21:31:33 +01001574
Jeff Cody15489c72015-10-12 19:36:50 -04001575 if (!node_name) {
1576 node_name = gen_node_name = id_generate(ID_BLOCK);
1577 } else if (!id_wellformed(node_name)) {
1578 /*
1579 * Check for empty string or invalid characters, but not if it is
1580 * generated (generated names use characters not available to the user)
1581 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001582 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001583 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001584 }
1585
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001586 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001587 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001588 error_setg(errp, "node-name=%s is conflicting with a device id",
1589 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001590 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001591 }
1592
Benoît Canet6913c0c2014-01-23 21:31:33 +01001593 /* takes care of avoiding duplicates node names */
1594 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001595 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001596 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001597 }
1598
Kevin Wolf824808d2018-07-04 13:28:29 +02001599 /* Make sure that the node name isn't truncated */
1600 if (strlen(node_name) >= sizeof(bs->node_name)) {
1601 error_setg(errp, "Node name too long");
1602 goto out;
1603 }
1604
Benoît Canet6913c0c2014-01-23 21:31:33 +01001605 /* copy node name into the bs and insert it into the graph list */
1606 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1607 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001608out:
1609 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001610}
1611
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001612/*
1613 * The caller must always hold @bs AioContext lock, because this function calls
1614 * bdrv_refresh_total_sectors() which polls when called from non-coroutine
1615 * context.
1616 */
Kevin Wolf1a30b0f2023-05-04 13:57:38 +02001617static int no_coroutine_fn GRAPH_UNLOCKED
1618bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, const char *node_name,
1619 QDict *options, int open_flags, Error **errp)
Kevin Wolf01a56502017-01-18 15:51:56 +01001620{
Kevin Wolf8dc8a602023-05-25 14:47:10 +02001621 AioContext *ctx;
Kevin Wolf01a56502017-01-18 15:51:56 +01001622 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001623 int i, ret;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001624 GLOBAL_STATE_CODE();
Kevin Wolf01a56502017-01-18 15:51:56 +01001625
1626 bdrv_assign_node_name(bs, node_name, &local_err);
1627 if (local_err) {
1628 error_propagate(errp, local_err);
1629 return -EINVAL;
1630 }
1631
1632 bs->drv = drv;
1633 bs->opaque = g_malloc0(drv->instance_size);
1634
1635 if (drv->bdrv_file_open) {
1636 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1637 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001638 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001639 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001640 } else {
1641 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001642 }
1643
1644 if (ret < 0) {
1645 if (local_err) {
1646 error_propagate(errp, local_err);
1647 } else if (bs->filename[0]) {
1648 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1649 } else {
1650 error_setg_errno(errp, -ret, "Could not open image");
1651 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001652 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001653 }
1654
Stefan Hajnoczie8b65352022-10-13 14:59:01 -04001655 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK));
1656 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK));
1657
1658 /*
1659 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1660 * drivers that pass read/write requests through to a child the trouble of
1661 * declaring support explicitly.
1662 *
1663 * Drivers must not propagate this flag accidentally when they initiate I/O
1664 * to a bounce buffer. That case should be rare though.
1665 */
1666 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF;
1667 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF;
1668
Kevin Wolf8dc8a602023-05-25 14:47:10 +02001669 /* Get the context after .bdrv_open, it can change the context */
1670 ctx = bdrv_get_aio_context(bs);
1671 aio_context_acquire(ctx);
1672
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01001673 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf01a56502017-01-18 15:51:56 +01001674 if (ret < 0) {
1675 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Kevin Wolf8dc8a602023-05-25 14:47:10 +02001676 aio_context_release(ctx);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001677 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001678 }
1679
Kevin Wolfe19b1572023-05-04 13:57:50 +02001680 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001681 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolfe19b1572023-05-04 13:57:50 +02001682 bdrv_graph_rdunlock_main_loop();
Kevin Wolf8dc8a602023-05-25 14:47:10 +02001683 aio_context_release(ctx);
Kevin Wolfe19b1572023-05-04 13:57:50 +02001684
Kevin Wolf01a56502017-01-18 15:51:56 +01001685 if (local_err) {
1686 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001687 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001688 }
1689
1690 assert(bdrv_opt_mem_align(bs) != 0);
1691 assert(bdrv_min_mem_align(bs) != 0);
1692 assert(is_power_of_2(bs->bl.request_alignment));
1693
Kevin Wolf0f122642018-03-28 18:29:18 +02001694 for (i = 0; i < bs->quiesce_counter; i++) {
Kevin Wolf5e8ac212022-11-18 18:40:58 +01001695 if (drv->bdrv_drain_begin) {
1696 drv->bdrv_drain_begin(bs);
Kevin Wolf0f122642018-03-28 18:29:18 +02001697 }
1698 }
1699
Kevin Wolf01a56502017-01-18 15:51:56 +01001700 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001701open_failed:
1702 bs->drv = NULL;
1703 if (bs->file != NULL) {
Kevin Wolf32a8aba2023-09-11 11:46:19 +02001704 bdrv_graph_wrlock(NULL);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001705 bdrv_unref_child(bs, bs->file);
Kevin Wolf32a8aba2023-09-11 11:46:19 +02001706 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001707 assert(!bs->file);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001708 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001709 g_free(bs->opaque);
1710 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001711 return ret;
1712}
1713
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001714/*
1715 * Create and open a block node.
1716 *
1717 * @options is a QDict of options to pass to the block drivers, or NULL for an
1718 * empty set of options. The reference to the QDict belongs to the block layer
1719 * after the call (even on failure), so if the caller intends to reuse the
1720 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1721 */
1722BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1723 const char *node_name,
1724 QDict *options, int flags,
1725 Error **errp)
Kevin Wolf680c7f92017-01-18 17:16:41 +01001726{
1727 BlockDriverState *bs;
1728 int ret;
1729
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001730 GLOBAL_STATE_CODE();
1731
Kevin Wolf680c7f92017-01-18 17:16:41 +01001732 bs = bdrv_new();
1733 bs->open_flags = flags;
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001734 bs->options = options ?: qdict_new();
1735 bs->explicit_options = qdict_clone_shallow(bs->options);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001736 bs->opaque = NULL;
1737
1738 update_options_from_flags(bs->options, flags);
1739
1740 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1741 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001742 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001743 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001744 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001745 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001746 bdrv_unref(bs);
1747 return NULL;
1748 }
1749
1750 return bs;
1751}
1752
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001753/* Create and open a block node. */
1754BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1755 int flags, Error **errp)
1756{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001757 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001758 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1759}
1760
Kevin Wolfc5f30142016-10-06 11:33:17 +02001761QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001762 .name = "bdrv_common",
1763 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1764 .desc = {
1765 {
1766 .name = "node-name",
1767 .type = QEMU_OPT_STRING,
1768 .help = "Node name of the block device node",
1769 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001770 {
1771 .name = "driver",
1772 .type = QEMU_OPT_STRING,
1773 .help = "Block driver to use for the node",
1774 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001775 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001776 .name = BDRV_OPT_CACHE_DIRECT,
1777 .type = QEMU_OPT_BOOL,
1778 .help = "Bypass software writeback cache on the host",
1779 },
1780 {
1781 .name = BDRV_OPT_CACHE_NO_FLUSH,
1782 .type = QEMU_OPT_BOOL,
1783 .help = "Ignore flush requests",
1784 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001785 {
1786 .name = BDRV_OPT_READ_ONLY,
1787 .type = QEMU_OPT_BOOL,
1788 .help = "Node is opened in read-only mode",
1789 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001790 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001791 .name = BDRV_OPT_AUTO_READ_ONLY,
1792 .type = QEMU_OPT_BOOL,
1793 .help = "Node can become read-only if opening read-write fails",
1794 },
1795 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001796 .name = "detect-zeroes",
1797 .type = QEMU_OPT_STRING,
1798 .help = "try to optimize zero writes (off, on, unmap)",
1799 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001800 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001801 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001802 .type = QEMU_OPT_STRING,
1803 .help = "discard operation (ignore/off, unmap/on)",
1804 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001805 {
1806 .name = BDRV_OPT_FORCE_SHARE,
1807 .type = QEMU_OPT_BOOL,
1808 .help = "always accept other writers (default: off)",
1809 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001810 { /* end of list */ }
1811 },
1812};
1813
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001814QemuOptsList bdrv_create_opts_simple = {
1815 .name = "simple-create-opts",
1816 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001817 .desc = {
1818 {
1819 .name = BLOCK_OPT_SIZE,
1820 .type = QEMU_OPT_SIZE,
1821 .help = "Virtual disk size"
1822 },
1823 {
1824 .name = BLOCK_OPT_PREALLOC,
1825 .type = QEMU_OPT_STRING,
1826 .help = "Preallocation mode (allowed values: off)"
1827 },
1828 { /* end of list */ }
1829 }
1830};
1831
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001832/*
Kevin Wolf57915332010-04-14 15:24:50 +02001833 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001834 *
1835 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001836 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001837static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001838 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001839{
1840 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001841 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001842 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001843 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001844 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001845 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001846 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001847 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001848 bool ro;
Kevin Wolf57915332010-04-14 15:24:50 +02001849
Paolo Bonzini64058752012-05-08 16:51:49 +02001850 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001851 assert(options != NULL && bs->options != options);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001852 GLOBAL_STATE_CODE();
Kevin Wolf57915332010-04-14 15:24:50 +02001853
Kevin Wolf62392eb2015-04-24 16:38:02 +02001854 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001855 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001856 ret = -EINVAL;
1857 goto fail_opts;
1858 }
1859
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001860 update_flags_from_options(&bs->open_flags, opts);
1861
Kevin Wolf62392eb2015-04-24 16:38:02 +02001862 driver_name = qemu_opt_get(opts, "driver");
1863 drv = bdrv_find_format(driver_name);
1864 assert(drv != NULL);
1865
Fam Zheng5a9347c2017-05-03 00:35:37 +08001866 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1867
1868 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1869 error_setg(errp,
1870 BDRV_OPT_FORCE_SHARE
1871 "=on can only be used with read-only images");
1872 ret = -EINVAL;
1873 goto fail_opts;
1874 }
1875
Kevin Wolf45673672013-04-22 17:48:40 +02001876 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001877 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001878 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001879 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001880 /*
1881 * Caution: while qdict_get_try_str() is fine, getting
1882 * non-string types would require more care. When @options
1883 * come from -blockdev or blockdev_add, its members are typed
1884 * according to the QAPI schema, but when they come from
1885 * -drive, they're all QString.
1886 */
Kevin Wolf45673672013-04-22 17:48:40 +02001887 filename = qdict_get_try_str(options, "filename");
1888 }
1889
Max Reitz4a008242017-04-13 18:06:24 +02001890 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001891 error_setg(errp, "The '%s' block driver requires a file name",
1892 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001893 ret = -EINVAL;
1894 goto fail_opts;
1895 }
1896
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001897 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1898 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001899
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001900 ro = bdrv_is_read_only(bs);
1901
1902 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1903 if (!ro && bdrv_is_whitelisted(drv, true)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001904 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1905 } else {
1906 ret = -ENOTSUP;
1907 }
1908 if (ret < 0) {
1909 error_setg(errp,
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001910 !ro && bdrv_is_whitelisted(drv, true)
Kevin Wolf8be25de2019-01-22 13:15:31 +01001911 ? "Driver '%s' can only be used for read-only devices"
1912 : "Driver '%s' is not whitelisted",
1913 drv->format_name);
1914 goto fail_opts;
1915 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001916 }
Kevin Wolf57915332010-04-14 15:24:50 +02001917
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001918 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001919 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001920
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001921 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001922 if (!ro) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001923 bdrv_enable_copy_on_read(bs);
1924 } else {
1925 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001926 ret = -EINVAL;
1927 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001928 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001929 }
1930
Alberto Garcia415bbca2018-10-03 13:23:13 +03001931 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001932 if (discard != NULL) {
1933 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1934 error_setg(errp, "Invalid discard option");
1935 ret = -EINVAL;
1936 goto fail_opts;
1937 }
1938 }
1939
Alberto Garcia543770b2018-09-06 12:37:09 +03001940 bs->detect_zeroes =
1941 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1942 if (local_err) {
1943 error_propagate(errp, local_err);
1944 ret = -EINVAL;
1945 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001946 }
1947
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001948 if (filename != NULL) {
1949 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1950 } else {
1951 bs->filename[0] = '\0';
1952 }
Max Reitz91af7012014-07-18 20:24:56 +02001953 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001954
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001955 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001956 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001957 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001958
Kevin Wolf01a56502017-01-18 15:51:56 +01001959 assert(!drv->bdrv_file_open || file == NULL);
1960 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001961 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001962 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001963 }
1964
Kevin Wolf18edf282015-04-07 17:12:56 +02001965 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001966 return 0;
1967
Kevin Wolf18edf282015-04-07 17:12:56 +02001968fail_opts:
1969 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001970 return ret;
1971}
1972
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001973static QDict *parse_json_filename(const char *filename, Error **errp)
1974{
1975 QObject *options_obj;
1976 QDict *options;
1977 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001978 GLOBAL_STATE_CODE();
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001979
1980 ret = strstart(filename, "json:", &filename);
1981 assert(ret);
1982
Markus Armbruster5577fff2017-02-28 22:26:59 +01001983 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001984 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001985 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001986 return NULL;
1987 }
1988
Max Reitz7dc847e2018-02-24 16:40:29 +01001989 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001990 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001991 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001992 error_setg(errp, "Invalid JSON object given");
1993 return NULL;
1994 }
1995
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001996 qdict_flatten(options);
1997
1998 return options;
1999}
2000
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002001static void parse_json_protocol(QDict *options, const char **pfilename,
2002 Error **errp)
2003{
2004 QDict *json_options;
2005 Error *local_err = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002006 GLOBAL_STATE_CODE();
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002007
2008 /* Parse json: pseudo-protocol */
2009 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
2010 return;
2011 }
2012
2013 json_options = parse_json_filename(*pfilename, &local_err);
2014 if (local_err) {
2015 error_propagate(errp, local_err);
2016 return;
2017 }
2018
2019 /* Options given in the filename have lower priority than options
2020 * specified directly */
2021 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002022 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002023 *pfilename = NULL;
2024}
2025
Kevin Wolf57915332010-04-14 15:24:50 +02002026/*
Kevin Wolff54120f2014-05-26 11:09:59 +02002027 * Fills in default options for opening images and converts the legacy
2028 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04002029 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2030 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02002031 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002032static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02002033 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02002034{
2035 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04002036 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002037 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02002038 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002039 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002040
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002041 GLOBAL_STATE_CODE();
2042
Markus Armbruster129c7d12017-03-30 19:43:12 +02002043 /*
2044 * Caution: while qdict_get_try_str() is fine, getting non-string
2045 * types would require more care. When @options come from
2046 * -blockdev or blockdev_add, its members are typed according to
2047 * the QAPI schema, but when they come from -drive, they're all
2048 * QString.
2049 */
Max Reitz53a29512015-03-19 14:53:16 -04002050 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02002051 if (drvname) {
2052 drv = bdrv_find_format(drvname);
2053 if (!drv) {
2054 error_setg(errp, "Unknown driver '%s'", drvname);
2055 return -ENOENT;
2056 }
2057 /* If the user has explicitly specified the driver, this choice should
2058 * override the BDRV_O_PROTOCOL flag */
2059 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04002060 }
2061
2062 if (protocol) {
2063 *flags |= BDRV_O_PROTOCOL;
2064 } else {
2065 *flags &= ~BDRV_O_PROTOCOL;
2066 }
2067
Kevin Wolf91a097e2015-05-08 17:49:53 +02002068 /* Translate cache options from flags into options */
2069 update_options_from_flags(*options, *flags);
2070
Kevin Wolff54120f2014-05-26 11:09:59 +02002071 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002072 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002073 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002074 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02002075 parse_filename = true;
2076 } else {
2077 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2078 "the same time");
2079 return -EINVAL;
2080 }
2081 }
2082
2083 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02002084 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02002085 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02002086
Max Reitz053e1572015-08-26 19:47:51 +02002087 if (!drvname && protocol) {
2088 if (filename) {
2089 drv = bdrv_find_protocol(filename, parse_filename, errp);
2090 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002091 return -EINVAL;
2092 }
Max Reitz053e1572015-08-26 19:47:51 +02002093
2094 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05002095 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02002096 } else {
2097 error_setg(errp, "Must specify either driver or file");
2098 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002099 }
2100 }
2101
Kevin Wolf17b005f2014-05-27 10:50:29 +02002102 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02002103
2104 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002105 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002106 drv->bdrv_parse_filename(filename, *options, &local_err);
2107 if (local_err) {
2108 error_propagate(errp, local_err);
2109 return -EINVAL;
2110 }
2111
2112 if (!drv->bdrv_needs_filename) {
2113 qdict_del(*options, "filename");
2114 }
2115 }
2116
2117 return 0;
2118}
2119
Kevin Wolf148eb132017-09-14 14:32:04 +02002120typedef struct BlockReopenQueueEntry {
2121 bool prepared;
2122 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002123 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02002124} BlockReopenQueueEntry;
2125
2126/*
2127 * Return the flags that @bs will have after the reopens in @q have
2128 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2129 * return the current flags.
2130 */
2131static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2132{
2133 BlockReopenQueueEntry *entry;
2134
2135 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002136 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002137 if (entry->state.bs == bs) {
2138 return entry->state.flags;
2139 }
2140 }
2141 }
2142
2143 return bs->open_flags;
2144}
2145
2146/* Returns whether the image file can be written to after the reopen queue @q
2147 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002148static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2149 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002150{
2151 int flags = bdrv_reopen_get_flags(q, bs);
2152
2153 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2154}
2155
Max Reitzcc022142018-06-06 21:37:00 +02002156/*
2157 * Return whether the BDS can be written to. This is not necessarily
2158 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2159 * be written to but do not count as read-only images.
2160 */
2161bool bdrv_is_writable(BlockDriverState *bs)
2162{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05002163 IO_CODE();
Max Reitzcc022142018-06-06 21:37:00 +02002164 return bdrv_is_writable_after_reopen(bs, NULL);
2165}
2166
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002167static char *bdrv_child_user_desc(BdrvChild *c)
2168{
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002169 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002170 return c->klass->get_parent_desc(c);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002171}
2172
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002173/*
2174 * Check that @a allows everything that @b needs. @a and @b must reference same
2175 * child node.
2176 */
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002177static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2178{
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002179 const char *child_bs_name;
2180 g_autofree char *a_user = NULL;
2181 g_autofree char *b_user = NULL;
2182 g_autofree char *perms = NULL;
2183
2184 assert(a->bs);
2185 assert(a->bs == b->bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002186 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002187
2188 if ((b->perm & a->shared_perm) == b->perm) {
2189 return true;
2190 }
2191
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002192 child_bs_name = bdrv_get_node_name(b->bs);
2193 a_user = bdrv_child_user_desc(a);
2194 b_user = bdrv_child_user_desc(b);
2195 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2196
2197 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2198 "both required by %s (uses node '%s' as '%s' child) and "
2199 "unshared by %s (uses node '%s' as '%s' child).",
2200 child_bs_name, perms,
2201 b_user, child_bs_name, b->name,
2202 a_user, child_bs_name, a->name);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002203
2204 return false;
2205}
2206
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002207static bool GRAPH_RDLOCK
2208bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002209{
2210 BdrvChild *a, *b;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002211 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002212
2213 /*
2214 * During the loop we'll look at each pair twice. That's correct because
2215 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2216 * directions.
2217 */
2218 QLIST_FOREACH(a, &bs->parents, next_parent) {
2219 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002220 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002221 continue;
2222 }
2223
2224 if (!bdrv_a_allow_b(a, b, errp)) {
2225 return true;
2226 }
2227 }
2228 }
2229
2230 return false;
2231}
2232
Kevin Wolfc629b6d2023-09-11 11:46:14 +02002233static void GRAPH_RDLOCK
2234bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
2235 BdrvChild *c, BdrvChildRole role,
2236 BlockReopenQueue *reopen_queue,
2237 uint64_t parent_perm, uint64_t parent_shared,
2238 uint64_t *nperm, uint64_t *nshared)
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002239{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002240 assert(bs->drv && bs->drv->bdrv_child_perm);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002241 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002242 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002243 parent_perm, parent_shared,
2244 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002245 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002246 if (child_bs && child_bs->force_share) {
2247 *nshared = BLK_PERM_ALL;
2248 }
2249}
2250
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002251/*
2252 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2253 * nodes that are already in the @list, of course) so that final list is
2254 * topologically sorted. Return the result (GSList @list object is updated, so
2255 * don't use old reference after function call).
2256 *
2257 * On function start @list must be already topologically sorted and for any node
2258 * in the @list the whole subtree of the node must be in the @list as well. The
2259 * simplest way to satisfy this criteria: use only result of
2260 * bdrv_topological_dfs() or NULL as @list parameter.
2261 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002262static GSList * GRAPH_RDLOCK
2263bdrv_topological_dfs(GSList *list, GHashTable *found, BlockDriverState *bs)
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002264{
2265 BdrvChild *child;
2266 g_autoptr(GHashTable) local_found = NULL;
2267
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002268 GLOBAL_STATE_CODE();
2269
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002270 if (!found) {
2271 assert(!list);
2272 found = local_found = g_hash_table_new(NULL, NULL);
2273 }
2274
2275 if (g_hash_table_contains(found, bs)) {
2276 return list;
2277 }
2278 g_hash_table_add(found, bs);
2279
2280 QLIST_FOREACH(child, &bs->children, next) {
2281 list = bdrv_topological_dfs(list, found, child->bs);
2282 }
2283
2284 return g_slist_prepend(list, bs);
2285}
2286
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002287typedef struct BdrvChildSetPermState {
2288 BdrvChild *child;
2289 uint64_t old_perm;
2290 uint64_t old_shared_perm;
2291} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002292
2293static void bdrv_child_set_perm_abort(void *opaque)
2294{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002295 BdrvChildSetPermState *s = opaque;
2296
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002297 GLOBAL_STATE_CODE();
2298
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002299 s->child->perm = s->old_perm;
2300 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002301}
2302
2303static TransactionActionDrv bdrv_child_set_pem_drv = {
2304 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002305 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002306};
2307
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002308static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2309 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002310{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002311 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002312 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002313
2314 *s = (BdrvChildSetPermState) {
2315 .child = c,
2316 .old_perm = c->perm,
2317 .old_shared_perm = c->shared_perm,
2318 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002319
2320 c->perm = perm;
2321 c->shared_perm = shared;
2322
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002323 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002324}
2325
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002326static void GRAPH_RDLOCK bdrv_drv_set_perm_commit(void *opaque)
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002327{
2328 BlockDriverState *bs = opaque;
2329 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002330 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002331
2332 if (bs->drv->bdrv_set_perm) {
2333 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2334 &cumulative_shared_perms);
2335 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2336 }
2337}
2338
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002339static void GRAPH_RDLOCK bdrv_drv_set_perm_abort(void *opaque)
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002340{
2341 BlockDriverState *bs = opaque;
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_abort_perm_update) {
2345 bs->drv->bdrv_abort_perm_update(bs);
2346 }
2347}
2348
2349TransactionActionDrv bdrv_drv_set_perm_drv = {
2350 .abort = bdrv_drv_set_perm_abort,
2351 .commit = bdrv_drv_set_perm_commit,
2352};
2353
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002354/*
2355 * After calling this function, the transaction @tran may only be completed
2356 * while holding a reader lock for the graph.
2357 */
2358static int GRAPH_RDLOCK
2359bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared_perm,
2360 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002361{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002362 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002363 if (!bs->drv) {
2364 return 0;
2365 }
2366
2367 if (bs->drv->bdrv_check_perm) {
2368 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2369 if (ret < 0) {
2370 return ret;
2371 }
2372 }
2373
2374 if (tran) {
2375 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2376 }
2377
2378 return 0;
2379}
2380
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002381typedef struct BdrvReplaceChildState {
2382 BdrvChild *child;
2383 BlockDriverState *old_bs;
2384} BdrvReplaceChildState;
2385
Kevin Wolf5661a002023-09-11 11:46:10 +02002386static void GRAPH_WRLOCK bdrv_replace_child_commit(void *opaque)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002387{
2388 BdrvReplaceChildState *s = opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002389 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002390
Kevin Wolf5661a002023-09-11 11:46:10 +02002391 bdrv_schedule_unref(s->old_bs);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002392}
2393
Kevin Wolf5661a002023-09-11 11:46:10 +02002394static void GRAPH_WRLOCK bdrv_replace_child_abort(void *opaque)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002395{
2396 BdrvReplaceChildState *s = opaque;
2397 BlockDriverState *new_bs = s->child->bs;
2398
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002399 GLOBAL_STATE_CODE();
Kevin Wolf5661a002023-09-11 11:46:10 +02002400 assert_bdrv_graph_writable();
Kevin Wolfad29eb32023-09-11 11:46:07 +02002401
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002402 /* old_bs reference is transparently moved from @s to @s->child */
Kevin Wolf23987472022-11-18 18:41:09 +01002403 if (!s->child->bs) {
2404 /*
2405 * The parents were undrained when removing old_bs from the child. New
2406 * requests can't have been made, though, because the child was empty.
2407 *
2408 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2409 * undraining the parent in the first place. Once this is done, having
2410 * new_bs drained when calling bdrv_replace_child_tran() is not a
2411 * requirement any more.
2412 */
Kevin Wolf606ed752022-11-18 18:41:10 +01002413 bdrv_parent_drained_begin_single(s->child);
Kevin Wolf23987472022-11-18 18:41:09 +01002414 assert(!bdrv_parent_drained_poll_single(s->child));
2415 }
2416 assert(s->child->quiesced_parent);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002417 bdrv_replace_child_noperm(s->child, s->old_bs);
Kevin Wolfad29eb32023-09-11 11:46:07 +02002418
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002419 bdrv_unref(new_bs);
2420}
2421
2422static TransactionActionDrv bdrv_replace_child_drv = {
2423 .commit = bdrv_replace_child_commit,
2424 .abort = bdrv_replace_child_abort,
2425 .clean = g_free,
2426};
2427
2428/*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002429 * bdrv_replace_child_tran
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002430 *
2431 * Note: real unref of old_bs is done only on commit.
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002432 *
Kevin Wolf23987472022-11-18 18:41:09 +01002433 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2434 * kept drained until the transaction is completed.
2435 *
Kevin Wolf5661a002023-09-11 11:46:10 +02002436 * After calling this function, the transaction @tran may only be completed
2437 * while holding a writer lock for the graph.
2438 *
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002439 * The function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002440 */
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02002441static void GRAPH_WRLOCK
2442bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
2443 Transaction *tran)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002444{
2445 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
Kevin Wolf23987472022-11-18 18:41:09 +01002446
2447 assert(child->quiesced_parent);
2448 assert(!new_bs || new_bs->quiesce_counter);
2449
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002450 *s = (BdrvReplaceChildState) {
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002451 .child = child,
2452 .old_bs = child->bs,
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002453 };
2454 tran_add(tran, &bdrv_replace_child_drv, s);
2455
2456 if (new_bs) {
2457 bdrv_ref(new_bs);
2458 }
Kevin Wolfad29eb32023-09-11 11:46:07 +02002459
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002460 bdrv_replace_child_noperm(child, new_bs);
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002461 /* old_bs reference is transparently moved from @child to @s */
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002462}
2463
Kevin Wolf33a610c2016-12-15 13:04:20 +01002464/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002465 * Refresh permissions in @bs subtree. The function is intended to be called
2466 * after some graph modification that was done without permission update.
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002467 *
2468 * After calling this function, the transaction @tran may only be completed
2469 * while holding a reader lock for the graph.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002470 */
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002471static int GRAPH_RDLOCK
2472bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2473 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002474{
2475 BlockDriver *drv = bs->drv;
2476 BdrvChild *c;
2477 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002478 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002479 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002480
2481 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002482
2483 /* Write permissions never work with read-only images */
2484 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002485 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002486 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002487 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2488 error_setg(errp, "Block node is read-only");
2489 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002490 error_setg(errp, "Read-only block node '%s' cannot support "
2491 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002492 }
2493
Kevin Wolf33a610c2016-12-15 13:04:20 +01002494 return -EPERM;
2495 }
2496
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002497 /*
2498 * Unaligned requests will automatically be aligned to bl.request_alignment
2499 * and without RESIZE we can't extend requests to write to space beyond the
2500 * end of the image, so it's required that the image size is aligned.
2501 */
2502 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2503 !(cumulative_perms & BLK_PERM_RESIZE))
2504 {
2505 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2506 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2507 "Image size is not a multiple of request "
2508 "alignment");
2509 return -EPERM;
2510 }
2511 }
2512
Kevin Wolf33a610c2016-12-15 13:04:20 +01002513 /* Check this node */
2514 if (!drv) {
2515 return 0;
2516 }
2517
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002518 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002519 errp);
2520 if (ret < 0) {
2521 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002522 }
2523
Kevin Wolf78e421c2016-12-20 23:25:12 +01002524 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002525 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002526 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002527 return 0;
2528 }
2529
2530 /* Check all children */
2531 QLIST_FOREACH(c, &bs->children, next) {
2532 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002533
Max Reitze5d8a402020-05-13 13:05:44 +02002534 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002535 cumulative_perms, cumulative_shared_perms,
2536 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002537 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002538 }
2539
2540 return 0;
2541}
2542
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002543/*
2544 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2545 * a topologically sorted subgraph.
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002546 *
2547 * After calling this function, the transaction @tran may only be completed
2548 * while holding a reader lock for the graph.
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002549 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002550static int GRAPH_RDLOCK
2551bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran,
2552 Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002553{
2554 int ret;
2555 BlockDriverState *bs;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002556 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002557
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002558 for ( ; list; list = list->next) {
2559 bs = list->data;
2560
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002561 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002562 return -EINVAL;
2563 }
2564
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002565 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002566 if (ret < 0) {
2567 return ret;
2568 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002569 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002570
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002571 return 0;
2572}
2573
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002574/*
2575 * @list is any list of nodes. List is completed by all subtrees and
2576 * topologically sorted. It's not a problem if some node occurs in the @list
2577 * several times.
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002578 *
2579 * After calling this function, the transaction @tran may only be completed
2580 * while holding a reader lock for the graph.
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002581 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002582static int GRAPH_RDLOCK
2583bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran,
2584 Error **errp)
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002585{
2586 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL);
2587 g_autoptr(GSList) refresh_list = NULL;
2588
2589 for ( ; list; list = list->next) {
2590 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data);
2591 }
2592
2593 return bdrv_do_refresh_perms(refresh_list, q, tran, errp);
2594}
2595
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002596void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2597 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002598{
2599 BdrvChild *c;
2600 uint64_t cumulative_perms = 0;
2601 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2602
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002603 GLOBAL_STATE_CODE();
2604
Kevin Wolf33a610c2016-12-15 13:04:20 +01002605 QLIST_FOREACH(c, &bs->parents, next_parent) {
2606 cumulative_perms |= c->perm;
2607 cumulative_shared_perms &= c->shared_perm;
2608 }
2609
2610 *perm = cumulative_perms;
2611 *shared_perm = cumulative_shared_perms;
2612}
2613
Fam Zheng51761962017-05-03 00:35:36 +08002614char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002615{
2616 struct perm_name {
2617 uint64_t perm;
2618 const char *name;
2619 } permissions[] = {
2620 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2621 { BLK_PERM_WRITE, "write" },
2622 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2623 { BLK_PERM_RESIZE, "resize" },
Kevin Wolfd0833192017-01-16 18:26:20 +01002624 { 0, NULL }
2625 };
2626
Alberto Garciae2a74232020-01-10 18:15:18 +01002627 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002628 struct perm_name *p;
2629
2630 for (p = permissions; p->name; p++) {
2631 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002632 if (result->len > 0) {
2633 g_string_append(result, ", ");
2634 }
2635 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002636 }
2637 }
2638
Alberto Garciae2a74232020-01-10 18:15:18 +01002639 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002640}
2641
Kevin Wolf33a610c2016-12-15 13:04:20 +01002642
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002643/*
2644 * @tran is allowed to be NULL. In this case no rollback is possible.
2645 *
2646 * After calling this function, the transaction @tran may only be completed
2647 * while holding a reader lock for the graph.
2648 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002649static int GRAPH_RDLOCK
2650bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002651{
2652 int ret;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002653 Transaction *local_tran = NULL;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002654 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002655 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002656
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002657 if (!tran) {
2658 tran = local_tran = tran_new();
2659 }
2660
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002661 ret = bdrv_do_refresh_perms(list, NULL, tran, errp);
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002662
2663 if (local_tran) {
2664 tran_finalize(local_tran, ret);
2665 }
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002666
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002667 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002668}
2669
Kevin Wolf33a610c2016-12-15 13:04:20 +01002670int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2671 Error **errp)
2672{
Max Reitz10467792019-05-22 19:03:51 +02002673 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002674 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002675 int ret;
2676
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002677 GLOBAL_STATE_CODE();
2678
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002679 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002680
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002681 ret = bdrv_refresh_perms(c->bs, tran, &local_err);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002682
2683 tran_finalize(tran, ret);
2684
Kevin Wolf33a610c2016-12-15 13:04:20 +01002685 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002686 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2687 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002688 error_propagate(errp, local_err);
2689 } else {
2690 /*
2691 * Our caller may intend to only loosen restrictions and
2692 * does not expect this function to fail. Errors are not
2693 * fatal in such a case, so we can just hide them from our
2694 * caller.
2695 */
2696 error_free(local_err);
2697 ret = 0;
2698 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002699 }
2700
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002701 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002702}
2703
Max Reitzc1087f12019-05-22 19:03:46 +02002704int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2705{
2706 uint64_t parent_perms, parent_shared;
2707 uint64_t perms, shared;
2708
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002709 GLOBAL_STATE_CODE();
2710
Max Reitzc1087f12019-05-22 19:03:46 +02002711 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002712 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002713 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002714
2715 return bdrv_child_try_set_perm(c, perms, shared, errp);
2716}
2717
Max Reitz87278af2020-05-13 13:05:40 +02002718/*
2719 * Default implementation for .bdrv_child_perm() for block filters:
2720 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2721 * filtered child.
2722 */
2723static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002724 BdrvChildRole role,
2725 BlockReopenQueue *reopen_queue,
2726 uint64_t perm, uint64_t shared,
2727 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002728{
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002729 GLOBAL_STATE_CODE();
Kevin Wolfe444fa82019-08-02 15:59:41 +02002730 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2731 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002732}
2733
Max Reitz70082db2020-05-13 13:05:26 +02002734static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002735 BdrvChildRole role,
2736 BlockReopenQueue *reopen_queue,
2737 uint64_t perm, uint64_t shared,
2738 uint64_t *nperm, uint64_t *nshared)
2739{
Max Reitze5d8a402020-05-13 13:05:44 +02002740 assert(role & BDRV_CHILD_COW);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002741 GLOBAL_STATE_CODE();
Max Reitz70082db2020-05-13 13:05:26 +02002742
2743 /*
2744 * We want consistent read from backing files if the parent needs it.
2745 * No other operations are performed on backing files.
2746 */
2747 perm &= BLK_PERM_CONSISTENT_READ;
2748
2749 /*
2750 * If the parent can deal with changing data, we're okay with a
2751 * writable and resizable backing file.
2752 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2753 */
2754 if (shared & BLK_PERM_WRITE) {
2755 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2756 } else {
2757 shared = 0;
2758 }
2759
Vladimir Sementsov-Ogievskiy64631f32021-09-02 12:37:54 +03002760 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
Max Reitz70082db2020-05-13 13:05:26 +02002761
2762 if (bs->open_flags & BDRV_O_INACTIVE) {
2763 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2764 }
2765
2766 *nperm = perm;
2767 *nshared = shared;
2768}
2769
Max Reitz6f838a42020-05-13 13:05:27 +02002770static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002771 BdrvChildRole role,
2772 BlockReopenQueue *reopen_queue,
2773 uint64_t perm, uint64_t shared,
2774 uint64_t *nperm, uint64_t *nshared)
2775{
2776 int flags;
2777
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002778 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002779 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002780
2781 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2782
2783 /*
2784 * Apart from the modifications below, the same permissions are
2785 * forwarded and left alone as for filters
2786 */
Max Reitze5d8a402020-05-13 13:05:44 +02002787 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002788 perm, shared, &perm, &shared);
2789
Max Reitzf8890542020-05-13 13:05:28 +02002790 if (role & BDRV_CHILD_METADATA) {
2791 /* Format drivers may touch metadata even if the guest doesn't write */
2792 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2793 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2794 }
2795
2796 /*
2797 * bs->file always needs to be consistent because of the
2798 * metadata. We can never allow other users to resize or write
2799 * to it.
2800 */
2801 if (!(flags & BDRV_O_NO_IO)) {
2802 perm |= BLK_PERM_CONSISTENT_READ;
2803 }
2804 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002805 }
2806
Max Reitzf8890542020-05-13 13:05:28 +02002807 if (role & BDRV_CHILD_DATA) {
2808 /*
2809 * Technically, everything in this block is a subset of the
2810 * BDRV_CHILD_METADATA path taken above, and so this could
2811 * be an "else if" branch. However, that is not obvious, and
2812 * this function is not performance critical, therefore we let
2813 * this be an independent "if".
2814 */
2815
2816 /*
2817 * We cannot allow other users to resize the file because the
2818 * format driver might have some assumptions about the size
2819 * (e.g. because it is stored in metadata, or because the file
2820 * is split into fixed-size data files).
2821 */
2822 shared &= ~BLK_PERM_RESIZE;
2823
2824 /*
2825 * WRITE_UNCHANGED often cannot be performed as such on the
2826 * data file. For example, the qcow2 driver may still need to
2827 * write copied clusters on copy-on-read.
2828 */
2829 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2830 perm |= BLK_PERM_WRITE;
2831 }
2832
2833 /*
2834 * If the data file is written to, the format driver may
2835 * expect to be able to resize it by writing beyond the EOF.
2836 */
2837 if (perm & BLK_PERM_WRITE) {
2838 perm |= BLK_PERM_RESIZE;
2839 }
Max Reitz6f838a42020-05-13 13:05:27 +02002840 }
Max Reitz6f838a42020-05-13 13:05:27 +02002841
2842 if (bs->open_flags & BDRV_O_INACTIVE) {
2843 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2844 }
2845
2846 *nperm = perm;
2847 *nshared = shared;
2848}
2849
Max Reitz2519f542020-05-13 13:05:29 +02002850void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002851 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002852 uint64_t perm, uint64_t shared,
2853 uint64_t *nperm, uint64_t *nshared)
2854{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002855 GLOBAL_STATE_CODE();
Max Reitz2519f542020-05-13 13:05:29 +02002856 if (role & BDRV_CHILD_FILTERED) {
2857 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2858 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002859 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002860 perm, shared, nperm, nshared);
2861 } else if (role & BDRV_CHILD_COW) {
2862 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002863 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002864 perm, shared, nperm, nshared);
2865 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002866 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002867 perm, shared, nperm, nshared);
2868 } else {
2869 g_assert_not_reached();
2870 }
2871}
2872
Max Reitz7b1d9c42019-11-08 13:34:51 +01002873uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2874{
2875 static const uint64_t permissions[] = {
2876 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2877 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2878 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2879 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
Max Reitz7b1d9c42019-11-08 13:34:51 +01002880 };
2881
2882 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2883 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2884
2885 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2886
2887 return permissions[qapi_perm];
2888}
2889
Kevin Wolf23987472022-11-18 18:41:09 +01002890/*
2891 * Replaces the node that a BdrvChild points to without updating permissions.
2892 *
2893 * If @new_bs is non-NULL, the parent of @child must already be drained through
Kevin Wolf31b2ddf2023-06-05 10:57:10 +02002894 * @child and the caller must hold the AioContext lock for @new_bs.
Kevin Wolf23987472022-11-18 18:41:09 +01002895 */
Kevin Wolfad29eb32023-09-11 11:46:07 +02002896static void GRAPH_WRLOCK
2897bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002898{
2899 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002900 int new_bs_quiesce_counter;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002901
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002902 assert(!child->frozen);
Kevin Wolf23987472022-11-18 18:41:09 +01002903
2904 /*
2905 * If we want to change the BdrvChild to point to a drained node as its new
2906 * child->bs, we need to make sure that its new parent is drained, too. In
2907 * other words, either child->quiesce_parent must already be true or we must
2908 * be able to set it and keep the parent's quiesce_counter consistent with
2909 * that, but without polling or starting new requests (this function
2910 * guarantees that it doesn't poll, and starting new requests would be
2911 * against the invariants of drain sections).
2912 *
2913 * To keep things simple, we pick the first option (child->quiesce_parent
2914 * must already be true). We also generalise the rule a bit to make it
2915 * easier to verify in callers and more likely to be covered in test cases:
2916 * The parent must be quiesced through this child even if new_bs isn't
2917 * currently drained.
2918 *
2919 * The only exception is for callers that always pass new_bs == NULL. In
2920 * this case, we obviously never need to consider the case of a drained
2921 * new_bs, so we can keep the callers simpler by allowing them not to drain
2922 * the parent.
2923 */
2924 assert(!new_bs || child->quiesced_parent);
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02002925 assert(old_bs != new_bs);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002926 GLOBAL_STATE_CODE();
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002927
Fam Zhengbb2614e2017-04-07 14:54:10 +08002928 if (old_bs && new_bs) {
2929 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2930 }
Max Reitzdebc2922019-07-22 15:33:44 +02002931
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002932 if (old_bs) {
Max Reitzbd86fb92020-05-13 13:05:13 +02002933 if (child->klass->detach) {
2934 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002935 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002936 QLIST_REMOVE(child, next_parent);
2937 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002938
2939 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002940
2941 if (new_bs) {
2942 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzbd86fb92020-05-13 13:05:13 +02002943 if (child->klass->attach) {
2944 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002945 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002946 }
Max Reitzdebc2922019-07-22 15:33:44 +02002947
2948 /*
Kevin Wolf23987472022-11-18 18:41:09 +01002949 * If the parent was drained through this BdrvChild previously, but new_bs
2950 * is not drained, allow requests to come in only after the new node has
2951 * been attached.
Max Reitzdebc2922019-07-22 15:33:44 +02002952 */
Kevin Wolf57e05be2022-11-18 18:41:06 +01002953 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2954 if (!new_bs_quiesce_counter && child->quiesced_parent) {
Max Reitzdebc2922019-07-22 15:33:44 +02002955 bdrv_parent_drained_end_single(child);
Max Reitzdebc2922019-07-22 15:33:44 +02002956 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002957}
2958
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002959/**
2960 * Free the given @child.
2961 *
2962 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2963 * unused (i.e. not in a children list).
2964 */
2965static void bdrv_child_free(BdrvChild *child)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002966{
2967 assert(!child->bs);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002968 GLOBAL_STATE_CODE();
Hanna Reitza2253692021-11-15 15:53:58 +01002969 assert(!child->next.le_prev); /* not in children list */
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002970
2971 g_free(child->name);
2972 g_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002973}
2974
2975typedef struct BdrvAttachChildCommonState {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002976 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002977 AioContext *old_parent_ctx;
2978 AioContext *old_child_ctx;
2979} BdrvAttachChildCommonState;
2980
Kevin Wolf5661a002023-09-11 11:46:10 +02002981static void GRAPH_WRLOCK bdrv_attach_child_common_abort(void *opaque)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002982{
2983 BdrvAttachChildCommonState *s = opaque;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002984 BlockDriverState *bs = s->child->bs;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002985
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002986 GLOBAL_STATE_CODE();
Kevin Wolf5661a002023-09-11 11:46:10 +02002987 assert_bdrv_graph_writable();
Kevin Wolfad29eb32023-09-11 11:46:07 +02002988
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002989 bdrv_replace_child_noperm(s->child, NULL);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002990
2991 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04002992 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002993 }
2994
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002995 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) {
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002996 Transaction *tran;
2997 GHashTable *visited;
2998 bool ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002999
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003000 tran = tran_new();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003001
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003002 /* No need to visit `child`, because it has been detached already */
3003 visited = g_hash_table_new(NULL, NULL);
3004 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx,
3005 visited, tran, &error_abort);
3006 g_hash_table_destroy(visited);
3007
3008 /* transaction is supposed to always succeed */
3009 assert(ret == true);
3010 tran_commit(tran);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003011 }
3012
Kevin Wolf5661a002023-09-11 11:46:10 +02003013 bdrv_schedule_unref(bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003014 bdrv_child_free(s->child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003015}
3016
3017static TransactionActionDrv bdrv_attach_child_common_drv = {
3018 .abort = bdrv_attach_child_common_abort,
3019 .clean = g_free,
3020};
3021
3022/*
3023 * Common part of attaching bdrv child to bs or to blk or to job
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003024 *
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003025 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003026 *
Kevin Wolf5661a002023-09-11 11:46:10 +02003027 * After calling this function, the transaction @tran may only be completed
3028 * while holding a writer lock for the graph.
3029 *
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003030 * Returns new created child.
Kevin Wolfc066e802023-06-05 10:57:05 +02003031 *
3032 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3033 * @child_bs can move to a different AioContext in this function. Callers must
3034 * make sure that their AioContext locking is still correct after this.
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003035 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003036static BdrvChild * GRAPH_WRLOCK
3037bdrv_attach_child_common(BlockDriverState *child_bs,
3038 const char *child_name,
3039 const BdrvChildClass *child_class,
3040 BdrvChildRole child_role,
3041 uint64_t perm, uint64_t shared_perm,
3042 void *opaque,
3043 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003044{
3045 BdrvChild *new_child;
Kevin Wolfc066e802023-06-05 10:57:05 +02003046 AioContext *parent_ctx, *new_child_ctx;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003047 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
3048
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03003049 assert(child_class->get_parent_desc);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003050 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003051
3052 new_child = g_new(BdrvChild, 1);
3053 *new_child = (BdrvChild) {
3054 .bs = NULL,
3055 .name = g_strdup(child_name),
3056 .klass = child_class,
3057 .role = child_role,
3058 .perm = perm,
3059 .shared_perm = shared_perm,
3060 .opaque = opaque,
3061 };
3062
3063 /*
3064 * If the AioContexts don't match, first try to move the subtree of
3065 * child_bs into the AioContext of the new parent. If this doesn't work,
3066 * try moving the parent into the AioContext of child_bs instead.
3067 */
3068 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3069 if (child_ctx != parent_ctx) {
3070 Error *local_err = NULL;
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04003071 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL,
3072 &local_err);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003073
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003074 if (ret < 0 && child_class->change_aio_ctx) {
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02003075 Transaction *aio_ctx_tran = tran_new();
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003076 GHashTable *visited = g_hash_table_new(NULL, NULL);
3077 bool ret_child;
3078
3079 g_hash_table_add(visited, new_child);
3080 ret_child = child_class->change_aio_ctx(new_child, child_ctx,
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02003081 visited, aio_ctx_tran,
3082 NULL);
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003083 if (ret_child == true) {
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003084 error_free(local_err);
3085 ret = 0;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003086 }
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02003087 tran_finalize(aio_ctx_tran, ret_child == true ? 0 : -1);
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003088 g_hash_table_destroy(visited);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003089 }
3090
3091 if (ret < 0) {
3092 error_propagate(errp, local_err);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01003093 bdrv_child_free(new_child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003094 return NULL;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003095 }
3096 }
3097
Kevin Wolfc066e802023-06-05 10:57:05 +02003098 new_child_ctx = bdrv_get_aio_context(child_bs);
3099 if (new_child_ctx != child_ctx) {
3100 aio_context_release(child_ctx);
3101 aio_context_acquire(new_child_ctx);
3102 }
3103
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003104 bdrv_ref(child_bs);
Kevin Wolf23987472022-11-18 18:41:09 +01003105 /*
3106 * Let every new BdrvChild start with a drained parent. Inserting the child
3107 * in the graph with bdrv_replace_child_noperm() will undrain it if
3108 * @child_bs is not drained.
3109 *
3110 * The child was only just created and is not yet visible in global state
3111 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3112 * could have sent requests and polling is not necessary.
3113 *
3114 * Note that this means that the parent isn't fully drained yet, we only
3115 * stop new requests from coming in. This is fine, we don't care about the
3116 * old requests here, they are not for this child. If another place enters a
3117 * drain section for the same parent, but wants it to be fully quiesced, it
3118 * will not run most of the the code in .drained_begin() again (which is not
3119 * a problem, we already did this), but it will still poll until the parent
3120 * is fully quiesced, so it will not be negatively affected either.
3121 */
Kevin Wolf606ed752022-11-18 18:41:10 +01003122 bdrv_parent_drained_begin_single(new_child);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03003123 bdrv_replace_child_noperm(new_child, child_bs);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003124
3125 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3126 *s = (BdrvAttachChildCommonState) {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003127 .child = new_child,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003128 .old_parent_ctx = parent_ctx,
3129 .old_child_ctx = child_ctx,
3130 };
3131 tran_add(tran, &bdrv_attach_child_common_drv, s);
3132
Kevin Wolfc066e802023-06-05 10:57:05 +02003133 if (new_child_ctx != child_ctx) {
3134 aio_context_release(new_child_ctx);
3135 aio_context_acquire(child_ctx);
3136 }
3137
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003138 return new_child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003139}
3140
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003141/*
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003142 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolfc066e802023-06-05 10:57:05 +02003143 *
3144 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3145 * @child_bs can move to a different AioContext in this function. Callers must
3146 * make sure that their AioContext locking is still correct after this.
Kevin Wolf5661a002023-09-11 11:46:10 +02003147 *
3148 * After calling this function, the transaction @tran may only be completed
3149 * while holding a writer lock for the graph.
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003150 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003151static BdrvChild * GRAPH_WRLOCK
3152bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3153 BlockDriverState *child_bs,
3154 const char *child_name,
3155 const BdrvChildClass *child_class,
3156 BdrvChildRole child_role,
3157 Transaction *tran,
3158 Error **errp)
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003159{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003160 uint64_t perm, shared_perm;
3161
3162 assert(parent_bs->drv);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003163 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003164
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003165 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3166 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3167 child_bs->node_name, child_name, parent_bs->node_name);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003168 return NULL;
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003169 }
3170
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003171 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3172 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3173 perm, shared_perm, &perm, &shared_perm);
3174
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003175 return bdrv_attach_child_common(child_bs, child_name, child_class,
3176 child_role, perm, shared_perm, parent_bs,
3177 tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003178}
3179
Alberto Garciab441dc72019-05-13 16:46:18 +03003180/*
3181 * This function steals the reference to child_bs from the caller.
3182 * That reference is later dropped by bdrv_root_unref_child().
3183 *
3184 * On failure NULL is returned, errp is set and the reference to
3185 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003186 *
3187 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3188 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03003189 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003190BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3191 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003192 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003193 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003194 uint64_t perm, uint64_t shared_perm,
3195 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02003196{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003197 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003198 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003199 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003200
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05003201 GLOBAL_STATE_CODE();
3202
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003203 bdrv_graph_wrlock(child_bs);
3204
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003205 child = bdrv_attach_child_common(child_bs, child_name, child_class,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003206 child_role, perm, shared_perm, opaque,
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003207 tran, errp);
3208 if (!child) {
3209 ret = -EINVAL;
Kevin Wolfe878bb12021-05-03 13:05:54 +02003210 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003211 }
3212
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003213 ret = bdrv_refresh_perms(child_bs, tran, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02003214
Kevin Wolfe878bb12021-05-03 13:05:54 +02003215out:
3216 tran_finalize(tran, ret);
Kevin Wolf5661a002023-09-11 11:46:10 +02003217 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003218
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003219 bdrv_unref(child_bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003220
3221 return ret < 0 ? NULL : child;
Kevin Wolfdf581792015-06-15 11:53:47 +02003222}
3223
Alberto Garciab441dc72019-05-13 16:46:18 +03003224/*
3225 * This function transfers the reference to child_bs from the caller
3226 * to parent_bs. That reference is later dropped by parent_bs on
3227 * bdrv_close() or if someone calls bdrv_unref_child().
3228 *
3229 * On failure NULL is returned, errp is set and the reference to
3230 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003231 *
3232 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3233 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03003234 */
Wen Congyang98292c62016-05-10 15:36:38 +08003235BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3236 BlockDriverState *child_bs,
3237 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003238 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003239 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003240 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003241{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003242 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003243 BdrvChild *child;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003244 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003245
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003246 GLOBAL_STATE_CODE();
3247
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003248 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name,
3249 child_class, child_role, tran, errp);
3250 if (!child) {
3251 ret = -EINVAL;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003252 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003253 }
3254
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003255 ret = bdrv_refresh_perms(parent_bs, tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003256 if (ret < 0) {
3257 goto out;
3258 }
3259
3260out:
3261 tran_finalize(tran, ret);
3262
Kevin Wolfafdaeb92023-09-11 11:46:11 +02003263 bdrv_schedule_unref(child_bs);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003264
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003265 return ret < 0 ? NULL : child;
Kevin Wolff21d96d2016-03-08 13:47:46 +01003266}
3267
Max Reitz7b99a262019-06-12 16:07:11 +02003268/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003269void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003270{
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003271 BlockDriverState *child_bs = child->bs;
Kevin Wolf779020c2015-10-13 14:09:44 +02003272
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003273 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003274 bdrv_replace_child_noperm(child, NULL);
3275 bdrv_child_free(child);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003276
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003277 if (child_bs) {
3278 /*
3279 * Update permissions for old node. We're just taking a parent away, so
3280 * we're loosening restrictions. Errors of permission update are not
3281 * fatal in this case, ignore them.
3282 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003283 bdrv_refresh_perms(child_bs, NULL, NULL);
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003284
3285 /*
3286 * When the parent requiring a non-default AioContext is removed, the
3287 * node moves back to the main AioContext
3288 */
3289 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL,
3290 NULL);
3291 }
3292
Kevin Wolfede01e42023-09-11 11:46:18 +02003293 bdrv_schedule_unref(child_bs);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003294}
3295
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003296typedef struct BdrvSetInheritsFrom {
3297 BlockDriverState *bs;
3298 BlockDriverState *old_inherits_from;
3299} BdrvSetInheritsFrom;
3300
3301static void bdrv_set_inherits_from_abort(void *opaque)
3302{
3303 BdrvSetInheritsFrom *s = opaque;
3304
3305 s->bs->inherits_from = s->old_inherits_from;
3306}
3307
3308static TransactionActionDrv bdrv_set_inherits_from_drv = {
3309 .abort = bdrv_set_inherits_from_abort,
3310 .clean = g_free,
3311};
3312
3313/* @tran is allowed to be NULL. In this case no rollback is possible */
3314static void bdrv_set_inherits_from(BlockDriverState *bs,
3315 BlockDriverState *new_inherits_from,
3316 Transaction *tran)
3317{
3318 if (tran) {
3319 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3320
3321 *s = (BdrvSetInheritsFrom) {
3322 .bs = bs,
3323 .old_inherits_from = bs->inherits_from,
3324 };
3325
3326 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3327 }
3328
3329 bs->inherits_from = new_inherits_from;
3330}
3331
Max Reitz3cf746b2019-07-03 19:28:07 +02003332/**
3333 * Clear all inherits_from pointers from children and grandchildren of
3334 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003335 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003336 */
Kevin Wolf32a8aba2023-09-11 11:46:19 +02003337static void GRAPH_WRLOCK
3338bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3339 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003340{
Max Reitz3cf746b2019-07-03 19:28:07 +02003341 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003342
Max Reitz3cf746b2019-07-03 19:28:07 +02003343 if (child->bs->inherits_from == root) {
3344 /*
3345 * Remove inherits_from only when the last reference between root and
3346 * child->bs goes away.
3347 */
3348 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003349 if (c != child && c->bs == child->bs) {
3350 break;
3351 }
3352 }
3353 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003354 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003355 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003356 }
3357
Max Reitz3cf746b2019-07-03 19:28:07 +02003358 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003359 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003360 }
3361}
3362
Max Reitz7b99a262019-06-12 16:07:11 +02003363/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003364void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3365{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003366 GLOBAL_STATE_CODE();
Max Reitz3cf746b2019-07-03 19:28:07 +02003367 if (child == NULL) {
3368 return;
3369 }
3370
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003371 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003372 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003373}
3374
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003375
Kevin Wolf356f4ef2023-09-11 11:46:15 +02003376static void GRAPH_RDLOCK
3377bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003378{
3379 BdrvChild *c;
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003380 GLOBAL_STATE_CODE();
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003381 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003382 if (c->klass->change_media) {
3383 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003384 }
3385 }
3386}
3387
Alberto Garcia0065c452018-10-31 18:16:37 +02003388/* Return true if you can reach parent going through child->inherits_from
3389 * recursively. If parent or child are NULL, return false */
3390static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3391 BlockDriverState *parent)
3392{
3393 while (child && child != parent) {
3394 child = child->inherits_from;
3395 }
3396
3397 return child != NULL;
3398}
3399
Kevin Wolf5db15a52015-09-14 15:33:33 +02003400/*
Max Reitz25191e52020-05-13 13:05:33 +02003401 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3402 * mostly used for COW backing children (role = COW), but also for
3403 * filtered children (role = FILTERED | PRIMARY).
3404 */
3405static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3406{
3407 if (bs->drv && bs->drv->is_filter) {
3408 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3409 } else {
3410 return BDRV_CHILD_COW;
3411 }
3412}
3413
3414/*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003415 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3416 * callers which don't need their own reference any more must call bdrv_unref().
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003417 *
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003418 * If the respective child is already present (i.e. we're detaching a node),
3419 * that child node must be drained.
3420 *
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003421 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolf4b408662023-06-05 10:57:06 +02003422 *
3423 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3424 * @child_bs can move to a different AioContext in this function. Callers must
3425 * make sure that their AioContext locking is still correct after this.
Kevin Wolf5661a002023-09-11 11:46:10 +02003426 *
3427 * After calling this function, the transaction @tran may only be completed
3428 * while holding a writer lock for the graph.
Kevin Wolf5db15a52015-09-14 15:33:33 +02003429 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003430static int GRAPH_WRLOCK
3431bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3432 BlockDriverState *child_bs,
3433 bool is_backing,
3434 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003435{
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003436 bool update_inherits_from =
3437 bdrv_inherits_from_recursive(child_bs, parent_bs);
3438 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3439 BdrvChildRole role;
Alberto Garcia0065c452018-10-31 18:16:37 +02003440
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003441 GLOBAL_STATE_CODE();
3442
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003443 if (!parent_bs->drv) {
3444 /*
3445 * Node without drv is an object without a class :/. TODO: finally fix
3446 * qcow2 driver to never clear bs->drv and implement format corruption
3447 * handling in other way.
3448 */
3449 error_setg(errp, "Node corrupted");
3450 return -EINVAL;
3451 }
3452
3453 if (child && child->frozen) {
3454 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3455 child->name, parent_bs->node_name, child->bs->node_name);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003456 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003457 }
3458
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03003459 if (is_backing && !parent_bs->drv->is_filter &&
3460 !parent_bs->drv->supports_backing)
3461 {
3462 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3463 "files", parent_bs->drv->format_name, parent_bs->node_name);
3464 return -EINVAL;
3465 }
3466
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003467 if (parent_bs->drv->is_filter) {
3468 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3469 } else if (is_backing) {
3470 role = BDRV_CHILD_COW;
3471 } else {
3472 /*
3473 * We only can use same role as it is in existing child. We don't have
3474 * infrastructure to determine role of file child in generic way
3475 */
3476 if (!child) {
3477 error_setg(errp, "Cannot set file child to format node without "
3478 "file child");
3479 return -EINVAL;
3480 }
3481 role = child->role;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003482 }
3483
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003484 if (child) {
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003485 assert(child->bs->quiesce_counter);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003486 bdrv_unset_inherits_from(parent_bs, child, tran);
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03003487 bdrv_remove_child(child, tran);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003488 }
3489
3490 if (!child_bs) {
Fam Zheng8d24cce2014-05-23 21:29:45 +08003491 goto out;
3492 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003493
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003494 child = bdrv_attach_child_noperm(parent_bs, child_bs,
3495 is_backing ? "backing" : "file",
3496 &child_of_bds, role,
3497 tran, errp);
3498 if (!child) {
3499 return -EINVAL;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003500 }
3501
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003502
3503 /*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003504 * If inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003505 * point directly to bs (else it will become NULL).
3506 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003507 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003508 bdrv_set_inherits_from(child_bs, parent_bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003509 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003510
Fam Zheng8d24cce2014-05-23 21:29:45 +08003511out:
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003512 bdrv_refresh_limits(parent_bs, tran, NULL);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003513
3514 return 0;
3515}
3516
Kevin Wolf4b408662023-06-05 10:57:06 +02003517/*
3518 * The caller must hold the AioContext lock for @backing_hd. Both @bs and
3519 * @backing_hd can move to a different AioContext in this function. Callers must
3520 * make sure that their AioContext locking is still correct after this.
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003521 *
3522 * If a backing child is already present (i.e. we're detaching a node), that
3523 * child node must be drained.
Kevin Wolf5661a002023-09-11 11:46:10 +02003524 *
3525 * After calling this function, the transaction @tran may only be completed
3526 * while holding a writer lock for the graph.
Kevin Wolf4b408662023-06-05 10:57:06 +02003527 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003528static int GRAPH_WRLOCK
3529bdrv_set_backing_noperm(BlockDriverState *bs,
3530 BlockDriverState *backing_hd,
3531 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003532{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003533 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003534 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3535}
3536
Kevin Wolf92140b92022-11-18 18:41:04 +01003537int bdrv_set_backing_hd_drained(BlockDriverState *bs,
3538 BlockDriverState *backing_hd,
3539 Error **errp)
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003540{
3541 int ret;
3542 Transaction *tran = tran_new();
3543
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003544 GLOBAL_STATE_CODE();
Kevin Wolf92140b92022-11-18 18:41:04 +01003545 assert(bs->quiesce_counter > 0);
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003546 if (bs->backing) {
3547 assert(bs->backing->bs->quiesce_counter > 0);
3548 }
3549 bdrv_graph_wrlock(backing_hd);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003550
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003551 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3552 if (ret < 0) {
3553 goto out;
3554 }
3555
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003556 ret = bdrv_refresh_perms(bs, tran, errp);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003557out:
3558 tran_finalize(tran, ret);
Kevin Wolf5661a002023-09-11 11:46:10 +02003559 bdrv_graph_wrunlock();
Kevin Wolf92140b92022-11-18 18:41:04 +01003560 return ret;
3561}
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003562
Kevin Wolf92140b92022-11-18 18:41:04 +01003563int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3564 Error **errp)
3565{
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003566 BlockDriverState *drain_bs = bs->backing ? bs->backing->bs : bs;
Kevin Wolf92140b92022-11-18 18:41:04 +01003567 int ret;
3568 GLOBAL_STATE_CODE();
3569
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003570 bdrv_ref(drain_bs);
3571 bdrv_drained_begin(drain_bs);
Kevin Wolf92140b92022-11-18 18:41:04 +01003572 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp);
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003573 bdrv_drained_end(drain_bs);
3574 bdrv_unref(drain_bs);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003575
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003576 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003577}
3578
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003579/*
3580 * Opens the backing file for a BlockDriverState if not yet open
3581 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003582 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3583 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3584 * itself, all options starting with "${bdref_key}." are considered part of the
3585 * BlockdevRef.
3586 *
Kevin Wolf2626d272023-05-25 14:47:06 +02003587 * The caller must hold the main AioContext lock.
3588 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003589 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003590 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003591int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3592 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003593{
Max Reitz6b6833c2019-02-01 20:29:15 +01003594 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003595 char *bdref_key_dot;
3596 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003597 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003598 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003599 BlockDriverState *backing_hd;
Kevin Wolf8aa04542023-06-05 10:57:08 +02003600 AioContext *backing_hd_ctx;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003601 QDict *options;
3602 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003603 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003604
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003605 GLOBAL_STATE_CODE();
3606
Kevin Wolf760e0062015-06-17 14:55:21 +02003607 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003608 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003609 }
3610
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003611 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003612 if (parent_options == NULL) {
3613 tmp_parent_options = qdict_new();
3614 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003615 }
3616
Paolo Bonzini9156df12012-10-18 16:49:17 +02003617 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003618
3619 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3620 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3621 g_free(bdref_key_dot);
3622
Markus Armbruster129c7d12017-03-30 19:43:12 +02003623 /*
3624 * Caution: while qdict_get_try_str() is fine, getting non-string
3625 * types would require more care. When @parent_options come from
3626 * -blockdev or blockdev_add, its members are typed according to
3627 * the QAPI schema, but when they come from -drive, they're all
3628 * QString.
3629 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003630 reference = qdict_get_try_str(parent_options, bdref_key);
3631 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003632 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003633 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003634 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003635 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003636 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003637 if (qdict_size(options) == 0) {
3638 /* If the user specifies options that do not modify the
3639 * backing file's behavior, we might still consider it the
3640 * implicit backing file. But it's easier this way, and
3641 * just specifying some of the backing BDS's options is
3642 * only possible with -drive anyway (otherwise the QAPI
3643 * schema forces the user to specify everything). */
3644 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3645 }
3646
Max Reitz6b6833c2019-02-01 20:29:15 +01003647 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003648 if (local_err) {
3649 ret = -EINVAL;
3650 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003651 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003652 goto free_exit;
3653 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003654 }
3655
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003656 if (!bs->drv || !bs->drv->supports_backing) {
3657 ret = -EINVAL;
3658 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003659 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003660 goto free_exit;
3661 }
3662
Peter Krempa6bff5972017-10-12 16:14:10 +02003663 if (!reference &&
3664 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003665 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003666 }
3667
Max Reitz6b6833c2019-02-01 20:29:15 +01003668 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003669 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003670 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003671 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003672 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003673 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003674 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003675 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003676
Max Reitz998c2012019-02-01 20:29:08 +01003677 if (implicit_backing) {
3678 bdrv_refresh_filename(backing_hd);
3679 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3680 backing_hd->filename);
3681 }
3682
Kevin Wolf5db15a52015-09-14 15:33:33 +02003683 /* Hook up the backing file link; drop our reference, bs owns the
3684 * backing_hd reference now */
Kevin Wolf8aa04542023-06-05 10:57:08 +02003685 backing_hd_ctx = bdrv_get_aio_context(backing_hd);
3686 aio_context_acquire(backing_hd_ctx);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003687 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003688 bdrv_unref(backing_hd);
Kevin Wolf8aa04542023-06-05 10:57:08 +02003689 aio_context_release(backing_hd_ctx);
3690
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003691 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003692 goto free_exit;
3693 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003694
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003695 qdict_del(parent_options, bdref_key);
3696
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003697free_exit:
3698 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003699 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003700 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003701}
3702
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003703static BlockDriverState *
3704bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003705 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003706 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003707{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003708 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003709 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003710 char *bdref_key_dot;
3711 const char *reference;
3712
Max Reitzbd86fb92020-05-13 13:05:13 +02003713 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003714
Max Reitzda557aa2013-12-20 19:28:11 +01003715 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3716 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3717 g_free(bdref_key_dot);
3718
Markus Armbruster129c7d12017-03-30 19:43:12 +02003719 /*
3720 * Caution: while qdict_get_try_str() is fine, getting non-string
3721 * types would require more care. When @options come from
3722 * -blockdev or blockdev_add, its members are typed according to
3723 * the QAPI schema, but when they come from -drive, they're all
3724 * QString.
3725 */
Max Reitzda557aa2013-12-20 19:28:11 +01003726 reference = qdict_get_try_str(options, bdref_key);
3727 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003728 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003729 error_setg(errp, "A block device must be specified for \"%s\"",
3730 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003731 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003732 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003733 goto done;
3734 }
3735
Max Reitz5b363932016-05-17 16:41:31 +02003736 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003737 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003738 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003739 goto done;
3740 }
3741
Max Reitzda557aa2013-12-20 19:28:11 +01003742done:
3743 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003744 return bs;
3745}
3746
3747/*
3748 * Opens a disk image whose options are given as BlockdevRef in another block
3749 * device's options.
3750 *
3751 * If allow_none is true, no image will be opened if filename is false and no
3752 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3753 *
3754 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3755 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3756 * itself, all options starting with "${bdref_key}." are considered part of the
3757 * BlockdevRef.
3758 *
3759 * The BlockdevRef will be removed from the options QDict.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003760 *
Kevin Wolf8394c352023-06-05 10:57:04 +02003761 * The caller must hold the lock of the main AioContext and no other AioContext.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003762 * @parent can move to a different AioContext in this function. Callers must
3763 * make sure that their AioContext locking is still correct after this.
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003764 */
3765BdrvChild *bdrv_open_child(const char *filename,
3766 QDict *options, const char *bdref_key,
3767 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003768 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003769 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003770 bool allow_none, Error **errp)
3771{
3772 BlockDriverState *bs;
Kevin Wolf8394c352023-06-05 10:57:04 +02003773 BdrvChild *child;
3774 AioContext *ctx;
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003775
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003776 GLOBAL_STATE_CODE();
3777
Max Reitzbd86fb92020-05-13 13:05:13 +02003778 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003779 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003780 if (bs == NULL) {
3781 return NULL;
3782 }
3783
Kevin Wolfafdaeb92023-09-11 11:46:11 +02003784 bdrv_graph_wrlock(NULL);
Kevin Wolf8394c352023-06-05 10:57:04 +02003785 ctx = bdrv_get_aio_context(bs);
3786 aio_context_acquire(ctx);
3787 child = bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3788 errp);
3789 aio_context_release(ctx);
Kevin Wolfafdaeb92023-09-11 11:46:11 +02003790 bdrv_graph_wrunlock();
Kevin Wolf8394c352023-06-05 10:57:04 +02003791
3792 return child;
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003793}
3794
Max Reitzbd86fb92020-05-13 13:05:13 +02003795/*
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003796 * Wrapper on bdrv_open_child() for most popular case: open primary child of bs.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003797 *
Kevin Wolf8394c352023-06-05 10:57:04 +02003798 * The caller must hold the lock of the main AioContext and no other AioContext.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003799 * @parent can move to a different AioContext in this function. Callers must
3800 * make sure that their AioContext locking is still correct after this.
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003801 */
3802int bdrv_open_file_child(const char *filename,
3803 QDict *options, const char *bdref_key,
3804 BlockDriverState *parent, Error **errp)
3805{
3806 BdrvChildRole role;
3807
3808 /* commit_top and mirror_top don't use this function */
3809 assert(!parent->drv->filtered_child_is_backing);
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003810 role = parent->drv->is_filter ?
3811 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE;
3812
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003813 if (!bdrv_open_child(filename, options, bdref_key, parent,
3814 &child_of_bds, role, false, errp))
3815 {
3816 return -EINVAL;
3817 }
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003818
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003819 return 0;
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003820}
3821
3822/*
Max Reitzbd86fb92020-05-13 13:05:13 +02003823 * TODO Future callers may need to specify parent/child_class in order for
3824 * option inheritance to work. Existing callers use it for the root node.
3825 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003826BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3827{
3828 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003829 QObject *obj = NULL;
3830 QDict *qdict = NULL;
3831 const char *reference = NULL;
3832 Visitor *v = NULL;
3833
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003834 GLOBAL_STATE_CODE();
3835
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003836 if (ref->type == QTYPE_QSTRING) {
3837 reference = ref->u.reference;
3838 } else {
3839 BlockdevOptions *options = &ref->u.definition;
3840 assert(ref->type == QTYPE_QDICT);
3841
3842 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003843 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003844 visit_complete(v, &obj);
3845
Max Reitz7dc847e2018-02-24 16:40:29 +01003846 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003847 qdict_flatten(qdict);
3848
3849 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3850 * compatibility with other callers) rather than what we want as the
3851 * real defaults. Apply the defaults here instead. */
3852 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3853 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3854 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003855 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3856
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003857 }
3858
Max Reitz272c02e2020-05-13 13:05:17 +02003859 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003860 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003861 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003862 visit_free(v);
3863 return bs;
3864}
3865
Max Reitz66836182016-05-17 16:41:27 +02003866static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3867 int flags,
3868 QDict *snapshot_options,
3869 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003870{
Bin Meng69fbfff2022-10-10 12:04:31 +08003871 g_autofree char *tmp_filename = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003872 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003873 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003874 BlockDriverState *bs_snapshot = NULL;
Kevin Wolff665f012023-06-05 10:57:07 +02003875 AioContext *ctx = bdrv_get_aio_context(bs);
Kevin Wolfb9988752014-04-03 12:09:34 +02003876 int ret;
3877
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003878 GLOBAL_STATE_CODE();
3879
Kevin Wolfb9988752014-04-03 12:09:34 +02003880 /* if snapshot, we create a temporary backing file and open it
3881 instead of opening 'filename' directly */
3882
3883 /* Get the required size from the image */
Kevin Wolff665f012023-06-05 10:57:07 +02003884 aio_context_acquire(ctx);
Kevin Wolff1877432014-04-04 17:07:19 +02003885 total_size = bdrv_getlength(bs);
Kevin Wolff665f012023-06-05 10:57:07 +02003886 aio_context_release(ctx);
3887
Kevin Wolff1877432014-04-04 17:07:19 +02003888 if (total_size < 0) {
3889 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003890 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003891 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003892
3893 /* Create the temporary image */
Bin Meng69fbfff2022-10-10 12:04:31 +08003894 tmp_filename = create_tmp_file(errp);
3895 if (!tmp_filename) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003896 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003897 }
3898
Max Reitzef810432014-12-02 18:32:42 +01003899 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003900 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003901 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003902 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003903 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003904 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003905 error_prepend(errp, "Could not create temporary overlay '%s': ",
3906 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003907 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003908 }
3909
Kevin Wolf73176be2016-03-07 13:02:15 +01003910 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003911 qdict_put_str(snapshot_options, "file.driver", "file");
3912 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3913 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003914
Max Reitz5b363932016-05-17 16:41:31 +02003915 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003916 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003917 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003918 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003919 }
3920
Kevin Wolff665f012023-06-05 10:57:07 +02003921 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003922 ret = bdrv_append(bs_snapshot, bs, errp);
Kevin Wolff665f012023-06-05 10:57:07 +02003923 aio_context_release(ctx);
3924
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003925 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003926 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003927 goto out;
3928 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003929
3930out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003931 qobject_unref(snapshot_options);
Eric Blakeff6ed712017-04-27 16:58:18 -05003932 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003933}
3934
Max Reitzda557aa2013-12-20 19:28:11 +01003935/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003936 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003937 *
3938 * options is a QDict of options to pass to the block drivers, or NULL for an
3939 * empty set of options. The reference to the QDict belongs to the block layer
3940 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003941 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003942 *
3943 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3944 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003945 *
3946 * The reference parameter may be used to specify an existing block device which
3947 * should be opened. If specified, neither options nor a filename may be given,
3948 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01003949 *
Kevin Wolfae400db2023-05-25 14:47:03 +02003950 * The caller must always hold the main AioContext lock.
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003951 */
Kevin Wolf32192302023-01-26 18:24:32 +01003952static BlockDriverState * no_coroutine_fn
3953bdrv_open_inherit(const char *filename, const char *reference, QDict *options,
3954 int flags, BlockDriverState *parent,
3955 const BdrvChildClass *child_class, BdrvChildRole child_role,
3956 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003957{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003958 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003959 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003960 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003961 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003962 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003963 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003964 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003965 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003966 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003967 int snapshot_flags = 0;
Kevin Wolff665f012023-06-05 10:57:07 +02003968 AioContext *ctx = qemu_get_aio_context();
bellard712e7872005-04-28 21:09:32 +00003969
Max Reitzbd86fb92020-05-13 13:05:13 +02003970 assert(!child_class || !flags);
3971 assert(!child_class == !parent);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003972 GLOBAL_STATE_CODE();
Kevin Wolf32192302023-01-26 18:24:32 +01003973 assert(!qemu_in_coroutine());
Max Reitzf67503e2014-02-18 18:33:05 +01003974
Kevin Wolf356f4ef2023-09-11 11:46:15 +02003975 /* TODO We'll eventually have to take a writer lock in this function */
3976 GRAPH_RDLOCK_GUARD_MAINLOOP();
3977
Max Reitzddf56362014-02-18 18:33:06 +01003978 if (reference) {
3979 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003980 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003981
Max Reitzddf56362014-02-18 18:33:06 +01003982 if (filename || options_non_empty) {
3983 error_setg(errp, "Cannot reference an existing block device with "
3984 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003985 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003986 }
3987
3988 bs = bdrv_lookup_bs(reference, reference, errp);
3989 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003990 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003991 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003992
Max Reitzddf56362014-02-18 18:33:06 +01003993 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003994 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003995 }
3996
Max Reitz5b363932016-05-17 16:41:31 +02003997 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003998
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003999 /* NULL means an empty set of options */
4000 if (options == NULL) {
4001 options = qdict_new();
4002 }
4003
Kevin Wolf145f5982015-05-08 16:15:03 +02004004 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01004005 parse_json_protocol(options, &filename, &local_err);
4006 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01004007 goto fail;
4008 }
4009
Kevin Wolf145f5982015-05-08 16:15:03 +02004010 bs->explicit_options = qdict_clone_shallow(options);
4011
Max Reitzbd86fb92020-05-13 13:05:13 +02004012 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02004013 bool parent_is_format;
4014
4015 if (parent->drv) {
4016 parent_is_format = parent->drv->is_format;
4017 } else {
4018 /*
4019 * parent->drv is not set yet because this node is opened for
4020 * (potential) format probing. That means that @parent is going
4021 * to be a format node.
4022 */
4023 parent_is_format = true;
4024 }
4025
Kevin Wolfbddcec32015-04-09 18:47:50 +02004026 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004027 child_class->inherit_options(child_role, parent_is_format,
4028 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004029 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004030 }
4031
Kevin Wolfde3b53f2015-10-29 15:24:41 +01004032 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02004033 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02004034 goto fail;
4035 }
4036
Markus Armbruster129c7d12017-03-30 19:43:12 +02004037 /*
4038 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
4039 * Caution: getting a boolean member of @options requires care.
4040 * When @options come from -blockdev or blockdev_add, members are
4041 * typed according to the QAPI schema, but when they come from
4042 * -drive, they're all QString.
4043 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03004044 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
4045 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
4046 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
4047 } else {
4048 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03004049 }
4050
4051 if (flags & BDRV_O_SNAPSHOT) {
4052 snapshot_options = qdict_new();
4053 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
4054 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03004055 /* Let bdrv_backing_options() override "read-only" */
4056 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02004057 bdrv_inherited_options(BDRV_CHILD_COW, true,
4058 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03004059 }
4060
Kevin Wolf62392eb2015-04-24 16:38:02 +02004061 bs->open_flags = flags;
4062 bs->options = options;
4063 options = qdict_clone_shallow(options);
4064
Kevin Wolf76c591b2014-06-04 14:19:44 +02004065 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02004066 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02004067 drvname = qdict_get_try_str(options, "driver");
4068 if (drvname) {
4069 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004070 if (!drv) {
4071 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004072 goto fail;
4073 }
4074 }
4075
4076 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02004077
Markus Armbruster129c7d12017-03-30 19:43:12 +02004078 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02004079 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01004080 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
4081 (backing && *backing == '\0'))
4082 {
Max Reitz4f7be282018-02-24 16:40:33 +01004083 if (backing) {
4084 warn_report("Use of \"backing\": \"\" is deprecated; "
4085 "use \"backing\": null instead");
4086 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02004087 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01004088 qdict_del(bs->explicit_options, "backing");
4089 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02004090 qdict_del(options, "backing");
4091 }
4092
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004093 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004094 * probing, the block drivers will do their own bdrv_open_child() for the
4095 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02004096 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004097 BlockDriverState *file_bs;
4098
4099 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02004100 &child_of_bds, BDRV_CHILD_IMAGE,
4101 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02004102 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01004103 goto fail;
4104 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004105 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01004106 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
4107 * looking at the header to guess the image format. This works even
4108 * in cases where a guest would not see a consistent state. */
Kevin Wolff665f012023-06-05 10:57:07 +02004109 ctx = bdrv_get_aio_context(file_bs);
4110 aio_context_acquire(ctx);
4111 file = blk_new(ctx, 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01004112 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004113 bdrv_unref(file_bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004114 aio_context_release(ctx);
4115
Kevin Wolfd7086422017-01-13 19:02:32 +01004116 if (local_err) {
4117 goto fail;
4118 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004119
Eric Blake46f5ac22017-04-27 16:58:17 -05004120 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004121 }
Max Reitz5469a2a2014-02-18 18:33:10 +01004122 }
4123
Kevin Wolf76c591b2014-06-04 14:19:44 +02004124 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01004125 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02004126 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02004127 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02004128 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02004129 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01004130 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02004131 /*
4132 * This option update would logically belong in bdrv_fill_options(),
4133 * but we first need to open bs->file for the probing to work, while
4134 * opening bs->file already requires the (mostly) final set of options
4135 * so that cache mode etc. can be inherited.
4136 *
4137 * Adding the driver later is somewhat ugly, but it's not an option
4138 * that would ever be inherited, so it's correct. We just need to make
4139 * sure to update both bs->options (which has the full effective
4140 * options for bs) and options (which has file.* already removed).
4141 */
Eric Blake46f5ac22017-04-27 16:58:17 -05004142 qdict_put_str(bs->options, "driver", drv->format_name);
4143 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004144 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02004145 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02004146 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01004147 }
4148
Max Reitz53a29512015-03-19 14:53:16 -04004149 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
4150 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
4151 /* file must be NULL if a protocol BDS is about to be created
4152 * (the inverse results in an error message from bdrv_open_common()) */
4153 assert(!(flags & BDRV_O_PROTOCOL) || !file);
4154
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004155 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01004156 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004157 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02004158 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01004159 }
4160
Kevin Wolff665f012023-06-05 10:57:07 +02004161 /* The AioContext could have changed during bdrv_open_common() */
4162 ctx = bdrv_get_aio_context(bs);
4163
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004164 if (file) {
Kevin Wolff665f012023-06-05 10:57:07 +02004165 aio_context_acquire(ctx);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004166 blk_unref(file);
Kevin Wolff665f012023-06-05 10:57:07 +02004167 aio_context_release(ctx);
Kevin Wolff500a6d2012-11-12 17:35:27 +01004168 file = NULL;
4169 }
4170
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004171 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02004172 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01004173 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004174 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004175 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004176 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004177 }
4178
Alberto Garcia50196d72018-09-06 12:37:03 +03004179 /* Remove all children options and references
4180 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03004181 QLIST_FOREACH(child, &bs->children, next) {
4182 char *child_key_dot;
4183 child_key_dot = g_strdup_printf("%s.", child->name);
4184 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4185 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03004186 qdict_del(bs->explicit_options, child->name);
4187 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03004188 g_free(child_key_dot);
4189 }
4190
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004191 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01004192 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004193 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01004194 if (flags & BDRV_O_PROTOCOL) {
4195 error_setg(errp, "Block protocol '%s' doesn't support the option "
4196 "'%s'", drv->format_name, entry->key);
4197 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01004198 error_setg(errp,
4199 "Block format '%s' does not support the option '%s'",
4200 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01004201 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004202
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004203 goto close_and_fail;
4204 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004205
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01004206 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004207
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004208 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03004209 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004210
4211 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4212 * temporary snapshot afterwards. */
4213 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02004214 BlockDriverState *snapshot_bs;
4215 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4216 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01004217 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004218 if (local_err) {
4219 goto close_and_fail;
4220 }
Max Reitz5b363932016-05-17 16:41:31 +02004221 /* We are not going to return bs but the overlay on top of it
4222 * (snapshot_bs); thus, we have to drop the strong reference to bs
4223 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4224 * though, because the overlay still has a reference to it. */
Kevin Wolff665f012023-06-05 10:57:07 +02004225 aio_context_acquire(ctx);
Max Reitz5b363932016-05-17 16:41:31 +02004226 bdrv_unref(bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004227 aio_context_release(ctx);
Max Reitz5b363932016-05-17 16:41:31 +02004228 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02004229 }
4230
Max Reitz5b363932016-05-17 16:41:31 +02004231 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004232
Kevin Wolf8bfea152014-04-11 19:16:36 +02004233fail:
Kevin Wolff665f012023-06-05 10:57:07 +02004234 aio_context_acquire(ctx);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004235 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004236 qobject_unref(snapshot_options);
4237 qobject_unref(bs->explicit_options);
4238 qobject_unref(bs->options);
4239 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004240 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03004241 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02004242 bdrv_unref(bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004243 aio_context_release(ctx);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004244 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004245 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004246
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004247close_and_fail:
Kevin Wolff665f012023-06-05 10:57:07 +02004248 aio_context_acquire(ctx);
Max Reitz5b363932016-05-17 16:41:31 +02004249 bdrv_unref(bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004250 aio_context_release(ctx);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004251 qobject_unref(snapshot_options);
4252 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004253 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004254 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004255}
4256
Kevin Wolfae400db2023-05-25 14:47:03 +02004257/* The caller must always hold the main AioContext lock. */
Max Reitz5b363932016-05-17 16:41:31 +02004258BlockDriverState *bdrv_open(const char *filename, const char *reference,
4259 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02004260{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004261 GLOBAL_STATE_CODE();
4262
Max Reitz5b363932016-05-17 16:41:31 +02004263 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02004264 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004265}
4266
Alberto Garciafaf116b2019-03-12 18:48:49 +02004267/* Return true if the NULL-terminated @list contains @str */
4268static bool is_str_in_list(const char *str, const char *const *list)
4269{
4270 if (str && list) {
4271 int i;
4272 for (i = 0; list[i] != NULL; i++) {
4273 if (!strcmp(str, list[i])) {
4274 return true;
4275 }
4276 }
4277 }
4278 return false;
4279}
4280
4281/*
4282 * Check that every option set in @bs->options is also set in
4283 * @new_opts.
4284 *
4285 * Options listed in the common_options list and in
4286 * @bs->drv->mutable_opts are skipped.
4287 *
4288 * Return 0 on success, otherwise return -EINVAL and set @errp.
4289 */
4290static int bdrv_reset_options_allowed(BlockDriverState *bs,
4291 const QDict *new_opts, Error **errp)
4292{
4293 const QDictEntry *e;
4294 /* These options are common to all block drivers and are handled
4295 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4296 const char *const common_options[] = {
4297 "node-name", "discard", "cache.direct", "cache.no-flush",
4298 "read-only", "auto-read-only", "detect-zeroes", NULL
4299 };
4300
4301 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4302 if (!qdict_haskey(new_opts, e->key) &&
4303 !is_str_in_list(e->key, common_options) &&
4304 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4305 error_setg(errp, "Option '%s' cannot be reset "
4306 "to its default value", e->key);
4307 return -EINVAL;
4308 }
4309 }
4310
4311 return 0;
4312}
4313
Jeff Codye971aa12012-09-20 15:13:19 -04004314/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004315 * Returns true if @child can be reached recursively from @bs
4316 */
4317static bool bdrv_recurse_has_child(BlockDriverState *bs,
4318 BlockDriverState *child)
4319{
4320 BdrvChild *c;
4321
4322 if (bs == child) {
4323 return true;
4324 }
4325
4326 QLIST_FOREACH(c, &bs->children, next) {
4327 if (bdrv_recurse_has_child(c->bs, child)) {
4328 return true;
4329 }
4330 }
4331
4332 return false;
4333}
4334
4335/*
Jeff Codye971aa12012-09-20 15:13:19 -04004336 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4337 * reopen of multiple devices.
4338 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004339 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04004340 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4341 * be created and initialized. This newly created BlockReopenQueue should be
4342 * passed back in for subsequent calls that are intended to be of the same
4343 * atomic 'set'.
4344 *
4345 * bs is the BlockDriverState to add to the reopen queue.
4346 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004347 * options contains the changed options for the associated bs
4348 * (the BlockReopenQueue takes ownership)
4349 *
Jeff Codye971aa12012-09-20 15:13:19 -04004350 * flags contains the open flags for the associated bs
4351 *
4352 * returns a pointer to bs_queue, which is either the newly allocated
4353 * bs_queue, or the existing bs_queue being used.
4354 *
Kevin Wolfd22933a2022-11-18 18:41:02 +01004355 * bs is drained here and undrained by bdrv_reopen_queue_free().
Kevin Wolf2e117862022-11-18 18:41:01 +01004356 *
4357 * To be called with bs->aio_context locked.
Jeff Codye971aa12012-09-20 15:13:19 -04004358 */
Kevin Wolf28518102015-05-08 17:07:31 +02004359static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4360 BlockDriverState *bs,
4361 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004362 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02004363 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004364 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02004365 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004366 int parent_flags,
4367 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04004368{
4369 assert(bs != NULL);
4370
4371 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02004372 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004373 QDict *old_options, *explicit_options, *options_copy;
4374 int flags;
4375 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004376
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05004377 GLOBAL_STATE_CODE();
Kevin Wolf1a63a902017-12-06 20:24:44 +01004378
Kevin Wolfd22933a2022-11-18 18:41:02 +01004379 bdrv_drained_begin(bs);
4380
Jeff Codye971aa12012-09-20 15:13:19 -04004381 if (bs_queue == NULL) {
4382 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004383 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04004384 }
4385
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004386 if (!options) {
4387 options = qdict_new();
4388 }
4389
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004390 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004391 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004392 if (bs == bs_entry->state.bs) {
4393 break;
4394 }
4395 }
4396
Kevin Wolf28518102015-05-08 17:07:31 +02004397 /*
4398 * Precedence of options:
4399 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004400 * 2. Retained from explicitly set options of bs
4401 * 3. Inherited from parent node
4402 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004403 */
4404
Kevin Wolf145f5982015-05-08 16:15:03 +02004405 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004406 if (bs_entry || keep_old_opts) {
4407 old_options = qdict_clone_shallow(bs_entry ?
4408 bs_entry->state.explicit_options :
4409 bs->explicit_options);
4410 bdrv_join_options(bs, options, old_options);
4411 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004412 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004413
4414 explicit_options = qdict_clone_shallow(options);
4415
Kevin Wolf28518102015-05-08 17:07:31 +02004416 /* Inherit from parent node */
4417 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004418 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004419 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004420 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004421 } else {
4422 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004423 }
4424
Alberto Garcia077e8e22019-03-12 18:48:44 +02004425 if (keep_old_opts) {
4426 /* Old values are used for options that aren't set yet */
4427 old_options = qdict_clone_shallow(bs->options);
4428 bdrv_join_options(bs, options, old_options);
4429 qobject_unref(old_options);
4430 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004431
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004432 /* We have the final set of options so let's update the flags */
4433 options_copy = qdict_clone_shallow(options);
4434 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4435 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4436 update_flags_from_options(&flags, opts);
4437 qemu_opts_del(opts);
4438 qobject_unref(options_copy);
4439
Kevin Wolffd452022017-08-03 17:02:59 +02004440 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004441 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004442 if (flags & BDRV_O_RDWR) {
4443 flags |= BDRV_O_ALLOW_RDWR;
4444 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004445
Kevin Wolf1857c972017-09-14 14:53:46 +02004446 if (!bs_entry) {
4447 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004448 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004449 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004450 qobject_unref(bs_entry->state.options);
4451 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004452 }
4453
4454 bs_entry->state.bs = bs;
4455 bs_entry->state.options = options;
4456 bs_entry->state.explicit_options = explicit_options;
4457 bs_entry->state.flags = flags;
4458
Alberto Garcia85466322019-03-12 18:48:45 +02004459 /*
4460 * If keep_old_opts is false then it means that unspecified
4461 * options must be reset to their original value. We don't allow
4462 * resetting 'backing' but we need to know if the option is
4463 * missing in order to decide if we have to return an error.
4464 */
4465 if (!keep_old_opts) {
4466 bs_entry->state.backing_missing =
4467 !qdict_haskey(options, "backing") &&
4468 !qdict_haskey(options, "backing.driver");
4469 }
4470
Kevin Wolf67251a32015-04-09 18:54:04 +02004471 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004472 QDict *new_child_options = NULL;
4473 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004474
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004475 /* reopen can only change the options of block devices that were
4476 * implicitly created and inherited options. For other (referenced)
4477 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004478 if (child->bs->inherits_from != bs) {
4479 continue;
4480 }
4481
Alberto Garcia85466322019-03-12 18:48:45 +02004482 /* Check if the options contain a child reference */
4483 if (qdict_haskey(options, child->name)) {
4484 const char *childref = qdict_get_try_str(options, child->name);
4485 /*
4486 * The current child must not be reopened if the child
4487 * reference is null or points to a different node.
4488 */
4489 if (g_strcmp0(childref, child->bs->node_name)) {
4490 continue;
4491 }
4492 /*
4493 * If the child reference points to the current child then
4494 * reopen it with its existing set of options (note that
4495 * it can still inherit new options from the parent).
4496 */
4497 child_keep_old = true;
4498 } else {
4499 /* Extract child options ("child-name.*") */
4500 char *child_key_dot = g_strdup_printf("%s.", child->name);
4501 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4502 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4503 g_free(child_key_dot);
4504 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004505
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004506 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004507 child->klass, child->role, bs->drv->is_format,
4508 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004509 }
4510
Jeff Codye971aa12012-09-20 15:13:19 -04004511 return bs_queue;
4512}
4513
Kevin Wolf2e117862022-11-18 18:41:01 +01004514/* To be called with bs->aio_context locked */
Kevin Wolf28518102015-05-08 17:07:31 +02004515BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4516 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004517 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004518{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004519 GLOBAL_STATE_CODE();
4520
Max Reitz3cdc69d2020-05-13 13:05:18 +02004521 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4522 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004523}
4524
Alberto Garciaab5b52282021-07-08 13:47:05 +02004525void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4526{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004527 GLOBAL_STATE_CODE();
Alberto Garciaab5b52282021-07-08 13:47:05 +02004528 if (bs_queue) {
4529 BlockReopenQueueEntry *bs_entry, *next;
4530 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolfd22933a2022-11-18 18:41:02 +01004531 AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs);
4532
4533 aio_context_acquire(ctx);
4534 bdrv_drained_end(bs_entry->state.bs);
4535 aio_context_release(ctx);
4536
Alberto Garciaab5b52282021-07-08 13:47:05 +02004537 qobject_unref(bs_entry->state.explicit_options);
4538 qobject_unref(bs_entry->state.options);
4539 g_free(bs_entry);
4540 }
4541 g_free(bs_queue);
4542 }
4543}
4544
Jeff Codye971aa12012-09-20 15:13:19 -04004545/*
4546 * Reopen multiple BlockDriverStates atomically & transactionally.
4547 *
4548 * The queue passed in (bs_queue) must have been built up previous
4549 * via bdrv_reopen_queue().
4550 *
4551 * Reopens all BDS specified in the queue, with the appropriate
4552 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004553 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004554 * data cleaned up.
4555 *
4556 * If all devices prepare successfully, then the changes are committed
4557 * to all devices.
4558 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004559 * All affected nodes must be drained between bdrv_reopen_queue() and
4560 * bdrv_reopen_multiple().
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004561 *
4562 * To be called from the main thread, with all other AioContexts unlocked.
Jeff Codye971aa12012-09-20 15:13:19 -04004563 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004564int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004565{
4566 int ret = -1;
4567 BlockReopenQueueEntry *bs_entry, *next;
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004568 AioContext *ctx;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004569 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004570 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004571
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004572 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Jeff Codye971aa12012-09-20 15:13:19 -04004573 assert(bs_queue != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004574 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004575
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004576 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004577 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4578 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004579 ret = bdrv_flush(bs_entry->state.bs);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004580 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004581 if (ret < 0) {
4582 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004583 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004584 }
4585 }
4586
4587 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004588 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004589 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4590 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004591 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004592 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004593 if (ret < 0) {
4594 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004595 }
4596 bs_entry->prepared = true;
4597 }
4598
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004599 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004600 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004601
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004602 refresh_list = g_slist_prepend(refresh_list, state->bs);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004603 if (state->old_backing_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004604 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004605 }
Alberto Garciaecd30d22021-06-10 15:05:36 +03004606 if (state->old_file_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004607 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs);
Alberto Garciaecd30d22021-06-10 15:05:36 +03004608 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004609 }
4610
4611 /*
4612 * Note that file-posix driver rely on permission update done during reopen
4613 * (even if no permission changed), because it wants "new" permissions for
4614 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4615 * in raw_reopen_prepare() which is called with "old" permissions.
4616 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02004617 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004618 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
Kevin Wolf3804e3c2023-09-11 11:46:12 +02004619 bdrv_graph_rdunlock_main_loop();
4620
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004621 if (ret < 0) {
4622 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004623 }
4624
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004625 /*
4626 * If we reach this point, we have success and just need to apply the
4627 * changes.
4628 *
4629 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4630 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4631 * children are usually goes after parents in reopen-queue, so go from last
4632 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004633 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004634 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004635 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4636 aio_context_acquire(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004637 bdrv_reopen_commit(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004638 aio_context_release(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004639 }
4640
Kevin Wolf5661a002023-09-11 11:46:10 +02004641 bdrv_graph_wrlock(NULL);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004642 tran_commit(tran);
Kevin Wolf5661a002023-09-11 11:46:10 +02004643 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004644
4645 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4646 BlockDriverState *bs = bs_entry->state.bs;
4647
4648 if (bs->drv->bdrv_reopen_commit_post) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004649 ctx = bdrv_get_aio_context(bs);
4650 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004651 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004652 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004653 }
4654 }
4655
Jeff Codye971aa12012-09-20 15:13:19 -04004656 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004657 goto cleanup;
4658
4659abort:
Kevin Wolf5661a002023-09-11 11:46:10 +02004660 bdrv_graph_wrlock(NULL);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004661 tran_abort(tran);
Kevin Wolf5661a002023-09-11 11:46:10 +02004662 bdrv_graph_wrunlock();
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004663
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004664 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004665 if (bs_entry->prepared) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004666 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4667 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004668 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004669 aio_context_release(ctx);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004670 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004671 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004672
Jeff Codye971aa12012-09-20 15:13:19 -04004673cleanup:
Alberto Garciaab5b52282021-07-08 13:47:05 +02004674 bdrv_reopen_queue_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004675
Jeff Codye971aa12012-09-20 15:13:19 -04004676 return ret;
4677}
4678
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004679int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4680 Error **errp)
4681{
4682 AioContext *ctx = bdrv_get_aio_context(bs);
4683 BlockReopenQueue *queue;
4684 int ret;
4685
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004686 GLOBAL_STATE_CODE();
4687
Kevin Wolf2e117862022-11-18 18:41:01 +01004688 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4689
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004690 if (ctx != qemu_get_aio_context()) {
4691 aio_context_release(ctx);
4692 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004693 ret = bdrv_reopen_multiple(queue, errp);
4694
4695 if (ctx != qemu_get_aio_context()) {
4696 aio_context_acquire(ctx);
4697 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004698
4699 return ret;
4700}
4701
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004702int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4703 Error **errp)
4704{
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004705 QDict *opts = qdict_new();
4706
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004707 GLOBAL_STATE_CODE();
4708
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004709 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4710
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004711 return bdrv_reopen(bs, opts, true, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004712}
4713
Jeff Codye971aa12012-09-20 15:13:19 -04004714/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004715 * Take a BDRVReopenState and check if the value of 'backing' in the
4716 * reopen_state->options QDict is valid or not.
4717 *
4718 * If 'backing' is missing from the QDict then return 0.
4719 *
4720 * If 'backing' contains the node name of the backing file of
4721 * reopen_state->bs then return 0.
4722 *
4723 * If 'backing' contains a different node name (or is null) then check
4724 * whether the current backing file can be replaced with the new one.
4725 * If that's the case then reopen_state->replace_backing_bs is set to
4726 * true and reopen_state->new_backing_bs contains a pointer to the new
4727 * backing BlockDriverState (or NULL).
4728 *
Kevin Wolf5661a002023-09-11 11:46:10 +02004729 * After calling this function, the transaction @tran may only be completed
4730 * while holding a writer lock for the graph.
4731 *
Alberto Garciacb828c32019-03-12 18:48:47 +02004732 * Return 0 on success, otherwise return < 0 and set @errp.
Kevin Wolf4b408662023-06-05 10:57:06 +02004733 *
4734 * The caller must hold the AioContext lock of @reopen_state->bs.
4735 * @reopen_state->bs can move to a different AioContext in this function.
4736 * Callers must make sure that their AioContext locking is still correct after
4737 * this.
Alberto Garciacb828c32019-03-12 18:48:47 +02004738 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004739static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4740 bool is_backing, Transaction *tran,
4741 Error **errp)
Alberto Garciacb828c32019-03-12 18:48:47 +02004742{
4743 BlockDriverState *bs = reopen_state->bs;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004744 BlockDriverState *new_child_bs;
4745 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4746 child_bs(bs->file);
4747 const char *child_name = is_backing ? "backing" : "file";
Alberto Garciacb828c32019-03-12 18:48:47 +02004748 QObject *value;
4749 const char *str;
Kevin Wolf4b408662023-06-05 10:57:06 +02004750 AioContext *ctx, *old_ctx;
4751 int ret;
Alberto Garciacb828c32019-03-12 18:48:47 +02004752
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05004753 GLOBAL_STATE_CODE();
4754
Alberto Garciaecd30d22021-06-10 15:05:36 +03004755 value = qdict_get(reopen_state->options, child_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004756 if (value == NULL) {
4757 return 0;
4758 }
4759
4760 switch (qobject_type(value)) {
4761 case QTYPE_QNULL:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004762 assert(is_backing); /* The 'file' option does not allow a null value */
4763 new_child_bs = NULL;
Alberto Garciacb828c32019-03-12 18:48:47 +02004764 break;
4765 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004766 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciaecd30d22021-06-10 15:05:36 +03004767 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4768 if (new_child_bs == NULL) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004769 return -EINVAL;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004770 } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4771 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4772 "cycle", str, child_name, bs->node_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004773 return -EINVAL;
4774 }
4775 break;
4776 default:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004777 /*
4778 * The options QDict has been flattened, so 'backing' and 'file'
4779 * do not allow any other data type here.
4780 */
Alberto Garciacb828c32019-03-12 18:48:47 +02004781 g_assert_not_reached();
4782 }
4783
Alberto Garciaecd30d22021-06-10 15:05:36 +03004784 if (old_child_bs == new_child_bs) {
4785 return 0;
4786 }
4787
4788 if (old_child_bs) {
4789 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004790 return 0;
4791 }
4792
Alberto Garciaecd30d22021-06-10 15:05:36 +03004793 if (old_child_bs->implicit) {
4794 error_setg(errp, "Cannot replace implicit %s child of %s",
4795 child_name, bs->node_name);
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004796 return -EPERM;
4797 }
4798 }
4799
Alberto Garciaecd30d22021-06-10 15:05:36 +03004800 if (bs->drv->is_filter && !old_child_bs) {
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03004801 /*
4802 * Filters always have a file or a backing child, so we are trying to
4803 * change wrong child
4804 */
4805 error_setg(errp, "'%s' is a %s filter node that does not support a "
Alberto Garciaecd30d22021-06-10 15:05:36 +03004806 "%s child", bs->node_name, bs->drv->format_name, child_name);
Max Reitz1d42f482019-06-12 17:24:39 +02004807 return -EINVAL;
4808 }
4809
Alberto Garciaecd30d22021-06-10 15:05:36 +03004810 if (is_backing) {
4811 reopen_state->old_backing_bs = old_child_bs;
4812 } else {
4813 reopen_state->old_file_bs = old_child_bs;
4814 }
4815
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004816 if (old_child_bs) {
4817 bdrv_ref(old_child_bs);
4818 bdrv_drained_begin(old_child_bs);
4819 }
4820
Kevin Wolf4b408662023-06-05 10:57:06 +02004821 old_ctx = bdrv_get_aio_context(bs);
4822 ctx = bdrv_get_aio_context(new_child_bs);
4823 if (old_ctx != ctx) {
4824 aio_context_release(old_ctx);
4825 aio_context_acquire(ctx);
4826 }
4827
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004828 bdrv_graph_wrlock(new_child_bs);
4829
Kevin Wolf4b408662023-06-05 10:57:06 +02004830 ret = bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4831 tran, errp);
4832
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004833 bdrv_graph_wrunlock();
4834
Kevin Wolf4b408662023-06-05 10:57:06 +02004835 if (old_ctx != ctx) {
4836 aio_context_release(ctx);
4837 aio_context_acquire(old_ctx);
4838 }
4839
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004840 if (old_child_bs) {
4841 bdrv_drained_end(old_child_bs);
4842 bdrv_unref(old_child_bs);
4843 }
4844
Kevin Wolf4b408662023-06-05 10:57:06 +02004845 return ret;
Alberto Garciacb828c32019-03-12 18:48:47 +02004846}
4847
4848/*
Jeff Codye971aa12012-09-20 15:13:19 -04004849 * Prepares a BlockDriverState for reopen. All changes are staged in the
4850 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4851 * the block driver layer .bdrv_reopen_prepare()
4852 *
4853 * bs is the BlockDriverState to reopen
4854 * flags are the new open flags
4855 * queue is the reopen queue
4856 *
4857 * Returns 0 on success, non-zero on error. On error errp will be set
4858 * as well.
4859 *
4860 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4861 * It is the responsibility of the caller to then call the abort() or
4862 * commit() for any other BDS that have been left in a prepare() state
4863 *
Kevin Wolf4b408662023-06-05 10:57:06 +02004864 * The caller must hold the AioContext lock of @reopen_state->bs.
Kevin Wolf5661a002023-09-11 11:46:10 +02004865 *
4866 * After calling this function, the transaction @change_child_tran may only be
4867 * completed while holding a writer lock for the graph.
Jeff Codye971aa12012-09-20 15:13:19 -04004868 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004869static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004870 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +03004871 Transaction *change_child_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004872{
4873 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004874 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004875 Error *local_err = NULL;
4876 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004877 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004878 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004879 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004880 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004881 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004882
4883 assert(reopen_state != NULL);
4884 assert(reopen_state->bs->drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004885 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004886 drv = reopen_state->bs->drv;
4887
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004888 /* This function and each driver's bdrv_reopen_prepare() remove
4889 * entries from reopen_state->options as they are processed, so
4890 * we need to make a copy of the original QDict. */
4891 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4892
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004893 /* Process generic block layer options */
4894 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004895 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004896 ret = -EINVAL;
4897 goto error;
4898 }
4899
Alberto Garciae6d79c42018-11-12 16:00:47 +02004900 /* This was already called in bdrv_reopen_queue_child() so the flags
4901 * are up-to-date. This time we simply want to remove the options from
4902 * QemuOpts in order to indicate that they have been processed. */
4903 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004904 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004905 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004906
Alberto Garcia415bbca2018-10-03 13:23:13 +03004907 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004908 if (discard != NULL) {
4909 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4910 error_setg(errp, "Invalid discard option");
4911 ret = -EINVAL;
4912 goto error;
4913 }
4914 }
4915
Alberto Garcia543770b2018-09-06 12:37:09 +03004916 reopen_state->detect_zeroes =
4917 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4918 if (local_err) {
4919 error_propagate(errp, local_err);
4920 ret = -EINVAL;
4921 goto error;
4922 }
4923
Alberto Garcia57f9db92018-09-06 12:37:06 +03004924 /* All other options (including node-name and driver) must be unchanged.
4925 * Put them back into the QDict, so that they are checked at the end
4926 * of this function. */
4927 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004928
Jeff Cody3d8ce172017-04-07 16:55:30 -04004929 /* If we are to stay read-only, do not allow permission change
4930 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4931 * not set, or if the BDS still has copy_on_read enabled */
4932 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004933 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004934 if (local_err) {
4935 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004936 goto error;
4937 }
4938
Jeff Codye971aa12012-09-20 15:13:19 -04004939 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004940 /*
4941 * If a driver-specific option is missing, it means that we
4942 * should reset it to its default value.
4943 * But not all options allow that, so we need to check it first.
4944 */
4945 ret = bdrv_reset_options_allowed(reopen_state->bs,
4946 reopen_state->options, errp);
4947 if (ret) {
4948 goto error;
4949 }
4950
Jeff Codye971aa12012-09-20 15:13:19 -04004951 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4952 if (ret) {
4953 if (local_err != NULL) {
4954 error_propagate(errp, local_err);
4955 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004956 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004957 error_setg(errp, "failed while preparing to reopen image '%s'",
4958 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004959 }
4960 goto error;
4961 }
4962 } else {
4963 /* It is currently mandatory to have a bdrv_reopen_prepare()
4964 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004965 error_setg(errp, "Block format '%s' used by node '%s' "
4966 "does not support reopening files", drv->format_name,
4967 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004968 ret = -1;
4969 goto error;
4970 }
4971
Max Reitz9ad08c42018-11-16 17:45:24 +01004972 drv_prepared = true;
4973
Alberto Garciabacd9b82019-03-12 18:48:46 +02004974 /*
4975 * We must provide the 'backing' option if the BDS has a backing
4976 * file or if the image file has a backing file name as part of
4977 * its metadata. Otherwise the 'backing' option can be omitted.
4978 */
4979 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004980 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004981 error_setg(errp, "backing is missing for '%s'",
4982 reopen_state->bs->node_name);
4983 ret = -EINVAL;
4984 goto error;
4985 }
4986
Alberto Garciacb828c32019-03-12 18:48:47 +02004987 /*
4988 * Allow changing the 'backing' option. The new value can be
4989 * either a reference to an existing node (using its node name)
4990 * or NULL to simply detach the current backing file.
4991 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004992 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4993 change_child_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004994 if (ret < 0) {
4995 goto error;
4996 }
4997 qdict_del(reopen_state->options, "backing");
4998
Alberto Garciaecd30d22021-06-10 15:05:36 +03004999 /* Allow changing the 'file' option. In this case NULL is not allowed */
5000 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
5001 change_child_tran, errp);
5002 if (ret < 0) {
5003 goto error;
5004 }
5005 qdict_del(reopen_state->options, "file");
5006
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005007 /* Options that are not handled are only okay if they are unchanged
5008 * compared to the old state. It is expected that some options are only
5009 * used for the initial open, but not reopen (e.g. filename) */
5010 if (qdict_size(reopen_state->options)) {
5011 const QDictEntry *entry = qdict_first(reopen_state->options);
5012
5013 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01005014 QObject *new = entry->value;
5015 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005016
Alberto Garciadb905282018-09-06 12:37:05 +03005017 /* Allow child references (child_name=node_name) as long as they
5018 * point to the current child (i.e. everything stays the same). */
5019 if (qobject_type(new) == QTYPE_QSTRING) {
5020 BdrvChild *child;
5021 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
5022 if (!strcmp(child->name, entry->key)) {
5023 break;
5024 }
5025 }
5026
5027 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01005028 if (!strcmp(child->bs->node_name,
5029 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03005030 continue; /* Found child with this name, skip option */
5031 }
5032 }
5033 }
5034
Max Reitz54fd1b02017-11-14 19:01:26 +01005035 /*
5036 * TODO: When using -drive to specify blockdev options, all values
5037 * will be strings; however, when using -blockdev, blockdev-add or
5038 * filenames using the json:{} pseudo-protocol, they will be
5039 * correctly typed.
5040 * In contrast, reopening options are (currently) always strings
5041 * (because you can only specify them through qemu-io; all other
5042 * callers do not specify any options).
5043 * Therefore, when using anything other than -drive to create a BDS,
5044 * this cannot detect non-string options as unchanged, because
5045 * qobject_is_equal() always returns false for objects of different
5046 * type. In the future, this should be remedied by correctly typing
5047 * all options. For now, this is not too big of an issue because
5048 * the user can simply omit options which cannot be changed anyway,
5049 * so they will stay unchanged.
5050 */
5051 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005052 error_setg(errp, "Cannot change the option '%s'", entry->key);
5053 ret = -EINVAL;
5054 goto error;
5055 }
5056 } while ((entry = qdict_next(reopen_state->options, entry)));
5057 }
5058
Jeff Codye971aa12012-09-20 15:13:19 -04005059 ret = 0;
5060
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005061 /* Restore the original reopen_state->options QDict */
5062 qobject_unref(reopen_state->options);
5063 reopen_state->options = qobject_ref(orig_reopen_opts);
5064
Jeff Codye971aa12012-09-20 15:13:19 -04005065error:
Max Reitz9ad08c42018-11-16 17:45:24 +01005066 if (ret < 0 && drv_prepared) {
5067 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
5068 * call drv->bdrv_reopen_abort() before signaling an error
5069 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
5070 * when the respective bdrv_reopen_prepare() has failed) */
5071 if (drv->bdrv_reopen_abort) {
5072 drv->bdrv_reopen_abort(reopen_state);
5073 }
5074 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02005075 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005076 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03005077 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04005078 return ret;
5079}
5080
5081/*
5082 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
5083 * makes them final by swapping the staging BlockDriverState contents into
5084 * the active BlockDriverState contents.
5085 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03005086static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04005087{
5088 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005089 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03005090 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04005091
5092 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005093 bs = reopen_state->bs;
5094 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04005095 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05005096 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04005097
5098 /* If there are any driver level actions to take */
5099 if (drv->bdrv_reopen_commit) {
5100 drv->bdrv_reopen_commit(reopen_state);
5101 }
5102
5103 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005104 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005105 qobject_unref(bs->options);
Alberto Garciaab5b52282021-07-08 13:47:05 +02005106 qobject_ref(reopen_state->explicit_options);
5107 qobject_ref(reopen_state->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02005108
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005109 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005110 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005111 bs->open_flags = reopen_state->flags;
Alberto Garcia543770b2018-09-06 12:37:09 +03005112 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01005113
Alberto Garcia50196d72018-09-06 12:37:03 +03005114 /* Remove child references from bs->options and bs->explicit_options.
5115 * Child options were already removed in bdrv_reopen_queue_child() */
5116 QLIST_FOREACH(child, &bs->children, next) {
5117 qdict_del(bs->explicit_options, child->name);
5118 qdict_del(bs->options, child->name);
5119 }
Vladimir Sementsov-Ogievskiy3d0e8742021-06-10 15:05:35 +03005120 /* backing is probably removed, so it's not handled by previous loop */
5121 qdict_del(bs->explicit_options, "backing");
5122 qdict_del(bs->options, "backing");
5123
Kevin Wolfe19b1572023-05-04 13:57:50 +02005124 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005125 bdrv_refresh_limits(bs, NULL, NULL);
Kevin Wolfe19b1572023-05-04 13:57:50 +02005126 bdrv_graph_rdunlock_main_loop();
Paolo Bonzini439cc332023-04-07 17:32:58 +02005127 bdrv_refresh_total_sectors(bs, bs->total_sectors);
Jeff Codye971aa12012-09-20 15:13:19 -04005128}
5129
5130/*
5131 * Abort the reopen, and delete and free the staged changes in
5132 * reopen_state
5133 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03005134static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04005135{
5136 BlockDriver *drv;
5137
5138 assert(reopen_state != NULL);
5139 drv = reopen_state->bs->drv;
5140 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05005141 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04005142
5143 if (drv->bdrv_reopen_abort) {
5144 drv->bdrv_reopen_abort(reopen_state);
5145 }
5146}
5147
5148
Max Reitz64dff522016-01-29 16:36:10 +01005149static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00005150{
Max Reitz33384422014-06-20 21:57:33 +02005151 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005152 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02005153
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005154 GLOBAL_STATE_CODE();
Max Reitz30f55fb2016-05-17 16:41:32 +02005155 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03005156
Paolo Bonzinifc272912015-12-23 11:48:24 +01005157 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02005158 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08005159 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01005160
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02005161 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03005162 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02005163 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03005164 bs->drv->bdrv_close(bs);
5165 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02005166 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00005167 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08005168
Kevin Wolf32a8aba2023-09-11 11:46:19 +02005169 bdrv_graph_wrlock(NULL);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005170 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03005171 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005172 }
Kevin Wolf32a8aba2023-09-11 11:46:19 +02005173 bdrv_graph_wrunlock();
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005174
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005175 assert(!bs->backing);
5176 assert(!bs->file);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005177 g_free(bs->opaque);
5178 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01005179 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005180 bs->backing_file[0] = '\0';
5181 bs->backing_format[0] = '\0';
5182 bs->total_sectors = 0;
5183 bs->encrypted = false;
5184 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005185 qobject_unref(bs->options);
5186 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005187 bs->options = NULL;
5188 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005189 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005190 bs->full_open_options = NULL;
Hanna Reitz0bc329f2021-08-12 10:41:44 +02005191 g_free(bs->block_status_cache);
5192 bs->block_status_cache = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005193
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03005194 bdrv_release_named_dirty_bitmaps(bs);
5195 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
5196
Max Reitz33384422014-06-20 21:57:33 +02005197 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5198 g_free(ban);
5199 }
5200 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01005201 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02005202
5203 /*
5204 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
5205 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
5206 * gets called.
5207 */
5208 if (bs->quiesce_counter) {
5209 bdrv_drain_all_end_quiesce(bs);
5210 }
bellardb3380822004-03-14 21:38:54 +00005211}
5212
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005213void bdrv_close_all(void)
5214{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005215 GLOBAL_STATE_CODE();
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04005216 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005217
Max Reitzca9bd242016-01-29 16:36:14 +01005218 /* Drop references from requests still in flight, such as canceled block
5219 * jobs whose AIO context has not been polled yet */
5220 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005221
Max Reitzca9bd242016-01-29 16:36:14 +01005222 blk_remove_all_bs();
5223 blockdev_close_all_bdrv_states();
5224
Kevin Wolfa1a2af02016-04-08 18:26:37 +02005225 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005226}
5227
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005228static bool GRAPH_RDLOCK should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005229{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005230 GQueue *queue;
5231 GHashTable *found;
5232 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005233
Max Reitzbd86fb92020-05-13 13:05:13 +02005234 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005235 return false;
5236 }
5237
Max Reitzec9f10f2018-06-13 20:18:15 +02005238 /* If the child @c belongs to the BDS @to, replacing the current
5239 * c->bs by @to would mean to create a loop.
5240 *
5241 * Such a case occurs when appending a BDS to a backing chain.
5242 * For instance, imagine the following chain:
5243 *
5244 * guest device -> node A -> further backing chain...
5245 *
5246 * Now we create a new BDS B which we want to put on top of this
5247 * chain, so we first attach A as its backing node:
5248 *
5249 * node B
5250 * |
5251 * v
5252 * guest device -> node A -> further backing chain...
5253 *
5254 * Finally we want to replace A by B. When doing that, we want to
5255 * replace all pointers to A by pointers to B -- except for the
5256 * pointer from B because (1) that would create a loop, and (2)
5257 * that pointer should simply stay intact:
5258 *
5259 * guest device -> node B
5260 * |
5261 * v
5262 * node A -> further backing chain...
5263 *
5264 * In general, when replacing a node A (c->bs) by a node B (@to),
5265 * if A is a child of B, that means we cannot replace A by B there
5266 * because that would create a loop. Silently detaching A from B
5267 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005268 * place there is the most sensible choice.
5269 *
5270 * We would also create a loop in any cases where @c is only
5271 * indirectly referenced by @to. Prevent this by returning false
5272 * if @c is found (by breadth-first search) anywhere in the whole
5273 * subtree of @to.
5274 */
5275
5276 ret = true;
5277 found = g_hash_table_new(NULL, NULL);
5278 g_hash_table_add(found, to);
5279 queue = g_queue_new();
5280 g_queue_push_tail(queue, to);
5281
5282 while (!g_queue_is_empty(queue)) {
5283 BlockDriverState *v = g_queue_pop_head(queue);
5284 BdrvChild *c2;
5285
5286 QLIST_FOREACH(c2, &v->children, next) {
5287 if (c2 == c) {
5288 ret = false;
5289 break;
5290 }
5291
5292 if (g_hash_table_contains(found, c2->bs)) {
5293 continue;
5294 }
5295
5296 g_queue_push_tail(queue, c2->bs);
5297 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005298 }
5299 }
5300
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005301 g_queue_free(queue);
5302 g_hash_table_destroy(found);
5303
5304 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005305}
5306
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005307static void bdrv_remove_child_commit(void *opaque)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005308{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005309 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005310 bdrv_child_free(opaque);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005311}
5312
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005313static TransactionActionDrv bdrv_remove_child_drv = {
5314 .commit = bdrv_remove_child_commit,
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005315};
5316
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005317/*
5318 * Function doesn't update permissions, caller is responsible for this.
5319 *
5320 * @child->bs (if non-NULL) must be drained.
Kevin Wolf5661a002023-09-11 11:46:10 +02005321 *
5322 * After calling this function, the transaction @tran may only be completed
5323 * while holding a writer lock for the graph.
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005324 */
5325static void GRAPH_WRLOCK bdrv_remove_child(BdrvChild *child, Transaction *tran)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005326{
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005327 if (!child) {
5328 return;
5329 }
5330
5331 if (child->bs) {
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005332 assert(child->quiesced_parent);
Vladimir Sementsov-Ogievskiya2c37a32022-07-26 23:11:30 +03005333 bdrv_replace_child_tran(child, NULL, tran);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005334 }
5335
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005336 tran_add(tran, &bdrv_remove_child_drv, child);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005337}
5338
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005339/*
5340 * Both @from and @to (if non-NULL) must be drained. @to must be kept drained
5341 * until the transaction is completed.
Kevin Wolf5661a002023-09-11 11:46:10 +02005342 *
5343 * After calling this function, the transaction @tran may only be completed
5344 * while holding a writer lock for the graph.
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005345 */
5346static int GRAPH_WRLOCK
5347bdrv_replace_node_noperm(BlockDriverState *from,
5348 BlockDriverState *to,
5349 bool auto_skip, Transaction *tran,
5350 Error **errp)
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005351{
5352 BdrvChild *c, *next;
5353
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005354 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005355
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005356 assert(from->quiesce_counter);
5357 assert(to->quiesce_counter);
Kevin Wolf23987472022-11-18 18:41:09 +01005358
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005359 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5360 assert(c->bs == from);
5361 if (!should_update_child(c, to)) {
5362 if (auto_skip) {
5363 continue;
5364 }
5365 error_setg(errp, "Should not change '%s' link to '%s'",
5366 c->name, from->node_name);
5367 return -EINVAL;
5368 }
5369 if (c->frozen) {
5370 error_setg(errp, "Cannot change '%s' link to '%s'",
5371 c->name, from->node_name);
5372 return -EPERM;
5373 }
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005374 bdrv_replace_child_tran(c, to, tran);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005375 }
5376
5377 return 0;
5378}
5379
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005380/*
5381 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5382 * if it creates a parent-child relation loop or if parent is block-job.
5383 *
5384 * With auto_skip=false the error is returned if from has a parent which should
5385 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005386 *
5387 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5388 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005389 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005390static int bdrv_replace_node_common(BlockDriverState *from,
5391 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005392 bool auto_skip, bool detach_subchain,
5393 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005394{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005395 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005396 g_autoptr(GSList) refresh_list = NULL;
Miroslav Rezanina2d369d62021-05-05 03:59:03 -04005397 BlockDriverState *to_cow_parent = NULL;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005398 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005399
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005400 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005401
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005402 if (detach_subchain) {
5403 assert(bdrv_chain_contains(from, to));
5404 assert(from != to);
5405 for (to_cow_parent = from;
5406 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5407 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5408 {
5409 ;
5410 }
5411 }
5412
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005413 /* Make sure that @from doesn't go away until we have successfully attached
5414 * all of its parents to @to. */
5415 bdrv_ref(from);
5416
Kevin Wolff871abd2019-05-21 19:00:25 +02005417 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01005418 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02005419 bdrv_drained_begin(from);
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005420 bdrv_drained_begin(to);
5421
5422 bdrv_graph_wrlock(to);
Kevin Wolff871abd2019-05-21 19:00:25 +02005423
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005424 /*
5425 * Do the replacement without permission update.
5426 * Replacement may influence the permissions, we should calculate new
5427 * permissions based on new graph. If we fail, we'll roll-back the
5428 * replacement.
5429 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005430 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5431 if (ret < 0) {
5432 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005433 }
5434
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005435 if (detach_subchain) {
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005436 /* to_cow_parent is already drained because from is drained */
Vladimir Sementsov-Ogievskiyf38eaec2022-11-07 19:35:56 +03005437 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran);
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005438 }
5439
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005440 refresh_list = g_slist_prepend(refresh_list, to);
5441 refresh_list = g_slist_prepend(refresh_list, from);
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005442
5443 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005444 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005445 goto out;
5446 }
5447
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005448 ret = 0;
5449
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005450out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005451 tran_finalize(tran, ret);
Kevin Wolf5661a002023-09-11 11:46:10 +02005452 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005453
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005454 bdrv_drained_end(to);
Kevin Wolff871abd2019-05-21 19:00:25 +02005455 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005456 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005457
5458 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005459}
5460
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005461int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5462 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005463{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005464 GLOBAL_STATE_CODE();
5465
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005466 return bdrv_replace_node_common(from, to, true, false, errp);
5467}
5468
5469int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5470{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005471 GLOBAL_STATE_CODE();
5472
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005473 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5474 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005475}
5476
Jeff Cody8802d1f2012-02-28 15:54:06 -05005477/*
5478 * Add new bs contents at the top of an image chain while the chain is
5479 * live, while keeping required fields on the top layer.
5480 *
5481 * This will modify the BlockDriverState fields, and swap contents
5482 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5483 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005484 * bs_new must not be attached to a BlockBackend and must not have backing
5485 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005486 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005487 * This function does not create any image files.
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005488 *
5489 * The caller must hold the AioContext lock for @bs_top.
Jeff Cody8802d1f2012-02-28 15:54:06 -05005490 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005491int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5492 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005493{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005494 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005495 BdrvChild *child;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005496 Transaction *tran = tran_new();
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005497 AioContext *old_context, *new_context = NULL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005498
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005499 GLOBAL_STATE_CODE();
5500
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005501 assert(!bs_new->backing);
5502
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005503 old_context = bdrv_get_aio_context(bs_top);
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005504 bdrv_drained_begin(bs_top);
5505
5506 /*
5507 * bdrv_drained_begin() requires that only the AioContext of the drained
5508 * node is locked, and at this point it can still differ from the AioContext
5509 * of bs_top.
5510 */
5511 new_context = bdrv_get_aio_context(bs_new);
5512 aio_context_release(old_context);
5513 aio_context_acquire(new_context);
5514 bdrv_drained_begin(bs_new);
5515 aio_context_release(new_context);
5516 aio_context_acquire(old_context);
5517 new_context = NULL;
5518
5519 bdrv_graph_wrlock(bs_top);
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005520
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005521 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5522 &child_of_bds, bdrv_backing_role(bs_new),
5523 tran, errp);
5524 if (!child) {
5525 ret = -EINVAL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005526 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005527 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005528
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005529 /*
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005530 * bdrv_attach_child_noperm could change the AioContext of bs_top and
5531 * bs_new, but at least they are in the same AioContext now. This is the
5532 * AioContext that we need to lock for the rest of the function.
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005533 */
5534 new_context = bdrv_get_aio_context(bs_top);
5535
5536 if (old_context != new_context) {
5537 aio_context_release(old_context);
5538 aio_context_acquire(new_context);
5539 }
5540
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005541 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005542 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005543 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005544 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005545
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03005546 ret = bdrv_refresh_perms(bs_new, tran, errp);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005547out:
5548 tran_finalize(tran, ret);
5549
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005550 bdrv_refresh_limits(bs_top, NULL, NULL);
Kevin Wolf5661a002023-09-11 11:46:10 +02005551 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005552
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005553 bdrv_drained_end(bs_top);
5554 bdrv_drained_end(bs_new);
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005555
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005556 if (new_context && old_context != new_context) {
5557 aio_context_release(new_context);
5558 aio_context_acquire(old_context);
5559 }
5560
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005561 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005562}
5563
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005564/* Not for empty child */
5565int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5566 Error **errp)
5567{
5568 int ret;
5569 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005570 g_autoptr(GSList) refresh_list = NULL;
5571 BlockDriverState *old_bs = child->bs;
5572
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005573 GLOBAL_STATE_CODE();
5574
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005575 bdrv_ref(old_bs);
5576 bdrv_drained_begin(old_bs);
5577 bdrv_drained_begin(new_bs);
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005578 bdrv_graph_wrlock(new_bs);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005579
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005580 bdrv_replace_child_tran(child, new_bs, tran);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005581
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005582 refresh_list = g_slist_prepend(refresh_list, old_bs);
5583 refresh_list = g_slist_prepend(refresh_list, new_bs);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005584
5585 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5586
5587 tran_finalize(tran, ret);
5588
Kevin Wolf5661a002023-09-11 11:46:10 +02005589 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005590 bdrv_drained_end(old_bs);
5591 bdrv_drained_end(new_bs);
5592 bdrv_unref(old_bs);
5593
5594 return ret;
5595}
5596
Fam Zheng4f6fd342013-08-23 09:14:47 +08005597static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005598{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005599 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005600 assert(!bs->refcnt);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005601 GLOBAL_STATE_CODE();
Markus Armbruster18846de2010-06-29 16:58:30 +02005602
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005603 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005604 if (bs->node_name[0] != '\0') {
5605 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5606 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005607 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5608
Anton Kuchin30c321f2019-05-07 11:12:56 +03005609 bdrv_close(bs);
5610
Stefan Hajnoczifa9185f2023-08-08 11:58:52 -04005611 qemu_mutex_destroy(&bs->reqs_lock);
5612
Anthony Liguori7267c092011-08-20 22:09:37 -05005613 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005614}
5615
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005616
5617/*
5618 * Replace @bs by newly created block node.
5619 *
5620 * @options is a QDict of options to pass to the block drivers, or NULL for an
5621 * empty set of options. The reference to the QDict belongs to the block layer
5622 * after the call (even on failure), so if the caller intends to reuse the
5623 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Kevin Wolf88234072023-05-25 14:47:11 +02005624 *
5625 * The caller holds the AioContext lock for @bs. It must make sure that @bs
5626 * stays in the same AioContext, i.e. @options must not refer to nodes in a
5627 * different AioContext.
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005628 */
5629BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005630 int flags, Error **errp)
5631{
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005632 ERRP_GUARD();
5633 int ret;
Kevin Wolf88234072023-05-25 14:47:11 +02005634 AioContext *ctx = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005635 BlockDriverState *new_node_bs = NULL;
5636 const char *drvname, *node_name;
5637 BlockDriver *drv;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005638
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005639 drvname = qdict_get_try_str(options, "driver");
5640 if (!drvname) {
5641 error_setg(errp, "driver is not specified");
5642 goto fail;
5643 }
5644
5645 drv = bdrv_find_format(drvname);
5646 if (!drv) {
5647 error_setg(errp, "Unknown driver: '%s'", drvname);
5648 goto fail;
5649 }
5650
5651 node_name = qdict_get_try_str(options, "node-name");
5652
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005653 GLOBAL_STATE_CODE();
5654
Kevin Wolf88234072023-05-25 14:47:11 +02005655 aio_context_release(ctx);
5656 aio_context_acquire(qemu_get_aio_context());
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005657 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5658 errp);
Kevin Wolf88234072023-05-25 14:47:11 +02005659 aio_context_release(qemu_get_aio_context());
5660 aio_context_acquire(ctx);
5661 assert(bdrv_get_aio_context(bs) == ctx);
5662
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005663 options = NULL; /* bdrv_new_open_driver() eats options */
5664 if (!new_node_bs) {
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005665 error_prepend(errp, "Could not create node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005666 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005667 }
5668
5669 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005670 ret = bdrv_replace_node(bs, new_node_bs, errp);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005671 bdrv_drained_end(bs);
5672
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005673 if (ret < 0) {
5674 error_prepend(errp, "Could not replace node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005675 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005676 }
5677
5678 return new_node_bs;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005679
5680fail:
5681 qobject_unref(options);
5682 bdrv_unref(new_node_bs);
5683 return NULL;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005684}
5685
aliguorie97fc192009-04-21 23:11:50 +00005686/*
5687 * Run consistency checks on an image
5688 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005689 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005690 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005691 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005692 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005693int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5694 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005695{
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05005696 IO_CODE();
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01005697 assert_bdrv_graph_readable();
Max Reitz908bcd52014-08-07 22:47:55 +02005698 if (bs->drv == NULL) {
5699 return -ENOMEDIUM;
5700 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005701 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005702 return -ENOTSUP;
5703 }
5704
Kevin Wolfe076f332010-06-29 11:43:13 +02005705 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005706 return bs->drv->bdrv_co_check(bs, res, fix);
5707}
5708
Kevin Wolf756e6732010-01-12 12:55:17 +01005709/*
5710 * Return values:
5711 * 0 - success
5712 * -EINVAL - backing format specified, but no file
5713 * -ENOSPC - can't update the backing file because no space is left in the
5714 * image file header
5715 * -ENOTSUP - format driver doesn't support changing the backing file
5716 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005717int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
Eric Blake497a30d2021-05-03 14:36:00 -07005718 const char *backing_fmt, bool require)
Kevin Wolf756e6732010-01-12 12:55:17 +01005719{
5720 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005721 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005722
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005723 GLOBAL_STATE_CODE();
5724
Max Reitzd470ad42017-11-10 21:31:09 +01005725 if (!drv) {
5726 return -ENOMEDIUM;
5727 }
5728
Paolo Bonzini5f377792012-04-12 14:01:01 +02005729 /* Backing file format doesn't make sense without a backing file */
5730 if (backing_fmt && !backing_file) {
5731 return -EINVAL;
5732 }
5733
Eric Blake497a30d2021-05-03 14:36:00 -07005734 if (require && backing_file && !backing_fmt) {
5735 return -EINVAL;
Eric Blakee54ee1b2020-07-06 15:39:53 -05005736 }
5737
Kevin Wolf756e6732010-01-12 12:55:17 +01005738 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005739 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005740 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005741 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005742 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005743
5744 if (ret == 0) {
5745 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5746 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005747 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5748 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005749 }
5750 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005751}
5752
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005753/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005754 * Finds the first non-filter node above bs in the chain between
5755 * active and bs. The returned node is either an immediate parent of
5756 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005757 *
5758 * Returns NULL if bs is not found in active's image chain,
5759 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005760 *
5761 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005762 */
5763BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5764 BlockDriverState *bs)
5765{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005766
5767 GLOBAL_STATE_CODE();
5768
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005769 bs = bdrv_skip_filters(bs);
5770 active = bdrv_skip_filters(active);
5771
5772 while (active) {
5773 BlockDriverState *next = bdrv_backing_chain_next(active);
5774 if (bs == next) {
5775 return active;
5776 }
5777 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005778 }
5779
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005780 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005781}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005782
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005783/* Given a BDS, searches for the base layer. */
5784BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5785{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005786 GLOBAL_STATE_CODE();
5787
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005788 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005789}
5790
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005791/*
Max Reitz7b99a262019-06-12 16:07:11 +02005792 * Return true if at least one of the COW (backing) and filter links
5793 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005794 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005795 */
5796bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5797 Error **errp)
5798{
5799 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005800 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005801
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005802 GLOBAL_STATE_CODE();
5803
Max Reitz7b99a262019-06-12 16:07:11 +02005804 for (i = bs; i != base; i = child_bs(child)) {
5805 child = bdrv_filter_or_cow_child(i);
5806
5807 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005808 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005809 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005810 return true;
5811 }
5812 }
5813
5814 return false;
5815}
5816
5817/*
Max Reitz7b99a262019-06-12 16:07:11 +02005818 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005819 * If any of the links is already frozen the operation is aborted and
5820 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005821 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005822 * Returns 0 on success. On failure returns < 0 and sets @errp.
5823 */
5824int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5825 Error **errp)
5826{
5827 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005828 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005829
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005830 GLOBAL_STATE_CODE();
5831
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005832 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5833 return -EPERM;
5834 }
5835
Max Reitz7b99a262019-06-12 16:07:11 +02005836 for (i = bs; i != base; i = child_bs(child)) {
5837 child = bdrv_filter_or_cow_child(i);
5838 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005839 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005840 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005841 return -EPERM;
5842 }
5843 }
5844
Max Reitz7b99a262019-06-12 16:07:11 +02005845 for (i = bs; i != base; i = child_bs(child)) {
5846 child = bdrv_filter_or_cow_child(i);
5847 if (child) {
5848 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005849 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005850 }
5851
5852 return 0;
5853}
5854
5855/*
Max Reitz7b99a262019-06-12 16:07:11 +02005856 * Unfreeze all COW (backing) and filter links between @bs and @base.
5857 * The caller must ensure that all links are frozen before using this
5858 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005859 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005860 */
5861void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5862{
5863 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005864 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005865
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005866 GLOBAL_STATE_CODE();
5867
Max Reitz7b99a262019-06-12 16:07:11 +02005868 for (i = bs; i != base; i = child_bs(child)) {
5869 child = bdrv_filter_or_cow_child(i);
5870 if (child) {
5871 assert(child->frozen);
5872 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005873 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005874 }
5875}
5876
5877/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005878 * Drops images above 'base' up to and including 'top', and sets the image
5879 * above 'top' to have base as its backing file.
5880 *
5881 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5882 * information in 'bs' can be properly updated.
5883 *
5884 * E.g., this will convert the following chain:
5885 * bottom <- base <- intermediate <- top <- active
5886 *
5887 * to
5888 *
5889 * bottom <- base <- active
5890 *
5891 * It is allowed for bottom==base, in which case it converts:
5892 *
5893 * base <- intermediate <- top <- active
5894 *
5895 * to
5896 *
5897 * base <- active
5898 *
Jeff Cody54e26902014-06-25 15:40:10 -04005899 * If backing_file_str is non-NULL, it will be used when modifying top's
5900 * overlay image metadata.
5901 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005902 * Error conditions:
5903 * if active == top, that is considered an error
5904 *
5905 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005906int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5907 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005908{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005909 BlockDriverState *explicit_top = top;
5910 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005911 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005912 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005913 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005914 g_autoptr(GSList) updated_children = NULL;
5915 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005916
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005917 GLOBAL_STATE_CODE();
5918
Kevin Wolf6858eba2017-06-29 19:32:21 +02005919 bdrv_ref(top);
Kevin Wolf631086d2022-11-18 18:41:03 +01005920 bdrv_drained_begin(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005921
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005922 if (!top->drv || !base->drv) {
5923 goto exit;
5924 }
5925
Kevin Wolf5db15a52015-09-14 15:33:33 +02005926 /* Make sure that base is in the backing chain of top */
5927 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005928 goto exit;
5929 }
5930
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005931 /* If 'base' recursively inherits from 'top' then we should set
5932 * base->inherits_from to top->inherits_from after 'top' and all
5933 * other intermediate nodes have been dropped.
5934 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5935 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005936 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005937 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5938
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005939 /* success - we can delete the intermediate states, and link top->base */
Max Reitzf30c66b2019-02-01 20:29:05 +01005940 if (!backing_file_str) {
5941 bdrv_refresh_filename(base);
5942 backing_file_str = base->filename;
5943 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005944
Kevin Wolf733467a2023-09-11 11:46:16 +02005945 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005946 QLIST_FOREACH(c, &top->parents, next_parent) {
5947 updated_children = g_slist_prepend(updated_children, c);
5948 }
Kevin Wolf733467a2023-09-11 11:46:16 +02005949 bdrv_graph_rdunlock_main_loop();
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005950
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005951 /*
5952 * It seems correct to pass detach_subchain=true here, but it triggers
5953 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5954 * another drained section, which modify the graph (for example, removing
5955 * the child, which we keep in updated_children list). So, it's a TODO.
5956 *
5957 * Note, bug triggered if pass detach_subchain=true here and run
5958 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5959 * That's a FIXME.
5960 */
5961 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005962 if (local_err) {
5963 error_report_err(local_err);
5964 goto exit;
5965 }
5966
5967 for (p = updated_children; p; p = p->next) {
5968 c = p->data;
5969
Max Reitzbd86fb92020-05-13 13:05:13 +02005970 if (c->klass->update_filename) {
5971 ret = c->klass->update_filename(c, base, backing_file_str,
5972 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005973 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005974 /*
5975 * TODO: Actually, we want to rollback all previous iterations
5976 * of this loop, and (which is almost impossible) previous
5977 * bdrv_replace_node()...
5978 *
5979 * Note, that c->klass->update_filename may lead to permission
5980 * update, so it's a bad idea to call it inside permission
5981 * update transaction of bdrv_replace_node.
5982 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005983 error_report_err(local_err);
5984 goto exit;
5985 }
5986 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005987 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005988
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005989 if (update_inherits_from) {
5990 base->inherits_from = explicit_top->inherits_from;
5991 }
5992
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005993 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005994exit:
Kevin Wolf631086d2022-11-18 18:41:03 +01005995 bdrv_drained_end(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005996 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005997 return ret;
5998}
5999
bellard83f64092006-08-01 16:21:11 +00006000/**
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006001 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that
Max Reitz081e4652019-06-12 18:14:13 +02006002 * sums the size of all data-bearing children. (This excludes backing
6003 * children.)
6004 */
Emanuele Giuseppe Espositode335632023-05-04 13:57:43 +02006005static int64_t coroutine_fn GRAPH_RDLOCK
6006bdrv_sum_allocated_file_size(BlockDriverState *bs)
Max Reitz081e4652019-06-12 18:14:13 +02006007{
6008 BdrvChild *child;
6009 int64_t child_size, sum = 0;
6010
6011 QLIST_FOREACH(child, &bs->children, next) {
6012 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
6013 BDRV_CHILD_FILTERED))
6014 {
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006015 child_size = bdrv_co_get_allocated_file_size(child->bs);
Max Reitz081e4652019-06-12 18:14:13 +02006016 if (child_size < 0) {
6017 return child_size;
6018 }
6019 sum += child_size;
6020 }
6021 }
6022
6023 return sum;
6024}
6025
6026/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006027 * Length of a allocated file in bytes. Sparse files are counted by actual
6028 * allocated space. Return < 0 if error or unknown.
6029 */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006030int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs)
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006031{
6032 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006033 IO_CODE();
Emanuele Giuseppe Espositode335632023-05-04 13:57:43 +02006034 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006035
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006036 if (!drv) {
6037 return -ENOMEDIUM;
6038 }
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006039 if (drv->bdrv_co_get_allocated_file_size) {
6040 return drv->bdrv_co_get_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006041 }
Max Reitz081e4652019-06-12 18:14:13 +02006042
6043 if (drv->bdrv_file_open) {
6044 /*
6045 * Protocol drivers default to -ENOTSUP (most of their data is
6046 * not stored in any of their children (if they even have any),
6047 * so there is no generic way to figure it out).
6048 */
6049 return -ENOTSUP;
6050 } else if (drv->is_filter) {
6051 /* Filter drivers default to the size of their filtered child */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006052 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs));
Max Reitz081e4652019-06-12 18:14:13 +02006053 } else {
6054 /* Other drivers default to summing their children's sizes */
6055 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006056 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006057}
6058
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01006059/*
6060 * bdrv_measure:
6061 * @drv: Format driver
6062 * @opts: Creation options for new image
6063 * @in_bs: Existing image containing data for new image (may be NULL)
6064 * @errp: Error object
6065 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
6066 * or NULL on error
6067 *
6068 * Calculate file size required to create a new image.
6069 *
6070 * If @in_bs is given then space for allocated clusters and zero clusters
6071 * from that image are included in the calculation. If @opts contains a
6072 * backing file that is shared by @in_bs then backing clusters may be omitted
6073 * from the calculation.
6074 *
6075 * If @in_bs is NULL then the calculation includes no allocated clusters
6076 * unless a preallocation option is given in @opts.
6077 *
6078 * Note that @in_bs may use a different BlockDriver from @drv.
6079 *
6080 * If an error occurs the @errp pointer is set.
6081 */
6082BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
6083 BlockDriverState *in_bs, Error **errp)
6084{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006085 IO_CODE();
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01006086 if (!drv->bdrv_measure) {
6087 error_setg(errp, "Block driver '%s' does not support size measurement",
6088 drv->format_name);
6089 return NULL;
6090 }
6091
6092 return drv->bdrv_measure(opts, in_bs, errp);
6093}
6094
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006095/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006096 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00006097 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006098int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00006099{
6100 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006101 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01006102 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006103
bellard83f64092006-08-01 16:21:11 +00006104 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00006105 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01006106
Paolo Bonzini160a29e2023-04-07 17:32:56 +02006107 if (bs->bl.has_variable_length) {
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006108 int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolfb94a2612013-10-29 12:18:58 +01006109 if (ret < 0) {
6110 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01006111 }
bellard83f64092006-08-01 16:21:11 +00006112 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006113 return bs->total_sectors;
6114}
6115
Paolo Bonzini81f730d2023-04-07 17:33:03 +02006116/*
6117 * This wrapper is written by hand because this function is in the hot I/O path,
6118 * via blk_get_geometry.
6119 */
6120int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs)
6121{
6122 BlockDriver *drv = bs->drv;
6123 IO_CODE();
6124
6125 if (!drv)
6126 return -ENOMEDIUM;
6127
6128 if (bs->bl.has_variable_length) {
6129 int ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
6130 if (ret < 0) {
6131 return ret;
6132 }
6133 }
6134
6135 return bs->total_sectors;
6136}
6137
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006138/**
6139 * Return length in bytes on success, -errno on error.
6140 * The length is always a multiple of BDRV_SECTOR_SIZE.
6141 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006142int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs)
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006143{
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006144 int64_t ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006145 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01006146 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006147
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006148 ret = bdrv_co_nb_sectors(bs);
Eric Blake122860b2020-11-05 09:51:22 -06006149 if (ret < 0) {
6150 return ret;
6151 }
6152 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
6153 return -EFBIG;
6154 }
6155 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00006156}
6157
Eric Blake54115412016-06-23 16:37:26 -06006158bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00006159{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006160 IO_CODE();
ths985a03b2007-12-24 16:10:43 +00006161 return bs->sg;
6162}
6163
Max Reitzae23f782019-06-12 22:57:15 +02006164/**
6165 * Return whether the given node supports compressed writes.
6166 */
6167bool bdrv_supports_compressed_writes(BlockDriverState *bs)
6168{
6169 BlockDriverState *filtered;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006170 IO_CODE();
Max Reitzae23f782019-06-12 22:57:15 +02006171
6172 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
6173 return false;
6174 }
6175
6176 filtered = bdrv_filter_bs(bs);
6177 if (filtered) {
6178 /*
6179 * Filters can only forward compressed writes, so we have to
6180 * check the child.
6181 */
6182 return bdrv_supports_compressed_writes(filtered);
6183 }
6184
6185 return true;
6186}
6187
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02006188const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006189{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006190 IO_CODE();
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02006191 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00006192}
6193
Stefan Hajnocziada42402014-08-27 12:08:55 +01006194static int qsort_strcmp(const void *a, const void *b)
6195{
Max Reitzceff5bd2016-10-12 22:49:05 +02006196 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01006197}
6198
ths5fafdf22007-09-16 21:08:06 +00006199void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03006200 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00006201{
6202 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04006203 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01006204 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04006205 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00006206
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006207 GLOBAL_STATE_CODE();
6208
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01006209 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04006210 if (drv->format_name) {
6211 bool found = false;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03006212
6213 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
6214 continue;
6215 }
6216
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02006217 i = count;
Jeff Codye855e4f2014-04-28 18:29:54 -04006218 while (formats && i && !found) {
6219 found = !strcmp(formats[--i], drv->format_name);
6220 }
6221
6222 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02006223 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04006224 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04006225 }
6226 }
bellardea2384d2004-08-01 21:59:26 +00006227 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01006228
Max Reitzeb0df692016-10-12 22:49:06 +02006229 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
6230 const char *format_name = block_driver_modules[i].format_name;
6231
6232 if (format_name) {
6233 bool found = false;
6234 int j = count;
6235
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03006236 if (use_bdrv_whitelist &&
6237 !bdrv_format_is_whitelisted(format_name, read_only)) {
6238 continue;
6239 }
6240
Max Reitzeb0df692016-10-12 22:49:06 +02006241 while (formats && j && !found) {
6242 found = !strcmp(formats[--j], format_name);
6243 }
6244
6245 if (!found) {
6246 formats = g_renew(const char *, formats, count + 1);
6247 formats[count++] = format_name;
6248 }
6249 }
6250 }
6251
Stefan Hajnocziada42402014-08-27 12:08:55 +01006252 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
6253
6254 for (i = 0; i < count; i++) {
6255 it(opaque, formats[i]);
6256 }
6257
Jeff Codye855e4f2014-04-28 18:29:54 -04006258 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00006259}
6260
Benoît Canetdc364f42014-01-23 21:31:32 +01006261/* This function is to find a node in the bs graph */
6262BlockDriverState *bdrv_find_node(const char *node_name)
6263{
6264 BlockDriverState *bs;
6265
6266 assert(node_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006267 GLOBAL_STATE_CODE();
Benoît Canetdc364f42014-01-23 21:31:32 +01006268
6269 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6270 if (!strcmp(node_name, bs->node_name)) {
6271 return bs;
6272 }
6273 }
6274 return NULL;
6275}
6276
Benoît Canetc13163f2014-01-23 21:31:34 +01006277/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01006278BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
6279 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01006280{
Eric Blake9812e712020-10-27 00:05:47 -05006281 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01006282 BlockDriverState *bs;
6283
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006284 GLOBAL_STATE_CODE();
6285
Benoît Canetc13163f2014-01-23 21:31:34 +01006286 list = NULL;
6287 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01006288 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03006289 if (!info) {
6290 qapi_free_BlockDeviceInfoList(list);
6291 return NULL;
6292 }
Eric Blake9812e712020-10-27 00:05:47 -05006293 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01006294 }
6295
6296 return list;
6297}
6298
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006299typedef struct XDbgBlockGraphConstructor {
6300 XDbgBlockGraph *graph;
6301 GHashTable *graph_nodes;
6302} XDbgBlockGraphConstructor;
6303
6304static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6305{
6306 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6307
6308 gr->graph = g_new0(XDbgBlockGraph, 1);
6309 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6310
6311 return gr;
6312}
6313
6314static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6315{
6316 XDbgBlockGraph *graph = gr->graph;
6317
6318 g_hash_table_destroy(gr->graph_nodes);
6319 g_free(gr);
6320
6321 return graph;
6322}
6323
6324static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6325{
6326 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6327
6328 if (ret != 0) {
6329 return ret;
6330 }
6331
6332 /*
6333 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6334 * answer of g_hash_table_lookup.
6335 */
6336 ret = g_hash_table_size(gr->graph_nodes) + 1;
6337 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6338
6339 return ret;
6340}
6341
6342static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6343 XDbgBlockGraphNodeType type, const char *name)
6344{
6345 XDbgBlockGraphNode *n;
6346
6347 n = g_new0(XDbgBlockGraphNode, 1);
6348
6349 n->id = xdbg_graph_node_num(gr, node);
6350 n->type = type;
6351 n->name = g_strdup(name);
6352
Eric Blake9812e712020-10-27 00:05:47 -05006353 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006354}
6355
6356static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6357 const BdrvChild *child)
6358{
Max Reitzcdb1cec2019-11-08 13:34:52 +01006359 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006360 XDbgBlockGraphEdge *edge;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05006361 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006362
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006363 edge = g_new0(XDbgBlockGraphEdge, 1);
6364
6365 edge->parent = xdbg_graph_node_num(gr, parent);
6366 edge->child = xdbg_graph_node_num(gr, child->bs);
6367 edge->name = g_strdup(child->name);
6368
Max Reitzcdb1cec2019-11-08 13:34:52 +01006369 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6370 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6371
6372 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006373 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006374 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01006375 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006376 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006377 }
6378 }
6379
Eric Blake9812e712020-10-27 00:05:47 -05006380 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006381}
6382
6383
6384XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6385{
6386 BlockBackend *blk;
6387 BlockJob *job;
6388 BlockDriverState *bs;
6389 BdrvChild *child;
6390 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6391
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006392 GLOBAL_STATE_CODE();
6393
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006394 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6395 char *allocated_name = NULL;
6396 const char *name = blk_name(blk);
6397
6398 if (!*name) {
6399 name = allocated_name = blk_get_attached_dev_id(blk);
6400 }
6401 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6402 name);
6403 g_free(allocated_name);
6404 if (blk_root(blk)) {
6405 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6406 }
6407 }
6408
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006409 WITH_JOB_LOCK_GUARD() {
6410 for (job = block_job_next_locked(NULL); job;
6411 job = block_job_next_locked(job)) {
6412 GSList *el;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006413
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006414 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6415 job->job.id);
6416 for (el = job->nodes; el; el = el->next) {
6417 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6418 }
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006419 }
6420 }
6421
6422 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6423 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6424 bs->node_name);
6425 QLIST_FOREACH(child, &bs->children, next) {
6426 xdbg_graph_add_edge(gr, bs, child);
6427 }
6428 }
6429
6430 return xdbg_graph_finalize(gr);
6431}
6432
Benoît Canet12d3ba82014-01-23 21:31:35 +01006433BlockDriverState *bdrv_lookup_bs(const char *device,
6434 const char *node_name,
6435 Error **errp)
6436{
Markus Armbruster7f06d472014-10-07 13:59:12 +02006437 BlockBackend *blk;
6438 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006439
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006440 GLOBAL_STATE_CODE();
6441
Benoît Canet12d3ba82014-01-23 21:31:35 +01006442 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02006443 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006444
Markus Armbruster7f06d472014-10-07 13:59:12 +02006445 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006446 bs = blk_bs(blk);
6447 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02006448 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02006449 }
6450
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006451 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006452 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006453 }
6454
Benoît Canetdd67fa52014-02-12 17:15:06 +01006455 if (node_name) {
6456 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006457
Benoît Canetdd67fa52014-02-12 17:15:06 +01006458 if (bs) {
6459 return bs;
6460 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006461 }
6462
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006463 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01006464 device ? device : "",
6465 node_name ? node_name : "");
6466 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006467}
6468
Jeff Cody5a6684d2014-06-25 15:40:09 -04006469/* If 'base' is in the same chain as 'top', return true. Otherwise,
6470 * return false. If either argument is NULL, return false. */
6471bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6472{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006473
6474 GLOBAL_STATE_CODE();
6475
Jeff Cody5a6684d2014-06-25 15:40:09 -04006476 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006477 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04006478 }
6479
6480 return top != NULL;
6481}
6482
Fam Zheng04df7652014-10-31 11:32:54 +08006483BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6484{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006485 GLOBAL_STATE_CODE();
Fam Zheng04df7652014-10-31 11:32:54 +08006486 if (!bs) {
6487 return QTAILQ_FIRST(&graph_bdrv_states);
6488 }
6489 return QTAILQ_NEXT(bs, node_list);
6490}
6491
Kevin Wolf0f122642018-03-28 18:29:18 +02006492BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6493{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006494 GLOBAL_STATE_CODE();
Kevin Wolf0f122642018-03-28 18:29:18 +02006495 if (!bs) {
6496 return QTAILQ_FIRST(&all_bdrv_states);
6497 }
6498 return QTAILQ_NEXT(bs, bs_list);
6499}
6500
Fam Zheng20a9e772014-10-31 11:32:55 +08006501const char *bdrv_get_node_name(const BlockDriverState *bs)
6502{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006503 IO_CODE();
Fam Zheng20a9e772014-10-31 11:32:55 +08006504 return bs->node_name;
6505}
6506
Kevin Wolf1f0c4612016-03-22 18:38:44 +01006507const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006508{
6509 BdrvChild *c;
6510 const char *name;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05006511 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006512
6513 /* If multiple parents have a name, just pick the first one. */
6514 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006515 if (c->klass->get_name) {
6516 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006517 if (name && *name) {
6518 return name;
6519 }
6520 }
6521 }
6522
6523 return NULL;
6524}
6525
Markus Armbruster7f06d472014-10-07 13:59:12 +02006526/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02006527const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006528{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006529 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006530 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00006531}
6532
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006533/* This can be used to identify nodes that might not have a device
6534 * name associated. Since node and device names live in the same
6535 * namespace, the result is unambiguous. The exception is if both are
6536 * absent, then this returns an empty (non-null) string. */
6537const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6538{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006539 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006540 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006541}
6542
Markus Armbrusterc8433282012-06-05 16:49:24 +02006543int bdrv_get_flags(BlockDriverState *bs)
6544{
Hanna Reitz15aee7a2022-04-27 13:40:54 +02006545 IO_CODE();
Markus Armbrusterc8433282012-06-05 16:49:24 +02006546 return bs->open_flags;
6547}
6548
Peter Lieven3ac21622013-06-28 12:47:42 +02006549int bdrv_has_zero_init_1(BlockDriverState *bs)
6550{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006551 GLOBAL_STATE_CODE();
Peter Lieven3ac21622013-06-28 12:47:42 +02006552 return 1;
6553}
6554
Kevin Wolff2feebb2010-04-14 17:30:35 +02006555int bdrv_has_zero_init(BlockDriverState *bs)
6556{
Max Reitz93393e62019-06-12 17:03:38 +02006557 BlockDriverState *filtered;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006558 GLOBAL_STATE_CODE();
Max Reitz93393e62019-06-12 17:03:38 +02006559
Max Reitzd470ad42017-11-10 21:31:09 +01006560 if (!bs->drv) {
6561 return 0;
6562 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006563
Paolo Bonzini11212d82013-09-04 19:00:27 +02006564 /* If BS is a copy on write image, it is initialized to
6565 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02006566 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02006567 return 0;
6568 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006569 if (bs->drv->bdrv_has_zero_init) {
6570 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006571 }
Max Reitz93393e62019-06-12 17:03:38 +02006572
6573 filtered = bdrv_filter_bs(bs);
6574 if (filtered) {
6575 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006576 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006577
Peter Lieven3ac21622013-06-28 12:47:42 +02006578 /* safe default */
6579 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006580}
6581
Peter Lieven4ce78692013-10-24 12:06:54 +02006582bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6583{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006584 IO_CODE();
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006585 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006586 return false;
6587 }
6588
Eric Blakee24d8132018-01-26 13:34:39 -06006589 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006590}
6591
ths5fafdf22007-09-16 21:08:06 +00006592void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006593 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006594{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006595 IO_CODE();
Kevin Wolf3574c602011-10-26 11:02:11 +02006596 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006597}
6598
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006599int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
bellardfaea38e2006-08-05 21:31:00 +00006600{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006601 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006602 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006603 IO_CODE();
Emanuele Giuseppe Espositoa00e70c2023-05-04 13:57:44 +02006604 assert_bdrv_graph_readable();
6605
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006606 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6607 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006608 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006609 }
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006610 if (!drv->bdrv_co_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006611 BlockDriverState *filtered = bdrv_filter_bs(bs);
6612 if (filtered) {
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006613 return bdrv_co_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006614 }
bellardfaea38e2006-08-05 21:31:00 +00006615 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006616 }
bellardfaea38e2006-08-05 21:31:00 +00006617 memset(bdi, 0, sizeof(*bdi));
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006618 ret = drv->bdrv_co_get_info(bs, bdi);
Andrey Drobyshevc54483b2023-07-11 20:25:51 +03006619 if (bdi->subcluster_size == 0) {
6620 /*
6621 * If the driver left this unset, subclusters are not supported.
6622 * Then it is safe to treat each cluster as having only one subcluster.
6623 */
6624 bdi->subcluster_size = bdi->cluster_size;
6625 }
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006626 if (ret < 0) {
6627 return ret;
6628 }
6629
6630 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6631 return -EINVAL;
6632 }
6633
6634 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006635}
6636
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006637ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6638 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006639{
6640 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006641 IO_CODE();
Max Reitzeae041f2013-10-09 10:46:16 +02006642 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006643 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006644 }
6645 return NULL;
6646}
6647
Anton Nefedovd9245592019-09-23 15:17:37 +03006648BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6649{
6650 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006651 IO_CODE();
Anton Nefedovd9245592019-09-23 15:17:37 +03006652 if (!drv || !drv->bdrv_get_specific_stats) {
6653 return NULL;
6654 }
6655 return drv->bdrv_get_specific_stats(bs);
6656}
6657
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006658void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006659{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006660 IO_CODE();
Emanuele Giuseppe Espositocb2bfaa2023-05-04 13:57:45 +02006661 assert_bdrv_graph_readable();
6662
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006663 if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006664 return;
6665 }
6666
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006667 bs->drv->bdrv_co_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006668}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006669
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006670static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006671{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006672 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006673 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006674 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006675 }
6676
6677 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006678 assert(bs->drv->bdrv_debug_remove_breakpoint);
6679 return bs;
6680 }
6681
6682 return NULL;
6683}
6684
6685int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6686 const char *tag)
6687{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006688 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006689 bs = bdrv_find_debug_node(bs);
6690 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006691 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6692 }
6693
6694 return -ENOTSUP;
6695}
6696
Fam Zheng4cc70e92013-11-20 10:01:54 +08006697int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6698{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006699 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006700 bs = bdrv_find_debug_node(bs);
6701 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006702 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6703 }
6704
6705 return -ENOTSUP;
6706}
6707
Kevin Wolf41c695c2012-12-06 14:32:58 +01006708int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6709{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006710 GLOBAL_STATE_CODE();
Max Reitz938789e2014-03-10 23:44:08 +01006711 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006712 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006713 }
6714
6715 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6716 return bs->drv->bdrv_debug_resume(bs, tag);
6717 }
6718
6719 return -ENOTSUP;
6720}
6721
6722bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6723{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006724 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006725 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006726 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006727 }
6728
6729 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6730 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6731 }
6732
6733 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006734}
6735
Jeff Codyb1b1d782012-10-16 15:49:09 -04006736/* backing_file can either be relative, or absolute, or a protocol. If it is
6737 * relative, it must be relative to the chain. So, passing in bs->filename
6738 * from a BDS as backing_file should not be done, as that may be relative to
6739 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006740BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6741 const char *backing_file)
6742{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006743 char *filename_full = NULL;
6744 char *backing_file_full = NULL;
6745 char *filename_tmp = NULL;
6746 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006747 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006748 BlockDriverState *curr_bs = NULL;
6749 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006750 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006751
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006752 GLOBAL_STATE_CODE();
6753
Jeff Codyb1b1d782012-10-16 15:49:09 -04006754 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006755 return NULL;
6756 }
6757
Jeff Codyb1b1d782012-10-16 15:49:09 -04006758 filename_full = g_malloc(PATH_MAX);
6759 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006760
6761 is_protocol = path_has_protocol(backing_file);
6762
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006763 /*
6764 * Being largely a legacy function, skip any filters here
6765 * (because filters do not have normal filenames, so they cannot
6766 * match anyway; and allowing json:{} filenames is a bit out of
6767 * scope).
6768 */
6769 for (curr_bs = bdrv_skip_filters(bs);
6770 bdrv_cow_child(curr_bs) != NULL;
6771 curr_bs = bs_below)
6772 {
6773 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006774
Max Reitz0b877d02018-08-01 20:34:11 +02006775 if (bdrv_backing_overridden(curr_bs)) {
6776 /*
6777 * If the backing file was overridden, we can only compare
6778 * directly against the backing node's filename.
6779 */
6780
6781 if (!filenames_refreshed) {
6782 /*
6783 * This will automatically refresh all of the
6784 * filenames in the rest of the backing chain, so we
6785 * only need to do this once.
6786 */
6787 bdrv_refresh_filename(bs_below);
6788 filenames_refreshed = true;
6789 }
6790
6791 if (strcmp(backing_file, bs_below->filename) == 0) {
6792 retval = bs_below;
6793 break;
6794 }
6795 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6796 /*
6797 * If either of the filename paths is actually a protocol, then
6798 * compare unmodified paths; otherwise make paths relative.
6799 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006800 char *backing_file_full_ret;
6801
Jeff Codyb1b1d782012-10-16 15:49:09 -04006802 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006803 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006804 break;
6805 }
Jeff Cody418661e2017-01-25 20:08:20 -05006806 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006807 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6808 NULL);
6809 if (backing_file_full_ret) {
6810 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6811 g_free(backing_file_full_ret);
6812 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006813 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006814 break;
6815 }
Jeff Cody418661e2017-01-25 20:08:20 -05006816 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006817 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006818 /* If not an absolute filename path, make it relative to the current
6819 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006820 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6821 NULL);
6822 /* We are going to compare canonicalized absolute pathnames */
6823 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6824 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006825 continue;
6826 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006827 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006828
6829 /* We need to make sure the backing filename we are comparing against
6830 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006831 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6832 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6833 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006834 continue;
6835 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006836 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006837
6838 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006839 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006840 break;
6841 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006842 }
6843 }
6844
Jeff Codyb1b1d782012-10-16 15:49:09 -04006845 g_free(filename_full);
6846 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006847 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006848}
6849
bellardea2384d2004-08-01 21:59:26 +00006850void bdrv_init(void)
6851{
Kevin Wolfe5f05f82021-07-09 18:41:41 +02006852#ifdef CONFIG_BDRV_WHITELIST_TOOLS
6853 use_bdrv_whitelist = 1;
6854#endif
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006855 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006856}
pbrookce1a14d2006-08-07 02:38:06 +00006857
Markus Armbrustereb852012009-10-27 18:41:44 +01006858void bdrv_init_with_whitelist(void)
6859{
6860 use_bdrv_whitelist = 1;
6861 bdrv_init();
6862}
6863
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006864int bdrv_activate(BlockDriverState *bs, Error **errp)
6865{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006866 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006867 Error *local_err = NULL;
6868 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006869 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006870
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006871 GLOBAL_STATE_CODE();
Kevin Wolf3804e3c2023-09-11 11:46:12 +02006872 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006873
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006874 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006875 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006876 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006877
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006878 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006879 bdrv_activate(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006880 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006881 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006882 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006883 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006884 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006885
Kevin Wolfdafe0962017-11-16 13:00:01 +01006886 /*
6887 * Update permissions, they may differ for inactive nodes.
6888 *
6889 * Note that the required permissions of inactive images are always a
6890 * subset of the permissions required after activating the image. This
6891 * allows us to just get the permissions upfront without restricting
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006892 * bdrv_co_invalidate_cache().
Kevin Wolfdafe0962017-11-16 13:00:01 +01006893 *
6894 * It also means that in error cases, we don't have to try and revert to
6895 * the old permissions (which is an operation that could fail, too). We can
6896 * just keep the extended permissions for the next time that an activation
6897 * of the image is tried.
6898 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006899 if (bs->open_flags & BDRV_O_INACTIVE) {
6900 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03006901 ret = bdrv_refresh_perms(bs, NULL, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006902 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006903 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006904 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006905 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006906
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006907 ret = bdrv_invalidate_cache(bs, errp);
6908 if (ret < 0) {
6909 bs->open_flags |= BDRV_O_INACTIVE;
6910 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006911 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006912
Kevin Wolf7bb49412019-12-17 15:06:38 +01006913 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6914 bdrv_dirty_bitmap_skip_store(bm, false);
6915 }
6916
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01006917 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006918 if (ret < 0) {
6919 bs->open_flags |= BDRV_O_INACTIVE;
6920 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006921 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006922 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006923 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006924
6925 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006926 if (parent->klass->activate) {
6927 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006928 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006929 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006930 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006931 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006932 }
6933 }
6934 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006935
6936 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006937}
6938
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006939int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6940{
6941 Error *local_err = NULL;
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05006942 IO_CODE();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006943
6944 assert(!(bs->open_flags & BDRV_O_INACTIVE));
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01006945 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006946
6947 if (bs->drv->bdrv_co_invalidate_cache) {
6948 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6949 if (local_err) {
6950 error_propagate(errp, local_err);
6951 return -EINVAL;
6952 }
6953 }
6954
6955 return 0;
6956}
6957
Emanuele Giuseppe Esposito3b717192022-02-09 05:54:51 -05006958void bdrv_activate_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006959{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006960 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006961 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006962
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006963 GLOBAL_STATE_CODE();
6964
Kevin Wolf88be7b42016-05-20 18:49:07 +02006965 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006966 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006967 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006968
6969 aio_context_acquire(aio_context);
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006970 ret = bdrv_activate(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006971 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006972 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006973 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006974 return;
6975 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006976 }
6977}
6978
Kevin Wolf0e6bad12023-09-29 16:51:38 +02006979static bool GRAPH_RDLOCK
6980bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
Kevin Wolf9e372712018-11-23 15:11:14 +01006981{
6982 BdrvChild *parent;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006983 GLOBAL_STATE_CODE();
Kevin Wolf9e372712018-11-23 15:11:14 +01006984
6985 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006986 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006987 BlockDriverState *parent_bs = parent->opaque;
6988 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6989 return true;
6990 }
6991 }
6992 }
6993
6994 return false;
6995}
6996
Kevin Wolf0e6bad12023-09-29 16:51:38 +02006997static int GRAPH_RDLOCK bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006998{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006999 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007000 int ret;
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03007001 uint64_t cumulative_perms, cumulative_shared_perms;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007002
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007003 GLOBAL_STATE_CODE();
7004
Max Reitzd470ad42017-11-10 21:31:09 +01007005 if (!bs->drv) {
7006 return -ENOMEDIUM;
7007 }
7008
Kevin Wolf9e372712018-11-23 15:11:14 +01007009 /* Make sure that we don't inactivate a child before its parent.
7010 * It will be covered by recursion from the yet active parent. */
7011 if (bdrv_has_bds_parent(bs, true)) {
7012 return 0;
7013 }
7014
7015 assert(!(bs->open_flags & BDRV_O_INACTIVE));
7016
7017 /* Inactivate this node */
7018 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007019 ret = bs->drv->bdrv_inactivate(bs);
7020 if (ret < 0) {
7021 return ret;
7022 }
7023 }
7024
Kevin Wolf9e372712018-11-23 15:11:14 +01007025 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02007026 if (parent->klass->inactivate) {
7027 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01007028 if (ret < 0) {
7029 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02007030 }
7031 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007032 }
Kevin Wolf38701b62017-05-04 18:52:39 +02007033
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03007034 bdrv_get_cumulative_perm(bs, &cumulative_perms,
7035 &cumulative_shared_perms);
7036 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
7037 /* Our inactive parents still need write access. Inactivation failed. */
7038 return -EPERM;
7039 }
7040
Kevin Wolf9e372712018-11-23 15:11:14 +01007041 bs->open_flags |= BDRV_O_INACTIVE;
7042
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03007043 /*
7044 * Update permissions, they may differ for inactive nodes.
7045 * We only tried to loosen restrictions, so errors are not fatal, ignore
7046 * them.
7047 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03007048 bdrv_refresh_perms(bs, NULL, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01007049
7050 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02007051 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01007052 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02007053 if (ret < 0) {
7054 return ret;
7055 }
7056 }
7057
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007058 return 0;
7059}
7060
7061int bdrv_inactivate_all(void)
7062{
Max Reitz79720af2016-03-16 19:54:44 +01007063 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02007064 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007065 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00007066 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007067
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007068 GLOBAL_STATE_CODE();
Kevin Wolf0e6bad12023-09-29 16:51:38 +02007069 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007070
Kevin Wolf88be7b42016-05-20 18:49:07 +02007071 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00007072 AioContext *aio_context = bdrv_get_aio_context(bs);
7073
7074 if (!g_slist_find(aio_ctxs, aio_context)) {
7075 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
7076 aio_context_acquire(aio_context);
7077 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007078 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007079
Kevin Wolf9e372712018-11-23 15:11:14 +01007080 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
7081 /* Nodes with BDS parents are covered by recursion from the last
7082 * parent that gets inactivated. Don't inactivate them a second
7083 * time if that has already happened. */
7084 if (bdrv_has_bds_parent(bs, false)) {
7085 continue;
7086 }
7087 ret = bdrv_inactivate_recurse(bs);
7088 if (ret < 0) {
7089 bdrv_next_cleanup(&it);
7090 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007091 }
7092 }
7093
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007094out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00007095 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
7096 AioContext *aio_context = ctx->data;
7097 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007098 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00007099 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007100
7101 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007102}
7103
Kevin Wolff9f05dc2011-07-15 13:50:26 +02007104/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00007105/* removable device support */
7106
7107/**
7108 * Return TRUE if the media is present
7109 */
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01007110bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00007111{
7112 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02007113 BdrvChild *child;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007114 IO_CODE();
Emanuele Giuseppe Espositoc73ff922023-02-03 16:21:57 +01007115 assert_bdrv_graph_readable();
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02007116
Max Reitze031f752015-10-19 17:53:11 +02007117 if (!drv) {
7118 return false;
7119 }
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01007120 if (drv->bdrv_co_is_inserted) {
7121 return drv->bdrv_co_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02007122 }
Max Reitz28d7a782015-10-19 17:53:13 +02007123 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01007124 if (!bdrv_co_is_inserted(child->bs)) {
Max Reitz28d7a782015-10-19 17:53:13 +02007125 return false;
7126 }
7127 }
7128 return true;
bellard19cb3732006-08-19 11:45:59 +00007129}
7130
7131/**
bellard19cb3732006-08-19 11:45:59 +00007132 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
7133 */
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01007134void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00007135{
7136 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007137 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01007138 assert_bdrv_graph_readable();
bellard19cb3732006-08-19 11:45:59 +00007139
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01007140 if (drv && drv->bdrv_co_eject) {
7141 drv->bdrv_co_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00007142 }
bellard19cb3732006-08-19 11:45:59 +00007143}
7144
bellard19cb3732006-08-19 11:45:59 +00007145/**
7146 * Lock or unlock the media (if it is locked, the user won't be able
7147 * to eject it manually).
7148 */
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01007149void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00007150{
7151 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007152 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01007153 assert_bdrv_graph_readable();
Markus Armbruster025e8492011-09-06 18:58:47 +02007154 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01007155
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01007156 if (drv && drv->bdrv_co_lock_medium) {
7157 drv->bdrv_co_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00007158 }
7159}
ths985a03b2007-12-24 16:10:43 +00007160
Fam Zheng9fcb0252013-08-23 09:14:46 +08007161/* Get a reference to bs */
7162void bdrv_ref(BlockDriverState *bs)
7163{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007164 GLOBAL_STATE_CODE();
Fam Zheng9fcb0252013-08-23 09:14:46 +08007165 bs->refcnt++;
7166}
7167
7168/* Release a previously grabbed reference to bs.
7169 * If after releasing, reference count is zero, the BlockDriverState is
7170 * deleted. */
7171void bdrv_unref(BlockDriverState *bs)
7172{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007173 GLOBAL_STATE_CODE();
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04007174 if (!bs) {
7175 return;
7176 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08007177 assert(bs->refcnt > 0);
7178 if (--bs->refcnt == 0) {
7179 bdrv_delete(bs);
7180 }
7181}
7182
Kevin Wolfac2ae232023-09-11 11:46:04 +02007183/*
7184 * Release a BlockDriverState reference while holding the graph write lock.
7185 *
7186 * Calling bdrv_unref() directly is forbidden while holding the graph lock
7187 * because bdrv_close() both involves polling and taking the graph lock
7188 * internally. bdrv_schedule_unref() instead delays decreasing the refcount and
7189 * possibly closing @bs until the graph lock is released.
7190 */
7191void bdrv_schedule_unref(BlockDriverState *bs)
7192{
7193 if (!bs) {
7194 return;
7195 }
7196 aio_bh_schedule_oneshot(qemu_get_aio_context(),
7197 (QEMUBHFunc *) bdrv_unref, bs);
7198}
7199
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007200struct BdrvOpBlocker {
7201 Error *reason;
7202 QLIST_ENTRY(BdrvOpBlocker) list;
7203};
7204
7205bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
7206{
7207 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007208 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007209 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7210 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
7211 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02007212 error_propagate_prepend(errp, error_copy(blocker->reason),
7213 "Node '%s' is busy: ",
7214 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007215 return true;
7216 }
7217 return false;
7218}
7219
7220void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
7221{
7222 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007223 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007224 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7225
Markus Armbruster5839e532014-08-19 10:31:08 +02007226 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007227 blocker->reason = reason;
7228 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
7229}
7230
7231void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
7232{
7233 BdrvOpBlocker *blocker, *next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007234 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007235 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7236 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
7237 if (blocker->reason == reason) {
7238 QLIST_REMOVE(blocker, list);
7239 g_free(blocker);
7240 }
7241 }
7242}
7243
7244void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
7245{
7246 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007247 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007248 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7249 bdrv_op_block(bs, i, reason);
7250 }
7251}
7252
7253void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
7254{
7255 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007256 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007257 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7258 bdrv_op_unblock(bs, i, reason);
7259 }
7260}
7261
7262bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
7263{
7264 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007265 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007266 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7267 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
7268 return false;
7269 }
7270 }
7271 return true;
7272}
7273
Kevin Wolfe1355052022-12-07 14:18:30 +01007274/*
7275 * Must not be called while holding the lock of an AioContext other than the
7276 * current one.
7277 */
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007278void bdrv_img_create(const char *filename, const char *fmt,
7279 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08007280 char *options, uint64_t img_size, int flags, bool quiet,
7281 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007282{
Chunyan Liu83d05212014-06-05 17:20:51 +08007283 QemuOptsList *create_opts = NULL;
7284 QemuOpts *opts = NULL;
7285 const char *backing_fmt, *backing_file;
7286 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007287 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02007288 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007289 int ret = 0;
7290
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007291 GLOBAL_STATE_CODE();
7292
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007293 /* Find driver and parse its options */
7294 drv = bdrv_find_format(fmt);
7295 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007296 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007297 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007298 }
7299
Max Reitzb65a5e12015-02-05 13:58:12 -05007300 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007301 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007302 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007303 }
7304
Max Reitzc6149722014-12-02 18:32:45 +01007305 if (!drv->create_opts) {
7306 error_setg(errp, "Format driver '%s' does not support image creation",
7307 drv->format_name);
7308 return;
7309 }
7310
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007311 if (!proto_drv->create_opts) {
7312 error_setg(errp, "Protocol driver '%s' does not support image creation",
7313 proto_drv->format_name);
7314 return;
7315 }
7316
Kevin Wolfc6e0a6d2023-05-25 14:47:04 +02007317 aio_context_acquire(qemu_get_aio_context());
7318
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007319 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007320 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007321 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007322
Chunyan Liu83d05212014-06-05 17:20:51 +08007323 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007324
7325 /* Parse -o options */
7326 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02007327 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007328 goto out;
7329 }
7330 }
7331
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007332 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7333 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7334 } else if (img_size != UINT64_C(-1)) {
7335 error_setg(errp, "The image size must be specified only once");
7336 goto out;
7337 }
7338
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007339 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02007340 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02007341 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007342 error_setg(errp, "Backing file not supported for file format '%s'",
7343 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007344 goto out;
7345 }
7346 }
7347
7348 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02007349 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007350 error_setg(errp, "Backing file format not supported for file "
7351 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007352 goto out;
7353 }
7354 }
7355
Chunyan Liu83d05212014-06-05 17:20:51 +08007356 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7357 if (backing_file) {
7358 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007359 error_setg(errp, "Error: Trying to create an image with the "
7360 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01007361 goto out;
7362 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05007363 if (backing_file[0] == '\0') {
7364 error_setg(errp, "Expected backing file name, got empty string");
7365 goto out;
7366 }
Jes Sorensen792da932010-12-16 13:52:17 +01007367 }
7368
Chunyan Liu83d05212014-06-05 17:20:51 +08007369 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007370
John Snow6e6e55f2017-07-17 20:34:22 -04007371 /* The size for the image must always be specified, unless we have a backing
7372 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05007373 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04007374 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7375 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01007376 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04007377 int back_flags;
7378 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02007379
Max Reitz645ae7d2019-02-01 20:29:14 +01007380 full_backing =
7381 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7382 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04007383 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007384 goto out;
7385 }
Max Reitz645ae7d2019-02-01 20:29:14 +01007386 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04007387
Max Reitzd5b23992021-06-22 16:00:30 +02007388 /*
7389 * No need to do I/O here, which allows us to open encrypted
7390 * backing images without needing the secret
7391 */
John Snow6e6e55f2017-07-17 20:34:22 -04007392 back_flags = flags;
7393 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Max Reitzd5b23992021-06-22 16:00:30 +02007394 back_flags |= BDRV_O_NO_IO;
John Snow6e6e55f2017-07-17 20:34:22 -04007395
Fam Zhengcc954f02017-12-15 16:04:45 +08007396 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04007397 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04007398 qdict_put_str(backing_options, "driver", backing_fmt);
7399 }
Fam Zhengcc954f02017-12-15 16:04:45 +08007400 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04007401
7402 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7403 &local_err);
7404 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05007405 if (!bs) {
7406 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04007407 goto out;
7408 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05007409 if (!backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007410 error_setg(&local_err,
7411 "Backing file specified without backing format");
Michael Tokarevfbdffb02023-04-05 16:34:04 +03007412 error_append_hint(&local_err, "Detected format of %s.\n",
Eric Blake497a30d2021-05-03 14:36:00 -07007413 bs->drv->format_name);
7414 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007415 }
John Snow6e6e55f2017-07-17 20:34:22 -04007416 if (size == -1) {
7417 /* Opened BS, have no size */
7418 size = bdrv_getlength(bs);
7419 if (size < 0) {
7420 error_setg_errno(errp, -size, "Could not get size of '%s'",
7421 backing_file);
7422 bdrv_unref(bs);
7423 goto out;
7424 }
7425 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7426 }
7427 bdrv_unref(bs);
7428 }
Eric Blaked9f059a2020-07-06 15:39:54 -05007429 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7430 } else if (backing_file && !backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007431 error_setg(&local_err,
7432 "Backing file specified without backing format");
7433 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007434 }
John Snow6e6e55f2017-07-17 20:34:22 -04007435
7436 if (size == -1) {
7437 error_setg(errp, "Image creation needs a size parameter");
7438 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007439 }
7440
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007441 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02007442 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08007443 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007444 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05007445 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007446 }
Chunyan Liu83d05212014-06-05 17:20:51 +08007447
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007448 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08007449
Max Reitzcc84d902013-09-06 17:14:26 +02007450 if (ret == -EFBIG) {
7451 /* This is generally a better message than whatever the driver would
7452 * deliver (especially because of the cluster_size_hint), since that
7453 * is most probably not much different from "image too large". */
7454 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08007455 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02007456 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007457 }
Max Reitzcc84d902013-09-06 17:14:26 +02007458 error_setg(errp, "The image size is too large for file format '%s'"
7459 "%s", fmt, cluster_size_hint);
7460 error_free(local_err);
7461 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007462 }
7463
7464out:
Chunyan Liu83d05212014-06-05 17:20:51 +08007465 qemu_opts_del(opts);
7466 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03007467 error_propagate(errp, local_err);
Kevin Wolfc6e0a6d2023-05-25 14:47:04 +02007468 aio_context_release(qemu_get_aio_context());
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007469}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007470
7471AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7472{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007473 IO_CODE();
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00007474 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007475}
7476
Kevin Wolfe336fd42020-10-05 17:58:53 +02007477AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7478{
7479 Coroutine *self = qemu_coroutine_self();
7480 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7481 AioContext *new_ctx;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007482 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007483
7484 /*
7485 * Increase bs->in_flight to ensure that this operation is completed before
7486 * moving the node to a different AioContext. Read new_ctx only afterwards.
7487 */
7488 bdrv_inc_in_flight(bs);
7489
7490 new_ctx = bdrv_get_aio_context(bs);
7491 aio_co_reschedule_self(new_ctx);
7492 return old_ctx;
7493}
7494
7495void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7496{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007497 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007498 aio_co_reschedule_self(old_ctx);
7499 bdrv_dec_in_flight(bs);
7500}
7501
Kevin Wolf18c6ac12020-10-05 17:58:54 +02007502void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7503{
7504 AioContext *ctx = bdrv_get_aio_context(bs);
7505
7506 /* In the main thread, bs->aio_context won't change concurrently */
7507 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7508
7509 /*
7510 * We're in coroutine context, so we already hold the lock of the main
7511 * loop AioContext. Don't lock it twice to avoid deadlocks.
7512 */
7513 assert(qemu_in_coroutine());
7514 if (ctx != qemu_get_aio_context()) {
7515 aio_context_acquire(ctx);
7516 }
7517}
7518
7519void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7520{
7521 AioContext *ctx = bdrv_get_aio_context(bs);
7522
7523 assert(qemu_in_coroutine());
7524 if (ctx != qemu_get_aio_context()) {
7525 aio_context_release(ctx);
7526 }
7527}
7528
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007529static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7530{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05007531 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007532 QLIST_REMOVE(ban, list);
7533 g_free(ban);
7534}
7535
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007536static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007537{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007538 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02007539
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007540 assert(!bs->walking_aio_notifiers);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007541 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007542 bs->walking_aio_notifiers = true;
7543 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7544 if (baf->deleted) {
7545 bdrv_do_remove_aio_context_notifier(baf);
7546 } else {
7547 baf->detach_aio_context(baf->opaque);
7548 }
Max Reitz33384422014-06-20 21:57:33 +02007549 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007550 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7551 * remove remaining aio notifiers if we aren't called again.
7552 */
7553 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02007554
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007555 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007556 bs->drv->bdrv_detach_aio_context(bs);
7557 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007558
7559 bs->aio_context = NULL;
7560}
7561
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007562static void bdrv_attach_aio_context(BlockDriverState *bs,
7563 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007564{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007565 BdrvAioNotifier *ban, *ban_tmp;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007566 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007567
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007568 bs->aio_context = new_context;
7569
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007570 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007571 bs->drv->bdrv_attach_aio_context(bs, new_context);
7572 }
Max Reitz33384422014-06-20 21:57:33 +02007573
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007574 assert(!bs->walking_aio_notifiers);
7575 bs->walking_aio_notifiers = true;
7576 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7577 if (ban->deleted) {
7578 bdrv_do_remove_aio_context_notifier(ban);
7579 } else {
7580 ban->attached_aio_context(new_context, ban->opaque);
7581 }
Max Reitz33384422014-06-20 21:57:33 +02007582 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007583 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007584}
7585
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007586typedef struct BdrvStateSetAioContext {
7587 AioContext *new_ctx;
7588 BlockDriverState *bs;
7589} BdrvStateSetAioContext;
7590
7591static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007592 GHashTable *visited,
7593 Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007594 Error **errp)
7595{
7596 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007597 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007598 return true;
7599 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007600 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007601
7602 /*
7603 * A BdrvChildClass that doesn't handle AioContext changes cannot
7604 * tolerate any AioContext changes
7605 */
7606 if (!c->klass->change_aio_ctx) {
7607 char *user = bdrv_child_user_desc(c);
7608 error_setg(errp, "Changing iothreads is not supported by %s", user);
7609 g_free(user);
7610 return false;
7611 }
7612 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) {
7613 assert(!errp || *errp);
7614 return false;
7615 }
7616 return true;
7617}
7618
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007619bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007620 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007621 Error **errp)
7622{
7623 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007624 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007625 return true;
7626 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007627 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007628 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp);
7629}
7630
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007631static void bdrv_set_aio_context_clean(void *opaque)
7632{
7633 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7634 BlockDriverState *bs = (BlockDriverState *) state->bs;
7635
7636 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7637 bdrv_drained_end(bs);
7638
7639 g_free(state);
7640}
7641
7642static void bdrv_set_aio_context_commit(void *opaque)
7643{
7644 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7645 BlockDriverState *bs = (BlockDriverState *) state->bs;
7646 AioContext *new_context = state->new_ctx;
7647 AioContext *old_context = bdrv_get_aio_context(bs);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007648
7649 /*
7650 * Take the old AioContex when detaching it from bs.
7651 * At this point, new_context lock is already acquired, and we are now
7652 * also taking old_context. This is safe as long as bdrv_detach_aio_context
7653 * does not call AIO_POLL_WHILE().
7654 */
7655 if (old_context != qemu_get_aio_context()) {
7656 aio_context_acquire(old_context);
7657 }
7658 bdrv_detach_aio_context(bs);
7659 if (old_context != qemu_get_aio_context()) {
7660 aio_context_release(old_context);
7661 }
7662 bdrv_attach_aio_context(bs, new_context);
7663}
7664
7665static TransactionActionDrv set_aio_context = {
7666 .commit = bdrv_set_aio_context_commit,
7667 .clean = bdrv_set_aio_context_clean,
7668};
7669
Kevin Wolf42a65f02019-05-07 18:31:38 +02007670/*
7671 * Changes the AioContext used for fd handlers, timers, and BHs by this
7672 * BlockDriverState and all its children and parents.
7673 *
Max Reitz43eaaae2019-07-22 15:30:54 +02007674 * Must be called from the main AioContext.
7675 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02007676 * The caller must own the AioContext lock for the old AioContext of bs, but it
7677 * must not own the AioContext lock for new_context (unless new_context is the
7678 * same as the current context of bs).
7679 *
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007680 * @visited will accumulate all visited BdrvChild objects. The caller is
Kevin Wolf42a65f02019-05-07 18:31:38 +02007681 * responsible for freeing the list afterwards.
7682 */
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007683static bool bdrv_change_aio_context(BlockDriverState *bs, 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)
Kevin Wolf5d231842019-05-06 19:17:56 +02007686{
7687 BdrvChild *c;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007688 BdrvStateSetAioContext *state;
7689
7690 GLOBAL_STATE_CODE();
Kevin Wolf5d231842019-05-06 19:17:56 +02007691
7692 if (bdrv_get_aio_context(bs) == ctx) {
7693 return true;
7694 }
7695
Kevin Wolf7f831d22023-09-11 11:46:17 +02007696 bdrv_graph_rdlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007697 QLIST_FOREACH(c, &bs->parents, next_parent) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007698 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf7f831d22023-09-11 11:46:17 +02007699 bdrv_graph_rdunlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007700 return false;
7701 }
7702 }
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007703
Kevin Wolf5d231842019-05-06 19:17:56 +02007704 QLIST_FOREACH(c, &bs->children, next) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007705 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf7f831d22023-09-11 11:46:17 +02007706 bdrv_graph_rdunlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007707 return false;
7708 }
7709 }
Kevin Wolf7f831d22023-09-11 11:46:17 +02007710 bdrv_graph_rdunlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007711
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007712 state = g_new(BdrvStateSetAioContext, 1);
7713 *state = (BdrvStateSetAioContext) {
7714 .new_ctx = ctx,
7715 .bs = bs,
7716 };
7717
7718 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7719 bdrv_drained_begin(bs);
7720
7721 tran_add(tran, &set_aio_context, state);
7722
Kevin Wolf5d231842019-05-06 19:17:56 +02007723 return true;
7724}
7725
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007726/*
7727 * Change bs's and recursively all of its parents' and children's AioContext
7728 * to the given new context, returning an error if that isn't possible.
7729 *
7730 * If ignore_child is not NULL, that child (and its subgraph) will not
7731 * be touched.
7732 *
7733 * This function still requires the caller to take the bs current
7734 * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE
7735 * assumes the lock is always held if bs is in another AioContext.
7736 * For the same reason, it temporarily also holds the new AioContext, since
7737 * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too.
7738 * Therefore the new AioContext lock must not be taken by the caller.
7739 */
Emanuele Giuseppe Espositoa41cfda2022-10-25 04:49:51 -04007740int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7741 BdrvChild *ignore_child, Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007742{
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007743 Transaction *tran;
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007744 GHashTable *visited;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007745 int ret;
7746 AioContext *old_context = bdrv_get_aio_context(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007747 GLOBAL_STATE_CODE();
7748
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007749 /*
7750 * Recursion phase: go through all nodes of the graph.
7751 * Take care of checking that all nodes support changing AioContext
Michael Tokarev3202d8e2023-07-14 14:06:05 +03007752 * and drain them, building a linear list of callbacks to run if everything
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007753 * is successful (the transaction itself).
7754 */
7755 tran = tran_new();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007756 visited = g_hash_table_new(NULL, NULL);
7757 if (ignore_child) {
7758 g_hash_table_add(visited, ignore_child);
7759 }
7760 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp);
7761 g_hash_table_destroy(visited);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007762
7763 /*
7764 * Linear phase: go through all callbacks collected in the transaction.
7765 * Run all callbacks collected in the recursion to switch all nodes
7766 * AioContext lock (transaction commit), or undo all changes done in the
7767 * recursion (transaction abort).
7768 */
Kevin Wolf5d231842019-05-06 19:17:56 +02007769
7770 if (!ret) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007771 /* Just run clean() callbacks. No AioContext changed. */
7772 tran_abort(tran);
Kevin Wolf5d231842019-05-06 19:17:56 +02007773 return -EPERM;
7774 }
7775
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007776 /*
7777 * Release old AioContext, it won't be needed anymore, as all
7778 * bdrv_drained_begin() have been called already.
7779 */
7780 if (qemu_get_aio_context() != old_context) {
7781 aio_context_release(old_context);
7782 }
7783
7784 /*
7785 * Acquire new AioContext since bdrv_drained_end() is going to be called
7786 * after we switched all nodes in the new AioContext, and the function
7787 * assumes that the lock of the bs is always taken.
7788 */
7789 if (qemu_get_aio_context() != ctx) {
7790 aio_context_acquire(ctx);
7791 }
7792
7793 tran_commit(tran);
7794
7795 if (qemu_get_aio_context() != ctx) {
7796 aio_context_release(ctx);
7797 }
7798
7799 /* Re-acquire the old AioContext, since the caller takes and releases it. */
7800 if (qemu_get_aio_context() != old_context) {
7801 aio_context_acquire(old_context);
7802 }
Kevin Wolf53a7d042019-05-06 19:17:59 +02007803
Kevin Wolf5d231842019-05-06 19:17:56 +02007804 return 0;
7805}
7806
Max Reitz33384422014-06-20 21:57:33 +02007807void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7808 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7809 void (*detach_aio_context)(void *opaque), void *opaque)
7810{
7811 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7812 *ban = (BdrvAioNotifier){
7813 .attached_aio_context = attached_aio_context,
7814 .detach_aio_context = detach_aio_context,
7815 .opaque = opaque
7816 };
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007817 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007818
7819 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7820}
7821
7822void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7823 void (*attached_aio_context)(AioContext *,
7824 void *),
7825 void (*detach_aio_context)(void *),
7826 void *opaque)
7827{
7828 BdrvAioNotifier *ban, *ban_next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007829 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007830
7831 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7832 if (ban->attached_aio_context == attached_aio_context &&
7833 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007834 ban->opaque == opaque &&
7835 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007836 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007837 if (bs->walking_aio_notifiers) {
7838 ban->deleted = true;
7839 } else {
7840 bdrv_do_remove_aio_context_notifier(ban);
7841 }
Max Reitz33384422014-06-20 21:57:33 +02007842 return;
7843 }
7844 }
7845
7846 abort();
7847}
7848
Max Reitz77485432014-10-27 11:12:50 +01007849int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007850 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007851 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007852 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007853{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007854 GLOBAL_STATE_CODE();
Max Reitzd470ad42017-11-10 21:31:09 +01007855 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007856 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007857 return -ENOMEDIUM;
7858 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007859 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007860 error_setg(errp, "Block driver '%s' does not support option amendment",
7861 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007862 return -ENOTSUP;
7863 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007864 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7865 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007866}
Benoît Canetf6186f42013-10-02 14:33:48 +02007867
Max Reitz5d69b5a2020-02-18 11:34:41 +01007868/*
7869 * This function checks whether the given @to_replace is allowed to be
7870 * replaced by a node that always shows the same data as @bs. This is
7871 * used for example to verify whether the mirror job can replace
7872 * @to_replace by the target mirrored from @bs.
7873 * To be replaceable, @bs and @to_replace may either be guaranteed to
7874 * always show the same data (because they are only connected through
7875 * filters), or some driver may allow replacing one of its children
7876 * because it can guarantee that this child's data is not visible at
7877 * all (for example, for dissenting quorum children that have no other
7878 * parents).
7879 */
7880bool bdrv_recurse_can_replace(BlockDriverState *bs,
7881 BlockDriverState *to_replace)
7882{
Max Reitz93393e62019-06-12 17:03:38 +02007883 BlockDriverState *filtered;
7884
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007885 GLOBAL_STATE_CODE();
7886
Max Reitz5d69b5a2020-02-18 11:34:41 +01007887 if (!bs || !bs->drv) {
7888 return false;
7889 }
7890
7891 if (bs == to_replace) {
7892 return true;
7893 }
7894
7895 /* See what the driver can do */
7896 if (bs->drv->bdrv_recurse_can_replace) {
7897 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7898 }
7899
7900 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007901 filtered = bdrv_filter_bs(bs);
7902 if (filtered) {
7903 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007904 }
7905
7906 /* Safe default */
7907 return false;
7908}
7909
Max Reitz810803a2020-02-18 11:34:44 +01007910/*
7911 * Check whether the given @node_name can be replaced by a node that
7912 * has the same data as @parent_bs. If so, return @node_name's BDS;
7913 * NULL otherwise.
7914 *
7915 * @node_name must be a (recursive) *child of @parent_bs (or this
7916 * function will return NULL).
7917 *
7918 * The result (whether the node can be replaced or not) is only valid
7919 * for as long as no graph or permission changes occur.
7920 */
Wen Congyange12f3782015-07-17 10:12:22 +08007921BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7922 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007923{
7924 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007925 AioContext *aio_context;
7926
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007927 GLOBAL_STATE_CODE();
7928
Benoît Canet09158f02014-06-27 18:25:25 +02007929 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007930 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007931 return NULL;
7932 }
7933
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007934 aio_context = bdrv_get_aio_context(to_replace_bs);
7935 aio_context_acquire(aio_context);
7936
Benoît Canet09158f02014-06-27 18:25:25 +02007937 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007938 to_replace_bs = NULL;
7939 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007940 }
7941
7942 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7943 * most non filter in order to prevent data corruption.
7944 * Another benefit is that this tests exclude backing files which are
7945 * blocked by the backing blockers.
7946 */
Max Reitz810803a2020-02-18 11:34:44 +01007947 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7948 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7949 "because it cannot be guaranteed that doing so would not "
7950 "lead to an abrupt change of visible data",
7951 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007952 to_replace_bs = NULL;
7953 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007954 }
7955
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007956out:
7957 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007958 return to_replace_bs;
7959}
Ming Lei448ad912014-07-04 18:04:33 +08007960
Max Reitz97e2f022019-02-01 20:29:27 +01007961/**
7962 * Iterates through the list of runtime option keys that are said to
7963 * be "strong" for a BDS. An option is called "strong" if it changes
7964 * a BDS's data. For example, the null block driver's "size" and
7965 * "read-zeroes" options are strong, but its "latency-ns" option is
7966 * not.
7967 *
7968 * If a key returned by this function ends with a dot, all options
7969 * starting with that prefix are strong.
7970 */
7971static const char *const *strong_options(BlockDriverState *bs,
7972 const char *const *curopt)
7973{
7974 static const char *const global_options[] = {
7975 "driver", "filename", NULL
7976 };
7977
7978 if (!curopt) {
7979 return &global_options[0];
7980 }
7981
7982 curopt++;
7983 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7984 curopt = bs->drv->strong_runtime_opts;
7985 }
7986
7987 return (curopt && *curopt) ? curopt : NULL;
7988}
7989
7990/**
7991 * Copies all strong runtime options from bs->options to the given
7992 * QDict. The set of strong option keys is determined by invoking
7993 * strong_options().
7994 *
7995 * Returns true iff any strong option was present in bs->options (and
7996 * thus copied to the target QDict) with the exception of "filename"
7997 * and "driver". The caller is expected to use this value to decide
7998 * whether the existence of strong options prevents the generation of
7999 * a plain filename.
8000 */
8001static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
8002{
8003 bool found_any = false;
8004 const char *const *option_name = NULL;
8005
8006 if (!bs->drv) {
8007 return false;
8008 }
8009
8010 while ((option_name = strong_options(bs, option_name))) {
8011 bool option_given = false;
8012
8013 assert(strlen(*option_name) > 0);
8014 if ((*option_name)[strlen(*option_name) - 1] != '.') {
8015 QObject *entry = qdict_get(bs->options, *option_name);
8016 if (!entry) {
8017 continue;
8018 }
8019
8020 qdict_put_obj(d, *option_name, qobject_ref(entry));
8021 option_given = true;
8022 } else {
8023 const QDictEntry *entry;
8024 for (entry = qdict_first(bs->options); entry;
8025 entry = qdict_next(bs->options, entry))
8026 {
8027 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
8028 qdict_put_obj(d, qdict_entry_key(entry),
8029 qobject_ref(qdict_entry_value(entry)));
8030 option_given = true;
8031 }
8032 }
8033 }
8034
8035 /* While "driver" and "filename" need to be included in a JSON filename,
8036 * their existence does not prohibit generation of a plain filename. */
8037 if (!found_any && option_given &&
8038 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
8039 {
8040 found_any = true;
8041 }
8042 }
8043
Max Reitz62a01a272019-02-01 20:29:34 +01008044 if (!qdict_haskey(d, "driver")) {
8045 /* Drivers created with bdrv_new_open_driver() may not have a
8046 * @driver option. Add it here. */
8047 qdict_put_str(d, "driver", bs->drv->format_name);
8048 }
8049
Max Reitz97e2f022019-02-01 20:29:27 +01008050 return found_any;
8051}
8052
Max Reitz90993622019-02-01 20:29:09 +01008053/* Note: This function may return false positives; it may return true
8054 * even if opening the backing file specified by bs's image header
8055 * would result in exactly bs->backing. */
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -05008056static bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01008057{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05008058 GLOBAL_STATE_CODE();
Max Reitz90993622019-02-01 20:29:09 +01008059 if (bs->backing) {
8060 return strcmp(bs->auto_backing_file,
8061 bs->backing->bs->filename);
8062 } else {
8063 /* No backing BDS, so if the image header reports any backing
8064 * file, it must have been suppressed */
8065 return bs->auto_backing_file[0] != '\0';
8066 }
8067}
8068
Max Reitz91af7012014-07-18 20:24:56 +02008069/* Updates the following BDS fields:
8070 * - exact_filename: A filename which may be used for opening a block device
8071 * which (mostly) equals the given BDS (even without any
8072 * other options; so reading and writing must return the same
8073 * results, but caching etc. may be different)
8074 * - full_open_options: Options which, when given when opening a block device
8075 * (without a filename), result in a BDS (mostly)
8076 * equalling the given one
8077 * - filename: If exact_filename is set, it is copied here. Otherwise,
8078 * full_open_options is converted to a JSON object, prefixed with
8079 * "json:" (for use through the JSON pseudo protocol) and put here.
8080 */
8081void bdrv_refresh_filename(BlockDriverState *bs)
8082{
8083 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01008084 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02008085 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02008086 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01008087 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01008088 bool generate_json_filename; /* Whether our default implementation should
8089 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02008090
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008091 GLOBAL_STATE_CODE();
8092
Max Reitz91af7012014-07-18 20:24:56 +02008093 if (!drv) {
8094 return;
8095 }
8096
Max Reitze24518e2019-02-01 20:29:06 +01008097 /* This BDS's file name may depend on any of its children's file names, so
8098 * refresh those first */
8099 QLIST_FOREACH(child, &bs->children, next) {
8100 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02008101 }
8102
Max Reitzbb808d52019-02-01 20:29:07 +01008103 if (bs->implicit) {
8104 /* For implicit nodes, just copy everything from the single child */
8105 child = QLIST_FIRST(&bs->children);
8106 assert(QLIST_NEXT(child, next) == NULL);
8107
8108 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
8109 child->bs->exact_filename);
8110 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
8111
Pan Nengyuancb895612020-01-16 16:56:00 +08008112 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01008113 bs->full_open_options = qobject_ref(child->bs->full_open_options);
8114
8115 return;
8116 }
8117
Max Reitz90993622019-02-01 20:29:09 +01008118 backing_overridden = bdrv_backing_overridden(bs);
8119
8120 if (bs->open_flags & BDRV_O_NO_IO) {
8121 /* Without I/O, the backing file does not change anything.
8122 * Therefore, in such a case (primarily qemu-img), we can
8123 * pretend the backing file has not been overridden even if
8124 * it technically has been. */
8125 backing_overridden = false;
8126 }
8127
Max Reitz97e2f022019-02-01 20:29:27 +01008128 /* Gather the options QDict */
8129 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01008130 generate_json_filename = append_strong_runtime_options(opts, bs);
8131 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01008132
8133 if (drv->bdrv_gather_child_options) {
8134 /* Some block drivers may not want to present all of their children's
8135 * options, or name them differently from BdrvChild.name */
8136 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
8137 } else {
8138 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02008139 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01008140 /* We can skip the backing BDS if it has not been overridden */
8141 continue;
8142 }
8143
8144 qdict_put(opts, child->name,
8145 qobject_ref(child->bs->full_open_options));
8146 }
8147
8148 if (backing_overridden && !bs->backing) {
8149 /* Force no backing file */
8150 qdict_put_null(opts, "backing");
8151 }
8152 }
8153
8154 qobject_unref(bs->full_open_options);
8155 bs->full_open_options = opts;
8156
Max Reitz52f72d62019-06-12 17:43:03 +02008157 primary_child_bs = bdrv_primary_bs(bs);
8158
Max Reitz998b3a12019-02-01 20:29:28 +01008159 if (drv->bdrv_refresh_filename) {
8160 /* Obsolete information is of no use here, so drop the old file name
8161 * information before refreshing it */
8162 bs->exact_filename[0] = '\0';
8163
8164 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02008165 } else if (primary_child_bs) {
8166 /*
8167 * Try to reconstruct valid information from the underlying
8168 * file -- this only works for format nodes (filter nodes
8169 * cannot be probed and as such must be selected by the user
8170 * either through an options dict, or through a special
8171 * filename which the filter driver must construct in its
8172 * .bdrv_refresh_filename() implementation).
8173 */
Max Reitz998b3a12019-02-01 20:29:28 +01008174
8175 bs->exact_filename[0] = '\0';
8176
Max Reitzfb695c72019-02-01 20:29:29 +01008177 /*
8178 * We can use the underlying file's filename if:
8179 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02008180 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01008181 * - the file is a protocol BDS, and
8182 * - opening that file (as this BDS's format) will automatically create
8183 * the BDS tree we have right now, that is:
8184 * - the user did not significantly change this BDS's behavior with
8185 * some explicit (strong) options
8186 * - no non-file child of this BDS has been overridden by the user
8187 * Both of these conditions are represented by generate_json_filename.
8188 */
Max Reitz52f72d62019-06-12 17:43:03 +02008189 if (primary_child_bs->exact_filename[0] &&
8190 primary_child_bs->drv->bdrv_file_open &&
8191 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01008192 {
Max Reitz52f72d62019-06-12 17:43:03 +02008193 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01008194 }
8195 }
8196
Max Reitz91af7012014-07-18 20:24:56 +02008197 if (bs->exact_filename[0]) {
8198 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01008199 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01008200 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05008201 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01008202 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05008203 /* Give user a hint if we truncated things. */
8204 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
8205 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01008206 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02008207 }
8208}
Wen Congyange06018a2016-05-10 15:36:37 +08008209
Max Reitz1e89d0f2019-02-01 20:29:18 +01008210char *bdrv_dirname(BlockDriverState *bs, Error **errp)
8211{
8212 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02008213 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01008214
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008215 GLOBAL_STATE_CODE();
8216
Max Reitz1e89d0f2019-02-01 20:29:18 +01008217 if (!drv) {
8218 error_setg(errp, "Node '%s' is ejected", bs->node_name);
8219 return NULL;
8220 }
8221
8222 if (drv->bdrv_dirname) {
8223 return drv->bdrv_dirname(bs, errp);
8224 }
8225
Max Reitz52f72d62019-06-12 17:43:03 +02008226 child_bs = bdrv_primary_bs(bs);
8227 if (child_bs) {
8228 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01008229 }
8230
8231 bdrv_refresh_filename(bs);
8232 if (bs->exact_filename[0] != '\0') {
8233 return path_combine(bs->exact_filename, "");
8234 }
8235
8236 error_setg(errp, "Cannot generate a base directory for %s nodes",
8237 drv->format_name);
8238 return NULL;
8239}
8240
Wen Congyange06018a2016-05-10 15:36:37 +08008241/*
8242 * Hot add/remove a BDS's child. So the user can take a child offline when
8243 * it is broken and take a new child online
8244 */
8245void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
8246 Error **errp)
8247{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008248 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08008249 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
8250 error_setg(errp, "The node %s does not support adding a child",
8251 bdrv_get_device_or_node_name(parent_bs));
8252 return;
8253 }
8254
Sam Li774c7262023-05-08 12:55:30 +08008255 /*
8256 * Non-zoned block drivers do not follow zoned storage constraints
8257 * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned
8258 * drivers in a graph.
8259 */
8260 if (!parent_bs->drv->supports_zoned_children &&
8261 child_bs->bl.zoned == BLK_Z_HM) {
8262 /*
8263 * The host-aware model allows zoned storage constraints and random
8264 * write. Allow mixing host-aware and non-zoned drivers. Using
8265 * host-aware device as a regular device.
8266 */
8267 error_setg(errp, "Cannot add a %s child to a %s parent",
8268 child_bs->bl.zoned == BLK_Z_HM ? "zoned" : "non-zoned",
8269 parent_bs->drv->supports_zoned_children ?
8270 "support zoned children" : "not support zoned children");
8271 return;
8272 }
8273
Wen Congyange06018a2016-05-10 15:36:37 +08008274 if (!QLIST_EMPTY(&child_bs->parents)) {
8275 error_setg(errp, "The node %s already has a parent",
8276 child_bs->node_name);
8277 return;
8278 }
8279
8280 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
8281}
8282
8283void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
8284{
8285 BdrvChild *tmp;
8286
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008287 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08008288 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
8289 error_setg(errp, "The node %s does not support removing a child",
8290 bdrv_get_device_or_node_name(parent_bs));
8291 return;
8292 }
8293
8294 QLIST_FOREACH(tmp, &parent_bs->children, next) {
8295 if (tmp == child) {
8296 break;
8297 }
8298 }
8299
8300 if (!tmp) {
8301 error_setg(errp, "The node %s does not have a child named %s",
8302 bdrv_get_device_or_node_name(parent_bs),
8303 bdrv_get_device_or_node_name(child->bs));
8304 return;
8305 }
8306
8307 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
8308}
Max Reitz6f7a3b52020-04-29 16:11:23 +02008309
8310int bdrv_make_empty(BdrvChild *c, Error **errp)
8311{
8312 BlockDriver *drv = c->bs->drv;
8313 int ret;
8314
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008315 GLOBAL_STATE_CODE();
Max Reitz6f7a3b52020-04-29 16:11:23 +02008316 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
8317
8318 if (!drv->bdrv_make_empty) {
8319 error_setg(errp, "%s does not support emptying nodes",
8320 drv->format_name);
8321 return -ENOTSUP;
8322 }
8323
8324 ret = drv->bdrv_make_empty(c->bs);
8325 if (ret < 0) {
8326 error_setg_errno(errp, -ret, "Failed to empty %s",
8327 c->bs->filename);
8328 return ret;
8329 }
8330
8331 return 0;
8332}
Max Reitz9a6fc882019-05-31 15:23:11 +02008333
8334/*
8335 * Return the child that @bs acts as an overlay for, and from which data may be
8336 * copied in COW or COR operations. Usually this is the backing file.
8337 */
8338BdrvChild *bdrv_cow_child(BlockDriverState *bs)
8339{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008340 IO_CODE();
8341
Max Reitz9a6fc882019-05-31 15:23:11 +02008342 if (!bs || !bs->drv) {
8343 return NULL;
8344 }
8345
8346 if (bs->drv->is_filter) {
8347 return NULL;
8348 }
8349
8350 if (!bs->backing) {
8351 return NULL;
8352 }
8353
8354 assert(bs->backing->role & BDRV_CHILD_COW);
8355 return bs->backing;
8356}
8357
8358/*
8359 * If @bs acts as a filter for exactly one of its children, return
8360 * that child.
8361 */
8362BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8363{
8364 BdrvChild *c;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008365 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008366
8367 if (!bs || !bs->drv) {
8368 return NULL;
8369 }
8370
8371 if (!bs->drv->is_filter) {
8372 return NULL;
8373 }
8374
8375 /* Only one of @backing or @file may be used */
8376 assert(!(bs->backing && bs->file));
8377
8378 c = bs->backing ?: bs->file;
8379 if (!c) {
8380 return NULL;
8381 }
8382
8383 assert(c->role & BDRV_CHILD_FILTERED);
8384 return c;
8385}
8386
8387/*
8388 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8389 * whichever is non-NULL.
8390 *
8391 * Return NULL if both are NULL.
8392 */
8393BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8394{
8395 BdrvChild *cow_child = bdrv_cow_child(bs);
8396 BdrvChild *filter_child = bdrv_filter_child(bs);
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008397 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008398
8399 /* Filter nodes cannot have COW backing files */
8400 assert(!(cow_child && filter_child));
8401
8402 return cow_child ?: filter_child;
8403}
8404
8405/*
8406 * Return the primary child of this node: For filters, that is the
8407 * filtered child. For other nodes, that is usually the child storing
8408 * metadata.
8409 * (A generally more helpful description is that this is (usually) the
8410 * child that has the same filename as @bs.)
8411 *
8412 * Drivers do not necessarily have a primary child; for example quorum
8413 * does not.
8414 */
8415BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8416{
8417 BdrvChild *c, *found = NULL;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008418 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008419
8420 QLIST_FOREACH(c, &bs->children, next) {
8421 if (c->role & BDRV_CHILD_PRIMARY) {
8422 assert(!found);
8423 found = c;
8424 }
8425 }
8426
8427 return found;
8428}
Max Reitzd38d7eb2019-06-12 15:06:37 +02008429
8430static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
8431 bool stop_on_explicit_filter)
8432{
8433 BdrvChild *c;
8434
8435 if (!bs) {
8436 return NULL;
8437 }
8438
8439 while (!(stop_on_explicit_filter && !bs->implicit)) {
8440 c = bdrv_filter_child(bs);
8441 if (!c) {
8442 /*
8443 * A filter that is embedded in a working block graph must
8444 * have a child. Assert this here so this function does
8445 * not return a filter node that is not expected by the
8446 * caller.
8447 */
8448 assert(!bs->drv || !bs->drv->is_filter);
8449 break;
8450 }
8451 bs = c->bs;
8452 }
8453 /*
8454 * Note that this treats nodes with bs->drv == NULL as not being
8455 * filters (bs->drv == NULL should be replaced by something else
8456 * anyway).
8457 * The advantage of this behavior is that this function will thus
8458 * always return a non-NULL value (given a non-NULL @bs).
8459 */
8460
8461 return bs;
8462}
8463
8464/*
8465 * Return the first BDS that has not been added implicitly or that
8466 * does not have a filtered child down the chain starting from @bs
8467 * (including @bs itself).
8468 */
8469BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8470{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05008471 GLOBAL_STATE_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008472 return bdrv_do_skip_filters(bs, true);
8473}
8474
8475/*
8476 * Return the first BDS that does not have a filtered child down the
8477 * chain starting from @bs (including @bs itself).
8478 */
8479BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8480{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008481 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008482 return bdrv_do_skip_filters(bs, false);
8483}
8484
8485/*
8486 * For a backing chain, return the first non-filter backing image of
8487 * the first non-filter image.
8488 */
8489BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8490{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008491 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008492 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8493}
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008494
8495/**
8496 * Check whether [offset, offset + bytes) overlaps with the cached
8497 * block-status data region.
8498 *
8499 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8500 * which is what bdrv_bsc_is_data()'s interface needs.
8501 * Otherwise, *pnum is not touched.
8502 */
8503static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8504 int64_t offset, int64_t bytes,
8505 int64_t *pnum)
8506{
8507 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8508 bool overlaps;
8509
8510 overlaps =
8511 qatomic_read(&bsc->valid) &&
8512 ranges_overlap(offset, bytes, bsc->data_start,
8513 bsc->data_end - bsc->data_start);
8514
8515 if (overlaps && pnum) {
8516 *pnum = bsc->data_end - offset;
8517 }
8518
8519 return overlaps;
8520}
8521
8522/**
8523 * See block_int.h for this function's documentation.
8524 */
8525bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8526{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008527 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008528 RCU_READ_LOCK_GUARD();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008529 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8530}
8531
8532/**
8533 * See block_int.h for this function's documentation.
8534 */
8535void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8536 int64_t offset, int64_t bytes)
8537{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008538 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008539 RCU_READ_LOCK_GUARD();
8540
8541 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8542 qatomic_set(&bs->block_status_cache->valid, false);
8543 }
8544}
8545
8546/**
8547 * See block_int.h for this function's documentation.
8548 */
8549void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8550{
8551 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8552 BdrvBlockStatusCache *old_bsc;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008553 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008554
8555 *new_bsc = (BdrvBlockStatusCache) {
8556 .valid = true,
8557 .data_start = offset,
8558 .data_end = offset + bytes,
8559 };
8560
8561 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8562
8563 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8564 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8565 if (old_bsc) {
8566 g_free_rcu(old_bsc, rcu);
8567 }
8568}