blob: bc85f46eed690321657cf1de5d27cbe56765c6b5 [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
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +010093static void bdrv_child_free(BdrvChild *child);
Hanna Reitzbe64bbb2021-11-15 15:54:01 +010094static void bdrv_replace_child_noperm(BdrvChild **child,
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +010095 BlockDriverState *new_bs,
96 bool free_empty_child);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +030097static void bdrv_remove_file_or_backing_child(BlockDriverState *bs,
98 BdrvChild *child,
99 Transaction *tran);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +0300100static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
101 Transaction *tran);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +0300102
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +0300103static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
104 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +0300105 Transaction *change_child_tran, Error **errp);
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +0300106static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
107static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
108
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -0500109static bool bdrv_backing_overridden(BlockDriverState *bs);
110
Markus Armbrustereb852012009-10-27 18:41:44 +0100111/* If non-zero, use only whitelisted block drivers */
112static int use_bdrv_whitelist;
113
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000114#ifdef _WIN32
115static int is_windows_drive_prefix(const char *filename)
116{
117 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
118 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
119 filename[1] == ':');
120}
121
122int is_windows_drive(const char *filename)
123{
124 if (is_windows_drive_prefix(filename) &&
125 filename[2] == '\0')
126 return 1;
127 if (strstart(filename, "\\\\.\\", NULL) ||
128 strstart(filename, "//./", NULL))
129 return 1;
130 return 0;
131}
132#endif
133
Kevin Wolf339064d2013-11-28 10:23:32 +0100134size_t bdrv_opt_mem_align(BlockDriverState *bs)
135{
136 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300137 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400138 return MAX(4096, qemu_real_host_page_size());
Kevin Wolf339064d2013-11-28 10:23:32 +0100139 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500140 IO_CODE();
Kevin Wolf339064d2013-11-28 10:23:32 +0100141
142 return bs->bl.opt_mem_alignment;
143}
144
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300145size_t bdrv_min_mem_align(BlockDriverState *bs)
146{
147 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300148 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400149 return MAX(4096, qemu_real_host_page_size());
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300150 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500151 IO_CODE();
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300152
153 return bs->bl.min_mem_alignment;
154}
155
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000156/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100157int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000158{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200159 const char *p;
160
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000161#ifdef _WIN32
162 if (is_windows_drive(path) ||
163 is_windows_drive_prefix(path)) {
164 return 0;
165 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200166 p = path + strcspn(path, ":/\\");
167#else
168 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000169#endif
170
Paolo Bonzini947995c2012-05-08 16:51:48 +0200171 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000172}
173
bellard83f64092006-08-01 16:21:11 +0000174int path_is_absolute(const char *path)
175{
bellard21664422007-01-07 18:22:37 +0000176#ifdef _WIN32
177 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200178 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000179 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200180 }
181 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000182#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200183 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000184#endif
bellard83f64092006-08-01 16:21:11 +0000185}
186
Max Reitz009b03a2019-02-01 20:29:13 +0100187/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000188 path to it by considering it is relative to base_path. URL are
189 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100190char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000191{
Max Reitz009b03a2019-02-01 20:29:13 +0100192 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000193 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100194 char *result;
bellard83f64092006-08-01 16:21:11 +0000195 int len;
196
bellard83f64092006-08-01 16:21:11 +0000197 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100198 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000199 }
Max Reitz009b03a2019-02-01 20:29:13 +0100200
201 if (path_has_protocol(base_path)) {
202 protocol_stripped = strchr(base_path, ':');
203 if (protocol_stripped) {
204 protocol_stripped++;
205 }
206 }
207 p = protocol_stripped ?: base_path;
208
209 p1 = strrchr(base_path, '/');
210#ifdef _WIN32
211 {
212 const char *p2;
213 p2 = strrchr(base_path, '\\');
214 if (!p1 || p2 > p1) {
215 p1 = p2;
216 }
217 }
218#endif
219 if (p1) {
220 p1++;
221 } else {
222 p1 = base_path;
223 }
224 if (p1 > p) {
225 p = p1;
226 }
227 len = p - base_path;
228
229 result = g_malloc(len + strlen(filename) + 1);
230 memcpy(result, base_path, len);
231 strcpy(result + len, filename);
232
233 return result;
234}
235
Max Reitz03c320d2017-05-22 21:52:16 +0200236/*
237 * Helper function for bdrv_parse_filename() implementations to remove optional
238 * protocol prefixes (especially "file:") from a filename and for putting the
239 * stripped filename into the options QDict if there is such a prefix.
240 */
241void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
242 QDict *options)
243{
244 if (strstart(filename, prefix, &filename)) {
245 /* Stripping the explicit protocol prefix may result in a protocol
246 * prefix being (wrongly) detected (if the filename contains a colon) */
247 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100248 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200249
250 /* This means there is some colon before the first slash; therefore,
251 * this cannot be an absolute path */
252 assert(!path_is_absolute(filename));
253
254 /* And we can thus fix the protocol detection issue by prefixing it
255 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100256 fat_filename = g_string_new("./");
257 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200258
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100259 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200260
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100261 qdict_put(options, "filename",
262 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200263 } else {
264 /* If no protocol prefix was detected, we can use the shortened
265 * filename as-is */
266 qdict_put_str(options, "filename", filename);
267 }
268 }
269}
270
271
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200272/* Returns whether the image file is opened as read-only. Note that this can
273 * return false and writing to the image file is still not possible because the
274 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400275bool bdrv_is_read_only(BlockDriverState *bs)
276{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500277 IO_CODE();
Vladimir Sementsov-Ogievskiy975da072021-05-27 18:40:55 +0300278 return !(bs->open_flags & BDRV_O_RDWR);
Jeff Cody93ed5242017-04-07 16:55:28 -0400279}
280
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200281int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
282 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400283{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500284 IO_CODE();
285
Jeff Codye2b82472017-04-07 16:55:26 -0400286 /* Do not set read_only if copy_on_read is enabled */
287 if (bs->copy_on_read && read_only) {
288 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
289 bdrv_get_device_or_node_name(bs));
290 return -EINVAL;
291 }
292
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400293 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200294 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
295 !ignore_allow_rdw)
296 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400297 error_setg(errp, "Node '%s' is read only",
298 bdrv_get_device_or_node_name(bs));
299 return -EPERM;
300 }
301
Jeff Cody45803a02017-04-07 16:55:29 -0400302 return 0;
303}
304
Kevin Wolfeaa24102018-10-12 11:27:41 +0200305/*
306 * Called by a driver that can only provide a read-only image.
307 *
308 * Returns 0 if the node is already read-only or it could switch the node to
309 * read-only because BDRV_O_AUTO_RDONLY is set.
310 *
311 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
312 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
313 * is not NULL, it is used as the error message for the Error object.
314 */
315int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
316 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400317{
318 int ret = 0;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500319 IO_CODE();
Jeff Cody45803a02017-04-07 16:55:29 -0400320
Kevin Wolfeaa24102018-10-12 11:27:41 +0200321 if (!(bs->open_flags & BDRV_O_RDWR)) {
322 return 0;
323 }
324 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
325 goto fail;
326 }
327
328 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400329 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200330 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400331 }
332
Kevin Wolfeaa24102018-10-12 11:27:41 +0200333 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200334
Jeff Codye2b82472017-04-07 16:55:26 -0400335 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200336
337fail:
338 error_setg(errp, "%s", errmsg ?: "Image is read-only");
339 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400340}
341
Max Reitz645ae7d2019-02-01 20:29:14 +0100342/*
343 * If @backing is empty, this function returns NULL without setting
344 * @errp. In all other cases, NULL will only be returned with @errp
345 * set.
346 *
347 * Therefore, a return value of NULL without @errp set means that
348 * there is no backing file; if @errp is set, there is one but its
349 * absolute filename cannot be generated.
350 */
351char *bdrv_get_full_backing_filename_from_filename(const char *backed,
352 const char *backing,
353 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100354{
Max Reitz645ae7d2019-02-01 20:29:14 +0100355 if (backing[0] == '\0') {
356 return NULL;
357 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
358 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100359 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
360 error_setg(errp, "Cannot use relative backing file names for '%s'",
361 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100362 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100363 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100364 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100365 }
366}
367
Max Reitz9f4793d2019-02-01 20:29:16 +0100368/*
369 * If @filename is empty or NULL, this function returns NULL without
370 * setting @errp. In all other cases, NULL will only be returned with
371 * @errp set.
372 */
373static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
374 const char *filename, Error **errp)
375{
Max Reitz8df68612019-02-01 20:29:23 +0100376 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100377
Max Reitz8df68612019-02-01 20:29:23 +0100378 if (!filename || filename[0] == '\0') {
379 return NULL;
380 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
381 return g_strdup(filename);
382 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100383
Max Reitz8df68612019-02-01 20:29:23 +0100384 dir = bdrv_dirname(relative_to, errp);
385 if (!dir) {
386 return NULL;
387 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100388
Max Reitz8df68612019-02-01 20:29:23 +0100389 full_name = g_strconcat(dir, filename, NULL);
390 g_free(dir);
391 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100392}
393
Max Reitz6b6833c2019-02-01 20:29:15 +0100394char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200395{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500396 GLOBAL_STATE_CODE();
Max Reitz9f4793d2019-02-01 20:29:16 +0100397 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200398}
399
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100400void bdrv_register(BlockDriver *bdrv)
401{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100402 assert(bdrv->format_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500403 GLOBAL_STATE_CODE();
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100404 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000405}
bellardb3380822004-03-14 21:38:54 +0000406
Markus Armbrustere4e99862014-10-07 13:59:03 +0200407BlockDriverState *bdrv_new(void)
408{
409 BlockDriverState *bs;
410 int i;
411
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500412 GLOBAL_STATE_CODE();
413
Markus Armbruster5839e532014-08-19 10:31:08 +0200414 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800415 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800416 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
417 QLIST_INIT(&bs->op_blockers[i]);
418 }
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200419 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200420 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800421 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200422 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200423
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300424 qemu_co_queue_init(&bs->flush_queue);
425
Hanna Reitz0bc329f2021-08-12 10:41:44 +0200426 qemu_co_mutex_init(&bs->bsc_modify_lock);
427 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
428
Kevin Wolf0f122642018-03-28 18:29:18 +0200429 for (i = 0; i < bdrv_drain_all_count; i++) {
430 bdrv_drained_begin(bs);
431 }
432
Max Reitz2c1d04e2016-01-29 16:36:11 +0100433 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
434
bellardb3380822004-03-14 21:38:54 +0000435 return bs;
436}
437
Marc Mari88d88792016-08-12 09:27:03 -0400438static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000439{
440 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500441 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400442
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100443 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
444 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000445 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100446 }
bellardea2384d2004-08-01 21:59:26 +0000447 }
Marc Mari88d88792016-08-12 09:27:03 -0400448
bellardea2384d2004-08-01 21:59:26 +0000449 return NULL;
450}
451
Marc Mari88d88792016-08-12 09:27:03 -0400452BlockDriver *bdrv_find_format(const char *format_name)
453{
454 BlockDriver *drv1;
455 int i;
456
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500457 GLOBAL_STATE_CODE();
458
Marc Mari88d88792016-08-12 09:27:03 -0400459 drv1 = bdrv_do_find_format(format_name);
460 if (drv1) {
461 return drv1;
462 }
463
464 /* The driver isn't registered, maybe we need to load a module */
465 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
466 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
467 block_module_load_one(block_driver_modules[i].library_name);
468 break;
469 }
470 }
471
472 return bdrv_do_find_format(format_name);
473}
474
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300475static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100476{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800477 static const char *whitelist_rw[] = {
478 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200479 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800480 };
481 static const char *whitelist_ro[] = {
482 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200483 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100484 };
485 const char **p;
486
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800487 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100488 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800489 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100490
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800491 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300492 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100493 return 1;
494 }
495 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800496 if (read_only) {
497 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300498 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800499 return 1;
500 }
501 }
502 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100503 return 0;
504}
505
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300506int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
507{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500508 GLOBAL_STATE_CODE();
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300509 return bdrv_format_is_whitelisted(drv->format_name, read_only);
510}
511
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000512bool bdrv_uses_whitelist(void)
513{
514 return use_bdrv_whitelist;
515}
516
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800517typedef struct CreateCo {
518 BlockDriver *drv;
519 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800520 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800521 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200522 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800523} CreateCo;
524
525static void coroutine_fn bdrv_create_co_entry(void *opaque)
526{
Max Reitzcc84d902013-09-06 17:14:26 +0200527 Error *local_err = NULL;
528 int ret;
529
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800530 CreateCo *cco = opaque;
531 assert(cco->drv);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -0500532 GLOBAL_STATE_CODE();
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800533
Maxim Levitskyb92902d2020-03-26 03:12:17 +0200534 ret = cco->drv->bdrv_co_create_opts(cco->drv,
535 cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300536 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200537 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800538}
539
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200540int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800541 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000542{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800543 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200544
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500545 GLOBAL_STATE_CODE();
546
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800547 Coroutine *co;
548 CreateCo cco = {
549 .drv = drv,
550 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800551 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800552 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200553 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800554 };
555
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100556 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200557 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300558 ret = -ENOTSUP;
559 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800560 }
561
562 if (qemu_in_coroutine()) {
563 /* Fast-path if already in coroutine context */
564 bdrv_create_co_entry(&cco);
565 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200566 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
567 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800568 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200569 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800570 }
571 }
572
573 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200574 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100575 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200576 error_propagate(errp, cco.err);
577 } else {
578 error_setg_errno(errp, -ret, "Could not create image");
579 }
580 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800581
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300582out:
583 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800584 return ret;
bellardea2384d2004-08-01 21:59:26 +0000585}
586
Max Reitzfd171462020-01-22 17:45:29 +0100587/**
588 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
589 * least the given @minimum_size.
590 *
591 * On success, return @blk's actual length.
592 * Otherwise, return -errno.
593 */
594static int64_t create_file_fallback_truncate(BlockBackend *blk,
595 int64_t minimum_size, Error **errp)
596{
597 Error *local_err = NULL;
598 int64_t size;
599 int ret;
600
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500601 GLOBAL_STATE_CODE();
602
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200603 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
604 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100605 if (ret < 0 && ret != -ENOTSUP) {
606 error_propagate(errp, local_err);
607 return ret;
608 }
609
610 size = blk_getlength(blk);
611 if (size < 0) {
612 error_free(local_err);
613 error_setg_errno(errp, -size,
614 "Failed to inquire the new image file's length");
615 return size;
616 }
617
618 if (size < minimum_size) {
619 /* Need to grow the image, but we failed to do that */
620 error_propagate(errp, local_err);
621 return -ENOTSUP;
622 }
623
624 error_free(local_err);
625 local_err = NULL;
626
627 return size;
628}
629
630/**
631 * Helper function for bdrv_create_file_fallback(): Zero the first
632 * sector to remove any potentially pre-existing image header.
633 */
634static int create_file_fallback_zero_first_sector(BlockBackend *blk,
635 int64_t current_size,
636 Error **errp)
637{
638 int64_t bytes_to_clear;
639 int ret;
640
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500641 GLOBAL_STATE_CODE();
642
Max Reitzfd171462020-01-22 17:45:29 +0100643 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
644 if (bytes_to_clear) {
645 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
646 if (ret < 0) {
647 error_setg_errno(errp, -ret,
648 "Failed to clear the new image's first sector");
649 return ret;
650 }
651 }
652
653 return 0;
654}
655
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200656/**
657 * Simple implementation of bdrv_co_create_opts for protocol drivers
658 * which only support creation via opening a file
659 * (usually existing raw storage device)
660 */
661int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
662 const char *filename,
663 QemuOpts *opts,
664 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100665{
666 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100667 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100668 int64_t size = 0;
669 char *buf = NULL;
670 PreallocMode prealloc;
671 Error *local_err = NULL;
672 int ret;
673
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -0500674 GLOBAL_STATE_CODE();
675
Max Reitzfd171462020-01-22 17:45:29 +0100676 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
677 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
678 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
679 PREALLOC_MODE_OFF, &local_err);
680 g_free(buf);
681 if (local_err) {
682 error_propagate(errp, local_err);
683 return -EINVAL;
684 }
685
686 if (prealloc != PREALLOC_MODE_OFF) {
687 error_setg(errp, "Unsupported preallocation mode '%s'",
688 PreallocMode_str(prealloc));
689 return -ENOTSUP;
690 }
691
Max Reitzeeea1fa2020-02-25 16:56:18 +0100692 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100693 qdict_put_str(options, "driver", drv->format_name);
694
695 blk = blk_new_open(filename, NULL, options,
696 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
697 if (!blk) {
698 error_prepend(errp, "Protocol driver '%s' does not support image "
699 "creation, and opening the image failed: ",
700 drv->format_name);
701 return -EINVAL;
702 }
703
704 size = create_file_fallback_truncate(blk, size, errp);
705 if (size < 0) {
706 ret = size;
707 goto out;
708 }
709
710 ret = create_file_fallback_zero_first_sector(blk, size, errp);
711 if (ret < 0) {
712 goto out;
713 }
714
715 ret = 0;
716out:
717 blk_unref(blk);
718 return ret;
719}
720
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800721int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200722{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100723 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200724 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100725 QDict *qdict;
726 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200727
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500728 GLOBAL_STATE_CODE();
729
Max Reitzb65a5e12015-02-05 13:58:12 -0500730 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200731 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000732 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200733 }
734
Stefano Garzarella729222a2021-03-08 17:12:32 +0100735 if (!drv->create_opts) {
736 error_setg(errp, "Driver '%s' does not support image creation",
737 drv->format_name);
738 return -ENOTSUP;
739 }
740
741 /*
742 * 'opts' contains a QemuOptsList with a combination of format and protocol
743 * default values.
744 *
745 * The format properly removes its options, but the default values remain
746 * in 'opts->list'. So if the protocol has options with the same name
747 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
748 * of the format, since for overlapping options, the format wins.
749 *
750 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
751 * only the set options, and then convert it back to QemuOpts, using the
752 * create_opts of the protocol. So the new QemuOpts, will contain only the
753 * protocol defaults.
754 */
755 qdict = qemu_opts_to_qdict(opts, NULL);
756 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
757 if (protocol_opts == NULL) {
758 ret = -EINVAL;
759 goto out;
760 }
761
762 ret = bdrv_create(drv, filename, protocol_opts, errp);
763out:
764 qemu_opts_del(protocol_opts);
765 qobject_unref(qdict);
766 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200767}
768
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300769int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
770{
771 Error *local_err = NULL;
772 int ret;
773
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500774 IO_CODE();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300775 assert(bs != NULL);
776
777 if (!bs->drv) {
778 error_setg(errp, "Block node '%s' is not opened", bs->filename);
779 return -ENOMEDIUM;
780 }
781
782 if (!bs->drv->bdrv_co_delete_file) {
783 error_setg(errp, "Driver '%s' does not support image deletion",
784 bs->drv->format_name);
785 return -ENOTSUP;
786 }
787
788 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
789 if (ret < 0) {
790 error_propagate(errp, local_err);
791 }
792
793 return ret;
794}
795
Maxim Levitskya890f082020-12-17 19:09:03 +0200796void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
797{
798 Error *local_err = NULL;
799 int ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500800 IO_CODE();
Maxim Levitskya890f082020-12-17 19:09:03 +0200801
802 if (!bs) {
803 return;
804 }
805
806 ret = bdrv_co_delete_file(bs, &local_err);
807 /*
808 * ENOTSUP will happen if the block driver doesn't support
809 * the 'bdrv_co_delete_file' interface. This is a predictable
810 * scenario and shouldn't be reported back to the user.
811 */
812 if (ret == -ENOTSUP) {
813 error_free(local_err);
814 } else if (ret < 0) {
815 error_report_err(local_err);
816 }
817}
818
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100819/**
820 * Try to get @bs's logical and physical block size.
821 * On success, store them in @bsz struct and return 0.
822 * On failure return -errno.
823 * @bs must not be empty.
824 */
825int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
826{
827 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200828 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500829 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100830
831 if (drv && drv->bdrv_probe_blocksizes) {
832 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200833 } else if (filtered) {
834 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100835 }
836
837 return -ENOTSUP;
838}
839
840/**
841 * Try to get @bs's geometry (cyls, heads, sectors).
842 * On success, store them in @geo struct and return 0.
843 * On failure return -errno.
844 * @bs must not be empty.
845 */
846int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
847{
848 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200849 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500850 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100851
852 if (drv && drv->bdrv_probe_geometry) {
853 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200854 } else if (filtered) {
855 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100856 }
857
858 return -ENOTSUP;
859}
860
Jim Meyeringeba25052012-05-28 09:27:54 +0200861/*
862 * Create a uniquely-named empty temporary file.
863 * Return 0 upon success, otherwise a negative errno value.
864 */
865int get_tmp_filename(char *filename, int size)
866{
bellardd5249392004-08-03 21:14:23 +0000867#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000868 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200869 /* GetTempFileName requires that its output buffer (4th param)
870 have length MAX_PATH or greater. */
871 assert(size >= MAX_PATH);
872 return (GetTempPath(MAX_PATH, temp_dir)
873 && GetTempFileName(temp_dir, "qem", 0, filename)
874 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000875#else
bellardea2384d2004-08-01 21:59:26 +0000876 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000877 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000878 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530879 if (!tmpdir) {
880 tmpdir = "/var/tmp";
881 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200882 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
883 return -EOVERFLOW;
884 }
bellardea2384d2004-08-01 21:59:26 +0000885 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800886 if (fd < 0) {
887 return -errno;
888 }
889 if (close(fd) != 0) {
890 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200891 return -errno;
892 }
893 return 0;
bellardd5249392004-08-03 21:14:23 +0000894#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200895}
bellardea2384d2004-08-01 21:59:26 +0000896
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200897/*
898 * Detect host devices. By convention, /dev/cdrom[N] is always
899 * recognized as a host CDROM.
900 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200901static BlockDriver *find_hdev_driver(const char *filename)
902{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200903 int score_max = 0, score;
904 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500905 GLOBAL_STATE_CODE();
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200906
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100907 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200908 if (d->bdrv_probe_device) {
909 score = d->bdrv_probe_device(filename);
910 if (score > score_max) {
911 score_max = score;
912 drv = d;
913 }
914 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200915 }
916
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200917 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200918}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200919
Marc Mari88d88792016-08-12 09:27:03 -0400920static BlockDriver *bdrv_do_find_protocol(const char *protocol)
921{
922 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500923 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400924
925 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
926 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
927 return drv1;
928 }
929 }
930
931 return NULL;
932}
933
Kevin Wolf98289622013-07-10 15:47:39 +0200934BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500935 bool allow_protocol_prefix,
936 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200937{
938 BlockDriver *drv1;
939 char protocol[128];
940 int len;
941 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400942 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200943
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500944 GLOBAL_STATE_CODE();
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200945 /* TODO Drivers without bdrv_file_open must be specified explicitly */
946
Christoph Hellwig39508e72010-06-23 12:25:17 +0200947 /*
948 * XXX(hch): we really should not let host device detection
949 * override an explicit protocol specification, but moving this
950 * later breaks access to device names with colons in them.
951 * Thanks to the brain-dead persistent naming schemes on udev-
952 * based Linux systems those actually are quite common.
953 */
954 drv1 = find_hdev_driver(filename);
955 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200956 return drv1;
957 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200958
Kevin Wolf98289622013-07-10 15:47:39 +0200959 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100960 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200961 }
Kevin Wolf98289622013-07-10 15:47:39 +0200962
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000963 p = strchr(filename, ':');
964 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200965 len = p - filename;
966 if (len > sizeof(protocol) - 1)
967 len = sizeof(protocol) - 1;
968 memcpy(protocol, filename, len);
969 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400970
971 drv1 = bdrv_do_find_protocol(protocol);
972 if (drv1) {
973 return drv1;
974 }
975
976 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
977 if (block_driver_modules[i].protocol_name &&
978 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
979 block_module_load_one(block_driver_modules[i].library_name);
980 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200981 }
982 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500983
Marc Mari88d88792016-08-12 09:27:03 -0400984 drv1 = bdrv_do_find_protocol(protocol);
985 if (!drv1) {
986 error_setg(errp, "Unknown protocol '%s'", protocol);
987 }
988 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200989}
990
Markus Armbrusterc6684242014-11-20 16:27:10 +0100991/*
992 * Guess image format by probing its contents.
993 * This is not a good idea when your image is raw (CVE-2008-2004), but
994 * we do it anyway for backward compatibility.
995 *
996 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100997 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
998 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100999 * @filename is its filename.
1000 *
1001 * For all block drivers, call the bdrv_probe() method to get its
1002 * probing score.
1003 * Return the first block driver with the highest probing score.
1004 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01001005BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
1006 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +01001007{
1008 int score_max = 0, score;
1009 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05001010 IO_CODE();
Markus Armbrusterc6684242014-11-20 16:27:10 +01001011
1012 QLIST_FOREACH(d, &bdrv_drivers, list) {
1013 if (d->bdrv_probe) {
1014 score = d->bdrv_probe(buf, buf_size, filename);
1015 if (score > score_max) {
1016 score_max = score;
1017 drv = d;
1018 }
1019 }
1020 }
1021
1022 return drv;
1023}
1024
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001025static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +02001026 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +00001027{
Markus Armbrusterc6684242014-11-20 16:27:10 +01001028 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +01001029 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +01001030 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001031
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001032 GLOBAL_STATE_CODE();
1033
Kevin Wolf08a00552010-06-01 18:37:31 +02001034 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001035 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +01001036 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +02001037 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -07001038 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001039
Alberto Fariaa9262f52022-07-05 17:15:11 +01001040 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
bellard83f64092006-08-01 16:21:11 +00001041 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001042 error_setg_errno(errp, -ret, "Could not read image for determining its "
1043 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +02001044 *pdrv = NULL;
1045 return ret;
bellard83f64092006-08-01 16:21:11 +00001046 }
1047
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001048 drv = bdrv_probe_all(buf, sizeof(buf), filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001049 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001050 error_setg(errp, "Could not determine image format: No compatible "
1051 "driver found");
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001052 *pdrv = NULL;
1053 return -ENOENT;
Stefan Weilc98ac352010-07-21 21:51:51 +02001054 }
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001055
Stefan Weilc98ac352010-07-21 21:51:51 +02001056 *pdrv = drv;
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001057 return 0;
bellardea2384d2004-08-01 21:59:26 +00001058}
1059
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001060/**
1061 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001062 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001063 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +02001064int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001065{
1066 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05001067 IO_CODE();
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001068
Max Reitzd470ad42017-11-10 21:31:09 +01001069 if (!drv) {
1070 return -ENOMEDIUM;
1071 }
1072
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001073 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001074 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001075 return 0;
1076
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001077 /* query actual device if possible, otherwise just trust the hint */
1078 if (drv->bdrv_getlength) {
1079 int64_t length = drv->bdrv_getlength(bs);
1080 if (length < 0) {
1081 return length;
1082 }
Fam Zheng7e382002013-11-06 19:48:06 +08001083 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001084 }
1085
1086 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001087
1088 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1089 return -EFBIG;
1090 }
1091
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001092 return 0;
1093}
1094
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001095/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001096 * Combines a QDict of new block driver @options with any missing options taken
1097 * from @old_options, so that leaving out an option defaults to its old value.
1098 */
1099static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1100 QDict *old_options)
1101{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001102 GLOBAL_STATE_CODE();
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001103 if (bs->drv && bs->drv->bdrv_join_options) {
1104 bs->drv->bdrv_join_options(options, old_options);
1105 } else {
1106 qdict_join(options, old_options, false);
1107 }
1108}
1109
Alberto Garcia543770b2018-09-06 12:37:09 +03001110static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1111 int open_flags,
1112 Error **errp)
1113{
1114 Error *local_err = NULL;
1115 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1116 BlockdevDetectZeroesOptions detect_zeroes =
1117 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1118 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001119 GLOBAL_STATE_CODE();
Alberto Garcia543770b2018-09-06 12:37:09 +03001120 g_free(value);
1121 if (local_err) {
1122 error_propagate(errp, local_err);
1123 return detect_zeroes;
1124 }
1125
1126 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1127 !(open_flags & BDRV_O_UNMAP))
1128 {
1129 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1130 "without setting discard operation to unmap");
1131 }
1132
1133 return detect_zeroes;
1134}
1135
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001136/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001137 * Set open flags for aio engine
1138 *
1139 * Return 0 on success, -1 if the engine specified is invalid
1140 */
1141int bdrv_parse_aio(const char *mode, int *flags)
1142{
1143 if (!strcmp(mode, "threads")) {
1144 /* do nothing, default */
1145 } else if (!strcmp(mode, "native")) {
1146 *flags |= BDRV_O_NATIVE_AIO;
1147#ifdef CONFIG_LINUX_IO_URING
1148 } else if (!strcmp(mode, "io_uring")) {
1149 *flags |= BDRV_O_IO_URING;
1150#endif
1151 } else {
1152 return -1;
1153 }
1154
1155 return 0;
1156}
1157
1158/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001159 * Set open flags for a given discard mode
1160 *
1161 * Return 0 on success, -1 if the discard mode was invalid.
1162 */
1163int bdrv_parse_discard_flags(const char *mode, int *flags)
1164{
1165 *flags &= ~BDRV_O_UNMAP;
1166
1167 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1168 /* do nothing */
1169 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1170 *flags |= BDRV_O_UNMAP;
1171 } else {
1172 return -1;
1173 }
1174
1175 return 0;
1176}
1177
1178/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001179 * Set open flags for a given cache mode
1180 *
1181 * Return 0 on success, -1 if the cache mode was invalid.
1182 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001183int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001184{
1185 *flags &= ~BDRV_O_CACHE_MASK;
1186
1187 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001188 *writethrough = false;
1189 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001190 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001191 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001192 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001193 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001194 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001195 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001196 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001197 *flags |= BDRV_O_NO_FLUSH;
1198 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001199 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001200 } else {
1201 return -1;
1202 }
1203
1204 return 0;
1205}
1206
Kevin Wolfb5411552017-01-17 15:56:16 +01001207static char *bdrv_child_get_parent_desc(BdrvChild *c)
1208{
1209 BlockDriverState *parent = c->opaque;
Vladimir Sementsov-Ogievskiy2c0a3ac2021-06-01 10:52:15 +03001210 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
Kevin Wolfb5411552017-01-17 15:56:16 +01001211}
1212
Kevin Wolf20018e12016-05-23 18:46:59 +02001213static void bdrv_child_cb_drained_begin(BdrvChild *child)
1214{
1215 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001216 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +02001217}
1218
Kevin Wolf89bd0302018-03-22 14:11:20 +01001219static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1220{
1221 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001222 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001223}
1224
Max Reitze037c092019-07-19 11:26:14 +02001225static void bdrv_child_cb_drained_end(BdrvChild *child,
1226 int *drained_end_counter)
Kevin Wolf20018e12016-05-23 18:46:59 +02001227{
1228 BlockDriverState *bs = child->opaque;
Max Reitze037c092019-07-19 11:26:14 +02001229 bdrv_drained_end_no_poll(bs, drained_end_counter);
Kevin Wolf20018e12016-05-23 18:46:59 +02001230}
1231
Kevin Wolf38701b62017-05-04 18:52:39 +02001232static int bdrv_child_cb_inactivate(BdrvChild *child)
1233{
1234 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001235 GLOBAL_STATE_CODE();
Kevin Wolf38701b62017-05-04 18:52:39 +02001236 assert(bs->open_flags & BDRV_O_INACTIVE);
1237 return 0;
1238}
1239
Kevin Wolf5d231842019-05-06 19:17:56 +02001240static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1241 GSList **ignore, Error **errp)
1242{
1243 BlockDriverState *bs = child->opaque;
1244 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1245}
1246
Kevin Wolf53a7d042019-05-06 19:17:59 +02001247static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1248 GSList **ignore)
1249{
1250 BlockDriverState *bs = child->opaque;
1251 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1252}
1253
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001254/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001255 * Returns the options and flags that a temporary snapshot should get, based on
1256 * the originally requested flags (the originally requested image will have
1257 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001258 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001259static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1260 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001261{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001262 GLOBAL_STATE_CODE();
Kevin Wolf73176be2016-03-07 13:02:15 +01001263 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1264
1265 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001266 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1267 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001268
Kevin Wolf3f486862019-04-04 17:04:43 +02001269 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001270 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001271 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001272
Kevin Wolf41869042016-06-16 12:59:30 +02001273 /* aio=native doesn't work for cache.direct=off, so disable it for the
1274 * temporary snapshot */
1275 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001276}
1277
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001278static void bdrv_backing_attach(BdrvChild *c)
1279{
1280 BlockDriverState *parent = c->opaque;
1281 BlockDriverState *backing_hd = c->bs;
1282
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001283 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001284 assert(!parent->backing_blocker);
1285 error_setg(&parent->backing_blocker,
1286 "node is used as backing hd of '%s'",
1287 bdrv_get_device_or_node_name(parent));
1288
Max Reitzf30c66b2019-02-01 20:29:05 +01001289 bdrv_refresh_filename(backing_hd);
1290
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001291 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001292
1293 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1294 /* Otherwise we won't be able to commit or stream */
1295 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1296 parent->backing_blocker);
1297 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1298 parent->backing_blocker);
1299 /*
1300 * We do backup in 3 ways:
1301 * 1. drive backup
1302 * The target bs is new opened, and the source is top BDS
1303 * 2. blockdev backup
1304 * Both the source and the target are top BDSes.
1305 * 3. internal backup(used for block replication)
1306 * Both the source and the target are backing file
1307 *
1308 * In case 1 and 2, neither the source nor the target is the backing file.
1309 * In case 3, we will block the top BDS, so there is only one block job
1310 * for the top BDS and its backing chain.
1311 */
1312 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1313 parent->backing_blocker);
1314 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1315 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001316}
Kevin Wolfd736f112017-12-18 16:05:48 +01001317
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001318static void bdrv_backing_detach(BdrvChild *c)
1319{
1320 BlockDriverState *parent = c->opaque;
1321
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001322 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001323 assert(parent->backing_blocker);
1324 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1325 error_free(parent->backing_blocker);
1326 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001327}
Kevin Wolfd736f112017-12-18 16:05:48 +01001328
Kevin Wolf6858eba2017-06-29 19:32:21 +02001329static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1330 const char *filename, Error **errp)
1331{
1332 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001333 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001334 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001335 GLOBAL_STATE_CODE();
Kevin Wolf6858eba2017-06-29 19:32:21 +02001336
Alberto Garciae94d3db2018-11-12 16:00:34 +02001337 if (read_only) {
1338 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001339 if (ret < 0) {
1340 return ret;
1341 }
1342 }
1343
Kevin Wolf6858eba2017-06-29 19:32:21 +02001344 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001345 base->drv ? base->drv->format_name : "",
1346 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001347 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001348 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001349 }
1350
Alberto Garciae94d3db2018-11-12 16:00:34 +02001351 if (read_only) {
1352 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001353 }
1354
Kevin Wolf6858eba2017-06-29 19:32:21 +02001355 return ret;
1356}
1357
Max Reitzfae8bd32020-05-13 13:05:20 +02001358/*
1359 * Returns the options and flags that a generic child of a BDS should
1360 * get, based on the given options and flags for the parent BDS.
1361 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001362static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1363 int *child_flags, QDict *child_options,
1364 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001365{
1366 int flags = parent_flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001367 GLOBAL_STATE_CODE();
Max Reitzfae8bd32020-05-13 13:05:20 +02001368
1369 /*
1370 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1371 * Generally, the question to answer is: Should this child be
1372 * format-probed by default?
1373 */
1374
1375 /*
1376 * Pure and non-filtered data children of non-format nodes should
1377 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1378 * set). This only affects a very limited set of drivers (namely
1379 * quorum and blkverify when this comment was written).
1380 * Force-clear BDRV_O_PROTOCOL then.
1381 */
1382 if (!parent_is_format &&
1383 (role & BDRV_CHILD_DATA) &&
1384 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1385 {
1386 flags &= ~BDRV_O_PROTOCOL;
1387 }
1388
1389 /*
1390 * All children of format nodes (except for COW children) and all
1391 * metadata children in general should never be format-probed.
1392 * Force-set BDRV_O_PROTOCOL then.
1393 */
1394 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1395 (role & BDRV_CHILD_METADATA))
1396 {
1397 flags |= BDRV_O_PROTOCOL;
1398 }
1399
1400 /*
1401 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1402 * the parent.
1403 */
1404 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1405 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1406 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1407
1408 if (role & BDRV_CHILD_COW) {
1409 /* backing files are opened read-only by default */
1410 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1411 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1412 } else {
1413 /* Inherit the read-only option from the parent if it's not set */
1414 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1415 qdict_copy_default(child_options, parent_options,
1416 BDRV_OPT_AUTO_READ_ONLY);
1417 }
1418
1419 /*
1420 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1421 * can default to enable it on lower layers regardless of the
1422 * parent option.
1423 */
1424 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1425
1426 /* Clear flags that only apply to the top layer */
1427 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1428
1429 if (role & BDRV_CHILD_METADATA) {
1430 flags &= ~BDRV_O_NO_IO;
1431 }
1432 if (role & BDRV_CHILD_COW) {
1433 flags &= ~BDRV_O_TEMPORARY;
1434 }
1435
1436 *child_flags = flags;
1437}
1438
Max Reitzca2f1232020-05-13 13:05:22 +02001439static void bdrv_child_cb_attach(BdrvChild *child)
1440{
1441 BlockDriverState *bs = child->opaque;
1442
Emanuele Giuseppe Esposito696bf4c2022-03-03 10:15:59 -05001443 assert_bdrv_graph_writable(bs);
Hanna Reitza2253692021-11-15 15:53:58 +01001444 QLIST_INSERT_HEAD(&bs->children, child, next);
1445
Max Reitzca2f1232020-05-13 13:05:22 +02001446 if (child->role & BDRV_CHILD_COW) {
1447 bdrv_backing_attach(child);
1448 }
1449
1450 bdrv_apply_subtree_drain(child, bs);
1451}
1452
Max Reitz48e08282020-05-13 13:05:23 +02001453static void bdrv_child_cb_detach(BdrvChild *child)
1454{
1455 BlockDriverState *bs = child->opaque;
1456
1457 if (child->role & BDRV_CHILD_COW) {
1458 bdrv_backing_detach(child);
1459 }
1460
1461 bdrv_unapply_subtree_drain(child, bs);
Hanna Reitza2253692021-11-15 15:53:58 +01001462
Emanuele Giuseppe Esposito696bf4c2022-03-03 10:15:59 -05001463 assert_bdrv_graph_writable(bs);
Hanna Reitza2253692021-11-15 15:53:58 +01001464 QLIST_REMOVE(child, next);
Max Reitz48e08282020-05-13 13:05:23 +02001465}
1466
Max Reitz43483552020-05-13 13:05:24 +02001467static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1468 const char *filename, Error **errp)
1469{
1470 if (c->role & BDRV_CHILD_COW) {
1471 return bdrv_backing_update_filename(c, base, filename, errp);
1472 }
1473 return 0;
1474}
1475
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001476AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001477{
1478 BlockDriverState *bs = c->opaque;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05001479 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001480
1481 return bdrv_get_aio_context(bs);
1482}
1483
Max Reitz43483552020-05-13 13:05:24 +02001484const BdrvChildClass child_of_bds = {
1485 .parent_is_bds = true,
1486 .get_parent_desc = bdrv_child_get_parent_desc,
1487 .inherit_options = bdrv_inherited_options,
1488 .drained_begin = bdrv_child_cb_drained_begin,
1489 .drained_poll = bdrv_child_cb_drained_poll,
1490 .drained_end = bdrv_child_cb_drained_end,
1491 .attach = bdrv_child_cb_attach,
1492 .detach = bdrv_child_cb_detach,
1493 .inactivate = bdrv_child_cb_inactivate,
1494 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1495 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1496 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001497 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001498};
1499
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001500AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1501{
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05001502 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001503 return c->klass->get_parent_aio_context(c);
1504}
1505
Kevin Wolf7b272452012-11-12 17:05:39 +01001506static int bdrv_open_flags(BlockDriverState *bs, int flags)
1507{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001508 int open_flags = flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001509 GLOBAL_STATE_CODE();
Kevin Wolf7b272452012-11-12 17:05:39 +01001510
1511 /*
1512 * Clear flags that are internal to the block layer before opening the
1513 * image.
1514 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001515 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001516
Kevin Wolf7b272452012-11-12 17:05:39 +01001517 return open_flags;
1518}
1519
Kevin Wolf91a097e2015-05-08 17:49:53 +02001520static void update_flags_from_options(int *flags, QemuOpts *opts)
1521{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001522 GLOBAL_STATE_CODE();
1523
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001524 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001525
Alberto Garcia57f9db92018-09-06 12:37:06 +03001526 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001527 *flags |= BDRV_O_NO_FLUSH;
1528 }
1529
Alberto Garcia57f9db92018-09-06 12:37:06 +03001530 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001531 *flags |= BDRV_O_NOCACHE;
1532 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001533
Alberto Garcia57f9db92018-09-06 12:37:06 +03001534 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001535 *flags |= BDRV_O_RDWR;
1536 }
1537
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001538 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1539 *flags |= BDRV_O_AUTO_RDONLY;
1540 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001541}
1542
1543static void update_options_from_flags(QDict *options, int flags)
1544{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001545 GLOBAL_STATE_CODE();
Kevin Wolf91a097e2015-05-08 17:49:53 +02001546 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001547 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001548 }
1549 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001550 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1551 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001552 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001553 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001554 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001555 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001556 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1557 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1558 flags & BDRV_O_AUTO_RDONLY);
1559 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001560}
1561
Kevin Wolf636ea372014-01-24 14:11:52 +01001562static void bdrv_assign_node_name(BlockDriverState *bs,
1563 const char *node_name,
1564 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001565{
Jeff Cody15489c72015-10-12 19:36:50 -04001566 char *gen_node_name = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001567 GLOBAL_STATE_CODE();
Benoît Canet6913c0c2014-01-23 21:31:33 +01001568
Jeff Cody15489c72015-10-12 19:36:50 -04001569 if (!node_name) {
1570 node_name = gen_node_name = id_generate(ID_BLOCK);
1571 } else if (!id_wellformed(node_name)) {
1572 /*
1573 * Check for empty string or invalid characters, but not if it is
1574 * generated (generated names use characters not available to the user)
1575 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001576 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001577 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001578 }
1579
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001580 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001581 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001582 error_setg(errp, "node-name=%s is conflicting with a device id",
1583 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001584 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001585 }
1586
Benoît Canet6913c0c2014-01-23 21:31:33 +01001587 /* takes care of avoiding duplicates node names */
1588 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001589 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001590 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001591 }
1592
Kevin Wolf824808d2018-07-04 13:28:29 +02001593 /* Make sure that the node name isn't truncated */
1594 if (strlen(node_name) >= sizeof(bs->node_name)) {
1595 error_setg(errp, "Node name too long");
1596 goto out;
1597 }
1598
Benoît Canet6913c0c2014-01-23 21:31:33 +01001599 /* copy node name into the bs and insert it into the graph list */
1600 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1601 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001602out:
1603 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001604}
1605
Kevin Wolf01a56502017-01-18 15:51:56 +01001606static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1607 const char *node_name, QDict *options,
1608 int open_flags, Error **errp)
1609{
1610 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001611 int i, ret;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001612 GLOBAL_STATE_CODE();
Kevin Wolf01a56502017-01-18 15:51:56 +01001613
1614 bdrv_assign_node_name(bs, node_name, &local_err);
1615 if (local_err) {
1616 error_propagate(errp, local_err);
1617 return -EINVAL;
1618 }
1619
1620 bs->drv = drv;
1621 bs->opaque = g_malloc0(drv->instance_size);
1622
1623 if (drv->bdrv_file_open) {
1624 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1625 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001626 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001627 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001628 } else {
1629 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001630 }
1631
1632 if (ret < 0) {
1633 if (local_err) {
1634 error_propagate(errp, local_err);
1635 } else if (bs->filename[0]) {
1636 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1637 } else {
1638 error_setg_errno(errp, -ret, "Could not open image");
1639 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001640 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001641 }
1642
1643 ret = refresh_total_sectors(bs, bs->total_sectors);
1644 if (ret < 0) {
1645 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001646 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001647 }
1648
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001649 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolf01a56502017-01-18 15:51:56 +01001650 if (local_err) {
1651 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001652 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001653 }
1654
1655 assert(bdrv_opt_mem_align(bs) != 0);
1656 assert(bdrv_min_mem_align(bs) != 0);
1657 assert(is_power_of_2(bs->bl.request_alignment));
1658
Kevin Wolf0f122642018-03-28 18:29:18 +02001659 for (i = 0; i < bs->quiesce_counter; i++) {
1660 if (drv->bdrv_co_drain_begin) {
1661 drv->bdrv_co_drain_begin(bs);
1662 }
1663 }
1664
Kevin Wolf01a56502017-01-18 15:51:56 +01001665 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001666open_failed:
1667 bs->drv = NULL;
1668 if (bs->file != NULL) {
1669 bdrv_unref_child(bs, bs->file);
1670 bs->file = NULL;
1671 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001672 g_free(bs->opaque);
1673 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001674 return ret;
1675}
1676
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001677/*
1678 * Create and open a block node.
1679 *
1680 * @options is a QDict of options to pass to the block drivers, or NULL for an
1681 * empty set of options. The reference to the QDict belongs to the block layer
1682 * after the call (even on failure), so if the caller intends to reuse the
1683 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1684 */
1685BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1686 const char *node_name,
1687 QDict *options, int flags,
1688 Error **errp)
Kevin Wolf680c7f92017-01-18 17:16:41 +01001689{
1690 BlockDriverState *bs;
1691 int ret;
1692
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001693 GLOBAL_STATE_CODE();
1694
Kevin Wolf680c7f92017-01-18 17:16:41 +01001695 bs = bdrv_new();
1696 bs->open_flags = flags;
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001697 bs->options = options ?: qdict_new();
1698 bs->explicit_options = qdict_clone_shallow(bs->options);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001699 bs->opaque = NULL;
1700
1701 update_options_from_flags(bs->options, flags);
1702
1703 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1704 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001705 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001706 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001707 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001708 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001709 bdrv_unref(bs);
1710 return NULL;
1711 }
1712
1713 return bs;
1714}
1715
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001716/* Create and open a block node. */
1717BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1718 int flags, Error **errp)
1719{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001720 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001721 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1722}
1723
Kevin Wolfc5f30142016-10-06 11:33:17 +02001724QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001725 .name = "bdrv_common",
1726 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1727 .desc = {
1728 {
1729 .name = "node-name",
1730 .type = QEMU_OPT_STRING,
1731 .help = "Node name of the block device node",
1732 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001733 {
1734 .name = "driver",
1735 .type = QEMU_OPT_STRING,
1736 .help = "Block driver to use for the node",
1737 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001738 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001739 .name = BDRV_OPT_CACHE_DIRECT,
1740 .type = QEMU_OPT_BOOL,
1741 .help = "Bypass software writeback cache on the host",
1742 },
1743 {
1744 .name = BDRV_OPT_CACHE_NO_FLUSH,
1745 .type = QEMU_OPT_BOOL,
1746 .help = "Ignore flush requests",
1747 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001748 {
1749 .name = BDRV_OPT_READ_ONLY,
1750 .type = QEMU_OPT_BOOL,
1751 .help = "Node is opened in read-only mode",
1752 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001753 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001754 .name = BDRV_OPT_AUTO_READ_ONLY,
1755 .type = QEMU_OPT_BOOL,
1756 .help = "Node can become read-only if opening read-write fails",
1757 },
1758 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001759 .name = "detect-zeroes",
1760 .type = QEMU_OPT_STRING,
1761 .help = "try to optimize zero writes (off, on, unmap)",
1762 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001763 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001764 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001765 .type = QEMU_OPT_STRING,
1766 .help = "discard operation (ignore/off, unmap/on)",
1767 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001768 {
1769 .name = BDRV_OPT_FORCE_SHARE,
1770 .type = QEMU_OPT_BOOL,
1771 .help = "always accept other writers (default: off)",
1772 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001773 { /* end of list */ }
1774 },
1775};
1776
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001777QemuOptsList bdrv_create_opts_simple = {
1778 .name = "simple-create-opts",
1779 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001780 .desc = {
1781 {
1782 .name = BLOCK_OPT_SIZE,
1783 .type = QEMU_OPT_SIZE,
1784 .help = "Virtual disk size"
1785 },
1786 {
1787 .name = BLOCK_OPT_PREALLOC,
1788 .type = QEMU_OPT_STRING,
1789 .help = "Preallocation mode (allowed values: off)"
1790 },
1791 { /* end of list */ }
1792 }
1793};
1794
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001795/*
Kevin Wolf57915332010-04-14 15:24:50 +02001796 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001797 *
1798 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001799 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001800static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001801 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001802{
1803 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001804 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001805 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001806 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001807 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001808 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001809 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001810 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001811 bool ro;
Kevin Wolf57915332010-04-14 15:24:50 +02001812
Paolo Bonzini64058752012-05-08 16:51:49 +02001813 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001814 assert(options != NULL && bs->options != options);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001815 GLOBAL_STATE_CODE();
Kevin Wolf57915332010-04-14 15:24:50 +02001816
Kevin Wolf62392eb2015-04-24 16:38:02 +02001817 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001818 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001819 ret = -EINVAL;
1820 goto fail_opts;
1821 }
1822
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001823 update_flags_from_options(&bs->open_flags, opts);
1824
Kevin Wolf62392eb2015-04-24 16:38:02 +02001825 driver_name = qemu_opt_get(opts, "driver");
1826 drv = bdrv_find_format(driver_name);
1827 assert(drv != NULL);
1828
Fam Zheng5a9347c2017-05-03 00:35:37 +08001829 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1830
1831 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1832 error_setg(errp,
1833 BDRV_OPT_FORCE_SHARE
1834 "=on can only be used with read-only images");
1835 ret = -EINVAL;
1836 goto fail_opts;
1837 }
1838
Kevin Wolf45673672013-04-22 17:48:40 +02001839 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001840 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001841 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001842 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001843 /*
1844 * Caution: while qdict_get_try_str() is fine, getting
1845 * non-string types would require more care. When @options
1846 * come from -blockdev or blockdev_add, its members are typed
1847 * according to the QAPI schema, but when they come from
1848 * -drive, they're all QString.
1849 */
Kevin Wolf45673672013-04-22 17:48:40 +02001850 filename = qdict_get_try_str(options, "filename");
1851 }
1852
Max Reitz4a008242017-04-13 18:06:24 +02001853 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001854 error_setg(errp, "The '%s' block driver requires a file name",
1855 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001856 ret = -EINVAL;
1857 goto fail_opts;
1858 }
1859
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001860 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1861 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001862
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001863 ro = bdrv_is_read_only(bs);
1864
1865 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1866 if (!ro && bdrv_is_whitelisted(drv, true)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001867 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1868 } else {
1869 ret = -ENOTSUP;
1870 }
1871 if (ret < 0) {
1872 error_setg(errp,
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001873 !ro && bdrv_is_whitelisted(drv, true)
Kevin Wolf8be25de2019-01-22 13:15:31 +01001874 ? "Driver '%s' can only be used for read-only devices"
1875 : "Driver '%s' is not whitelisted",
1876 drv->format_name);
1877 goto fail_opts;
1878 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001879 }
Kevin Wolf57915332010-04-14 15:24:50 +02001880
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001881 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001882 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001883
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001884 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001885 if (!ro) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001886 bdrv_enable_copy_on_read(bs);
1887 } else {
1888 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001889 ret = -EINVAL;
1890 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001891 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001892 }
1893
Alberto Garcia415bbca2018-10-03 13:23:13 +03001894 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001895 if (discard != NULL) {
1896 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1897 error_setg(errp, "Invalid discard option");
1898 ret = -EINVAL;
1899 goto fail_opts;
1900 }
1901 }
1902
Alberto Garcia543770b2018-09-06 12:37:09 +03001903 bs->detect_zeroes =
1904 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1905 if (local_err) {
1906 error_propagate(errp, local_err);
1907 ret = -EINVAL;
1908 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001909 }
1910
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001911 if (filename != NULL) {
1912 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1913 } else {
1914 bs->filename[0] = '\0';
1915 }
Max Reitz91af7012014-07-18 20:24:56 +02001916 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001917
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001918 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001919 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001920 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001921
Kevin Wolf01a56502017-01-18 15:51:56 +01001922 assert(!drv->bdrv_file_open || file == NULL);
1923 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001924 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001925 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001926 }
1927
Kevin Wolf18edf282015-04-07 17:12:56 +02001928 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001929 return 0;
1930
Kevin Wolf18edf282015-04-07 17:12:56 +02001931fail_opts:
1932 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001933 return ret;
1934}
1935
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001936static QDict *parse_json_filename(const char *filename, Error **errp)
1937{
1938 QObject *options_obj;
1939 QDict *options;
1940 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001941 GLOBAL_STATE_CODE();
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001942
1943 ret = strstart(filename, "json:", &filename);
1944 assert(ret);
1945
Markus Armbruster5577fff2017-02-28 22:26:59 +01001946 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001947 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001948 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001949 return NULL;
1950 }
1951
Max Reitz7dc847e2018-02-24 16:40:29 +01001952 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001953 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001954 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001955 error_setg(errp, "Invalid JSON object given");
1956 return NULL;
1957 }
1958
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001959 qdict_flatten(options);
1960
1961 return options;
1962}
1963
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001964static void parse_json_protocol(QDict *options, const char **pfilename,
1965 Error **errp)
1966{
1967 QDict *json_options;
1968 Error *local_err = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001969 GLOBAL_STATE_CODE();
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001970
1971 /* Parse json: pseudo-protocol */
1972 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1973 return;
1974 }
1975
1976 json_options = parse_json_filename(*pfilename, &local_err);
1977 if (local_err) {
1978 error_propagate(errp, local_err);
1979 return;
1980 }
1981
1982 /* Options given in the filename have lower priority than options
1983 * specified directly */
1984 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001985 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001986 *pfilename = NULL;
1987}
1988
Kevin Wolf57915332010-04-14 15:24:50 +02001989/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001990 * Fills in default options for opening images and converts the legacy
1991 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001992 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1993 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001994 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001995static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001996 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001997{
1998 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001999 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002000 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02002001 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002002 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002003
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002004 GLOBAL_STATE_CODE();
2005
Markus Armbruster129c7d12017-03-30 19:43:12 +02002006 /*
2007 * Caution: while qdict_get_try_str() is fine, getting non-string
2008 * types would require more care. When @options come from
2009 * -blockdev or blockdev_add, its members are typed according to
2010 * the QAPI schema, but when they come from -drive, they're all
2011 * QString.
2012 */
Max Reitz53a29512015-03-19 14:53:16 -04002013 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02002014 if (drvname) {
2015 drv = bdrv_find_format(drvname);
2016 if (!drv) {
2017 error_setg(errp, "Unknown driver '%s'", drvname);
2018 return -ENOENT;
2019 }
2020 /* If the user has explicitly specified the driver, this choice should
2021 * override the BDRV_O_PROTOCOL flag */
2022 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04002023 }
2024
2025 if (protocol) {
2026 *flags |= BDRV_O_PROTOCOL;
2027 } else {
2028 *flags &= ~BDRV_O_PROTOCOL;
2029 }
2030
Kevin Wolf91a097e2015-05-08 17:49:53 +02002031 /* Translate cache options from flags into options */
2032 update_options_from_flags(*options, *flags);
2033
Kevin Wolff54120f2014-05-26 11:09:59 +02002034 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002035 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002036 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002037 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02002038 parse_filename = true;
2039 } else {
2040 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2041 "the same time");
2042 return -EINVAL;
2043 }
2044 }
2045
2046 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02002047 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02002048 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02002049
Max Reitz053e1572015-08-26 19:47:51 +02002050 if (!drvname && protocol) {
2051 if (filename) {
2052 drv = bdrv_find_protocol(filename, parse_filename, errp);
2053 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002054 return -EINVAL;
2055 }
Max Reitz053e1572015-08-26 19:47:51 +02002056
2057 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05002058 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02002059 } else {
2060 error_setg(errp, "Must specify either driver or file");
2061 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002062 }
2063 }
2064
Kevin Wolf17b005f2014-05-27 10:50:29 +02002065 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02002066
2067 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002068 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002069 drv->bdrv_parse_filename(filename, *options, &local_err);
2070 if (local_err) {
2071 error_propagate(errp, local_err);
2072 return -EINVAL;
2073 }
2074
2075 if (!drv->bdrv_needs_filename) {
2076 qdict_del(*options, "filename");
2077 }
2078 }
2079
2080 return 0;
2081}
2082
Kevin Wolf148eb132017-09-14 14:32:04 +02002083typedef struct BlockReopenQueueEntry {
2084 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01002085 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02002086 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002087 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02002088} BlockReopenQueueEntry;
2089
2090/*
2091 * Return the flags that @bs will have after the reopens in @q have
2092 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2093 * return the current flags.
2094 */
2095static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2096{
2097 BlockReopenQueueEntry *entry;
2098
2099 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002100 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002101 if (entry->state.bs == bs) {
2102 return entry->state.flags;
2103 }
2104 }
2105 }
2106
2107 return bs->open_flags;
2108}
2109
2110/* Returns whether the image file can be written to after the reopen queue @q
2111 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002112static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2113 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002114{
2115 int flags = bdrv_reopen_get_flags(q, bs);
2116
2117 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2118}
2119
Max Reitzcc022142018-06-06 21:37:00 +02002120/*
2121 * Return whether the BDS can be written to. This is not necessarily
2122 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2123 * be written to but do not count as read-only images.
2124 */
2125bool bdrv_is_writable(BlockDriverState *bs)
2126{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05002127 IO_CODE();
Max Reitzcc022142018-06-06 21:37:00 +02002128 return bdrv_is_writable_after_reopen(bs, NULL);
2129}
2130
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002131static char *bdrv_child_user_desc(BdrvChild *c)
2132{
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002133 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002134 return c->klass->get_parent_desc(c);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002135}
2136
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002137/*
2138 * Check that @a allows everything that @b needs. @a and @b must reference same
2139 * child node.
2140 */
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002141static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2142{
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002143 const char *child_bs_name;
2144 g_autofree char *a_user = NULL;
2145 g_autofree char *b_user = NULL;
2146 g_autofree char *perms = NULL;
2147
2148 assert(a->bs);
2149 assert(a->bs == b->bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002150 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002151
2152 if ((b->perm & a->shared_perm) == b->perm) {
2153 return true;
2154 }
2155
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002156 child_bs_name = bdrv_get_node_name(b->bs);
2157 a_user = bdrv_child_user_desc(a);
2158 b_user = bdrv_child_user_desc(b);
2159 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2160
2161 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2162 "both required by %s (uses node '%s' as '%s' child) and "
2163 "unshared by %s (uses node '%s' as '%s' child).",
2164 child_bs_name, perms,
2165 b_user, child_bs_name, b->name,
2166 a_user, child_bs_name, a->name);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002167
2168 return false;
2169}
2170
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002171static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002172{
2173 BdrvChild *a, *b;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002174 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002175
2176 /*
2177 * During the loop we'll look at each pair twice. That's correct because
2178 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2179 * directions.
2180 */
2181 QLIST_FOREACH(a, &bs->parents, next_parent) {
2182 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002183 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002184 continue;
2185 }
2186
2187 if (!bdrv_a_allow_b(a, b, errp)) {
2188 return true;
2189 }
2190 }
2191 }
2192
2193 return false;
2194}
2195
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002196static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02002197 BdrvChild *c, BdrvChildRole role,
2198 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002199 uint64_t parent_perm, uint64_t parent_shared,
2200 uint64_t *nperm, uint64_t *nshared)
2201{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002202 assert(bs->drv && bs->drv->bdrv_child_perm);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002203 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002204 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002205 parent_perm, parent_shared,
2206 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002207 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002208 if (child_bs && child_bs->force_share) {
2209 *nshared = BLK_PERM_ALL;
2210 }
2211}
2212
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002213/*
2214 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2215 * nodes that are already in the @list, of course) so that final list is
2216 * topologically sorted. Return the result (GSList @list object is updated, so
2217 * don't use old reference after function call).
2218 *
2219 * On function start @list must be already topologically sorted and for any node
2220 * in the @list the whole subtree of the node must be in the @list as well. The
2221 * simplest way to satisfy this criteria: use only result of
2222 * bdrv_topological_dfs() or NULL as @list parameter.
2223 */
2224static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2225 BlockDriverState *bs)
2226{
2227 BdrvChild *child;
2228 g_autoptr(GHashTable) local_found = NULL;
2229
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002230 GLOBAL_STATE_CODE();
2231
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002232 if (!found) {
2233 assert(!list);
2234 found = local_found = g_hash_table_new(NULL, NULL);
2235 }
2236
2237 if (g_hash_table_contains(found, bs)) {
2238 return list;
2239 }
2240 g_hash_table_add(found, bs);
2241
2242 QLIST_FOREACH(child, &bs->children, next) {
2243 list = bdrv_topological_dfs(list, found, child->bs);
2244 }
2245
2246 return g_slist_prepend(list, bs);
2247}
2248
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002249typedef struct BdrvChildSetPermState {
2250 BdrvChild *child;
2251 uint64_t old_perm;
2252 uint64_t old_shared_perm;
2253} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002254
2255static void bdrv_child_set_perm_abort(void *opaque)
2256{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002257 BdrvChildSetPermState *s = opaque;
2258
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002259 GLOBAL_STATE_CODE();
2260
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002261 s->child->perm = s->old_perm;
2262 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002263}
2264
2265static TransactionActionDrv bdrv_child_set_pem_drv = {
2266 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002267 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002268};
2269
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002270static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2271 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002272{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002273 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002274 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002275
2276 *s = (BdrvChildSetPermState) {
2277 .child = c,
2278 .old_perm = c->perm,
2279 .old_shared_perm = c->shared_perm,
2280 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002281
2282 c->perm = perm;
2283 c->shared_perm = shared;
2284
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002285 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002286}
2287
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002288static void bdrv_drv_set_perm_commit(void *opaque)
2289{
2290 BlockDriverState *bs = opaque;
2291 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002292 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002293
2294 if (bs->drv->bdrv_set_perm) {
2295 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2296 &cumulative_shared_perms);
2297 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2298 }
2299}
2300
2301static void bdrv_drv_set_perm_abort(void *opaque)
2302{
2303 BlockDriverState *bs = opaque;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002304 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002305
2306 if (bs->drv->bdrv_abort_perm_update) {
2307 bs->drv->bdrv_abort_perm_update(bs);
2308 }
2309}
2310
2311TransactionActionDrv bdrv_drv_set_perm_drv = {
2312 .abort = bdrv_drv_set_perm_abort,
2313 .commit = bdrv_drv_set_perm_commit,
2314};
2315
2316static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2317 uint64_t shared_perm, Transaction *tran,
2318 Error **errp)
2319{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002320 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002321 if (!bs->drv) {
2322 return 0;
2323 }
2324
2325 if (bs->drv->bdrv_check_perm) {
2326 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2327 if (ret < 0) {
2328 return ret;
2329 }
2330 }
2331
2332 if (tran) {
2333 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2334 }
2335
2336 return 0;
2337}
2338
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002339typedef struct BdrvReplaceChildState {
2340 BdrvChild *child;
Hanna Reitz82b54cf2021-11-15 15:54:04 +01002341 BdrvChild **childp;
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002342 BlockDriverState *old_bs;
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002343 bool free_empty_child;
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002344} BdrvReplaceChildState;
2345
2346static void bdrv_replace_child_commit(void *opaque)
2347{
2348 BdrvReplaceChildState *s = opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002349 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002350
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002351 if (s->free_empty_child && !s->child->bs) {
2352 bdrv_child_free(s->child);
2353 }
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002354 bdrv_unref(s->old_bs);
2355}
2356
2357static void bdrv_replace_child_abort(void *opaque)
2358{
2359 BdrvReplaceChildState *s = opaque;
2360 BlockDriverState *new_bs = s->child->bs;
2361
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002362 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01002363 /*
2364 * old_bs reference is transparently moved from @s to s->child.
2365 *
2366 * Pass &s->child here instead of s->childp, because:
2367 * (1) s->old_bs must be non-NULL, so bdrv_replace_child_noperm() will not
2368 * modify the BdrvChild * pointer we indirectly pass to it, i.e. it
2369 * will not modify s->child. From that perspective, it does not matter
2370 * whether we pass s->childp or &s->child.
Hanna Reitz82b54cf2021-11-15 15:54:04 +01002371 * (2) If new_bs is not NULL, s->childp will be NULL. We then cannot use
2372 * it here.
2373 * (3) If new_bs is NULL, *s->childp will have been NULLed by
2374 * bdrv_replace_child_tran()'s bdrv_replace_child_noperm() call, and we
2375 * must not pass a NULL *s->childp here.
Hanna Reitz82b54cf2021-11-15 15:54:04 +01002376 *
2377 * So whether new_bs was NULL or not, we cannot pass s->childp here; and in
2378 * any case, there is no reason to pass it anyway.
2379 */
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002380 bdrv_replace_child_noperm(&s->child, s->old_bs, true);
2381 /*
2382 * The child was pre-existing, so s->old_bs must be non-NULL, and
2383 * s->child thus must not have been freed
2384 */
2385 assert(s->child != NULL);
2386 if (!new_bs) {
2387 /* As described above, *s->childp was cleared, so restore it */
2388 assert(s->childp != NULL);
2389 *s->childp = s->child;
2390 }
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002391 bdrv_unref(new_bs);
2392}
2393
2394static TransactionActionDrv bdrv_replace_child_drv = {
2395 .commit = bdrv_replace_child_commit,
2396 .abort = bdrv_replace_child_abort,
2397 .clean = g_free,
2398};
2399
2400/*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002401 * bdrv_replace_child_tran
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002402 *
2403 * Note: real unref of old_bs is done only on commit.
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002404 *
2405 * The function doesn't update permissions, caller is responsible for this.
Hanna Reitz82b54cf2021-11-15 15:54:04 +01002406 *
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002407 * (*childp)->bs must not be NULL.
2408 *
Hanna Reitz82b54cf2021-11-15 15:54:04 +01002409 * Note that if new_bs == NULL, @childp is stored in a state object attached
2410 * to @tran, so that the old child can be reinstated in the abort handler.
2411 * Therefore, if @new_bs can be NULL, @childp must stay valid until the
2412 * transaction is committed or aborted.
2413 *
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002414 * If @free_empty_child is true and @new_bs is NULL, the BdrvChild is
2415 * freed (on commit). @free_empty_child should only be false if the
2416 * caller will free the BDrvChild themselves (which may be important
2417 * if this is in turn called in another transactional context).
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002418 */
Hanna Reitz82b54cf2021-11-15 15:54:04 +01002419static void bdrv_replace_child_tran(BdrvChild **childp,
2420 BlockDriverState *new_bs,
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002421 Transaction *tran,
2422 bool free_empty_child)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002423{
2424 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2425 *s = (BdrvReplaceChildState) {
Hanna Reitz82b54cf2021-11-15 15:54:04 +01002426 .child = *childp,
2427 .childp = new_bs == NULL ? childp : NULL,
2428 .old_bs = (*childp)->bs,
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002429 .free_empty_child = free_empty_child,
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002430 };
2431 tran_add(tran, &bdrv_replace_child_drv, s);
2432
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002433 /* The abort handler relies on this */
2434 assert(s->old_bs != NULL);
2435
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002436 if (new_bs) {
2437 bdrv_ref(new_bs);
2438 }
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002439 /*
2440 * Pass free_empty_child=false, we will free the child (if
2441 * necessary) in bdrv_replace_child_commit() (if our
2442 * @free_empty_child parameter was true).
2443 */
2444 bdrv_replace_child_noperm(childp, new_bs, false);
Hanna Reitz82b54cf2021-11-15 15:54:04 +01002445 /* old_bs reference is transparently moved from *childp to @s */
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002446}
2447
Kevin Wolf33a610c2016-12-15 13:04:20 +01002448/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002449 * Refresh permissions in @bs subtree. The function is intended to be called
2450 * after some graph modification that was done without permission update.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002451 */
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002452static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2453 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002454{
2455 BlockDriver *drv = bs->drv;
2456 BdrvChild *c;
2457 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002458 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002459 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002460
2461 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002462
2463 /* Write permissions never work with read-only images */
2464 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002465 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002466 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002467 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2468 error_setg(errp, "Block node is read-only");
2469 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002470 error_setg(errp, "Read-only block node '%s' cannot support "
2471 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002472 }
2473
Kevin Wolf33a610c2016-12-15 13:04:20 +01002474 return -EPERM;
2475 }
2476
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002477 /*
2478 * Unaligned requests will automatically be aligned to bl.request_alignment
2479 * and without RESIZE we can't extend requests to write to space beyond the
2480 * end of the image, so it's required that the image size is aligned.
2481 */
2482 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2483 !(cumulative_perms & BLK_PERM_RESIZE))
2484 {
2485 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2486 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2487 "Image size is not a multiple of request "
2488 "alignment");
2489 return -EPERM;
2490 }
2491 }
2492
Kevin Wolf33a610c2016-12-15 13:04:20 +01002493 /* Check this node */
2494 if (!drv) {
2495 return 0;
2496 }
2497
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002498 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002499 errp);
2500 if (ret < 0) {
2501 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002502 }
2503
Kevin Wolf78e421c2016-12-20 23:25:12 +01002504 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002505 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002506 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002507 return 0;
2508 }
2509
2510 /* Check all children */
2511 QLIST_FOREACH(c, &bs->children, next) {
2512 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002513
Max Reitze5d8a402020-05-13 13:05:44 +02002514 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002515 cumulative_perms, cumulative_shared_perms,
2516 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002517 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002518 }
2519
2520 return 0;
2521}
2522
Vladimir Sementsov-Ogievskiy25409802021-04-28 18:18:00 +03002523static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2524 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002525{
2526 int ret;
2527 BlockDriverState *bs;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002528 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002529
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002530 for ( ; list; list = list->next) {
2531 bs = list->data;
2532
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002533 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002534 return -EINVAL;
2535 }
2536
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002537 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002538 if (ret < 0) {
2539 return ret;
2540 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002541 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002542
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002543 return 0;
2544}
2545
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002546void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2547 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002548{
2549 BdrvChild *c;
2550 uint64_t cumulative_perms = 0;
2551 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2552
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002553 GLOBAL_STATE_CODE();
2554
Kevin Wolf33a610c2016-12-15 13:04:20 +01002555 QLIST_FOREACH(c, &bs->parents, next_parent) {
2556 cumulative_perms |= c->perm;
2557 cumulative_shared_perms &= c->shared_perm;
2558 }
2559
2560 *perm = cumulative_perms;
2561 *shared_perm = cumulative_shared_perms;
2562}
2563
Fam Zheng51761962017-05-03 00:35:36 +08002564char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002565{
2566 struct perm_name {
2567 uint64_t perm;
2568 const char *name;
2569 } permissions[] = {
2570 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2571 { BLK_PERM_WRITE, "write" },
2572 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2573 { BLK_PERM_RESIZE, "resize" },
Kevin Wolfd0833192017-01-16 18:26:20 +01002574 { 0, NULL }
2575 };
2576
Alberto Garciae2a74232020-01-10 18:15:18 +01002577 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002578 struct perm_name *p;
2579
2580 for (p = permissions; p->name; p++) {
2581 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002582 if (result->len > 0) {
2583 g_string_append(result, ", ");
2584 }
2585 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002586 }
2587 }
2588
Alberto Garciae2a74232020-01-10 18:15:18 +01002589 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002590}
2591
Kevin Wolf33a610c2016-12-15 13:04:20 +01002592
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002593static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002594{
2595 int ret;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002596 Transaction *tran = tran_new();
2597 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002598 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002599
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002600 ret = bdrv_list_refresh_perms(list, NULL, tran, errp);
2601 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002602
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002603 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002604}
2605
Kevin Wolf33a610c2016-12-15 13:04:20 +01002606int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2607 Error **errp)
2608{
Max Reitz10467792019-05-22 19:03:51 +02002609 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002610 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002611 int ret;
2612
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002613 GLOBAL_STATE_CODE();
2614
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002615 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002616
2617 ret = bdrv_refresh_perms(c->bs, &local_err);
2618
2619 tran_finalize(tran, ret);
2620
Kevin Wolf33a610c2016-12-15 13:04:20 +01002621 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002622 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2623 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002624 error_propagate(errp, local_err);
2625 } else {
2626 /*
2627 * Our caller may intend to only loosen restrictions and
2628 * does not expect this function to fail. Errors are not
2629 * fatal in such a case, so we can just hide them from our
2630 * caller.
2631 */
2632 error_free(local_err);
2633 ret = 0;
2634 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002635 }
2636
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002637 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002638}
2639
Max Reitzc1087f12019-05-22 19:03:46 +02002640int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2641{
2642 uint64_t parent_perms, parent_shared;
2643 uint64_t perms, shared;
2644
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002645 GLOBAL_STATE_CODE();
2646
Max Reitzc1087f12019-05-22 19:03:46 +02002647 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002648 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002649 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002650
2651 return bdrv_child_try_set_perm(c, perms, shared, errp);
2652}
2653
Max Reitz87278af2020-05-13 13:05:40 +02002654/*
2655 * Default implementation for .bdrv_child_perm() for block filters:
2656 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2657 * filtered child.
2658 */
2659static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002660 BdrvChildRole role,
2661 BlockReopenQueue *reopen_queue,
2662 uint64_t perm, uint64_t shared,
2663 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002664{
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002665 GLOBAL_STATE_CODE();
Kevin Wolfe444fa82019-08-02 15:59:41 +02002666 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2667 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002668}
2669
Max Reitz70082db2020-05-13 13:05:26 +02002670static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002671 BdrvChildRole role,
2672 BlockReopenQueue *reopen_queue,
2673 uint64_t perm, uint64_t shared,
2674 uint64_t *nperm, uint64_t *nshared)
2675{
Max Reitze5d8a402020-05-13 13:05:44 +02002676 assert(role & BDRV_CHILD_COW);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002677 GLOBAL_STATE_CODE();
Max Reitz70082db2020-05-13 13:05:26 +02002678
2679 /*
2680 * We want consistent read from backing files if the parent needs it.
2681 * No other operations are performed on backing files.
2682 */
2683 perm &= BLK_PERM_CONSISTENT_READ;
2684
2685 /*
2686 * If the parent can deal with changing data, we're okay with a
2687 * writable and resizable backing file.
2688 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2689 */
2690 if (shared & BLK_PERM_WRITE) {
2691 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2692 } else {
2693 shared = 0;
2694 }
2695
Vladimir Sementsov-Ogievskiy64631f32021-09-02 12:37:54 +03002696 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
Max Reitz70082db2020-05-13 13:05:26 +02002697
2698 if (bs->open_flags & BDRV_O_INACTIVE) {
2699 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2700 }
2701
2702 *nperm = perm;
2703 *nshared = shared;
2704}
2705
Max Reitz6f838a42020-05-13 13:05:27 +02002706static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002707 BdrvChildRole role,
2708 BlockReopenQueue *reopen_queue,
2709 uint64_t perm, uint64_t shared,
2710 uint64_t *nperm, uint64_t *nshared)
2711{
2712 int flags;
2713
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002714 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002715 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002716
2717 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2718
2719 /*
2720 * Apart from the modifications below, the same permissions are
2721 * forwarded and left alone as for filters
2722 */
Max Reitze5d8a402020-05-13 13:05:44 +02002723 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002724 perm, shared, &perm, &shared);
2725
Max Reitzf8890542020-05-13 13:05:28 +02002726 if (role & BDRV_CHILD_METADATA) {
2727 /* Format drivers may touch metadata even if the guest doesn't write */
2728 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2729 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2730 }
2731
2732 /*
2733 * bs->file always needs to be consistent because of the
2734 * metadata. We can never allow other users to resize or write
2735 * to it.
2736 */
2737 if (!(flags & BDRV_O_NO_IO)) {
2738 perm |= BLK_PERM_CONSISTENT_READ;
2739 }
2740 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002741 }
2742
Max Reitzf8890542020-05-13 13:05:28 +02002743 if (role & BDRV_CHILD_DATA) {
2744 /*
2745 * Technically, everything in this block is a subset of the
2746 * BDRV_CHILD_METADATA path taken above, and so this could
2747 * be an "else if" branch. However, that is not obvious, and
2748 * this function is not performance critical, therefore we let
2749 * this be an independent "if".
2750 */
2751
2752 /*
2753 * We cannot allow other users to resize the file because the
2754 * format driver might have some assumptions about the size
2755 * (e.g. because it is stored in metadata, or because the file
2756 * is split into fixed-size data files).
2757 */
2758 shared &= ~BLK_PERM_RESIZE;
2759
2760 /*
2761 * WRITE_UNCHANGED often cannot be performed as such on the
2762 * data file. For example, the qcow2 driver may still need to
2763 * write copied clusters on copy-on-read.
2764 */
2765 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2766 perm |= BLK_PERM_WRITE;
2767 }
2768
2769 /*
2770 * If the data file is written to, the format driver may
2771 * expect to be able to resize it by writing beyond the EOF.
2772 */
2773 if (perm & BLK_PERM_WRITE) {
2774 perm |= BLK_PERM_RESIZE;
2775 }
Max Reitz6f838a42020-05-13 13:05:27 +02002776 }
Max Reitz6f838a42020-05-13 13:05:27 +02002777
2778 if (bs->open_flags & BDRV_O_INACTIVE) {
2779 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2780 }
2781
2782 *nperm = perm;
2783 *nshared = shared;
2784}
2785
Max Reitz2519f542020-05-13 13:05:29 +02002786void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002787 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002788 uint64_t perm, uint64_t shared,
2789 uint64_t *nperm, uint64_t *nshared)
2790{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002791 GLOBAL_STATE_CODE();
Max Reitz2519f542020-05-13 13:05:29 +02002792 if (role & BDRV_CHILD_FILTERED) {
2793 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2794 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002795 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002796 perm, shared, nperm, nshared);
2797 } else if (role & BDRV_CHILD_COW) {
2798 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002799 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002800 perm, shared, nperm, nshared);
2801 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002802 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002803 perm, shared, nperm, nshared);
2804 } else {
2805 g_assert_not_reached();
2806 }
2807}
2808
Max Reitz7b1d9c42019-11-08 13:34:51 +01002809uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2810{
2811 static const uint64_t permissions[] = {
2812 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2813 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2814 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2815 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
Max Reitz7b1d9c42019-11-08 13:34:51 +01002816 };
2817
2818 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2819 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2820
2821 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2822
2823 return permissions[qapi_perm];
2824}
2825
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002826/**
2827 * Replace (*childp)->bs by @new_bs.
2828 *
2829 * If @new_bs is NULL, *childp will be set to NULL, too: BDS parents
2830 * generally cannot handle a BdrvChild with .bs == NULL, so clearing
2831 * BdrvChild.bs should generally immediately be followed by the
2832 * BdrvChild pointer being cleared as well.
2833 *
2834 * If @free_empty_child is true and @new_bs is NULL, the BdrvChild is
2835 * freed. @free_empty_child should only be false if the caller will
2836 * free the BdrvChild themselves (this may be important in a
2837 * transactional context, where it may only be freed on commit).
2838 */
Hanna Reitzbe64bbb2021-11-15 15:54:01 +01002839static void bdrv_replace_child_noperm(BdrvChild **childp,
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002840 BlockDriverState *new_bs,
2841 bool free_empty_child)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002842{
Hanna Reitzbe64bbb2021-11-15 15:54:01 +01002843 BdrvChild *child = *childp;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002844 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002845 int new_bs_quiesce_counter;
2846 int drain_saldo;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002847
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002848 assert(!child->frozen);
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02002849 assert(old_bs != new_bs);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002850 GLOBAL_STATE_CODE();
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002851
Fam Zhengbb2614e2017-04-07 14:54:10 +08002852 if (old_bs && new_bs) {
2853 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2854 }
Max Reitzdebc2922019-07-22 15:33:44 +02002855
2856 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2857 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2858
2859 /*
2860 * If the new child node is drained but the old one was not, flush
2861 * all outstanding requests to the old child node.
2862 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002863 while (drain_saldo > 0 && child->klass->drained_begin) {
Max Reitzdebc2922019-07-22 15:33:44 +02002864 bdrv_parent_drained_begin_single(child, true);
2865 drain_saldo--;
2866 }
2867
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002868 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002869 /* Detach first so that the recursive drain sections coming from @child
2870 * are already gone and we only end the drain sections that came from
2871 * elsewhere. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002872 if (child->klass->detach) {
2873 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002874 }
Emanuele Giuseppe Esposito696bf4c2022-03-03 10:15:59 -05002875 assert_bdrv_graph_writable(old_bs);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002876 QLIST_REMOVE(child, next_parent);
2877 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002878
2879 child->bs = new_bs;
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002880 if (!new_bs) {
2881 *childp = NULL;
2882 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002883
2884 if (new_bs) {
Emanuele Giuseppe Esposito696bf4c2022-03-03 10:15:59 -05002885 assert_bdrv_graph_writable(new_bs);
Kevin Wolf36fe1332016-05-17 14:51:55 +02002886 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzdebc2922019-07-22 15:33:44 +02002887
2888 /*
2889 * Detaching the old node may have led to the new node's
2890 * quiesce_counter having been decreased. Not a problem, we
2891 * just need to recognize this here and then invoke
2892 * drained_end appropriately more often.
2893 */
2894 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2895 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002896
Kevin Wolfd736f112017-12-18 16:05:48 +01002897 /* Attach only after starting new drained sections, so that recursive
2898 * drain sections coming from @child don't get an extra .drained_begin
2899 * callback. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002900 if (child->klass->attach) {
2901 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002902 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002903 }
Max Reitzdebc2922019-07-22 15:33:44 +02002904
2905 /*
2906 * If the old child node was drained but the new one is not, allow
2907 * requests to come in only after the new node has been attached.
2908 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002909 while (drain_saldo < 0 && child->klass->drained_end) {
Max Reitzdebc2922019-07-22 15:33:44 +02002910 bdrv_parent_drained_end_single(child);
2911 drain_saldo++;
2912 }
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002913
2914 if (free_empty_child && !child->bs) {
2915 bdrv_child_free(child);
2916 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002917}
2918
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002919/**
2920 * Free the given @child.
2921 *
2922 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2923 * unused (i.e. not in a children list).
2924 */
2925static void bdrv_child_free(BdrvChild *child)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002926{
2927 assert(!child->bs);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002928 GLOBAL_STATE_CODE();
Hanna Reitza2253692021-11-15 15:53:58 +01002929 assert(!child->next.le_prev); /* not in children list */
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002930
2931 g_free(child->name);
2932 g_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002933}
2934
2935typedef struct BdrvAttachChildCommonState {
2936 BdrvChild **child;
2937 AioContext *old_parent_ctx;
2938 AioContext *old_child_ctx;
2939} BdrvAttachChildCommonState;
2940
2941static void bdrv_attach_child_common_abort(void *opaque)
2942{
2943 BdrvAttachChildCommonState *s = opaque;
2944 BdrvChild *child = *s->child;
2945 BlockDriverState *bs = child->bs;
2946
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002947 GLOBAL_STATE_CODE();
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01002948 /*
2949 * Pass free_empty_child=false, because we still need the child
2950 * for the AioContext operations on the parent below; those
2951 * BdrvChildClass methods all work on a BdrvChild object, so we
2952 * need to keep it as an empty shell (after this function, it will
2953 * not be attached to any parent, and it will not have a .bs).
2954 */
2955 bdrv_replace_child_noperm(s->child, NULL, false);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002956
2957 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2958 bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort);
2959 }
2960
2961 if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) {
Hanna Reitz26518062021-11-15 15:54:00 +01002962 GSList *ignore;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002963
Hanna Reitz26518062021-11-15 15:54:00 +01002964 /* No need to ignore `child`, because it has been detached already */
2965 ignore = NULL;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002966 child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore,
2967 &error_abort);
2968 g_slist_free(ignore);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002969
Hanna Reitz26518062021-11-15 15:54:00 +01002970 ignore = NULL;
2971 child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002972 g_slist_free(ignore);
2973 }
2974
2975 bdrv_unref(bs);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002976 bdrv_child_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002977}
2978
2979static TransactionActionDrv bdrv_attach_child_common_drv = {
2980 .abort = bdrv_attach_child_common_abort,
2981 .clean = g_free,
2982};
2983
2984/*
2985 * Common part of attaching bdrv child to bs or to blk or to job
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002986 *
2987 * Resulting new child is returned through @child.
2988 * At start *@child must be NULL.
2989 * @child is saved to a new entry of @tran, so that *@child could be reverted to
2990 * NULL on abort(). So referenced variable must live at least until transaction
2991 * end.
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03002992 *
2993 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002994 */
2995static int bdrv_attach_child_common(BlockDriverState *child_bs,
2996 const char *child_name,
2997 const BdrvChildClass *child_class,
2998 BdrvChildRole child_role,
2999 uint64_t perm, uint64_t shared_perm,
3000 void *opaque, BdrvChild **child,
3001 Transaction *tran, Error **errp)
3002{
3003 BdrvChild *new_child;
3004 AioContext *parent_ctx;
3005 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
3006
3007 assert(child);
3008 assert(*child == NULL);
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03003009 assert(child_class->get_parent_desc);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003010 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003011
3012 new_child = g_new(BdrvChild, 1);
3013 *new_child = (BdrvChild) {
3014 .bs = NULL,
3015 .name = g_strdup(child_name),
3016 .klass = child_class,
3017 .role = child_role,
3018 .perm = perm,
3019 .shared_perm = shared_perm,
3020 .opaque = opaque,
3021 };
3022
3023 /*
3024 * If the AioContexts don't match, first try to move the subtree of
3025 * child_bs into the AioContext of the new parent. If this doesn't work,
3026 * try moving the parent into the AioContext of child_bs instead.
3027 */
3028 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3029 if (child_ctx != parent_ctx) {
3030 Error *local_err = NULL;
3031 int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err);
3032
3033 if (ret < 0 && child_class->can_set_aio_ctx) {
3034 GSList *ignore = g_slist_prepend(NULL, new_child);
3035 if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore,
3036 NULL))
3037 {
3038 error_free(local_err);
3039 ret = 0;
3040 g_slist_free(ignore);
3041 ignore = g_slist_prepend(NULL, new_child);
3042 child_class->set_aio_ctx(new_child, child_ctx, &ignore);
3043 }
3044 g_slist_free(ignore);
3045 }
3046
3047 if (ret < 0) {
3048 error_propagate(errp, local_err);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01003049 bdrv_child_free(new_child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003050 return ret;
3051 }
3052 }
3053
3054 bdrv_ref(child_bs);
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01003055 bdrv_replace_child_noperm(&new_child, child_bs, true);
3056 /* child_bs was non-NULL, so new_child must not have been freed */
3057 assert(new_child != NULL);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003058
3059 *child = new_child;
3060
3061 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3062 *s = (BdrvAttachChildCommonState) {
3063 .child = child,
3064 .old_parent_ctx = parent_ctx,
3065 .old_child_ctx = child_ctx,
3066 };
3067 tran_add(tran, &bdrv_attach_child_common_drv, s);
3068
3069 return 0;
3070}
3071
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003072/*
3073 * Variable referenced by @child must live at least until transaction end.
3074 * (see bdrv_attach_child_common() doc for details)
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003075 *
3076 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003077 */
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003078static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3079 BlockDriverState *child_bs,
3080 const char *child_name,
3081 const BdrvChildClass *child_class,
3082 BdrvChildRole child_role,
3083 BdrvChild **child,
3084 Transaction *tran,
3085 Error **errp)
3086{
3087 int ret;
3088 uint64_t perm, shared_perm;
3089
3090 assert(parent_bs->drv);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003091 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003092
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003093 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3094 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3095 child_bs->node_name, child_name, parent_bs->node_name);
3096 return -EINVAL;
3097 }
3098
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003099 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3100 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3101 perm, shared_perm, &perm, &shared_perm);
3102
3103 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3104 child_role, perm, shared_perm, parent_bs,
3105 child, tran, errp);
3106 if (ret < 0) {
3107 return ret;
3108 }
3109
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003110 return 0;
3111}
3112
Hanna Reitzbe64bbb2021-11-15 15:54:01 +01003113static void bdrv_detach_child(BdrvChild **childp)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003114{
Hanna Reitzbe64bbb2021-11-15 15:54:01 +01003115 BlockDriverState *old_bs = (*childp)->bs;
Vladimir Sementsov-Ogievskiy4954aac2021-04-28 18:18:01 +03003116
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003117 GLOBAL_STATE_CODE();
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01003118 bdrv_replace_child_noperm(childp, NULL, true);
Vladimir Sementsov-Ogievskiy4954aac2021-04-28 18:18:01 +03003119
3120 if (old_bs) {
3121 /*
3122 * Update permissions for old node. We're just taking a parent away, so
3123 * we're loosening restrictions. Errors of permission update are not
3124 * fatal in this case, ignore them.
3125 */
3126 bdrv_refresh_perms(old_bs, NULL);
3127
3128 /*
3129 * When the parent requiring a non-default AioContext is removed, the
3130 * node moves back to the main AioContext
3131 */
3132 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
3133 }
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003134}
3135
Alberto Garciab441dc72019-05-13 16:46:18 +03003136/*
3137 * This function steals the reference to child_bs from the caller.
3138 * That reference is later dropped by bdrv_root_unref_child().
3139 *
3140 * On failure NULL is returned, errp is set and the reference to
3141 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003142 *
3143 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3144 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03003145 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003146BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3147 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003148 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003149 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003150 uint64_t perm, uint64_t shared_perm,
3151 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02003152{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003153 int ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003154 BdrvChild *child = NULL;
3155 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003156
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05003157 GLOBAL_STATE_CODE();
3158
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003159 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3160 child_role, perm, shared_perm, opaque,
3161 &child, tran, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003162 if (ret < 0) {
Kevin Wolfe878bb12021-05-03 13:05:54 +02003163 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003164 }
3165
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003166 ret = bdrv_refresh_perms(child_bs, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02003167
Kevin Wolfe878bb12021-05-03 13:05:54 +02003168out:
3169 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003170 /* child is unset on failure by bdrv_attach_child_common_abort() */
3171 assert((ret < 0) == !child);
3172
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003173 bdrv_unref(child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003174 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02003175}
3176
Alberto Garciab441dc72019-05-13 16:46:18 +03003177/*
3178 * This function transfers the reference to child_bs from the caller
3179 * to parent_bs. That reference is later dropped by parent_bs on
3180 * bdrv_close() or if someone calls bdrv_unref_child().
3181 *
3182 * On failure NULL is returned, errp is set and the reference to
3183 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003184 *
3185 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3186 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03003187 */
Wen Congyang98292c62016-05-10 15:36:38 +08003188BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3189 BlockDriverState *child_bs,
3190 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003191 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003192 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003193 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003194{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003195 int ret;
3196 BdrvChild *child = NULL;
3197 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003198
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003199 GLOBAL_STATE_CODE();
3200
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003201 ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class,
3202 child_role, &child, tran, errp);
3203 if (ret < 0) {
3204 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003205 }
3206
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003207 ret = bdrv_refresh_perms(parent_bs, errp);
3208 if (ret < 0) {
3209 goto out;
3210 }
3211
3212out:
3213 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003214 /* child is unset on failure by bdrv_attach_child_common_abort() */
3215 assert((ret < 0) == !child);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003216
3217 bdrv_unref(child_bs);
3218
Kevin Wolff21d96d2016-03-08 13:47:46 +01003219 return child;
3220}
3221
Max Reitz7b99a262019-06-12 16:07:11 +02003222/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003223void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003224{
Kevin Wolf779020c2015-10-13 14:09:44 +02003225 BlockDriverState *child_bs;
3226
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003227 GLOBAL_STATE_CODE();
3228
Kevin Wolff21d96d2016-03-08 13:47:46 +01003229 child_bs = child->bs;
Hanna Reitzbe64bbb2021-11-15 15:54:01 +01003230 bdrv_detach_child(&child);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003231 bdrv_unref(child_bs);
3232}
3233
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003234typedef struct BdrvSetInheritsFrom {
3235 BlockDriverState *bs;
3236 BlockDriverState *old_inherits_from;
3237} BdrvSetInheritsFrom;
3238
3239static void bdrv_set_inherits_from_abort(void *opaque)
3240{
3241 BdrvSetInheritsFrom *s = opaque;
3242
3243 s->bs->inherits_from = s->old_inherits_from;
3244}
3245
3246static TransactionActionDrv bdrv_set_inherits_from_drv = {
3247 .abort = bdrv_set_inherits_from_abort,
3248 .clean = g_free,
3249};
3250
3251/* @tran is allowed to be NULL. In this case no rollback is possible */
3252static void bdrv_set_inherits_from(BlockDriverState *bs,
3253 BlockDriverState *new_inherits_from,
3254 Transaction *tran)
3255{
3256 if (tran) {
3257 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3258
3259 *s = (BdrvSetInheritsFrom) {
3260 .bs = bs,
3261 .old_inherits_from = bs->inherits_from,
3262 };
3263
3264 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3265 }
3266
3267 bs->inherits_from = new_inherits_from;
3268}
3269
Max Reitz3cf746b2019-07-03 19:28:07 +02003270/**
3271 * Clear all inherits_from pointers from children and grandchildren of
3272 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003273 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003274 */
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003275static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3276 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003277{
Max Reitz3cf746b2019-07-03 19:28:07 +02003278 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003279
Max Reitz3cf746b2019-07-03 19:28:07 +02003280 if (child->bs->inherits_from == root) {
3281 /*
3282 * Remove inherits_from only when the last reference between root and
3283 * child->bs goes away.
3284 */
3285 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003286 if (c != child && c->bs == child->bs) {
3287 break;
3288 }
3289 }
3290 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003291 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003292 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003293 }
3294
Max Reitz3cf746b2019-07-03 19:28:07 +02003295 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003296 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003297 }
3298}
3299
Max Reitz7b99a262019-06-12 16:07:11 +02003300/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003301void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3302{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003303 GLOBAL_STATE_CODE();
Max Reitz3cf746b2019-07-03 19:28:07 +02003304 if (child == NULL) {
3305 return;
3306 }
3307
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003308 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003309 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003310}
3311
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003312
3313static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3314{
3315 BdrvChild *c;
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003316 GLOBAL_STATE_CODE();
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003317 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003318 if (c->klass->change_media) {
3319 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003320 }
3321 }
3322}
3323
Alberto Garcia0065c452018-10-31 18:16:37 +02003324/* Return true if you can reach parent going through child->inherits_from
3325 * recursively. If parent or child are NULL, return false */
3326static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3327 BlockDriverState *parent)
3328{
3329 while (child && child != parent) {
3330 child = child->inherits_from;
3331 }
3332
3333 return child != NULL;
3334}
3335
Kevin Wolf5db15a52015-09-14 15:33:33 +02003336/*
Max Reitz25191e52020-05-13 13:05:33 +02003337 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3338 * mostly used for COW backing children (role = COW), but also for
3339 * filtered children (role = FILTERED | PRIMARY).
3340 */
3341static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3342{
3343 if (bs->drv && bs->drv->is_filter) {
3344 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3345 } else {
3346 return BDRV_CHILD_COW;
3347 }
3348}
3349
3350/*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003351 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3352 * callers which don't need their own reference any more must call bdrv_unref().
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003353 *
3354 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolf5db15a52015-09-14 15:33:33 +02003355 */
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003356static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3357 BlockDriverState *child_bs,
3358 bool is_backing,
3359 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003360{
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003361 int ret = 0;
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003362 bool update_inherits_from =
3363 bdrv_inherits_from_recursive(child_bs, parent_bs);
3364 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3365 BdrvChildRole role;
Alberto Garcia0065c452018-10-31 18:16:37 +02003366
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003367 GLOBAL_STATE_CODE();
3368
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003369 if (!parent_bs->drv) {
3370 /*
3371 * Node without drv is an object without a class :/. TODO: finally fix
3372 * qcow2 driver to never clear bs->drv and implement format corruption
3373 * handling in other way.
3374 */
3375 error_setg(errp, "Node corrupted");
3376 return -EINVAL;
3377 }
3378
3379 if (child && child->frozen) {
3380 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3381 child->name, parent_bs->node_name, child->bs->node_name);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003382 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003383 }
3384
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03003385 if (is_backing && !parent_bs->drv->is_filter &&
3386 !parent_bs->drv->supports_backing)
3387 {
3388 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3389 "files", parent_bs->drv->format_name, parent_bs->node_name);
3390 return -EINVAL;
3391 }
3392
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003393 if (parent_bs->drv->is_filter) {
3394 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3395 } else if (is_backing) {
3396 role = BDRV_CHILD_COW;
3397 } else {
3398 /*
3399 * We only can use same role as it is in existing child. We don't have
3400 * infrastructure to determine role of file child in generic way
3401 */
3402 if (!child) {
3403 error_setg(errp, "Cannot set file child to format node without "
3404 "file child");
3405 return -EINVAL;
3406 }
3407 role = child->role;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003408 }
3409
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003410 if (child) {
3411 bdrv_unset_inherits_from(parent_bs, child, tran);
3412 bdrv_remove_file_or_backing_child(parent_bs, child, tran);
3413 }
3414
3415 if (!child_bs) {
Fam Zheng8d24cce2014-05-23 21:29:45 +08003416 goto out;
3417 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003418
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003419 ret = bdrv_attach_child_noperm(parent_bs, child_bs,
3420 is_backing ? "backing" : "file",
3421 &child_of_bds, role,
3422 is_backing ? &parent_bs->backing :
3423 &parent_bs->file,
3424 tran, errp);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003425 if (ret < 0) {
3426 return ret;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003427 }
3428
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003429
3430 /*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003431 * If inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003432 * point directly to bs (else it will become NULL).
3433 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003434 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003435 bdrv_set_inherits_from(child_bs, parent_bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003436 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003437
Fam Zheng8d24cce2014-05-23 21:29:45 +08003438out:
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003439 bdrv_refresh_limits(parent_bs, tran, NULL);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003440
3441 return 0;
3442}
3443
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003444static int bdrv_set_backing_noperm(BlockDriverState *bs,
3445 BlockDriverState *backing_hd,
3446 Transaction *tran, Error **errp)
3447{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003448 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003449 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3450}
3451
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003452int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3453 Error **errp)
3454{
3455 int ret;
3456 Transaction *tran = tran_new();
3457
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003458 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003459 bdrv_drained_begin(bs);
3460
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003461 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3462 if (ret < 0) {
3463 goto out;
3464 }
3465
3466 ret = bdrv_refresh_perms(bs, errp);
3467out:
3468 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003469
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003470 bdrv_drained_end(bs);
3471
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003472 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003473}
3474
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003475/*
3476 * Opens the backing file for a BlockDriverState if not yet open
3477 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003478 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3479 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3480 * itself, all options starting with "${bdref_key}." are considered part of the
3481 * BlockdevRef.
3482 *
3483 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003484 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003485int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3486 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003487{
Max Reitz6b6833c2019-02-01 20:29:15 +01003488 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003489 char *bdref_key_dot;
3490 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003491 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003492 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003493 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003494 QDict *options;
3495 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003496 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003497
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003498 GLOBAL_STATE_CODE();
3499
Kevin Wolf760e0062015-06-17 14:55:21 +02003500 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003501 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003502 }
3503
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003504 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003505 if (parent_options == NULL) {
3506 tmp_parent_options = qdict_new();
3507 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003508 }
3509
Paolo Bonzini9156df12012-10-18 16:49:17 +02003510 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003511
3512 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3513 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3514 g_free(bdref_key_dot);
3515
Markus Armbruster129c7d12017-03-30 19:43:12 +02003516 /*
3517 * Caution: while qdict_get_try_str() is fine, getting non-string
3518 * types would require more care. When @parent_options come from
3519 * -blockdev or blockdev_add, its members are typed according to
3520 * the QAPI schema, but when they come from -drive, they're all
3521 * QString.
3522 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003523 reference = qdict_get_try_str(parent_options, bdref_key);
3524 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003525 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003526 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003527 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003528 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003529 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003530 if (qdict_size(options) == 0) {
3531 /* If the user specifies options that do not modify the
3532 * backing file's behavior, we might still consider it the
3533 * implicit backing file. But it's easier this way, and
3534 * just specifying some of the backing BDS's options is
3535 * only possible with -drive anyway (otherwise the QAPI
3536 * schema forces the user to specify everything). */
3537 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3538 }
3539
Max Reitz6b6833c2019-02-01 20:29:15 +01003540 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003541 if (local_err) {
3542 ret = -EINVAL;
3543 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003544 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003545 goto free_exit;
3546 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003547 }
3548
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003549 if (!bs->drv || !bs->drv->supports_backing) {
3550 ret = -EINVAL;
3551 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003552 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003553 goto free_exit;
3554 }
3555
Peter Krempa6bff5972017-10-12 16:14:10 +02003556 if (!reference &&
3557 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003558 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003559 }
3560
Max Reitz6b6833c2019-02-01 20:29:15 +01003561 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003562 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003563 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003564 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003565 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003566 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003567 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003568 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003569
Max Reitz998c2012019-02-01 20:29:08 +01003570 if (implicit_backing) {
3571 bdrv_refresh_filename(backing_hd);
3572 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3573 backing_hd->filename);
3574 }
3575
Kevin Wolf5db15a52015-09-14 15:33:33 +02003576 /* Hook up the backing file link; drop our reference, bs owns the
3577 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003578 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003579 bdrv_unref(backing_hd);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003580 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003581 goto free_exit;
3582 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003583
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003584 qdict_del(parent_options, bdref_key);
3585
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003586free_exit:
3587 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003588 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003589 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003590}
3591
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003592static BlockDriverState *
3593bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003594 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003595 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003596{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003597 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003598 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003599 char *bdref_key_dot;
3600 const char *reference;
3601
Max Reitzbd86fb92020-05-13 13:05:13 +02003602 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003603
Max Reitzda557aa2013-12-20 19:28:11 +01003604 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3605 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3606 g_free(bdref_key_dot);
3607
Markus Armbruster129c7d12017-03-30 19:43:12 +02003608 /*
3609 * Caution: while qdict_get_try_str() is fine, getting non-string
3610 * types would require more care. When @options come from
3611 * -blockdev or blockdev_add, its members are typed according to
3612 * the QAPI schema, but when they come from -drive, they're all
3613 * QString.
3614 */
Max Reitzda557aa2013-12-20 19:28:11 +01003615 reference = qdict_get_try_str(options, bdref_key);
3616 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003617 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003618 error_setg(errp, "A block device must be specified for \"%s\"",
3619 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003620 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003621 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003622 goto done;
3623 }
3624
Max Reitz5b363932016-05-17 16:41:31 +02003625 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003626 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003627 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003628 goto done;
3629 }
3630
Max Reitzda557aa2013-12-20 19:28:11 +01003631done:
3632 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003633 return bs;
3634}
3635
3636/*
3637 * Opens a disk image whose options are given as BlockdevRef in another block
3638 * device's options.
3639 *
3640 * If allow_none is true, no image will be opened if filename is false and no
3641 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3642 *
3643 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3644 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3645 * itself, all options starting with "${bdref_key}." are considered part of the
3646 * BlockdevRef.
3647 *
3648 * The BlockdevRef will be removed from the options QDict.
3649 */
3650BdrvChild *bdrv_open_child(const char *filename,
3651 QDict *options, const char *bdref_key,
3652 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003653 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003654 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003655 bool allow_none, Error **errp)
3656{
3657 BlockDriverState *bs;
3658
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003659 GLOBAL_STATE_CODE();
3660
Max Reitzbd86fb92020-05-13 13:05:13 +02003661 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003662 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003663 if (bs == NULL) {
3664 return NULL;
3665 }
3666
Max Reitz258b7762020-05-13 13:05:15 +02003667 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3668 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003669}
3670
Max Reitzbd86fb92020-05-13 13:05:13 +02003671/*
3672 * TODO Future callers may need to specify parent/child_class in order for
3673 * option inheritance to work. Existing callers use it for the root node.
3674 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003675BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3676{
3677 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003678 QObject *obj = NULL;
3679 QDict *qdict = NULL;
3680 const char *reference = NULL;
3681 Visitor *v = NULL;
3682
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003683 GLOBAL_STATE_CODE();
3684
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003685 if (ref->type == QTYPE_QSTRING) {
3686 reference = ref->u.reference;
3687 } else {
3688 BlockdevOptions *options = &ref->u.definition;
3689 assert(ref->type == QTYPE_QDICT);
3690
3691 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003692 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003693 visit_complete(v, &obj);
3694
Max Reitz7dc847e2018-02-24 16:40:29 +01003695 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003696 qdict_flatten(qdict);
3697
3698 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3699 * compatibility with other callers) rather than what we want as the
3700 * real defaults. Apply the defaults here instead. */
3701 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3702 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3703 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003704 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3705
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003706 }
3707
Max Reitz272c02e2020-05-13 13:05:17 +02003708 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003709 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003710 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003711 visit_free(v);
3712 return bs;
3713}
3714
Max Reitz66836182016-05-17 16:41:27 +02003715static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3716 int flags,
3717 QDict *snapshot_options,
3718 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003719{
3720 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003721 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003722 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003723 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003724 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003725 int ret;
3726
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003727 GLOBAL_STATE_CODE();
3728
Kevin Wolfb9988752014-04-03 12:09:34 +02003729 /* if snapshot, we create a temporary backing file and open it
3730 instead of opening 'filename' directly */
3731
3732 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003733 total_size = bdrv_getlength(bs);
3734 if (total_size < 0) {
3735 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003736 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003737 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003738
3739 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003740 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003741 if (ret < 0) {
3742 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003743 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003744 }
3745
Max Reitzef810432014-12-02 18:32:42 +01003746 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003747 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003748 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003749 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003750 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003751 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003752 error_prepend(errp, "Could not create temporary overlay '%s': ",
3753 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003754 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003755 }
3756
Kevin Wolf73176be2016-03-07 13:02:15 +01003757 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003758 qdict_put_str(snapshot_options, "file.driver", "file");
3759 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3760 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003761
Max Reitz5b363932016-05-17 16:41:31 +02003762 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003763 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003764 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003765 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003766 }
3767
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003768 ret = bdrv_append(bs_snapshot, bs, errp);
3769 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003770 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003771 goto out;
3772 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003773
3774out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003775 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003776 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05003777 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003778}
3779
Max Reitzda557aa2013-12-20 19:28:11 +01003780/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003781 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003782 *
3783 * options is a QDict of options to pass to the block drivers, or NULL for an
3784 * empty set of options. The reference to the QDict belongs to the block layer
3785 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003786 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003787 *
3788 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3789 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003790 *
3791 * The reference parameter may be used to specify an existing block device which
3792 * should be opened. If specified, neither options nor a filename may be given,
3793 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003794 */
Max Reitz5b363932016-05-17 16:41:31 +02003795static BlockDriverState *bdrv_open_inherit(const char *filename,
3796 const char *reference,
3797 QDict *options, int flags,
3798 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003799 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003800 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003801 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003802{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003803 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003804 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003805 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003806 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003807 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003808 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003809 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003810 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003811 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003812 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003813
Max Reitzbd86fb92020-05-13 13:05:13 +02003814 assert(!child_class || !flags);
3815 assert(!child_class == !parent);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003816 GLOBAL_STATE_CODE();
Max Reitzf67503e2014-02-18 18:33:05 +01003817
Max Reitzddf56362014-02-18 18:33:06 +01003818 if (reference) {
3819 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003820 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003821
Max Reitzddf56362014-02-18 18:33:06 +01003822 if (filename || options_non_empty) {
3823 error_setg(errp, "Cannot reference an existing block device with "
3824 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003825 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003826 }
3827
3828 bs = bdrv_lookup_bs(reference, reference, errp);
3829 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003830 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003831 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003832
Max Reitzddf56362014-02-18 18:33:06 +01003833 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003834 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003835 }
3836
Max Reitz5b363932016-05-17 16:41:31 +02003837 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003838
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003839 /* NULL means an empty set of options */
3840 if (options == NULL) {
3841 options = qdict_new();
3842 }
3843
Kevin Wolf145f5982015-05-08 16:15:03 +02003844 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003845 parse_json_protocol(options, &filename, &local_err);
3846 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003847 goto fail;
3848 }
3849
Kevin Wolf145f5982015-05-08 16:15:03 +02003850 bs->explicit_options = qdict_clone_shallow(options);
3851
Max Reitzbd86fb92020-05-13 13:05:13 +02003852 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003853 bool parent_is_format;
3854
3855 if (parent->drv) {
3856 parent_is_format = parent->drv->is_format;
3857 } else {
3858 /*
3859 * parent->drv is not set yet because this node is opened for
3860 * (potential) format probing. That means that @parent is going
3861 * to be a format node.
3862 */
3863 parent_is_format = true;
3864 }
3865
Kevin Wolfbddcec32015-04-09 18:47:50 +02003866 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003867 child_class->inherit_options(child_role, parent_is_format,
3868 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003869 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003870 }
3871
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003872 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003873 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003874 goto fail;
3875 }
3876
Markus Armbruster129c7d12017-03-30 19:43:12 +02003877 /*
3878 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3879 * Caution: getting a boolean member of @options requires care.
3880 * When @options come from -blockdev or blockdev_add, members are
3881 * typed according to the QAPI schema, but when they come from
3882 * -drive, they're all QString.
3883 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003884 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3885 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3886 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3887 } else {
3888 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003889 }
3890
3891 if (flags & BDRV_O_SNAPSHOT) {
3892 snapshot_options = qdict_new();
3893 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3894 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003895 /* Let bdrv_backing_options() override "read-only" */
3896 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003897 bdrv_inherited_options(BDRV_CHILD_COW, true,
3898 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003899 }
3900
Kevin Wolf62392eb2015-04-24 16:38:02 +02003901 bs->open_flags = flags;
3902 bs->options = options;
3903 options = qdict_clone_shallow(options);
3904
Kevin Wolf76c591b2014-06-04 14:19:44 +02003905 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003906 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003907 drvname = qdict_get_try_str(options, "driver");
3908 if (drvname) {
3909 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003910 if (!drv) {
3911 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003912 goto fail;
3913 }
3914 }
3915
3916 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003917
Markus Armbruster129c7d12017-03-30 19:43:12 +02003918 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003919 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003920 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3921 (backing && *backing == '\0'))
3922 {
Max Reitz4f7be282018-02-24 16:40:33 +01003923 if (backing) {
3924 warn_report("Use of \"backing\": \"\" is deprecated; "
3925 "use \"backing\": null instead");
3926 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003927 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003928 qdict_del(bs->explicit_options, "backing");
3929 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003930 qdict_del(options, "backing");
3931 }
3932
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003933 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003934 * probing, the block drivers will do their own bdrv_open_child() for the
3935 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003936 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003937 BlockDriverState *file_bs;
3938
3939 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003940 &child_of_bds, BDRV_CHILD_IMAGE,
3941 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003942 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003943 goto fail;
3944 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003945 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003946 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3947 * looking at the header to guess the image format. This works even
3948 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003949 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003950 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003951 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003952 if (local_err) {
3953 goto fail;
3954 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003955
Eric Blake46f5ac22017-04-27 16:58:17 -05003956 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003957 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003958 }
3959
Kevin Wolf76c591b2014-06-04 14:19:44 +02003960 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003961 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003962 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003963 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003964 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003965 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003966 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003967 /*
3968 * This option update would logically belong in bdrv_fill_options(),
3969 * but we first need to open bs->file for the probing to work, while
3970 * opening bs->file already requires the (mostly) final set of options
3971 * so that cache mode etc. can be inherited.
3972 *
3973 * Adding the driver later is somewhat ugly, but it's not an option
3974 * that would ever be inherited, so it's correct. We just need to make
3975 * sure to update both bs->options (which has the full effective
3976 * options for bs) and options (which has file.* already removed).
3977 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003978 qdict_put_str(bs->options, "driver", drv->format_name);
3979 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003980 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003981 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003982 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003983 }
3984
Max Reitz53a29512015-03-19 14:53:16 -04003985 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3986 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3987 /* file must be NULL if a protocol BDS is about to be created
3988 * (the inverse results in an error message from bdrv_open_common()) */
3989 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3990
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003991 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003992 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003993 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003994 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01003995 }
3996
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003997 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003998 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01003999 file = NULL;
4000 }
4001
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004002 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02004003 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01004004 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004005 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004006 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004007 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004008 }
4009
Alberto Garcia50196d72018-09-06 12:37:03 +03004010 /* Remove all children options and references
4011 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03004012 QLIST_FOREACH(child, &bs->children, next) {
4013 char *child_key_dot;
4014 child_key_dot = g_strdup_printf("%s.", child->name);
4015 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4016 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03004017 qdict_del(bs->explicit_options, child->name);
4018 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03004019 g_free(child_key_dot);
4020 }
4021
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004022 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01004023 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004024 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01004025 if (flags & BDRV_O_PROTOCOL) {
4026 error_setg(errp, "Block protocol '%s' doesn't support the option "
4027 "'%s'", drv->format_name, entry->key);
4028 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01004029 error_setg(errp,
4030 "Block format '%s' does not support the option '%s'",
4031 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01004032 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004033
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004034 goto close_and_fail;
4035 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004036
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01004037 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004038
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004039 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03004040 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004041
4042 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4043 * temporary snapshot afterwards. */
4044 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02004045 BlockDriverState *snapshot_bs;
4046 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4047 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01004048 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004049 if (local_err) {
4050 goto close_and_fail;
4051 }
Max Reitz5b363932016-05-17 16:41:31 +02004052 /* We are not going to return bs but the overlay on top of it
4053 * (snapshot_bs); thus, we have to drop the strong reference to bs
4054 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4055 * though, because the overlay still has a reference to it. */
4056 bdrv_unref(bs);
4057 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02004058 }
4059
Max Reitz5b363932016-05-17 16:41:31 +02004060 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004061
Kevin Wolf8bfea152014-04-11 19:16:36 +02004062fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004063 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004064 qobject_unref(snapshot_options);
4065 qobject_unref(bs->explicit_options);
4066 qobject_unref(bs->options);
4067 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004068 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03004069 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02004070 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004071 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004072 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004073
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004074close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02004075 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004076 qobject_unref(snapshot_options);
4077 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004078 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004079 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004080}
4081
Max Reitz5b363932016-05-17 16:41:31 +02004082BlockDriverState *bdrv_open(const char *filename, const char *reference,
4083 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02004084{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004085 GLOBAL_STATE_CODE();
4086
Max Reitz5b363932016-05-17 16:41:31 +02004087 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02004088 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004089}
4090
Alberto Garciafaf116b2019-03-12 18:48:49 +02004091/* Return true if the NULL-terminated @list contains @str */
4092static bool is_str_in_list(const char *str, const char *const *list)
4093{
4094 if (str && list) {
4095 int i;
4096 for (i = 0; list[i] != NULL; i++) {
4097 if (!strcmp(str, list[i])) {
4098 return true;
4099 }
4100 }
4101 }
4102 return false;
4103}
4104
4105/*
4106 * Check that every option set in @bs->options is also set in
4107 * @new_opts.
4108 *
4109 * Options listed in the common_options list and in
4110 * @bs->drv->mutable_opts are skipped.
4111 *
4112 * Return 0 on success, otherwise return -EINVAL and set @errp.
4113 */
4114static int bdrv_reset_options_allowed(BlockDriverState *bs,
4115 const QDict *new_opts, Error **errp)
4116{
4117 const QDictEntry *e;
4118 /* These options are common to all block drivers and are handled
4119 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4120 const char *const common_options[] = {
4121 "node-name", "discard", "cache.direct", "cache.no-flush",
4122 "read-only", "auto-read-only", "detect-zeroes", NULL
4123 };
4124
4125 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4126 if (!qdict_haskey(new_opts, e->key) &&
4127 !is_str_in_list(e->key, common_options) &&
4128 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4129 error_setg(errp, "Option '%s' cannot be reset "
4130 "to its default value", e->key);
4131 return -EINVAL;
4132 }
4133 }
4134
4135 return 0;
4136}
4137
Jeff Codye971aa12012-09-20 15:13:19 -04004138/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004139 * Returns true if @child can be reached recursively from @bs
4140 */
4141static bool bdrv_recurse_has_child(BlockDriverState *bs,
4142 BlockDriverState *child)
4143{
4144 BdrvChild *c;
4145
4146 if (bs == child) {
4147 return true;
4148 }
4149
4150 QLIST_FOREACH(c, &bs->children, next) {
4151 if (bdrv_recurse_has_child(c->bs, child)) {
4152 return true;
4153 }
4154 }
4155
4156 return false;
4157}
4158
4159/*
Jeff Codye971aa12012-09-20 15:13:19 -04004160 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4161 * reopen of multiple devices.
4162 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004163 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04004164 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4165 * be created and initialized. This newly created BlockReopenQueue should be
4166 * passed back in for subsequent calls that are intended to be of the same
4167 * atomic 'set'.
4168 *
4169 * bs is the BlockDriverState to add to the reopen queue.
4170 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004171 * options contains the changed options for the associated bs
4172 * (the BlockReopenQueue takes ownership)
4173 *
Jeff Codye971aa12012-09-20 15:13:19 -04004174 * flags contains the open flags for the associated bs
4175 *
4176 * returns a pointer to bs_queue, which is either the newly allocated
4177 * bs_queue, or the existing bs_queue being used.
4178 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004179 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04004180 */
Kevin Wolf28518102015-05-08 17:07:31 +02004181static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4182 BlockDriverState *bs,
4183 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004184 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02004185 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004186 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02004187 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004188 int parent_flags,
4189 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04004190{
4191 assert(bs != NULL);
4192
4193 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02004194 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004195 QDict *old_options, *explicit_options, *options_copy;
4196 int flags;
4197 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004198
Kevin Wolf1a63a902017-12-06 20:24:44 +01004199 /* Make sure that the caller remembered to use a drained section. This is
4200 * important to avoid graph changes between the recursive queuing here and
4201 * bdrv_reopen_multiple(). */
4202 assert(bs->quiesce_counter > 0);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05004203 GLOBAL_STATE_CODE();
Kevin Wolf1a63a902017-12-06 20:24:44 +01004204
Jeff Codye971aa12012-09-20 15:13:19 -04004205 if (bs_queue == NULL) {
4206 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004207 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04004208 }
4209
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004210 if (!options) {
4211 options = qdict_new();
4212 }
4213
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004214 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004215 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004216 if (bs == bs_entry->state.bs) {
4217 break;
4218 }
4219 }
4220
Kevin Wolf28518102015-05-08 17:07:31 +02004221 /*
4222 * Precedence of options:
4223 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004224 * 2. Retained from explicitly set options of bs
4225 * 3. Inherited from parent node
4226 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004227 */
4228
Kevin Wolf145f5982015-05-08 16:15:03 +02004229 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004230 if (bs_entry || keep_old_opts) {
4231 old_options = qdict_clone_shallow(bs_entry ?
4232 bs_entry->state.explicit_options :
4233 bs->explicit_options);
4234 bdrv_join_options(bs, options, old_options);
4235 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004236 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004237
4238 explicit_options = qdict_clone_shallow(options);
4239
Kevin Wolf28518102015-05-08 17:07:31 +02004240 /* Inherit from parent node */
4241 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004242 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004243 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004244 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004245 } else {
4246 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004247 }
4248
Alberto Garcia077e8e22019-03-12 18:48:44 +02004249 if (keep_old_opts) {
4250 /* Old values are used for options that aren't set yet */
4251 old_options = qdict_clone_shallow(bs->options);
4252 bdrv_join_options(bs, options, old_options);
4253 qobject_unref(old_options);
4254 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004255
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004256 /* We have the final set of options so let's update the flags */
4257 options_copy = qdict_clone_shallow(options);
4258 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4259 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4260 update_flags_from_options(&flags, opts);
4261 qemu_opts_del(opts);
4262 qobject_unref(options_copy);
4263
Kevin Wolffd452022017-08-03 17:02:59 +02004264 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004265 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004266 if (flags & BDRV_O_RDWR) {
4267 flags |= BDRV_O_ALLOW_RDWR;
4268 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004269
Kevin Wolf1857c972017-09-14 14:53:46 +02004270 if (!bs_entry) {
4271 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004272 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004273 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004274 qobject_unref(bs_entry->state.options);
4275 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004276 }
4277
4278 bs_entry->state.bs = bs;
4279 bs_entry->state.options = options;
4280 bs_entry->state.explicit_options = explicit_options;
4281 bs_entry->state.flags = flags;
4282
Alberto Garcia85466322019-03-12 18:48:45 +02004283 /*
4284 * If keep_old_opts is false then it means that unspecified
4285 * options must be reset to their original value. We don't allow
4286 * resetting 'backing' but we need to know if the option is
4287 * missing in order to decide if we have to return an error.
4288 */
4289 if (!keep_old_opts) {
4290 bs_entry->state.backing_missing =
4291 !qdict_haskey(options, "backing") &&
4292 !qdict_haskey(options, "backing.driver");
4293 }
4294
Kevin Wolf67251a32015-04-09 18:54:04 +02004295 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004296 QDict *new_child_options = NULL;
4297 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004298
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004299 /* reopen can only change the options of block devices that were
4300 * implicitly created and inherited options. For other (referenced)
4301 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004302 if (child->bs->inherits_from != bs) {
4303 continue;
4304 }
4305
Alberto Garcia85466322019-03-12 18:48:45 +02004306 /* Check if the options contain a child reference */
4307 if (qdict_haskey(options, child->name)) {
4308 const char *childref = qdict_get_try_str(options, child->name);
4309 /*
4310 * The current child must not be reopened if the child
4311 * reference is null or points to a different node.
4312 */
4313 if (g_strcmp0(childref, child->bs->node_name)) {
4314 continue;
4315 }
4316 /*
4317 * If the child reference points to the current child then
4318 * reopen it with its existing set of options (note that
4319 * it can still inherit new options from the parent).
4320 */
4321 child_keep_old = true;
4322 } else {
4323 /* Extract child options ("child-name.*") */
4324 char *child_key_dot = g_strdup_printf("%s.", child->name);
4325 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4326 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4327 g_free(child_key_dot);
4328 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004329
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004330 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004331 child->klass, child->role, bs->drv->is_format,
4332 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004333 }
4334
Jeff Codye971aa12012-09-20 15:13:19 -04004335 return bs_queue;
4336}
4337
Kevin Wolf28518102015-05-08 17:07:31 +02004338BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4339 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004340 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004341{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004342 GLOBAL_STATE_CODE();
4343
Max Reitz3cdc69d2020-05-13 13:05:18 +02004344 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4345 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004346}
4347
Alberto Garciaab5b52282021-07-08 13:47:05 +02004348void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4349{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004350 GLOBAL_STATE_CODE();
Alberto Garciaab5b52282021-07-08 13:47:05 +02004351 if (bs_queue) {
4352 BlockReopenQueueEntry *bs_entry, *next;
4353 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4354 qobject_unref(bs_entry->state.explicit_options);
4355 qobject_unref(bs_entry->state.options);
4356 g_free(bs_entry);
4357 }
4358 g_free(bs_queue);
4359 }
4360}
4361
Jeff Codye971aa12012-09-20 15:13:19 -04004362/*
4363 * Reopen multiple BlockDriverStates atomically & transactionally.
4364 *
4365 * The queue passed in (bs_queue) must have been built up previous
4366 * via bdrv_reopen_queue().
4367 *
4368 * Reopens all BDS specified in the queue, with the appropriate
4369 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004370 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004371 * data cleaned up.
4372 *
4373 * If all devices prepare successfully, then the changes are committed
4374 * to all devices.
4375 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004376 * All affected nodes must be drained between bdrv_reopen_queue() and
4377 * bdrv_reopen_multiple().
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004378 *
4379 * To be called from the main thread, with all other AioContexts unlocked.
Jeff Codye971aa12012-09-20 15:13:19 -04004380 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004381int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004382{
4383 int ret = -1;
4384 BlockReopenQueueEntry *bs_entry, *next;
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004385 AioContext *ctx;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004386 Transaction *tran = tran_new();
4387 g_autoptr(GHashTable) found = NULL;
4388 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004389
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004390 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Jeff Codye971aa12012-09-20 15:13:19 -04004391 assert(bs_queue != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004392 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004393
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004394 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004395 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4396 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004397 ret = bdrv_flush(bs_entry->state.bs);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004398 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004399 if (ret < 0) {
4400 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004401 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004402 }
4403 }
4404
4405 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004406 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004407 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4408 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004409 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004410 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004411 if (ret < 0) {
4412 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004413 }
4414 bs_entry->prepared = true;
4415 }
4416
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004417 found = g_hash_table_new(NULL, NULL);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004418 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004419 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004420
4421 refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs);
4422 if (state->old_backing_bs) {
4423 refresh_list = bdrv_topological_dfs(refresh_list, found,
4424 state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004425 }
Alberto Garciaecd30d22021-06-10 15:05:36 +03004426 if (state->old_file_bs) {
4427 refresh_list = bdrv_topological_dfs(refresh_list, found,
4428 state->old_file_bs);
4429 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004430 }
4431
4432 /*
4433 * Note that file-posix driver rely on permission update done during reopen
4434 * (even if no permission changed), because it wants "new" permissions for
4435 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4436 * in raw_reopen_prepare() which is called with "old" permissions.
4437 */
4438 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4439 if (ret < 0) {
4440 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004441 }
4442
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004443 /*
4444 * If we reach this point, we have success and just need to apply the
4445 * changes.
4446 *
4447 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4448 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4449 * children are usually goes after parents in reopen-queue, so go from last
4450 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004451 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004452 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004453 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4454 aio_context_acquire(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004455 bdrv_reopen_commit(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004456 aio_context_release(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004457 }
4458
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004459 tran_commit(tran);
4460
4461 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4462 BlockDriverState *bs = bs_entry->state.bs;
4463
4464 if (bs->drv->bdrv_reopen_commit_post) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004465 ctx = bdrv_get_aio_context(bs);
4466 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004467 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004468 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004469 }
4470 }
4471
Jeff Codye971aa12012-09-20 15:13:19 -04004472 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004473 goto cleanup;
4474
4475abort:
4476 tran_abort(tran);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004477 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004478 if (bs_entry->prepared) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004479 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4480 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004481 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004482 aio_context_release(ctx);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004483 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004484 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004485
Jeff Codye971aa12012-09-20 15:13:19 -04004486cleanup:
Alberto Garciaab5b52282021-07-08 13:47:05 +02004487 bdrv_reopen_queue_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004488
Jeff Codye971aa12012-09-20 15:13:19 -04004489 return ret;
4490}
4491
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004492int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4493 Error **errp)
4494{
4495 AioContext *ctx = bdrv_get_aio_context(bs);
4496 BlockReopenQueue *queue;
4497 int ret;
4498
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004499 GLOBAL_STATE_CODE();
4500
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004501 bdrv_subtree_drained_begin(bs);
4502 if (ctx != qemu_get_aio_context()) {
4503 aio_context_release(ctx);
4504 }
4505
4506 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4507 ret = bdrv_reopen_multiple(queue, errp);
4508
4509 if (ctx != qemu_get_aio_context()) {
4510 aio_context_acquire(ctx);
4511 }
4512 bdrv_subtree_drained_end(bs);
4513
4514 return ret;
4515}
4516
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004517int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4518 Error **errp)
4519{
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004520 QDict *opts = qdict_new();
4521
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004522 GLOBAL_STATE_CODE();
4523
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004524 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4525
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004526 return bdrv_reopen(bs, opts, true, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004527}
4528
Jeff Codye971aa12012-09-20 15:13:19 -04004529/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004530 * Take a BDRVReopenState and check if the value of 'backing' in the
4531 * reopen_state->options QDict is valid or not.
4532 *
4533 * If 'backing' is missing from the QDict then return 0.
4534 *
4535 * If 'backing' contains the node name of the backing file of
4536 * reopen_state->bs then return 0.
4537 *
4538 * If 'backing' contains a different node name (or is null) then check
4539 * whether the current backing file can be replaced with the new one.
4540 * If that's the case then reopen_state->replace_backing_bs is set to
4541 * true and reopen_state->new_backing_bs contains a pointer to the new
4542 * backing BlockDriverState (or NULL).
4543 *
4544 * Return 0 on success, otherwise return < 0 and set @errp.
4545 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004546static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4547 bool is_backing, Transaction *tran,
4548 Error **errp)
Alberto Garciacb828c32019-03-12 18:48:47 +02004549{
4550 BlockDriverState *bs = reopen_state->bs;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004551 BlockDriverState *new_child_bs;
4552 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4553 child_bs(bs->file);
4554 const char *child_name = is_backing ? "backing" : "file";
Alberto Garciacb828c32019-03-12 18:48:47 +02004555 QObject *value;
4556 const char *str;
4557
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05004558 GLOBAL_STATE_CODE();
4559
Alberto Garciaecd30d22021-06-10 15:05:36 +03004560 value = qdict_get(reopen_state->options, child_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004561 if (value == NULL) {
4562 return 0;
4563 }
4564
4565 switch (qobject_type(value)) {
4566 case QTYPE_QNULL:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004567 assert(is_backing); /* The 'file' option does not allow a null value */
4568 new_child_bs = NULL;
Alberto Garciacb828c32019-03-12 18:48:47 +02004569 break;
4570 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004571 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciaecd30d22021-06-10 15:05:36 +03004572 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4573 if (new_child_bs == NULL) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004574 return -EINVAL;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004575 } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4576 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4577 "cycle", str, child_name, bs->node_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004578 return -EINVAL;
4579 }
4580 break;
4581 default:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004582 /*
4583 * The options QDict has been flattened, so 'backing' and 'file'
4584 * do not allow any other data type here.
4585 */
Alberto Garciacb828c32019-03-12 18:48:47 +02004586 g_assert_not_reached();
4587 }
4588
Alberto Garciaecd30d22021-06-10 15:05:36 +03004589 if (old_child_bs == new_child_bs) {
4590 return 0;
4591 }
4592
4593 if (old_child_bs) {
4594 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004595 return 0;
4596 }
4597
Alberto Garciaecd30d22021-06-10 15:05:36 +03004598 if (old_child_bs->implicit) {
4599 error_setg(errp, "Cannot replace implicit %s child of %s",
4600 child_name, bs->node_name);
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004601 return -EPERM;
4602 }
4603 }
4604
Alberto Garciaecd30d22021-06-10 15:05:36 +03004605 if (bs->drv->is_filter && !old_child_bs) {
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03004606 /*
4607 * Filters always have a file or a backing child, so we are trying to
4608 * change wrong child
4609 */
4610 error_setg(errp, "'%s' is a %s filter node that does not support a "
Alberto Garciaecd30d22021-06-10 15:05:36 +03004611 "%s child", bs->node_name, bs->drv->format_name, child_name);
Max Reitz1d42f482019-06-12 17:24:39 +02004612 return -EINVAL;
4613 }
4614
Alberto Garciaecd30d22021-06-10 15:05:36 +03004615 if (is_backing) {
4616 reopen_state->old_backing_bs = old_child_bs;
4617 } else {
4618 reopen_state->old_file_bs = old_child_bs;
4619 }
4620
4621 return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4622 tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004623}
4624
4625/*
Jeff Codye971aa12012-09-20 15:13:19 -04004626 * Prepares a BlockDriverState for reopen. All changes are staged in the
4627 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4628 * the block driver layer .bdrv_reopen_prepare()
4629 *
4630 * bs is the BlockDriverState to reopen
4631 * flags are the new open flags
4632 * queue is the reopen queue
4633 *
4634 * Returns 0 on success, non-zero on error. On error errp will be set
4635 * as well.
4636 *
4637 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4638 * It is the responsibility of the caller to then call the abort() or
4639 * commit() for any other BDS that have been left in a prepare() state
4640 *
4641 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004642static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004643 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +03004644 Transaction *change_child_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004645{
4646 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004647 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004648 Error *local_err = NULL;
4649 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004650 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004651 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004652 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004653 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004654 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004655
4656 assert(reopen_state != NULL);
4657 assert(reopen_state->bs->drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004658 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004659 drv = reopen_state->bs->drv;
4660
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004661 /* This function and each driver's bdrv_reopen_prepare() remove
4662 * entries from reopen_state->options as they are processed, so
4663 * we need to make a copy of the original QDict. */
4664 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4665
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004666 /* Process generic block layer options */
4667 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004668 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004669 ret = -EINVAL;
4670 goto error;
4671 }
4672
Alberto Garciae6d79c42018-11-12 16:00:47 +02004673 /* This was already called in bdrv_reopen_queue_child() so the flags
4674 * are up-to-date. This time we simply want to remove the options from
4675 * QemuOpts in order to indicate that they have been processed. */
4676 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004677 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004678 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004679
Alberto Garcia415bbca2018-10-03 13:23:13 +03004680 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004681 if (discard != NULL) {
4682 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4683 error_setg(errp, "Invalid discard option");
4684 ret = -EINVAL;
4685 goto error;
4686 }
4687 }
4688
Alberto Garcia543770b2018-09-06 12:37:09 +03004689 reopen_state->detect_zeroes =
4690 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4691 if (local_err) {
4692 error_propagate(errp, local_err);
4693 ret = -EINVAL;
4694 goto error;
4695 }
4696
Alberto Garcia57f9db92018-09-06 12:37:06 +03004697 /* All other options (including node-name and driver) must be unchanged.
4698 * Put them back into the QDict, so that they are checked at the end
4699 * of this function. */
4700 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004701
Jeff Cody3d8ce172017-04-07 16:55:30 -04004702 /* If we are to stay read-only, do not allow permission change
4703 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4704 * not set, or if the BDS still has copy_on_read enabled */
4705 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004706 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004707 if (local_err) {
4708 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004709 goto error;
4710 }
4711
Jeff Codye971aa12012-09-20 15:13:19 -04004712 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004713 /*
4714 * If a driver-specific option is missing, it means that we
4715 * should reset it to its default value.
4716 * But not all options allow that, so we need to check it first.
4717 */
4718 ret = bdrv_reset_options_allowed(reopen_state->bs,
4719 reopen_state->options, errp);
4720 if (ret) {
4721 goto error;
4722 }
4723
Jeff Codye971aa12012-09-20 15:13:19 -04004724 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4725 if (ret) {
4726 if (local_err != NULL) {
4727 error_propagate(errp, local_err);
4728 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004729 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004730 error_setg(errp, "failed while preparing to reopen image '%s'",
4731 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004732 }
4733 goto error;
4734 }
4735 } else {
4736 /* It is currently mandatory to have a bdrv_reopen_prepare()
4737 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004738 error_setg(errp, "Block format '%s' used by node '%s' "
4739 "does not support reopening files", drv->format_name,
4740 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004741 ret = -1;
4742 goto error;
4743 }
4744
Max Reitz9ad08c42018-11-16 17:45:24 +01004745 drv_prepared = true;
4746
Alberto Garciabacd9b82019-03-12 18:48:46 +02004747 /*
4748 * We must provide the 'backing' option if the BDS has a backing
4749 * file or if the image file has a backing file name as part of
4750 * its metadata. Otherwise the 'backing' option can be omitted.
4751 */
4752 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004753 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004754 error_setg(errp, "backing is missing for '%s'",
4755 reopen_state->bs->node_name);
4756 ret = -EINVAL;
4757 goto error;
4758 }
4759
Alberto Garciacb828c32019-03-12 18:48:47 +02004760 /*
4761 * Allow changing the 'backing' option. The new value can be
4762 * either a reference to an existing node (using its node name)
4763 * or NULL to simply detach the current backing file.
4764 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004765 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4766 change_child_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004767 if (ret < 0) {
4768 goto error;
4769 }
4770 qdict_del(reopen_state->options, "backing");
4771
Alberto Garciaecd30d22021-06-10 15:05:36 +03004772 /* Allow changing the 'file' option. In this case NULL is not allowed */
4773 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4774 change_child_tran, errp);
4775 if (ret < 0) {
4776 goto error;
4777 }
4778 qdict_del(reopen_state->options, "file");
4779
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004780 /* Options that are not handled are only okay if they are unchanged
4781 * compared to the old state. It is expected that some options are only
4782 * used for the initial open, but not reopen (e.g. filename) */
4783 if (qdict_size(reopen_state->options)) {
4784 const QDictEntry *entry = qdict_first(reopen_state->options);
4785
4786 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004787 QObject *new = entry->value;
4788 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004789
Alberto Garciadb905282018-09-06 12:37:05 +03004790 /* Allow child references (child_name=node_name) as long as they
4791 * point to the current child (i.e. everything stays the same). */
4792 if (qobject_type(new) == QTYPE_QSTRING) {
4793 BdrvChild *child;
4794 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4795 if (!strcmp(child->name, entry->key)) {
4796 break;
4797 }
4798 }
4799
4800 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004801 if (!strcmp(child->bs->node_name,
4802 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004803 continue; /* Found child with this name, skip option */
4804 }
4805 }
4806 }
4807
Max Reitz54fd1b02017-11-14 19:01:26 +01004808 /*
4809 * TODO: When using -drive to specify blockdev options, all values
4810 * will be strings; however, when using -blockdev, blockdev-add or
4811 * filenames using the json:{} pseudo-protocol, they will be
4812 * correctly typed.
4813 * In contrast, reopening options are (currently) always strings
4814 * (because you can only specify them through qemu-io; all other
4815 * callers do not specify any options).
4816 * Therefore, when using anything other than -drive to create a BDS,
4817 * this cannot detect non-string options as unchanged, because
4818 * qobject_is_equal() always returns false for objects of different
4819 * type. In the future, this should be remedied by correctly typing
4820 * all options. For now, this is not too big of an issue because
4821 * the user can simply omit options which cannot be changed anyway,
4822 * so they will stay unchanged.
4823 */
4824 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004825 error_setg(errp, "Cannot change the option '%s'", entry->key);
4826 ret = -EINVAL;
4827 goto error;
4828 }
4829 } while ((entry = qdict_next(reopen_state->options, entry)));
4830 }
4831
Jeff Codye971aa12012-09-20 15:13:19 -04004832 ret = 0;
4833
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004834 /* Restore the original reopen_state->options QDict */
4835 qobject_unref(reopen_state->options);
4836 reopen_state->options = qobject_ref(orig_reopen_opts);
4837
Jeff Codye971aa12012-09-20 15:13:19 -04004838error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004839 if (ret < 0 && drv_prepared) {
4840 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4841 * call drv->bdrv_reopen_abort() before signaling an error
4842 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4843 * when the respective bdrv_reopen_prepare() has failed) */
4844 if (drv->bdrv_reopen_abort) {
4845 drv->bdrv_reopen_abort(reopen_state);
4846 }
4847 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004848 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004849 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004850 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004851 return ret;
4852}
4853
4854/*
4855 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4856 * makes them final by swapping the staging BlockDriverState contents into
4857 * the active BlockDriverState contents.
4858 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004859static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004860{
4861 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004862 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004863 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004864
4865 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004866 bs = reopen_state->bs;
4867 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004868 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004869 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004870
4871 /* If there are any driver level actions to take */
4872 if (drv->bdrv_reopen_commit) {
4873 drv->bdrv_reopen_commit(reopen_state);
4874 }
4875
4876 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004877 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004878 qobject_unref(bs->options);
Alberto Garciaab5b52282021-07-08 13:47:05 +02004879 qobject_ref(reopen_state->explicit_options);
4880 qobject_ref(reopen_state->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004881
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004882 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004883 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004884 bs->open_flags = reopen_state->flags;
Alberto Garcia543770b2018-09-06 12:37:09 +03004885 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004886
Alberto Garcia50196d72018-09-06 12:37:03 +03004887 /* Remove child references from bs->options and bs->explicit_options.
4888 * Child options were already removed in bdrv_reopen_queue_child() */
4889 QLIST_FOREACH(child, &bs->children, next) {
4890 qdict_del(bs->explicit_options, child->name);
4891 qdict_del(bs->options, child->name);
4892 }
Vladimir Sementsov-Ogievskiy3d0e8742021-06-10 15:05:35 +03004893 /* backing is probably removed, so it's not handled by previous loop */
4894 qdict_del(bs->explicit_options, "backing");
4895 qdict_del(bs->options, "backing");
4896
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004897 bdrv_refresh_limits(bs, NULL, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004898}
4899
4900/*
4901 * Abort the reopen, and delete and free the staged changes in
4902 * reopen_state
4903 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004904static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004905{
4906 BlockDriver *drv;
4907
4908 assert(reopen_state != NULL);
4909 drv = reopen_state->bs->drv;
4910 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004911 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004912
4913 if (drv->bdrv_reopen_abort) {
4914 drv->bdrv_reopen_abort(reopen_state);
4915 }
4916}
4917
4918
Max Reitz64dff522016-01-29 16:36:10 +01004919static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004920{
Max Reitz33384422014-06-20 21:57:33 +02004921 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004922 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004923
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004924 GLOBAL_STATE_CODE();
Max Reitz30f55fb2016-05-17 16:41:32 +02004925 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004926
Paolo Bonzinifc272912015-12-23 11:48:24 +01004927 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004928 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004929 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004930
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004931 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004932 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004933 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004934 bs->drv->bdrv_close(bs);
4935 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004936 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004937 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004938
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004939 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004940 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004941 }
4942
Alberto Garciadd4118c2019-05-13 16:46:17 +03004943 bs->backing = NULL;
4944 bs->file = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004945 g_free(bs->opaque);
4946 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004947 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004948 bs->backing_file[0] = '\0';
4949 bs->backing_format[0] = '\0';
4950 bs->total_sectors = 0;
4951 bs->encrypted = false;
4952 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004953 qobject_unref(bs->options);
4954 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004955 bs->options = NULL;
4956 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004957 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004958 bs->full_open_options = NULL;
Hanna Reitz0bc329f2021-08-12 10:41:44 +02004959 g_free(bs->block_status_cache);
4960 bs->block_status_cache = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004961
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004962 bdrv_release_named_dirty_bitmaps(bs);
4963 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4964
Max Reitz33384422014-06-20 21:57:33 +02004965 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4966 g_free(ban);
4967 }
4968 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004969 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004970
4971 /*
4972 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4973 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4974 * gets called.
4975 */
4976 if (bs->quiesce_counter) {
4977 bdrv_drain_all_end_quiesce(bs);
4978 }
bellardb3380822004-03-14 21:38:54 +00004979}
4980
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004981void bdrv_close_all(void)
4982{
Kevin Wolfb3b52992018-05-16 13:46:37 +02004983 assert(job_next(NULL) == NULL);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004984 GLOBAL_STATE_CODE();
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004985
Max Reitzca9bd242016-01-29 16:36:14 +01004986 /* Drop references from requests still in flight, such as canceled block
4987 * jobs whose AIO context has not been polled yet */
4988 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004989
Max Reitzca9bd242016-01-29 16:36:14 +01004990 blk_remove_all_bs();
4991 blockdev_close_all_bdrv_states();
4992
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004993 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004994}
4995
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004996static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004997{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004998 GQueue *queue;
4999 GHashTable *found;
5000 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005001
Max Reitzbd86fb92020-05-13 13:05:13 +02005002 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005003 return false;
5004 }
5005
Max Reitzec9f10f2018-06-13 20:18:15 +02005006 /* If the child @c belongs to the BDS @to, replacing the current
5007 * c->bs by @to would mean to create a loop.
5008 *
5009 * Such a case occurs when appending a BDS to a backing chain.
5010 * For instance, imagine the following chain:
5011 *
5012 * guest device -> node A -> further backing chain...
5013 *
5014 * Now we create a new BDS B which we want to put on top of this
5015 * chain, so we first attach A as its backing node:
5016 *
5017 * node B
5018 * |
5019 * v
5020 * guest device -> node A -> further backing chain...
5021 *
5022 * Finally we want to replace A by B. When doing that, we want to
5023 * replace all pointers to A by pointers to B -- except for the
5024 * pointer from B because (1) that would create a loop, and (2)
5025 * that pointer should simply stay intact:
5026 *
5027 * guest device -> node B
5028 * |
5029 * v
5030 * node A -> further backing chain...
5031 *
5032 * In general, when replacing a node A (c->bs) by a node B (@to),
5033 * if A is a child of B, that means we cannot replace A by B there
5034 * because that would create a loop. Silently detaching A from B
5035 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005036 * place there is the most sensible choice.
5037 *
5038 * We would also create a loop in any cases where @c is only
5039 * indirectly referenced by @to. Prevent this by returning false
5040 * if @c is found (by breadth-first search) anywhere in the whole
5041 * subtree of @to.
5042 */
5043
5044 ret = true;
5045 found = g_hash_table_new(NULL, NULL);
5046 g_hash_table_add(found, to);
5047 queue = g_queue_new();
5048 g_queue_push_tail(queue, to);
5049
5050 while (!g_queue_is_empty(queue)) {
5051 BlockDriverState *v = g_queue_pop_head(queue);
5052 BdrvChild *c2;
5053
5054 QLIST_FOREACH(c2, &v->children, next) {
5055 if (c2 == c) {
5056 ret = false;
5057 break;
5058 }
5059
5060 if (g_hash_table_contains(found, c2->bs)) {
5061 continue;
5062 }
5063
5064 g_queue_push_tail(queue, c2->bs);
5065 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005066 }
5067 }
5068
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005069 g_queue_free(queue);
5070 g_hash_table_destroy(found);
5071
5072 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005073}
5074
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005075typedef struct BdrvRemoveFilterOrCowChild {
5076 BdrvChild *child;
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005077 BlockDriverState *bs;
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005078 bool is_backing;
5079} BdrvRemoveFilterOrCowChild;
5080
5081static void bdrv_remove_filter_or_cow_child_abort(void *opaque)
5082{
5083 BdrvRemoveFilterOrCowChild *s = opaque;
5084 BlockDriverState *parent_bs = s->child->opaque;
5085
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005086 if (s->is_backing) {
5087 parent_bs->backing = s->child;
5088 } else {
5089 parent_bs->file = s->child;
5090 }
5091
5092 /*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03005093 * We don't have to restore child->bs here to undo bdrv_replace_child_tran()
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005094 * because that function is transactionable and it registered own completion
5095 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
5096 * called automatically.
5097 */
5098}
5099
5100static void bdrv_remove_filter_or_cow_child_commit(void *opaque)
5101{
5102 BdrvRemoveFilterOrCowChild *s = opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005103 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005104 bdrv_child_free(s->child);
5105}
5106
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005107static void bdrv_remove_filter_or_cow_child_clean(void *opaque)
5108{
5109 BdrvRemoveFilterOrCowChild *s = opaque;
5110
5111 /* Drop the bs reference after the transaction is done */
5112 bdrv_unref(s->bs);
5113 g_free(s);
5114}
5115
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005116static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = {
5117 .abort = bdrv_remove_filter_or_cow_child_abort,
5118 .commit = bdrv_remove_filter_or_cow_child_commit,
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005119 .clean = bdrv_remove_filter_or_cow_child_clean,
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005120};
5121
5122/*
Vladimir Sementsov-Ogievskiy5b995012021-06-10 15:05:29 +03005123 * A function to remove backing or file child of @bs.
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03005124 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005125 */
Vladimir Sementsov-Ogievskiy5b995012021-06-10 15:05:29 +03005126static void bdrv_remove_file_or_backing_child(BlockDriverState *bs,
5127 BdrvChild *child,
5128 Transaction *tran)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005129{
Hanna Reitz562bda82021-11-15 15:54:02 +01005130 BdrvChild **childp;
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005131 BdrvRemoveFilterOrCowChild *s;
Vladimir Sementsov-Ogievskiy5b995012021-06-10 15:05:29 +03005132
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005133 if (!child) {
5134 return;
5135 }
5136
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005137 /*
5138 * Keep a reference to @bs so @childp will stay valid throughout the
5139 * transaction (required by bdrv_replace_child_tran())
5140 */
5141 bdrv_ref(bs);
Hanna Reitz562bda82021-11-15 15:54:02 +01005142 if (child == bs->backing) {
5143 childp = &bs->backing;
5144 } else if (child == bs->file) {
5145 childp = &bs->file;
5146 } else {
5147 g_assert_not_reached();
5148 }
5149
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005150 if (child->bs) {
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01005151 /*
5152 * Pass free_empty_child=false, we will free the child in
5153 * bdrv_remove_filter_or_cow_child_commit()
5154 */
5155 bdrv_replace_child_tran(childp, NULL, tran, false);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005156 }
5157
5158 s = g_new(BdrvRemoveFilterOrCowChild, 1);
5159 *s = (BdrvRemoveFilterOrCowChild) {
5160 .child = child,
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005161 .bs = bs,
Hanna Reitz562bda82021-11-15 15:54:02 +01005162 .is_backing = (childp == &bs->backing),
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005163 };
5164 tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005165}
5166
Vladimir Sementsov-Ogievskiy5b995012021-06-10 15:05:29 +03005167/*
5168 * A function to remove backing-chain child of @bs if exists: cow child for
5169 * format nodes (always .backing) and filter child for filters (may be .file or
5170 * .backing)
5171 */
5172static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
5173 Transaction *tran)
5174{
5175 bdrv_remove_file_or_backing_child(bs, bdrv_filter_or_cow_child(bs), tran);
5176}
5177
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005178static int bdrv_replace_node_noperm(BlockDriverState *from,
5179 BlockDriverState *to,
5180 bool auto_skip, Transaction *tran,
5181 Error **errp)
5182{
5183 BdrvChild *c, *next;
5184
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005185 assert(to != NULL);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005186 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005187
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005188 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5189 assert(c->bs == from);
5190 if (!should_update_child(c, to)) {
5191 if (auto_skip) {
5192 continue;
5193 }
5194 error_setg(errp, "Should not change '%s' link to '%s'",
5195 c->name, from->node_name);
5196 return -EINVAL;
5197 }
5198 if (c->frozen) {
5199 error_setg(errp, "Cannot change '%s' link to '%s'",
5200 c->name, from->node_name);
5201 return -EPERM;
5202 }
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005203
5204 /*
5205 * Passing a pointer to the local variable @c is fine here, because
5206 * @to is not NULL, and so &c will not be attached to the transaction.
5207 */
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01005208 bdrv_replace_child_tran(&c, to, tran, true);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005209 }
5210
5211 return 0;
5212}
5213
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005214/*
5215 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5216 * if it creates a parent-child relation loop or if parent is block-job.
5217 *
5218 * With auto_skip=false the error is returned if from has a parent which should
5219 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005220 *
5221 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5222 * case backing link of the cow-parent of @to is removed.
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005223 *
5224 * @to must not be NULL.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005225 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005226static int bdrv_replace_node_common(BlockDriverState *from,
5227 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005228 bool auto_skip, bool detach_subchain,
5229 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005230{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005231 Transaction *tran = tran_new();
5232 g_autoptr(GHashTable) found = NULL;
5233 g_autoptr(GSList) refresh_list = NULL;
Miroslav Rezanina2d369d62021-05-05 03:59:03 -04005234 BlockDriverState *to_cow_parent = NULL;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005235 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005236
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005237 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005238 assert(to != NULL);
5239
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005240 if (detach_subchain) {
5241 assert(bdrv_chain_contains(from, to));
5242 assert(from != to);
5243 for (to_cow_parent = from;
5244 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5245 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5246 {
5247 ;
5248 }
5249 }
5250
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005251 /* Make sure that @from doesn't go away until we have successfully attached
5252 * all of its parents to @to. */
5253 bdrv_ref(from);
5254
Kevin Wolff871abd2019-05-21 19:00:25 +02005255 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01005256 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02005257 bdrv_drained_begin(from);
5258
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005259 /*
5260 * Do the replacement without permission update.
5261 * Replacement may influence the permissions, we should calculate new
5262 * permissions based on new graph. If we fail, we'll roll-back the
5263 * replacement.
5264 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005265 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5266 if (ret < 0) {
5267 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005268 }
5269
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005270 if (detach_subchain) {
5271 bdrv_remove_filter_or_cow_child(to_cow_parent, tran);
5272 }
5273
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005274 found = g_hash_table_new(NULL, NULL);
5275
5276 refresh_list = bdrv_topological_dfs(refresh_list, found, to);
5277 refresh_list = bdrv_topological_dfs(refresh_list, found, from);
5278
5279 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005280 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005281 goto out;
5282 }
5283
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005284 ret = 0;
5285
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005286out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005287 tran_finalize(tran, ret);
5288
Kevin Wolff871abd2019-05-21 19:00:25 +02005289 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005290 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005291
5292 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005293}
5294
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005295/**
5296 * Replace node @from by @to (where neither may be NULL).
5297 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005298int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5299 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005300{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005301 GLOBAL_STATE_CODE();
5302
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005303 return bdrv_replace_node_common(from, to, true, false, errp);
5304}
5305
5306int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5307{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005308 GLOBAL_STATE_CODE();
5309
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005310 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5311 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005312}
5313
Jeff Cody8802d1f2012-02-28 15:54:06 -05005314/*
5315 * Add new bs contents at the top of an image chain while the chain is
5316 * live, while keeping required fields on the top layer.
5317 *
5318 * This will modify the BlockDriverState fields, and swap contents
5319 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5320 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005321 * bs_new must not be attached to a BlockBackend and must not have backing
5322 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005323 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005324 * This function does not create any image files.
5325 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005326int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5327 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005328{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005329 int ret;
5330 Transaction *tran = tran_new();
5331
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005332 GLOBAL_STATE_CODE();
5333
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005334 assert(!bs_new->backing);
5335
5336 ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5337 &child_of_bds, bdrv_backing_role(bs_new),
5338 &bs_new->backing, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005339 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005340 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005341 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005342
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005343 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005344 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005345 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005346 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005347
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005348 ret = bdrv_refresh_perms(bs_new, errp);
5349out:
5350 tran_finalize(tran, ret);
5351
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005352 bdrv_refresh_limits(bs_top, NULL, NULL);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005353
5354 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005355}
5356
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005357/* Not for empty child */
5358int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5359 Error **errp)
5360{
5361 int ret;
5362 Transaction *tran = tran_new();
5363 g_autoptr(GHashTable) found = NULL;
5364 g_autoptr(GSList) refresh_list = NULL;
5365 BlockDriverState *old_bs = child->bs;
5366
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005367 GLOBAL_STATE_CODE();
5368
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005369 bdrv_ref(old_bs);
5370 bdrv_drained_begin(old_bs);
5371 bdrv_drained_begin(new_bs);
5372
Hanna Reitzb0a9f6f2021-11-15 15:54:05 +01005373 bdrv_replace_child_tran(&child, new_bs, tran, true);
5374 /* @new_bs must have been non-NULL, so @child must not have been freed */
5375 assert(child != NULL);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005376
5377 found = g_hash_table_new(NULL, NULL);
5378 refresh_list = bdrv_topological_dfs(refresh_list, found, old_bs);
5379 refresh_list = bdrv_topological_dfs(refresh_list, found, new_bs);
5380
5381 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5382
5383 tran_finalize(tran, ret);
5384
5385 bdrv_drained_end(old_bs);
5386 bdrv_drained_end(new_bs);
5387 bdrv_unref(old_bs);
5388
5389 return ret;
5390}
5391
Fam Zheng4f6fd342013-08-23 09:14:47 +08005392static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005393{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005394 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005395 assert(!bs->refcnt);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005396 GLOBAL_STATE_CODE();
Markus Armbruster18846de2010-06-29 16:58:30 +02005397
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005398 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005399 if (bs->node_name[0] != '\0') {
5400 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5401 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005402 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5403
Anton Kuchin30c321f2019-05-07 11:12:56 +03005404 bdrv_close(bs);
5405
Anthony Liguori7267c092011-08-20 22:09:37 -05005406 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005407}
5408
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005409
5410/*
5411 * Replace @bs by newly created block node.
5412 *
5413 * @options is a QDict of options to pass to the block drivers, or NULL for an
5414 * empty set of options. The reference to the QDict belongs to the block layer
5415 * after the call (even on failure), so if the caller intends to reuse the
5416 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5417 */
5418BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005419 int flags, Error **errp)
5420{
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005421 ERRP_GUARD();
5422 int ret;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005423 BlockDriverState *new_node_bs = NULL;
5424 const char *drvname, *node_name;
5425 BlockDriver *drv;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005426
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005427 drvname = qdict_get_try_str(options, "driver");
5428 if (!drvname) {
5429 error_setg(errp, "driver is not specified");
5430 goto fail;
5431 }
5432
5433 drv = bdrv_find_format(drvname);
5434 if (!drv) {
5435 error_setg(errp, "Unknown driver: '%s'", drvname);
5436 goto fail;
5437 }
5438
5439 node_name = qdict_get_try_str(options, "node-name");
5440
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005441 GLOBAL_STATE_CODE();
5442
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005443 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5444 errp);
5445 options = NULL; /* bdrv_new_open_driver() eats options */
5446 if (!new_node_bs) {
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005447 error_prepend(errp, "Could not create node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005448 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005449 }
5450
5451 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005452 ret = bdrv_replace_node(bs, new_node_bs, errp);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005453 bdrv_drained_end(bs);
5454
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005455 if (ret < 0) {
5456 error_prepend(errp, "Could not replace node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005457 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005458 }
5459
5460 return new_node_bs;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005461
5462fail:
5463 qobject_unref(options);
5464 bdrv_unref(new_node_bs);
5465 return NULL;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005466}
5467
aliguorie97fc192009-04-21 23:11:50 +00005468/*
5469 * Run consistency checks on an image
5470 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005471 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005472 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005473 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005474 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005475int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5476 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005477{
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05005478 IO_CODE();
Max Reitz908bcd52014-08-07 22:47:55 +02005479 if (bs->drv == NULL) {
5480 return -ENOMEDIUM;
5481 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005482 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005483 return -ENOTSUP;
5484 }
5485
Kevin Wolfe076f332010-06-29 11:43:13 +02005486 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005487 return bs->drv->bdrv_co_check(bs, res, fix);
5488}
5489
Kevin Wolf756e6732010-01-12 12:55:17 +01005490/*
5491 * Return values:
5492 * 0 - success
5493 * -EINVAL - backing format specified, but no file
5494 * -ENOSPC - can't update the backing file because no space is left in the
5495 * image file header
5496 * -ENOTSUP - format driver doesn't support changing the backing file
5497 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005498int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
Eric Blake497a30d2021-05-03 14:36:00 -07005499 const char *backing_fmt, bool require)
Kevin Wolf756e6732010-01-12 12:55:17 +01005500{
5501 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005502 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005503
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005504 GLOBAL_STATE_CODE();
5505
Max Reitzd470ad42017-11-10 21:31:09 +01005506 if (!drv) {
5507 return -ENOMEDIUM;
5508 }
5509
Paolo Bonzini5f377792012-04-12 14:01:01 +02005510 /* Backing file format doesn't make sense without a backing file */
5511 if (backing_fmt && !backing_file) {
5512 return -EINVAL;
5513 }
5514
Eric Blake497a30d2021-05-03 14:36:00 -07005515 if (require && backing_file && !backing_fmt) {
5516 return -EINVAL;
Eric Blakee54ee1b2020-07-06 15:39:53 -05005517 }
5518
Kevin Wolf756e6732010-01-12 12:55:17 +01005519 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005520 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005521 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005522 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005523 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005524
5525 if (ret == 0) {
5526 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5527 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005528 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5529 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005530 }
5531 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005532}
5533
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005534/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005535 * Finds the first non-filter node above bs in the chain between
5536 * active and bs. The returned node is either an immediate parent of
5537 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005538 *
5539 * Returns NULL if bs is not found in active's image chain,
5540 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005541 *
5542 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005543 */
5544BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5545 BlockDriverState *bs)
5546{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005547
5548 GLOBAL_STATE_CODE();
5549
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005550 bs = bdrv_skip_filters(bs);
5551 active = bdrv_skip_filters(active);
5552
5553 while (active) {
5554 BlockDriverState *next = bdrv_backing_chain_next(active);
5555 if (bs == next) {
5556 return active;
5557 }
5558 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005559 }
5560
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005561 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005562}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005563
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005564/* Given a BDS, searches for the base layer. */
5565BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5566{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005567 GLOBAL_STATE_CODE();
5568
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005569 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005570}
5571
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005572/*
Max Reitz7b99a262019-06-12 16:07:11 +02005573 * Return true if at least one of the COW (backing) and filter links
5574 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005575 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005576 */
5577bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5578 Error **errp)
5579{
5580 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005581 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005582
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005583 GLOBAL_STATE_CODE();
5584
Max Reitz7b99a262019-06-12 16:07:11 +02005585 for (i = bs; i != base; i = child_bs(child)) {
5586 child = bdrv_filter_or_cow_child(i);
5587
5588 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005589 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005590 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005591 return true;
5592 }
5593 }
5594
5595 return false;
5596}
5597
5598/*
Max Reitz7b99a262019-06-12 16:07:11 +02005599 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005600 * If any of the links is already frozen the operation is aborted and
5601 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005602 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005603 * Returns 0 on success. On failure returns < 0 and sets @errp.
5604 */
5605int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5606 Error **errp)
5607{
5608 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005609 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005610
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005611 GLOBAL_STATE_CODE();
5612
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005613 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5614 return -EPERM;
5615 }
5616
Max Reitz7b99a262019-06-12 16:07:11 +02005617 for (i = bs; i != base; i = child_bs(child)) {
5618 child = bdrv_filter_or_cow_child(i);
5619 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005620 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005621 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005622 return -EPERM;
5623 }
5624 }
5625
Max Reitz7b99a262019-06-12 16:07:11 +02005626 for (i = bs; i != base; i = child_bs(child)) {
5627 child = bdrv_filter_or_cow_child(i);
5628 if (child) {
5629 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005630 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005631 }
5632
5633 return 0;
5634}
5635
5636/*
Max Reitz7b99a262019-06-12 16:07:11 +02005637 * Unfreeze all COW (backing) and filter links between @bs and @base.
5638 * The caller must ensure that all links are frozen before using this
5639 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005640 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005641 */
5642void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5643{
5644 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005645 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005646
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005647 GLOBAL_STATE_CODE();
5648
Max Reitz7b99a262019-06-12 16:07:11 +02005649 for (i = bs; i != base; i = child_bs(child)) {
5650 child = bdrv_filter_or_cow_child(i);
5651 if (child) {
5652 assert(child->frozen);
5653 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005654 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005655 }
5656}
5657
5658/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005659 * Drops images above 'base' up to and including 'top', and sets the image
5660 * above 'top' to have base as its backing file.
5661 *
5662 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5663 * information in 'bs' can be properly updated.
5664 *
5665 * E.g., this will convert the following chain:
5666 * bottom <- base <- intermediate <- top <- active
5667 *
5668 * to
5669 *
5670 * bottom <- base <- active
5671 *
5672 * It is allowed for bottom==base, in which case it converts:
5673 *
5674 * base <- intermediate <- top <- active
5675 *
5676 * to
5677 *
5678 * base <- active
5679 *
Jeff Cody54e26902014-06-25 15:40:10 -04005680 * If backing_file_str is non-NULL, it will be used when modifying top's
5681 * overlay image metadata.
5682 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005683 * Error conditions:
5684 * if active == top, that is considered an error
5685 *
5686 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005687int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5688 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005689{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005690 BlockDriverState *explicit_top = top;
5691 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005692 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005693 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005694 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005695 g_autoptr(GSList) updated_children = NULL;
5696 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005697
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005698 GLOBAL_STATE_CODE();
5699
Kevin Wolf6858eba2017-06-29 19:32:21 +02005700 bdrv_ref(top);
Max Reitz637d54a2019-07-22 15:33:43 +02005701 bdrv_subtree_drained_begin(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005702
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005703 if (!top->drv || !base->drv) {
5704 goto exit;
5705 }
5706
Kevin Wolf5db15a52015-09-14 15:33:33 +02005707 /* Make sure that base is in the backing chain of top */
5708 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005709 goto exit;
5710 }
5711
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005712 /* If 'base' recursively inherits from 'top' then we should set
5713 * base->inherits_from to top->inherits_from after 'top' and all
5714 * other intermediate nodes have been dropped.
5715 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5716 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005717 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005718 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5719
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005720 /* success - we can delete the intermediate states, and link top->base */
Max Reitzf30c66b2019-02-01 20:29:05 +01005721 if (!backing_file_str) {
5722 bdrv_refresh_filename(base);
5723 backing_file_str = base->filename;
5724 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005725
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005726 QLIST_FOREACH(c, &top->parents, next_parent) {
5727 updated_children = g_slist_prepend(updated_children, c);
5728 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005729
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005730 /*
5731 * It seems correct to pass detach_subchain=true here, but it triggers
5732 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5733 * another drained section, which modify the graph (for example, removing
5734 * the child, which we keep in updated_children list). So, it's a TODO.
5735 *
5736 * Note, bug triggered if pass detach_subchain=true here and run
5737 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5738 * That's a FIXME.
5739 */
5740 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005741 if (local_err) {
5742 error_report_err(local_err);
5743 goto exit;
5744 }
5745
5746 for (p = updated_children; p; p = p->next) {
5747 c = p->data;
5748
Max Reitzbd86fb92020-05-13 13:05:13 +02005749 if (c->klass->update_filename) {
5750 ret = c->klass->update_filename(c, base, backing_file_str,
5751 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005752 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005753 /*
5754 * TODO: Actually, we want to rollback all previous iterations
5755 * of this loop, and (which is almost impossible) previous
5756 * bdrv_replace_node()...
5757 *
5758 * Note, that c->klass->update_filename may lead to permission
5759 * update, so it's a bad idea to call it inside permission
5760 * update transaction of bdrv_replace_node.
5761 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005762 error_report_err(local_err);
5763 goto exit;
5764 }
5765 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005766 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005767
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005768 if (update_inherits_from) {
5769 base->inherits_from = explicit_top->inherits_from;
5770 }
5771
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005772 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005773exit:
Max Reitz637d54a2019-07-22 15:33:43 +02005774 bdrv_subtree_drained_end(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005775 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005776 return ret;
5777}
5778
bellard83f64092006-08-01 16:21:11 +00005779/**
Max Reitz081e4652019-06-12 18:14:13 +02005780 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5781 * sums the size of all data-bearing children. (This excludes backing
5782 * children.)
5783 */
5784static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5785{
5786 BdrvChild *child;
5787 int64_t child_size, sum = 0;
5788
5789 QLIST_FOREACH(child, &bs->children, next) {
5790 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5791 BDRV_CHILD_FILTERED))
5792 {
5793 child_size = bdrv_get_allocated_file_size(child->bs);
5794 if (child_size < 0) {
5795 return child_size;
5796 }
5797 sum += child_size;
5798 }
5799 }
5800
5801 return sum;
5802}
5803
5804/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005805 * Length of a allocated file in bytes. Sparse files are counted by actual
5806 * allocated space. Return < 0 if error or unknown.
5807 */
5808int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5809{
5810 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005811 IO_CODE();
5812
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005813 if (!drv) {
5814 return -ENOMEDIUM;
5815 }
5816 if (drv->bdrv_get_allocated_file_size) {
5817 return drv->bdrv_get_allocated_file_size(bs);
5818 }
Max Reitz081e4652019-06-12 18:14:13 +02005819
5820 if (drv->bdrv_file_open) {
5821 /*
5822 * Protocol drivers default to -ENOTSUP (most of their data is
5823 * not stored in any of their children (if they even have any),
5824 * so there is no generic way to figure it out).
5825 */
5826 return -ENOTSUP;
5827 } else if (drv->is_filter) {
5828 /* Filter drivers default to the size of their filtered child */
5829 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5830 } else {
5831 /* Other drivers default to summing their children's sizes */
5832 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005833 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005834}
5835
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005836/*
5837 * bdrv_measure:
5838 * @drv: Format driver
5839 * @opts: Creation options for new image
5840 * @in_bs: Existing image containing data for new image (may be NULL)
5841 * @errp: Error object
5842 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5843 * or NULL on error
5844 *
5845 * Calculate file size required to create a new image.
5846 *
5847 * If @in_bs is given then space for allocated clusters and zero clusters
5848 * from that image are included in the calculation. If @opts contains a
5849 * backing file that is shared by @in_bs then backing clusters may be omitted
5850 * from the calculation.
5851 *
5852 * If @in_bs is NULL then the calculation includes no allocated clusters
5853 * unless a preallocation option is given in @opts.
5854 *
5855 * Note that @in_bs may use a different BlockDriver from @drv.
5856 *
5857 * If an error occurs the @errp pointer is set.
5858 */
5859BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5860 BlockDriverState *in_bs, Error **errp)
5861{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005862 IO_CODE();
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005863 if (!drv->bdrv_measure) {
5864 error_setg(errp, "Block driver '%s' does not support size measurement",
5865 drv->format_name);
5866 return NULL;
5867 }
5868
5869 return drv->bdrv_measure(opts, in_bs, errp);
5870}
5871
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005872/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005873 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005874 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005875int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005876{
5877 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005878 IO_CODE();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005879
bellard83f64092006-08-01 16:21:11 +00005880 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005881 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005882
Kevin Wolfb94a2612013-10-29 12:18:58 +01005883 if (drv->has_variable_length) {
5884 int ret = refresh_total_sectors(bs, bs->total_sectors);
5885 if (ret < 0) {
5886 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005887 }
bellard83f64092006-08-01 16:21:11 +00005888 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005889 return bs->total_sectors;
5890}
5891
5892/**
5893 * Return length in bytes on success, -errno on error.
5894 * The length is always a multiple of BDRV_SECTOR_SIZE.
5895 */
5896int64_t bdrv_getlength(BlockDriverState *bs)
5897{
5898 int64_t ret = bdrv_nb_sectors(bs);
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005899 IO_CODE();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005900
Eric Blake122860b2020-11-05 09:51:22 -06005901 if (ret < 0) {
5902 return ret;
5903 }
5904 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5905 return -EFBIG;
5906 }
5907 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005908}
5909
bellard19cb3732006-08-19 11:45:59 +00005910/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005911void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005912{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005913 int64_t nb_sectors = bdrv_nb_sectors(bs);
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005914 IO_CODE();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005915
5916 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005917}
bellardcf989512004-02-16 21:56:36 +00005918
Eric Blake54115412016-06-23 16:37:26 -06005919bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005920{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005921 IO_CODE();
ths985a03b2007-12-24 16:10:43 +00005922 return bs->sg;
5923}
5924
Max Reitzae23f782019-06-12 22:57:15 +02005925/**
5926 * Return whether the given node supports compressed writes.
5927 */
5928bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5929{
5930 BlockDriverState *filtered;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005931 IO_CODE();
Max Reitzae23f782019-06-12 22:57:15 +02005932
5933 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5934 return false;
5935 }
5936
5937 filtered = bdrv_filter_bs(bs);
5938 if (filtered) {
5939 /*
5940 * Filters can only forward compressed writes, so we have to
5941 * check the child.
5942 */
5943 return bdrv_supports_compressed_writes(filtered);
5944 }
5945
5946 return true;
5947}
5948
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005949const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005950{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005951 IO_CODE();
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005952 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005953}
5954
Stefan Hajnocziada42402014-08-27 12:08:55 +01005955static int qsort_strcmp(const void *a, const void *b)
5956{
Max Reitzceff5bd2016-10-12 22:49:05 +02005957 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005958}
5959
ths5fafdf22007-09-16 21:08:06 +00005960void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005961 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005962{
5963 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005964 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005965 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005966 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005967
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005968 GLOBAL_STATE_CODE();
5969
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005970 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005971 if (drv->format_name) {
5972 bool found = false;
5973 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005974
5975 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5976 continue;
5977 }
5978
Jeff Codye855e4f2014-04-28 18:29:54 -04005979 while (formats && i && !found) {
5980 found = !strcmp(formats[--i], drv->format_name);
5981 }
5982
5983 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005984 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005985 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005986 }
5987 }
bellardea2384d2004-08-01 21:59:26 +00005988 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005989
Max Reitzeb0df692016-10-12 22:49:06 +02005990 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5991 const char *format_name = block_driver_modules[i].format_name;
5992
5993 if (format_name) {
5994 bool found = false;
5995 int j = count;
5996
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005997 if (use_bdrv_whitelist &&
5998 !bdrv_format_is_whitelisted(format_name, read_only)) {
5999 continue;
6000 }
6001
Max Reitzeb0df692016-10-12 22:49:06 +02006002 while (formats && j && !found) {
6003 found = !strcmp(formats[--j], format_name);
6004 }
6005
6006 if (!found) {
6007 formats = g_renew(const char *, formats, count + 1);
6008 formats[count++] = format_name;
6009 }
6010 }
6011 }
6012
Stefan Hajnocziada42402014-08-27 12:08:55 +01006013 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
6014
6015 for (i = 0; i < count; i++) {
6016 it(opaque, formats[i]);
6017 }
6018
Jeff Codye855e4f2014-04-28 18:29:54 -04006019 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00006020}
6021
Benoît Canetdc364f42014-01-23 21:31:32 +01006022/* This function is to find a node in the bs graph */
6023BlockDriverState *bdrv_find_node(const char *node_name)
6024{
6025 BlockDriverState *bs;
6026
6027 assert(node_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006028 GLOBAL_STATE_CODE();
Benoît Canetdc364f42014-01-23 21:31:32 +01006029
6030 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6031 if (!strcmp(node_name, bs->node_name)) {
6032 return bs;
6033 }
6034 }
6035 return NULL;
6036}
6037
Benoît Canetc13163f2014-01-23 21:31:34 +01006038/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01006039BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
6040 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01006041{
Eric Blake9812e712020-10-27 00:05:47 -05006042 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01006043 BlockDriverState *bs;
6044
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006045 GLOBAL_STATE_CODE();
6046
Benoît Canetc13163f2014-01-23 21:31:34 +01006047 list = NULL;
6048 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01006049 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03006050 if (!info) {
6051 qapi_free_BlockDeviceInfoList(list);
6052 return NULL;
6053 }
Eric Blake9812e712020-10-27 00:05:47 -05006054 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01006055 }
6056
6057 return list;
6058}
6059
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006060typedef struct XDbgBlockGraphConstructor {
6061 XDbgBlockGraph *graph;
6062 GHashTable *graph_nodes;
6063} XDbgBlockGraphConstructor;
6064
6065static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6066{
6067 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6068
6069 gr->graph = g_new0(XDbgBlockGraph, 1);
6070 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6071
6072 return gr;
6073}
6074
6075static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6076{
6077 XDbgBlockGraph *graph = gr->graph;
6078
6079 g_hash_table_destroy(gr->graph_nodes);
6080 g_free(gr);
6081
6082 return graph;
6083}
6084
6085static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6086{
6087 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6088
6089 if (ret != 0) {
6090 return ret;
6091 }
6092
6093 /*
6094 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6095 * answer of g_hash_table_lookup.
6096 */
6097 ret = g_hash_table_size(gr->graph_nodes) + 1;
6098 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6099
6100 return ret;
6101}
6102
6103static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6104 XDbgBlockGraphNodeType type, const char *name)
6105{
6106 XDbgBlockGraphNode *n;
6107
6108 n = g_new0(XDbgBlockGraphNode, 1);
6109
6110 n->id = xdbg_graph_node_num(gr, node);
6111 n->type = type;
6112 n->name = g_strdup(name);
6113
Eric Blake9812e712020-10-27 00:05:47 -05006114 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006115}
6116
6117static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6118 const BdrvChild *child)
6119{
Max Reitzcdb1cec2019-11-08 13:34:52 +01006120 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006121 XDbgBlockGraphEdge *edge;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05006122 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006123
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006124 edge = g_new0(XDbgBlockGraphEdge, 1);
6125
6126 edge->parent = xdbg_graph_node_num(gr, parent);
6127 edge->child = xdbg_graph_node_num(gr, child->bs);
6128 edge->name = g_strdup(child->name);
6129
Max Reitzcdb1cec2019-11-08 13:34:52 +01006130 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6131 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6132
6133 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006134 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006135 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01006136 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006137 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006138 }
6139 }
6140
Eric Blake9812e712020-10-27 00:05:47 -05006141 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006142}
6143
6144
6145XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6146{
6147 BlockBackend *blk;
6148 BlockJob *job;
6149 BlockDriverState *bs;
6150 BdrvChild *child;
6151 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6152
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006153 GLOBAL_STATE_CODE();
6154
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006155 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6156 char *allocated_name = NULL;
6157 const char *name = blk_name(blk);
6158
6159 if (!*name) {
6160 name = allocated_name = blk_get_attached_dev_id(blk);
6161 }
6162 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6163 name);
6164 g_free(allocated_name);
6165 if (blk_root(blk)) {
6166 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6167 }
6168 }
6169
6170 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
6171 GSList *el;
6172
6173 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6174 job->job.id);
6175 for (el = job->nodes; el; el = el->next) {
6176 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6177 }
6178 }
6179
6180 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6181 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6182 bs->node_name);
6183 QLIST_FOREACH(child, &bs->children, next) {
6184 xdbg_graph_add_edge(gr, bs, child);
6185 }
6186 }
6187
6188 return xdbg_graph_finalize(gr);
6189}
6190
Benoît Canet12d3ba82014-01-23 21:31:35 +01006191BlockDriverState *bdrv_lookup_bs(const char *device,
6192 const char *node_name,
6193 Error **errp)
6194{
Markus Armbruster7f06d472014-10-07 13:59:12 +02006195 BlockBackend *blk;
6196 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006197
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006198 GLOBAL_STATE_CODE();
6199
Benoît Canet12d3ba82014-01-23 21:31:35 +01006200 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02006201 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006202
Markus Armbruster7f06d472014-10-07 13:59:12 +02006203 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006204 bs = blk_bs(blk);
6205 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02006206 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02006207 }
6208
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006209 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006210 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006211 }
6212
Benoît Canetdd67fa52014-02-12 17:15:06 +01006213 if (node_name) {
6214 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006215
Benoît Canetdd67fa52014-02-12 17:15:06 +01006216 if (bs) {
6217 return bs;
6218 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006219 }
6220
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006221 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01006222 device ? device : "",
6223 node_name ? node_name : "");
6224 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006225}
6226
Jeff Cody5a6684d2014-06-25 15:40:09 -04006227/* If 'base' is in the same chain as 'top', return true. Otherwise,
6228 * return false. If either argument is NULL, return false. */
6229bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6230{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006231
6232 GLOBAL_STATE_CODE();
6233
Jeff Cody5a6684d2014-06-25 15:40:09 -04006234 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006235 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04006236 }
6237
6238 return top != NULL;
6239}
6240
Fam Zheng04df7652014-10-31 11:32:54 +08006241BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6242{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006243 GLOBAL_STATE_CODE();
Fam Zheng04df7652014-10-31 11:32:54 +08006244 if (!bs) {
6245 return QTAILQ_FIRST(&graph_bdrv_states);
6246 }
6247 return QTAILQ_NEXT(bs, node_list);
6248}
6249
Kevin Wolf0f122642018-03-28 18:29:18 +02006250BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6251{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006252 GLOBAL_STATE_CODE();
Kevin Wolf0f122642018-03-28 18:29:18 +02006253 if (!bs) {
6254 return QTAILQ_FIRST(&all_bdrv_states);
6255 }
6256 return QTAILQ_NEXT(bs, bs_list);
6257}
6258
Fam Zheng20a9e772014-10-31 11:32:55 +08006259const char *bdrv_get_node_name(const BlockDriverState *bs)
6260{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006261 IO_CODE();
Fam Zheng20a9e772014-10-31 11:32:55 +08006262 return bs->node_name;
6263}
6264
Kevin Wolf1f0c4612016-03-22 18:38:44 +01006265const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006266{
6267 BdrvChild *c;
6268 const char *name;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05006269 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006270
6271 /* If multiple parents have a name, just pick the first one. */
6272 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006273 if (c->klass->get_name) {
6274 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006275 if (name && *name) {
6276 return name;
6277 }
6278 }
6279 }
6280
6281 return NULL;
6282}
6283
Markus Armbruster7f06d472014-10-07 13:59:12 +02006284/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02006285const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006286{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006287 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006288 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00006289}
6290
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006291/* This can be used to identify nodes that might not have a device
6292 * name associated. Since node and device names live in the same
6293 * namespace, the result is unambiguous. The exception is if both are
6294 * absent, then this returns an empty (non-null) string. */
6295const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6296{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006297 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006298 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006299}
6300
Markus Armbrusterc8433282012-06-05 16:49:24 +02006301int bdrv_get_flags(BlockDriverState *bs)
6302{
Hanna Reitz15aee7a2022-04-27 13:40:54 +02006303 IO_CODE();
Markus Armbrusterc8433282012-06-05 16:49:24 +02006304 return bs->open_flags;
6305}
6306
Peter Lieven3ac21622013-06-28 12:47:42 +02006307int bdrv_has_zero_init_1(BlockDriverState *bs)
6308{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006309 GLOBAL_STATE_CODE();
Peter Lieven3ac21622013-06-28 12:47:42 +02006310 return 1;
6311}
6312
Kevin Wolff2feebb2010-04-14 17:30:35 +02006313int bdrv_has_zero_init(BlockDriverState *bs)
6314{
Max Reitz93393e62019-06-12 17:03:38 +02006315 BlockDriverState *filtered;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006316 GLOBAL_STATE_CODE();
Max Reitz93393e62019-06-12 17:03:38 +02006317
Max Reitzd470ad42017-11-10 21:31:09 +01006318 if (!bs->drv) {
6319 return 0;
6320 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006321
Paolo Bonzini11212d82013-09-04 19:00:27 +02006322 /* If BS is a copy on write image, it is initialized to
6323 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02006324 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02006325 return 0;
6326 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006327 if (bs->drv->bdrv_has_zero_init) {
6328 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006329 }
Max Reitz93393e62019-06-12 17:03:38 +02006330
6331 filtered = bdrv_filter_bs(bs);
6332 if (filtered) {
6333 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006334 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006335
Peter Lieven3ac21622013-06-28 12:47:42 +02006336 /* safe default */
6337 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006338}
6339
Peter Lieven4ce78692013-10-24 12:06:54 +02006340bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6341{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006342 IO_CODE();
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006343 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006344 return false;
6345 }
6346
Eric Blakee24d8132018-01-26 13:34:39 -06006347 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006348}
6349
ths5fafdf22007-09-16 21:08:06 +00006350void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006351 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006352{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006353 IO_CODE();
Kevin Wolf3574c602011-10-26 11:02:11 +02006354 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006355}
6356
bellardfaea38e2006-08-05 21:31:00 +00006357int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6358{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006359 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006360 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006361 IO_CODE();
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006362 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6363 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006364 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006365 }
6366 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006367 BlockDriverState *filtered = bdrv_filter_bs(bs);
6368 if (filtered) {
6369 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006370 }
bellardfaea38e2006-08-05 21:31:00 +00006371 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006372 }
bellardfaea38e2006-08-05 21:31:00 +00006373 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006374 ret = drv->bdrv_get_info(bs, bdi);
6375 if (ret < 0) {
6376 return ret;
6377 }
6378
6379 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6380 return -EINVAL;
6381 }
6382
6383 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006384}
6385
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006386ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6387 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006388{
6389 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006390 IO_CODE();
Max Reitzeae041f2013-10-09 10:46:16 +02006391 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006392 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006393 }
6394 return NULL;
6395}
6396
Anton Nefedovd9245592019-09-23 15:17:37 +03006397BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6398{
6399 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006400 IO_CODE();
Anton Nefedovd9245592019-09-23 15:17:37 +03006401 if (!drv || !drv->bdrv_get_specific_stats) {
6402 return NULL;
6403 }
6404 return drv->bdrv_get_specific_stats(bs);
6405}
6406
Eric Blakea31939e2015-11-18 01:52:54 -07006407void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006408{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006409 IO_CODE();
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006410 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006411 return;
6412 }
6413
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006414 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006415}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006416
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006417static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006418{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006419 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006420 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006421 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006422 }
6423
6424 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006425 assert(bs->drv->bdrv_debug_remove_breakpoint);
6426 return bs;
6427 }
6428
6429 return NULL;
6430}
6431
6432int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6433 const char *tag)
6434{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006435 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006436 bs = bdrv_find_debug_node(bs);
6437 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006438 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6439 }
6440
6441 return -ENOTSUP;
6442}
6443
Fam Zheng4cc70e92013-11-20 10:01:54 +08006444int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6445{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006446 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006447 bs = bdrv_find_debug_node(bs);
6448 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006449 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6450 }
6451
6452 return -ENOTSUP;
6453}
6454
Kevin Wolf41c695c2012-12-06 14:32:58 +01006455int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6456{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006457 GLOBAL_STATE_CODE();
Max Reitz938789e2014-03-10 23:44:08 +01006458 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006459 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006460 }
6461
6462 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6463 return bs->drv->bdrv_debug_resume(bs, tag);
6464 }
6465
6466 return -ENOTSUP;
6467}
6468
6469bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6470{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006471 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006472 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006473 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006474 }
6475
6476 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6477 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6478 }
6479
6480 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006481}
6482
Jeff Codyb1b1d782012-10-16 15:49:09 -04006483/* backing_file can either be relative, or absolute, or a protocol. If it is
6484 * relative, it must be relative to the chain. So, passing in bs->filename
6485 * from a BDS as backing_file should not be done, as that may be relative to
6486 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006487BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6488 const char *backing_file)
6489{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006490 char *filename_full = NULL;
6491 char *backing_file_full = NULL;
6492 char *filename_tmp = NULL;
6493 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006494 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006495 BlockDriverState *curr_bs = NULL;
6496 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006497 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006498
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006499 GLOBAL_STATE_CODE();
6500
Jeff Codyb1b1d782012-10-16 15:49:09 -04006501 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006502 return NULL;
6503 }
6504
Jeff Codyb1b1d782012-10-16 15:49:09 -04006505 filename_full = g_malloc(PATH_MAX);
6506 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006507
6508 is_protocol = path_has_protocol(backing_file);
6509
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006510 /*
6511 * Being largely a legacy function, skip any filters here
6512 * (because filters do not have normal filenames, so they cannot
6513 * match anyway; and allowing json:{} filenames is a bit out of
6514 * scope).
6515 */
6516 for (curr_bs = bdrv_skip_filters(bs);
6517 bdrv_cow_child(curr_bs) != NULL;
6518 curr_bs = bs_below)
6519 {
6520 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006521
Max Reitz0b877d02018-08-01 20:34:11 +02006522 if (bdrv_backing_overridden(curr_bs)) {
6523 /*
6524 * If the backing file was overridden, we can only compare
6525 * directly against the backing node's filename.
6526 */
6527
6528 if (!filenames_refreshed) {
6529 /*
6530 * This will automatically refresh all of the
6531 * filenames in the rest of the backing chain, so we
6532 * only need to do this once.
6533 */
6534 bdrv_refresh_filename(bs_below);
6535 filenames_refreshed = true;
6536 }
6537
6538 if (strcmp(backing_file, bs_below->filename) == 0) {
6539 retval = bs_below;
6540 break;
6541 }
6542 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6543 /*
6544 * If either of the filename paths is actually a protocol, then
6545 * compare unmodified paths; otherwise make paths relative.
6546 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006547 char *backing_file_full_ret;
6548
Jeff Codyb1b1d782012-10-16 15:49:09 -04006549 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006550 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006551 break;
6552 }
Jeff Cody418661e2017-01-25 20:08:20 -05006553 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006554 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6555 NULL);
6556 if (backing_file_full_ret) {
6557 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6558 g_free(backing_file_full_ret);
6559 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006560 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006561 break;
6562 }
Jeff Cody418661e2017-01-25 20:08:20 -05006563 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006564 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006565 /* If not an absolute filename path, make it relative to the current
6566 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006567 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6568 NULL);
6569 /* We are going to compare canonicalized absolute pathnames */
6570 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6571 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006572 continue;
6573 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006574 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006575
6576 /* We need to make sure the backing filename we are comparing against
6577 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006578 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6579 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6580 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006581 continue;
6582 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006583 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006584
6585 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006586 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006587 break;
6588 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006589 }
6590 }
6591
Jeff Codyb1b1d782012-10-16 15:49:09 -04006592 g_free(filename_full);
6593 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006594 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006595}
6596
bellardea2384d2004-08-01 21:59:26 +00006597void bdrv_init(void)
6598{
Kevin Wolfe5f05f82021-07-09 18:41:41 +02006599#ifdef CONFIG_BDRV_WHITELIST_TOOLS
6600 use_bdrv_whitelist = 1;
6601#endif
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006602 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006603}
pbrookce1a14d2006-08-07 02:38:06 +00006604
Markus Armbrustereb852012009-10-27 18:41:44 +01006605void bdrv_init_with_whitelist(void)
6606{
6607 use_bdrv_whitelist = 1;
6608 bdrv_init();
6609}
6610
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006611int bdrv_activate(BlockDriverState *bs, Error **errp)
6612{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006613 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006614 Error *local_err = NULL;
6615 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006616 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006617
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006618 GLOBAL_STATE_CODE();
6619
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006620 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006621 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006622 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006623
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006624 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006625 bdrv_activate(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006626 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006627 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006628 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006629 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006630 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006631
Kevin Wolfdafe0962017-11-16 13:00:01 +01006632 /*
6633 * Update permissions, they may differ for inactive nodes.
6634 *
6635 * Note that the required permissions of inactive images are always a
6636 * subset of the permissions required after activating the image. This
6637 * allows us to just get the permissions upfront without restricting
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006638 * bdrv_co_invalidate_cache().
Kevin Wolfdafe0962017-11-16 13:00:01 +01006639 *
6640 * It also means that in error cases, we don't have to try and revert to
6641 * the old permissions (which is an operation that could fail, too). We can
6642 * just keep the extended permissions for the next time that an activation
6643 * of the image is tried.
6644 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006645 if (bs->open_flags & BDRV_O_INACTIVE) {
6646 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006647 ret = bdrv_refresh_perms(bs, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006648 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006649 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006650 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006651 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006652
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006653 ret = bdrv_invalidate_cache(bs, errp);
6654 if (ret < 0) {
6655 bs->open_flags |= BDRV_O_INACTIVE;
6656 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006657 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006658
Kevin Wolf7bb49412019-12-17 15:06:38 +01006659 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6660 bdrv_dirty_bitmap_skip_store(bm, false);
6661 }
6662
6663 ret = refresh_total_sectors(bs, bs->total_sectors);
6664 if (ret < 0) {
6665 bs->open_flags |= BDRV_O_INACTIVE;
6666 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006667 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006668 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006669 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006670
6671 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006672 if (parent->klass->activate) {
6673 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006674 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006675 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006676 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006677 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006678 }
6679 }
6680 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006681
6682 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006683}
6684
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006685int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6686{
6687 Error *local_err = NULL;
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05006688 IO_CODE();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006689
6690 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6691
6692 if (bs->drv->bdrv_co_invalidate_cache) {
6693 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6694 if (local_err) {
6695 error_propagate(errp, local_err);
6696 return -EINVAL;
6697 }
6698 }
6699
6700 return 0;
6701}
6702
Emanuele Giuseppe Esposito3b717192022-02-09 05:54:51 -05006703void bdrv_activate_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006704{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006705 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006706 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006707
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006708 GLOBAL_STATE_CODE();
6709
Kevin Wolf88be7b42016-05-20 18:49:07 +02006710 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006711 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006712 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006713
6714 aio_context_acquire(aio_context);
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006715 ret = bdrv_activate(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006716 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006717 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006718 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006719 return;
6720 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006721 }
6722}
6723
Kevin Wolf9e372712018-11-23 15:11:14 +01006724static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6725{
6726 BdrvChild *parent;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006727 GLOBAL_STATE_CODE();
Kevin Wolf9e372712018-11-23 15:11:14 +01006728
6729 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006730 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006731 BlockDriverState *parent_bs = parent->opaque;
6732 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6733 return true;
6734 }
6735 }
6736 }
6737
6738 return false;
6739}
6740
6741static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006742{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006743 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006744 int ret;
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006745 uint64_t cumulative_perms, cumulative_shared_perms;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006746
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05006747 GLOBAL_STATE_CODE();
6748
Max Reitzd470ad42017-11-10 21:31:09 +01006749 if (!bs->drv) {
6750 return -ENOMEDIUM;
6751 }
6752
Kevin Wolf9e372712018-11-23 15:11:14 +01006753 /* Make sure that we don't inactivate a child before its parent.
6754 * It will be covered by recursion from the yet active parent. */
6755 if (bdrv_has_bds_parent(bs, true)) {
6756 return 0;
6757 }
6758
6759 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6760
6761 /* Inactivate this node */
6762 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006763 ret = bs->drv->bdrv_inactivate(bs);
6764 if (ret < 0) {
6765 return ret;
6766 }
6767 }
6768
Kevin Wolf9e372712018-11-23 15:11:14 +01006769 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006770 if (parent->klass->inactivate) {
6771 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01006772 if (ret < 0) {
6773 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006774 }
6775 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006776 }
Kevin Wolf38701b62017-05-04 18:52:39 +02006777
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006778 bdrv_get_cumulative_perm(bs, &cumulative_perms,
6779 &cumulative_shared_perms);
6780 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
6781 /* Our inactive parents still need write access. Inactivation failed. */
6782 return -EPERM;
6783 }
6784
Kevin Wolf9e372712018-11-23 15:11:14 +01006785 bs->open_flags |= BDRV_O_INACTIVE;
6786
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03006787 /*
6788 * Update permissions, they may differ for inactive nodes.
6789 * We only tried to loosen restrictions, so errors are not fatal, ignore
6790 * them.
6791 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006792 bdrv_refresh_perms(bs, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01006793
6794 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02006795 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006796 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02006797 if (ret < 0) {
6798 return ret;
6799 }
6800 }
6801
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006802 return 0;
6803}
6804
6805int bdrv_inactivate_all(void)
6806{
Max Reitz79720af2016-03-16 19:54:44 +01006807 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006808 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006809 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006810 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006811
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006812 GLOBAL_STATE_CODE();
6813
Kevin Wolf88be7b42016-05-20 18:49:07 +02006814 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006815 AioContext *aio_context = bdrv_get_aio_context(bs);
6816
6817 if (!g_slist_find(aio_ctxs, aio_context)) {
6818 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6819 aio_context_acquire(aio_context);
6820 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006821 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006822
Kevin Wolf9e372712018-11-23 15:11:14 +01006823 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6824 /* Nodes with BDS parents are covered by recursion from the last
6825 * parent that gets inactivated. Don't inactivate them a second
6826 * time if that has already happened. */
6827 if (bdrv_has_bds_parent(bs, false)) {
6828 continue;
6829 }
6830 ret = bdrv_inactivate_recurse(bs);
6831 if (ret < 0) {
6832 bdrv_next_cleanup(&it);
6833 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006834 }
6835 }
6836
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006837out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006838 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6839 AioContext *aio_context = ctx->data;
6840 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006841 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006842 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006843
6844 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006845}
6846
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006847/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006848/* removable device support */
6849
6850/**
6851 * Return TRUE if the media is present
6852 */
Max Reitze031f752015-10-19 17:53:11 +02006853bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006854{
6855 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006856 BdrvChild *child;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006857 IO_CODE();
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006858
Max Reitze031f752015-10-19 17:53:11 +02006859 if (!drv) {
6860 return false;
6861 }
Max Reitz28d7a782015-10-19 17:53:13 +02006862 if (drv->bdrv_is_inserted) {
6863 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006864 }
Max Reitz28d7a782015-10-19 17:53:13 +02006865 QLIST_FOREACH(child, &bs->children, next) {
6866 if (!bdrv_is_inserted(child->bs)) {
6867 return false;
6868 }
6869 }
6870 return true;
bellard19cb3732006-08-19 11:45:59 +00006871}
6872
6873/**
bellard19cb3732006-08-19 11:45:59 +00006874 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6875 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006876void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006877{
6878 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006879 IO_CODE();
bellard19cb3732006-08-19 11:45:59 +00006880
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006881 if (drv && drv->bdrv_eject) {
6882 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006883 }
bellard19cb3732006-08-19 11:45:59 +00006884}
6885
bellard19cb3732006-08-19 11:45:59 +00006886/**
6887 * Lock or unlock the media (if it is locked, the user won't be able
6888 * to eject it manually).
6889 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006890void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006891{
6892 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006893 IO_CODE();
Markus Armbruster025e8492011-09-06 18:58:47 +02006894 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006895
Markus Armbruster025e8492011-09-06 18:58:47 +02006896 if (drv && drv->bdrv_lock_medium) {
6897 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006898 }
6899}
ths985a03b2007-12-24 16:10:43 +00006900
Fam Zheng9fcb0252013-08-23 09:14:46 +08006901/* Get a reference to bs */
6902void bdrv_ref(BlockDriverState *bs)
6903{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006904 GLOBAL_STATE_CODE();
Fam Zheng9fcb0252013-08-23 09:14:46 +08006905 bs->refcnt++;
6906}
6907
6908/* Release a previously grabbed reference to bs.
6909 * If after releasing, reference count is zero, the BlockDriverState is
6910 * deleted. */
6911void bdrv_unref(BlockDriverState *bs)
6912{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006913 GLOBAL_STATE_CODE();
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006914 if (!bs) {
6915 return;
6916 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006917 assert(bs->refcnt > 0);
6918 if (--bs->refcnt == 0) {
6919 bdrv_delete(bs);
6920 }
6921}
6922
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006923struct BdrvOpBlocker {
6924 Error *reason;
6925 QLIST_ENTRY(BdrvOpBlocker) list;
6926};
6927
6928bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6929{
6930 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006931 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006932 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6933 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6934 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006935 error_propagate_prepend(errp, error_copy(blocker->reason),
6936 "Node '%s' is busy: ",
6937 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006938 return true;
6939 }
6940 return false;
6941}
6942
6943void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6944{
6945 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006946 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006947 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6948
Markus Armbruster5839e532014-08-19 10:31:08 +02006949 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006950 blocker->reason = reason;
6951 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6952}
6953
6954void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6955{
6956 BdrvOpBlocker *blocker, *next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006957 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006958 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6959 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6960 if (blocker->reason == reason) {
6961 QLIST_REMOVE(blocker, list);
6962 g_free(blocker);
6963 }
6964 }
6965}
6966
6967void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6968{
6969 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006970 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006971 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6972 bdrv_op_block(bs, i, reason);
6973 }
6974}
6975
6976void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6977{
6978 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006979 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006980 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6981 bdrv_op_unblock(bs, i, reason);
6982 }
6983}
6984
6985bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6986{
6987 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006988 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006989 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6990 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6991 return false;
6992 }
6993 }
6994 return true;
6995}
6996
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006997void bdrv_img_create(const char *filename, const char *fmt,
6998 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006999 char *options, uint64_t img_size, int flags, bool quiet,
7000 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007001{
Chunyan Liu83d05212014-06-05 17:20:51 +08007002 QemuOptsList *create_opts = NULL;
7003 QemuOpts *opts = NULL;
7004 const char *backing_fmt, *backing_file;
7005 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007006 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02007007 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007008 int ret = 0;
7009
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007010 GLOBAL_STATE_CODE();
7011
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007012 /* Find driver and parse its options */
7013 drv = bdrv_find_format(fmt);
7014 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007015 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007016 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007017 }
7018
Max Reitzb65a5e12015-02-05 13:58:12 -05007019 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007020 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007021 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007022 }
7023
Max Reitzc6149722014-12-02 18:32:45 +01007024 if (!drv->create_opts) {
7025 error_setg(errp, "Format driver '%s' does not support image creation",
7026 drv->format_name);
7027 return;
7028 }
7029
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007030 if (!proto_drv->create_opts) {
7031 error_setg(errp, "Protocol driver '%s' does not support image creation",
7032 proto_drv->format_name);
7033 return;
7034 }
7035
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007036 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007037 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007038 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007039
Chunyan Liu83d05212014-06-05 17:20:51 +08007040 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007041
7042 /* Parse -o options */
7043 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02007044 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007045 goto out;
7046 }
7047 }
7048
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007049 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7050 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7051 } else if (img_size != UINT64_C(-1)) {
7052 error_setg(errp, "The image size must be specified only once");
7053 goto out;
7054 }
7055
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007056 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02007057 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02007058 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007059 error_setg(errp, "Backing file not supported for file format '%s'",
7060 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007061 goto out;
7062 }
7063 }
7064
7065 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02007066 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007067 error_setg(errp, "Backing file format not supported for file "
7068 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007069 goto out;
7070 }
7071 }
7072
Chunyan Liu83d05212014-06-05 17:20:51 +08007073 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7074 if (backing_file) {
7075 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007076 error_setg(errp, "Error: Trying to create an image with the "
7077 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01007078 goto out;
7079 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05007080 if (backing_file[0] == '\0') {
7081 error_setg(errp, "Expected backing file name, got empty string");
7082 goto out;
7083 }
Jes Sorensen792da932010-12-16 13:52:17 +01007084 }
7085
Chunyan Liu83d05212014-06-05 17:20:51 +08007086 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007087
John Snow6e6e55f2017-07-17 20:34:22 -04007088 /* The size for the image must always be specified, unless we have a backing
7089 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05007090 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04007091 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7092 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01007093 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04007094 int back_flags;
7095 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02007096
Max Reitz645ae7d2019-02-01 20:29:14 +01007097 full_backing =
7098 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7099 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04007100 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007101 goto out;
7102 }
Max Reitz645ae7d2019-02-01 20:29:14 +01007103 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04007104
Max Reitzd5b23992021-06-22 16:00:30 +02007105 /*
7106 * No need to do I/O here, which allows us to open encrypted
7107 * backing images without needing the secret
7108 */
John Snow6e6e55f2017-07-17 20:34:22 -04007109 back_flags = flags;
7110 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Max Reitzd5b23992021-06-22 16:00:30 +02007111 back_flags |= BDRV_O_NO_IO;
John Snow6e6e55f2017-07-17 20:34:22 -04007112
Fam Zhengcc954f02017-12-15 16:04:45 +08007113 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04007114 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04007115 qdict_put_str(backing_options, "driver", backing_fmt);
7116 }
Fam Zhengcc954f02017-12-15 16:04:45 +08007117 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04007118
7119 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7120 &local_err);
7121 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05007122 if (!bs) {
7123 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04007124 goto out;
7125 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05007126 if (!backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007127 error_setg(&local_err,
7128 "Backing file specified without backing format");
7129 error_append_hint(&local_err, "Detected format of %s.",
7130 bs->drv->format_name);
7131 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007132 }
John Snow6e6e55f2017-07-17 20:34:22 -04007133 if (size == -1) {
7134 /* Opened BS, have no size */
7135 size = bdrv_getlength(bs);
7136 if (size < 0) {
7137 error_setg_errno(errp, -size, "Could not get size of '%s'",
7138 backing_file);
7139 bdrv_unref(bs);
7140 goto out;
7141 }
7142 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7143 }
7144 bdrv_unref(bs);
7145 }
Eric Blaked9f059a2020-07-06 15:39:54 -05007146 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7147 } else if (backing_file && !backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007148 error_setg(&local_err,
7149 "Backing file specified without backing format");
7150 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007151 }
John Snow6e6e55f2017-07-17 20:34:22 -04007152
7153 if (size == -1) {
7154 error_setg(errp, "Image creation needs a size parameter");
7155 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007156 }
7157
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007158 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02007159 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08007160 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007161 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05007162 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007163 }
Chunyan Liu83d05212014-06-05 17:20:51 +08007164
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007165 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08007166
Max Reitzcc84d902013-09-06 17:14:26 +02007167 if (ret == -EFBIG) {
7168 /* This is generally a better message than whatever the driver would
7169 * deliver (especially because of the cluster_size_hint), since that
7170 * is most probably not much different from "image too large". */
7171 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08007172 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02007173 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007174 }
Max Reitzcc84d902013-09-06 17:14:26 +02007175 error_setg(errp, "The image size is too large for file format '%s'"
7176 "%s", fmt, cluster_size_hint);
7177 error_free(local_err);
7178 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007179 }
7180
7181out:
Chunyan Liu83d05212014-06-05 17:20:51 +08007182 qemu_opts_del(opts);
7183 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03007184 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007185}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007186
7187AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7188{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007189 IO_CODE();
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00007190 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007191}
7192
Kevin Wolfe336fd42020-10-05 17:58:53 +02007193AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7194{
7195 Coroutine *self = qemu_coroutine_self();
7196 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7197 AioContext *new_ctx;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007198 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007199
7200 /*
7201 * Increase bs->in_flight to ensure that this operation is completed before
7202 * moving the node to a different AioContext. Read new_ctx only afterwards.
7203 */
7204 bdrv_inc_in_flight(bs);
7205
7206 new_ctx = bdrv_get_aio_context(bs);
7207 aio_co_reschedule_self(new_ctx);
7208 return old_ctx;
7209}
7210
7211void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7212{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007213 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007214 aio_co_reschedule_self(old_ctx);
7215 bdrv_dec_in_flight(bs);
7216}
7217
Kevin Wolf18c6ac12020-10-05 17:58:54 +02007218void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7219{
7220 AioContext *ctx = bdrv_get_aio_context(bs);
7221
7222 /* In the main thread, bs->aio_context won't change concurrently */
7223 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7224
7225 /*
7226 * We're in coroutine context, so we already hold the lock of the main
7227 * loop AioContext. Don't lock it twice to avoid deadlocks.
7228 */
7229 assert(qemu_in_coroutine());
7230 if (ctx != qemu_get_aio_context()) {
7231 aio_context_acquire(ctx);
7232 }
7233}
7234
7235void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7236{
7237 AioContext *ctx = bdrv_get_aio_context(bs);
7238
7239 assert(qemu_in_coroutine());
7240 if (ctx != qemu_get_aio_context()) {
7241 aio_context_release(ctx);
7242 }
7243}
7244
Fam Zheng052a7572017-04-10 20:09:25 +08007245void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
7246{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007247 IO_CODE();
Fam Zheng052a7572017-04-10 20:09:25 +08007248 aio_co_enter(bdrv_get_aio_context(bs), co);
7249}
7250
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007251static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7252{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05007253 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007254 QLIST_REMOVE(ban, list);
7255 g_free(ban);
7256}
7257
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007258static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007259{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007260 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02007261
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007262 assert(!bs->walking_aio_notifiers);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007263 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007264 bs->walking_aio_notifiers = true;
7265 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7266 if (baf->deleted) {
7267 bdrv_do_remove_aio_context_notifier(baf);
7268 } else {
7269 baf->detach_aio_context(baf->opaque);
7270 }
Max Reitz33384422014-06-20 21:57:33 +02007271 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007272 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7273 * remove remaining aio notifiers if we aren't called again.
7274 */
7275 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02007276
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007277 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007278 bs->drv->bdrv_detach_aio_context(bs);
7279 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007280
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007281 if (bs->quiesce_counter) {
7282 aio_enable_external(bs->aio_context);
7283 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007284 bs->aio_context = NULL;
7285}
7286
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007287static void bdrv_attach_aio_context(BlockDriverState *bs,
7288 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007289{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007290 BdrvAioNotifier *ban, *ban_tmp;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007291 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007292
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007293 if (bs->quiesce_counter) {
7294 aio_disable_external(new_context);
7295 }
7296
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007297 bs->aio_context = new_context;
7298
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007299 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007300 bs->drv->bdrv_attach_aio_context(bs, new_context);
7301 }
Max Reitz33384422014-06-20 21:57:33 +02007302
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007303 assert(!bs->walking_aio_notifiers);
7304 bs->walking_aio_notifiers = true;
7305 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7306 if (ban->deleted) {
7307 bdrv_do_remove_aio_context_notifier(ban);
7308 } else {
7309 ban->attached_aio_context(new_context, ban->opaque);
7310 }
Max Reitz33384422014-06-20 21:57:33 +02007311 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007312 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007313}
7314
Kevin Wolf42a65f02019-05-07 18:31:38 +02007315/*
7316 * Changes the AioContext used for fd handlers, timers, and BHs by this
7317 * BlockDriverState and all its children and parents.
7318 *
Max Reitz43eaaae2019-07-22 15:30:54 +02007319 * Must be called from the main AioContext.
7320 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02007321 * The caller must own the AioContext lock for the old AioContext of bs, but it
7322 * must not own the AioContext lock for new_context (unless new_context is the
7323 * same as the current context of bs).
7324 *
7325 * @ignore will accumulate all visited BdrvChild object. The caller is
7326 * responsible for freeing the list afterwards.
7327 */
Kevin Wolf53a7d042019-05-06 19:17:59 +02007328void bdrv_set_aio_context_ignore(BlockDriverState *bs,
7329 AioContext *new_context, GSList **ignore)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007330{
Max Reitze037c092019-07-19 11:26:14 +02007331 AioContext *old_context = bdrv_get_aio_context(bs);
Sergio Lopez722d8e72021-02-01 13:50:31 +01007332 GSList *children_to_process = NULL;
7333 GSList *parents_to_process = NULL;
7334 GSList *entry;
7335 BdrvChild *child, *parent;
Kevin Wolf0d837082019-05-06 19:17:58 +02007336
Max Reitz43eaaae2019-07-22 15:30:54 +02007337 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05007338 GLOBAL_STATE_CODE();
Max Reitz43eaaae2019-07-22 15:30:54 +02007339
Max Reitze037c092019-07-19 11:26:14 +02007340 if (old_context == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03007341 return;
7342 }
7343
Kevin Wolfd70d5952019-02-08 16:53:37 +01007344 bdrv_drained_begin(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02007345
7346 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02007347 if (g_slist_find(*ignore, child)) {
7348 continue;
7349 }
7350 *ignore = g_slist_prepend(*ignore, child);
Sergio Lopez722d8e72021-02-01 13:50:31 +01007351 children_to_process = g_slist_prepend(children_to_process, child);
Kevin Wolf53a7d042019-05-06 19:17:59 +02007352 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01007353
7354 QLIST_FOREACH(parent, &bs->parents, next_parent) {
7355 if (g_slist_find(*ignore, parent)) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02007356 continue;
7357 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01007358 *ignore = g_slist_prepend(*ignore, parent);
7359 parents_to_process = g_slist_prepend(parents_to_process, parent);
Kevin Wolf0d837082019-05-06 19:17:58 +02007360 }
7361
Sergio Lopez722d8e72021-02-01 13:50:31 +01007362 for (entry = children_to_process;
7363 entry != NULL;
7364 entry = g_slist_next(entry)) {
7365 child = entry->data;
7366 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
7367 }
7368 g_slist_free(children_to_process);
7369
7370 for (entry = parents_to_process;
7371 entry != NULL;
7372 entry = g_slist_next(entry)) {
7373 parent = entry->data;
7374 assert(parent->klass->set_aio_ctx);
7375 parent->klass->set_aio_ctx(parent, new_context, ignore);
7376 }
7377 g_slist_free(parents_to_process);
7378
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007379 bdrv_detach_aio_context(bs);
7380
Max Reitze037c092019-07-19 11:26:14 +02007381 /* Acquire the new context, if necessary */
Max Reitz43eaaae2019-07-22 15:30:54 +02007382 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02007383 aio_context_acquire(new_context);
7384 }
7385
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007386 bdrv_attach_aio_context(bs, new_context);
Max Reitze037c092019-07-19 11:26:14 +02007387
7388 /*
7389 * If this function was recursively called from
7390 * bdrv_set_aio_context_ignore(), there may be nodes in the
7391 * subtree that have not yet been moved to the new AioContext.
7392 * Release the old one so bdrv_drained_end() can poll them.
7393 */
Max Reitz43eaaae2019-07-22 15:30:54 +02007394 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02007395 aio_context_release(old_context);
7396 }
7397
Kevin Wolfd70d5952019-02-08 16:53:37 +01007398 bdrv_drained_end(bs);
Max Reitze037c092019-07-19 11:26:14 +02007399
Max Reitz43eaaae2019-07-22 15:30:54 +02007400 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02007401 aio_context_acquire(old_context);
7402 }
Max Reitz43eaaae2019-07-22 15:30:54 +02007403 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02007404 aio_context_release(new_context);
7405 }
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007406}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02007407
Kevin Wolf5d231842019-05-06 19:17:56 +02007408static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7409 GSList **ignore, Error **errp)
7410{
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05007411 GLOBAL_STATE_CODE();
Kevin Wolf5d231842019-05-06 19:17:56 +02007412 if (g_slist_find(*ignore, c)) {
7413 return true;
7414 }
7415 *ignore = g_slist_prepend(*ignore, c);
7416
Max Reitzbd86fb92020-05-13 13:05:13 +02007417 /*
7418 * A BdrvChildClass that doesn't handle AioContext changes cannot
7419 * tolerate any AioContext changes
7420 */
7421 if (!c->klass->can_set_aio_ctx) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007422 char *user = bdrv_child_user_desc(c);
7423 error_setg(errp, "Changing iothreads is not supported by %s", user);
7424 g_free(user);
7425 return false;
7426 }
Max Reitzbd86fb92020-05-13 13:05:13 +02007427 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007428 assert(!errp || *errp);
7429 return false;
7430 }
7431 return true;
7432}
7433
7434bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7435 GSList **ignore, Error **errp)
7436{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007437 GLOBAL_STATE_CODE();
Kevin Wolf5d231842019-05-06 19:17:56 +02007438 if (g_slist_find(*ignore, c)) {
7439 return true;
7440 }
7441 *ignore = g_slist_prepend(*ignore, c);
7442 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
7443}
7444
7445/* @ignore will accumulate all visited BdrvChild object. The caller is
7446 * responsible for freeing the list afterwards. */
7447bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7448 GSList **ignore, Error **errp)
7449{
7450 BdrvChild *c;
7451
7452 if (bdrv_get_aio_context(bs) == ctx) {
7453 return true;
7454 }
7455
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007456 GLOBAL_STATE_CODE();
7457
Kevin Wolf5d231842019-05-06 19:17:56 +02007458 QLIST_FOREACH(c, &bs->parents, next_parent) {
7459 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
7460 return false;
7461 }
7462 }
7463 QLIST_FOREACH(c, &bs->children, next) {
7464 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
7465 return false;
7466 }
7467 }
7468
7469 return true;
7470}
7471
7472int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7473 BdrvChild *ignore_child, Error **errp)
7474{
7475 GSList *ignore;
7476 bool ret;
7477
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007478 GLOBAL_STATE_CODE();
7479
Kevin Wolf5d231842019-05-06 19:17:56 +02007480 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7481 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
7482 g_slist_free(ignore);
7483
7484 if (!ret) {
7485 return -EPERM;
7486 }
7487
Kevin Wolf53a7d042019-05-06 19:17:59 +02007488 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7489 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
7490 g_slist_free(ignore);
7491
Kevin Wolf5d231842019-05-06 19:17:56 +02007492 return 0;
7493}
7494
7495int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7496 Error **errp)
7497{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007498 GLOBAL_STATE_CODE();
Kevin Wolf5d231842019-05-06 19:17:56 +02007499 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
7500}
7501
Max Reitz33384422014-06-20 21:57:33 +02007502void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7503 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7504 void (*detach_aio_context)(void *opaque), void *opaque)
7505{
7506 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7507 *ban = (BdrvAioNotifier){
7508 .attached_aio_context = attached_aio_context,
7509 .detach_aio_context = detach_aio_context,
7510 .opaque = opaque
7511 };
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007512 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007513
7514 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7515}
7516
7517void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7518 void (*attached_aio_context)(AioContext *,
7519 void *),
7520 void (*detach_aio_context)(void *),
7521 void *opaque)
7522{
7523 BdrvAioNotifier *ban, *ban_next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007524 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007525
7526 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7527 if (ban->attached_aio_context == attached_aio_context &&
7528 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007529 ban->opaque == opaque &&
7530 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007531 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007532 if (bs->walking_aio_notifiers) {
7533 ban->deleted = true;
7534 } else {
7535 bdrv_do_remove_aio_context_notifier(ban);
7536 }
Max Reitz33384422014-06-20 21:57:33 +02007537 return;
7538 }
7539 }
7540
7541 abort();
7542}
7543
Max Reitz77485432014-10-27 11:12:50 +01007544int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007545 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007546 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007547 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007548{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007549 GLOBAL_STATE_CODE();
Max Reitzd470ad42017-11-10 21:31:09 +01007550 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007551 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007552 return -ENOMEDIUM;
7553 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007554 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007555 error_setg(errp, "Block driver '%s' does not support option amendment",
7556 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007557 return -ENOTSUP;
7558 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007559 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7560 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007561}
Benoît Canetf6186f42013-10-02 14:33:48 +02007562
Max Reitz5d69b5a2020-02-18 11:34:41 +01007563/*
7564 * This function checks whether the given @to_replace is allowed to be
7565 * replaced by a node that always shows the same data as @bs. This is
7566 * used for example to verify whether the mirror job can replace
7567 * @to_replace by the target mirrored from @bs.
7568 * To be replaceable, @bs and @to_replace may either be guaranteed to
7569 * always show the same data (because they are only connected through
7570 * filters), or some driver may allow replacing one of its children
7571 * because it can guarantee that this child's data is not visible at
7572 * all (for example, for dissenting quorum children that have no other
7573 * parents).
7574 */
7575bool bdrv_recurse_can_replace(BlockDriverState *bs,
7576 BlockDriverState *to_replace)
7577{
Max Reitz93393e62019-06-12 17:03:38 +02007578 BlockDriverState *filtered;
7579
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007580 GLOBAL_STATE_CODE();
7581
Max Reitz5d69b5a2020-02-18 11:34:41 +01007582 if (!bs || !bs->drv) {
7583 return false;
7584 }
7585
7586 if (bs == to_replace) {
7587 return true;
7588 }
7589
7590 /* See what the driver can do */
7591 if (bs->drv->bdrv_recurse_can_replace) {
7592 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7593 }
7594
7595 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007596 filtered = bdrv_filter_bs(bs);
7597 if (filtered) {
7598 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007599 }
7600
7601 /* Safe default */
7602 return false;
7603}
7604
Max Reitz810803a2020-02-18 11:34:44 +01007605/*
7606 * Check whether the given @node_name can be replaced by a node that
7607 * has the same data as @parent_bs. If so, return @node_name's BDS;
7608 * NULL otherwise.
7609 *
7610 * @node_name must be a (recursive) *child of @parent_bs (or this
7611 * function will return NULL).
7612 *
7613 * The result (whether the node can be replaced or not) is only valid
7614 * for as long as no graph or permission changes occur.
7615 */
Wen Congyange12f3782015-07-17 10:12:22 +08007616BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7617 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007618{
7619 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007620 AioContext *aio_context;
7621
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007622 GLOBAL_STATE_CODE();
7623
Benoît Canet09158f02014-06-27 18:25:25 +02007624 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007625 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007626 return NULL;
7627 }
7628
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007629 aio_context = bdrv_get_aio_context(to_replace_bs);
7630 aio_context_acquire(aio_context);
7631
Benoît Canet09158f02014-06-27 18:25:25 +02007632 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007633 to_replace_bs = NULL;
7634 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007635 }
7636
7637 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7638 * most non filter in order to prevent data corruption.
7639 * Another benefit is that this tests exclude backing files which are
7640 * blocked by the backing blockers.
7641 */
Max Reitz810803a2020-02-18 11:34:44 +01007642 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7643 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7644 "because it cannot be guaranteed that doing so would not "
7645 "lead to an abrupt change of visible data",
7646 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007647 to_replace_bs = NULL;
7648 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007649 }
7650
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007651out:
7652 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007653 return to_replace_bs;
7654}
Ming Lei448ad912014-07-04 18:04:33 +08007655
Max Reitz97e2f022019-02-01 20:29:27 +01007656/**
7657 * Iterates through the list of runtime option keys that are said to
7658 * be "strong" for a BDS. An option is called "strong" if it changes
7659 * a BDS's data. For example, the null block driver's "size" and
7660 * "read-zeroes" options are strong, but its "latency-ns" option is
7661 * not.
7662 *
7663 * If a key returned by this function ends with a dot, all options
7664 * starting with that prefix are strong.
7665 */
7666static const char *const *strong_options(BlockDriverState *bs,
7667 const char *const *curopt)
7668{
7669 static const char *const global_options[] = {
7670 "driver", "filename", NULL
7671 };
7672
7673 if (!curopt) {
7674 return &global_options[0];
7675 }
7676
7677 curopt++;
7678 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7679 curopt = bs->drv->strong_runtime_opts;
7680 }
7681
7682 return (curopt && *curopt) ? curopt : NULL;
7683}
7684
7685/**
7686 * Copies all strong runtime options from bs->options to the given
7687 * QDict. The set of strong option keys is determined by invoking
7688 * strong_options().
7689 *
7690 * Returns true iff any strong option was present in bs->options (and
7691 * thus copied to the target QDict) with the exception of "filename"
7692 * and "driver". The caller is expected to use this value to decide
7693 * whether the existence of strong options prevents the generation of
7694 * a plain filename.
7695 */
7696static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7697{
7698 bool found_any = false;
7699 const char *const *option_name = NULL;
7700
7701 if (!bs->drv) {
7702 return false;
7703 }
7704
7705 while ((option_name = strong_options(bs, option_name))) {
7706 bool option_given = false;
7707
7708 assert(strlen(*option_name) > 0);
7709 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7710 QObject *entry = qdict_get(bs->options, *option_name);
7711 if (!entry) {
7712 continue;
7713 }
7714
7715 qdict_put_obj(d, *option_name, qobject_ref(entry));
7716 option_given = true;
7717 } else {
7718 const QDictEntry *entry;
7719 for (entry = qdict_first(bs->options); entry;
7720 entry = qdict_next(bs->options, entry))
7721 {
7722 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7723 qdict_put_obj(d, qdict_entry_key(entry),
7724 qobject_ref(qdict_entry_value(entry)));
7725 option_given = true;
7726 }
7727 }
7728 }
7729
7730 /* While "driver" and "filename" need to be included in a JSON filename,
7731 * their existence does not prohibit generation of a plain filename. */
7732 if (!found_any && option_given &&
7733 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7734 {
7735 found_any = true;
7736 }
7737 }
7738
Max Reitz62a01a272019-02-01 20:29:34 +01007739 if (!qdict_haskey(d, "driver")) {
7740 /* Drivers created with bdrv_new_open_driver() may not have a
7741 * @driver option. Add it here. */
7742 qdict_put_str(d, "driver", bs->drv->format_name);
7743 }
7744
Max Reitz97e2f022019-02-01 20:29:27 +01007745 return found_any;
7746}
7747
Max Reitz90993622019-02-01 20:29:09 +01007748/* Note: This function may return false positives; it may return true
7749 * even if opening the backing file specified by bs's image header
7750 * would result in exactly bs->backing. */
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -05007751static bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007752{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007753 GLOBAL_STATE_CODE();
Max Reitz90993622019-02-01 20:29:09 +01007754 if (bs->backing) {
7755 return strcmp(bs->auto_backing_file,
7756 bs->backing->bs->filename);
7757 } else {
7758 /* No backing BDS, so if the image header reports any backing
7759 * file, it must have been suppressed */
7760 return bs->auto_backing_file[0] != '\0';
7761 }
7762}
7763
Max Reitz91af7012014-07-18 20:24:56 +02007764/* Updates the following BDS fields:
7765 * - exact_filename: A filename which may be used for opening a block device
7766 * which (mostly) equals the given BDS (even without any
7767 * other options; so reading and writing must return the same
7768 * results, but caching etc. may be different)
7769 * - full_open_options: Options which, when given when opening a block device
7770 * (without a filename), result in a BDS (mostly)
7771 * equalling the given one
7772 * - filename: If exact_filename is set, it is copied here. Otherwise,
7773 * full_open_options is converted to a JSON object, prefixed with
7774 * "json:" (for use through the JSON pseudo protocol) and put here.
7775 */
7776void bdrv_refresh_filename(BlockDriverState *bs)
7777{
7778 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01007779 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02007780 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02007781 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01007782 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01007783 bool generate_json_filename; /* Whether our default implementation should
7784 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02007785
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007786 GLOBAL_STATE_CODE();
7787
Max Reitz91af7012014-07-18 20:24:56 +02007788 if (!drv) {
7789 return;
7790 }
7791
Max Reitze24518e2019-02-01 20:29:06 +01007792 /* This BDS's file name may depend on any of its children's file names, so
7793 * refresh those first */
7794 QLIST_FOREACH(child, &bs->children, next) {
7795 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02007796 }
7797
Max Reitzbb808d52019-02-01 20:29:07 +01007798 if (bs->implicit) {
7799 /* For implicit nodes, just copy everything from the single child */
7800 child = QLIST_FIRST(&bs->children);
7801 assert(QLIST_NEXT(child, next) == NULL);
7802
7803 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7804 child->bs->exact_filename);
7805 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7806
Pan Nengyuancb895612020-01-16 16:56:00 +08007807 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01007808 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7809
7810 return;
7811 }
7812
Max Reitz90993622019-02-01 20:29:09 +01007813 backing_overridden = bdrv_backing_overridden(bs);
7814
7815 if (bs->open_flags & BDRV_O_NO_IO) {
7816 /* Without I/O, the backing file does not change anything.
7817 * Therefore, in such a case (primarily qemu-img), we can
7818 * pretend the backing file has not been overridden even if
7819 * it technically has been. */
7820 backing_overridden = false;
7821 }
7822
Max Reitz97e2f022019-02-01 20:29:27 +01007823 /* Gather the options QDict */
7824 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01007825 generate_json_filename = append_strong_runtime_options(opts, bs);
7826 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01007827
7828 if (drv->bdrv_gather_child_options) {
7829 /* Some block drivers may not want to present all of their children's
7830 * options, or name them differently from BdrvChild.name */
7831 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7832 } else {
7833 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02007834 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01007835 /* We can skip the backing BDS if it has not been overridden */
7836 continue;
7837 }
7838
7839 qdict_put(opts, child->name,
7840 qobject_ref(child->bs->full_open_options));
7841 }
7842
7843 if (backing_overridden && !bs->backing) {
7844 /* Force no backing file */
7845 qdict_put_null(opts, "backing");
7846 }
7847 }
7848
7849 qobject_unref(bs->full_open_options);
7850 bs->full_open_options = opts;
7851
Max Reitz52f72d62019-06-12 17:43:03 +02007852 primary_child_bs = bdrv_primary_bs(bs);
7853
Max Reitz998b3a12019-02-01 20:29:28 +01007854 if (drv->bdrv_refresh_filename) {
7855 /* Obsolete information is of no use here, so drop the old file name
7856 * information before refreshing it */
7857 bs->exact_filename[0] = '\0';
7858
7859 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02007860 } else if (primary_child_bs) {
7861 /*
7862 * Try to reconstruct valid information from the underlying
7863 * file -- this only works for format nodes (filter nodes
7864 * cannot be probed and as such must be selected by the user
7865 * either through an options dict, or through a special
7866 * filename which the filter driver must construct in its
7867 * .bdrv_refresh_filename() implementation).
7868 */
Max Reitz998b3a12019-02-01 20:29:28 +01007869
7870 bs->exact_filename[0] = '\0';
7871
Max Reitzfb695c72019-02-01 20:29:29 +01007872 /*
7873 * We can use the underlying file's filename if:
7874 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007875 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007876 * - the file is a protocol BDS, and
7877 * - opening that file (as this BDS's format) will automatically create
7878 * the BDS tree we have right now, that is:
7879 * - the user did not significantly change this BDS's behavior with
7880 * some explicit (strong) options
7881 * - no non-file child of this BDS has been overridden by the user
7882 * Both of these conditions are represented by generate_json_filename.
7883 */
Max Reitz52f72d62019-06-12 17:43:03 +02007884 if (primary_child_bs->exact_filename[0] &&
7885 primary_child_bs->drv->bdrv_file_open &&
7886 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007887 {
Max Reitz52f72d62019-06-12 17:43:03 +02007888 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007889 }
7890 }
7891
Max Reitz91af7012014-07-18 20:24:56 +02007892 if (bs->exact_filename[0]) {
7893 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007894 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007895 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007896 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007897 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007898 /* Give user a hint if we truncated things. */
7899 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7900 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007901 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007902 }
7903}
Wen Congyange06018a2016-05-10 15:36:37 +08007904
Max Reitz1e89d0f2019-02-01 20:29:18 +01007905char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7906{
7907 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007908 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007909
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007910 GLOBAL_STATE_CODE();
7911
Max Reitz1e89d0f2019-02-01 20:29:18 +01007912 if (!drv) {
7913 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7914 return NULL;
7915 }
7916
7917 if (drv->bdrv_dirname) {
7918 return drv->bdrv_dirname(bs, errp);
7919 }
7920
Max Reitz52f72d62019-06-12 17:43:03 +02007921 child_bs = bdrv_primary_bs(bs);
7922 if (child_bs) {
7923 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007924 }
7925
7926 bdrv_refresh_filename(bs);
7927 if (bs->exact_filename[0] != '\0') {
7928 return path_combine(bs->exact_filename, "");
7929 }
7930
7931 error_setg(errp, "Cannot generate a base directory for %s nodes",
7932 drv->format_name);
7933 return NULL;
7934}
7935
Wen Congyange06018a2016-05-10 15:36:37 +08007936/*
7937 * Hot add/remove a BDS's child. So the user can take a child offline when
7938 * it is broken and take a new child online
7939 */
7940void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7941 Error **errp)
7942{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007943 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08007944 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7945 error_setg(errp, "The node %s does not support adding a child",
7946 bdrv_get_device_or_node_name(parent_bs));
7947 return;
7948 }
7949
7950 if (!QLIST_EMPTY(&child_bs->parents)) {
7951 error_setg(errp, "The node %s already has a parent",
7952 child_bs->node_name);
7953 return;
7954 }
7955
7956 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7957}
7958
7959void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7960{
7961 BdrvChild *tmp;
7962
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007963 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08007964 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7965 error_setg(errp, "The node %s does not support removing a child",
7966 bdrv_get_device_or_node_name(parent_bs));
7967 return;
7968 }
7969
7970 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7971 if (tmp == child) {
7972 break;
7973 }
7974 }
7975
7976 if (!tmp) {
7977 error_setg(errp, "The node %s does not have a child named %s",
7978 bdrv_get_device_or_node_name(parent_bs),
7979 bdrv_get_device_or_node_name(child->bs));
7980 return;
7981 }
7982
7983 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7984}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007985
7986int bdrv_make_empty(BdrvChild *c, Error **errp)
7987{
7988 BlockDriver *drv = c->bs->drv;
7989 int ret;
7990
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007991 GLOBAL_STATE_CODE();
Max Reitz6f7a3b52020-04-29 16:11:23 +02007992 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7993
7994 if (!drv->bdrv_make_empty) {
7995 error_setg(errp, "%s does not support emptying nodes",
7996 drv->format_name);
7997 return -ENOTSUP;
7998 }
7999
8000 ret = drv->bdrv_make_empty(c->bs);
8001 if (ret < 0) {
8002 error_setg_errno(errp, -ret, "Failed to empty %s",
8003 c->bs->filename);
8004 return ret;
8005 }
8006
8007 return 0;
8008}
Max Reitz9a6fc882019-05-31 15:23:11 +02008009
8010/*
8011 * Return the child that @bs acts as an overlay for, and from which data may be
8012 * copied in COW or COR operations. Usually this is the backing file.
8013 */
8014BdrvChild *bdrv_cow_child(BlockDriverState *bs)
8015{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008016 IO_CODE();
8017
Max Reitz9a6fc882019-05-31 15:23:11 +02008018 if (!bs || !bs->drv) {
8019 return NULL;
8020 }
8021
8022 if (bs->drv->is_filter) {
8023 return NULL;
8024 }
8025
8026 if (!bs->backing) {
8027 return NULL;
8028 }
8029
8030 assert(bs->backing->role & BDRV_CHILD_COW);
8031 return bs->backing;
8032}
8033
8034/*
8035 * If @bs acts as a filter for exactly one of its children, return
8036 * that child.
8037 */
8038BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8039{
8040 BdrvChild *c;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008041 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008042
8043 if (!bs || !bs->drv) {
8044 return NULL;
8045 }
8046
8047 if (!bs->drv->is_filter) {
8048 return NULL;
8049 }
8050
8051 /* Only one of @backing or @file may be used */
8052 assert(!(bs->backing && bs->file));
8053
8054 c = bs->backing ?: bs->file;
8055 if (!c) {
8056 return NULL;
8057 }
8058
8059 assert(c->role & BDRV_CHILD_FILTERED);
8060 return c;
8061}
8062
8063/*
8064 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8065 * whichever is non-NULL.
8066 *
8067 * Return NULL if both are NULL.
8068 */
8069BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8070{
8071 BdrvChild *cow_child = bdrv_cow_child(bs);
8072 BdrvChild *filter_child = bdrv_filter_child(bs);
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008073 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008074
8075 /* Filter nodes cannot have COW backing files */
8076 assert(!(cow_child && filter_child));
8077
8078 return cow_child ?: filter_child;
8079}
8080
8081/*
8082 * Return the primary child of this node: For filters, that is the
8083 * filtered child. For other nodes, that is usually the child storing
8084 * metadata.
8085 * (A generally more helpful description is that this is (usually) the
8086 * child that has the same filename as @bs.)
8087 *
8088 * Drivers do not necessarily have a primary child; for example quorum
8089 * does not.
8090 */
8091BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8092{
8093 BdrvChild *c, *found = NULL;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008094 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008095
8096 QLIST_FOREACH(c, &bs->children, next) {
8097 if (c->role & BDRV_CHILD_PRIMARY) {
8098 assert(!found);
8099 found = c;
8100 }
8101 }
8102
8103 return found;
8104}
Max Reitzd38d7eb2019-06-12 15:06:37 +02008105
8106static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
8107 bool stop_on_explicit_filter)
8108{
8109 BdrvChild *c;
8110
8111 if (!bs) {
8112 return NULL;
8113 }
8114
8115 while (!(stop_on_explicit_filter && !bs->implicit)) {
8116 c = bdrv_filter_child(bs);
8117 if (!c) {
8118 /*
8119 * A filter that is embedded in a working block graph must
8120 * have a child. Assert this here so this function does
8121 * not return a filter node that is not expected by the
8122 * caller.
8123 */
8124 assert(!bs->drv || !bs->drv->is_filter);
8125 break;
8126 }
8127 bs = c->bs;
8128 }
8129 /*
8130 * Note that this treats nodes with bs->drv == NULL as not being
8131 * filters (bs->drv == NULL should be replaced by something else
8132 * anyway).
8133 * The advantage of this behavior is that this function will thus
8134 * always return a non-NULL value (given a non-NULL @bs).
8135 */
8136
8137 return bs;
8138}
8139
8140/*
8141 * Return the first BDS that has not been added implicitly or that
8142 * does not have a filtered child down the chain starting from @bs
8143 * (including @bs itself).
8144 */
8145BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8146{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05008147 GLOBAL_STATE_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008148 return bdrv_do_skip_filters(bs, true);
8149}
8150
8151/*
8152 * Return the first BDS that does not have a filtered child down the
8153 * chain starting from @bs (including @bs itself).
8154 */
8155BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8156{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008157 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008158 return bdrv_do_skip_filters(bs, false);
8159}
8160
8161/*
8162 * For a backing chain, return the first non-filter backing image of
8163 * the first non-filter image.
8164 */
8165BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8166{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008167 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008168 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8169}
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008170
8171/**
8172 * Check whether [offset, offset + bytes) overlaps with the cached
8173 * block-status data region.
8174 *
8175 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8176 * which is what bdrv_bsc_is_data()'s interface needs.
8177 * Otherwise, *pnum is not touched.
8178 */
8179static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8180 int64_t offset, int64_t bytes,
8181 int64_t *pnum)
8182{
8183 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8184 bool overlaps;
8185
8186 overlaps =
8187 qatomic_read(&bsc->valid) &&
8188 ranges_overlap(offset, bytes, bsc->data_start,
8189 bsc->data_end - bsc->data_start);
8190
8191 if (overlaps && pnum) {
8192 *pnum = bsc->data_end - offset;
8193 }
8194
8195 return overlaps;
8196}
8197
8198/**
8199 * See block_int.h for this function's documentation.
8200 */
8201bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8202{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008203 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008204 RCU_READ_LOCK_GUARD();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008205 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8206}
8207
8208/**
8209 * See block_int.h for this function's documentation.
8210 */
8211void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8212 int64_t offset, int64_t bytes)
8213{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008214 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008215 RCU_READ_LOCK_GUARD();
8216
8217 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8218 qatomic_set(&bs->block_status_cache->valid, false);
8219 }
8220}
8221
8222/**
8223 * See block_int.h for this function's documentation.
8224 */
8225void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8226{
8227 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8228 BdrvBlockStatusCache *old_bsc;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008229 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008230
8231 *new_bsc = (BdrvBlockStatusCache) {
8232 .valid = true,
8233 .data_start = offset,
8234 .data_end = offset + bytes,
8235 };
8236
8237 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8238
8239 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8240 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8241 if (old_bsc) {
8242 g_free_rcu(old_bsc, rcu);
8243 }
8244}