blob: 6191ac1f440c00d26bef6ff168362d077f6a6210 [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"
Max Reitz0c9b70d2020-10-27 20:05:42 +010030#include "block/fuse.h"
Kevin Wolfcd7fca92016-07-06 11:22:39 +020031#include "block/nbd.h"
Max Reitz609f45e2018-06-14 21:14:28 +020032#include "block/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010033#include "qemu/error-report.h"
Marc-André Lureau5e5733e2019-08-29 22:34:43 +040034#include "block/module_block.h"
Markus Armbrusterdb725812019-08-12 07:23:50 +020035#include "qemu/main-loop.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010036#include "qemu/module.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010037#include "qapi/error.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010038#include "qapi/qmp/qdict.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010039#include "qapi/qmp/qjson.h"
Max Reitze59a0cf2018-02-24 16:40:32 +010040#include "qapi/qmp/qnull.h"
Markus Armbrusterfc81fa12018-02-01 12:18:40 +010041#include "qapi/qmp/qstring.h"
Kevin Wolfe1d74bc2018-01-10 15:52:33 +010042#include "qapi/qobject-output-visitor.h"
43#include "qapi/qapi-visit-block-core.h"
Markus Armbrusterbfb197e2014-10-07 13:59:11 +020044#include "sysemu/block-backend.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010045#include "qemu/notify.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010046#include "qemu/option.h"
Daniel P. Berrange10817bf2015-09-01 14:48:02 +010047#include "qemu/coroutine.h"
Benoît Canetc13163f2014-01-23 21:31:34 +010048#include "block/qapi.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010049#include "qemu/timer.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020050#include "qemu/cutils.h"
51#include "qemu/id.h"
Hanna Reitz0bc329f2021-08-12 10:41:44 +020052#include "qemu/range.h"
53#include "qemu/rcu.h"
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +030054#include "block/coroutines.h"
bellardfc01f7e2003-06-30 10:03:06 +000055
Juan Quintela71e72a12009-07-27 16:12:56 +020056#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000057#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000058#include <sys/queue.h>
Joelle van Dynefeccdce2021-03-15 11:03:39 -070059#if defined(HAVE_SYS_DISK_H)
bellard7674e7b2005-04-26 21:59:26 +000060#include <sys/disk.h>
61#endif
blueswir1c5e97232009-03-07 20:06:23 +000062#endif
bellard7674e7b2005-04-26 21:59:26 +000063
aliguori49dc7682009-03-08 16:26:59 +000064#ifdef _WIN32
65#include <windows.h>
66#endif
67
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010068#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
69
Emanuele Giuseppe Esposito3b491a92022-03-03 10:15:48 -050070/* Protected by BQL */
Benoît Canetdc364f42014-01-23 21:31:32 +010071static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
72 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
73
Emanuele Giuseppe Esposito3b491a92022-03-03 10:15:48 -050074/* Protected by BQL */
Max Reitz2c1d04e2016-01-29 16:36:11 +010075static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
76 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
77
Emanuele Giuseppe Esposito3b491a92022-03-03 10:15:48 -050078/* Protected by BQL */
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010079static QLIST_HEAD(, BlockDriver) bdrv_drivers =
80 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000081
Max Reitz5b363932016-05-17 16:41:31 +020082static BlockDriverState *bdrv_open_inherit(const char *filename,
83 const char *reference,
84 QDict *options, int flags,
85 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +020086 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +020087 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +020088 Error **errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +020089
Kevin Wolfbfb8aa62021-10-18 15:47:14 +020090static bool bdrv_recurse_has_child(BlockDriverState *bs,
91 BlockDriverState *child);
92
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +030093static void bdrv_replace_child_noperm(BdrvChild *child,
Vladimir Sementsov-Ogievskiy4eba8252022-07-26 23:11:28 +030094 BlockDriverState *new_bs);
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +030095static void bdrv_remove_child(BdrvChild *child, Transaction *tran);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030096
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +030097static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
98 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +030099 Transaction *change_child_tran, Error **errp);
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +0300100static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
101static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
102
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -0500103static bool bdrv_backing_overridden(BlockDriverState *bs);
104
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -0400105static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -0400106 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -0400107 Error **errp);
108
Markus Armbrustereb852012009-10-27 18:41:44 +0100109/* If non-zero, use only whitelisted block drivers */
110static int use_bdrv_whitelist;
111
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000112#ifdef _WIN32
113static int is_windows_drive_prefix(const char *filename)
114{
115 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
116 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
117 filename[1] == ':');
118}
119
120int is_windows_drive(const char *filename)
121{
122 if (is_windows_drive_prefix(filename) &&
123 filename[2] == '\0')
124 return 1;
125 if (strstart(filename, "\\\\.\\", NULL) ||
126 strstart(filename, "//./", NULL))
127 return 1;
128 return 0;
129}
130#endif
131
Kevin Wolf339064d2013-11-28 10:23:32 +0100132size_t bdrv_opt_mem_align(BlockDriverState *bs)
133{
134 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300135 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400136 return MAX(4096, qemu_real_host_page_size());
Kevin Wolf339064d2013-11-28 10:23:32 +0100137 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500138 IO_CODE();
Kevin Wolf339064d2013-11-28 10:23:32 +0100139
140 return bs->bl.opt_mem_alignment;
141}
142
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300143size_t bdrv_min_mem_align(BlockDriverState *bs)
144{
145 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300146 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400147 return MAX(4096, qemu_real_host_page_size());
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300148 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500149 IO_CODE();
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300150
151 return bs->bl.min_mem_alignment;
152}
153
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000154/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100155int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000156{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200157 const char *p;
158
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000159#ifdef _WIN32
160 if (is_windows_drive(path) ||
161 is_windows_drive_prefix(path)) {
162 return 0;
163 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200164 p = path + strcspn(path, ":/\\");
165#else
166 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000167#endif
168
Paolo Bonzini947995c2012-05-08 16:51:48 +0200169 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000170}
171
bellard83f64092006-08-01 16:21:11 +0000172int path_is_absolute(const char *path)
173{
bellard21664422007-01-07 18:22:37 +0000174#ifdef _WIN32
175 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200176 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000177 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200178 }
179 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000180#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200181 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000182#endif
bellard83f64092006-08-01 16:21:11 +0000183}
184
Max Reitz009b03a2019-02-01 20:29:13 +0100185/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000186 path to it by considering it is relative to base_path. URL are
187 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100188char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000189{
Max Reitz009b03a2019-02-01 20:29:13 +0100190 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000191 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100192 char *result;
bellard83f64092006-08-01 16:21:11 +0000193 int len;
194
bellard83f64092006-08-01 16:21:11 +0000195 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100196 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000197 }
Max Reitz009b03a2019-02-01 20:29:13 +0100198
199 if (path_has_protocol(base_path)) {
200 protocol_stripped = strchr(base_path, ':');
201 if (protocol_stripped) {
202 protocol_stripped++;
203 }
204 }
205 p = protocol_stripped ?: base_path;
206
207 p1 = strrchr(base_path, '/');
208#ifdef _WIN32
209 {
210 const char *p2;
211 p2 = strrchr(base_path, '\\');
212 if (!p1 || p2 > p1) {
213 p1 = p2;
214 }
215 }
216#endif
217 if (p1) {
218 p1++;
219 } else {
220 p1 = base_path;
221 }
222 if (p1 > p) {
223 p = p1;
224 }
225 len = p - base_path;
226
227 result = g_malloc(len + strlen(filename) + 1);
228 memcpy(result, base_path, len);
229 strcpy(result + len, filename);
230
231 return result;
232}
233
Max Reitz03c320d2017-05-22 21:52:16 +0200234/*
235 * Helper function for bdrv_parse_filename() implementations to remove optional
236 * protocol prefixes (especially "file:") from a filename and for putting the
237 * stripped filename into the options QDict if there is such a prefix.
238 */
239void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
240 QDict *options)
241{
242 if (strstart(filename, prefix, &filename)) {
243 /* Stripping the explicit protocol prefix may result in a protocol
244 * prefix being (wrongly) detected (if the filename contains a colon) */
245 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100246 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200247
248 /* This means there is some colon before the first slash; therefore,
249 * this cannot be an absolute path */
250 assert(!path_is_absolute(filename));
251
252 /* And we can thus fix the protocol detection issue by prefixing it
253 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100254 fat_filename = g_string_new("./");
255 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200256
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100257 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200258
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100259 qdict_put(options, "filename",
260 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200261 } else {
262 /* If no protocol prefix was detected, we can use the shortened
263 * filename as-is */
264 qdict_put_str(options, "filename", filename);
265 }
266 }
267}
268
269
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200270/* Returns whether the image file is opened as read-only. Note that this can
271 * return false and writing to the image file is still not possible because the
272 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400273bool bdrv_is_read_only(BlockDriverState *bs)
274{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500275 IO_CODE();
Vladimir Sementsov-Ogievskiy975da072021-05-27 18:40:55 +0300276 return !(bs->open_flags & BDRV_O_RDWR);
Jeff Cody93ed5242017-04-07 16:55:28 -0400277}
278
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200279int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
280 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400281{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500282 IO_CODE();
283
Jeff Codye2b82472017-04-07 16:55:26 -0400284 /* Do not set read_only if copy_on_read is enabled */
285 if (bs->copy_on_read && read_only) {
286 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
287 bdrv_get_device_or_node_name(bs));
288 return -EINVAL;
289 }
290
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400291 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200292 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
293 !ignore_allow_rdw)
294 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400295 error_setg(errp, "Node '%s' is read only",
296 bdrv_get_device_or_node_name(bs));
297 return -EPERM;
298 }
299
Jeff Cody45803a02017-04-07 16:55:29 -0400300 return 0;
301}
302
Kevin Wolfeaa24102018-10-12 11:27:41 +0200303/*
304 * Called by a driver that can only provide a read-only image.
305 *
306 * Returns 0 if the node is already read-only or it could switch the node to
307 * read-only because BDRV_O_AUTO_RDONLY is set.
308 *
309 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
310 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
311 * is not NULL, it is used as the error message for the Error object.
312 */
313int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
314 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400315{
316 int ret = 0;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500317 IO_CODE();
Jeff Cody45803a02017-04-07 16:55:29 -0400318
Kevin Wolfeaa24102018-10-12 11:27:41 +0200319 if (!(bs->open_flags & BDRV_O_RDWR)) {
320 return 0;
321 }
322 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
323 goto fail;
324 }
325
326 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400327 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200328 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400329 }
330
Kevin Wolfeaa24102018-10-12 11:27:41 +0200331 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200332
Jeff Codye2b82472017-04-07 16:55:26 -0400333 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200334
335fail:
336 error_setg(errp, "%s", errmsg ?: "Image is read-only");
337 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400338}
339
Max Reitz645ae7d2019-02-01 20:29:14 +0100340/*
341 * If @backing is empty, this function returns NULL without setting
342 * @errp. In all other cases, NULL will only be returned with @errp
343 * set.
344 *
345 * Therefore, a return value of NULL without @errp set means that
346 * there is no backing file; if @errp is set, there is one but its
347 * absolute filename cannot be generated.
348 */
349char *bdrv_get_full_backing_filename_from_filename(const char *backed,
350 const char *backing,
351 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100352{
Max Reitz645ae7d2019-02-01 20:29:14 +0100353 if (backing[0] == '\0') {
354 return NULL;
355 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
356 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100357 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
358 error_setg(errp, "Cannot use relative backing file names for '%s'",
359 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100360 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100361 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100362 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100363 }
364}
365
Max Reitz9f4793d2019-02-01 20:29:16 +0100366/*
367 * If @filename is empty or NULL, this function returns NULL without
368 * setting @errp. In all other cases, NULL will only be returned with
369 * @errp set.
370 */
371static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
372 const char *filename, Error **errp)
373{
Max Reitz8df68612019-02-01 20:29:23 +0100374 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100375
Max Reitz8df68612019-02-01 20:29:23 +0100376 if (!filename || filename[0] == '\0') {
377 return NULL;
378 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
379 return g_strdup(filename);
380 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100381
Max Reitz8df68612019-02-01 20:29:23 +0100382 dir = bdrv_dirname(relative_to, errp);
383 if (!dir) {
384 return NULL;
385 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100386
Max Reitz8df68612019-02-01 20:29:23 +0100387 full_name = g_strconcat(dir, filename, NULL);
388 g_free(dir);
389 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100390}
391
Max Reitz6b6833c2019-02-01 20:29:15 +0100392char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200393{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500394 GLOBAL_STATE_CODE();
Max Reitz9f4793d2019-02-01 20:29:16 +0100395 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200396}
397
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100398void bdrv_register(BlockDriver *bdrv)
399{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100400 assert(bdrv->format_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500401 GLOBAL_STATE_CODE();
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100402 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000403}
bellardb3380822004-03-14 21:38:54 +0000404
Markus Armbrustere4e99862014-10-07 13:59:03 +0200405BlockDriverState *bdrv_new(void)
406{
407 BlockDriverState *bs;
408 int i;
409
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500410 GLOBAL_STATE_CODE();
411
Markus Armbruster5839e532014-08-19 10:31:08 +0200412 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800413 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800414 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
415 QLIST_INIT(&bs->op_blockers[i]);
416 }
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200417 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200418 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800419 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200420 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200421
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300422 qemu_co_queue_init(&bs->flush_queue);
423
Hanna Reitz0bc329f2021-08-12 10:41:44 +0200424 qemu_co_mutex_init(&bs->bsc_modify_lock);
425 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
426
Kevin Wolf0f122642018-03-28 18:29:18 +0200427 for (i = 0; i < bdrv_drain_all_count; i++) {
428 bdrv_drained_begin(bs);
429 }
430
Max Reitz2c1d04e2016-01-29 16:36:11 +0100431 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
432
bellardb3380822004-03-14 21:38:54 +0000433 return bs;
434}
435
Marc Mari88d88792016-08-12 09:27:03 -0400436static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000437{
438 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500439 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400440
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100441 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
442 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000443 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100444 }
bellardea2384d2004-08-01 21:59:26 +0000445 }
Marc Mari88d88792016-08-12 09:27:03 -0400446
bellardea2384d2004-08-01 21:59:26 +0000447 return NULL;
448}
449
Marc Mari88d88792016-08-12 09:27:03 -0400450BlockDriver *bdrv_find_format(const char *format_name)
451{
452 BlockDriver *drv1;
453 int i;
454
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500455 GLOBAL_STATE_CODE();
456
Marc Mari88d88792016-08-12 09:27:03 -0400457 drv1 = bdrv_do_find_format(format_name);
458 if (drv1) {
459 return drv1;
460 }
461
462 /* The driver isn't registered, maybe we need to load a module */
463 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
464 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200465 Error *local_err = NULL;
466 int rv = block_module_load(block_driver_modules[i].library_name,
467 &local_err);
468 if (rv > 0) {
469 return bdrv_do_find_format(format_name);
470 } else if (rv < 0) {
471 error_report_err(local_err);
472 }
Marc Mari88d88792016-08-12 09:27:03 -0400473 break;
474 }
475 }
Claudio Fontanac551fb02022-09-29 11:30:33 +0200476 return NULL;
Marc Mari88d88792016-08-12 09:27:03 -0400477}
478
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300479static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100480{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800481 static const char *whitelist_rw[] = {
482 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200483 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800484 };
485 static const char *whitelist_ro[] = {
486 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200487 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100488 };
489 const char **p;
490
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800491 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100492 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800493 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100494
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800495 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300496 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100497 return 1;
498 }
499 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800500 if (read_only) {
501 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300502 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800503 return 1;
504 }
505 }
506 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100507 return 0;
508}
509
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300510int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
511{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500512 GLOBAL_STATE_CODE();
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300513 return bdrv_format_is_whitelisted(drv->format_name, read_only);
514}
515
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000516bool bdrv_uses_whitelist(void)
517{
518 return use_bdrv_whitelist;
519}
520
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800521typedef struct CreateCo {
522 BlockDriver *drv;
523 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800524 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800525 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200526 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800527} CreateCo;
528
Emanuele Giuseppe Esposito741443e2022-11-28 09:23:36 -0500529int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename,
530 QemuOpts *opts, Error **errp)
Emanuele Giuseppe Esposito84bdf212022-11-28 09:23:30 -0500531{
532 int ret;
533 GLOBAL_STATE_CODE();
534 ERRP_GUARD();
535
536 if (!drv->bdrv_co_create_opts) {
537 error_setg(errp, "Driver '%s' does not support image creation",
538 drv->format_name);
539 return -ENOTSUP;
540 }
541
542 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp);
543 if (ret < 0 && !*errp) {
544 error_setg_errno(errp, -ret, "Could not create image");
545 }
546
547 return ret;
548}
549
Max Reitzfd171462020-01-22 17:45:29 +0100550/**
551 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
552 * least the given @minimum_size.
553 *
554 * On success, return @blk's actual length.
555 * Otherwise, return -errno.
556 */
557static int64_t create_file_fallback_truncate(BlockBackend *blk,
558 int64_t minimum_size, Error **errp)
559{
560 Error *local_err = NULL;
561 int64_t size;
562 int ret;
563
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500564 GLOBAL_STATE_CODE();
565
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200566 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
567 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100568 if (ret < 0 && ret != -ENOTSUP) {
569 error_propagate(errp, local_err);
570 return ret;
571 }
572
573 size = blk_getlength(blk);
574 if (size < 0) {
575 error_free(local_err);
576 error_setg_errno(errp, -size,
577 "Failed to inquire the new image file's length");
578 return size;
579 }
580
581 if (size < minimum_size) {
582 /* Need to grow the image, but we failed to do that */
583 error_propagate(errp, local_err);
584 return -ENOTSUP;
585 }
586
587 error_free(local_err);
588 local_err = NULL;
589
590 return size;
591}
592
593/**
594 * Helper function for bdrv_create_file_fallback(): Zero the first
595 * sector to remove any potentially pre-existing image header.
596 */
Paolo Bonzini881a4c52022-09-22 10:49:00 +0200597static int coroutine_fn
598create_file_fallback_zero_first_sector(BlockBackend *blk,
599 int64_t current_size,
600 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100601{
602 int64_t bytes_to_clear;
603 int ret;
604
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500605 GLOBAL_STATE_CODE();
606
Max Reitzfd171462020-01-22 17:45:29 +0100607 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
608 if (bytes_to_clear) {
Alberto Fariace47ff22022-10-13 14:37:02 +0200609 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
Max Reitzfd171462020-01-22 17:45:29 +0100610 if (ret < 0) {
611 error_setg_errno(errp, -ret,
612 "Failed to clear the new image's first sector");
613 return ret;
614 }
615 }
616
617 return 0;
618}
619
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200620/**
621 * Simple implementation of bdrv_co_create_opts for protocol drivers
622 * which only support creation via opening a file
623 * (usually existing raw storage device)
624 */
625int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
626 const char *filename,
627 QemuOpts *opts,
628 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100629{
630 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100631 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100632 int64_t size = 0;
633 char *buf = NULL;
634 PreallocMode prealloc;
635 Error *local_err = NULL;
636 int ret;
637
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -0500638 GLOBAL_STATE_CODE();
639
Max Reitzfd171462020-01-22 17:45:29 +0100640 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
641 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
642 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
643 PREALLOC_MODE_OFF, &local_err);
644 g_free(buf);
645 if (local_err) {
646 error_propagate(errp, local_err);
647 return -EINVAL;
648 }
649
650 if (prealloc != PREALLOC_MODE_OFF) {
651 error_setg(errp, "Unsupported preallocation mode '%s'",
652 PreallocMode_str(prealloc));
653 return -ENOTSUP;
654 }
655
Max Reitzeeea1fa2020-02-25 16:56:18 +0100656 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100657 qdict_put_str(options, "driver", drv->format_name);
658
659 blk = blk_new_open(filename, NULL, options,
660 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
661 if (!blk) {
662 error_prepend(errp, "Protocol driver '%s' does not support image "
663 "creation, and opening the image failed: ",
664 drv->format_name);
665 return -EINVAL;
666 }
667
668 size = create_file_fallback_truncate(blk, size, errp);
669 if (size < 0) {
670 ret = size;
671 goto out;
672 }
673
674 ret = create_file_fallback_zero_first_sector(blk, size, errp);
675 if (ret < 0) {
676 goto out;
677 }
678
679 ret = 0;
680out:
681 blk_unref(blk);
682 return ret;
683}
684
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500685int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts,
686 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200687{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100688 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200689 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100690 QDict *qdict;
691 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200692
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500693 GLOBAL_STATE_CODE();
694
Max Reitzb65a5e12015-02-05 13:58:12 -0500695 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200696 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000697 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200698 }
699
Stefano Garzarella729222a2021-03-08 17:12:32 +0100700 if (!drv->create_opts) {
701 error_setg(errp, "Driver '%s' does not support image creation",
702 drv->format_name);
703 return -ENOTSUP;
704 }
705
706 /*
707 * 'opts' contains a QemuOptsList with a combination of format and protocol
708 * default values.
709 *
710 * The format properly removes its options, but the default values remain
711 * in 'opts->list'. So if the protocol has options with the same name
712 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
713 * of the format, since for overlapping options, the format wins.
714 *
715 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
716 * only the set options, and then convert it back to QemuOpts, using the
717 * create_opts of the protocol. So the new QemuOpts, will contain only the
718 * protocol defaults.
719 */
720 qdict = qemu_opts_to_qdict(opts, NULL);
721 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
722 if (protocol_opts == NULL) {
723 ret = -EINVAL;
724 goto out;
725 }
726
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500727 ret = bdrv_co_create(drv, filename, protocol_opts, errp);
Stefano Garzarella729222a2021-03-08 17:12:32 +0100728out:
729 qemu_opts_del(protocol_opts);
730 qobject_unref(qdict);
731 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200732}
733
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300734int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
735{
736 Error *local_err = NULL;
737 int ret;
738
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500739 IO_CODE();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300740 assert(bs != NULL);
741
742 if (!bs->drv) {
743 error_setg(errp, "Block node '%s' is not opened", bs->filename);
744 return -ENOMEDIUM;
745 }
746
747 if (!bs->drv->bdrv_co_delete_file) {
748 error_setg(errp, "Driver '%s' does not support image deletion",
749 bs->drv->format_name);
750 return -ENOTSUP;
751 }
752
753 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
754 if (ret < 0) {
755 error_propagate(errp, local_err);
756 }
757
758 return ret;
759}
760
Maxim Levitskya890f082020-12-17 19:09:03 +0200761void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
762{
763 Error *local_err = NULL;
764 int ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500765 IO_CODE();
Maxim Levitskya890f082020-12-17 19:09:03 +0200766
767 if (!bs) {
768 return;
769 }
770
771 ret = bdrv_co_delete_file(bs, &local_err);
772 /*
773 * ENOTSUP will happen if the block driver doesn't support
774 * the 'bdrv_co_delete_file' interface. This is a predictable
775 * scenario and shouldn't be reported back to the user.
776 */
777 if (ret == -ENOTSUP) {
778 error_free(local_err);
779 } else if (ret < 0) {
780 error_report_err(local_err);
781 }
782}
783
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100784/**
785 * Try to get @bs's logical and physical block size.
786 * On success, store them in @bsz struct and return 0.
787 * On failure return -errno.
788 * @bs must not be empty.
789 */
790int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
791{
792 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200793 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500794 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100795
796 if (drv && drv->bdrv_probe_blocksizes) {
797 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200798 } else if (filtered) {
799 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100800 }
801
802 return -ENOTSUP;
803}
804
805/**
806 * Try to get @bs's geometry (cyls, heads, sectors).
807 * On success, store them in @geo struct and return 0.
808 * On failure return -errno.
809 * @bs must not be empty.
810 */
811int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
812{
813 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200814 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500815 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100816
817 if (drv && drv->bdrv_probe_geometry) {
818 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200819 } else if (filtered) {
820 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100821 }
822
823 return -ENOTSUP;
824}
825
Jim Meyeringeba25052012-05-28 09:27:54 +0200826/*
827 * Create a uniquely-named empty temporary file.
Bin Meng69fbfff2022-10-10 12:04:31 +0800828 * Return the actual file name used upon success, otherwise NULL.
829 * This string should be freed with g_free() when not needed any longer.
830 *
831 * Note: creating a temporary file for the caller to (re)open is
832 * inherently racy. Use g_file_open_tmp() instead whenever practical.
Jim Meyeringeba25052012-05-28 09:27:54 +0200833 */
Bin Meng69fbfff2022-10-10 12:04:31 +0800834char *create_tmp_file(Error **errp)
Jim Meyeringeba25052012-05-28 09:27:54 +0200835{
bellardea2384d2004-08-01 21:59:26 +0000836 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000837 const char *tmpdir;
Bin Meng69fbfff2022-10-10 12:04:31 +0800838 g_autofree char *filename = NULL;
839
840 tmpdir = g_get_tmp_dir();
841#ifndef _WIN32
842 /*
843 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
844 *
845 * This function is used to create temporary disk images (like -snapshot),
846 * so the files can become very large. /tmp is often a tmpfs where as
847 * /var/tmp is usually on a disk, so more appropriate for disk images.
848 */
849 if (!g_strcmp0(tmpdir, "/tmp")) {
Amit Shah69bef792014-02-26 15:12:37 +0530850 tmpdir = "/var/tmp";
851 }
bellardd5249392004-08-03 21:14:23 +0000852#endif
Bin Meng69fbfff2022-10-10 12:04:31 +0800853
854 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir);
855 fd = g_mkstemp(filename);
bellardea2384d2004-08-01 21:59:26 +0000856 if (fd < 0) {
Bin Meng69fbfff2022-10-10 12:04:31 +0800857 error_setg_errno(errp, errno, "Could not open temporary file '%s'",
858 filename);
859 return NULL;
bellardea2384d2004-08-01 21:59:26 +0000860 }
Bin Meng6b6471e2022-10-10 12:04:30 +0800861 close(fd);
Bin Meng69fbfff2022-10-10 12:04:31 +0800862
863 return g_steal_pointer(&filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200864}
bellardea2384d2004-08-01 21:59:26 +0000865
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200866/*
867 * Detect host devices. By convention, /dev/cdrom[N] is always
868 * recognized as a host CDROM.
869 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200870static BlockDriver *find_hdev_driver(const char *filename)
871{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200872 int score_max = 0, score;
873 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500874 GLOBAL_STATE_CODE();
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200875
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100876 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200877 if (d->bdrv_probe_device) {
878 score = d->bdrv_probe_device(filename);
879 if (score > score_max) {
880 score_max = score;
881 drv = d;
882 }
883 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200884 }
885
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200886 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200887}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200888
Marc Mari88d88792016-08-12 09:27:03 -0400889static BlockDriver *bdrv_do_find_protocol(const char *protocol)
890{
891 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500892 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400893
894 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
895 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
896 return drv1;
897 }
898 }
899
900 return NULL;
901}
902
Kevin Wolf98289622013-07-10 15:47:39 +0200903BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500904 bool allow_protocol_prefix,
905 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200906{
907 BlockDriver *drv1;
908 char protocol[128];
909 int len;
910 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400911 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200912
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500913 GLOBAL_STATE_CODE();
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200914 /* TODO Drivers without bdrv_file_open must be specified explicitly */
915
Christoph Hellwig39508e72010-06-23 12:25:17 +0200916 /*
917 * XXX(hch): we really should not let host device detection
918 * override an explicit protocol specification, but moving this
919 * later breaks access to device names with colons in them.
920 * Thanks to the brain-dead persistent naming schemes on udev-
921 * based Linux systems those actually are quite common.
922 */
923 drv1 = find_hdev_driver(filename);
924 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200925 return drv1;
926 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200927
Kevin Wolf98289622013-07-10 15:47:39 +0200928 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100929 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200930 }
Kevin Wolf98289622013-07-10 15:47:39 +0200931
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000932 p = strchr(filename, ':');
933 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200934 len = p - filename;
935 if (len > sizeof(protocol) - 1)
936 len = sizeof(protocol) - 1;
937 memcpy(protocol, filename, len);
938 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400939
940 drv1 = bdrv_do_find_protocol(protocol);
941 if (drv1) {
942 return drv1;
943 }
944
945 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
946 if (block_driver_modules[i].protocol_name &&
947 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200948 int rv = block_module_load(block_driver_modules[i].library_name, errp);
949 if (rv > 0) {
950 drv1 = bdrv_do_find_protocol(protocol);
951 } else if (rv < 0) {
952 return NULL;
953 }
Marc Mari88d88792016-08-12 09:27:03 -0400954 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200955 }
956 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500957
Marc Mari88d88792016-08-12 09:27:03 -0400958 if (!drv1) {
959 error_setg(errp, "Unknown protocol '%s'", protocol);
960 }
961 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200962}
963
Markus Armbrusterc6684242014-11-20 16:27:10 +0100964/*
965 * Guess image format by probing its contents.
966 * This is not a good idea when your image is raw (CVE-2008-2004), but
967 * we do it anyway for backward compatibility.
968 *
969 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100970 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
971 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100972 * @filename is its filename.
973 *
974 * For all block drivers, call the bdrv_probe() method to get its
975 * probing score.
976 * Return the first block driver with the highest probing score.
977 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100978BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
979 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100980{
981 int score_max = 0, score;
982 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -0500983 IO_CODE();
Markus Armbrusterc6684242014-11-20 16:27:10 +0100984
985 QLIST_FOREACH(d, &bdrv_drivers, list) {
986 if (d->bdrv_probe) {
987 score = d->bdrv_probe(buf, buf_size, filename);
988 if (score > score_max) {
989 score_max = score;
990 drv = d;
991 }
992 }
993 }
994
995 return drv;
996}
997
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100998static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200999 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +00001000{
Markus Armbrusterc6684242014-11-20 16:27:10 +01001001 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +01001002 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +01001003 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001004
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001005 GLOBAL_STATE_CODE();
1006
Kevin Wolf08a00552010-06-01 18:37:31 +02001007 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001008 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +01001009 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +02001010 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -07001011 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001012
Alberto Fariaa9262f52022-07-05 17:15:11 +01001013 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
bellard83f64092006-08-01 16:21:11 +00001014 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001015 error_setg_errno(errp, -ret, "Could not read image for determining its "
1016 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +02001017 *pdrv = NULL;
1018 return ret;
bellard83f64092006-08-01 16:21:11 +00001019 }
1020
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001021 drv = bdrv_probe_all(buf, sizeof(buf), filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001022 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001023 error_setg(errp, "Could not determine image format: No compatible "
1024 "driver found");
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001025 *pdrv = NULL;
1026 return -ENOENT;
Stefan Weilc98ac352010-07-21 21:51:51 +02001027 }
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001028
Stefan Weilc98ac352010-07-21 21:51:51 +02001029 *pdrv = drv;
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001030 return 0;
bellardea2384d2004-08-01 21:59:26 +00001031}
1032
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001033/**
1034 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001035 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001036 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +02001037int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001038{
1039 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05001040 IO_CODE();
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001041
Max Reitzd470ad42017-11-10 21:31:09 +01001042 if (!drv) {
1043 return -ENOMEDIUM;
1044 }
1045
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001046 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001047 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001048 return 0;
1049
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001050 /* query actual device if possible, otherwise just trust the hint */
1051 if (drv->bdrv_getlength) {
1052 int64_t length = drv->bdrv_getlength(bs);
1053 if (length < 0) {
1054 return length;
1055 }
Fam Zheng7e382002013-11-06 19:48:06 +08001056 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001057 }
1058
1059 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001060
1061 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1062 return -EFBIG;
1063 }
1064
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001065 return 0;
1066}
1067
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001068/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001069 * Combines a QDict of new block driver @options with any missing options taken
1070 * from @old_options, so that leaving out an option defaults to its old value.
1071 */
1072static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1073 QDict *old_options)
1074{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001075 GLOBAL_STATE_CODE();
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001076 if (bs->drv && bs->drv->bdrv_join_options) {
1077 bs->drv->bdrv_join_options(options, old_options);
1078 } else {
1079 qdict_join(options, old_options, false);
1080 }
1081}
1082
Alberto Garcia543770b2018-09-06 12:37:09 +03001083static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1084 int open_flags,
1085 Error **errp)
1086{
1087 Error *local_err = NULL;
1088 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1089 BlockdevDetectZeroesOptions detect_zeroes =
1090 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1091 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001092 GLOBAL_STATE_CODE();
Alberto Garcia543770b2018-09-06 12:37:09 +03001093 g_free(value);
1094 if (local_err) {
1095 error_propagate(errp, local_err);
1096 return detect_zeroes;
1097 }
1098
1099 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1100 !(open_flags & BDRV_O_UNMAP))
1101 {
1102 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1103 "without setting discard operation to unmap");
1104 }
1105
1106 return detect_zeroes;
1107}
1108
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001109/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001110 * Set open flags for aio engine
1111 *
1112 * Return 0 on success, -1 if the engine specified is invalid
1113 */
1114int bdrv_parse_aio(const char *mode, int *flags)
1115{
1116 if (!strcmp(mode, "threads")) {
1117 /* do nothing, default */
1118 } else if (!strcmp(mode, "native")) {
1119 *flags |= BDRV_O_NATIVE_AIO;
1120#ifdef CONFIG_LINUX_IO_URING
1121 } else if (!strcmp(mode, "io_uring")) {
1122 *flags |= BDRV_O_IO_URING;
1123#endif
1124 } else {
1125 return -1;
1126 }
1127
1128 return 0;
1129}
1130
1131/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001132 * Set open flags for a given discard mode
1133 *
1134 * Return 0 on success, -1 if the discard mode was invalid.
1135 */
1136int bdrv_parse_discard_flags(const char *mode, int *flags)
1137{
1138 *flags &= ~BDRV_O_UNMAP;
1139
1140 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1141 /* do nothing */
1142 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1143 *flags |= BDRV_O_UNMAP;
1144 } else {
1145 return -1;
1146 }
1147
1148 return 0;
1149}
1150
1151/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001152 * Set open flags for a given cache mode
1153 *
1154 * Return 0 on success, -1 if the cache mode was invalid.
1155 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001156int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001157{
1158 *flags &= ~BDRV_O_CACHE_MASK;
1159
1160 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001161 *writethrough = false;
1162 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001163 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001164 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001165 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001166 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001167 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001168 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001169 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001170 *flags |= BDRV_O_NO_FLUSH;
1171 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001172 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001173 } else {
1174 return -1;
1175 }
1176
1177 return 0;
1178}
1179
Kevin Wolfb5411552017-01-17 15:56:16 +01001180static char *bdrv_child_get_parent_desc(BdrvChild *c)
1181{
1182 BlockDriverState *parent = c->opaque;
Vladimir Sementsov-Ogievskiy2c0a3ac2021-06-01 10:52:15 +03001183 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
Kevin Wolfb5411552017-01-17 15:56:16 +01001184}
1185
Kevin Wolf20018e12016-05-23 18:46:59 +02001186static void bdrv_child_cb_drained_begin(BdrvChild *child)
1187{
1188 BlockDriverState *bs = child->opaque;
Kevin Wolfa82a3bd2022-11-18 18:41:07 +01001189 bdrv_do_drained_begin_quiesce(bs, NULL);
Kevin Wolf20018e12016-05-23 18:46:59 +02001190}
1191
Kevin Wolf89bd0302018-03-22 14:11:20 +01001192static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1193{
1194 BlockDriverState *bs = child->opaque;
Kevin Wolf299403a2022-11-18 18:41:05 +01001195 return bdrv_drain_poll(bs, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001196}
1197
Kevin Wolf2f65df62022-11-18 18:40:59 +01001198static void bdrv_child_cb_drained_end(BdrvChild *child)
Kevin Wolf20018e12016-05-23 18:46:59 +02001199{
1200 BlockDriverState *bs = child->opaque;
Kevin Wolf2f65df62022-11-18 18:40:59 +01001201 bdrv_drained_end(bs);
Kevin Wolf20018e12016-05-23 18:46:59 +02001202}
1203
Kevin Wolf38701b62017-05-04 18:52:39 +02001204static int bdrv_child_cb_inactivate(BdrvChild *child)
1205{
1206 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001207 GLOBAL_STATE_CODE();
Kevin Wolf38701b62017-05-04 18:52:39 +02001208 assert(bs->open_flags & BDRV_O_INACTIVE);
1209 return 0;
1210}
1211
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001212static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx,
1213 GHashTable *visited, Transaction *tran,
1214 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02001215{
1216 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001217 return bdrv_change_aio_context(bs, ctx, visited, tran, errp);
Kevin Wolf53a7d042019-05-06 19:17:59 +02001218}
1219
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001220/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001221 * Returns the options and flags that a temporary snapshot should get, based on
1222 * the originally requested flags (the originally requested image will have
1223 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001224 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001225static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1226 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001227{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001228 GLOBAL_STATE_CODE();
Kevin Wolf73176be2016-03-07 13:02:15 +01001229 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1230
1231 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001232 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1233 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001234
Kevin Wolf3f486862019-04-04 17:04:43 +02001235 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001236 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001237 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001238
Kevin Wolf41869042016-06-16 12:59:30 +02001239 /* aio=native doesn't work for cache.direct=off, so disable it for the
1240 * temporary snapshot */
1241 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001242}
1243
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001244static void bdrv_backing_attach(BdrvChild *c)
1245{
1246 BlockDriverState *parent = c->opaque;
1247 BlockDriverState *backing_hd = c->bs;
1248
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001249 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001250 assert(!parent->backing_blocker);
1251 error_setg(&parent->backing_blocker,
1252 "node is used as backing hd of '%s'",
1253 bdrv_get_device_or_node_name(parent));
1254
Max Reitzf30c66b2019-02-01 20:29:05 +01001255 bdrv_refresh_filename(backing_hd);
1256
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001257 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001258
1259 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1260 /* Otherwise we won't be able to commit or stream */
1261 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1262 parent->backing_blocker);
1263 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1264 parent->backing_blocker);
1265 /*
1266 * We do backup in 3 ways:
1267 * 1. drive backup
1268 * The target bs is new opened, and the source is top BDS
1269 * 2. blockdev backup
1270 * Both the source and the target are top BDSes.
1271 * 3. internal backup(used for block replication)
1272 * Both the source and the target are backing file
1273 *
1274 * In case 1 and 2, neither the source nor the target is the backing file.
1275 * In case 3, we will block the top BDS, so there is only one block job
1276 * for the top BDS and its backing chain.
1277 */
1278 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1279 parent->backing_blocker);
1280 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1281 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001282}
Kevin Wolfd736f112017-12-18 16:05:48 +01001283
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001284static void bdrv_backing_detach(BdrvChild *c)
1285{
1286 BlockDriverState *parent = c->opaque;
1287
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001288 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001289 assert(parent->backing_blocker);
1290 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1291 error_free(parent->backing_blocker);
1292 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001293}
Kevin Wolfd736f112017-12-18 16:05:48 +01001294
Kevin Wolf6858eba2017-06-29 19:32:21 +02001295static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1296 const char *filename, Error **errp)
1297{
1298 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001299 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001300 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001301 GLOBAL_STATE_CODE();
Kevin Wolf6858eba2017-06-29 19:32:21 +02001302
Alberto Garciae94d3db2018-11-12 16:00:34 +02001303 if (read_only) {
1304 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001305 if (ret < 0) {
1306 return ret;
1307 }
1308 }
1309
Kevin Wolf6858eba2017-06-29 19:32:21 +02001310 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001311 base->drv ? base->drv->format_name : "",
1312 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001313 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001314 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001315 }
1316
Alberto Garciae94d3db2018-11-12 16:00:34 +02001317 if (read_only) {
1318 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001319 }
1320
Kevin Wolf6858eba2017-06-29 19:32:21 +02001321 return ret;
1322}
1323
Max Reitzfae8bd32020-05-13 13:05:20 +02001324/*
1325 * Returns the options and flags that a generic child of a BDS should
1326 * get, based on the given options and flags for the parent BDS.
1327 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001328static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1329 int *child_flags, QDict *child_options,
1330 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001331{
1332 int flags = parent_flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001333 GLOBAL_STATE_CODE();
Max Reitzfae8bd32020-05-13 13:05:20 +02001334
1335 /*
1336 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1337 * Generally, the question to answer is: Should this child be
1338 * format-probed by default?
1339 */
1340
1341 /*
1342 * Pure and non-filtered data children of non-format nodes should
1343 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1344 * set). This only affects a very limited set of drivers (namely
1345 * quorum and blkverify when this comment was written).
1346 * Force-clear BDRV_O_PROTOCOL then.
1347 */
1348 if (!parent_is_format &&
1349 (role & BDRV_CHILD_DATA) &&
1350 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1351 {
1352 flags &= ~BDRV_O_PROTOCOL;
1353 }
1354
1355 /*
1356 * All children of format nodes (except for COW children) and all
1357 * metadata children in general should never be format-probed.
1358 * Force-set BDRV_O_PROTOCOL then.
1359 */
1360 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1361 (role & BDRV_CHILD_METADATA))
1362 {
1363 flags |= BDRV_O_PROTOCOL;
1364 }
1365
1366 /*
1367 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1368 * the parent.
1369 */
1370 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1371 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1372 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1373
1374 if (role & BDRV_CHILD_COW) {
1375 /* backing files are opened read-only by default */
1376 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1377 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1378 } else {
1379 /* Inherit the read-only option from the parent if it's not set */
1380 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1381 qdict_copy_default(child_options, parent_options,
1382 BDRV_OPT_AUTO_READ_ONLY);
1383 }
1384
1385 /*
1386 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1387 * can default to enable it on lower layers regardless of the
1388 * parent option.
1389 */
1390 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1391
1392 /* Clear flags that only apply to the top layer */
1393 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1394
1395 if (role & BDRV_CHILD_METADATA) {
1396 flags &= ~BDRV_O_NO_IO;
1397 }
1398 if (role & BDRV_CHILD_COW) {
1399 flags &= ~BDRV_O_TEMPORARY;
1400 }
1401
1402 *child_flags = flags;
1403}
1404
Max Reitzca2f1232020-05-13 13:05:22 +02001405static void bdrv_child_cb_attach(BdrvChild *child)
1406{
1407 BlockDriverState *bs = child->opaque;
1408
Emanuele Giuseppe Esposito696bf4c2022-03-03 10:15:59 -05001409 assert_bdrv_graph_writable(bs);
Hanna Reitza2253692021-11-15 15:53:58 +01001410 QLIST_INSERT_HEAD(&bs->children, child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001411 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) {
1412 /*
1413 * Here we handle filters and block/raw-format.c when it behave like
1414 * filter. They generally have a single PRIMARY child, which is also the
1415 * FILTERED child, and that they may have multiple more children, which
1416 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1417 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1418 * into bs->backing on exceptional cases; and bs->backing will be
1419 * nothing else.
1420 */
1421 assert(!(child->role & BDRV_CHILD_COW));
1422 if (child->role & BDRV_CHILD_PRIMARY) {
1423 assert(child->role & BDRV_CHILD_FILTERED);
1424 assert(!bs->backing);
1425 assert(!bs->file);
Hanna Reitza2253692021-11-15 15:53:58 +01001426
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001427 if (bs->drv->filtered_child_is_backing) {
1428 bs->backing = child;
1429 } else {
1430 bs->file = child;
1431 }
1432 } else {
1433 assert(!(child->role & BDRV_CHILD_FILTERED));
1434 }
1435 } else if (child->role & BDRV_CHILD_COW) {
1436 assert(bs->drv->supports_backing);
1437 assert(!(child->role & BDRV_CHILD_PRIMARY));
1438 assert(!bs->backing);
1439 bs->backing = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001440 bdrv_backing_attach(child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001441 } else if (child->role & BDRV_CHILD_PRIMARY) {
1442 assert(!bs->file);
1443 bs->file = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001444 }
Max Reitzca2f1232020-05-13 13:05:22 +02001445}
1446
Max Reitz48e08282020-05-13 13:05:23 +02001447static void bdrv_child_cb_detach(BdrvChild *child)
1448{
1449 BlockDriverState *bs = child->opaque;
1450
1451 if (child->role & BDRV_CHILD_COW) {
1452 bdrv_backing_detach(child);
1453 }
1454
Emanuele Giuseppe Esposito696bf4c2022-03-03 10:15:59 -05001455 assert_bdrv_graph_writable(bs);
Hanna Reitza2253692021-11-15 15:53:58 +01001456 QLIST_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001457 if (child == bs->backing) {
1458 assert(child != bs->file);
1459 bs->backing = NULL;
1460 } else if (child == bs->file) {
1461 bs->file = NULL;
1462 }
Max Reitz48e08282020-05-13 13:05:23 +02001463}
1464
Max Reitz43483552020-05-13 13:05:24 +02001465static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1466 const char *filename, Error **errp)
1467{
1468 if (c->role & BDRV_CHILD_COW) {
1469 return bdrv_backing_update_filename(c, base, filename, errp);
1470 }
1471 return 0;
1472}
1473
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001474AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001475{
1476 BlockDriverState *bs = c->opaque;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05001477 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001478
1479 return bdrv_get_aio_context(bs);
1480}
1481
Max Reitz43483552020-05-13 13:05:24 +02001482const BdrvChildClass child_of_bds = {
1483 .parent_is_bds = true,
1484 .get_parent_desc = bdrv_child_get_parent_desc,
1485 .inherit_options = bdrv_inherited_options,
1486 .drained_begin = bdrv_child_cb_drained_begin,
1487 .drained_poll = bdrv_child_cb_drained_poll,
1488 .drained_end = bdrv_child_cb_drained_end,
1489 .attach = bdrv_child_cb_attach,
1490 .detach = bdrv_child_cb_detach,
1491 .inactivate = bdrv_child_cb_inactivate,
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001492 .change_aio_ctx = bdrv_child_cb_change_aio_ctx,
Max Reitz43483552020-05-13 13:05:24 +02001493 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001494 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001495};
1496
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001497AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1498{
Hanna Reitzd5f8d792022-11-07 16:13:19 +01001499 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001500 return c->klass->get_parent_aio_context(c);
1501}
1502
Kevin Wolf7b272452012-11-12 17:05:39 +01001503static int bdrv_open_flags(BlockDriverState *bs, int flags)
1504{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001505 int open_flags = flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001506 GLOBAL_STATE_CODE();
Kevin Wolf7b272452012-11-12 17:05:39 +01001507
1508 /*
1509 * Clear flags that are internal to the block layer before opening the
1510 * image.
1511 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001512 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001513
Kevin Wolf7b272452012-11-12 17:05:39 +01001514 return open_flags;
1515}
1516
Kevin Wolf91a097e2015-05-08 17:49:53 +02001517static void update_flags_from_options(int *flags, QemuOpts *opts)
1518{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001519 GLOBAL_STATE_CODE();
1520
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001521 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001522
Alberto Garcia57f9db92018-09-06 12:37:06 +03001523 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001524 *flags |= BDRV_O_NO_FLUSH;
1525 }
1526
Alberto Garcia57f9db92018-09-06 12:37:06 +03001527 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001528 *flags |= BDRV_O_NOCACHE;
1529 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001530
Alberto Garcia57f9db92018-09-06 12:37:06 +03001531 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001532 *flags |= BDRV_O_RDWR;
1533 }
1534
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001535 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1536 *flags |= BDRV_O_AUTO_RDONLY;
1537 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001538}
1539
1540static void update_options_from_flags(QDict *options, int flags)
1541{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001542 GLOBAL_STATE_CODE();
Kevin Wolf91a097e2015-05-08 17:49:53 +02001543 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001544 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001545 }
1546 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001547 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1548 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001549 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001550 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001551 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001552 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001553 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1554 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1555 flags & BDRV_O_AUTO_RDONLY);
1556 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001557}
1558
Kevin Wolf636ea372014-01-24 14:11:52 +01001559static void bdrv_assign_node_name(BlockDriverState *bs,
1560 const char *node_name,
1561 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001562{
Jeff Cody15489c72015-10-12 19:36:50 -04001563 char *gen_node_name = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001564 GLOBAL_STATE_CODE();
Benoît Canet6913c0c2014-01-23 21:31:33 +01001565
Jeff Cody15489c72015-10-12 19:36:50 -04001566 if (!node_name) {
1567 node_name = gen_node_name = id_generate(ID_BLOCK);
1568 } else if (!id_wellformed(node_name)) {
1569 /*
1570 * Check for empty string or invalid characters, but not if it is
1571 * generated (generated names use characters not available to the user)
1572 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001573 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001574 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001575 }
1576
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001577 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001578 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001579 error_setg(errp, "node-name=%s is conflicting with a device id",
1580 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001581 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001582 }
1583
Benoît Canet6913c0c2014-01-23 21:31:33 +01001584 /* takes care of avoiding duplicates node names */
1585 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001586 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001587 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001588 }
1589
Kevin Wolf824808d2018-07-04 13:28:29 +02001590 /* Make sure that the node name isn't truncated */
1591 if (strlen(node_name) >= sizeof(bs->node_name)) {
1592 error_setg(errp, "Node name too long");
1593 goto out;
1594 }
1595
Benoît Canet6913c0c2014-01-23 21:31:33 +01001596 /* copy node name into the bs and insert it into the graph list */
1597 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1598 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001599out:
1600 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001601}
1602
Kevin Wolf01a56502017-01-18 15:51:56 +01001603static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1604 const char *node_name, QDict *options,
1605 int open_flags, Error **errp)
1606{
1607 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001608 int i, ret;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001609 GLOBAL_STATE_CODE();
Kevin Wolf01a56502017-01-18 15:51:56 +01001610
1611 bdrv_assign_node_name(bs, node_name, &local_err);
1612 if (local_err) {
1613 error_propagate(errp, local_err);
1614 return -EINVAL;
1615 }
1616
1617 bs->drv = drv;
1618 bs->opaque = g_malloc0(drv->instance_size);
1619
1620 if (drv->bdrv_file_open) {
1621 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1622 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001623 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001624 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001625 } else {
1626 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001627 }
1628
1629 if (ret < 0) {
1630 if (local_err) {
1631 error_propagate(errp, local_err);
1632 } else if (bs->filename[0]) {
1633 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1634 } else {
1635 error_setg_errno(errp, -ret, "Could not open image");
1636 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001637 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001638 }
1639
Stefan Hajnoczie8b65352022-10-13 14:59:01 -04001640 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK));
1641 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK));
1642
1643 /*
1644 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1645 * drivers that pass read/write requests through to a child the trouble of
1646 * declaring support explicitly.
1647 *
1648 * Drivers must not propagate this flag accidentally when they initiate I/O
1649 * to a bounce buffer. That case should be rare though.
1650 */
1651 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF;
1652 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF;
1653
Kevin Wolf01a56502017-01-18 15:51:56 +01001654 ret = refresh_total_sectors(bs, bs->total_sectors);
1655 if (ret < 0) {
1656 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001657 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001658 }
1659
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001660 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolf01a56502017-01-18 15:51:56 +01001661 if (local_err) {
1662 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001663 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001664 }
1665
1666 assert(bdrv_opt_mem_align(bs) != 0);
1667 assert(bdrv_min_mem_align(bs) != 0);
1668 assert(is_power_of_2(bs->bl.request_alignment));
1669
Kevin Wolf0f122642018-03-28 18:29:18 +02001670 for (i = 0; i < bs->quiesce_counter; i++) {
Kevin Wolf5e8ac212022-11-18 18:40:58 +01001671 if (drv->bdrv_drain_begin) {
1672 drv->bdrv_drain_begin(bs);
Kevin Wolf0f122642018-03-28 18:29:18 +02001673 }
1674 }
1675
Kevin Wolf01a56502017-01-18 15:51:56 +01001676 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001677open_failed:
1678 bs->drv = NULL;
1679 if (bs->file != NULL) {
1680 bdrv_unref_child(bs, bs->file);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001681 assert(!bs->file);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001682 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001683 g_free(bs->opaque);
1684 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001685 return ret;
1686}
1687
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001688/*
1689 * Create and open a block node.
1690 *
1691 * @options is a QDict of options to pass to the block drivers, or NULL for an
1692 * empty set of options. The reference to the QDict belongs to the block layer
1693 * after the call (even on failure), so if the caller intends to reuse the
1694 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1695 */
1696BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1697 const char *node_name,
1698 QDict *options, int flags,
1699 Error **errp)
Kevin Wolf680c7f92017-01-18 17:16:41 +01001700{
1701 BlockDriverState *bs;
1702 int ret;
1703
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001704 GLOBAL_STATE_CODE();
1705
Kevin Wolf680c7f92017-01-18 17:16:41 +01001706 bs = bdrv_new();
1707 bs->open_flags = flags;
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001708 bs->options = options ?: qdict_new();
1709 bs->explicit_options = qdict_clone_shallow(bs->options);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001710 bs->opaque = NULL;
1711
1712 update_options_from_flags(bs->options, flags);
1713
1714 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1715 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001716 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001717 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001718 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001719 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001720 bdrv_unref(bs);
1721 return NULL;
1722 }
1723
1724 return bs;
1725}
1726
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001727/* Create and open a block node. */
1728BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1729 int flags, Error **errp)
1730{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001731 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001732 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1733}
1734
Kevin Wolfc5f30142016-10-06 11:33:17 +02001735QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001736 .name = "bdrv_common",
1737 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1738 .desc = {
1739 {
1740 .name = "node-name",
1741 .type = QEMU_OPT_STRING,
1742 .help = "Node name of the block device node",
1743 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001744 {
1745 .name = "driver",
1746 .type = QEMU_OPT_STRING,
1747 .help = "Block driver to use for the node",
1748 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001749 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001750 .name = BDRV_OPT_CACHE_DIRECT,
1751 .type = QEMU_OPT_BOOL,
1752 .help = "Bypass software writeback cache on the host",
1753 },
1754 {
1755 .name = BDRV_OPT_CACHE_NO_FLUSH,
1756 .type = QEMU_OPT_BOOL,
1757 .help = "Ignore flush requests",
1758 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001759 {
1760 .name = BDRV_OPT_READ_ONLY,
1761 .type = QEMU_OPT_BOOL,
1762 .help = "Node is opened in read-only mode",
1763 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001764 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001765 .name = BDRV_OPT_AUTO_READ_ONLY,
1766 .type = QEMU_OPT_BOOL,
1767 .help = "Node can become read-only if opening read-write fails",
1768 },
1769 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001770 .name = "detect-zeroes",
1771 .type = QEMU_OPT_STRING,
1772 .help = "try to optimize zero writes (off, on, unmap)",
1773 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001774 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001775 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001776 .type = QEMU_OPT_STRING,
1777 .help = "discard operation (ignore/off, unmap/on)",
1778 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001779 {
1780 .name = BDRV_OPT_FORCE_SHARE,
1781 .type = QEMU_OPT_BOOL,
1782 .help = "always accept other writers (default: off)",
1783 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001784 { /* end of list */ }
1785 },
1786};
1787
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001788QemuOptsList bdrv_create_opts_simple = {
1789 .name = "simple-create-opts",
1790 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001791 .desc = {
1792 {
1793 .name = BLOCK_OPT_SIZE,
1794 .type = QEMU_OPT_SIZE,
1795 .help = "Virtual disk size"
1796 },
1797 {
1798 .name = BLOCK_OPT_PREALLOC,
1799 .type = QEMU_OPT_STRING,
1800 .help = "Preallocation mode (allowed values: off)"
1801 },
1802 { /* end of list */ }
1803 }
1804};
1805
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001806/*
Kevin Wolf57915332010-04-14 15:24:50 +02001807 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001808 *
1809 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001810 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001811static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001812 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001813{
1814 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001815 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001816 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001817 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001818 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001819 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001820 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001821 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001822 bool ro;
Kevin Wolf57915332010-04-14 15:24:50 +02001823
Paolo Bonzini64058752012-05-08 16:51:49 +02001824 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001825 assert(options != NULL && bs->options != options);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001826 GLOBAL_STATE_CODE();
Kevin Wolf57915332010-04-14 15:24:50 +02001827
Kevin Wolf62392eb2015-04-24 16:38:02 +02001828 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001829 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001830 ret = -EINVAL;
1831 goto fail_opts;
1832 }
1833
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001834 update_flags_from_options(&bs->open_flags, opts);
1835
Kevin Wolf62392eb2015-04-24 16:38:02 +02001836 driver_name = qemu_opt_get(opts, "driver");
1837 drv = bdrv_find_format(driver_name);
1838 assert(drv != NULL);
1839
Fam Zheng5a9347c2017-05-03 00:35:37 +08001840 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1841
1842 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1843 error_setg(errp,
1844 BDRV_OPT_FORCE_SHARE
1845 "=on can only be used with read-only images");
1846 ret = -EINVAL;
1847 goto fail_opts;
1848 }
1849
Kevin Wolf45673672013-04-22 17:48:40 +02001850 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001851 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001852 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001853 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001854 /*
1855 * Caution: while qdict_get_try_str() is fine, getting
1856 * non-string types would require more care. When @options
1857 * come from -blockdev or blockdev_add, its members are typed
1858 * according to the QAPI schema, but when they come from
1859 * -drive, they're all QString.
1860 */
Kevin Wolf45673672013-04-22 17:48:40 +02001861 filename = qdict_get_try_str(options, "filename");
1862 }
1863
Max Reitz4a008242017-04-13 18:06:24 +02001864 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001865 error_setg(errp, "The '%s' block driver requires a file name",
1866 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001867 ret = -EINVAL;
1868 goto fail_opts;
1869 }
1870
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001871 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1872 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001873
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001874 ro = bdrv_is_read_only(bs);
1875
1876 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1877 if (!ro && bdrv_is_whitelisted(drv, true)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001878 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1879 } else {
1880 ret = -ENOTSUP;
1881 }
1882 if (ret < 0) {
1883 error_setg(errp,
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001884 !ro && bdrv_is_whitelisted(drv, true)
Kevin Wolf8be25de2019-01-22 13:15:31 +01001885 ? "Driver '%s' can only be used for read-only devices"
1886 : "Driver '%s' is not whitelisted",
1887 drv->format_name);
1888 goto fail_opts;
1889 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001890 }
Kevin Wolf57915332010-04-14 15:24:50 +02001891
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001892 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001893 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001894
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001895 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001896 if (!ro) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001897 bdrv_enable_copy_on_read(bs);
1898 } else {
1899 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001900 ret = -EINVAL;
1901 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001902 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001903 }
1904
Alberto Garcia415bbca2018-10-03 13:23:13 +03001905 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001906 if (discard != NULL) {
1907 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1908 error_setg(errp, "Invalid discard option");
1909 ret = -EINVAL;
1910 goto fail_opts;
1911 }
1912 }
1913
Alberto Garcia543770b2018-09-06 12:37:09 +03001914 bs->detect_zeroes =
1915 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1916 if (local_err) {
1917 error_propagate(errp, local_err);
1918 ret = -EINVAL;
1919 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001920 }
1921
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001922 if (filename != NULL) {
1923 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1924 } else {
1925 bs->filename[0] = '\0';
1926 }
Max Reitz91af7012014-07-18 20:24:56 +02001927 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001928
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001929 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001930 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001931 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001932
Kevin Wolf01a56502017-01-18 15:51:56 +01001933 assert(!drv->bdrv_file_open || file == NULL);
1934 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001935 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001936 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001937 }
1938
Kevin Wolf18edf282015-04-07 17:12:56 +02001939 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001940 return 0;
1941
Kevin Wolf18edf282015-04-07 17:12:56 +02001942fail_opts:
1943 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001944 return ret;
1945}
1946
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001947static QDict *parse_json_filename(const char *filename, Error **errp)
1948{
1949 QObject *options_obj;
1950 QDict *options;
1951 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001952 GLOBAL_STATE_CODE();
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001953
1954 ret = strstart(filename, "json:", &filename);
1955 assert(ret);
1956
Markus Armbruster5577fff2017-02-28 22:26:59 +01001957 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001958 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001959 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001960 return NULL;
1961 }
1962
Max Reitz7dc847e2018-02-24 16:40:29 +01001963 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001964 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001965 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001966 error_setg(errp, "Invalid JSON object given");
1967 return NULL;
1968 }
1969
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001970 qdict_flatten(options);
1971
1972 return options;
1973}
1974
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001975static void parse_json_protocol(QDict *options, const char **pfilename,
1976 Error **errp)
1977{
1978 QDict *json_options;
1979 Error *local_err = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001980 GLOBAL_STATE_CODE();
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001981
1982 /* Parse json: pseudo-protocol */
1983 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1984 return;
1985 }
1986
1987 json_options = parse_json_filename(*pfilename, &local_err);
1988 if (local_err) {
1989 error_propagate(errp, local_err);
1990 return;
1991 }
1992
1993 /* Options given in the filename have lower priority than options
1994 * specified directly */
1995 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001996 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001997 *pfilename = NULL;
1998}
1999
Kevin Wolf57915332010-04-14 15:24:50 +02002000/*
Kevin Wolff54120f2014-05-26 11:09:59 +02002001 * Fills in default options for opening images and converts the legacy
2002 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04002003 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2004 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02002005 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002006static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02002007 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02002008{
2009 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04002010 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002011 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02002012 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002013 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002014
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002015 GLOBAL_STATE_CODE();
2016
Markus Armbruster129c7d12017-03-30 19:43:12 +02002017 /*
2018 * Caution: while qdict_get_try_str() is fine, getting non-string
2019 * types would require more care. When @options come from
2020 * -blockdev or blockdev_add, its members are typed according to
2021 * the QAPI schema, but when they come from -drive, they're all
2022 * QString.
2023 */
Max Reitz53a29512015-03-19 14:53:16 -04002024 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02002025 if (drvname) {
2026 drv = bdrv_find_format(drvname);
2027 if (!drv) {
2028 error_setg(errp, "Unknown driver '%s'", drvname);
2029 return -ENOENT;
2030 }
2031 /* If the user has explicitly specified the driver, this choice should
2032 * override the BDRV_O_PROTOCOL flag */
2033 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04002034 }
2035
2036 if (protocol) {
2037 *flags |= BDRV_O_PROTOCOL;
2038 } else {
2039 *flags &= ~BDRV_O_PROTOCOL;
2040 }
2041
Kevin Wolf91a097e2015-05-08 17:49:53 +02002042 /* Translate cache options from flags into options */
2043 update_options_from_flags(*options, *flags);
2044
Kevin Wolff54120f2014-05-26 11:09:59 +02002045 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002046 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002047 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002048 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02002049 parse_filename = true;
2050 } else {
2051 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2052 "the same time");
2053 return -EINVAL;
2054 }
2055 }
2056
2057 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02002058 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02002059 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02002060
Max Reitz053e1572015-08-26 19:47:51 +02002061 if (!drvname && protocol) {
2062 if (filename) {
2063 drv = bdrv_find_protocol(filename, parse_filename, errp);
2064 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002065 return -EINVAL;
2066 }
Max Reitz053e1572015-08-26 19:47:51 +02002067
2068 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05002069 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02002070 } else {
2071 error_setg(errp, "Must specify either driver or file");
2072 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002073 }
2074 }
2075
Kevin Wolf17b005f2014-05-27 10:50:29 +02002076 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02002077
2078 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002079 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002080 drv->bdrv_parse_filename(filename, *options, &local_err);
2081 if (local_err) {
2082 error_propagate(errp, local_err);
2083 return -EINVAL;
2084 }
2085
2086 if (!drv->bdrv_needs_filename) {
2087 qdict_del(*options, "filename");
2088 }
2089 }
2090
2091 return 0;
2092}
2093
Kevin Wolf148eb132017-09-14 14:32:04 +02002094typedef struct BlockReopenQueueEntry {
2095 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01002096 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02002097 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002098 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02002099} BlockReopenQueueEntry;
2100
2101/*
2102 * Return the flags that @bs will have after the reopens in @q have
2103 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2104 * return the current flags.
2105 */
2106static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2107{
2108 BlockReopenQueueEntry *entry;
2109
2110 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002111 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002112 if (entry->state.bs == bs) {
2113 return entry->state.flags;
2114 }
2115 }
2116 }
2117
2118 return bs->open_flags;
2119}
2120
2121/* Returns whether the image file can be written to after the reopen queue @q
2122 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002123static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2124 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002125{
2126 int flags = bdrv_reopen_get_flags(q, bs);
2127
2128 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2129}
2130
Max Reitzcc022142018-06-06 21:37:00 +02002131/*
2132 * Return whether the BDS can be written to. This is not necessarily
2133 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2134 * be written to but do not count as read-only images.
2135 */
2136bool bdrv_is_writable(BlockDriverState *bs)
2137{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05002138 IO_CODE();
Max Reitzcc022142018-06-06 21:37:00 +02002139 return bdrv_is_writable_after_reopen(bs, NULL);
2140}
2141
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002142static char *bdrv_child_user_desc(BdrvChild *c)
2143{
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002144 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002145 return c->klass->get_parent_desc(c);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002146}
2147
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002148/*
2149 * Check that @a allows everything that @b needs. @a and @b must reference same
2150 * child node.
2151 */
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002152static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2153{
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002154 const char *child_bs_name;
2155 g_autofree char *a_user = NULL;
2156 g_autofree char *b_user = NULL;
2157 g_autofree char *perms = NULL;
2158
2159 assert(a->bs);
2160 assert(a->bs == b->bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002161 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002162
2163 if ((b->perm & a->shared_perm) == b->perm) {
2164 return true;
2165 }
2166
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002167 child_bs_name = bdrv_get_node_name(b->bs);
2168 a_user = bdrv_child_user_desc(a);
2169 b_user = bdrv_child_user_desc(b);
2170 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2171
2172 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2173 "both required by %s (uses node '%s' as '%s' child) and "
2174 "unshared by %s (uses node '%s' as '%s' child).",
2175 child_bs_name, perms,
2176 b_user, child_bs_name, b->name,
2177 a_user, child_bs_name, a->name);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002178
2179 return false;
2180}
2181
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002182static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002183{
2184 BdrvChild *a, *b;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002185 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002186
2187 /*
2188 * During the loop we'll look at each pair twice. That's correct because
2189 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2190 * directions.
2191 */
2192 QLIST_FOREACH(a, &bs->parents, next_parent) {
2193 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002194 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002195 continue;
2196 }
2197
2198 if (!bdrv_a_allow_b(a, b, errp)) {
2199 return true;
2200 }
2201 }
2202 }
2203
2204 return false;
2205}
2206
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002207static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02002208 BdrvChild *c, BdrvChildRole role,
2209 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002210 uint64_t parent_perm, uint64_t parent_shared,
2211 uint64_t *nperm, uint64_t *nshared)
2212{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002213 assert(bs->drv && bs->drv->bdrv_child_perm);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002214 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002215 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002216 parent_perm, parent_shared,
2217 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002218 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002219 if (child_bs && child_bs->force_share) {
2220 *nshared = BLK_PERM_ALL;
2221 }
2222}
2223
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002224/*
2225 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2226 * nodes that are already in the @list, of course) so that final list is
2227 * topologically sorted. Return the result (GSList @list object is updated, so
2228 * don't use old reference after function call).
2229 *
2230 * On function start @list must be already topologically sorted and for any node
2231 * in the @list the whole subtree of the node must be in the @list as well. The
2232 * simplest way to satisfy this criteria: use only result of
2233 * bdrv_topological_dfs() or NULL as @list parameter.
2234 */
2235static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2236 BlockDriverState *bs)
2237{
2238 BdrvChild *child;
2239 g_autoptr(GHashTable) local_found = NULL;
2240
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002241 GLOBAL_STATE_CODE();
2242
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002243 if (!found) {
2244 assert(!list);
2245 found = local_found = g_hash_table_new(NULL, NULL);
2246 }
2247
2248 if (g_hash_table_contains(found, bs)) {
2249 return list;
2250 }
2251 g_hash_table_add(found, bs);
2252
2253 QLIST_FOREACH(child, &bs->children, next) {
2254 list = bdrv_topological_dfs(list, found, child->bs);
2255 }
2256
2257 return g_slist_prepend(list, bs);
2258}
2259
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002260typedef struct BdrvChildSetPermState {
2261 BdrvChild *child;
2262 uint64_t old_perm;
2263 uint64_t old_shared_perm;
2264} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002265
2266static void bdrv_child_set_perm_abort(void *opaque)
2267{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002268 BdrvChildSetPermState *s = opaque;
2269
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002270 GLOBAL_STATE_CODE();
2271
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002272 s->child->perm = s->old_perm;
2273 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002274}
2275
2276static TransactionActionDrv bdrv_child_set_pem_drv = {
2277 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002278 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002279};
2280
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002281static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2282 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002283{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002284 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002285 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002286
2287 *s = (BdrvChildSetPermState) {
2288 .child = c,
2289 .old_perm = c->perm,
2290 .old_shared_perm = c->shared_perm,
2291 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002292
2293 c->perm = perm;
2294 c->shared_perm = shared;
2295
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002296 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002297}
2298
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002299static void bdrv_drv_set_perm_commit(void *opaque)
2300{
2301 BlockDriverState *bs = opaque;
2302 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002303 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002304
2305 if (bs->drv->bdrv_set_perm) {
2306 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2307 &cumulative_shared_perms);
2308 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2309 }
2310}
2311
2312static void bdrv_drv_set_perm_abort(void *opaque)
2313{
2314 BlockDriverState *bs = opaque;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002315 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002316
2317 if (bs->drv->bdrv_abort_perm_update) {
2318 bs->drv->bdrv_abort_perm_update(bs);
2319 }
2320}
2321
2322TransactionActionDrv bdrv_drv_set_perm_drv = {
2323 .abort = bdrv_drv_set_perm_abort,
2324 .commit = bdrv_drv_set_perm_commit,
2325};
2326
2327static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2328 uint64_t shared_perm, Transaction *tran,
2329 Error **errp)
2330{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002331 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002332 if (!bs->drv) {
2333 return 0;
2334 }
2335
2336 if (bs->drv->bdrv_check_perm) {
2337 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2338 if (ret < 0) {
2339 return ret;
2340 }
2341 }
2342
2343 if (tran) {
2344 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2345 }
2346
2347 return 0;
2348}
2349
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002350typedef struct BdrvReplaceChildState {
2351 BdrvChild *child;
2352 BlockDriverState *old_bs;
2353} BdrvReplaceChildState;
2354
2355static void bdrv_replace_child_commit(void *opaque)
2356{
2357 BdrvReplaceChildState *s = opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002358 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002359
2360 bdrv_unref(s->old_bs);
2361}
2362
2363static void bdrv_replace_child_abort(void *opaque)
2364{
2365 BdrvReplaceChildState *s = opaque;
2366 BlockDriverState *new_bs = s->child->bs;
2367
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002368 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002369 /* old_bs reference is transparently moved from @s to @s->child */
Kevin Wolf23987472022-11-18 18:41:09 +01002370 if (!s->child->bs) {
2371 /*
2372 * The parents were undrained when removing old_bs from the child. New
2373 * requests can't have been made, though, because the child was empty.
2374 *
2375 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2376 * undraining the parent in the first place. Once this is done, having
2377 * new_bs drained when calling bdrv_replace_child_tran() is not a
2378 * requirement any more.
2379 */
Kevin Wolf606ed752022-11-18 18:41:10 +01002380 bdrv_parent_drained_begin_single(s->child);
Kevin Wolf23987472022-11-18 18:41:09 +01002381 assert(!bdrv_parent_drained_poll_single(s->child));
2382 }
2383 assert(s->child->quiesced_parent);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002384 bdrv_replace_child_noperm(s->child, s->old_bs);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002385 bdrv_unref(new_bs);
2386}
2387
2388static TransactionActionDrv bdrv_replace_child_drv = {
2389 .commit = bdrv_replace_child_commit,
2390 .abort = bdrv_replace_child_abort,
2391 .clean = g_free,
2392};
2393
2394/*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002395 * bdrv_replace_child_tran
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002396 *
2397 * Note: real unref of old_bs is done only on commit.
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002398 *
Kevin Wolf23987472022-11-18 18:41:09 +01002399 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2400 * kept drained until the transaction is completed.
2401 *
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002402 * The function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002403 */
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002404static void bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
Vladimir Sementsov-Ogievskiy4eba8252022-07-26 23:11:28 +03002405 Transaction *tran)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002406{
2407 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
Kevin Wolf23987472022-11-18 18:41:09 +01002408
2409 assert(child->quiesced_parent);
2410 assert(!new_bs || new_bs->quiesce_counter);
2411
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002412 *s = (BdrvReplaceChildState) {
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002413 .child = child,
2414 .old_bs = child->bs,
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002415 };
2416 tran_add(tran, &bdrv_replace_child_drv, s);
2417
2418 if (new_bs) {
2419 bdrv_ref(new_bs);
2420 }
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002421 bdrv_replace_child_noperm(child, new_bs);
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002422 /* old_bs reference is transparently moved from @child to @s */
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002423}
2424
Kevin Wolf33a610c2016-12-15 13:04:20 +01002425/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002426 * Refresh permissions in @bs subtree. The function is intended to be called
2427 * after some graph modification that was done without permission update.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002428 */
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002429static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2430 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002431{
2432 BlockDriver *drv = bs->drv;
2433 BdrvChild *c;
2434 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002435 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002436 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002437
2438 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002439
2440 /* Write permissions never work with read-only images */
2441 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002442 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002443 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002444 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2445 error_setg(errp, "Block node is read-only");
2446 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002447 error_setg(errp, "Read-only block node '%s' cannot support "
2448 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002449 }
2450
Kevin Wolf33a610c2016-12-15 13:04:20 +01002451 return -EPERM;
2452 }
2453
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002454 /*
2455 * Unaligned requests will automatically be aligned to bl.request_alignment
2456 * and without RESIZE we can't extend requests to write to space beyond the
2457 * end of the image, so it's required that the image size is aligned.
2458 */
2459 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2460 !(cumulative_perms & BLK_PERM_RESIZE))
2461 {
2462 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2463 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2464 "Image size is not a multiple of request "
2465 "alignment");
2466 return -EPERM;
2467 }
2468 }
2469
Kevin Wolf33a610c2016-12-15 13:04:20 +01002470 /* Check this node */
2471 if (!drv) {
2472 return 0;
2473 }
2474
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002475 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002476 errp);
2477 if (ret < 0) {
2478 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002479 }
2480
Kevin Wolf78e421c2016-12-20 23:25:12 +01002481 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002482 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002483 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002484 return 0;
2485 }
2486
2487 /* Check all children */
2488 QLIST_FOREACH(c, &bs->children, next) {
2489 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002490
Max Reitze5d8a402020-05-13 13:05:44 +02002491 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002492 cumulative_perms, cumulative_shared_perms,
2493 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002494 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002495 }
2496
2497 return 0;
2498}
2499
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002500/*
2501 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2502 * a topologically sorted subgraph.
2503 */
2504static int bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q,
2505 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002506{
2507 int ret;
2508 BlockDriverState *bs;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002509 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002510
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002511 for ( ; list; list = list->next) {
2512 bs = list->data;
2513
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002514 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002515 return -EINVAL;
2516 }
2517
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002518 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002519 if (ret < 0) {
2520 return ret;
2521 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002522 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002523
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002524 return 0;
2525}
2526
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002527/*
2528 * @list is any list of nodes. List is completed by all subtrees and
2529 * topologically sorted. It's not a problem if some node occurs in the @list
2530 * several times.
2531 */
2532static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2533 Transaction *tran, Error **errp)
2534{
2535 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL);
2536 g_autoptr(GSList) refresh_list = NULL;
2537
2538 for ( ; list; list = list->next) {
2539 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data);
2540 }
2541
2542 return bdrv_do_refresh_perms(refresh_list, q, tran, errp);
2543}
2544
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002545void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2546 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002547{
2548 BdrvChild *c;
2549 uint64_t cumulative_perms = 0;
2550 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2551
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002552 GLOBAL_STATE_CODE();
2553
Kevin Wolf33a610c2016-12-15 13:04:20 +01002554 QLIST_FOREACH(c, &bs->parents, next_parent) {
2555 cumulative_perms |= c->perm;
2556 cumulative_shared_perms &= c->shared_perm;
2557 }
2558
2559 *perm = cumulative_perms;
2560 *shared_perm = cumulative_shared_perms;
2561}
2562
Fam Zheng51761962017-05-03 00:35:36 +08002563char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002564{
2565 struct perm_name {
2566 uint64_t perm;
2567 const char *name;
2568 } permissions[] = {
2569 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2570 { BLK_PERM_WRITE, "write" },
2571 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2572 { BLK_PERM_RESIZE, "resize" },
Kevin Wolfd0833192017-01-16 18:26:20 +01002573 { 0, NULL }
2574 };
2575
Alberto Garciae2a74232020-01-10 18:15:18 +01002576 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002577 struct perm_name *p;
2578
2579 for (p = permissions; p->name; p++) {
2580 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002581 if (result->len > 0) {
2582 g_string_append(result, ", ");
2583 }
2584 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002585 }
2586 }
2587
Alberto Garciae2a74232020-01-10 18:15:18 +01002588 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002589}
2590
Kevin Wolf33a610c2016-12-15 13:04:20 +01002591
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002592/* @tran is allowed to be NULL. In this case no rollback is possible */
2593static int bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran,
2594 Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002595{
2596 int ret;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002597 Transaction *local_tran = NULL;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002598 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002599 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002600
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002601 if (!tran) {
2602 tran = local_tran = tran_new();
2603 }
2604
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002605 ret = bdrv_do_refresh_perms(list, NULL, tran, errp);
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002606
2607 if (local_tran) {
2608 tran_finalize(local_tran, ret);
2609 }
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002610
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002611 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002612}
2613
Kevin Wolf33a610c2016-12-15 13:04:20 +01002614int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2615 Error **errp)
2616{
Max Reitz10467792019-05-22 19:03:51 +02002617 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002618 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002619 int ret;
2620
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002621 GLOBAL_STATE_CODE();
2622
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002623 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002624
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002625 ret = bdrv_refresh_perms(c->bs, tran, &local_err);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002626
2627 tran_finalize(tran, ret);
2628
Kevin Wolf33a610c2016-12-15 13:04:20 +01002629 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002630 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2631 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002632 error_propagate(errp, local_err);
2633 } else {
2634 /*
2635 * Our caller may intend to only loosen restrictions and
2636 * does not expect this function to fail. Errors are not
2637 * fatal in such a case, so we can just hide them from our
2638 * caller.
2639 */
2640 error_free(local_err);
2641 ret = 0;
2642 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002643 }
2644
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002645 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002646}
2647
Max Reitzc1087f12019-05-22 19:03:46 +02002648int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2649{
2650 uint64_t parent_perms, parent_shared;
2651 uint64_t perms, shared;
2652
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002653 GLOBAL_STATE_CODE();
2654
Max Reitzc1087f12019-05-22 19:03:46 +02002655 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002656 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002657 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002658
2659 return bdrv_child_try_set_perm(c, perms, shared, errp);
2660}
2661
Max Reitz87278af2020-05-13 13:05:40 +02002662/*
2663 * Default implementation for .bdrv_child_perm() for block filters:
2664 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2665 * filtered child.
2666 */
2667static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002668 BdrvChildRole role,
2669 BlockReopenQueue *reopen_queue,
2670 uint64_t perm, uint64_t shared,
2671 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002672{
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002673 GLOBAL_STATE_CODE();
Kevin Wolfe444fa82019-08-02 15:59:41 +02002674 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2675 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002676}
2677
Max Reitz70082db2020-05-13 13:05:26 +02002678static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002679 BdrvChildRole role,
2680 BlockReopenQueue *reopen_queue,
2681 uint64_t perm, uint64_t shared,
2682 uint64_t *nperm, uint64_t *nshared)
2683{
Max Reitze5d8a402020-05-13 13:05:44 +02002684 assert(role & BDRV_CHILD_COW);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002685 GLOBAL_STATE_CODE();
Max Reitz70082db2020-05-13 13:05:26 +02002686
2687 /*
2688 * We want consistent read from backing files if the parent needs it.
2689 * No other operations are performed on backing files.
2690 */
2691 perm &= BLK_PERM_CONSISTENT_READ;
2692
2693 /*
2694 * If the parent can deal with changing data, we're okay with a
2695 * writable and resizable backing file.
2696 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2697 */
2698 if (shared & BLK_PERM_WRITE) {
2699 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2700 } else {
2701 shared = 0;
2702 }
2703
Vladimir Sementsov-Ogievskiy64631f32021-09-02 12:37:54 +03002704 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
Max Reitz70082db2020-05-13 13:05:26 +02002705
2706 if (bs->open_flags & BDRV_O_INACTIVE) {
2707 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2708 }
2709
2710 *nperm = perm;
2711 *nshared = shared;
2712}
2713
Max Reitz6f838a42020-05-13 13:05:27 +02002714static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002715 BdrvChildRole role,
2716 BlockReopenQueue *reopen_queue,
2717 uint64_t perm, uint64_t shared,
2718 uint64_t *nperm, uint64_t *nshared)
2719{
2720 int flags;
2721
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002722 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002723 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002724
2725 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2726
2727 /*
2728 * Apart from the modifications below, the same permissions are
2729 * forwarded and left alone as for filters
2730 */
Max Reitze5d8a402020-05-13 13:05:44 +02002731 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002732 perm, shared, &perm, &shared);
2733
Max Reitzf8890542020-05-13 13:05:28 +02002734 if (role & BDRV_CHILD_METADATA) {
2735 /* Format drivers may touch metadata even if the guest doesn't write */
2736 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2737 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2738 }
2739
2740 /*
2741 * bs->file always needs to be consistent because of the
2742 * metadata. We can never allow other users to resize or write
2743 * to it.
2744 */
2745 if (!(flags & BDRV_O_NO_IO)) {
2746 perm |= BLK_PERM_CONSISTENT_READ;
2747 }
2748 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002749 }
2750
Max Reitzf8890542020-05-13 13:05:28 +02002751 if (role & BDRV_CHILD_DATA) {
2752 /*
2753 * Technically, everything in this block is a subset of the
2754 * BDRV_CHILD_METADATA path taken above, and so this could
2755 * be an "else if" branch. However, that is not obvious, and
2756 * this function is not performance critical, therefore we let
2757 * this be an independent "if".
2758 */
2759
2760 /*
2761 * We cannot allow other users to resize the file because the
2762 * format driver might have some assumptions about the size
2763 * (e.g. because it is stored in metadata, or because the file
2764 * is split into fixed-size data files).
2765 */
2766 shared &= ~BLK_PERM_RESIZE;
2767
2768 /*
2769 * WRITE_UNCHANGED often cannot be performed as such on the
2770 * data file. For example, the qcow2 driver may still need to
2771 * write copied clusters on copy-on-read.
2772 */
2773 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2774 perm |= BLK_PERM_WRITE;
2775 }
2776
2777 /*
2778 * If the data file is written to, the format driver may
2779 * expect to be able to resize it by writing beyond the EOF.
2780 */
2781 if (perm & BLK_PERM_WRITE) {
2782 perm |= BLK_PERM_RESIZE;
2783 }
Max Reitz6f838a42020-05-13 13:05:27 +02002784 }
Max Reitz6f838a42020-05-13 13:05:27 +02002785
2786 if (bs->open_flags & BDRV_O_INACTIVE) {
2787 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2788 }
2789
2790 *nperm = perm;
2791 *nshared = shared;
2792}
2793
Max Reitz2519f542020-05-13 13:05:29 +02002794void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002795 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002796 uint64_t perm, uint64_t shared,
2797 uint64_t *nperm, uint64_t *nshared)
2798{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002799 GLOBAL_STATE_CODE();
Max Reitz2519f542020-05-13 13:05:29 +02002800 if (role & BDRV_CHILD_FILTERED) {
2801 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2802 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002803 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002804 perm, shared, nperm, nshared);
2805 } else if (role & BDRV_CHILD_COW) {
2806 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002807 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002808 perm, shared, nperm, nshared);
2809 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002810 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002811 perm, shared, nperm, nshared);
2812 } else {
2813 g_assert_not_reached();
2814 }
2815}
2816
Max Reitz7b1d9c42019-11-08 13:34:51 +01002817uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2818{
2819 static const uint64_t permissions[] = {
2820 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2821 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2822 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2823 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
Max Reitz7b1d9c42019-11-08 13:34:51 +01002824 };
2825
2826 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2827 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2828
2829 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2830
2831 return permissions[qapi_perm];
2832}
2833
Kevin Wolf23987472022-11-18 18:41:09 +01002834/*
2835 * Replaces the node that a BdrvChild points to without updating permissions.
2836 *
2837 * If @new_bs is non-NULL, the parent of @child must already be drained through
2838 * @child.
2839 *
2840 * This function does not poll.
2841 */
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002842static void bdrv_replace_child_noperm(BdrvChild *child,
Vladimir Sementsov-Ogievskiy4eba8252022-07-26 23:11:28 +03002843 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002844{
2845 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002846 int new_bs_quiesce_counter;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002847
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002848 assert(!child->frozen);
Kevin Wolf23987472022-11-18 18:41:09 +01002849
2850 /*
2851 * If we want to change the BdrvChild to point to a drained node as its new
2852 * child->bs, we need to make sure that its new parent is drained, too. In
2853 * other words, either child->quiesce_parent must already be true or we must
2854 * be able to set it and keep the parent's quiesce_counter consistent with
2855 * that, but without polling or starting new requests (this function
2856 * guarantees that it doesn't poll, and starting new requests would be
2857 * against the invariants of drain sections).
2858 *
2859 * To keep things simple, we pick the first option (child->quiesce_parent
2860 * must already be true). We also generalise the rule a bit to make it
2861 * easier to verify in callers and more likely to be covered in test cases:
2862 * The parent must be quiesced through this child even if new_bs isn't
2863 * currently drained.
2864 *
2865 * The only exception is for callers that always pass new_bs == NULL. In
2866 * this case, we obviously never need to consider the case of a drained
2867 * new_bs, so we can keep the callers simpler by allowing them not to drain
2868 * the parent.
2869 */
2870 assert(!new_bs || child->quiesced_parent);
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02002871 assert(old_bs != new_bs);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002872 GLOBAL_STATE_CODE();
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002873
Fam Zhengbb2614e2017-04-07 14:54:10 +08002874 if (old_bs && new_bs) {
2875 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2876 }
Max Reitzdebc2922019-07-22 15:33:44 +02002877
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002878 if (old_bs) {
Max Reitzbd86fb92020-05-13 13:05:13 +02002879 if (child->klass->detach) {
2880 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002881 }
Emanuele Giuseppe Esposito696bf4c2022-03-03 10:15:59 -05002882 assert_bdrv_graph_writable(old_bs);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002883 QLIST_REMOVE(child, next_parent);
2884 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002885
2886 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002887
2888 if (new_bs) {
Emanuele Giuseppe Esposito696bf4c2022-03-03 10:15:59 -05002889 assert_bdrv_graph_writable(new_bs);
Kevin Wolf36fe1332016-05-17 14:51:55 +02002890 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzbd86fb92020-05-13 13:05:13 +02002891 if (child->klass->attach) {
2892 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002893 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002894 }
Max Reitzdebc2922019-07-22 15:33:44 +02002895
2896 /*
Kevin Wolf23987472022-11-18 18:41:09 +01002897 * If the parent was drained through this BdrvChild previously, but new_bs
2898 * is not drained, allow requests to come in only after the new node has
2899 * been attached.
Max Reitzdebc2922019-07-22 15:33:44 +02002900 */
Kevin Wolf57e05be2022-11-18 18:41:06 +01002901 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2902 if (!new_bs_quiesce_counter && child->quiesced_parent) {
Max Reitzdebc2922019-07-22 15:33:44 +02002903 bdrv_parent_drained_end_single(child);
Max Reitzdebc2922019-07-22 15:33:44 +02002904 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002905}
2906
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002907/**
2908 * Free the given @child.
2909 *
2910 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2911 * unused (i.e. not in a children list).
2912 */
2913static void bdrv_child_free(BdrvChild *child)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002914{
2915 assert(!child->bs);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002916 GLOBAL_STATE_CODE();
Hanna Reitza2253692021-11-15 15:53:58 +01002917 assert(!child->next.le_prev); /* not in children list */
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002918
2919 g_free(child->name);
2920 g_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002921}
2922
2923typedef struct BdrvAttachChildCommonState {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002924 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002925 AioContext *old_parent_ctx;
2926 AioContext *old_child_ctx;
2927} BdrvAttachChildCommonState;
2928
2929static void bdrv_attach_child_common_abort(void *opaque)
2930{
2931 BdrvAttachChildCommonState *s = opaque;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002932 BlockDriverState *bs = s->child->bs;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002933
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002934 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002935 bdrv_replace_child_noperm(s->child, NULL);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002936
2937 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04002938 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002939 }
2940
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002941 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) {
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002942 Transaction *tran;
2943 GHashTable *visited;
2944 bool ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002945
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002946 tran = tran_new();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002947
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002948 /* No need to visit `child`, because it has been detached already */
2949 visited = g_hash_table_new(NULL, NULL);
2950 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx,
2951 visited, tran, &error_abort);
2952 g_hash_table_destroy(visited);
2953
2954 /* transaction is supposed to always succeed */
2955 assert(ret == true);
2956 tran_commit(tran);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002957 }
2958
2959 bdrv_unref(bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002960 bdrv_child_free(s->child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002961}
2962
2963static TransactionActionDrv bdrv_attach_child_common_drv = {
2964 .abort = bdrv_attach_child_common_abort,
2965 .clean = g_free,
2966};
2967
2968/*
2969 * Common part of attaching bdrv child to bs or to blk or to job
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002970 *
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03002971 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002972 *
2973 * Returns new created child.
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002974 */
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002975static BdrvChild *bdrv_attach_child_common(BlockDriverState *child_bs,
2976 const char *child_name,
2977 const BdrvChildClass *child_class,
2978 BdrvChildRole child_role,
2979 uint64_t perm, uint64_t shared_perm,
2980 void *opaque,
2981 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002982{
2983 BdrvChild *new_child;
2984 AioContext *parent_ctx;
2985 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
2986
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002987 assert(child_class->get_parent_desc);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002988 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002989
2990 new_child = g_new(BdrvChild, 1);
2991 *new_child = (BdrvChild) {
2992 .bs = NULL,
2993 .name = g_strdup(child_name),
2994 .klass = child_class,
2995 .role = child_role,
2996 .perm = perm,
2997 .shared_perm = shared_perm,
2998 .opaque = opaque,
2999 };
3000
3001 /*
3002 * If the AioContexts don't match, first try to move the subtree of
3003 * child_bs into the AioContext of the new parent. If this doesn't work,
3004 * try moving the parent into the AioContext of child_bs instead.
3005 */
3006 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3007 if (child_ctx != parent_ctx) {
3008 Error *local_err = NULL;
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04003009 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL,
3010 &local_err);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003011
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003012 if (ret < 0 && child_class->change_aio_ctx) {
3013 Transaction *tran = tran_new();
3014 GHashTable *visited = g_hash_table_new(NULL, NULL);
3015 bool ret_child;
3016
3017 g_hash_table_add(visited, new_child);
3018 ret_child = child_class->change_aio_ctx(new_child, child_ctx,
3019 visited, tran, NULL);
3020 if (ret_child == true) {
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003021 error_free(local_err);
3022 ret = 0;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003023 }
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003024 tran_finalize(tran, ret_child == true ? 0 : -1);
3025 g_hash_table_destroy(visited);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003026 }
3027
3028 if (ret < 0) {
3029 error_propagate(errp, local_err);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01003030 bdrv_child_free(new_child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003031 return NULL;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003032 }
3033 }
3034
3035 bdrv_ref(child_bs);
Kevin Wolf23987472022-11-18 18:41:09 +01003036 /*
3037 * Let every new BdrvChild start with a drained parent. Inserting the child
3038 * in the graph with bdrv_replace_child_noperm() will undrain it if
3039 * @child_bs is not drained.
3040 *
3041 * The child was only just created and is not yet visible in global state
3042 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3043 * could have sent requests and polling is not necessary.
3044 *
3045 * Note that this means that the parent isn't fully drained yet, we only
3046 * stop new requests from coming in. This is fine, we don't care about the
3047 * old requests here, they are not for this child. If another place enters a
3048 * drain section for the same parent, but wants it to be fully quiesced, it
3049 * will not run most of the the code in .drained_begin() again (which is not
3050 * a problem, we already did this), but it will still poll until the parent
3051 * is fully quiesced, so it will not be negatively affected either.
3052 */
Kevin Wolf606ed752022-11-18 18:41:10 +01003053 bdrv_parent_drained_begin_single(new_child);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03003054 bdrv_replace_child_noperm(new_child, child_bs);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003055
3056 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3057 *s = (BdrvAttachChildCommonState) {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003058 .child = new_child,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003059 .old_parent_ctx = parent_ctx,
3060 .old_child_ctx = child_ctx,
3061 };
3062 tran_add(tran, &bdrv_attach_child_common_drv, s);
3063
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003064 return new_child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003065}
3066
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003067/*
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003068 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003069 */
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003070static BdrvChild *bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3071 BlockDriverState *child_bs,
3072 const char *child_name,
3073 const BdrvChildClass *child_class,
3074 BdrvChildRole child_role,
3075 Transaction *tran,
3076 Error **errp)
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003077{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003078 uint64_t perm, shared_perm;
3079
3080 assert(parent_bs->drv);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003081 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003082
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003083 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3084 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3085 child_bs->node_name, child_name, parent_bs->node_name);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003086 return NULL;
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003087 }
3088
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003089 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3090 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3091 perm, shared_perm, &perm, &shared_perm);
3092
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003093 return bdrv_attach_child_common(child_bs, child_name, child_class,
3094 child_role, perm, shared_perm, parent_bs,
3095 tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003096}
3097
Alberto Garciab441dc72019-05-13 16:46:18 +03003098/*
3099 * This function steals the reference to child_bs from the caller.
3100 * That reference is later dropped by bdrv_root_unref_child().
3101 *
3102 * On failure NULL is returned, errp is set and the reference to
3103 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003104 *
3105 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3106 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03003107 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003108BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3109 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003110 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003111 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003112 uint64_t perm, uint64_t shared_perm,
3113 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02003114{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003115 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003116 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003117 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003118
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05003119 GLOBAL_STATE_CODE();
3120
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003121 child = bdrv_attach_child_common(child_bs, child_name, child_class,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003122 child_role, perm, shared_perm, opaque,
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003123 tran, errp);
3124 if (!child) {
3125 ret = -EINVAL;
Kevin Wolfe878bb12021-05-03 13:05:54 +02003126 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003127 }
3128
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003129 ret = bdrv_refresh_perms(child_bs, tran, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02003130
Kevin Wolfe878bb12021-05-03 13:05:54 +02003131out:
3132 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003133
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003134 bdrv_unref(child_bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003135
3136 return ret < 0 ? NULL : child;
Kevin Wolfdf581792015-06-15 11:53:47 +02003137}
3138
Alberto Garciab441dc72019-05-13 16:46:18 +03003139/*
3140 * This function transfers the reference to child_bs from the caller
3141 * to parent_bs. That reference is later dropped by parent_bs on
3142 * bdrv_close() or if someone calls bdrv_unref_child().
3143 *
3144 * On failure NULL is returned, errp is set and the reference to
3145 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003146 *
3147 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3148 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03003149 */
Wen Congyang98292c62016-05-10 15:36:38 +08003150BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3151 BlockDriverState *child_bs,
3152 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003153 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003154 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003155 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003156{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003157 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003158 BdrvChild *child;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003159 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003160
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003161 GLOBAL_STATE_CODE();
3162
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003163 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name,
3164 child_class, child_role, tran, errp);
3165 if (!child) {
3166 ret = -EINVAL;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003167 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003168 }
3169
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003170 ret = bdrv_refresh_perms(parent_bs, tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003171 if (ret < 0) {
3172 goto out;
3173 }
3174
3175out:
3176 tran_finalize(tran, ret);
3177
3178 bdrv_unref(child_bs);
3179
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003180 return ret < 0 ? NULL : child;
Kevin Wolff21d96d2016-03-08 13:47:46 +01003181}
3182
Max Reitz7b99a262019-06-12 16:07:11 +02003183/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003184void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003185{
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003186 BlockDriverState *child_bs = child->bs;
Kevin Wolf779020c2015-10-13 14:09:44 +02003187
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003188 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003189 bdrv_replace_child_noperm(child, NULL);
3190 bdrv_child_free(child);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003191
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003192 if (child_bs) {
3193 /*
3194 * Update permissions for old node. We're just taking a parent away, so
3195 * we're loosening restrictions. Errors of permission update are not
3196 * fatal in this case, ignore them.
3197 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003198 bdrv_refresh_perms(child_bs, NULL, NULL);
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003199
3200 /*
3201 * When the parent requiring a non-default AioContext is removed, the
3202 * node moves back to the main AioContext
3203 */
3204 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL,
3205 NULL);
3206 }
3207
Kevin Wolff21d96d2016-03-08 13:47:46 +01003208 bdrv_unref(child_bs);
3209}
3210
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003211typedef struct BdrvSetInheritsFrom {
3212 BlockDriverState *bs;
3213 BlockDriverState *old_inherits_from;
3214} BdrvSetInheritsFrom;
3215
3216static void bdrv_set_inherits_from_abort(void *opaque)
3217{
3218 BdrvSetInheritsFrom *s = opaque;
3219
3220 s->bs->inherits_from = s->old_inherits_from;
3221}
3222
3223static TransactionActionDrv bdrv_set_inherits_from_drv = {
3224 .abort = bdrv_set_inherits_from_abort,
3225 .clean = g_free,
3226};
3227
3228/* @tran is allowed to be NULL. In this case no rollback is possible */
3229static void bdrv_set_inherits_from(BlockDriverState *bs,
3230 BlockDriverState *new_inherits_from,
3231 Transaction *tran)
3232{
3233 if (tran) {
3234 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3235
3236 *s = (BdrvSetInheritsFrom) {
3237 .bs = bs,
3238 .old_inherits_from = bs->inherits_from,
3239 };
3240
3241 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3242 }
3243
3244 bs->inherits_from = new_inherits_from;
3245}
3246
Max Reitz3cf746b2019-07-03 19:28:07 +02003247/**
3248 * Clear all inherits_from pointers from children and grandchildren of
3249 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003250 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003251 */
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003252static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3253 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003254{
Max Reitz3cf746b2019-07-03 19:28:07 +02003255 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003256
Max Reitz3cf746b2019-07-03 19:28:07 +02003257 if (child->bs->inherits_from == root) {
3258 /*
3259 * Remove inherits_from only when the last reference between root and
3260 * child->bs goes away.
3261 */
3262 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003263 if (c != child && c->bs == child->bs) {
3264 break;
3265 }
3266 }
3267 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003268 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003269 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003270 }
3271
Max Reitz3cf746b2019-07-03 19:28:07 +02003272 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003273 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003274 }
3275}
3276
Max Reitz7b99a262019-06-12 16:07:11 +02003277/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003278void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3279{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003280 GLOBAL_STATE_CODE();
Max Reitz3cf746b2019-07-03 19:28:07 +02003281 if (child == NULL) {
3282 return;
3283 }
3284
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003285 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003286 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003287}
3288
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003289
3290static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3291{
3292 BdrvChild *c;
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003293 GLOBAL_STATE_CODE();
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003294 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003295 if (c->klass->change_media) {
3296 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003297 }
3298 }
3299}
3300
Alberto Garcia0065c452018-10-31 18:16:37 +02003301/* Return true if you can reach parent going through child->inherits_from
3302 * recursively. If parent or child are NULL, return false */
3303static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3304 BlockDriverState *parent)
3305{
3306 while (child && child != parent) {
3307 child = child->inherits_from;
3308 }
3309
3310 return child != NULL;
3311}
3312
Kevin Wolf5db15a52015-09-14 15:33:33 +02003313/*
Max Reitz25191e52020-05-13 13:05:33 +02003314 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3315 * mostly used for COW backing children (role = COW), but also for
3316 * filtered children (role = FILTERED | PRIMARY).
3317 */
3318static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3319{
3320 if (bs->drv && bs->drv->is_filter) {
3321 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3322 } else {
3323 return BDRV_CHILD_COW;
3324 }
3325}
3326
3327/*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003328 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3329 * callers which don't need their own reference any more must call bdrv_unref().
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003330 *
3331 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolf5db15a52015-09-14 15:33:33 +02003332 */
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003333static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3334 BlockDriverState *child_bs,
3335 bool is_backing,
3336 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003337{
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003338 bool update_inherits_from =
3339 bdrv_inherits_from_recursive(child_bs, parent_bs);
3340 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3341 BdrvChildRole role;
Alberto Garcia0065c452018-10-31 18:16:37 +02003342
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003343 GLOBAL_STATE_CODE();
3344
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003345 if (!parent_bs->drv) {
3346 /*
3347 * Node without drv is an object without a class :/. TODO: finally fix
3348 * qcow2 driver to never clear bs->drv and implement format corruption
3349 * handling in other way.
3350 */
3351 error_setg(errp, "Node corrupted");
3352 return -EINVAL;
3353 }
3354
3355 if (child && child->frozen) {
3356 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3357 child->name, parent_bs->node_name, child->bs->node_name);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003358 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003359 }
3360
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03003361 if (is_backing && !parent_bs->drv->is_filter &&
3362 !parent_bs->drv->supports_backing)
3363 {
3364 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3365 "files", parent_bs->drv->format_name, parent_bs->node_name);
3366 return -EINVAL;
3367 }
3368
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003369 if (parent_bs->drv->is_filter) {
3370 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3371 } else if (is_backing) {
3372 role = BDRV_CHILD_COW;
3373 } else {
3374 /*
3375 * We only can use same role as it is in existing child. We don't have
3376 * infrastructure to determine role of file child in generic way
3377 */
3378 if (!child) {
3379 error_setg(errp, "Cannot set file child to format node without "
3380 "file child");
3381 return -EINVAL;
3382 }
3383 role = child->role;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003384 }
3385
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003386 if (child) {
3387 bdrv_unset_inherits_from(parent_bs, child, tran);
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03003388 bdrv_remove_child(child, tran);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003389 }
3390
3391 if (!child_bs) {
Fam Zheng8d24cce2014-05-23 21:29:45 +08003392 goto out;
3393 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003394
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003395 child = bdrv_attach_child_noperm(parent_bs, child_bs,
3396 is_backing ? "backing" : "file",
3397 &child_of_bds, role,
3398 tran, errp);
3399 if (!child) {
3400 return -EINVAL;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003401 }
3402
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003403
3404 /*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003405 * If inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003406 * point directly to bs (else it will become NULL).
3407 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003408 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003409 bdrv_set_inherits_from(child_bs, parent_bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003410 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003411
Fam Zheng8d24cce2014-05-23 21:29:45 +08003412out:
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003413 bdrv_refresh_limits(parent_bs, tran, NULL);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003414
3415 return 0;
3416}
3417
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003418static int bdrv_set_backing_noperm(BlockDriverState *bs,
3419 BlockDriverState *backing_hd,
3420 Transaction *tran, Error **errp)
3421{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003422 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003423 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3424}
3425
Kevin Wolf92140b92022-11-18 18:41:04 +01003426int bdrv_set_backing_hd_drained(BlockDriverState *bs,
3427 BlockDriverState *backing_hd,
3428 Error **errp)
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003429{
3430 int ret;
3431 Transaction *tran = tran_new();
3432
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003433 GLOBAL_STATE_CODE();
Kevin Wolf92140b92022-11-18 18:41:04 +01003434 assert(bs->quiesce_counter > 0);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003435
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003436 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3437 if (ret < 0) {
3438 goto out;
3439 }
3440
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003441 ret = bdrv_refresh_perms(bs, tran, errp);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003442out:
3443 tran_finalize(tran, ret);
Kevin Wolf92140b92022-11-18 18:41:04 +01003444 return ret;
3445}
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003446
Kevin Wolf92140b92022-11-18 18:41:04 +01003447int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3448 Error **errp)
3449{
3450 int ret;
3451 GLOBAL_STATE_CODE();
3452
3453 bdrv_drained_begin(bs);
3454 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003455 bdrv_drained_end(bs);
3456
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003457 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003458}
3459
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003460/*
3461 * Opens the backing file for a BlockDriverState if not yet open
3462 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003463 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3464 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3465 * itself, all options starting with "${bdref_key}." are considered part of the
3466 * BlockdevRef.
3467 *
3468 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003469 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003470int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3471 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003472{
Max Reitz6b6833c2019-02-01 20:29:15 +01003473 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003474 char *bdref_key_dot;
3475 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003476 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003477 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003478 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003479 QDict *options;
3480 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003481 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003482
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003483 GLOBAL_STATE_CODE();
3484
Kevin Wolf760e0062015-06-17 14:55:21 +02003485 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003486 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003487 }
3488
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003489 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003490 if (parent_options == NULL) {
3491 tmp_parent_options = qdict_new();
3492 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003493 }
3494
Paolo Bonzini9156df12012-10-18 16:49:17 +02003495 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003496
3497 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3498 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3499 g_free(bdref_key_dot);
3500
Markus Armbruster129c7d12017-03-30 19:43:12 +02003501 /*
3502 * Caution: while qdict_get_try_str() is fine, getting non-string
3503 * types would require more care. When @parent_options come from
3504 * -blockdev or blockdev_add, its members are typed according to
3505 * the QAPI schema, but when they come from -drive, they're all
3506 * QString.
3507 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003508 reference = qdict_get_try_str(parent_options, bdref_key);
3509 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003510 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003511 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003512 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003513 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003514 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003515 if (qdict_size(options) == 0) {
3516 /* If the user specifies options that do not modify the
3517 * backing file's behavior, we might still consider it the
3518 * implicit backing file. But it's easier this way, and
3519 * just specifying some of the backing BDS's options is
3520 * only possible with -drive anyway (otherwise the QAPI
3521 * schema forces the user to specify everything). */
3522 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3523 }
3524
Max Reitz6b6833c2019-02-01 20:29:15 +01003525 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003526 if (local_err) {
3527 ret = -EINVAL;
3528 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003529 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003530 goto free_exit;
3531 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003532 }
3533
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003534 if (!bs->drv || !bs->drv->supports_backing) {
3535 ret = -EINVAL;
3536 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003537 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003538 goto free_exit;
3539 }
3540
Peter Krempa6bff5972017-10-12 16:14:10 +02003541 if (!reference &&
3542 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003543 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003544 }
3545
Max Reitz6b6833c2019-02-01 20:29:15 +01003546 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003547 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003548 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003549 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003550 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003551 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003552 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003553 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003554
Max Reitz998c2012019-02-01 20:29:08 +01003555 if (implicit_backing) {
3556 bdrv_refresh_filename(backing_hd);
3557 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3558 backing_hd->filename);
3559 }
3560
Kevin Wolf5db15a52015-09-14 15:33:33 +02003561 /* Hook up the backing file link; drop our reference, bs owns the
3562 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003563 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003564 bdrv_unref(backing_hd);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003565 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003566 goto free_exit;
3567 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003568
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003569 qdict_del(parent_options, bdref_key);
3570
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003571free_exit:
3572 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003573 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003574 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003575}
3576
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003577static BlockDriverState *
3578bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003579 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003580 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003581{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003582 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003583 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003584 char *bdref_key_dot;
3585 const char *reference;
3586
Max Reitzbd86fb92020-05-13 13:05:13 +02003587 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003588
Max Reitzda557aa2013-12-20 19:28:11 +01003589 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3590 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3591 g_free(bdref_key_dot);
3592
Markus Armbruster129c7d12017-03-30 19:43:12 +02003593 /*
3594 * Caution: while qdict_get_try_str() is fine, getting non-string
3595 * types would require more care. When @options come from
3596 * -blockdev or blockdev_add, its members are typed according to
3597 * the QAPI schema, but when they come from -drive, they're all
3598 * QString.
3599 */
Max Reitzda557aa2013-12-20 19:28:11 +01003600 reference = qdict_get_try_str(options, bdref_key);
3601 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003602 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003603 error_setg(errp, "A block device must be specified for \"%s\"",
3604 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003605 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003606 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003607 goto done;
3608 }
3609
Max Reitz5b363932016-05-17 16:41:31 +02003610 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003611 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003612 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003613 goto done;
3614 }
3615
Max Reitzda557aa2013-12-20 19:28:11 +01003616done:
3617 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003618 return bs;
3619}
3620
3621/*
3622 * Opens a disk image whose options are given as BlockdevRef in another block
3623 * device's options.
3624 *
3625 * If allow_none is true, no image will be opened if filename is false and no
3626 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3627 *
3628 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3629 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3630 * itself, all options starting with "${bdref_key}." are considered part of the
3631 * BlockdevRef.
3632 *
3633 * The BlockdevRef will be removed from the options QDict.
3634 */
3635BdrvChild *bdrv_open_child(const char *filename,
3636 QDict *options, const char *bdref_key,
3637 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003638 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003639 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003640 bool allow_none, Error **errp)
3641{
3642 BlockDriverState *bs;
3643
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003644 GLOBAL_STATE_CODE();
3645
Max Reitzbd86fb92020-05-13 13:05:13 +02003646 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003647 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003648 if (bs == NULL) {
3649 return NULL;
3650 }
3651
Max Reitz258b7762020-05-13 13:05:15 +02003652 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3653 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003654}
3655
Max Reitzbd86fb92020-05-13 13:05:13 +02003656/*
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003657 * Wrapper on bdrv_open_child() for most popular case: open primary child of bs.
3658 */
3659int bdrv_open_file_child(const char *filename,
3660 QDict *options, const char *bdref_key,
3661 BlockDriverState *parent, Error **errp)
3662{
3663 BdrvChildRole role;
3664
3665 /* commit_top and mirror_top don't use this function */
3666 assert(!parent->drv->filtered_child_is_backing);
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003667 role = parent->drv->is_filter ?
3668 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE;
3669
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003670 if (!bdrv_open_child(filename, options, bdref_key, parent,
3671 &child_of_bds, role, false, errp))
3672 {
3673 return -EINVAL;
3674 }
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003675
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003676 return 0;
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003677}
3678
3679/*
Max Reitzbd86fb92020-05-13 13:05:13 +02003680 * TODO Future callers may need to specify parent/child_class in order for
3681 * option inheritance to work. Existing callers use it for the root node.
3682 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003683BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3684{
3685 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003686 QObject *obj = NULL;
3687 QDict *qdict = NULL;
3688 const char *reference = NULL;
3689 Visitor *v = NULL;
3690
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003691 GLOBAL_STATE_CODE();
3692
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003693 if (ref->type == QTYPE_QSTRING) {
3694 reference = ref->u.reference;
3695 } else {
3696 BlockdevOptions *options = &ref->u.definition;
3697 assert(ref->type == QTYPE_QDICT);
3698
3699 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003700 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003701 visit_complete(v, &obj);
3702
Max Reitz7dc847e2018-02-24 16:40:29 +01003703 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003704 qdict_flatten(qdict);
3705
3706 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3707 * compatibility with other callers) rather than what we want as the
3708 * real defaults. Apply the defaults here instead. */
3709 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3710 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3711 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003712 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3713
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003714 }
3715
Max Reitz272c02e2020-05-13 13:05:17 +02003716 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003717 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003718 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003719 visit_free(v);
3720 return bs;
3721}
3722
Max Reitz66836182016-05-17 16:41:27 +02003723static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3724 int flags,
3725 QDict *snapshot_options,
3726 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003727{
Bin Meng69fbfff2022-10-10 12:04:31 +08003728 g_autofree char *tmp_filename = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003729 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003730 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003731 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003732 int ret;
3733
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003734 GLOBAL_STATE_CODE();
3735
Kevin Wolfb9988752014-04-03 12:09:34 +02003736 /* if snapshot, we create a temporary backing file and open it
3737 instead of opening 'filename' directly */
3738
3739 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003740 total_size = bdrv_getlength(bs);
3741 if (total_size < 0) {
3742 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003743 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003744 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003745
3746 /* Create the temporary image */
Bin Meng69fbfff2022-10-10 12:04:31 +08003747 tmp_filename = create_tmp_file(errp);
3748 if (!tmp_filename) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003749 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003750 }
3751
Max Reitzef810432014-12-02 18:32:42 +01003752 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003753 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003754 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003755 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003756 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003757 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003758 error_prepend(errp, "Could not create temporary overlay '%s': ",
3759 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003760 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003761 }
3762
Kevin Wolf73176be2016-03-07 13:02:15 +01003763 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003764 qdict_put_str(snapshot_options, "file.driver", "file");
3765 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3766 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003767
Max Reitz5b363932016-05-17 16:41:31 +02003768 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003769 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003770 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003771 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003772 }
3773
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003774 ret = bdrv_append(bs_snapshot, bs, errp);
3775 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003776 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003777 goto out;
3778 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003779
3780out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003781 qobject_unref(snapshot_options);
Eric Blakeff6ed712017-04-27 16:58:18 -05003782 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003783}
3784
Max Reitzda557aa2013-12-20 19:28:11 +01003785/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003786 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003787 *
3788 * options is a QDict of options to pass to the block drivers, or NULL for an
3789 * empty set of options. The reference to the QDict belongs to the block layer
3790 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003791 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003792 *
3793 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3794 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003795 *
3796 * The reference parameter may be used to specify an existing block device which
3797 * should be opened. If specified, neither options nor a filename may be given,
3798 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003799 */
Max Reitz5b363932016-05-17 16:41:31 +02003800static BlockDriverState *bdrv_open_inherit(const char *filename,
3801 const char *reference,
3802 QDict *options, int flags,
3803 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003804 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003805 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003806 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003807{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003808 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003809 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003810 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003811 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003812 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003813 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003814 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003815 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003816 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003817 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003818
Max Reitzbd86fb92020-05-13 13:05:13 +02003819 assert(!child_class || !flags);
3820 assert(!child_class == !parent);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003821 GLOBAL_STATE_CODE();
Max Reitzf67503e2014-02-18 18:33:05 +01003822
Max Reitzddf56362014-02-18 18:33:06 +01003823 if (reference) {
3824 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003825 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003826
Max Reitzddf56362014-02-18 18:33:06 +01003827 if (filename || options_non_empty) {
3828 error_setg(errp, "Cannot reference an existing block device with "
3829 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003830 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003831 }
3832
3833 bs = bdrv_lookup_bs(reference, reference, errp);
3834 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003835 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003836 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003837
Max Reitzddf56362014-02-18 18:33:06 +01003838 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003839 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003840 }
3841
Max Reitz5b363932016-05-17 16:41:31 +02003842 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003843
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003844 /* NULL means an empty set of options */
3845 if (options == NULL) {
3846 options = qdict_new();
3847 }
3848
Kevin Wolf145f5982015-05-08 16:15:03 +02003849 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003850 parse_json_protocol(options, &filename, &local_err);
3851 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003852 goto fail;
3853 }
3854
Kevin Wolf145f5982015-05-08 16:15:03 +02003855 bs->explicit_options = qdict_clone_shallow(options);
3856
Max Reitzbd86fb92020-05-13 13:05:13 +02003857 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003858 bool parent_is_format;
3859
3860 if (parent->drv) {
3861 parent_is_format = parent->drv->is_format;
3862 } else {
3863 /*
3864 * parent->drv is not set yet because this node is opened for
3865 * (potential) format probing. That means that @parent is going
3866 * to be a format node.
3867 */
3868 parent_is_format = true;
3869 }
3870
Kevin Wolfbddcec32015-04-09 18:47:50 +02003871 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003872 child_class->inherit_options(child_role, parent_is_format,
3873 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003874 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003875 }
3876
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003877 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003878 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003879 goto fail;
3880 }
3881
Markus Armbruster129c7d12017-03-30 19:43:12 +02003882 /*
3883 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3884 * Caution: getting a boolean member of @options requires care.
3885 * When @options come from -blockdev or blockdev_add, members are
3886 * typed according to the QAPI schema, but when they come from
3887 * -drive, they're all QString.
3888 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003889 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3890 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3891 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3892 } else {
3893 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003894 }
3895
3896 if (flags & BDRV_O_SNAPSHOT) {
3897 snapshot_options = qdict_new();
3898 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3899 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003900 /* Let bdrv_backing_options() override "read-only" */
3901 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003902 bdrv_inherited_options(BDRV_CHILD_COW, true,
3903 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003904 }
3905
Kevin Wolf62392eb2015-04-24 16:38:02 +02003906 bs->open_flags = flags;
3907 bs->options = options;
3908 options = qdict_clone_shallow(options);
3909
Kevin Wolf76c591b2014-06-04 14:19:44 +02003910 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003911 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003912 drvname = qdict_get_try_str(options, "driver");
3913 if (drvname) {
3914 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003915 if (!drv) {
3916 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003917 goto fail;
3918 }
3919 }
3920
3921 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003922
Markus Armbruster129c7d12017-03-30 19:43:12 +02003923 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003924 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003925 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3926 (backing && *backing == '\0'))
3927 {
Max Reitz4f7be282018-02-24 16:40:33 +01003928 if (backing) {
3929 warn_report("Use of \"backing\": \"\" is deprecated; "
3930 "use \"backing\": null instead");
3931 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003932 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003933 qdict_del(bs->explicit_options, "backing");
3934 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003935 qdict_del(options, "backing");
3936 }
3937
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003938 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003939 * probing, the block drivers will do their own bdrv_open_child() for the
3940 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003941 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003942 BlockDriverState *file_bs;
3943
3944 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003945 &child_of_bds, BDRV_CHILD_IMAGE,
3946 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003947 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003948 goto fail;
3949 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003950 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003951 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3952 * looking at the header to guess the image format. This works even
3953 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003954 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003955 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003956 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003957 if (local_err) {
3958 goto fail;
3959 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003960
Eric Blake46f5ac22017-04-27 16:58:17 -05003961 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003962 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003963 }
3964
Kevin Wolf76c591b2014-06-04 14:19:44 +02003965 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003966 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003967 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003968 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003969 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003970 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003971 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003972 /*
3973 * This option update would logically belong in bdrv_fill_options(),
3974 * but we first need to open bs->file for the probing to work, while
3975 * opening bs->file already requires the (mostly) final set of options
3976 * so that cache mode etc. can be inherited.
3977 *
3978 * Adding the driver later is somewhat ugly, but it's not an option
3979 * that would ever be inherited, so it's correct. We just need to make
3980 * sure to update both bs->options (which has the full effective
3981 * options for bs) and options (which has file.* already removed).
3982 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003983 qdict_put_str(bs->options, "driver", drv->format_name);
3984 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003985 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003986 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003987 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003988 }
3989
Max Reitz53a29512015-03-19 14:53:16 -04003990 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3991 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3992 /* file must be NULL if a protocol BDS is about to be created
3993 * (the inverse results in an error message from bdrv_open_common()) */
3994 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3995
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003996 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003997 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003998 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003999 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01004000 }
4001
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004002 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004003 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01004004 file = NULL;
4005 }
4006
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004007 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02004008 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01004009 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004010 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004011 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004012 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004013 }
4014
Alberto Garcia50196d72018-09-06 12:37:03 +03004015 /* Remove all children options and references
4016 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03004017 QLIST_FOREACH(child, &bs->children, next) {
4018 char *child_key_dot;
4019 child_key_dot = g_strdup_printf("%s.", child->name);
4020 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4021 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03004022 qdict_del(bs->explicit_options, child->name);
4023 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03004024 g_free(child_key_dot);
4025 }
4026
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004027 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01004028 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004029 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01004030 if (flags & BDRV_O_PROTOCOL) {
4031 error_setg(errp, "Block protocol '%s' doesn't support the option "
4032 "'%s'", drv->format_name, entry->key);
4033 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01004034 error_setg(errp,
4035 "Block format '%s' does not support the option '%s'",
4036 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01004037 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004038
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004039 goto close_and_fail;
4040 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004041
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01004042 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004043
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004044 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03004045 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004046
4047 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4048 * temporary snapshot afterwards. */
4049 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02004050 BlockDriverState *snapshot_bs;
4051 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4052 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01004053 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004054 if (local_err) {
4055 goto close_and_fail;
4056 }
Max Reitz5b363932016-05-17 16:41:31 +02004057 /* We are not going to return bs but the overlay on top of it
4058 * (snapshot_bs); thus, we have to drop the strong reference to bs
4059 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4060 * though, because the overlay still has a reference to it. */
4061 bdrv_unref(bs);
4062 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02004063 }
4064
Max Reitz5b363932016-05-17 16:41:31 +02004065 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004066
Kevin Wolf8bfea152014-04-11 19:16:36 +02004067fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004068 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004069 qobject_unref(snapshot_options);
4070 qobject_unref(bs->explicit_options);
4071 qobject_unref(bs->options);
4072 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004073 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03004074 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02004075 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004076 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004077 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004078
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004079close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02004080 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004081 qobject_unref(snapshot_options);
4082 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004083 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004084 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004085}
4086
Max Reitz5b363932016-05-17 16:41:31 +02004087BlockDriverState *bdrv_open(const char *filename, const char *reference,
4088 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02004089{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004090 GLOBAL_STATE_CODE();
4091
Max Reitz5b363932016-05-17 16:41:31 +02004092 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02004093 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004094}
4095
Alberto Garciafaf116b2019-03-12 18:48:49 +02004096/* Return true if the NULL-terminated @list contains @str */
4097static bool is_str_in_list(const char *str, const char *const *list)
4098{
4099 if (str && list) {
4100 int i;
4101 for (i = 0; list[i] != NULL; i++) {
4102 if (!strcmp(str, list[i])) {
4103 return true;
4104 }
4105 }
4106 }
4107 return false;
4108}
4109
4110/*
4111 * Check that every option set in @bs->options is also set in
4112 * @new_opts.
4113 *
4114 * Options listed in the common_options list and in
4115 * @bs->drv->mutable_opts are skipped.
4116 *
4117 * Return 0 on success, otherwise return -EINVAL and set @errp.
4118 */
4119static int bdrv_reset_options_allowed(BlockDriverState *bs,
4120 const QDict *new_opts, Error **errp)
4121{
4122 const QDictEntry *e;
4123 /* These options are common to all block drivers and are handled
4124 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4125 const char *const common_options[] = {
4126 "node-name", "discard", "cache.direct", "cache.no-flush",
4127 "read-only", "auto-read-only", "detect-zeroes", NULL
4128 };
4129
4130 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4131 if (!qdict_haskey(new_opts, e->key) &&
4132 !is_str_in_list(e->key, common_options) &&
4133 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4134 error_setg(errp, "Option '%s' cannot be reset "
4135 "to its default value", e->key);
4136 return -EINVAL;
4137 }
4138 }
4139
4140 return 0;
4141}
4142
Jeff Codye971aa12012-09-20 15:13:19 -04004143/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004144 * Returns true if @child can be reached recursively from @bs
4145 */
4146static bool bdrv_recurse_has_child(BlockDriverState *bs,
4147 BlockDriverState *child)
4148{
4149 BdrvChild *c;
4150
4151 if (bs == child) {
4152 return true;
4153 }
4154
4155 QLIST_FOREACH(c, &bs->children, next) {
4156 if (bdrv_recurse_has_child(c->bs, child)) {
4157 return true;
4158 }
4159 }
4160
4161 return false;
4162}
4163
4164/*
Jeff Codye971aa12012-09-20 15:13:19 -04004165 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4166 * reopen of multiple devices.
4167 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004168 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04004169 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4170 * be created and initialized. This newly created BlockReopenQueue should be
4171 * passed back in for subsequent calls that are intended to be of the same
4172 * atomic 'set'.
4173 *
4174 * bs is the BlockDriverState to add to the reopen queue.
4175 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004176 * options contains the changed options for the associated bs
4177 * (the BlockReopenQueue takes ownership)
4178 *
Jeff Codye971aa12012-09-20 15:13:19 -04004179 * flags contains the open flags for the associated bs
4180 *
4181 * returns a pointer to bs_queue, which is either the newly allocated
4182 * bs_queue, or the existing bs_queue being used.
4183 *
Kevin Wolfd22933a2022-11-18 18:41:02 +01004184 * bs is drained here and undrained by bdrv_reopen_queue_free().
Kevin Wolf2e117862022-11-18 18:41:01 +01004185 *
4186 * To be called with bs->aio_context locked.
Jeff Codye971aa12012-09-20 15:13:19 -04004187 */
Kevin Wolf28518102015-05-08 17:07:31 +02004188static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4189 BlockDriverState *bs,
4190 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004191 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02004192 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004193 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02004194 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004195 int parent_flags,
4196 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04004197{
4198 assert(bs != NULL);
4199
4200 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02004201 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004202 QDict *old_options, *explicit_options, *options_copy;
4203 int flags;
4204 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004205
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05004206 GLOBAL_STATE_CODE();
Kevin Wolf1a63a902017-12-06 20:24:44 +01004207
Kevin Wolfd22933a2022-11-18 18:41:02 +01004208 bdrv_drained_begin(bs);
4209
Jeff Codye971aa12012-09-20 15:13:19 -04004210 if (bs_queue == NULL) {
4211 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004212 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04004213 }
4214
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004215 if (!options) {
4216 options = qdict_new();
4217 }
4218
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004219 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004220 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004221 if (bs == bs_entry->state.bs) {
4222 break;
4223 }
4224 }
4225
Kevin Wolf28518102015-05-08 17:07:31 +02004226 /*
4227 * Precedence of options:
4228 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004229 * 2. Retained from explicitly set options of bs
4230 * 3. Inherited from parent node
4231 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004232 */
4233
Kevin Wolf145f5982015-05-08 16:15:03 +02004234 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004235 if (bs_entry || keep_old_opts) {
4236 old_options = qdict_clone_shallow(bs_entry ?
4237 bs_entry->state.explicit_options :
4238 bs->explicit_options);
4239 bdrv_join_options(bs, options, old_options);
4240 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004241 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004242
4243 explicit_options = qdict_clone_shallow(options);
4244
Kevin Wolf28518102015-05-08 17:07:31 +02004245 /* Inherit from parent node */
4246 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004247 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004248 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004249 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004250 } else {
4251 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004252 }
4253
Alberto Garcia077e8e22019-03-12 18:48:44 +02004254 if (keep_old_opts) {
4255 /* Old values are used for options that aren't set yet */
4256 old_options = qdict_clone_shallow(bs->options);
4257 bdrv_join_options(bs, options, old_options);
4258 qobject_unref(old_options);
4259 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004260
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004261 /* We have the final set of options so let's update the flags */
4262 options_copy = qdict_clone_shallow(options);
4263 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4264 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4265 update_flags_from_options(&flags, opts);
4266 qemu_opts_del(opts);
4267 qobject_unref(options_copy);
4268
Kevin Wolffd452022017-08-03 17:02:59 +02004269 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004270 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004271 if (flags & BDRV_O_RDWR) {
4272 flags |= BDRV_O_ALLOW_RDWR;
4273 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004274
Kevin Wolf1857c972017-09-14 14:53:46 +02004275 if (!bs_entry) {
4276 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004277 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004278 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004279 qobject_unref(bs_entry->state.options);
4280 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004281 }
4282
4283 bs_entry->state.bs = bs;
4284 bs_entry->state.options = options;
4285 bs_entry->state.explicit_options = explicit_options;
4286 bs_entry->state.flags = flags;
4287
Alberto Garcia85466322019-03-12 18:48:45 +02004288 /*
4289 * If keep_old_opts is false then it means that unspecified
4290 * options must be reset to their original value. We don't allow
4291 * resetting 'backing' but we need to know if the option is
4292 * missing in order to decide if we have to return an error.
4293 */
4294 if (!keep_old_opts) {
4295 bs_entry->state.backing_missing =
4296 !qdict_haskey(options, "backing") &&
4297 !qdict_haskey(options, "backing.driver");
4298 }
4299
Kevin Wolf67251a32015-04-09 18:54:04 +02004300 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004301 QDict *new_child_options = NULL;
4302 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004303
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004304 /* reopen can only change the options of block devices that were
4305 * implicitly created and inherited options. For other (referenced)
4306 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004307 if (child->bs->inherits_from != bs) {
4308 continue;
4309 }
4310
Alberto Garcia85466322019-03-12 18:48:45 +02004311 /* Check if the options contain a child reference */
4312 if (qdict_haskey(options, child->name)) {
4313 const char *childref = qdict_get_try_str(options, child->name);
4314 /*
4315 * The current child must not be reopened if the child
4316 * reference is null or points to a different node.
4317 */
4318 if (g_strcmp0(childref, child->bs->node_name)) {
4319 continue;
4320 }
4321 /*
4322 * If the child reference points to the current child then
4323 * reopen it with its existing set of options (note that
4324 * it can still inherit new options from the parent).
4325 */
4326 child_keep_old = true;
4327 } else {
4328 /* Extract child options ("child-name.*") */
4329 char *child_key_dot = g_strdup_printf("%s.", child->name);
4330 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4331 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4332 g_free(child_key_dot);
4333 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004334
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004335 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004336 child->klass, child->role, bs->drv->is_format,
4337 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004338 }
4339
Jeff Codye971aa12012-09-20 15:13:19 -04004340 return bs_queue;
4341}
4342
Kevin Wolf2e117862022-11-18 18:41:01 +01004343/* To be called with bs->aio_context locked */
Kevin Wolf28518102015-05-08 17:07:31 +02004344BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4345 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004346 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004347{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004348 GLOBAL_STATE_CODE();
4349
Max Reitz3cdc69d2020-05-13 13:05:18 +02004350 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4351 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004352}
4353
Alberto Garciaab5b52282021-07-08 13:47:05 +02004354void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4355{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004356 GLOBAL_STATE_CODE();
Alberto Garciaab5b52282021-07-08 13:47:05 +02004357 if (bs_queue) {
4358 BlockReopenQueueEntry *bs_entry, *next;
4359 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolfd22933a2022-11-18 18:41:02 +01004360 AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs);
4361
4362 aio_context_acquire(ctx);
4363 bdrv_drained_end(bs_entry->state.bs);
4364 aio_context_release(ctx);
4365
Alberto Garciaab5b52282021-07-08 13:47:05 +02004366 qobject_unref(bs_entry->state.explicit_options);
4367 qobject_unref(bs_entry->state.options);
4368 g_free(bs_entry);
4369 }
4370 g_free(bs_queue);
4371 }
4372}
4373
Jeff Codye971aa12012-09-20 15:13:19 -04004374/*
4375 * Reopen multiple BlockDriverStates atomically & transactionally.
4376 *
4377 * The queue passed in (bs_queue) must have been built up previous
4378 * via bdrv_reopen_queue().
4379 *
4380 * Reopens all BDS specified in the queue, with the appropriate
4381 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004382 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004383 * data cleaned up.
4384 *
4385 * If all devices prepare successfully, then the changes are committed
4386 * to all devices.
4387 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004388 * All affected nodes must be drained between bdrv_reopen_queue() and
4389 * bdrv_reopen_multiple().
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004390 *
4391 * To be called from the main thread, with all other AioContexts unlocked.
Jeff Codye971aa12012-09-20 15:13:19 -04004392 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004393int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004394{
4395 int ret = -1;
4396 BlockReopenQueueEntry *bs_entry, *next;
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004397 AioContext *ctx;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004398 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004399 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004400
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004401 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Jeff Codye971aa12012-09-20 15:13:19 -04004402 assert(bs_queue != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004403 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004404
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004405 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004406 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4407 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004408 ret = bdrv_flush(bs_entry->state.bs);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004409 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004410 if (ret < 0) {
4411 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004412 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004413 }
4414 }
4415
4416 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004417 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004418 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4419 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004420 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004421 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004422 if (ret < 0) {
4423 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004424 }
4425 bs_entry->prepared = true;
4426 }
4427
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004428 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004429 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004430
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004431 refresh_list = g_slist_prepend(refresh_list, state->bs);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004432 if (state->old_backing_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004433 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004434 }
Alberto Garciaecd30d22021-06-10 15:05:36 +03004435 if (state->old_file_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004436 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs);
Alberto Garciaecd30d22021-06-10 15:05:36 +03004437 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004438 }
4439
4440 /*
4441 * Note that file-posix driver rely on permission update done during reopen
4442 * (even if no permission changed), because it wants "new" permissions for
4443 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4444 * in raw_reopen_prepare() which is called with "old" permissions.
4445 */
4446 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4447 if (ret < 0) {
4448 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004449 }
4450
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004451 /*
4452 * If we reach this point, we have success and just need to apply the
4453 * changes.
4454 *
4455 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4456 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4457 * children are usually goes after parents in reopen-queue, so go from last
4458 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004459 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004460 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004461 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4462 aio_context_acquire(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004463 bdrv_reopen_commit(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004464 aio_context_release(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004465 }
4466
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004467 tran_commit(tran);
4468
4469 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4470 BlockDriverState *bs = bs_entry->state.bs;
4471
4472 if (bs->drv->bdrv_reopen_commit_post) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004473 ctx = bdrv_get_aio_context(bs);
4474 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004475 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004476 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004477 }
4478 }
4479
Jeff Codye971aa12012-09-20 15:13:19 -04004480 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004481 goto cleanup;
4482
4483abort:
4484 tran_abort(tran);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004485 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004486 if (bs_entry->prepared) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004487 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4488 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004489 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004490 aio_context_release(ctx);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004491 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004492 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004493
Jeff Codye971aa12012-09-20 15:13:19 -04004494cleanup:
Alberto Garciaab5b52282021-07-08 13:47:05 +02004495 bdrv_reopen_queue_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004496
Jeff Codye971aa12012-09-20 15:13:19 -04004497 return ret;
4498}
4499
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004500int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4501 Error **errp)
4502{
4503 AioContext *ctx = bdrv_get_aio_context(bs);
4504 BlockReopenQueue *queue;
4505 int ret;
4506
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004507 GLOBAL_STATE_CODE();
4508
Kevin Wolf2e117862022-11-18 18:41:01 +01004509 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4510
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004511 if (ctx != qemu_get_aio_context()) {
4512 aio_context_release(ctx);
4513 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004514 ret = bdrv_reopen_multiple(queue, errp);
4515
4516 if (ctx != qemu_get_aio_context()) {
4517 aio_context_acquire(ctx);
4518 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004519
4520 return ret;
4521}
4522
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004523int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4524 Error **errp)
4525{
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004526 QDict *opts = qdict_new();
4527
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004528 GLOBAL_STATE_CODE();
4529
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004530 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4531
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004532 return bdrv_reopen(bs, opts, true, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004533}
4534
Jeff Codye971aa12012-09-20 15:13:19 -04004535/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004536 * Take a BDRVReopenState and check if the value of 'backing' in the
4537 * reopen_state->options QDict is valid or not.
4538 *
4539 * If 'backing' is missing from the QDict then return 0.
4540 *
4541 * If 'backing' contains the node name of the backing file of
4542 * reopen_state->bs then return 0.
4543 *
4544 * If 'backing' contains a different node name (or is null) then check
4545 * whether the current backing file can be replaced with the new one.
4546 * If that's the case then reopen_state->replace_backing_bs is set to
4547 * true and reopen_state->new_backing_bs contains a pointer to the new
4548 * backing BlockDriverState (or NULL).
4549 *
4550 * Return 0 on success, otherwise return < 0 and set @errp.
4551 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004552static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4553 bool is_backing, Transaction *tran,
4554 Error **errp)
Alberto Garciacb828c32019-03-12 18:48:47 +02004555{
4556 BlockDriverState *bs = reopen_state->bs;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004557 BlockDriverState *new_child_bs;
4558 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4559 child_bs(bs->file);
4560 const char *child_name = is_backing ? "backing" : "file";
Alberto Garciacb828c32019-03-12 18:48:47 +02004561 QObject *value;
4562 const char *str;
4563
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05004564 GLOBAL_STATE_CODE();
4565
Alberto Garciaecd30d22021-06-10 15:05:36 +03004566 value = qdict_get(reopen_state->options, child_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004567 if (value == NULL) {
4568 return 0;
4569 }
4570
4571 switch (qobject_type(value)) {
4572 case QTYPE_QNULL:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004573 assert(is_backing); /* The 'file' option does not allow a null value */
4574 new_child_bs = NULL;
Alberto Garciacb828c32019-03-12 18:48:47 +02004575 break;
4576 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004577 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciaecd30d22021-06-10 15:05:36 +03004578 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4579 if (new_child_bs == NULL) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004580 return -EINVAL;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004581 } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4582 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4583 "cycle", str, child_name, bs->node_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004584 return -EINVAL;
4585 }
4586 break;
4587 default:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004588 /*
4589 * The options QDict has been flattened, so 'backing' and 'file'
4590 * do not allow any other data type here.
4591 */
Alberto Garciacb828c32019-03-12 18:48:47 +02004592 g_assert_not_reached();
4593 }
4594
Alberto Garciaecd30d22021-06-10 15:05:36 +03004595 if (old_child_bs == new_child_bs) {
4596 return 0;
4597 }
4598
4599 if (old_child_bs) {
4600 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004601 return 0;
4602 }
4603
Alberto Garciaecd30d22021-06-10 15:05:36 +03004604 if (old_child_bs->implicit) {
4605 error_setg(errp, "Cannot replace implicit %s child of %s",
4606 child_name, bs->node_name);
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004607 return -EPERM;
4608 }
4609 }
4610
Alberto Garciaecd30d22021-06-10 15:05:36 +03004611 if (bs->drv->is_filter && !old_child_bs) {
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03004612 /*
4613 * Filters always have a file or a backing child, so we are trying to
4614 * change wrong child
4615 */
4616 error_setg(errp, "'%s' is a %s filter node that does not support a "
Alberto Garciaecd30d22021-06-10 15:05:36 +03004617 "%s child", bs->node_name, bs->drv->format_name, child_name);
Max Reitz1d42f482019-06-12 17:24:39 +02004618 return -EINVAL;
4619 }
4620
Alberto Garciaecd30d22021-06-10 15:05:36 +03004621 if (is_backing) {
4622 reopen_state->old_backing_bs = old_child_bs;
4623 } else {
4624 reopen_state->old_file_bs = old_child_bs;
4625 }
4626
4627 return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4628 tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004629}
4630
4631/*
Jeff Codye971aa12012-09-20 15:13:19 -04004632 * Prepares a BlockDriverState for reopen. All changes are staged in the
4633 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4634 * the block driver layer .bdrv_reopen_prepare()
4635 *
4636 * bs is the BlockDriverState to reopen
4637 * flags are the new open flags
4638 * queue is the reopen queue
4639 *
4640 * Returns 0 on success, non-zero on error. On error errp will be set
4641 * as well.
4642 *
4643 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4644 * It is the responsibility of the caller to then call the abort() or
4645 * commit() for any other BDS that have been left in a prepare() state
4646 *
4647 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004648static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004649 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +03004650 Transaction *change_child_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004651{
4652 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004653 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004654 Error *local_err = NULL;
4655 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004656 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004657 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004658 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004659 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004660 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004661
4662 assert(reopen_state != NULL);
4663 assert(reopen_state->bs->drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004664 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004665 drv = reopen_state->bs->drv;
4666
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004667 /* This function and each driver's bdrv_reopen_prepare() remove
4668 * entries from reopen_state->options as they are processed, so
4669 * we need to make a copy of the original QDict. */
4670 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4671
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004672 /* Process generic block layer options */
4673 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004674 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004675 ret = -EINVAL;
4676 goto error;
4677 }
4678
Alberto Garciae6d79c42018-11-12 16:00:47 +02004679 /* This was already called in bdrv_reopen_queue_child() so the flags
4680 * are up-to-date. This time we simply want to remove the options from
4681 * QemuOpts in order to indicate that they have been processed. */
4682 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004683 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004684 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004685
Alberto Garcia415bbca2018-10-03 13:23:13 +03004686 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004687 if (discard != NULL) {
4688 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4689 error_setg(errp, "Invalid discard option");
4690 ret = -EINVAL;
4691 goto error;
4692 }
4693 }
4694
Alberto Garcia543770b2018-09-06 12:37:09 +03004695 reopen_state->detect_zeroes =
4696 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4697 if (local_err) {
4698 error_propagate(errp, local_err);
4699 ret = -EINVAL;
4700 goto error;
4701 }
4702
Alberto Garcia57f9db92018-09-06 12:37:06 +03004703 /* All other options (including node-name and driver) must be unchanged.
4704 * Put them back into the QDict, so that they are checked at the end
4705 * of this function. */
4706 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004707
Jeff Cody3d8ce172017-04-07 16:55:30 -04004708 /* If we are to stay read-only, do not allow permission change
4709 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4710 * not set, or if the BDS still has copy_on_read enabled */
4711 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004712 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004713 if (local_err) {
4714 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004715 goto error;
4716 }
4717
Jeff Codye971aa12012-09-20 15:13:19 -04004718 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004719 /*
4720 * If a driver-specific option is missing, it means that we
4721 * should reset it to its default value.
4722 * But not all options allow that, so we need to check it first.
4723 */
4724 ret = bdrv_reset_options_allowed(reopen_state->bs,
4725 reopen_state->options, errp);
4726 if (ret) {
4727 goto error;
4728 }
4729
Jeff Codye971aa12012-09-20 15:13:19 -04004730 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4731 if (ret) {
4732 if (local_err != NULL) {
4733 error_propagate(errp, local_err);
4734 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004735 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004736 error_setg(errp, "failed while preparing to reopen image '%s'",
4737 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004738 }
4739 goto error;
4740 }
4741 } else {
4742 /* It is currently mandatory to have a bdrv_reopen_prepare()
4743 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004744 error_setg(errp, "Block format '%s' used by node '%s' "
4745 "does not support reopening files", drv->format_name,
4746 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004747 ret = -1;
4748 goto error;
4749 }
4750
Max Reitz9ad08c42018-11-16 17:45:24 +01004751 drv_prepared = true;
4752
Alberto Garciabacd9b82019-03-12 18:48:46 +02004753 /*
4754 * We must provide the 'backing' option if the BDS has a backing
4755 * file or if the image file has a backing file name as part of
4756 * its metadata. Otherwise the 'backing' option can be omitted.
4757 */
4758 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004759 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004760 error_setg(errp, "backing is missing for '%s'",
4761 reopen_state->bs->node_name);
4762 ret = -EINVAL;
4763 goto error;
4764 }
4765
Alberto Garciacb828c32019-03-12 18:48:47 +02004766 /*
4767 * Allow changing the 'backing' option. The new value can be
4768 * either a reference to an existing node (using its node name)
4769 * or NULL to simply detach the current backing file.
4770 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004771 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4772 change_child_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004773 if (ret < 0) {
4774 goto error;
4775 }
4776 qdict_del(reopen_state->options, "backing");
4777
Alberto Garciaecd30d22021-06-10 15:05:36 +03004778 /* Allow changing the 'file' option. In this case NULL is not allowed */
4779 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4780 change_child_tran, errp);
4781 if (ret < 0) {
4782 goto error;
4783 }
4784 qdict_del(reopen_state->options, "file");
4785
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004786 /* Options that are not handled are only okay if they are unchanged
4787 * compared to the old state. It is expected that some options are only
4788 * used for the initial open, but not reopen (e.g. filename) */
4789 if (qdict_size(reopen_state->options)) {
4790 const QDictEntry *entry = qdict_first(reopen_state->options);
4791
4792 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004793 QObject *new = entry->value;
4794 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004795
Alberto Garciadb905282018-09-06 12:37:05 +03004796 /* Allow child references (child_name=node_name) as long as they
4797 * point to the current child (i.e. everything stays the same). */
4798 if (qobject_type(new) == QTYPE_QSTRING) {
4799 BdrvChild *child;
4800 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4801 if (!strcmp(child->name, entry->key)) {
4802 break;
4803 }
4804 }
4805
4806 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004807 if (!strcmp(child->bs->node_name,
4808 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004809 continue; /* Found child with this name, skip option */
4810 }
4811 }
4812 }
4813
Max Reitz54fd1b02017-11-14 19:01:26 +01004814 /*
4815 * TODO: When using -drive to specify blockdev options, all values
4816 * will be strings; however, when using -blockdev, blockdev-add or
4817 * filenames using the json:{} pseudo-protocol, they will be
4818 * correctly typed.
4819 * In contrast, reopening options are (currently) always strings
4820 * (because you can only specify them through qemu-io; all other
4821 * callers do not specify any options).
4822 * Therefore, when using anything other than -drive to create a BDS,
4823 * this cannot detect non-string options as unchanged, because
4824 * qobject_is_equal() always returns false for objects of different
4825 * type. In the future, this should be remedied by correctly typing
4826 * all options. For now, this is not too big of an issue because
4827 * the user can simply omit options which cannot be changed anyway,
4828 * so they will stay unchanged.
4829 */
4830 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004831 error_setg(errp, "Cannot change the option '%s'", entry->key);
4832 ret = -EINVAL;
4833 goto error;
4834 }
4835 } while ((entry = qdict_next(reopen_state->options, entry)));
4836 }
4837
Jeff Codye971aa12012-09-20 15:13:19 -04004838 ret = 0;
4839
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004840 /* Restore the original reopen_state->options QDict */
4841 qobject_unref(reopen_state->options);
4842 reopen_state->options = qobject_ref(orig_reopen_opts);
4843
Jeff Codye971aa12012-09-20 15:13:19 -04004844error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004845 if (ret < 0 && drv_prepared) {
4846 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4847 * call drv->bdrv_reopen_abort() before signaling an error
4848 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4849 * when the respective bdrv_reopen_prepare() has failed) */
4850 if (drv->bdrv_reopen_abort) {
4851 drv->bdrv_reopen_abort(reopen_state);
4852 }
4853 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004854 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004855 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004856 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004857 return ret;
4858}
4859
4860/*
4861 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4862 * makes them final by swapping the staging BlockDriverState contents into
4863 * the active BlockDriverState contents.
4864 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004865static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004866{
4867 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004868 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004869 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004870
4871 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004872 bs = reopen_state->bs;
4873 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004874 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004875 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004876
4877 /* If there are any driver level actions to take */
4878 if (drv->bdrv_reopen_commit) {
4879 drv->bdrv_reopen_commit(reopen_state);
4880 }
4881
4882 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004883 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004884 qobject_unref(bs->options);
Alberto Garciaab5b52282021-07-08 13:47:05 +02004885 qobject_ref(reopen_state->explicit_options);
4886 qobject_ref(reopen_state->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004887
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004888 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004889 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004890 bs->open_flags = reopen_state->flags;
Alberto Garcia543770b2018-09-06 12:37:09 +03004891 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004892
Alberto Garcia50196d72018-09-06 12:37:03 +03004893 /* Remove child references from bs->options and bs->explicit_options.
4894 * Child options were already removed in bdrv_reopen_queue_child() */
4895 QLIST_FOREACH(child, &bs->children, next) {
4896 qdict_del(bs->explicit_options, child->name);
4897 qdict_del(bs->options, child->name);
4898 }
Vladimir Sementsov-Ogievskiy3d0e8742021-06-10 15:05:35 +03004899 /* backing is probably removed, so it's not handled by previous loop */
4900 qdict_del(bs->explicit_options, "backing");
4901 qdict_del(bs->options, "backing");
4902
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004903 bdrv_refresh_limits(bs, NULL, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004904}
4905
4906/*
4907 * Abort the reopen, and delete and free the staged changes in
4908 * reopen_state
4909 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004910static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004911{
4912 BlockDriver *drv;
4913
4914 assert(reopen_state != NULL);
4915 drv = reopen_state->bs->drv;
4916 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004917 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004918
4919 if (drv->bdrv_reopen_abort) {
4920 drv->bdrv_reopen_abort(reopen_state);
4921 }
4922}
4923
4924
Max Reitz64dff522016-01-29 16:36:10 +01004925static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004926{
Max Reitz33384422014-06-20 21:57:33 +02004927 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004928 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004929
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004930 GLOBAL_STATE_CODE();
Max Reitz30f55fb2016-05-17 16:41:32 +02004931 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004932
Paolo Bonzinifc272912015-12-23 11:48:24 +01004933 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004934 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004935 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004936
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004937 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004938 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004939 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004940 bs->drv->bdrv_close(bs);
4941 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004942 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004943 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004944
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004945 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004946 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004947 }
4948
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03004949 assert(!bs->backing);
4950 assert(!bs->file);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004951 g_free(bs->opaque);
4952 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004953 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004954 bs->backing_file[0] = '\0';
4955 bs->backing_format[0] = '\0';
4956 bs->total_sectors = 0;
4957 bs->encrypted = false;
4958 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004959 qobject_unref(bs->options);
4960 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004961 bs->options = NULL;
4962 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004963 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004964 bs->full_open_options = NULL;
Hanna Reitz0bc329f2021-08-12 10:41:44 +02004965 g_free(bs->block_status_cache);
4966 bs->block_status_cache = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004967
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004968 bdrv_release_named_dirty_bitmaps(bs);
4969 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4970
Max Reitz33384422014-06-20 21:57:33 +02004971 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4972 g_free(ban);
4973 }
4974 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004975 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004976
4977 /*
4978 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4979 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4980 * gets called.
4981 */
4982 if (bs->quiesce_counter) {
4983 bdrv_drain_all_end_quiesce(bs);
4984 }
bellardb3380822004-03-14 21:38:54 +00004985}
4986
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004987void bdrv_close_all(void)
4988{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004989 GLOBAL_STATE_CODE();
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04004990 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004991
Max Reitzca9bd242016-01-29 16:36:14 +01004992 /* Drop references from requests still in flight, such as canceled block
4993 * jobs whose AIO context has not been polled yet */
4994 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004995
Max Reitzca9bd242016-01-29 16:36:14 +01004996 blk_remove_all_bs();
4997 blockdev_close_all_bdrv_states();
4998
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004999 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005000}
5001
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005002static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005003{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005004 GQueue *queue;
5005 GHashTable *found;
5006 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005007
Max Reitzbd86fb92020-05-13 13:05:13 +02005008 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005009 return false;
5010 }
5011
Max Reitzec9f10f2018-06-13 20:18:15 +02005012 /* If the child @c belongs to the BDS @to, replacing the current
5013 * c->bs by @to would mean to create a loop.
5014 *
5015 * Such a case occurs when appending a BDS to a backing chain.
5016 * For instance, imagine the following chain:
5017 *
5018 * guest device -> node A -> further backing chain...
5019 *
5020 * Now we create a new BDS B which we want to put on top of this
5021 * chain, so we first attach A as its backing node:
5022 *
5023 * node B
5024 * |
5025 * v
5026 * guest device -> node A -> further backing chain...
5027 *
5028 * Finally we want to replace A by B. When doing that, we want to
5029 * replace all pointers to A by pointers to B -- except for the
5030 * pointer from B because (1) that would create a loop, and (2)
5031 * that pointer should simply stay intact:
5032 *
5033 * guest device -> node B
5034 * |
5035 * v
5036 * node A -> further backing chain...
5037 *
5038 * In general, when replacing a node A (c->bs) by a node B (@to),
5039 * if A is a child of B, that means we cannot replace A by B there
5040 * because that would create a loop. Silently detaching A from B
5041 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005042 * place there is the most sensible choice.
5043 *
5044 * We would also create a loop in any cases where @c is only
5045 * indirectly referenced by @to. Prevent this by returning false
5046 * if @c is found (by breadth-first search) anywhere in the whole
5047 * subtree of @to.
5048 */
5049
5050 ret = true;
5051 found = g_hash_table_new(NULL, NULL);
5052 g_hash_table_add(found, to);
5053 queue = g_queue_new();
5054 g_queue_push_tail(queue, to);
5055
5056 while (!g_queue_is_empty(queue)) {
5057 BlockDriverState *v = g_queue_pop_head(queue);
5058 BdrvChild *c2;
5059
5060 QLIST_FOREACH(c2, &v->children, next) {
5061 if (c2 == c) {
5062 ret = false;
5063 break;
5064 }
5065
5066 if (g_hash_table_contains(found, c2->bs)) {
5067 continue;
5068 }
5069
5070 g_queue_push_tail(queue, c2->bs);
5071 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005072 }
5073 }
5074
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005075 g_queue_free(queue);
5076 g_hash_table_destroy(found);
5077
5078 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005079}
5080
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005081static void bdrv_remove_child_commit(void *opaque)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005082{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005083 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005084 bdrv_child_free(opaque);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005085}
5086
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005087static TransactionActionDrv bdrv_remove_child_drv = {
5088 .commit = bdrv_remove_child_commit,
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005089};
5090
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005091/* Function doesn't update permissions, caller is responsible for this. */
5092static void bdrv_remove_child(BdrvChild *child, Transaction *tran)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005093{
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005094 if (!child) {
5095 return;
5096 }
5097
5098 if (child->bs) {
Kevin Wolf23987472022-11-18 18:41:09 +01005099 BlockDriverState *bs = child->bs;
5100 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiya2c37a32022-07-26 23:11:30 +03005101 bdrv_replace_child_tran(child, NULL, tran);
Kevin Wolf23987472022-11-18 18:41:09 +01005102 bdrv_drained_end(bs);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005103 }
5104
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005105 tran_add(tran, &bdrv_remove_child_drv, child);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005106}
5107
Kevin Wolf23987472022-11-18 18:41:09 +01005108static void undrain_on_clean_cb(void *opaque)
5109{
5110 bdrv_drained_end(opaque);
5111}
5112
5113static TransactionActionDrv undrain_on_clean = {
5114 .clean = undrain_on_clean_cb,
5115};
5116
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005117static int bdrv_replace_node_noperm(BlockDriverState *from,
5118 BlockDriverState *to,
5119 bool auto_skip, Transaction *tran,
5120 Error **errp)
5121{
5122 BdrvChild *c, *next;
5123
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005124 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005125
Kevin Wolf23987472022-11-18 18:41:09 +01005126 bdrv_drained_begin(from);
5127 bdrv_drained_begin(to);
5128 tran_add(tran, &undrain_on_clean, from);
5129 tran_add(tran, &undrain_on_clean, to);
5130
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005131 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5132 assert(c->bs == from);
5133 if (!should_update_child(c, to)) {
5134 if (auto_skip) {
5135 continue;
5136 }
5137 error_setg(errp, "Should not change '%s' link to '%s'",
5138 c->name, from->node_name);
5139 return -EINVAL;
5140 }
5141 if (c->frozen) {
5142 error_setg(errp, "Cannot change '%s' link to '%s'",
5143 c->name, from->node_name);
5144 return -EPERM;
5145 }
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005146 bdrv_replace_child_tran(c, to, tran);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005147 }
5148
5149 return 0;
5150}
5151
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005152/*
5153 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5154 * if it creates a parent-child relation loop or if parent is block-job.
5155 *
5156 * With auto_skip=false the error is returned if from has a parent which should
5157 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005158 *
5159 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5160 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005161 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005162static int bdrv_replace_node_common(BlockDriverState *from,
5163 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005164 bool auto_skip, bool detach_subchain,
5165 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005166{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005167 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005168 g_autoptr(GSList) refresh_list = NULL;
Miroslav Rezanina2d369d62021-05-05 03:59:03 -04005169 BlockDriverState *to_cow_parent = NULL;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005170 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005171
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005172 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005173
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005174 if (detach_subchain) {
5175 assert(bdrv_chain_contains(from, to));
5176 assert(from != to);
5177 for (to_cow_parent = from;
5178 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5179 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5180 {
5181 ;
5182 }
5183 }
5184
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005185 /* Make sure that @from doesn't go away until we have successfully attached
5186 * all of its parents to @to. */
5187 bdrv_ref(from);
5188
Kevin Wolff871abd2019-05-21 19:00:25 +02005189 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01005190 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02005191 bdrv_drained_begin(from);
5192
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005193 /*
5194 * Do the replacement without permission update.
5195 * Replacement may influence the permissions, we should calculate new
5196 * permissions based on new graph. If we fail, we'll roll-back the
5197 * replacement.
5198 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005199 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5200 if (ret < 0) {
5201 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005202 }
5203
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005204 if (detach_subchain) {
Vladimir Sementsov-Ogievskiyf38eaec2022-11-07 19:35:56 +03005205 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran);
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005206 }
5207
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005208 refresh_list = g_slist_prepend(refresh_list, to);
5209 refresh_list = g_slist_prepend(refresh_list, from);
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005210
5211 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005212 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005213 goto out;
5214 }
5215
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005216 ret = 0;
5217
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005218out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005219 tran_finalize(tran, ret);
5220
Kevin Wolff871abd2019-05-21 19:00:25 +02005221 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005222 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005223
5224 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005225}
5226
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005227int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5228 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005229{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005230 GLOBAL_STATE_CODE();
5231
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005232 return bdrv_replace_node_common(from, to, true, false, errp);
5233}
5234
5235int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5236{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005237 GLOBAL_STATE_CODE();
5238
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005239 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5240 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005241}
5242
Jeff Cody8802d1f2012-02-28 15:54:06 -05005243/*
5244 * Add new bs contents at the top of an image chain while the chain is
5245 * live, while keeping required fields on the top layer.
5246 *
5247 * This will modify the BlockDriverState fields, and swap contents
5248 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5249 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005250 * bs_new must not be attached to a BlockBackend and must not have backing
5251 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005252 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005253 * This function does not create any image files.
5254 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005255int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5256 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005257{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005258 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005259 BdrvChild *child;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005260 Transaction *tran = tran_new();
5261
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005262 GLOBAL_STATE_CODE();
5263
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005264 assert(!bs_new->backing);
5265
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005266 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5267 &child_of_bds, bdrv_backing_role(bs_new),
5268 tran, errp);
5269 if (!child) {
5270 ret = -EINVAL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005271 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005272 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005273
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005274 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005275 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005276 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005277 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005278
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03005279 ret = bdrv_refresh_perms(bs_new, tran, errp);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005280out:
5281 tran_finalize(tran, ret);
5282
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005283 bdrv_refresh_limits(bs_top, NULL, NULL);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005284
5285 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005286}
5287
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005288/* Not for empty child */
5289int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5290 Error **errp)
5291{
5292 int ret;
5293 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005294 g_autoptr(GSList) refresh_list = NULL;
5295 BlockDriverState *old_bs = child->bs;
5296
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005297 GLOBAL_STATE_CODE();
5298
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005299 bdrv_ref(old_bs);
5300 bdrv_drained_begin(old_bs);
5301 bdrv_drained_begin(new_bs);
5302
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005303 bdrv_replace_child_tran(child, new_bs, tran);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005304
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005305 refresh_list = g_slist_prepend(refresh_list, old_bs);
5306 refresh_list = g_slist_prepend(refresh_list, new_bs);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005307
5308 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5309
5310 tran_finalize(tran, ret);
5311
5312 bdrv_drained_end(old_bs);
5313 bdrv_drained_end(new_bs);
5314 bdrv_unref(old_bs);
5315
5316 return ret;
5317}
5318
Fam Zheng4f6fd342013-08-23 09:14:47 +08005319static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005320{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005321 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005322 assert(!bs->refcnt);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005323 GLOBAL_STATE_CODE();
Markus Armbruster18846de2010-06-29 16:58:30 +02005324
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005325 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005326 if (bs->node_name[0] != '\0') {
5327 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5328 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005329 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5330
Anton Kuchin30c321f2019-05-07 11:12:56 +03005331 bdrv_close(bs);
5332
Anthony Liguori7267c092011-08-20 22:09:37 -05005333 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005334}
5335
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005336
5337/*
5338 * Replace @bs by newly created block node.
5339 *
5340 * @options is a QDict of options to pass to the block drivers, or NULL for an
5341 * empty set of options. The reference to the QDict belongs to the block layer
5342 * after the call (even on failure), so if the caller intends to reuse the
5343 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5344 */
5345BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005346 int flags, Error **errp)
5347{
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005348 ERRP_GUARD();
5349 int ret;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005350 BlockDriverState *new_node_bs = NULL;
5351 const char *drvname, *node_name;
5352 BlockDriver *drv;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005353
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005354 drvname = qdict_get_try_str(options, "driver");
5355 if (!drvname) {
5356 error_setg(errp, "driver is not specified");
5357 goto fail;
5358 }
5359
5360 drv = bdrv_find_format(drvname);
5361 if (!drv) {
5362 error_setg(errp, "Unknown driver: '%s'", drvname);
5363 goto fail;
5364 }
5365
5366 node_name = qdict_get_try_str(options, "node-name");
5367
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005368 GLOBAL_STATE_CODE();
5369
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005370 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5371 errp);
5372 options = NULL; /* bdrv_new_open_driver() eats options */
5373 if (!new_node_bs) {
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005374 error_prepend(errp, "Could not create node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005375 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005376 }
5377
5378 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005379 ret = bdrv_replace_node(bs, new_node_bs, errp);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005380 bdrv_drained_end(bs);
5381
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005382 if (ret < 0) {
5383 error_prepend(errp, "Could not replace node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005384 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005385 }
5386
5387 return new_node_bs;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005388
5389fail:
5390 qobject_unref(options);
5391 bdrv_unref(new_node_bs);
5392 return NULL;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005393}
5394
aliguorie97fc192009-04-21 23:11:50 +00005395/*
5396 * Run consistency checks on an image
5397 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005398 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005399 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005400 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005401 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005402int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5403 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005404{
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05005405 IO_CODE();
Max Reitz908bcd52014-08-07 22:47:55 +02005406 if (bs->drv == NULL) {
5407 return -ENOMEDIUM;
5408 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005409 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005410 return -ENOTSUP;
5411 }
5412
Kevin Wolfe076f332010-06-29 11:43:13 +02005413 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005414 return bs->drv->bdrv_co_check(bs, res, fix);
5415}
5416
Kevin Wolf756e6732010-01-12 12:55:17 +01005417/*
5418 * Return values:
5419 * 0 - success
5420 * -EINVAL - backing format specified, but no file
5421 * -ENOSPC - can't update the backing file because no space is left in the
5422 * image file header
5423 * -ENOTSUP - format driver doesn't support changing the backing file
5424 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005425int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
Eric Blake497a30d2021-05-03 14:36:00 -07005426 const char *backing_fmt, bool require)
Kevin Wolf756e6732010-01-12 12:55:17 +01005427{
5428 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005429 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005430
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005431 GLOBAL_STATE_CODE();
5432
Max Reitzd470ad42017-11-10 21:31:09 +01005433 if (!drv) {
5434 return -ENOMEDIUM;
5435 }
5436
Paolo Bonzini5f377792012-04-12 14:01:01 +02005437 /* Backing file format doesn't make sense without a backing file */
5438 if (backing_fmt && !backing_file) {
5439 return -EINVAL;
5440 }
5441
Eric Blake497a30d2021-05-03 14:36:00 -07005442 if (require && backing_file && !backing_fmt) {
5443 return -EINVAL;
Eric Blakee54ee1b2020-07-06 15:39:53 -05005444 }
5445
Kevin Wolf756e6732010-01-12 12:55:17 +01005446 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005447 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005448 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005449 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005450 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005451
5452 if (ret == 0) {
5453 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5454 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005455 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5456 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005457 }
5458 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005459}
5460
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005461/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005462 * Finds the first non-filter node above bs in the chain between
5463 * active and bs. The returned node is either an immediate parent of
5464 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005465 *
5466 * Returns NULL if bs is not found in active's image chain,
5467 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005468 *
5469 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005470 */
5471BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5472 BlockDriverState *bs)
5473{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005474
5475 GLOBAL_STATE_CODE();
5476
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005477 bs = bdrv_skip_filters(bs);
5478 active = bdrv_skip_filters(active);
5479
5480 while (active) {
5481 BlockDriverState *next = bdrv_backing_chain_next(active);
5482 if (bs == next) {
5483 return active;
5484 }
5485 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005486 }
5487
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005488 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005489}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005490
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005491/* Given a BDS, searches for the base layer. */
5492BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5493{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005494 GLOBAL_STATE_CODE();
5495
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005496 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005497}
5498
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005499/*
Max Reitz7b99a262019-06-12 16:07:11 +02005500 * Return true if at least one of the COW (backing) and filter links
5501 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005502 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005503 */
5504bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5505 Error **errp)
5506{
5507 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005508 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005509
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005510 GLOBAL_STATE_CODE();
5511
Max Reitz7b99a262019-06-12 16:07:11 +02005512 for (i = bs; i != base; i = child_bs(child)) {
5513 child = bdrv_filter_or_cow_child(i);
5514
5515 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005516 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005517 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005518 return true;
5519 }
5520 }
5521
5522 return false;
5523}
5524
5525/*
Max Reitz7b99a262019-06-12 16:07:11 +02005526 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005527 * If any of the links is already frozen the operation is aborted and
5528 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005529 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005530 * Returns 0 on success. On failure returns < 0 and sets @errp.
5531 */
5532int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5533 Error **errp)
5534{
5535 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005536 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005537
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005538 GLOBAL_STATE_CODE();
5539
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005540 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5541 return -EPERM;
5542 }
5543
Max Reitz7b99a262019-06-12 16:07:11 +02005544 for (i = bs; i != base; i = child_bs(child)) {
5545 child = bdrv_filter_or_cow_child(i);
5546 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005547 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005548 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005549 return -EPERM;
5550 }
5551 }
5552
Max Reitz7b99a262019-06-12 16:07:11 +02005553 for (i = bs; i != base; i = child_bs(child)) {
5554 child = bdrv_filter_or_cow_child(i);
5555 if (child) {
5556 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005557 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005558 }
5559
5560 return 0;
5561}
5562
5563/*
Max Reitz7b99a262019-06-12 16:07:11 +02005564 * Unfreeze all COW (backing) and filter links between @bs and @base.
5565 * The caller must ensure that all links are frozen before using this
5566 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005567 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005568 */
5569void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5570{
5571 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005572 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005573
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005574 GLOBAL_STATE_CODE();
5575
Max Reitz7b99a262019-06-12 16:07:11 +02005576 for (i = bs; i != base; i = child_bs(child)) {
5577 child = bdrv_filter_or_cow_child(i);
5578 if (child) {
5579 assert(child->frozen);
5580 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005581 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005582 }
5583}
5584
5585/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005586 * Drops images above 'base' up to and including 'top', and sets the image
5587 * above 'top' to have base as its backing file.
5588 *
5589 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5590 * information in 'bs' can be properly updated.
5591 *
5592 * E.g., this will convert the following chain:
5593 * bottom <- base <- intermediate <- top <- active
5594 *
5595 * to
5596 *
5597 * bottom <- base <- active
5598 *
5599 * It is allowed for bottom==base, in which case it converts:
5600 *
5601 * base <- intermediate <- top <- active
5602 *
5603 * to
5604 *
5605 * base <- active
5606 *
Jeff Cody54e26902014-06-25 15:40:10 -04005607 * If backing_file_str is non-NULL, it will be used when modifying top's
5608 * overlay image metadata.
5609 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005610 * Error conditions:
5611 * if active == top, that is considered an error
5612 *
5613 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005614int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5615 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005616{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005617 BlockDriverState *explicit_top = top;
5618 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005619 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005620 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005621 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005622 g_autoptr(GSList) updated_children = NULL;
5623 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005624
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005625 GLOBAL_STATE_CODE();
5626
Kevin Wolf6858eba2017-06-29 19:32:21 +02005627 bdrv_ref(top);
Kevin Wolf631086d2022-11-18 18:41:03 +01005628 bdrv_drained_begin(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005629
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005630 if (!top->drv || !base->drv) {
5631 goto exit;
5632 }
5633
Kevin Wolf5db15a52015-09-14 15:33:33 +02005634 /* Make sure that base is in the backing chain of top */
5635 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005636 goto exit;
5637 }
5638
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005639 /* If 'base' recursively inherits from 'top' then we should set
5640 * base->inherits_from to top->inherits_from after 'top' and all
5641 * other intermediate nodes have been dropped.
5642 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5643 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005644 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005645 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5646
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005647 /* success - we can delete the intermediate states, and link top->base */
Max Reitzf30c66b2019-02-01 20:29:05 +01005648 if (!backing_file_str) {
5649 bdrv_refresh_filename(base);
5650 backing_file_str = base->filename;
5651 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005652
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005653 QLIST_FOREACH(c, &top->parents, next_parent) {
5654 updated_children = g_slist_prepend(updated_children, c);
5655 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005656
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005657 /*
5658 * It seems correct to pass detach_subchain=true here, but it triggers
5659 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5660 * another drained section, which modify the graph (for example, removing
5661 * the child, which we keep in updated_children list). So, it's a TODO.
5662 *
5663 * Note, bug triggered if pass detach_subchain=true here and run
5664 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5665 * That's a FIXME.
5666 */
5667 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005668 if (local_err) {
5669 error_report_err(local_err);
5670 goto exit;
5671 }
5672
5673 for (p = updated_children; p; p = p->next) {
5674 c = p->data;
5675
Max Reitzbd86fb92020-05-13 13:05:13 +02005676 if (c->klass->update_filename) {
5677 ret = c->klass->update_filename(c, base, backing_file_str,
5678 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005679 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005680 /*
5681 * TODO: Actually, we want to rollback all previous iterations
5682 * of this loop, and (which is almost impossible) previous
5683 * bdrv_replace_node()...
5684 *
5685 * Note, that c->klass->update_filename may lead to permission
5686 * update, so it's a bad idea to call it inside permission
5687 * update transaction of bdrv_replace_node.
5688 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005689 error_report_err(local_err);
5690 goto exit;
5691 }
5692 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005693 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005694
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005695 if (update_inherits_from) {
5696 base->inherits_from = explicit_top->inherits_from;
5697 }
5698
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005699 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005700exit:
Kevin Wolf631086d2022-11-18 18:41:03 +01005701 bdrv_drained_end(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005702 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005703 return ret;
5704}
5705
bellard83f64092006-08-01 16:21:11 +00005706/**
Max Reitz081e4652019-06-12 18:14:13 +02005707 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5708 * sums the size of all data-bearing children. (This excludes backing
5709 * children.)
5710 */
5711static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5712{
5713 BdrvChild *child;
5714 int64_t child_size, sum = 0;
5715
5716 QLIST_FOREACH(child, &bs->children, next) {
5717 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5718 BDRV_CHILD_FILTERED))
5719 {
5720 child_size = bdrv_get_allocated_file_size(child->bs);
5721 if (child_size < 0) {
5722 return child_size;
5723 }
5724 sum += child_size;
5725 }
5726 }
5727
5728 return sum;
5729}
5730
5731/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005732 * Length of a allocated file in bytes. Sparse files are counted by actual
5733 * allocated space. Return < 0 if error or unknown.
5734 */
5735int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5736{
5737 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005738 IO_CODE();
5739
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005740 if (!drv) {
5741 return -ENOMEDIUM;
5742 }
5743 if (drv->bdrv_get_allocated_file_size) {
5744 return drv->bdrv_get_allocated_file_size(bs);
5745 }
Max Reitz081e4652019-06-12 18:14:13 +02005746
5747 if (drv->bdrv_file_open) {
5748 /*
5749 * Protocol drivers default to -ENOTSUP (most of their data is
5750 * not stored in any of their children (if they even have any),
5751 * so there is no generic way to figure it out).
5752 */
5753 return -ENOTSUP;
5754 } else if (drv->is_filter) {
5755 /* Filter drivers default to the size of their filtered child */
5756 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5757 } else {
5758 /* Other drivers default to summing their children's sizes */
5759 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005760 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005761}
5762
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005763/*
5764 * bdrv_measure:
5765 * @drv: Format driver
5766 * @opts: Creation options for new image
5767 * @in_bs: Existing image containing data for new image (may be NULL)
5768 * @errp: Error object
5769 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5770 * or NULL on error
5771 *
5772 * Calculate file size required to create a new image.
5773 *
5774 * If @in_bs is given then space for allocated clusters and zero clusters
5775 * from that image are included in the calculation. If @opts contains a
5776 * backing file that is shared by @in_bs then backing clusters may be omitted
5777 * from the calculation.
5778 *
5779 * If @in_bs is NULL then the calculation includes no allocated clusters
5780 * unless a preallocation option is given in @opts.
5781 *
5782 * Note that @in_bs may use a different BlockDriver from @drv.
5783 *
5784 * If an error occurs the @errp pointer is set.
5785 */
5786BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5787 BlockDriverState *in_bs, Error **errp)
5788{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005789 IO_CODE();
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005790 if (!drv->bdrv_measure) {
5791 error_setg(errp, "Block driver '%s' does not support size measurement",
5792 drv->format_name);
5793 return NULL;
5794 }
5795
5796 return drv->bdrv_measure(opts, in_bs, errp);
5797}
5798
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005799/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005800 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005801 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005802int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005803{
5804 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005805 IO_CODE();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005806
bellard83f64092006-08-01 16:21:11 +00005807 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005808 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005809
Kevin Wolfb94a2612013-10-29 12:18:58 +01005810 if (drv->has_variable_length) {
5811 int ret = refresh_total_sectors(bs, bs->total_sectors);
5812 if (ret < 0) {
5813 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005814 }
bellard83f64092006-08-01 16:21:11 +00005815 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005816 return bs->total_sectors;
5817}
5818
5819/**
5820 * Return length in bytes on success, -errno on error.
5821 * The length is always a multiple of BDRV_SECTOR_SIZE.
5822 */
5823int64_t bdrv_getlength(BlockDriverState *bs)
5824{
5825 int64_t ret = bdrv_nb_sectors(bs);
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005826 IO_CODE();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005827
Eric Blake122860b2020-11-05 09:51:22 -06005828 if (ret < 0) {
5829 return ret;
5830 }
5831 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5832 return -EFBIG;
5833 }
5834 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005835}
5836
bellard19cb3732006-08-19 11:45:59 +00005837/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005838void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005839{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005840 int64_t nb_sectors = bdrv_nb_sectors(bs);
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005841 IO_CODE();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005842
5843 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005844}
bellardcf989512004-02-16 21:56:36 +00005845
Eric Blake54115412016-06-23 16:37:26 -06005846bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005847{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005848 IO_CODE();
ths985a03b2007-12-24 16:10:43 +00005849 return bs->sg;
5850}
5851
Max Reitzae23f782019-06-12 22:57:15 +02005852/**
5853 * Return whether the given node supports compressed writes.
5854 */
5855bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5856{
5857 BlockDriverState *filtered;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005858 IO_CODE();
Max Reitzae23f782019-06-12 22:57:15 +02005859
5860 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5861 return false;
5862 }
5863
5864 filtered = bdrv_filter_bs(bs);
5865 if (filtered) {
5866 /*
5867 * Filters can only forward compressed writes, so we have to
5868 * check the child.
5869 */
5870 return bdrv_supports_compressed_writes(filtered);
5871 }
5872
5873 return true;
5874}
5875
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005876const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005877{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005878 IO_CODE();
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005879 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005880}
5881
Stefan Hajnocziada42402014-08-27 12:08:55 +01005882static int qsort_strcmp(const void *a, const void *b)
5883{
Max Reitzceff5bd2016-10-12 22:49:05 +02005884 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005885}
5886
ths5fafdf22007-09-16 21:08:06 +00005887void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005888 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005889{
5890 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005891 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005892 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005893 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005894
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005895 GLOBAL_STATE_CODE();
5896
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005897 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005898 if (drv->format_name) {
5899 bool found = false;
5900 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005901
5902 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5903 continue;
5904 }
5905
Jeff Codye855e4f2014-04-28 18:29:54 -04005906 while (formats && i && !found) {
5907 found = !strcmp(formats[--i], drv->format_name);
5908 }
5909
5910 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005911 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005912 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005913 }
5914 }
bellardea2384d2004-08-01 21:59:26 +00005915 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005916
Max Reitzeb0df692016-10-12 22:49:06 +02005917 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5918 const char *format_name = block_driver_modules[i].format_name;
5919
5920 if (format_name) {
5921 bool found = false;
5922 int j = count;
5923
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005924 if (use_bdrv_whitelist &&
5925 !bdrv_format_is_whitelisted(format_name, read_only)) {
5926 continue;
5927 }
5928
Max Reitzeb0df692016-10-12 22:49:06 +02005929 while (formats && j && !found) {
5930 found = !strcmp(formats[--j], format_name);
5931 }
5932
5933 if (!found) {
5934 formats = g_renew(const char *, formats, count + 1);
5935 formats[count++] = format_name;
5936 }
5937 }
5938 }
5939
Stefan Hajnocziada42402014-08-27 12:08:55 +01005940 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5941
5942 for (i = 0; i < count; i++) {
5943 it(opaque, formats[i]);
5944 }
5945
Jeff Codye855e4f2014-04-28 18:29:54 -04005946 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005947}
5948
Benoît Canetdc364f42014-01-23 21:31:32 +01005949/* This function is to find a node in the bs graph */
5950BlockDriverState *bdrv_find_node(const char *node_name)
5951{
5952 BlockDriverState *bs;
5953
5954 assert(node_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005955 GLOBAL_STATE_CODE();
Benoît Canetdc364f42014-01-23 21:31:32 +01005956
5957 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5958 if (!strcmp(node_name, bs->node_name)) {
5959 return bs;
5960 }
5961 }
5962 return NULL;
5963}
5964
Benoît Canetc13163f2014-01-23 21:31:34 +01005965/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01005966BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5967 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01005968{
Eric Blake9812e712020-10-27 00:05:47 -05005969 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01005970 BlockDriverState *bs;
5971
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005972 GLOBAL_STATE_CODE();
5973
Benoît Canetc13163f2014-01-23 21:31:34 +01005974 list = NULL;
5975 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01005976 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03005977 if (!info) {
5978 qapi_free_BlockDeviceInfoList(list);
5979 return NULL;
5980 }
Eric Blake9812e712020-10-27 00:05:47 -05005981 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01005982 }
5983
5984 return list;
5985}
5986
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005987typedef struct XDbgBlockGraphConstructor {
5988 XDbgBlockGraph *graph;
5989 GHashTable *graph_nodes;
5990} XDbgBlockGraphConstructor;
5991
5992static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5993{
5994 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5995
5996 gr->graph = g_new0(XDbgBlockGraph, 1);
5997 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5998
5999 return gr;
6000}
6001
6002static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6003{
6004 XDbgBlockGraph *graph = gr->graph;
6005
6006 g_hash_table_destroy(gr->graph_nodes);
6007 g_free(gr);
6008
6009 return graph;
6010}
6011
6012static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6013{
6014 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6015
6016 if (ret != 0) {
6017 return ret;
6018 }
6019
6020 /*
6021 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6022 * answer of g_hash_table_lookup.
6023 */
6024 ret = g_hash_table_size(gr->graph_nodes) + 1;
6025 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6026
6027 return ret;
6028}
6029
6030static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6031 XDbgBlockGraphNodeType type, const char *name)
6032{
6033 XDbgBlockGraphNode *n;
6034
6035 n = g_new0(XDbgBlockGraphNode, 1);
6036
6037 n->id = xdbg_graph_node_num(gr, node);
6038 n->type = type;
6039 n->name = g_strdup(name);
6040
Eric Blake9812e712020-10-27 00:05:47 -05006041 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006042}
6043
6044static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6045 const BdrvChild *child)
6046{
Max Reitzcdb1cec2019-11-08 13:34:52 +01006047 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006048 XDbgBlockGraphEdge *edge;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05006049 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006050
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006051 edge = g_new0(XDbgBlockGraphEdge, 1);
6052
6053 edge->parent = xdbg_graph_node_num(gr, parent);
6054 edge->child = xdbg_graph_node_num(gr, child->bs);
6055 edge->name = g_strdup(child->name);
6056
Max Reitzcdb1cec2019-11-08 13:34:52 +01006057 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6058 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6059
6060 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006061 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006062 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01006063 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006064 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006065 }
6066 }
6067
Eric Blake9812e712020-10-27 00:05:47 -05006068 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006069}
6070
6071
6072XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6073{
6074 BlockBackend *blk;
6075 BlockJob *job;
6076 BlockDriverState *bs;
6077 BdrvChild *child;
6078 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6079
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006080 GLOBAL_STATE_CODE();
6081
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006082 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6083 char *allocated_name = NULL;
6084 const char *name = blk_name(blk);
6085
6086 if (!*name) {
6087 name = allocated_name = blk_get_attached_dev_id(blk);
6088 }
6089 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6090 name);
6091 g_free(allocated_name);
6092 if (blk_root(blk)) {
6093 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6094 }
6095 }
6096
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006097 WITH_JOB_LOCK_GUARD() {
6098 for (job = block_job_next_locked(NULL); job;
6099 job = block_job_next_locked(job)) {
6100 GSList *el;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006101
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006102 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6103 job->job.id);
6104 for (el = job->nodes; el; el = el->next) {
6105 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6106 }
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006107 }
6108 }
6109
6110 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6111 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6112 bs->node_name);
6113 QLIST_FOREACH(child, &bs->children, next) {
6114 xdbg_graph_add_edge(gr, bs, child);
6115 }
6116 }
6117
6118 return xdbg_graph_finalize(gr);
6119}
6120
Benoît Canet12d3ba82014-01-23 21:31:35 +01006121BlockDriverState *bdrv_lookup_bs(const char *device,
6122 const char *node_name,
6123 Error **errp)
6124{
Markus Armbruster7f06d472014-10-07 13:59:12 +02006125 BlockBackend *blk;
6126 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006127
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006128 GLOBAL_STATE_CODE();
6129
Benoît Canet12d3ba82014-01-23 21:31:35 +01006130 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02006131 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006132
Markus Armbruster7f06d472014-10-07 13:59:12 +02006133 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006134 bs = blk_bs(blk);
6135 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02006136 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02006137 }
6138
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006139 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006140 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006141 }
6142
Benoît Canetdd67fa52014-02-12 17:15:06 +01006143 if (node_name) {
6144 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006145
Benoît Canetdd67fa52014-02-12 17:15:06 +01006146 if (bs) {
6147 return bs;
6148 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006149 }
6150
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006151 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01006152 device ? device : "",
6153 node_name ? node_name : "");
6154 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006155}
6156
Jeff Cody5a6684d2014-06-25 15:40:09 -04006157/* If 'base' is in the same chain as 'top', return true. Otherwise,
6158 * return false. If either argument is NULL, return false. */
6159bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6160{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006161
6162 GLOBAL_STATE_CODE();
6163
Jeff Cody5a6684d2014-06-25 15:40:09 -04006164 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006165 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04006166 }
6167
6168 return top != NULL;
6169}
6170
Fam Zheng04df7652014-10-31 11:32:54 +08006171BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6172{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006173 GLOBAL_STATE_CODE();
Fam Zheng04df7652014-10-31 11:32:54 +08006174 if (!bs) {
6175 return QTAILQ_FIRST(&graph_bdrv_states);
6176 }
6177 return QTAILQ_NEXT(bs, node_list);
6178}
6179
Kevin Wolf0f122642018-03-28 18:29:18 +02006180BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6181{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006182 GLOBAL_STATE_CODE();
Kevin Wolf0f122642018-03-28 18:29:18 +02006183 if (!bs) {
6184 return QTAILQ_FIRST(&all_bdrv_states);
6185 }
6186 return QTAILQ_NEXT(bs, bs_list);
6187}
6188
Fam Zheng20a9e772014-10-31 11:32:55 +08006189const char *bdrv_get_node_name(const BlockDriverState *bs)
6190{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006191 IO_CODE();
Fam Zheng20a9e772014-10-31 11:32:55 +08006192 return bs->node_name;
6193}
6194
Kevin Wolf1f0c4612016-03-22 18:38:44 +01006195const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006196{
6197 BdrvChild *c;
6198 const char *name;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05006199 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006200
6201 /* If multiple parents have a name, just pick the first one. */
6202 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006203 if (c->klass->get_name) {
6204 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006205 if (name && *name) {
6206 return name;
6207 }
6208 }
6209 }
6210
6211 return NULL;
6212}
6213
Markus Armbruster7f06d472014-10-07 13:59:12 +02006214/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02006215const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006216{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006217 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006218 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00006219}
6220
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006221/* This can be used to identify nodes that might not have a device
6222 * name associated. Since node and device names live in the same
6223 * namespace, the result is unambiguous. The exception is if both are
6224 * absent, then this returns an empty (non-null) string. */
6225const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6226{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006227 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006228 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006229}
6230
Markus Armbrusterc8433282012-06-05 16:49:24 +02006231int bdrv_get_flags(BlockDriverState *bs)
6232{
Hanna Reitz15aee7a2022-04-27 13:40:54 +02006233 IO_CODE();
Markus Armbrusterc8433282012-06-05 16:49:24 +02006234 return bs->open_flags;
6235}
6236
Peter Lieven3ac21622013-06-28 12:47:42 +02006237int bdrv_has_zero_init_1(BlockDriverState *bs)
6238{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006239 GLOBAL_STATE_CODE();
Peter Lieven3ac21622013-06-28 12:47:42 +02006240 return 1;
6241}
6242
Kevin Wolff2feebb2010-04-14 17:30:35 +02006243int bdrv_has_zero_init(BlockDriverState *bs)
6244{
Max Reitz93393e62019-06-12 17:03:38 +02006245 BlockDriverState *filtered;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006246 GLOBAL_STATE_CODE();
Max Reitz93393e62019-06-12 17:03:38 +02006247
Max Reitzd470ad42017-11-10 21:31:09 +01006248 if (!bs->drv) {
6249 return 0;
6250 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006251
Paolo Bonzini11212d82013-09-04 19:00:27 +02006252 /* If BS is a copy on write image, it is initialized to
6253 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02006254 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02006255 return 0;
6256 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006257 if (bs->drv->bdrv_has_zero_init) {
6258 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006259 }
Max Reitz93393e62019-06-12 17:03:38 +02006260
6261 filtered = bdrv_filter_bs(bs);
6262 if (filtered) {
6263 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006264 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006265
Peter Lieven3ac21622013-06-28 12:47:42 +02006266 /* safe default */
6267 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006268}
6269
Peter Lieven4ce78692013-10-24 12:06:54 +02006270bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6271{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006272 IO_CODE();
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006273 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006274 return false;
6275 }
6276
Eric Blakee24d8132018-01-26 13:34:39 -06006277 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006278}
6279
ths5fafdf22007-09-16 21:08:06 +00006280void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006281 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006282{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006283 IO_CODE();
Kevin Wolf3574c602011-10-26 11:02:11 +02006284 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006285}
6286
bellardfaea38e2006-08-05 21:31:00 +00006287int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6288{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006289 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006290 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006291 IO_CODE();
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006292 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6293 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006294 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006295 }
6296 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006297 BlockDriverState *filtered = bdrv_filter_bs(bs);
6298 if (filtered) {
6299 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006300 }
bellardfaea38e2006-08-05 21:31:00 +00006301 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006302 }
bellardfaea38e2006-08-05 21:31:00 +00006303 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006304 ret = drv->bdrv_get_info(bs, bdi);
6305 if (ret < 0) {
6306 return ret;
6307 }
6308
6309 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6310 return -EINVAL;
6311 }
6312
6313 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006314}
6315
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006316ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6317 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006318{
6319 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006320 IO_CODE();
Max Reitzeae041f2013-10-09 10:46:16 +02006321 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006322 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006323 }
6324 return NULL;
6325}
6326
Anton Nefedovd9245592019-09-23 15:17:37 +03006327BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6328{
6329 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006330 IO_CODE();
Anton Nefedovd9245592019-09-23 15:17:37 +03006331 if (!drv || !drv->bdrv_get_specific_stats) {
6332 return NULL;
6333 }
6334 return drv->bdrv_get_specific_stats(bs);
6335}
6336
Eric Blakea31939e2015-11-18 01:52:54 -07006337void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006338{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006339 IO_CODE();
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006340 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006341 return;
6342 }
6343
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006344 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006345}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006346
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006347static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006348{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006349 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006350 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006351 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006352 }
6353
6354 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006355 assert(bs->drv->bdrv_debug_remove_breakpoint);
6356 return bs;
6357 }
6358
6359 return NULL;
6360}
6361
6362int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6363 const char *tag)
6364{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006365 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006366 bs = bdrv_find_debug_node(bs);
6367 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006368 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6369 }
6370
6371 return -ENOTSUP;
6372}
6373
Fam Zheng4cc70e92013-11-20 10:01:54 +08006374int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6375{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006376 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006377 bs = bdrv_find_debug_node(bs);
6378 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006379 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6380 }
6381
6382 return -ENOTSUP;
6383}
6384
Kevin Wolf41c695c2012-12-06 14:32:58 +01006385int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6386{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006387 GLOBAL_STATE_CODE();
Max Reitz938789e2014-03-10 23:44:08 +01006388 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006389 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006390 }
6391
6392 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6393 return bs->drv->bdrv_debug_resume(bs, tag);
6394 }
6395
6396 return -ENOTSUP;
6397}
6398
6399bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6400{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006401 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006402 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006403 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006404 }
6405
6406 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6407 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6408 }
6409
6410 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006411}
6412
Jeff Codyb1b1d782012-10-16 15:49:09 -04006413/* backing_file can either be relative, or absolute, or a protocol. If it is
6414 * relative, it must be relative to the chain. So, passing in bs->filename
6415 * from a BDS as backing_file should not be done, as that may be relative to
6416 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006417BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6418 const char *backing_file)
6419{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006420 char *filename_full = NULL;
6421 char *backing_file_full = NULL;
6422 char *filename_tmp = NULL;
6423 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006424 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006425 BlockDriverState *curr_bs = NULL;
6426 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006427 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006428
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006429 GLOBAL_STATE_CODE();
6430
Jeff Codyb1b1d782012-10-16 15:49:09 -04006431 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006432 return NULL;
6433 }
6434
Jeff Codyb1b1d782012-10-16 15:49:09 -04006435 filename_full = g_malloc(PATH_MAX);
6436 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006437
6438 is_protocol = path_has_protocol(backing_file);
6439
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006440 /*
6441 * Being largely a legacy function, skip any filters here
6442 * (because filters do not have normal filenames, so they cannot
6443 * match anyway; and allowing json:{} filenames is a bit out of
6444 * scope).
6445 */
6446 for (curr_bs = bdrv_skip_filters(bs);
6447 bdrv_cow_child(curr_bs) != NULL;
6448 curr_bs = bs_below)
6449 {
6450 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006451
Max Reitz0b877d02018-08-01 20:34:11 +02006452 if (bdrv_backing_overridden(curr_bs)) {
6453 /*
6454 * If the backing file was overridden, we can only compare
6455 * directly against the backing node's filename.
6456 */
6457
6458 if (!filenames_refreshed) {
6459 /*
6460 * This will automatically refresh all of the
6461 * filenames in the rest of the backing chain, so we
6462 * only need to do this once.
6463 */
6464 bdrv_refresh_filename(bs_below);
6465 filenames_refreshed = true;
6466 }
6467
6468 if (strcmp(backing_file, bs_below->filename) == 0) {
6469 retval = bs_below;
6470 break;
6471 }
6472 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6473 /*
6474 * If either of the filename paths is actually a protocol, then
6475 * compare unmodified paths; otherwise make paths relative.
6476 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006477 char *backing_file_full_ret;
6478
Jeff Codyb1b1d782012-10-16 15:49:09 -04006479 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006480 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006481 break;
6482 }
Jeff Cody418661e2017-01-25 20:08:20 -05006483 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006484 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6485 NULL);
6486 if (backing_file_full_ret) {
6487 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6488 g_free(backing_file_full_ret);
6489 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006490 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006491 break;
6492 }
Jeff Cody418661e2017-01-25 20:08:20 -05006493 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006494 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006495 /* If not an absolute filename path, make it relative to the current
6496 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006497 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6498 NULL);
6499 /* We are going to compare canonicalized absolute pathnames */
6500 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6501 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006502 continue;
6503 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006504 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006505
6506 /* We need to make sure the backing filename we are comparing against
6507 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006508 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6509 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6510 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006511 continue;
6512 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006513 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006514
6515 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006516 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006517 break;
6518 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006519 }
6520 }
6521
Jeff Codyb1b1d782012-10-16 15:49:09 -04006522 g_free(filename_full);
6523 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006524 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006525}
6526
bellardea2384d2004-08-01 21:59:26 +00006527void bdrv_init(void)
6528{
Kevin Wolfe5f05f82021-07-09 18:41:41 +02006529#ifdef CONFIG_BDRV_WHITELIST_TOOLS
6530 use_bdrv_whitelist = 1;
6531#endif
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006532 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006533}
pbrookce1a14d2006-08-07 02:38:06 +00006534
Markus Armbrustereb852012009-10-27 18:41:44 +01006535void bdrv_init_with_whitelist(void)
6536{
6537 use_bdrv_whitelist = 1;
6538 bdrv_init();
6539}
6540
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006541int bdrv_activate(BlockDriverState *bs, Error **errp)
6542{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006543 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006544 Error *local_err = NULL;
6545 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006546 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006547
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006548 GLOBAL_STATE_CODE();
6549
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006550 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006551 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006552 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006553
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006554 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006555 bdrv_activate(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006556 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006557 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006558 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006559 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006560 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006561
Kevin Wolfdafe0962017-11-16 13:00:01 +01006562 /*
6563 * Update permissions, they may differ for inactive nodes.
6564 *
6565 * Note that the required permissions of inactive images are always a
6566 * subset of the permissions required after activating the image. This
6567 * allows us to just get the permissions upfront without restricting
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006568 * bdrv_co_invalidate_cache().
Kevin Wolfdafe0962017-11-16 13:00:01 +01006569 *
6570 * It also means that in error cases, we don't have to try and revert to
6571 * the old permissions (which is an operation that could fail, too). We can
6572 * just keep the extended permissions for the next time that an activation
6573 * of the image is tried.
6574 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006575 if (bs->open_flags & BDRV_O_INACTIVE) {
6576 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03006577 ret = bdrv_refresh_perms(bs, NULL, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006578 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006579 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006580 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006581 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006582
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006583 ret = bdrv_invalidate_cache(bs, errp);
6584 if (ret < 0) {
6585 bs->open_flags |= BDRV_O_INACTIVE;
6586 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006587 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006588
Kevin Wolf7bb49412019-12-17 15:06:38 +01006589 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6590 bdrv_dirty_bitmap_skip_store(bm, false);
6591 }
6592
6593 ret = refresh_total_sectors(bs, bs->total_sectors);
6594 if (ret < 0) {
6595 bs->open_flags |= BDRV_O_INACTIVE;
6596 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006597 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006598 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006599 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006600
6601 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006602 if (parent->klass->activate) {
6603 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006604 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006605 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006606 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006607 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006608 }
6609 }
6610 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006611
6612 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006613}
6614
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006615int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6616{
6617 Error *local_err = NULL;
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05006618 IO_CODE();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006619
6620 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6621
6622 if (bs->drv->bdrv_co_invalidate_cache) {
6623 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6624 if (local_err) {
6625 error_propagate(errp, local_err);
6626 return -EINVAL;
6627 }
6628 }
6629
6630 return 0;
6631}
6632
Emanuele Giuseppe Esposito3b717192022-02-09 05:54:51 -05006633void bdrv_activate_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006634{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006635 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006636 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006637
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006638 GLOBAL_STATE_CODE();
6639
Kevin Wolf88be7b42016-05-20 18:49:07 +02006640 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006641 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006642 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006643
6644 aio_context_acquire(aio_context);
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006645 ret = bdrv_activate(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006646 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006647 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006648 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006649 return;
6650 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006651 }
6652}
6653
Kevin Wolf9e372712018-11-23 15:11:14 +01006654static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6655{
6656 BdrvChild *parent;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006657 GLOBAL_STATE_CODE();
Kevin Wolf9e372712018-11-23 15:11:14 +01006658
6659 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006660 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006661 BlockDriverState *parent_bs = parent->opaque;
6662 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6663 return true;
6664 }
6665 }
6666 }
6667
6668 return false;
6669}
6670
6671static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006672{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006673 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006674 int ret;
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006675 uint64_t cumulative_perms, cumulative_shared_perms;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006676
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05006677 GLOBAL_STATE_CODE();
6678
Max Reitzd470ad42017-11-10 21:31:09 +01006679 if (!bs->drv) {
6680 return -ENOMEDIUM;
6681 }
6682
Kevin Wolf9e372712018-11-23 15:11:14 +01006683 /* Make sure that we don't inactivate a child before its parent.
6684 * It will be covered by recursion from the yet active parent. */
6685 if (bdrv_has_bds_parent(bs, true)) {
6686 return 0;
6687 }
6688
6689 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6690
6691 /* Inactivate this node */
6692 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006693 ret = bs->drv->bdrv_inactivate(bs);
6694 if (ret < 0) {
6695 return ret;
6696 }
6697 }
6698
Kevin Wolf9e372712018-11-23 15:11:14 +01006699 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006700 if (parent->klass->inactivate) {
6701 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01006702 if (ret < 0) {
6703 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006704 }
6705 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006706 }
Kevin Wolf38701b62017-05-04 18:52:39 +02006707
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006708 bdrv_get_cumulative_perm(bs, &cumulative_perms,
6709 &cumulative_shared_perms);
6710 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
6711 /* Our inactive parents still need write access. Inactivation failed. */
6712 return -EPERM;
6713 }
6714
Kevin Wolf9e372712018-11-23 15:11:14 +01006715 bs->open_flags |= BDRV_O_INACTIVE;
6716
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03006717 /*
6718 * Update permissions, they may differ for inactive nodes.
6719 * We only tried to loosen restrictions, so errors are not fatal, ignore
6720 * them.
6721 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03006722 bdrv_refresh_perms(bs, NULL, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01006723
6724 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02006725 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006726 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02006727 if (ret < 0) {
6728 return ret;
6729 }
6730 }
6731
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006732 return 0;
6733}
6734
6735int bdrv_inactivate_all(void)
6736{
Max Reitz79720af2016-03-16 19:54:44 +01006737 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006738 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006739 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006740 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006741
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006742 GLOBAL_STATE_CODE();
6743
Kevin Wolf88be7b42016-05-20 18:49:07 +02006744 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006745 AioContext *aio_context = bdrv_get_aio_context(bs);
6746
6747 if (!g_slist_find(aio_ctxs, aio_context)) {
6748 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6749 aio_context_acquire(aio_context);
6750 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006751 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006752
Kevin Wolf9e372712018-11-23 15:11:14 +01006753 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6754 /* Nodes with BDS parents are covered by recursion from the last
6755 * parent that gets inactivated. Don't inactivate them a second
6756 * time if that has already happened. */
6757 if (bdrv_has_bds_parent(bs, false)) {
6758 continue;
6759 }
6760 ret = bdrv_inactivate_recurse(bs);
6761 if (ret < 0) {
6762 bdrv_next_cleanup(&it);
6763 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006764 }
6765 }
6766
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006767out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006768 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6769 AioContext *aio_context = ctx->data;
6770 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006771 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006772 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006773
6774 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006775}
6776
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006777/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006778/* removable device support */
6779
6780/**
6781 * Return TRUE if the media is present
6782 */
Max Reitze031f752015-10-19 17:53:11 +02006783bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006784{
6785 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006786 BdrvChild *child;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006787 IO_CODE();
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006788
Max Reitze031f752015-10-19 17:53:11 +02006789 if (!drv) {
6790 return false;
6791 }
Max Reitz28d7a782015-10-19 17:53:13 +02006792 if (drv->bdrv_is_inserted) {
6793 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006794 }
Max Reitz28d7a782015-10-19 17:53:13 +02006795 QLIST_FOREACH(child, &bs->children, next) {
6796 if (!bdrv_is_inserted(child->bs)) {
6797 return false;
6798 }
6799 }
6800 return true;
bellard19cb3732006-08-19 11:45:59 +00006801}
6802
6803/**
bellard19cb3732006-08-19 11:45:59 +00006804 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6805 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006806void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006807{
6808 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006809 IO_CODE();
bellard19cb3732006-08-19 11:45:59 +00006810
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006811 if (drv && drv->bdrv_eject) {
6812 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006813 }
bellard19cb3732006-08-19 11:45:59 +00006814}
6815
bellard19cb3732006-08-19 11:45:59 +00006816/**
6817 * Lock or unlock the media (if it is locked, the user won't be able
6818 * to eject it manually).
6819 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006820void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006821{
6822 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006823 IO_CODE();
Markus Armbruster025e8492011-09-06 18:58:47 +02006824 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006825
Markus Armbruster025e8492011-09-06 18:58:47 +02006826 if (drv && drv->bdrv_lock_medium) {
6827 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006828 }
6829}
ths985a03b2007-12-24 16:10:43 +00006830
Fam Zheng9fcb0252013-08-23 09:14:46 +08006831/* Get a reference to bs */
6832void bdrv_ref(BlockDriverState *bs)
6833{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006834 GLOBAL_STATE_CODE();
Fam Zheng9fcb0252013-08-23 09:14:46 +08006835 bs->refcnt++;
6836}
6837
6838/* Release a previously grabbed reference to bs.
6839 * If after releasing, reference count is zero, the BlockDriverState is
6840 * deleted. */
6841void bdrv_unref(BlockDriverState *bs)
6842{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006843 GLOBAL_STATE_CODE();
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006844 if (!bs) {
6845 return;
6846 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006847 assert(bs->refcnt > 0);
6848 if (--bs->refcnt == 0) {
6849 bdrv_delete(bs);
6850 }
6851}
6852
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006853struct BdrvOpBlocker {
6854 Error *reason;
6855 QLIST_ENTRY(BdrvOpBlocker) list;
6856};
6857
6858bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6859{
6860 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006861 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006862 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6863 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6864 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006865 error_propagate_prepend(errp, error_copy(blocker->reason),
6866 "Node '%s' is busy: ",
6867 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006868 return true;
6869 }
6870 return false;
6871}
6872
6873void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6874{
6875 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006876 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006877 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6878
Markus Armbruster5839e532014-08-19 10:31:08 +02006879 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006880 blocker->reason = reason;
6881 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6882}
6883
6884void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6885{
6886 BdrvOpBlocker *blocker, *next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006887 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006888 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6889 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6890 if (blocker->reason == reason) {
6891 QLIST_REMOVE(blocker, list);
6892 g_free(blocker);
6893 }
6894 }
6895}
6896
6897void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6898{
6899 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006900 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006901 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6902 bdrv_op_block(bs, i, reason);
6903 }
6904}
6905
6906void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6907{
6908 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006909 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006910 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6911 bdrv_op_unblock(bs, i, reason);
6912 }
6913}
6914
6915bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6916{
6917 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006918 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006919 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6920 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6921 return false;
6922 }
6923 }
6924 return true;
6925}
6926
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006927void bdrv_img_create(const char *filename, const char *fmt,
6928 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006929 char *options, uint64_t img_size, int flags, bool quiet,
6930 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006931{
Chunyan Liu83d05212014-06-05 17:20:51 +08006932 QemuOptsList *create_opts = NULL;
6933 QemuOpts *opts = NULL;
6934 const char *backing_fmt, *backing_file;
6935 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006936 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006937 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006938 int ret = 0;
6939
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006940 GLOBAL_STATE_CODE();
6941
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006942 /* Find driver and parse its options */
6943 drv = bdrv_find_format(fmt);
6944 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006945 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006946 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006947 }
6948
Max Reitzb65a5e12015-02-05 13:58:12 -05006949 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006950 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006951 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006952 }
6953
Max Reitzc6149722014-12-02 18:32:45 +01006954 if (!drv->create_opts) {
6955 error_setg(errp, "Format driver '%s' does not support image creation",
6956 drv->format_name);
6957 return;
6958 }
6959
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006960 if (!proto_drv->create_opts) {
6961 error_setg(errp, "Protocol driver '%s' does not support image creation",
6962 proto_drv->format_name);
6963 return;
6964 }
6965
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006966 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006967 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006968 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006969
Chunyan Liu83d05212014-06-05 17:20:51 +08006970 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006971
6972 /* Parse -o options */
6973 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02006974 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006975 goto out;
6976 }
6977 }
6978
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006979 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6980 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6981 } else if (img_size != UINT64_C(-1)) {
6982 error_setg(errp, "The image size must be specified only once");
6983 goto out;
6984 }
6985
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006986 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02006987 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02006988 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006989 error_setg(errp, "Backing file not supported for file format '%s'",
6990 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006991 goto out;
6992 }
6993 }
6994
6995 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02006996 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006997 error_setg(errp, "Backing file format not supported for file "
6998 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006999 goto out;
7000 }
7001 }
7002
Chunyan Liu83d05212014-06-05 17:20:51 +08007003 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7004 if (backing_file) {
7005 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007006 error_setg(errp, "Error: Trying to create an image with the "
7007 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01007008 goto out;
7009 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05007010 if (backing_file[0] == '\0') {
7011 error_setg(errp, "Expected backing file name, got empty string");
7012 goto out;
7013 }
Jes Sorensen792da932010-12-16 13:52:17 +01007014 }
7015
Chunyan Liu83d05212014-06-05 17:20:51 +08007016 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007017
John Snow6e6e55f2017-07-17 20:34:22 -04007018 /* The size for the image must always be specified, unless we have a backing
7019 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05007020 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04007021 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7022 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01007023 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04007024 int back_flags;
7025 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02007026
Max Reitz645ae7d2019-02-01 20:29:14 +01007027 full_backing =
7028 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7029 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04007030 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007031 goto out;
7032 }
Max Reitz645ae7d2019-02-01 20:29:14 +01007033 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04007034
Max Reitzd5b23992021-06-22 16:00:30 +02007035 /*
7036 * No need to do I/O here, which allows us to open encrypted
7037 * backing images without needing the secret
7038 */
John Snow6e6e55f2017-07-17 20:34:22 -04007039 back_flags = flags;
7040 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Max Reitzd5b23992021-06-22 16:00:30 +02007041 back_flags |= BDRV_O_NO_IO;
John Snow6e6e55f2017-07-17 20:34:22 -04007042
Fam Zhengcc954f02017-12-15 16:04:45 +08007043 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04007044 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04007045 qdict_put_str(backing_options, "driver", backing_fmt);
7046 }
Fam Zhengcc954f02017-12-15 16:04:45 +08007047 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04007048
7049 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7050 &local_err);
7051 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05007052 if (!bs) {
7053 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04007054 goto out;
7055 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05007056 if (!backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007057 error_setg(&local_err,
7058 "Backing file specified without backing format");
7059 error_append_hint(&local_err, "Detected format of %s.",
7060 bs->drv->format_name);
7061 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007062 }
John Snow6e6e55f2017-07-17 20:34:22 -04007063 if (size == -1) {
7064 /* Opened BS, have no size */
7065 size = bdrv_getlength(bs);
7066 if (size < 0) {
7067 error_setg_errno(errp, -size, "Could not get size of '%s'",
7068 backing_file);
7069 bdrv_unref(bs);
7070 goto out;
7071 }
7072 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7073 }
7074 bdrv_unref(bs);
7075 }
Eric Blaked9f059a2020-07-06 15:39:54 -05007076 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7077 } else if (backing_file && !backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007078 error_setg(&local_err,
7079 "Backing file specified without backing format");
7080 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007081 }
John Snow6e6e55f2017-07-17 20:34:22 -04007082
7083 if (size == -1) {
7084 error_setg(errp, "Image creation needs a size parameter");
7085 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007086 }
7087
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007088 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02007089 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08007090 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007091 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05007092 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007093 }
Chunyan Liu83d05212014-06-05 17:20:51 +08007094
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007095 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08007096
Max Reitzcc84d902013-09-06 17:14:26 +02007097 if (ret == -EFBIG) {
7098 /* This is generally a better message than whatever the driver would
7099 * deliver (especially because of the cluster_size_hint), since that
7100 * is most probably not much different from "image too large". */
7101 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08007102 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02007103 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007104 }
Max Reitzcc84d902013-09-06 17:14:26 +02007105 error_setg(errp, "The image size is too large for file format '%s'"
7106 "%s", fmt, cluster_size_hint);
7107 error_free(local_err);
7108 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007109 }
7110
7111out:
Chunyan Liu83d05212014-06-05 17:20:51 +08007112 qemu_opts_del(opts);
7113 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03007114 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007115}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007116
7117AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7118{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007119 IO_CODE();
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00007120 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007121}
7122
Kevin Wolfe336fd42020-10-05 17:58:53 +02007123AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7124{
7125 Coroutine *self = qemu_coroutine_self();
7126 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7127 AioContext *new_ctx;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007128 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007129
7130 /*
7131 * Increase bs->in_flight to ensure that this operation is completed before
7132 * moving the node to a different AioContext. Read new_ctx only afterwards.
7133 */
7134 bdrv_inc_in_flight(bs);
7135
7136 new_ctx = bdrv_get_aio_context(bs);
7137 aio_co_reschedule_self(new_ctx);
7138 return old_ctx;
7139}
7140
7141void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7142{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007143 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007144 aio_co_reschedule_self(old_ctx);
7145 bdrv_dec_in_flight(bs);
7146}
7147
Kevin Wolf18c6ac12020-10-05 17:58:54 +02007148void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7149{
7150 AioContext *ctx = bdrv_get_aio_context(bs);
7151
7152 /* In the main thread, bs->aio_context won't change concurrently */
7153 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7154
7155 /*
7156 * We're in coroutine context, so we already hold the lock of the main
7157 * loop AioContext. Don't lock it twice to avoid deadlocks.
7158 */
7159 assert(qemu_in_coroutine());
7160 if (ctx != qemu_get_aio_context()) {
7161 aio_context_acquire(ctx);
7162 }
7163}
7164
7165void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7166{
7167 AioContext *ctx = bdrv_get_aio_context(bs);
7168
7169 assert(qemu_in_coroutine());
7170 if (ctx != qemu_get_aio_context()) {
7171 aio_context_release(ctx);
7172 }
7173}
7174
Fam Zheng052a7572017-04-10 20:09:25 +08007175void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
7176{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007177 IO_CODE();
Fam Zheng052a7572017-04-10 20:09:25 +08007178 aio_co_enter(bdrv_get_aio_context(bs), co);
7179}
7180
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007181static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7182{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05007183 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007184 QLIST_REMOVE(ban, list);
7185 g_free(ban);
7186}
7187
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007188static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007189{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007190 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02007191
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007192 assert(!bs->walking_aio_notifiers);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007193 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007194 bs->walking_aio_notifiers = true;
7195 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7196 if (baf->deleted) {
7197 bdrv_do_remove_aio_context_notifier(baf);
7198 } else {
7199 baf->detach_aio_context(baf->opaque);
7200 }
Max Reitz33384422014-06-20 21:57:33 +02007201 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007202 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7203 * remove remaining aio notifiers if we aren't called again.
7204 */
7205 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02007206
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007207 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007208 bs->drv->bdrv_detach_aio_context(bs);
7209 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007210
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007211 if (bs->quiesce_counter) {
7212 aio_enable_external(bs->aio_context);
7213 }
Emanuele Giuseppe Esposito7f898612022-10-25 04:49:43 -04007214 assert_bdrv_graph_writable(bs);
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007215 bs->aio_context = NULL;
7216}
7217
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007218static void bdrv_attach_aio_context(BlockDriverState *bs,
7219 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007220{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007221 BdrvAioNotifier *ban, *ban_tmp;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007222 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007223
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007224 if (bs->quiesce_counter) {
7225 aio_disable_external(new_context);
7226 }
7227
Emanuele Giuseppe Esposito7f898612022-10-25 04:49:43 -04007228 assert_bdrv_graph_writable(bs);
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007229 bs->aio_context = new_context;
7230
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007231 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007232 bs->drv->bdrv_attach_aio_context(bs, new_context);
7233 }
Max Reitz33384422014-06-20 21:57:33 +02007234
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007235 assert(!bs->walking_aio_notifiers);
7236 bs->walking_aio_notifiers = true;
7237 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7238 if (ban->deleted) {
7239 bdrv_do_remove_aio_context_notifier(ban);
7240 } else {
7241 ban->attached_aio_context(new_context, ban->opaque);
7242 }
Max Reitz33384422014-06-20 21:57:33 +02007243 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007244 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007245}
7246
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007247typedef struct BdrvStateSetAioContext {
7248 AioContext *new_ctx;
7249 BlockDriverState *bs;
7250} BdrvStateSetAioContext;
7251
7252static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007253 GHashTable *visited,
7254 Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007255 Error **errp)
7256{
7257 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007258 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007259 return true;
7260 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007261 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007262
7263 /*
7264 * A BdrvChildClass that doesn't handle AioContext changes cannot
7265 * tolerate any AioContext changes
7266 */
7267 if (!c->klass->change_aio_ctx) {
7268 char *user = bdrv_child_user_desc(c);
7269 error_setg(errp, "Changing iothreads is not supported by %s", user);
7270 g_free(user);
7271 return false;
7272 }
7273 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) {
7274 assert(!errp || *errp);
7275 return false;
7276 }
7277 return true;
7278}
7279
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007280bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007281 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007282 Error **errp)
7283{
7284 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007285 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007286 return true;
7287 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007288 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007289 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp);
7290}
7291
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007292static void bdrv_set_aio_context_clean(void *opaque)
7293{
7294 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7295 BlockDriverState *bs = (BlockDriverState *) state->bs;
7296
7297 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7298 bdrv_drained_end(bs);
7299
7300 g_free(state);
7301}
7302
7303static void bdrv_set_aio_context_commit(void *opaque)
7304{
7305 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7306 BlockDriverState *bs = (BlockDriverState *) state->bs;
7307 AioContext *new_context = state->new_ctx;
7308 AioContext *old_context = bdrv_get_aio_context(bs);
7309 assert_bdrv_graph_writable(bs);
7310
7311 /*
7312 * Take the old AioContex when detaching it from bs.
7313 * At this point, new_context lock is already acquired, and we are now
7314 * also taking old_context. This is safe as long as bdrv_detach_aio_context
7315 * does not call AIO_POLL_WHILE().
7316 */
7317 if (old_context != qemu_get_aio_context()) {
7318 aio_context_acquire(old_context);
7319 }
7320 bdrv_detach_aio_context(bs);
7321 if (old_context != qemu_get_aio_context()) {
7322 aio_context_release(old_context);
7323 }
7324 bdrv_attach_aio_context(bs, new_context);
7325}
7326
7327static TransactionActionDrv set_aio_context = {
7328 .commit = bdrv_set_aio_context_commit,
7329 .clean = bdrv_set_aio_context_clean,
7330};
7331
Kevin Wolf42a65f02019-05-07 18:31:38 +02007332/*
7333 * Changes the AioContext used for fd handlers, timers, and BHs by this
7334 * BlockDriverState and all its children and parents.
7335 *
Max Reitz43eaaae2019-07-22 15:30:54 +02007336 * Must be called from the main AioContext.
7337 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02007338 * The caller must own the AioContext lock for the old AioContext of bs, but it
7339 * must not own the AioContext lock for new_context (unless new_context is the
7340 * same as the current context of bs).
7341 *
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007342 * @visited will accumulate all visited BdrvChild objects. The caller is
Kevin Wolf42a65f02019-05-07 18:31:38 +02007343 * responsible for freeing the list afterwards.
7344 */
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007345static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007346 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007347 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007348{
7349 BdrvChild *c;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007350 BdrvStateSetAioContext *state;
7351
7352 GLOBAL_STATE_CODE();
Kevin Wolf5d231842019-05-06 19:17:56 +02007353
7354 if (bdrv_get_aio_context(bs) == ctx) {
7355 return true;
7356 }
7357
7358 QLIST_FOREACH(c, &bs->parents, next_parent) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007359 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007360 return false;
7361 }
7362 }
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007363
Kevin Wolf5d231842019-05-06 19:17:56 +02007364 QLIST_FOREACH(c, &bs->children, next) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007365 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007366 return false;
7367 }
7368 }
7369
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007370 state = g_new(BdrvStateSetAioContext, 1);
7371 *state = (BdrvStateSetAioContext) {
7372 .new_ctx = ctx,
7373 .bs = bs,
7374 };
7375
7376 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7377 bdrv_drained_begin(bs);
7378
7379 tran_add(tran, &set_aio_context, state);
7380
Kevin Wolf5d231842019-05-06 19:17:56 +02007381 return true;
7382}
7383
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007384/*
7385 * Change bs's and recursively all of its parents' and children's AioContext
7386 * to the given new context, returning an error if that isn't possible.
7387 *
7388 * If ignore_child is not NULL, that child (and its subgraph) will not
7389 * be touched.
7390 *
7391 * This function still requires the caller to take the bs current
7392 * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE
7393 * assumes the lock is always held if bs is in another AioContext.
7394 * For the same reason, it temporarily also holds the new AioContext, since
7395 * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too.
7396 * Therefore the new AioContext lock must not be taken by the caller.
7397 */
Emanuele Giuseppe Espositoa41cfda2022-10-25 04:49:51 -04007398int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7399 BdrvChild *ignore_child, Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007400{
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007401 Transaction *tran;
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007402 GHashTable *visited;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007403 int ret;
7404 AioContext *old_context = bdrv_get_aio_context(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007405 GLOBAL_STATE_CODE();
7406
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007407 /*
7408 * Recursion phase: go through all nodes of the graph.
7409 * Take care of checking that all nodes support changing AioContext
7410 * and drain them, builing a linear list of callbacks to run if everything
7411 * is successful (the transaction itself).
7412 */
7413 tran = tran_new();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007414 visited = g_hash_table_new(NULL, NULL);
7415 if (ignore_child) {
7416 g_hash_table_add(visited, ignore_child);
7417 }
7418 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp);
7419 g_hash_table_destroy(visited);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007420
7421 /*
7422 * Linear phase: go through all callbacks collected in the transaction.
7423 * Run all callbacks collected in the recursion to switch all nodes
7424 * AioContext lock (transaction commit), or undo all changes done in the
7425 * recursion (transaction abort).
7426 */
Kevin Wolf5d231842019-05-06 19:17:56 +02007427
7428 if (!ret) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007429 /* Just run clean() callbacks. No AioContext changed. */
7430 tran_abort(tran);
Kevin Wolf5d231842019-05-06 19:17:56 +02007431 return -EPERM;
7432 }
7433
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007434 /*
7435 * Release old AioContext, it won't be needed anymore, as all
7436 * bdrv_drained_begin() have been called already.
7437 */
7438 if (qemu_get_aio_context() != old_context) {
7439 aio_context_release(old_context);
7440 }
7441
7442 /*
7443 * Acquire new AioContext since bdrv_drained_end() is going to be called
7444 * after we switched all nodes in the new AioContext, and the function
7445 * assumes that the lock of the bs is always taken.
7446 */
7447 if (qemu_get_aio_context() != ctx) {
7448 aio_context_acquire(ctx);
7449 }
7450
7451 tran_commit(tran);
7452
7453 if (qemu_get_aio_context() != ctx) {
7454 aio_context_release(ctx);
7455 }
7456
7457 /* Re-acquire the old AioContext, since the caller takes and releases it. */
7458 if (qemu_get_aio_context() != old_context) {
7459 aio_context_acquire(old_context);
7460 }
Kevin Wolf53a7d042019-05-06 19:17:59 +02007461
Kevin Wolf5d231842019-05-06 19:17:56 +02007462 return 0;
7463}
7464
Max Reitz33384422014-06-20 21:57:33 +02007465void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7466 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7467 void (*detach_aio_context)(void *opaque), void *opaque)
7468{
7469 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7470 *ban = (BdrvAioNotifier){
7471 .attached_aio_context = attached_aio_context,
7472 .detach_aio_context = detach_aio_context,
7473 .opaque = opaque
7474 };
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007475 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007476
7477 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7478}
7479
7480void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7481 void (*attached_aio_context)(AioContext *,
7482 void *),
7483 void (*detach_aio_context)(void *),
7484 void *opaque)
7485{
7486 BdrvAioNotifier *ban, *ban_next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007487 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007488
7489 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7490 if (ban->attached_aio_context == attached_aio_context &&
7491 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007492 ban->opaque == opaque &&
7493 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007494 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007495 if (bs->walking_aio_notifiers) {
7496 ban->deleted = true;
7497 } else {
7498 bdrv_do_remove_aio_context_notifier(ban);
7499 }
Max Reitz33384422014-06-20 21:57:33 +02007500 return;
7501 }
7502 }
7503
7504 abort();
7505}
7506
Max Reitz77485432014-10-27 11:12:50 +01007507int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007508 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007509 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007510 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007511{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007512 GLOBAL_STATE_CODE();
Max Reitzd470ad42017-11-10 21:31:09 +01007513 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007514 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007515 return -ENOMEDIUM;
7516 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007517 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007518 error_setg(errp, "Block driver '%s' does not support option amendment",
7519 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007520 return -ENOTSUP;
7521 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007522 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7523 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007524}
Benoît Canetf6186f42013-10-02 14:33:48 +02007525
Max Reitz5d69b5a2020-02-18 11:34:41 +01007526/*
7527 * This function checks whether the given @to_replace is allowed to be
7528 * replaced by a node that always shows the same data as @bs. This is
7529 * used for example to verify whether the mirror job can replace
7530 * @to_replace by the target mirrored from @bs.
7531 * To be replaceable, @bs and @to_replace may either be guaranteed to
7532 * always show the same data (because they are only connected through
7533 * filters), or some driver may allow replacing one of its children
7534 * because it can guarantee that this child's data is not visible at
7535 * all (for example, for dissenting quorum children that have no other
7536 * parents).
7537 */
7538bool bdrv_recurse_can_replace(BlockDriverState *bs,
7539 BlockDriverState *to_replace)
7540{
Max Reitz93393e62019-06-12 17:03:38 +02007541 BlockDriverState *filtered;
7542
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007543 GLOBAL_STATE_CODE();
7544
Max Reitz5d69b5a2020-02-18 11:34:41 +01007545 if (!bs || !bs->drv) {
7546 return false;
7547 }
7548
7549 if (bs == to_replace) {
7550 return true;
7551 }
7552
7553 /* See what the driver can do */
7554 if (bs->drv->bdrv_recurse_can_replace) {
7555 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7556 }
7557
7558 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007559 filtered = bdrv_filter_bs(bs);
7560 if (filtered) {
7561 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007562 }
7563
7564 /* Safe default */
7565 return false;
7566}
7567
Max Reitz810803a2020-02-18 11:34:44 +01007568/*
7569 * Check whether the given @node_name can be replaced by a node that
7570 * has the same data as @parent_bs. If so, return @node_name's BDS;
7571 * NULL otherwise.
7572 *
7573 * @node_name must be a (recursive) *child of @parent_bs (or this
7574 * function will return NULL).
7575 *
7576 * The result (whether the node can be replaced or not) is only valid
7577 * for as long as no graph or permission changes occur.
7578 */
Wen Congyange12f3782015-07-17 10:12:22 +08007579BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7580 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007581{
7582 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007583 AioContext *aio_context;
7584
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007585 GLOBAL_STATE_CODE();
7586
Benoît Canet09158f02014-06-27 18:25:25 +02007587 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007588 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007589 return NULL;
7590 }
7591
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007592 aio_context = bdrv_get_aio_context(to_replace_bs);
7593 aio_context_acquire(aio_context);
7594
Benoît Canet09158f02014-06-27 18:25:25 +02007595 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007596 to_replace_bs = NULL;
7597 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007598 }
7599
7600 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7601 * most non filter in order to prevent data corruption.
7602 * Another benefit is that this tests exclude backing files which are
7603 * blocked by the backing blockers.
7604 */
Max Reitz810803a2020-02-18 11:34:44 +01007605 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7606 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7607 "because it cannot be guaranteed that doing so would not "
7608 "lead to an abrupt change of visible data",
7609 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007610 to_replace_bs = NULL;
7611 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007612 }
7613
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007614out:
7615 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007616 return to_replace_bs;
7617}
Ming Lei448ad912014-07-04 18:04:33 +08007618
Max Reitz97e2f022019-02-01 20:29:27 +01007619/**
7620 * Iterates through the list of runtime option keys that are said to
7621 * be "strong" for a BDS. An option is called "strong" if it changes
7622 * a BDS's data. For example, the null block driver's "size" and
7623 * "read-zeroes" options are strong, but its "latency-ns" option is
7624 * not.
7625 *
7626 * If a key returned by this function ends with a dot, all options
7627 * starting with that prefix are strong.
7628 */
7629static const char *const *strong_options(BlockDriverState *bs,
7630 const char *const *curopt)
7631{
7632 static const char *const global_options[] = {
7633 "driver", "filename", NULL
7634 };
7635
7636 if (!curopt) {
7637 return &global_options[0];
7638 }
7639
7640 curopt++;
7641 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7642 curopt = bs->drv->strong_runtime_opts;
7643 }
7644
7645 return (curopt && *curopt) ? curopt : NULL;
7646}
7647
7648/**
7649 * Copies all strong runtime options from bs->options to the given
7650 * QDict. The set of strong option keys is determined by invoking
7651 * strong_options().
7652 *
7653 * Returns true iff any strong option was present in bs->options (and
7654 * thus copied to the target QDict) with the exception of "filename"
7655 * and "driver". The caller is expected to use this value to decide
7656 * whether the existence of strong options prevents the generation of
7657 * a plain filename.
7658 */
7659static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7660{
7661 bool found_any = false;
7662 const char *const *option_name = NULL;
7663
7664 if (!bs->drv) {
7665 return false;
7666 }
7667
7668 while ((option_name = strong_options(bs, option_name))) {
7669 bool option_given = false;
7670
7671 assert(strlen(*option_name) > 0);
7672 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7673 QObject *entry = qdict_get(bs->options, *option_name);
7674 if (!entry) {
7675 continue;
7676 }
7677
7678 qdict_put_obj(d, *option_name, qobject_ref(entry));
7679 option_given = true;
7680 } else {
7681 const QDictEntry *entry;
7682 for (entry = qdict_first(bs->options); entry;
7683 entry = qdict_next(bs->options, entry))
7684 {
7685 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7686 qdict_put_obj(d, qdict_entry_key(entry),
7687 qobject_ref(qdict_entry_value(entry)));
7688 option_given = true;
7689 }
7690 }
7691 }
7692
7693 /* While "driver" and "filename" need to be included in a JSON filename,
7694 * their existence does not prohibit generation of a plain filename. */
7695 if (!found_any && option_given &&
7696 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7697 {
7698 found_any = true;
7699 }
7700 }
7701
Max Reitz62a01a272019-02-01 20:29:34 +01007702 if (!qdict_haskey(d, "driver")) {
7703 /* Drivers created with bdrv_new_open_driver() may not have a
7704 * @driver option. Add it here. */
7705 qdict_put_str(d, "driver", bs->drv->format_name);
7706 }
7707
Max Reitz97e2f022019-02-01 20:29:27 +01007708 return found_any;
7709}
7710
Max Reitz90993622019-02-01 20:29:09 +01007711/* Note: This function may return false positives; it may return true
7712 * even if opening the backing file specified by bs's image header
7713 * would result in exactly bs->backing. */
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -05007714static bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007715{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007716 GLOBAL_STATE_CODE();
Max Reitz90993622019-02-01 20:29:09 +01007717 if (bs->backing) {
7718 return strcmp(bs->auto_backing_file,
7719 bs->backing->bs->filename);
7720 } else {
7721 /* No backing BDS, so if the image header reports any backing
7722 * file, it must have been suppressed */
7723 return bs->auto_backing_file[0] != '\0';
7724 }
7725}
7726
Max Reitz91af7012014-07-18 20:24:56 +02007727/* Updates the following BDS fields:
7728 * - exact_filename: A filename which may be used for opening a block device
7729 * which (mostly) equals the given BDS (even without any
7730 * other options; so reading and writing must return the same
7731 * results, but caching etc. may be different)
7732 * - full_open_options: Options which, when given when opening a block device
7733 * (without a filename), result in a BDS (mostly)
7734 * equalling the given one
7735 * - filename: If exact_filename is set, it is copied here. Otherwise,
7736 * full_open_options is converted to a JSON object, prefixed with
7737 * "json:" (for use through the JSON pseudo protocol) and put here.
7738 */
7739void bdrv_refresh_filename(BlockDriverState *bs)
7740{
7741 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01007742 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02007743 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02007744 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01007745 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01007746 bool generate_json_filename; /* Whether our default implementation should
7747 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02007748
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007749 GLOBAL_STATE_CODE();
7750
Max Reitz91af7012014-07-18 20:24:56 +02007751 if (!drv) {
7752 return;
7753 }
7754
Max Reitze24518e2019-02-01 20:29:06 +01007755 /* This BDS's file name may depend on any of its children's file names, so
7756 * refresh those first */
7757 QLIST_FOREACH(child, &bs->children, next) {
7758 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02007759 }
7760
Max Reitzbb808d52019-02-01 20:29:07 +01007761 if (bs->implicit) {
7762 /* For implicit nodes, just copy everything from the single child */
7763 child = QLIST_FIRST(&bs->children);
7764 assert(QLIST_NEXT(child, next) == NULL);
7765
7766 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7767 child->bs->exact_filename);
7768 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7769
Pan Nengyuancb895612020-01-16 16:56:00 +08007770 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01007771 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7772
7773 return;
7774 }
7775
Max Reitz90993622019-02-01 20:29:09 +01007776 backing_overridden = bdrv_backing_overridden(bs);
7777
7778 if (bs->open_flags & BDRV_O_NO_IO) {
7779 /* Without I/O, the backing file does not change anything.
7780 * Therefore, in such a case (primarily qemu-img), we can
7781 * pretend the backing file has not been overridden even if
7782 * it technically has been. */
7783 backing_overridden = false;
7784 }
7785
Max Reitz97e2f022019-02-01 20:29:27 +01007786 /* Gather the options QDict */
7787 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01007788 generate_json_filename = append_strong_runtime_options(opts, bs);
7789 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01007790
7791 if (drv->bdrv_gather_child_options) {
7792 /* Some block drivers may not want to present all of their children's
7793 * options, or name them differently from BdrvChild.name */
7794 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7795 } else {
7796 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02007797 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01007798 /* We can skip the backing BDS if it has not been overridden */
7799 continue;
7800 }
7801
7802 qdict_put(opts, child->name,
7803 qobject_ref(child->bs->full_open_options));
7804 }
7805
7806 if (backing_overridden && !bs->backing) {
7807 /* Force no backing file */
7808 qdict_put_null(opts, "backing");
7809 }
7810 }
7811
7812 qobject_unref(bs->full_open_options);
7813 bs->full_open_options = opts;
7814
Max Reitz52f72d62019-06-12 17:43:03 +02007815 primary_child_bs = bdrv_primary_bs(bs);
7816
Max Reitz998b3a12019-02-01 20:29:28 +01007817 if (drv->bdrv_refresh_filename) {
7818 /* Obsolete information is of no use here, so drop the old file name
7819 * information before refreshing it */
7820 bs->exact_filename[0] = '\0';
7821
7822 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02007823 } else if (primary_child_bs) {
7824 /*
7825 * Try to reconstruct valid information from the underlying
7826 * file -- this only works for format nodes (filter nodes
7827 * cannot be probed and as such must be selected by the user
7828 * either through an options dict, or through a special
7829 * filename which the filter driver must construct in its
7830 * .bdrv_refresh_filename() implementation).
7831 */
Max Reitz998b3a12019-02-01 20:29:28 +01007832
7833 bs->exact_filename[0] = '\0';
7834
Max Reitzfb695c72019-02-01 20:29:29 +01007835 /*
7836 * We can use the underlying file's filename if:
7837 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007838 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007839 * - the file is a protocol BDS, and
7840 * - opening that file (as this BDS's format) will automatically create
7841 * the BDS tree we have right now, that is:
7842 * - the user did not significantly change this BDS's behavior with
7843 * some explicit (strong) options
7844 * - no non-file child of this BDS has been overridden by the user
7845 * Both of these conditions are represented by generate_json_filename.
7846 */
Max Reitz52f72d62019-06-12 17:43:03 +02007847 if (primary_child_bs->exact_filename[0] &&
7848 primary_child_bs->drv->bdrv_file_open &&
7849 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007850 {
Max Reitz52f72d62019-06-12 17:43:03 +02007851 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007852 }
7853 }
7854
Max Reitz91af7012014-07-18 20:24:56 +02007855 if (bs->exact_filename[0]) {
7856 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007857 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007858 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007859 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007860 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007861 /* Give user a hint if we truncated things. */
7862 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7863 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007864 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007865 }
7866}
Wen Congyange06018a2016-05-10 15:36:37 +08007867
Max Reitz1e89d0f2019-02-01 20:29:18 +01007868char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7869{
7870 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007871 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007872
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007873 GLOBAL_STATE_CODE();
7874
Max Reitz1e89d0f2019-02-01 20:29:18 +01007875 if (!drv) {
7876 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7877 return NULL;
7878 }
7879
7880 if (drv->bdrv_dirname) {
7881 return drv->bdrv_dirname(bs, errp);
7882 }
7883
Max Reitz52f72d62019-06-12 17:43:03 +02007884 child_bs = bdrv_primary_bs(bs);
7885 if (child_bs) {
7886 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007887 }
7888
7889 bdrv_refresh_filename(bs);
7890 if (bs->exact_filename[0] != '\0') {
7891 return path_combine(bs->exact_filename, "");
7892 }
7893
7894 error_setg(errp, "Cannot generate a base directory for %s nodes",
7895 drv->format_name);
7896 return NULL;
7897}
7898
Wen Congyange06018a2016-05-10 15:36:37 +08007899/*
7900 * Hot add/remove a BDS's child. So the user can take a child offline when
7901 * it is broken and take a new child online
7902 */
7903void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7904 Error **errp)
7905{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007906 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08007907 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7908 error_setg(errp, "The node %s does not support adding a child",
7909 bdrv_get_device_or_node_name(parent_bs));
7910 return;
7911 }
7912
7913 if (!QLIST_EMPTY(&child_bs->parents)) {
7914 error_setg(errp, "The node %s already has a parent",
7915 child_bs->node_name);
7916 return;
7917 }
7918
7919 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7920}
7921
7922void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7923{
7924 BdrvChild *tmp;
7925
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007926 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08007927 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7928 error_setg(errp, "The node %s does not support removing a child",
7929 bdrv_get_device_or_node_name(parent_bs));
7930 return;
7931 }
7932
7933 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7934 if (tmp == child) {
7935 break;
7936 }
7937 }
7938
7939 if (!tmp) {
7940 error_setg(errp, "The node %s does not have a child named %s",
7941 bdrv_get_device_or_node_name(parent_bs),
7942 bdrv_get_device_or_node_name(child->bs));
7943 return;
7944 }
7945
7946 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7947}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007948
7949int bdrv_make_empty(BdrvChild *c, Error **errp)
7950{
7951 BlockDriver *drv = c->bs->drv;
7952 int ret;
7953
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007954 GLOBAL_STATE_CODE();
Max Reitz6f7a3b52020-04-29 16:11:23 +02007955 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7956
7957 if (!drv->bdrv_make_empty) {
7958 error_setg(errp, "%s does not support emptying nodes",
7959 drv->format_name);
7960 return -ENOTSUP;
7961 }
7962
7963 ret = drv->bdrv_make_empty(c->bs);
7964 if (ret < 0) {
7965 error_setg_errno(errp, -ret, "Failed to empty %s",
7966 c->bs->filename);
7967 return ret;
7968 }
7969
7970 return 0;
7971}
Max Reitz9a6fc882019-05-31 15:23:11 +02007972
7973/*
7974 * Return the child that @bs acts as an overlay for, and from which data may be
7975 * copied in COW or COR operations. Usually this is the backing file.
7976 */
7977BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7978{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05007979 IO_CODE();
7980
Max Reitz9a6fc882019-05-31 15:23:11 +02007981 if (!bs || !bs->drv) {
7982 return NULL;
7983 }
7984
7985 if (bs->drv->is_filter) {
7986 return NULL;
7987 }
7988
7989 if (!bs->backing) {
7990 return NULL;
7991 }
7992
7993 assert(bs->backing->role & BDRV_CHILD_COW);
7994 return bs->backing;
7995}
7996
7997/*
7998 * If @bs acts as a filter for exactly one of its children, return
7999 * that child.
8000 */
8001BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8002{
8003 BdrvChild *c;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008004 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008005
8006 if (!bs || !bs->drv) {
8007 return NULL;
8008 }
8009
8010 if (!bs->drv->is_filter) {
8011 return NULL;
8012 }
8013
8014 /* Only one of @backing or @file may be used */
8015 assert(!(bs->backing && bs->file));
8016
8017 c = bs->backing ?: bs->file;
8018 if (!c) {
8019 return NULL;
8020 }
8021
8022 assert(c->role & BDRV_CHILD_FILTERED);
8023 return c;
8024}
8025
8026/*
8027 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8028 * whichever is non-NULL.
8029 *
8030 * Return NULL if both are NULL.
8031 */
8032BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8033{
8034 BdrvChild *cow_child = bdrv_cow_child(bs);
8035 BdrvChild *filter_child = bdrv_filter_child(bs);
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008036 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008037
8038 /* Filter nodes cannot have COW backing files */
8039 assert(!(cow_child && filter_child));
8040
8041 return cow_child ?: filter_child;
8042}
8043
8044/*
8045 * Return the primary child of this node: For filters, that is the
8046 * filtered child. For other nodes, that is usually the child storing
8047 * metadata.
8048 * (A generally more helpful description is that this is (usually) the
8049 * child that has the same filename as @bs.)
8050 *
8051 * Drivers do not necessarily have a primary child; for example quorum
8052 * does not.
8053 */
8054BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8055{
8056 BdrvChild *c, *found = NULL;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008057 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008058
8059 QLIST_FOREACH(c, &bs->children, next) {
8060 if (c->role & BDRV_CHILD_PRIMARY) {
8061 assert(!found);
8062 found = c;
8063 }
8064 }
8065
8066 return found;
8067}
Max Reitzd38d7eb2019-06-12 15:06:37 +02008068
8069static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
8070 bool stop_on_explicit_filter)
8071{
8072 BdrvChild *c;
8073
8074 if (!bs) {
8075 return NULL;
8076 }
8077
8078 while (!(stop_on_explicit_filter && !bs->implicit)) {
8079 c = bdrv_filter_child(bs);
8080 if (!c) {
8081 /*
8082 * A filter that is embedded in a working block graph must
8083 * have a child. Assert this here so this function does
8084 * not return a filter node that is not expected by the
8085 * caller.
8086 */
8087 assert(!bs->drv || !bs->drv->is_filter);
8088 break;
8089 }
8090 bs = c->bs;
8091 }
8092 /*
8093 * Note that this treats nodes with bs->drv == NULL as not being
8094 * filters (bs->drv == NULL should be replaced by something else
8095 * anyway).
8096 * The advantage of this behavior is that this function will thus
8097 * always return a non-NULL value (given a non-NULL @bs).
8098 */
8099
8100 return bs;
8101}
8102
8103/*
8104 * Return the first BDS that has not been added implicitly or that
8105 * does not have a filtered child down the chain starting from @bs
8106 * (including @bs itself).
8107 */
8108BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8109{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05008110 GLOBAL_STATE_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008111 return bdrv_do_skip_filters(bs, true);
8112}
8113
8114/*
8115 * Return the first BDS that does not have a filtered child down the
8116 * chain starting from @bs (including @bs itself).
8117 */
8118BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8119{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008120 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008121 return bdrv_do_skip_filters(bs, false);
8122}
8123
8124/*
8125 * For a backing chain, return the first non-filter backing image of
8126 * the first non-filter image.
8127 */
8128BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8129{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008130 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008131 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8132}
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008133
8134/**
8135 * Check whether [offset, offset + bytes) overlaps with the cached
8136 * block-status data region.
8137 *
8138 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8139 * which is what bdrv_bsc_is_data()'s interface needs.
8140 * Otherwise, *pnum is not touched.
8141 */
8142static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8143 int64_t offset, int64_t bytes,
8144 int64_t *pnum)
8145{
8146 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8147 bool overlaps;
8148
8149 overlaps =
8150 qatomic_read(&bsc->valid) &&
8151 ranges_overlap(offset, bytes, bsc->data_start,
8152 bsc->data_end - bsc->data_start);
8153
8154 if (overlaps && pnum) {
8155 *pnum = bsc->data_end - offset;
8156 }
8157
8158 return overlaps;
8159}
8160
8161/**
8162 * See block_int.h for this function's documentation.
8163 */
8164bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8165{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008166 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008167 RCU_READ_LOCK_GUARD();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008168 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8169}
8170
8171/**
8172 * See block_int.h for this function's documentation.
8173 */
8174void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8175 int64_t offset, int64_t bytes)
8176{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008177 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008178 RCU_READ_LOCK_GUARD();
8179
8180 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8181 qatomic_set(&bs->block_status_cache->valid, false);
8182 }
8183}
8184
8185/**
8186 * See block_int.h for this function's documentation.
8187 */
8188void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8189{
8190 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8191 BdrvBlockStatusCache *old_bsc;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008192 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008193
8194 *new_bsc = (BdrvBlockStatusCache) {
8195 .valid = true,
8196 .data_start = offset,
8197 .data_end = offset + bytes,
8198 };
8199
8200 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8201
8202 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8203 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8204 if (old_bsc) {
8205 g_free_rcu(old_bsc, rcu);
8206 }
8207}