blob: c7d5aa5254c0758943ba165321d0194967dbaf0f [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
Benoît Canetdc364f42014-01-23 21:31:32 +010070static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
71 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
72
Max Reitz2c1d04e2016-01-29 16:36:11 +010073static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
74 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
75
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010076static QLIST_HEAD(, BlockDriver) bdrv_drivers =
77 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000078
Max Reitz5b363932016-05-17 16:41:31 +020079static BlockDriverState *bdrv_open_inherit(const char *filename,
80 const char *reference,
81 QDict *options, int flags,
82 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +020083 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +020084 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +020085 Error **errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +020086
Kevin Wolfbfb8aa62021-10-18 15:47:14 +020087static bool bdrv_recurse_has_child(BlockDriverState *bs,
88 BlockDriverState *child);
89
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030090static void bdrv_replace_child_noperm(BdrvChild *child,
91 BlockDriverState *new_bs);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +030092static void bdrv_remove_file_or_backing_child(BlockDriverState *bs,
93 BdrvChild *child,
94 Transaction *tran);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +030095static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
96 Transaction *tran);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030097
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +030098static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
99 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +0300100 Transaction *change_child_tran, Error **errp);
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +0300101static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
102static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
103
Markus Armbrustereb852012009-10-27 18:41:44 +0100104/* If non-zero, use only whitelisted block drivers */
105static int use_bdrv_whitelist;
106
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000107#ifdef _WIN32
108static int is_windows_drive_prefix(const char *filename)
109{
110 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
111 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
112 filename[1] == ':');
113}
114
115int is_windows_drive(const char *filename)
116{
117 if (is_windows_drive_prefix(filename) &&
118 filename[2] == '\0')
119 return 1;
120 if (strstart(filename, "\\\\.\\", NULL) ||
121 strstart(filename, "//./", NULL))
122 return 1;
123 return 0;
124}
125#endif
126
Kevin Wolf339064d2013-11-28 10:23:32 +0100127size_t bdrv_opt_mem_align(BlockDriverState *bs)
128{
129 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300130 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800131 return MAX(4096, qemu_real_host_page_size);
Kevin Wolf339064d2013-11-28 10:23:32 +0100132 }
133
134 return bs->bl.opt_mem_alignment;
135}
136
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300137size_t bdrv_min_mem_align(BlockDriverState *bs)
138{
139 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300140 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800141 return MAX(4096, qemu_real_host_page_size);
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300142 }
143
144 return bs->bl.min_mem_alignment;
145}
146
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000147/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100148int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000149{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200150 const char *p;
151
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000152#ifdef _WIN32
153 if (is_windows_drive(path) ||
154 is_windows_drive_prefix(path)) {
155 return 0;
156 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200157 p = path + strcspn(path, ":/\\");
158#else
159 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000160#endif
161
Paolo Bonzini947995c2012-05-08 16:51:48 +0200162 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000163}
164
bellard83f64092006-08-01 16:21:11 +0000165int path_is_absolute(const char *path)
166{
bellard21664422007-01-07 18:22:37 +0000167#ifdef _WIN32
168 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200169 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000170 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200171 }
172 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000173#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200174 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000175#endif
bellard83f64092006-08-01 16:21:11 +0000176}
177
Max Reitz009b03a2019-02-01 20:29:13 +0100178/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000179 path to it by considering it is relative to base_path. URL are
180 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100181char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000182{
Max Reitz009b03a2019-02-01 20:29:13 +0100183 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000184 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100185 char *result;
bellard83f64092006-08-01 16:21:11 +0000186 int len;
187
bellard83f64092006-08-01 16:21:11 +0000188 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100189 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000190 }
Max Reitz009b03a2019-02-01 20:29:13 +0100191
192 if (path_has_protocol(base_path)) {
193 protocol_stripped = strchr(base_path, ':');
194 if (protocol_stripped) {
195 protocol_stripped++;
196 }
197 }
198 p = protocol_stripped ?: base_path;
199
200 p1 = strrchr(base_path, '/');
201#ifdef _WIN32
202 {
203 const char *p2;
204 p2 = strrchr(base_path, '\\');
205 if (!p1 || p2 > p1) {
206 p1 = p2;
207 }
208 }
209#endif
210 if (p1) {
211 p1++;
212 } else {
213 p1 = base_path;
214 }
215 if (p1 > p) {
216 p = p1;
217 }
218 len = p - base_path;
219
220 result = g_malloc(len + strlen(filename) + 1);
221 memcpy(result, base_path, len);
222 strcpy(result + len, filename);
223
224 return result;
225}
226
Max Reitz03c320d2017-05-22 21:52:16 +0200227/*
228 * Helper function for bdrv_parse_filename() implementations to remove optional
229 * protocol prefixes (especially "file:") from a filename and for putting the
230 * stripped filename into the options QDict if there is such a prefix.
231 */
232void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
233 QDict *options)
234{
235 if (strstart(filename, prefix, &filename)) {
236 /* Stripping the explicit protocol prefix may result in a protocol
237 * prefix being (wrongly) detected (if the filename contains a colon) */
238 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100239 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200240
241 /* This means there is some colon before the first slash; therefore,
242 * this cannot be an absolute path */
243 assert(!path_is_absolute(filename));
244
245 /* And we can thus fix the protocol detection issue by prefixing it
246 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100247 fat_filename = g_string_new("./");
248 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200249
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100250 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200251
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100252 qdict_put(options, "filename",
253 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200254 } else {
255 /* If no protocol prefix was detected, we can use the shortened
256 * filename as-is */
257 qdict_put_str(options, "filename", filename);
258 }
259 }
260}
261
262
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200263/* Returns whether the image file is opened as read-only. Note that this can
264 * return false and writing to the image file is still not possible because the
265 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400266bool bdrv_is_read_only(BlockDriverState *bs)
267{
Vladimir Sementsov-Ogievskiy975da072021-05-27 18:40:55 +0300268 return !(bs->open_flags & BDRV_O_RDWR);
Jeff Cody93ed5242017-04-07 16:55:28 -0400269}
270
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200271int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
272 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400273{
Jeff Codye2b82472017-04-07 16:55:26 -0400274 /* Do not set read_only if copy_on_read is enabled */
275 if (bs->copy_on_read && read_only) {
276 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
277 bdrv_get_device_or_node_name(bs));
278 return -EINVAL;
279 }
280
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400281 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200282 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
283 !ignore_allow_rdw)
284 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400285 error_setg(errp, "Node '%s' is read only",
286 bdrv_get_device_or_node_name(bs));
287 return -EPERM;
288 }
289
Jeff Cody45803a02017-04-07 16:55:29 -0400290 return 0;
291}
292
Kevin Wolfeaa24102018-10-12 11:27:41 +0200293/*
294 * Called by a driver that can only provide a read-only image.
295 *
296 * Returns 0 if the node is already read-only or it could switch the node to
297 * read-only because BDRV_O_AUTO_RDONLY is set.
298 *
299 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
300 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
301 * is not NULL, it is used as the error message for the Error object.
302 */
303int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
304 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400305{
306 int ret = 0;
307
Kevin Wolfeaa24102018-10-12 11:27:41 +0200308 if (!(bs->open_flags & BDRV_O_RDWR)) {
309 return 0;
310 }
311 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
312 goto fail;
313 }
314
315 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400316 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200317 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400318 }
319
Kevin Wolfeaa24102018-10-12 11:27:41 +0200320 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200321
Jeff Codye2b82472017-04-07 16:55:26 -0400322 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200323
324fail:
325 error_setg(errp, "%s", errmsg ?: "Image is read-only");
326 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400327}
328
Max Reitz645ae7d2019-02-01 20:29:14 +0100329/*
330 * If @backing is empty, this function returns NULL without setting
331 * @errp. In all other cases, NULL will only be returned with @errp
332 * set.
333 *
334 * Therefore, a return value of NULL without @errp set means that
335 * there is no backing file; if @errp is set, there is one but its
336 * absolute filename cannot be generated.
337 */
338char *bdrv_get_full_backing_filename_from_filename(const char *backed,
339 const char *backing,
340 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100341{
Max Reitz645ae7d2019-02-01 20:29:14 +0100342 if (backing[0] == '\0') {
343 return NULL;
344 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
345 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100346 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
347 error_setg(errp, "Cannot use relative backing file names for '%s'",
348 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100349 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100350 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100351 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100352 }
353}
354
Max Reitz9f4793d2019-02-01 20:29:16 +0100355/*
356 * If @filename is empty or NULL, this function returns NULL without
357 * setting @errp. In all other cases, NULL will only be returned with
358 * @errp set.
359 */
360static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
361 const char *filename, Error **errp)
362{
Max Reitz8df68612019-02-01 20:29:23 +0100363 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100364
Max Reitz8df68612019-02-01 20:29:23 +0100365 if (!filename || filename[0] == '\0') {
366 return NULL;
367 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
368 return g_strdup(filename);
369 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100370
Max Reitz8df68612019-02-01 20:29:23 +0100371 dir = bdrv_dirname(relative_to, errp);
372 if (!dir) {
373 return NULL;
374 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100375
Max Reitz8df68612019-02-01 20:29:23 +0100376 full_name = g_strconcat(dir, filename, NULL);
377 g_free(dir);
378 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100379}
380
Max Reitz6b6833c2019-02-01 20:29:15 +0100381char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200382{
Max Reitz9f4793d2019-02-01 20:29:16 +0100383 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200384}
385
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100386void bdrv_register(BlockDriver *bdrv)
387{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100388 assert(bdrv->format_name);
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100389 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000390}
bellardb3380822004-03-14 21:38:54 +0000391
Markus Armbrustere4e99862014-10-07 13:59:03 +0200392BlockDriverState *bdrv_new(void)
393{
394 BlockDriverState *bs;
395 int i;
396
Markus Armbruster5839e532014-08-19 10:31:08 +0200397 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800398 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800399 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
400 QLIST_INIT(&bs->op_blockers[i]);
401 }
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200402 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200403 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800404 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200405 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200406
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300407 qemu_co_queue_init(&bs->flush_queue);
408
Hanna Reitz0bc329f2021-08-12 10:41:44 +0200409 qemu_co_mutex_init(&bs->bsc_modify_lock);
410 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
411
Kevin Wolf0f122642018-03-28 18:29:18 +0200412 for (i = 0; i < bdrv_drain_all_count; i++) {
413 bdrv_drained_begin(bs);
414 }
415
Max Reitz2c1d04e2016-01-29 16:36:11 +0100416 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
417
bellardb3380822004-03-14 21:38:54 +0000418 return bs;
419}
420
Marc Mari88d88792016-08-12 09:27:03 -0400421static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000422{
423 BlockDriver *drv1;
Marc Mari88d88792016-08-12 09:27:03 -0400424
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100425 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
426 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000427 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100428 }
bellardea2384d2004-08-01 21:59:26 +0000429 }
Marc Mari88d88792016-08-12 09:27:03 -0400430
bellardea2384d2004-08-01 21:59:26 +0000431 return NULL;
432}
433
Marc Mari88d88792016-08-12 09:27:03 -0400434BlockDriver *bdrv_find_format(const char *format_name)
435{
436 BlockDriver *drv1;
437 int i;
438
439 drv1 = bdrv_do_find_format(format_name);
440 if (drv1) {
441 return drv1;
442 }
443
444 /* The driver isn't registered, maybe we need to load a module */
445 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
446 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
447 block_module_load_one(block_driver_modules[i].library_name);
448 break;
449 }
450 }
451
452 return bdrv_do_find_format(format_name);
453}
454
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300455static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100456{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800457 static const char *whitelist_rw[] = {
458 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200459 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800460 };
461 static const char *whitelist_ro[] = {
462 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200463 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100464 };
465 const char **p;
466
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800467 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100468 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800469 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100470
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800471 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300472 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100473 return 1;
474 }
475 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800476 if (read_only) {
477 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300478 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800479 return 1;
480 }
481 }
482 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100483 return 0;
484}
485
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300486int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
487{
488 return bdrv_format_is_whitelisted(drv->format_name, read_only);
489}
490
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000491bool bdrv_uses_whitelist(void)
492{
493 return use_bdrv_whitelist;
494}
495
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800496typedef struct CreateCo {
497 BlockDriver *drv;
498 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800499 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800500 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200501 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800502} CreateCo;
503
504static void coroutine_fn bdrv_create_co_entry(void *opaque)
505{
Max Reitzcc84d902013-09-06 17:14:26 +0200506 Error *local_err = NULL;
507 int ret;
508
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800509 CreateCo *cco = opaque;
510 assert(cco->drv);
511
Maxim Levitskyb92902d2020-03-26 03:12:17 +0200512 ret = cco->drv->bdrv_co_create_opts(cco->drv,
513 cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300514 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200515 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800516}
517
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200518int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800519 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000520{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800521 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200522
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800523 Coroutine *co;
524 CreateCo cco = {
525 .drv = drv,
526 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800527 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800528 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200529 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800530 };
531
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100532 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200533 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300534 ret = -ENOTSUP;
535 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800536 }
537
538 if (qemu_in_coroutine()) {
539 /* Fast-path if already in coroutine context */
540 bdrv_create_co_entry(&cco);
541 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200542 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
543 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800544 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200545 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800546 }
547 }
548
549 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200550 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100551 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200552 error_propagate(errp, cco.err);
553 } else {
554 error_setg_errno(errp, -ret, "Could not create image");
555 }
556 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800557
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300558out:
559 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800560 return ret;
bellardea2384d2004-08-01 21:59:26 +0000561}
562
Max Reitzfd171462020-01-22 17:45:29 +0100563/**
564 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
565 * least the given @minimum_size.
566 *
567 * On success, return @blk's actual length.
568 * Otherwise, return -errno.
569 */
570static int64_t create_file_fallback_truncate(BlockBackend *blk,
571 int64_t minimum_size, Error **errp)
572{
573 Error *local_err = NULL;
574 int64_t size;
575 int ret;
576
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200577 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
578 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100579 if (ret < 0 && ret != -ENOTSUP) {
580 error_propagate(errp, local_err);
581 return ret;
582 }
583
584 size = blk_getlength(blk);
585 if (size < 0) {
586 error_free(local_err);
587 error_setg_errno(errp, -size,
588 "Failed to inquire the new image file's length");
589 return size;
590 }
591
592 if (size < minimum_size) {
593 /* Need to grow the image, but we failed to do that */
594 error_propagate(errp, local_err);
595 return -ENOTSUP;
596 }
597
598 error_free(local_err);
599 local_err = NULL;
600
601 return size;
602}
603
604/**
605 * Helper function for bdrv_create_file_fallback(): Zero the first
606 * sector to remove any potentially pre-existing image header.
607 */
608static int create_file_fallback_zero_first_sector(BlockBackend *blk,
609 int64_t current_size,
610 Error **errp)
611{
612 int64_t bytes_to_clear;
613 int ret;
614
615 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
616 if (bytes_to_clear) {
617 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
618 if (ret < 0) {
619 error_setg_errno(errp, -ret,
620 "Failed to clear the new image's first sector");
621 return ret;
622 }
623 }
624
625 return 0;
626}
627
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200628/**
629 * Simple implementation of bdrv_co_create_opts for protocol drivers
630 * which only support creation via opening a file
631 * (usually existing raw storage device)
632 */
633int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
634 const char *filename,
635 QemuOpts *opts,
636 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100637{
638 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100639 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100640 int64_t size = 0;
641 char *buf = NULL;
642 PreallocMode prealloc;
643 Error *local_err = NULL;
644 int ret;
645
646 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
647 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
648 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
649 PREALLOC_MODE_OFF, &local_err);
650 g_free(buf);
651 if (local_err) {
652 error_propagate(errp, local_err);
653 return -EINVAL;
654 }
655
656 if (prealloc != PREALLOC_MODE_OFF) {
657 error_setg(errp, "Unsupported preallocation mode '%s'",
658 PreallocMode_str(prealloc));
659 return -ENOTSUP;
660 }
661
Max Reitzeeea1fa2020-02-25 16:56:18 +0100662 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100663 qdict_put_str(options, "driver", drv->format_name);
664
665 blk = blk_new_open(filename, NULL, options,
666 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
667 if (!blk) {
668 error_prepend(errp, "Protocol driver '%s' does not support image "
669 "creation, and opening the image failed: ",
670 drv->format_name);
671 return -EINVAL;
672 }
673
674 size = create_file_fallback_truncate(blk, size, errp);
675 if (size < 0) {
676 ret = size;
677 goto out;
678 }
679
680 ret = create_file_fallback_zero_first_sector(blk, size, errp);
681 if (ret < 0) {
682 goto out;
683 }
684
685 ret = 0;
686out:
687 blk_unref(blk);
688 return ret;
689}
690
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800691int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200692{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100693 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200694 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100695 QDict *qdict;
696 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200697
Max Reitzb65a5e12015-02-05 13:58:12 -0500698 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200699 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000700 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200701 }
702
Stefano Garzarella729222a2021-03-08 17:12:32 +0100703 if (!drv->create_opts) {
704 error_setg(errp, "Driver '%s' does not support image creation",
705 drv->format_name);
706 return -ENOTSUP;
707 }
708
709 /*
710 * 'opts' contains a QemuOptsList with a combination of format and protocol
711 * default values.
712 *
713 * The format properly removes its options, but the default values remain
714 * in 'opts->list'. So if the protocol has options with the same name
715 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
716 * of the format, since for overlapping options, the format wins.
717 *
718 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
719 * only the set options, and then convert it back to QemuOpts, using the
720 * create_opts of the protocol. So the new QemuOpts, will contain only the
721 * protocol defaults.
722 */
723 qdict = qemu_opts_to_qdict(opts, NULL);
724 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
725 if (protocol_opts == NULL) {
726 ret = -EINVAL;
727 goto out;
728 }
729
730 ret = bdrv_create(drv, filename, protocol_opts, errp);
731out:
732 qemu_opts_del(protocol_opts);
733 qobject_unref(qdict);
734 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200735}
736
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300737int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
738{
739 Error *local_err = NULL;
740 int ret;
741
742 assert(bs != NULL);
743
744 if (!bs->drv) {
745 error_setg(errp, "Block node '%s' is not opened", bs->filename);
746 return -ENOMEDIUM;
747 }
748
749 if (!bs->drv->bdrv_co_delete_file) {
750 error_setg(errp, "Driver '%s' does not support image deletion",
751 bs->drv->format_name);
752 return -ENOTSUP;
753 }
754
755 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
756 if (ret < 0) {
757 error_propagate(errp, local_err);
758 }
759
760 return ret;
761}
762
Maxim Levitskya890f082020-12-17 19:09:03 +0200763void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
764{
765 Error *local_err = NULL;
766 int ret;
767
768 if (!bs) {
769 return;
770 }
771
772 ret = bdrv_co_delete_file(bs, &local_err);
773 /*
774 * ENOTSUP will happen if the block driver doesn't support
775 * the 'bdrv_co_delete_file' interface. This is a predictable
776 * scenario and shouldn't be reported back to the user.
777 */
778 if (ret == -ENOTSUP) {
779 error_free(local_err);
780 } else if (ret < 0) {
781 error_report_err(local_err);
782 }
783}
784
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100785/**
786 * Try to get @bs's logical and physical block size.
787 * On success, store them in @bsz struct and return 0.
788 * On failure return -errno.
789 * @bs must not be empty.
790 */
791int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
792{
793 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200794 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100795
796 if (drv && drv->bdrv_probe_blocksizes) {
797 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200798 } else if (filtered) {
799 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100800 }
801
802 return -ENOTSUP;
803}
804
805/**
806 * Try to get @bs's geometry (cyls, heads, sectors).
807 * On success, store them in @geo struct and return 0.
808 * On failure return -errno.
809 * @bs must not be empty.
810 */
811int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
812{
813 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200814 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100815
816 if (drv && drv->bdrv_probe_geometry) {
817 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200818 } else if (filtered) {
819 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100820 }
821
822 return -ENOTSUP;
823}
824
Jim Meyeringeba25052012-05-28 09:27:54 +0200825/*
826 * Create a uniquely-named empty temporary file.
827 * Return 0 upon success, otherwise a negative errno value.
828 */
829int get_tmp_filename(char *filename, int size)
830{
bellardd5249392004-08-03 21:14:23 +0000831#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000832 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200833 /* GetTempFileName requires that its output buffer (4th param)
834 have length MAX_PATH or greater. */
835 assert(size >= MAX_PATH);
836 return (GetTempPath(MAX_PATH, temp_dir)
837 && GetTempFileName(temp_dir, "qem", 0, filename)
838 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000839#else
bellardea2384d2004-08-01 21:59:26 +0000840 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000841 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000842 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530843 if (!tmpdir) {
844 tmpdir = "/var/tmp";
845 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200846 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
847 return -EOVERFLOW;
848 }
bellardea2384d2004-08-01 21:59:26 +0000849 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800850 if (fd < 0) {
851 return -errno;
852 }
853 if (close(fd) != 0) {
854 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200855 return -errno;
856 }
857 return 0;
bellardd5249392004-08-03 21:14:23 +0000858#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200859}
bellardea2384d2004-08-01 21:59:26 +0000860
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200861/*
862 * Detect host devices. By convention, /dev/cdrom[N] is always
863 * recognized as a host CDROM.
864 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200865static BlockDriver *find_hdev_driver(const char *filename)
866{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200867 int score_max = 0, score;
868 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200869
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100870 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200871 if (d->bdrv_probe_device) {
872 score = d->bdrv_probe_device(filename);
873 if (score > score_max) {
874 score_max = score;
875 drv = d;
876 }
877 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200878 }
879
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200880 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200881}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200882
Marc Mari88d88792016-08-12 09:27:03 -0400883static BlockDriver *bdrv_do_find_protocol(const char *protocol)
884{
885 BlockDriver *drv1;
886
887 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
888 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
889 return drv1;
890 }
891 }
892
893 return NULL;
894}
895
Kevin Wolf98289622013-07-10 15:47:39 +0200896BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500897 bool allow_protocol_prefix,
898 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200899{
900 BlockDriver *drv1;
901 char protocol[128];
902 int len;
903 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400904 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200905
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200906 /* TODO Drivers without bdrv_file_open must be specified explicitly */
907
Christoph Hellwig39508e72010-06-23 12:25:17 +0200908 /*
909 * XXX(hch): we really should not let host device detection
910 * override an explicit protocol specification, but moving this
911 * later breaks access to device names with colons in them.
912 * Thanks to the brain-dead persistent naming schemes on udev-
913 * based Linux systems those actually are quite common.
914 */
915 drv1 = find_hdev_driver(filename);
916 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200917 return drv1;
918 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200919
Kevin Wolf98289622013-07-10 15:47:39 +0200920 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100921 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200922 }
Kevin Wolf98289622013-07-10 15:47:39 +0200923
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000924 p = strchr(filename, ':');
925 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200926 len = p - filename;
927 if (len > sizeof(protocol) - 1)
928 len = sizeof(protocol) - 1;
929 memcpy(protocol, filename, len);
930 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400931
932 drv1 = bdrv_do_find_protocol(protocol);
933 if (drv1) {
934 return drv1;
935 }
936
937 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
938 if (block_driver_modules[i].protocol_name &&
939 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
940 block_module_load_one(block_driver_modules[i].library_name);
941 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200942 }
943 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500944
Marc Mari88d88792016-08-12 09:27:03 -0400945 drv1 = bdrv_do_find_protocol(protocol);
946 if (!drv1) {
947 error_setg(errp, "Unknown protocol '%s'", protocol);
948 }
949 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200950}
951
Markus Armbrusterc6684242014-11-20 16:27:10 +0100952/*
953 * Guess image format by probing its contents.
954 * This is not a good idea when your image is raw (CVE-2008-2004), but
955 * we do it anyway for backward compatibility.
956 *
957 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100958 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
959 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100960 * @filename is its filename.
961 *
962 * For all block drivers, call the bdrv_probe() method to get its
963 * probing score.
964 * Return the first block driver with the highest probing score.
965 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100966BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
967 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100968{
969 int score_max = 0, score;
970 BlockDriver *drv = NULL, *d;
971
972 QLIST_FOREACH(d, &bdrv_drivers, list) {
973 if (d->bdrv_probe) {
974 score = d->bdrv_probe(buf, buf_size, filename);
975 if (score > score_max) {
976 score_max = score;
977 drv = d;
978 }
979 }
980 }
981
982 return drv;
983}
984
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100985static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200986 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000987{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100988 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100989 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100990 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700991
Kevin Wolf08a00552010-06-01 18:37:31 +0200992 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100993 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100994 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200995 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700996 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700997
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100998 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000999 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001000 error_setg_errno(errp, -ret, "Could not read image for determining its "
1001 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +02001002 *pdrv = NULL;
1003 return ret;
bellard83f64092006-08-01 16:21:11 +00001004 }
1005
Markus Armbrusterc6684242014-11-20 16:27:10 +01001006 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001007 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001008 error_setg(errp, "Could not determine image format: No compatible "
1009 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +02001010 ret = -ENOENT;
1011 }
1012 *pdrv = drv;
1013 return ret;
bellardea2384d2004-08-01 21:59:26 +00001014}
1015
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001016/**
1017 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001018 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001019 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +02001020int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001021{
1022 BlockDriver *drv = bs->drv;
1023
Max Reitzd470ad42017-11-10 21:31:09 +01001024 if (!drv) {
1025 return -ENOMEDIUM;
1026 }
1027
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001028 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001029 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001030 return 0;
1031
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001032 /* query actual device if possible, otherwise just trust the hint */
1033 if (drv->bdrv_getlength) {
1034 int64_t length = drv->bdrv_getlength(bs);
1035 if (length < 0) {
1036 return length;
1037 }
Fam Zheng7e382002013-11-06 19:48:06 +08001038 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001039 }
1040
1041 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001042
1043 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1044 return -EFBIG;
1045 }
1046
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001047 return 0;
1048}
1049
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001050/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001051 * Combines a QDict of new block driver @options with any missing options taken
1052 * from @old_options, so that leaving out an option defaults to its old value.
1053 */
1054static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1055 QDict *old_options)
1056{
1057 if (bs->drv && bs->drv->bdrv_join_options) {
1058 bs->drv->bdrv_join_options(options, old_options);
1059 } else {
1060 qdict_join(options, old_options, false);
1061 }
1062}
1063
Alberto Garcia543770b2018-09-06 12:37:09 +03001064static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1065 int open_flags,
1066 Error **errp)
1067{
1068 Error *local_err = NULL;
1069 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1070 BlockdevDetectZeroesOptions detect_zeroes =
1071 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1072 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1073 g_free(value);
1074 if (local_err) {
1075 error_propagate(errp, local_err);
1076 return detect_zeroes;
1077 }
1078
1079 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1080 !(open_flags & BDRV_O_UNMAP))
1081 {
1082 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1083 "without setting discard operation to unmap");
1084 }
1085
1086 return detect_zeroes;
1087}
1088
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001089/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001090 * Set open flags for aio engine
1091 *
1092 * Return 0 on success, -1 if the engine specified is invalid
1093 */
1094int bdrv_parse_aio(const char *mode, int *flags)
1095{
1096 if (!strcmp(mode, "threads")) {
1097 /* do nothing, default */
1098 } else if (!strcmp(mode, "native")) {
1099 *flags |= BDRV_O_NATIVE_AIO;
1100#ifdef CONFIG_LINUX_IO_URING
1101 } else if (!strcmp(mode, "io_uring")) {
1102 *flags |= BDRV_O_IO_URING;
1103#endif
1104 } else {
1105 return -1;
1106 }
1107
1108 return 0;
1109}
1110
1111/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001112 * Set open flags for a given discard mode
1113 *
1114 * Return 0 on success, -1 if the discard mode was invalid.
1115 */
1116int bdrv_parse_discard_flags(const char *mode, int *flags)
1117{
1118 *flags &= ~BDRV_O_UNMAP;
1119
1120 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1121 /* do nothing */
1122 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1123 *flags |= BDRV_O_UNMAP;
1124 } else {
1125 return -1;
1126 }
1127
1128 return 0;
1129}
1130
1131/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001132 * Set open flags for a given cache mode
1133 *
1134 * Return 0 on success, -1 if the cache mode was invalid.
1135 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001136int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001137{
1138 *flags &= ~BDRV_O_CACHE_MASK;
1139
1140 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001141 *writethrough = false;
1142 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001143 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001144 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001145 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001146 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001147 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001148 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001149 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001150 *flags |= BDRV_O_NO_FLUSH;
1151 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001152 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001153 } else {
1154 return -1;
1155 }
1156
1157 return 0;
1158}
1159
Kevin Wolfb5411552017-01-17 15:56:16 +01001160static char *bdrv_child_get_parent_desc(BdrvChild *c)
1161{
1162 BlockDriverState *parent = c->opaque;
Vladimir Sementsov-Ogievskiy2c0a3ac2021-06-01 10:52:15 +03001163 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
Kevin Wolfb5411552017-01-17 15:56:16 +01001164}
1165
Kevin Wolf20018e12016-05-23 18:46:59 +02001166static void bdrv_child_cb_drained_begin(BdrvChild *child)
1167{
1168 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001169 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +02001170}
1171
Kevin Wolf89bd0302018-03-22 14:11:20 +01001172static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1173{
1174 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001175 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001176}
1177
Max Reitze037c092019-07-19 11:26:14 +02001178static void bdrv_child_cb_drained_end(BdrvChild *child,
1179 int *drained_end_counter)
Kevin Wolf20018e12016-05-23 18:46:59 +02001180{
1181 BlockDriverState *bs = child->opaque;
Max Reitze037c092019-07-19 11:26:14 +02001182 bdrv_drained_end_no_poll(bs, drained_end_counter);
Kevin Wolf20018e12016-05-23 18:46:59 +02001183}
1184
Kevin Wolf38701b62017-05-04 18:52:39 +02001185static int bdrv_child_cb_inactivate(BdrvChild *child)
1186{
1187 BlockDriverState *bs = child->opaque;
1188 assert(bs->open_flags & BDRV_O_INACTIVE);
1189 return 0;
1190}
1191
Kevin Wolf5d231842019-05-06 19:17:56 +02001192static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1193 GSList **ignore, Error **errp)
1194{
1195 BlockDriverState *bs = child->opaque;
1196 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1197}
1198
Kevin Wolf53a7d042019-05-06 19:17:59 +02001199static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1200 GSList **ignore)
1201{
1202 BlockDriverState *bs = child->opaque;
1203 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1204}
1205
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001206/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001207 * Returns the options and flags that a temporary snapshot should get, based on
1208 * the originally requested flags (the originally requested image will have
1209 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001210 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001211static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1212 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001213{
Kevin Wolf73176be2016-03-07 13:02:15 +01001214 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1215
1216 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001217 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1218 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001219
Kevin Wolf3f486862019-04-04 17:04:43 +02001220 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001221 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001222 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001223
Kevin Wolf41869042016-06-16 12:59:30 +02001224 /* aio=native doesn't work for cache.direct=off, so disable it for the
1225 * temporary snapshot */
1226 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001227}
1228
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001229static void bdrv_backing_attach(BdrvChild *c)
1230{
1231 BlockDriverState *parent = c->opaque;
1232 BlockDriverState *backing_hd = c->bs;
1233
1234 assert(!parent->backing_blocker);
1235 error_setg(&parent->backing_blocker,
1236 "node is used as backing hd of '%s'",
1237 bdrv_get_device_or_node_name(parent));
1238
Max Reitzf30c66b2019-02-01 20:29:05 +01001239 bdrv_refresh_filename(backing_hd);
1240
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001241 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001242
1243 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1244 /* Otherwise we won't be able to commit or stream */
1245 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1246 parent->backing_blocker);
1247 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1248 parent->backing_blocker);
1249 /*
1250 * We do backup in 3 ways:
1251 * 1. drive backup
1252 * The target bs is new opened, and the source is top BDS
1253 * 2. blockdev backup
1254 * Both the source and the target are top BDSes.
1255 * 3. internal backup(used for block replication)
1256 * Both the source and the target are backing file
1257 *
1258 * In case 1 and 2, neither the source nor the target is the backing file.
1259 * In case 3, we will block the top BDS, so there is only one block job
1260 * for the top BDS and its backing chain.
1261 */
1262 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1263 parent->backing_blocker);
1264 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1265 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001266}
Kevin Wolfd736f112017-12-18 16:05:48 +01001267
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001268static void bdrv_backing_detach(BdrvChild *c)
1269{
1270 BlockDriverState *parent = c->opaque;
1271
1272 assert(parent->backing_blocker);
1273 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1274 error_free(parent->backing_blocker);
1275 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001276}
Kevin Wolfd736f112017-12-18 16:05:48 +01001277
Kevin Wolf6858eba2017-06-29 19:32:21 +02001278static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1279 const char *filename, Error **errp)
1280{
1281 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001282 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001283 int ret;
1284
Alberto Garciae94d3db2018-11-12 16:00:34 +02001285 if (read_only) {
1286 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001287 if (ret < 0) {
1288 return ret;
1289 }
1290 }
1291
Kevin Wolf6858eba2017-06-29 19:32:21 +02001292 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001293 base->drv ? base->drv->format_name : "",
1294 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001295 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001296 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001297 }
1298
Alberto Garciae94d3db2018-11-12 16:00:34 +02001299 if (read_only) {
1300 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001301 }
1302
Kevin Wolf6858eba2017-06-29 19:32:21 +02001303 return ret;
1304}
1305
Max Reitzfae8bd32020-05-13 13:05:20 +02001306/*
1307 * Returns the options and flags that a generic child of a BDS should
1308 * get, based on the given options and flags for the parent BDS.
1309 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001310static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1311 int *child_flags, QDict *child_options,
1312 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001313{
1314 int flags = parent_flags;
1315
1316 /*
1317 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1318 * Generally, the question to answer is: Should this child be
1319 * format-probed by default?
1320 */
1321
1322 /*
1323 * Pure and non-filtered data children of non-format nodes should
1324 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1325 * set). This only affects a very limited set of drivers (namely
1326 * quorum and blkverify when this comment was written).
1327 * Force-clear BDRV_O_PROTOCOL then.
1328 */
1329 if (!parent_is_format &&
1330 (role & BDRV_CHILD_DATA) &&
1331 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1332 {
1333 flags &= ~BDRV_O_PROTOCOL;
1334 }
1335
1336 /*
1337 * All children of format nodes (except for COW children) and all
1338 * metadata children in general should never be format-probed.
1339 * Force-set BDRV_O_PROTOCOL then.
1340 */
1341 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1342 (role & BDRV_CHILD_METADATA))
1343 {
1344 flags |= BDRV_O_PROTOCOL;
1345 }
1346
1347 /*
1348 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1349 * the parent.
1350 */
1351 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1352 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1353 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1354
1355 if (role & BDRV_CHILD_COW) {
1356 /* backing files are opened read-only by default */
1357 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1358 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1359 } else {
1360 /* Inherit the read-only option from the parent if it's not set */
1361 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1362 qdict_copy_default(child_options, parent_options,
1363 BDRV_OPT_AUTO_READ_ONLY);
1364 }
1365
1366 /*
1367 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1368 * can default to enable it on lower layers regardless of the
1369 * parent option.
1370 */
1371 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1372
1373 /* Clear flags that only apply to the top layer */
1374 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1375
1376 if (role & BDRV_CHILD_METADATA) {
1377 flags &= ~BDRV_O_NO_IO;
1378 }
1379 if (role & BDRV_CHILD_COW) {
1380 flags &= ~BDRV_O_TEMPORARY;
1381 }
1382
1383 *child_flags = flags;
1384}
1385
Max Reitzca2f1232020-05-13 13:05:22 +02001386static void bdrv_child_cb_attach(BdrvChild *child)
1387{
1388 BlockDriverState *bs = child->opaque;
1389
Hanna Reitza2253692021-11-15 15:53:58 +01001390 QLIST_INSERT_HEAD(&bs->children, child, next);
1391
Max Reitzca2f1232020-05-13 13:05:22 +02001392 if (child->role & BDRV_CHILD_COW) {
1393 bdrv_backing_attach(child);
1394 }
1395
1396 bdrv_apply_subtree_drain(child, bs);
1397}
1398
Max Reitz48e08282020-05-13 13:05:23 +02001399static void bdrv_child_cb_detach(BdrvChild *child)
1400{
1401 BlockDriverState *bs = child->opaque;
1402
1403 if (child->role & BDRV_CHILD_COW) {
1404 bdrv_backing_detach(child);
1405 }
1406
1407 bdrv_unapply_subtree_drain(child, bs);
Hanna Reitza2253692021-11-15 15:53:58 +01001408
1409 QLIST_REMOVE(child, next);
Max Reitz48e08282020-05-13 13:05:23 +02001410}
1411
Max Reitz43483552020-05-13 13:05:24 +02001412static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1413 const char *filename, Error **errp)
1414{
1415 if (c->role & BDRV_CHILD_COW) {
1416 return bdrv_backing_update_filename(c, base, filename, errp);
1417 }
1418 return 0;
1419}
1420
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001421AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001422{
1423 BlockDriverState *bs = c->opaque;
1424
1425 return bdrv_get_aio_context(bs);
1426}
1427
Max Reitz43483552020-05-13 13:05:24 +02001428const BdrvChildClass child_of_bds = {
1429 .parent_is_bds = true,
1430 .get_parent_desc = bdrv_child_get_parent_desc,
1431 .inherit_options = bdrv_inherited_options,
1432 .drained_begin = bdrv_child_cb_drained_begin,
1433 .drained_poll = bdrv_child_cb_drained_poll,
1434 .drained_end = bdrv_child_cb_drained_end,
1435 .attach = bdrv_child_cb_attach,
1436 .detach = bdrv_child_cb_detach,
1437 .inactivate = bdrv_child_cb_inactivate,
1438 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1439 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1440 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001441 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001442};
1443
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001444AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1445{
1446 return c->klass->get_parent_aio_context(c);
1447}
1448
Kevin Wolf7b272452012-11-12 17:05:39 +01001449static int bdrv_open_flags(BlockDriverState *bs, int flags)
1450{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001451 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001452
1453 /*
1454 * Clear flags that are internal to the block layer before opening the
1455 * image.
1456 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001457 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001458
Kevin Wolf7b272452012-11-12 17:05:39 +01001459 return open_flags;
1460}
1461
Kevin Wolf91a097e2015-05-08 17:49:53 +02001462static void update_flags_from_options(int *flags, QemuOpts *opts)
1463{
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001464 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001465
Alberto Garcia57f9db92018-09-06 12:37:06 +03001466 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001467 *flags |= BDRV_O_NO_FLUSH;
1468 }
1469
Alberto Garcia57f9db92018-09-06 12:37:06 +03001470 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001471 *flags |= BDRV_O_NOCACHE;
1472 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001473
Alberto Garcia57f9db92018-09-06 12:37:06 +03001474 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001475 *flags |= BDRV_O_RDWR;
1476 }
1477
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001478 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1479 *flags |= BDRV_O_AUTO_RDONLY;
1480 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001481}
1482
1483static void update_options_from_flags(QDict *options, int flags)
1484{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001485 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001486 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001487 }
1488 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001489 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1490 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001491 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001492 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001493 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001494 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001495 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1496 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1497 flags & BDRV_O_AUTO_RDONLY);
1498 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001499}
1500
Kevin Wolf636ea372014-01-24 14:11:52 +01001501static void bdrv_assign_node_name(BlockDriverState *bs,
1502 const char *node_name,
1503 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001504{
Jeff Cody15489c72015-10-12 19:36:50 -04001505 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001506
Jeff Cody15489c72015-10-12 19:36:50 -04001507 if (!node_name) {
1508 node_name = gen_node_name = id_generate(ID_BLOCK);
1509 } else if (!id_wellformed(node_name)) {
1510 /*
1511 * Check for empty string or invalid characters, but not if it is
1512 * generated (generated names use characters not available to the user)
1513 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001514 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001515 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001516 }
1517
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001518 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001519 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001520 error_setg(errp, "node-name=%s is conflicting with a device id",
1521 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001522 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001523 }
1524
Benoît Canet6913c0c2014-01-23 21:31:33 +01001525 /* takes care of avoiding duplicates node names */
1526 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001527 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001528 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001529 }
1530
Kevin Wolf824808d2018-07-04 13:28:29 +02001531 /* Make sure that the node name isn't truncated */
1532 if (strlen(node_name) >= sizeof(bs->node_name)) {
1533 error_setg(errp, "Node name too long");
1534 goto out;
1535 }
1536
Benoît Canet6913c0c2014-01-23 21:31:33 +01001537 /* copy node name into the bs and insert it into the graph list */
1538 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1539 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001540out:
1541 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001542}
1543
Kevin Wolf01a56502017-01-18 15:51:56 +01001544static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1545 const char *node_name, QDict *options,
1546 int open_flags, Error **errp)
1547{
1548 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001549 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001550
1551 bdrv_assign_node_name(bs, node_name, &local_err);
1552 if (local_err) {
1553 error_propagate(errp, local_err);
1554 return -EINVAL;
1555 }
1556
1557 bs->drv = drv;
1558 bs->opaque = g_malloc0(drv->instance_size);
1559
1560 if (drv->bdrv_file_open) {
1561 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1562 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001563 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001564 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001565 } else {
1566 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001567 }
1568
1569 if (ret < 0) {
1570 if (local_err) {
1571 error_propagate(errp, local_err);
1572 } else if (bs->filename[0]) {
1573 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1574 } else {
1575 error_setg_errno(errp, -ret, "Could not open image");
1576 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001577 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001578 }
1579
1580 ret = refresh_total_sectors(bs, bs->total_sectors);
1581 if (ret < 0) {
1582 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001583 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001584 }
1585
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001586 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolf01a56502017-01-18 15:51:56 +01001587 if (local_err) {
1588 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001589 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001590 }
1591
1592 assert(bdrv_opt_mem_align(bs) != 0);
1593 assert(bdrv_min_mem_align(bs) != 0);
1594 assert(is_power_of_2(bs->bl.request_alignment));
1595
Kevin Wolf0f122642018-03-28 18:29:18 +02001596 for (i = 0; i < bs->quiesce_counter; i++) {
1597 if (drv->bdrv_co_drain_begin) {
1598 drv->bdrv_co_drain_begin(bs);
1599 }
1600 }
1601
Kevin Wolf01a56502017-01-18 15:51:56 +01001602 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001603open_failed:
1604 bs->drv = NULL;
1605 if (bs->file != NULL) {
1606 bdrv_unref_child(bs, bs->file);
1607 bs->file = NULL;
1608 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001609 g_free(bs->opaque);
1610 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001611 return ret;
1612}
1613
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001614/*
1615 * Create and open a block node.
1616 *
1617 * @options is a QDict of options to pass to the block drivers, or NULL for an
1618 * empty set of options. The reference to the QDict belongs to the block layer
1619 * after the call (even on failure), so if the caller intends to reuse the
1620 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1621 */
1622BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1623 const char *node_name,
1624 QDict *options, int flags,
1625 Error **errp)
Kevin Wolf680c7f92017-01-18 17:16:41 +01001626{
1627 BlockDriverState *bs;
1628 int ret;
1629
1630 bs = bdrv_new();
1631 bs->open_flags = flags;
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001632 bs->options = options ?: qdict_new();
1633 bs->explicit_options = qdict_clone_shallow(bs->options);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001634 bs->opaque = NULL;
1635
1636 update_options_from_flags(bs->options, flags);
1637
1638 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1639 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001640 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001641 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001642 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001643 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001644 bdrv_unref(bs);
1645 return NULL;
1646 }
1647
1648 return bs;
1649}
1650
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001651/* Create and open a block node. */
1652BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1653 int flags, Error **errp)
1654{
1655 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1656}
1657
Kevin Wolfc5f30142016-10-06 11:33:17 +02001658QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001659 .name = "bdrv_common",
1660 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1661 .desc = {
1662 {
1663 .name = "node-name",
1664 .type = QEMU_OPT_STRING,
1665 .help = "Node name of the block device node",
1666 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001667 {
1668 .name = "driver",
1669 .type = QEMU_OPT_STRING,
1670 .help = "Block driver to use for the node",
1671 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001672 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001673 .name = BDRV_OPT_CACHE_DIRECT,
1674 .type = QEMU_OPT_BOOL,
1675 .help = "Bypass software writeback cache on the host",
1676 },
1677 {
1678 .name = BDRV_OPT_CACHE_NO_FLUSH,
1679 .type = QEMU_OPT_BOOL,
1680 .help = "Ignore flush requests",
1681 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001682 {
1683 .name = BDRV_OPT_READ_ONLY,
1684 .type = QEMU_OPT_BOOL,
1685 .help = "Node is opened in read-only mode",
1686 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001687 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001688 .name = BDRV_OPT_AUTO_READ_ONLY,
1689 .type = QEMU_OPT_BOOL,
1690 .help = "Node can become read-only if opening read-write fails",
1691 },
1692 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001693 .name = "detect-zeroes",
1694 .type = QEMU_OPT_STRING,
1695 .help = "try to optimize zero writes (off, on, unmap)",
1696 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001697 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001698 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001699 .type = QEMU_OPT_STRING,
1700 .help = "discard operation (ignore/off, unmap/on)",
1701 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001702 {
1703 .name = BDRV_OPT_FORCE_SHARE,
1704 .type = QEMU_OPT_BOOL,
1705 .help = "always accept other writers (default: off)",
1706 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001707 { /* end of list */ }
1708 },
1709};
1710
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001711QemuOptsList bdrv_create_opts_simple = {
1712 .name = "simple-create-opts",
1713 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001714 .desc = {
1715 {
1716 .name = BLOCK_OPT_SIZE,
1717 .type = QEMU_OPT_SIZE,
1718 .help = "Virtual disk size"
1719 },
1720 {
1721 .name = BLOCK_OPT_PREALLOC,
1722 .type = QEMU_OPT_STRING,
1723 .help = "Preallocation mode (allowed values: off)"
1724 },
1725 { /* end of list */ }
1726 }
1727};
1728
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001729/*
Kevin Wolf57915332010-04-14 15:24:50 +02001730 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001731 *
1732 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001733 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001734static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001735 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001736{
1737 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001738 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001739 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001740 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001741 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001742 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001743 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001744 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001745 bool ro;
Kevin Wolf57915332010-04-14 15:24:50 +02001746
Paolo Bonzini64058752012-05-08 16:51:49 +02001747 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001748 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001749
Kevin Wolf62392eb2015-04-24 16:38:02 +02001750 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001751 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001752 ret = -EINVAL;
1753 goto fail_opts;
1754 }
1755
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001756 update_flags_from_options(&bs->open_flags, opts);
1757
Kevin Wolf62392eb2015-04-24 16:38:02 +02001758 driver_name = qemu_opt_get(opts, "driver");
1759 drv = bdrv_find_format(driver_name);
1760 assert(drv != NULL);
1761
Fam Zheng5a9347c2017-05-03 00:35:37 +08001762 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1763
1764 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1765 error_setg(errp,
1766 BDRV_OPT_FORCE_SHARE
1767 "=on can only be used with read-only images");
1768 ret = -EINVAL;
1769 goto fail_opts;
1770 }
1771
Kevin Wolf45673672013-04-22 17:48:40 +02001772 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001773 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001774 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001775 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001776 /*
1777 * Caution: while qdict_get_try_str() is fine, getting
1778 * non-string types would require more care. When @options
1779 * come from -blockdev or blockdev_add, its members are typed
1780 * according to the QAPI schema, but when they come from
1781 * -drive, they're all QString.
1782 */
Kevin Wolf45673672013-04-22 17:48:40 +02001783 filename = qdict_get_try_str(options, "filename");
1784 }
1785
Max Reitz4a008242017-04-13 18:06:24 +02001786 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001787 error_setg(errp, "The '%s' block driver requires a file name",
1788 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001789 ret = -EINVAL;
1790 goto fail_opts;
1791 }
1792
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001793 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1794 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001795
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001796 ro = bdrv_is_read_only(bs);
1797
1798 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1799 if (!ro && bdrv_is_whitelisted(drv, true)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001800 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1801 } else {
1802 ret = -ENOTSUP;
1803 }
1804 if (ret < 0) {
1805 error_setg(errp,
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001806 !ro && bdrv_is_whitelisted(drv, true)
Kevin Wolf8be25de2019-01-22 13:15:31 +01001807 ? "Driver '%s' can only be used for read-only devices"
1808 : "Driver '%s' is not whitelisted",
1809 drv->format_name);
1810 goto fail_opts;
1811 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001812 }
Kevin Wolf57915332010-04-14 15:24:50 +02001813
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001814 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001815 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001816
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001817 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001818 if (!ro) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001819 bdrv_enable_copy_on_read(bs);
1820 } else {
1821 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001822 ret = -EINVAL;
1823 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001824 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001825 }
1826
Alberto Garcia415bbca2018-10-03 13:23:13 +03001827 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001828 if (discard != NULL) {
1829 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1830 error_setg(errp, "Invalid discard option");
1831 ret = -EINVAL;
1832 goto fail_opts;
1833 }
1834 }
1835
Alberto Garcia543770b2018-09-06 12:37:09 +03001836 bs->detect_zeroes =
1837 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1838 if (local_err) {
1839 error_propagate(errp, local_err);
1840 ret = -EINVAL;
1841 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001842 }
1843
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001844 if (filename != NULL) {
1845 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1846 } else {
1847 bs->filename[0] = '\0';
1848 }
Max Reitz91af7012014-07-18 20:24:56 +02001849 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001850
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001851 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001852 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001853 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001854
Kevin Wolf01a56502017-01-18 15:51:56 +01001855 assert(!drv->bdrv_file_open || file == NULL);
1856 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001857 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001858 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001859 }
1860
Kevin Wolf18edf282015-04-07 17:12:56 +02001861 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001862 return 0;
1863
Kevin Wolf18edf282015-04-07 17:12:56 +02001864fail_opts:
1865 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001866 return ret;
1867}
1868
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001869static QDict *parse_json_filename(const char *filename, Error **errp)
1870{
1871 QObject *options_obj;
1872 QDict *options;
1873 int ret;
1874
1875 ret = strstart(filename, "json:", &filename);
1876 assert(ret);
1877
Markus Armbruster5577fff2017-02-28 22:26:59 +01001878 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001879 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001880 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001881 return NULL;
1882 }
1883
Max Reitz7dc847e2018-02-24 16:40:29 +01001884 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001885 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001886 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001887 error_setg(errp, "Invalid JSON object given");
1888 return NULL;
1889 }
1890
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001891 qdict_flatten(options);
1892
1893 return options;
1894}
1895
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001896static void parse_json_protocol(QDict *options, const char **pfilename,
1897 Error **errp)
1898{
1899 QDict *json_options;
1900 Error *local_err = NULL;
1901
1902 /* Parse json: pseudo-protocol */
1903 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1904 return;
1905 }
1906
1907 json_options = parse_json_filename(*pfilename, &local_err);
1908 if (local_err) {
1909 error_propagate(errp, local_err);
1910 return;
1911 }
1912
1913 /* Options given in the filename have lower priority than options
1914 * specified directly */
1915 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001916 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001917 *pfilename = NULL;
1918}
1919
Kevin Wolf57915332010-04-14 15:24:50 +02001920/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001921 * Fills in default options for opening images and converts the legacy
1922 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001923 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1924 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001925 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001926static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001927 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001928{
1929 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001930 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001931 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001932 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001933 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001934
Markus Armbruster129c7d12017-03-30 19:43:12 +02001935 /*
1936 * Caution: while qdict_get_try_str() is fine, getting non-string
1937 * types would require more care. When @options come from
1938 * -blockdev or blockdev_add, its members are typed according to
1939 * the QAPI schema, but when they come from -drive, they're all
1940 * QString.
1941 */
Max Reitz53a29512015-03-19 14:53:16 -04001942 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001943 if (drvname) {
1944 drv = bdrv_find_format(drvname);
1945 if (!drv) {
1946 error_setg(errp, "Unknown driver '%s'", drvname);
1947 return -ENOENT;
1948 }
1949 /* If the user has explicitly specified the driver, this choice should
1950 * override the BDRV_O_PROTOCOL flag */
1951 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001952 }
1953
1954 if (protocol) {
1955 *flags |= BDRV_O_PROTOCOL;
1956 } else {
1957 *flags &= ~BDRV_O_PROTOCOL;
1958 }
1959
Kevin Wolf91a097e2015-05-08 17:49:53 +02001960 /* Translate cache options from flags into options */
1961 update_options_from_flags(*options, *flags);
1962
Kevin Wolff54120f2014-05-26 11:09:59 +02001963 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001964 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001965 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001966 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001967 parse_filename = true;
1968 } else {
1969 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1970 "the same time");
1971 return -EINVAL;
1972 }
1973 }
1974
1975 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001976 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001977 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001978
Max Reitz053e1572015-08-26 19:47:51 +02001979 if (!drvname && protocol) {
1980 if (filename) {
1981 drv = bdrv_find_protocol(filename, parse_filename, errp);
1982 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001983 return -EINVAL;
1984 }
Max Reitz053e1572015-08-26 19:47:51 +02001985
1986 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001987 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001988 } else {
1989 error_setg(errp, "Must specify either driver or file");
1990 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001991 }
1992 }
1993
Kevin Wolf17b005f2014-05-27 10:50:29 +02001994 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001995
1996 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001997 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001998 drv->bdrv_parse_filename(filename, *options, &local_err);
1999 if (local_err) {
2000 error_propagate(errp, local_err);
2001 return -EINVAL;
2002 }
2003
2004 if (!drv->bdrv_needs_filename) {
2005 qdict_del(*options, "filename");
2006 }
2007 }
2008
2009 return 0;
2010}
2011
Kevin Wolf148eb132017-09-14 14:32:04 +02002012typedef struct BlockReopenQueueEntry {
2013 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01002014 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02002015 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002016 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02002017} BlockReopenQueueEntry;
2018
2019/*
2020 * Return the flags that @bs will have after the reopens in @q have
2021 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2022 * return the current flags.
2023 */
2024static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2025{
2026 BlockReopenQueueEntry *entry;
2027
2028 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002029 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002030 if (entry->state.bs == bs) {
2031 return entry->state.flags;
2032 }
2033 }
2034 }
2035
2036 return bs->open_flags;
2037}
2038
2039/* Returns whether the image file can be written to after the reopen queue @q
2040 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002041static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2042 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002043{
2044 int flags = bdrv_reopen_get_flags(q, bs);
2045
2046 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2047}
2048
Max Reitzcc022142018-06-06 21:37:00 +02002049/*
2050 * Return whether the BDS can be written to. This is not necessarily
2051 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2052 * be written to but do not count as read-only images.
2053 */
2054bool bdrv_is_writable(BlockDriverState *bs)
2055{
2056 return bdrv_is_writable_after_reopen(bs, NULL);
2057}
2058
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002059static char *bdrv_child_user_desc(BdrvChild *c)
2060{
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002061 return c->klass->get_parent_desc(c);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002062}
2063
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002064/*
2065 * Check that @a allows everything that @b needs. @a and @b must reference same
2066 * child node.
2067 */
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002068static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2069{
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002070 const char *child_bs_name;
2071 g_autofree char *a_user = NULL;
2072 g_autofree char *b_user = NULL;
2073 g_autofree char *perms = NULL;
2074
2075 assert(a->bs);
2076 assert(a->bs == b->bs);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002077
2078 if ((b->perm & a->shared_perm) == b->perm) {
2079 return true;
2080 }
2081
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002082 child_bs_name = bdrv_get_node_name(b->bs);
2083 a_user = bdrv_child_user_desc(a);
2084 b_user = bdrv_child_user_desc(b);
2085 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2086
2087 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2088 "both required by %s (uses node '%s' as '%s' child) and "
2089 "unshared by %s (uses node '%s' as '%s' child).",
2090 child_bs_name, perms,
2091 b_user, child_bs_name, b->name,
2092 a_user, child_bs_name, a->name);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002093
2094 return false;
2095}
2096
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002097static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002098{
2099 BdrvChild *a, *b;
2100
2101 /*
2102 * During the loop we'll look at each pair twice. That's correct because
2103 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2104 * directions.
2105 */
2106 QLIST_FOREACH(a, &bs->parents, next_parent) {
2107 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002108 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002109 continue;
2110 }
2111
2112 if (!bdrv_a_allow_b(a, b, errp)) {
2113 return true;
2114 }
2115 }
2116 }
2117
2118 return false;
2119}
2120
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002121static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02002122 BdrvChild *c, BdrvChildRole role,
2123 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002124 uint64_t parent_perm, uint64_t parent_shared,
2125 uint64_t *nperm, uint64_t *nshared)
2126{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002127 assert(bs->drv && bs->drv->bdrv_child_perm);
Max Reitze5d8a402020-05-13 13:05:44 +02002128 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002129 parent_perm, parent_shared,
2130 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002131 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002132 if (child_bs && child_bs->force_share) {
2133 *nshared = BLK_PERM_ALL;
2134 }
2135}
2136
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002137/*
2138 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2139 * nodes that are already in the @list, of course) so that final list is
2140 * topologically sorted. Return the result (GSList @list object is updated, so
2141 * don't use old reference after function call).
2142 *
2143 * On function start @list must be already topologically sorted and for any node
2144 * in the @list the whole subtree of the node must be in the @list as well. The
2145 * simplest way to satisfy this criteria: use only result of
2146 * bdrv_topological_dfs() or NULL as @list parameter.
2147 */
2148static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2149 BlockDriverState *bs)
2150{
2151 BdrvChild *child;
2152 g_autoptr(GHashTable) local_found = NULL;
2153
2154 if (!found) {
2155 assert(!list);
2156 found = local_found = g_hash_table_new(NULL, NULL);
2157 }
2158
2159 if (g_hash_table_contains(found, bs)) {
2160 return list;
2161 }
2162 g_hash_table_add(found, bs);
2163
2164 QLIST_FOREACH(child, &bs->children, next) {
2165 list = bdrv_topological_dfs(list, found, child->bs);
2166 }
2167
2168 return g_slist_prepend(list, bs);
2169}
2170
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002171typedef struct BdrvChildSetPermState {
2172 BdrvChild *child;
2173 uint64_t old_perm;
2174 uint64_t old_shared_perm;
2175} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002176
2177static void bdrv_child_set_perm_abort(void *opaque)
2178{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002179 BdrvChildSetPermState *s = opaque;
2180
2181 s->child->perm = s->old_perm;
2182 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002183}
2184
2185static TransactionActionDrv bdrv_child_set_pem_drv = {
2186 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002187 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002188};
2189
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002190static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2191 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002192{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002193 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
2194
2195 *s = (BdrvChildSetPermState) {
2196 .child = c,
2197 .old_perm = c->perm,
2198 .old_shared_perm = c->shared_perm,
2199 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002200
2201 c->perm = perm;
2202 c->shared_perm = shared;
2203
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002204 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002205}
2206
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002207static void bdrv_drv_set_perm_commit(void *opaque)
2208{
2209 BlockDriverState *bs = opaque;
2210 uint64_t cumulative_perms, cumulative_shared_perms;
2211
2212 if (bs->drv->bdrv_set_perm) {
2213 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2214 &cumulative_shared_perms);
2215 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2216 }
2217}
2218
2219static void bdrv_drv_set_perm_abort(void *opaque)
2220{
2221 BlockDriverState *bs = opaque;
2222
2223 if (bs->drv->bdrv_abort_perm_update) {
2224 bs->drv->bdrv_abort_perm_update(bs);
2225 }
2226}
2227
2228TransactionActionDrv bdrv_drv_set_perm_drv = {
2229 .abort = bdrv_drv_set_perm_abort,
2230 .commit = bdrv_drv_set_perm_commit,
2231};
2232
2233static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2234 uint64_t shared_perm, Transaction *tran,
2235 Error **errp)
2236{
2237 if (!bs->drv) {
2238 return 0;
2239 }
2240
2241 if (bs->drv->bdrv_check_perm) {
2242 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2243 if (ret < 0) {
2244 return ret;
2245 }
2246 }
2247
2248 if (tran) {
2249 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2250 }
2251
2252 return 0;
2253}
2254
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002255typedef struct BdrvReplaceChildState {
2256 BdrvChild *child;
2257 BlockDriverState *old_bs;
2258} BdrvReplaceChildState;
2259
2260static void bdrv_replace_child_commit(void *opaque)
2261{
2262 BdrvReplaceChildState *s = opaque;
2263
2264 bdrv_unref(s->old_bs);
2265}
2266
2267static void bdrv_replace_child_abort(void *opaque)
2268{
2269 BdrvReplaceChildState *s = opaque;
2270 BlockDriverState *new_bs = s->child->bs;
2271
2272 /* old_bs reference is transparently moved from @s to @s->child */
2273 bdrv_replace_child_noperm(s->child, s->old_bs);
2274 bdrv_unref(new_bs);
2275}
2276
2277static TransactionActionDrv bdrv_replace_child_drv = {
2278 .commit = bdrv_replace_child_commit,
2279 .abort = bdrv_replace_child_abort,
2280 .clean = g_free,
2281};
2282
2283/*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002284 * bdrv_replace_child_tran
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002285 *
2286 * Note: real unref of old_bs is done only on commit.
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002287 *
2288 * The function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002289 */
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002290static void bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
2291 Transaction *tran)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002292{
2293 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2294 *s = (BdrvReplaceChildState) {
2295 .child = child,
2296 .old_bs = child->bs,
2297 };
2298 tran_add(tran, &bdrv_replace_child_drv, s);
2299
2300 if (new_bs) {
2301 bdrv_ref(new_bs);
2302 }
2303 bdrv_replace_child_noperm(child, new_bs);
2304 /* old_bs reference is transparently moved from @child to @s */
2305}
2306
Kevin Wolf33a610c2016-12-15 13:04:20 +01002307/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002308 * Refresh permissions in @bs subtree. The function is intended to be called
2309 * after some graph modification that was done without permission update.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002310 */
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002311static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2312 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002313{
2314 BlockDriver *drv = bs->drv;
2315 BdrvChild *c;
2316 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002317 uint64_t cumulative_perms, cumulative_shared_perms;
2318
2319 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002320
2321 /* Write permissions never work with read-only images */
2322 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002323 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002324 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002325 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2326 error_setg(errp, "Block node is read-only");
2327 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002328 error_setg(errp, "Read-only block node '%s' cannot support "
2329 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002330 }
2331
Kevin Wolf33a610c2016-12-15 13:04:20 +01002332 return -EPERM;
2333 }
2334
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002335 /*
2336 * Unaligned requests will automatically be aligned to bl.request_alignment
2337 * and without RESIZE we can't extend requests to write to space beyond the
2338 * end of the image, so it's required that the image size is aligned.
2339 */
2340 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2341 !(cumulative_perms & BLK_PERM_RESIZE))
2342 {
2343 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2344 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2345 "Image size is not a multiple of request "
2346 "alignment");
2347 return -EPERM;
2348 }
2349 }
2350
Kevin Wolf33a610c2016-12-15 13:04:20 +01002351 /* Check this node */
2352 if (!drv) {
2353 return 0;
2354 }
2355
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002356 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002357 errp);
2358 if (ret < 0) {
2359 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002360 }
2361
Kevin Wolf78e421c2016-12-20 23:25:12 +01002362 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002363 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002364 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002365 return 0;
2366 }
2367
2368 /* Check all children */
2369 QLIST_FOREACH(c, &bs->children, next) {
2370 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002371
Max Reitze5d8a402020-05-13 13:05:44 +02002372 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002373 cumulative_perms, cumulative_shared_perms,
2374 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002375 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002376 }
2377
2378 return 0;
2379}
2380
Vladimir Sementsov-Ogievskiy25409802021-04-28 18:18:00 +03002381static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2382 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002383{
2384 int ret;
2385 BlockDriverState *bs;
2386
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002387 for ( ; list; list = list->next) {
2388 bs = list->data;
2389
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002390 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002391 return -EINVAL;
2392 }
2393
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002394 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002395 if (ret < 0) {
2396 return ret;
2397 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002398 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002399
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002400 return 0;
2401}
2402
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002403void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2404 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002405{
2406 BdrvChild *c;
2407 uint64_t cumulative_perms = 0;
2408 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2409
2410 QLIST_FOREACH(c, &bs->parents, next_parent) {
2411 cumulative_perms |= c->perm;
2412 cumulative_shared_perms &= c->shared_perm;
2413 }
2414
2415 *perm = cumulative_perms;
2416 *shared_perm = cumulative_shared_perms;
2417}
2418
Fam Zheng51761962017-05-03 00:35:36 +08002419char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002420{
2421 struct perm_name {
2422 uint64_t perm;
2423 const char *name;
2424 } permissions[] = {
2425 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2426 { BLK_PERM_WRITE, "write" },
2427 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2428 { BLK_PERM_RESIZE, "resize" },
2429 { BLK_PERM_GRAPH_MOD, "change children" },
2430 { 0, NULL }
2431 };
2432
Alberto Garciae2a74232020-01-10 18:15:18 +01002433 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002434 struct perm_name *p;
2435
2436 for (p = permissions; p->name; p++) {
2437 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002438 if (result->len > 0) {
2439 g_string_append(result, ", ");
2440 }
2441 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002442 }
2443 }
2444
Alberto Garciae2a74232020-01-10 18:15:18 +01002445 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002446}
2447
Kevin Wolf33a610c2016-12-15 13:04:20 +01002448
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002449static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002450{
2451 int ret;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002452 Transaction *tran = tran_new();
2453 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002454
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002455 ret = bdrv_list_refresh_perms(list, NULL, tran, errp);
2456 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002457
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002458 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002459}
2460
Kevin Wolf33a610c2016-12-15 13:04:20 +01002461int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2462 Error **errp)
2463{
Max Reitz10467792019-05-22 19:03:51 +02002464 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002465 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002466 int ret;
2467
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002468 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002469
2470 ret = bdrv_refresh_perms(c->bs, &local_err);
2471
2472 tran_finalize(tran, ret);
2473
Kevin Wolf33a610c2016-12-15 13:04:20 +01002474 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002475 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2476 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002477 error_propagate(errp, local_err);
2478 } else {
2479 /*
2480 * Our caller may intend to only loosen restrictions and
2481 * does not expect this function to fail. Errors are not
2482 * fatal in such a case, so we can just hide them from our
2483 * caller.
2484 */
2485 error_free(local_err);
2486 ret = 0;
2487 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002488 }
2489
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002490 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002491}
2492
Max Reitzc1087f12019-05-22 19:03:46 +02002493int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2494{
2495 uint64_t parent_perms, parent_shared;
2496 uint64_t perms, shared;
2497
2498 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002499 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002500 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002501
2502 return bdrv_child_try_set_perm(c, perms, shared, errp);
2503}
2504
Max Reitz87278af2020-05-13 13:05:40 +02002505/*
2506 * Default implementation for .bdrv_child_perm() for block filters:
2507 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2508 * filtered child.
2509 */
2510static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002511 BdrvChildRole role,
2512 BlockReopenQueue *reopen_queue,
2513 uint64_t perm, uint64_t shared,
2514 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002515{
Kevin Wolfe444fa82019-08-02 15:59:41 +02002516 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2517 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002518}
2519
Max Reitz70082db2020-05-13 13:05:26 +02002520static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002521 BdrvChildRole role,
2522 BlockReopenQueue *reopen_queue,
2523 uint64_t perm, uint64_t shared,
2524 uint64_t *nperm, uint64_t *nshared)
2525{
Max Reitze5d8a402020-05-13 13:05:44 +02002526 assert(role & BDRV_CHILD_COW);
Max Reitz70082db2020-05-13 13:05:26 +02002527
2528 /*
2529 * We want consistent read from backing files if the parent needs it.
2530 * No other operations are performed on backing files.
2531 */
2532 perm &= BLK_PERM_CONSISTENT_READ;
2533
2534 /*
2535 * If the parent can deal with changing data, we're okay with a
2536 * writable and resizable backing file.
2537 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2538 */
2539 if (shared & BLK_PERM_WRITE) {
2540 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2541 } else {
2542 shared = 0;
2543 }
2544
2545 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2546 BLK_PERM_WRITE_UNCHANGED;
2547
2548 if (bs->open_flags & BDRV_O_INACTIVE) {
2549 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2550 }
2551
2552 *nperm = perm;
2553 *nshared = shared;
2554}
2555
Max Reitz6f838a42020-05-13 13:05:27 +02002556static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002557 BdrvChildRole role,
2558 BlockReopenQueue *reopen_queue,
2559 uint64_t perm, uint64_t shared,
2560 uint64_t *nperm, uint64_t *nshared)
2561{
2562 int flags;
2563
Max Reitze5d8a402020-05-13 13:05:44 +02002564 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002565
2566 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2567
2568 /*
2569 * Apart from the modifications below, the same permissions are
2570 * forwarded and left alone as for filters
2571 */
Max Reitze5d8a402020-05-13 13:05:44 +02002572 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002573 perm, shared, &perm, &shared);
2574
Max Reitzf8890542020-05-13 13:05:28 +02002575 if (role & BDRV_CHILD_METADATA) {
2576 /* Format drivers may touch metadata even if the guest doesn't write */
2577 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2578 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2579 }
2580
2581 /*
2582 * bs->file always needs to be consistent because of the
2583 * metadata. We can never allow other users to resize or write
2584 * to it.
2585 */
2586 if (!(flags & BDRV_O_NO_IO)) {
2587 perm |= BLK_PERM_CONSISTENT_READ;
2588 }
2589 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002590 }
2591
Max Reitzf8890542020-05-13 13:05:28 +02002592 if (role & BDRV_CHILD_DATA) {
2593 /*
2594 * Technically, everything in this block is a subset of the
2595 * BDRV_CHILD_METADATA path taken above, and so this could
2596 * be an "else if" branch. However, that is not obvious, and
2597 * this function is not performance critical, therefore we let
2598 * this be an independent "if".
2599 */
2600
2601 /*
2602 * We cannot allow other users to resize the file because the
2603 * format driver might have some assumptions about the size
2604 * (e.g. because it is stored in metadata, or because the file
2605 * is split into fixed-size data files).
2606 */
2607 shared &= ~BLK_PERM_RESIZE;
2608
2609 /*
2610 * WRITE_UNCHANGED often cannot be performed as such on the
2611 * data file. For example, the qcow2 driver may still need to
2612 * write copied clusters on copy-on-read.
2613 */
2614 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2615 perm |= BLK_PERM_WRITE;
2616 }
2617
2618 /*
2619 * If the data file is written to, the format driver may
2620 * expect to be able to resize it by writing beyond the EOF.
2621 */
2622 if (perm & BLK_PERM_WRITE) {
2623 perm |= BLK_PERM_RESIZE;
2624 }
Max Reitz6f838a42020-05-13 13:05:27 +02002625 }
Max Reitz6f838a42020-05-13 13:05:27 +02002626
2627 if (bs->open_flags & BDRV_O_INACTIVE) {
2628 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2629 }
2630
2631 *nperm = perm;
2632 *nshared = shared;
2633}
2634
Max Reitz2519f542020-05-13 13:05:29 +02002635void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002636 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002637 uint64_t perm, uint64_t shared,
2638 uint64_t *nperm, uint64_t *nshared)
2639{
Max Reitz2519f542020-05-13 13:05:29 +02002640 if (role & BDRV_CHILD_FILTERED) {
2641 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2642 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002643 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002644 perm, shared, nperm, nshared);
2645 } else if (role & BDRV_CHILD_COW) {
2646 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002647 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002648 perm, shared, nperm, nshared);
2649 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002650 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002651 perm, shared, nperm, nshared);
2652 } else {
2653 g_assert_not_reached();
2654 }
2655}
2656
Max Reitz7b1d9c42019-11-08 13:34:51 +01002657uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2658{
2659 static const uint64_t permissions[] = {
2660 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2661 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2662 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2663 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2664 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2665 };
2666
2667 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2668 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2669
2670 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2671
2672 return permissions[qapi_perm];
2673}
2674
Kevin Wolf8ee03992017-03-06 13:45:28 +01002675static void bdrv_replace_child_noperm(BdrvChild *child,
2676 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002677{
2678 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002679 int new_bs_quiesce_counter;
2680 int drain_saldo;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002681
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002682 assert(!child->frozen);
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02002683 assert(old_bs != new_bs);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002684
Fam Zhengbb2614e2017-04-07 14:54:10 +08002685 if (old_bs && new_bs) {
2686 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2687 }
Max Reitzdebc2922019-07-22 15:33:44 +02002688
2689 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2690 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2691
2692 /*
2693 * If the new child node is drained but the old one was not, flush
2694 * all outstanding requests to the old child node.
2695 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002696 while (drain_saldo > 0 && child->klass->drained_begin) {
Max Reitzdebc2922019-07-22 15:33:44 +02002697 bdrv_parent_drained_begin_single(child, true);
2698 drain_saldo--;
2699 }
2700
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002701 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002702 /* Detach first so that the recursive drain sections coming from @child
2703 * are already gone and we only end the drain sections that came from
2704 * elsewhere. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002705 if (child->klass->detach) {
2706 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002707 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002708 QLIST_REMOVE(child, next_parent);
2709 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002710
2711 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002712
2713 if (new_bs) {
2714 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzdebc2922019-07-22 15:33:44 +02002715
2716 /*
2717 * Detaching the old node may have led to the new node's
2718 * quiesce_counter having been decreased. Not a problem, we
2719 * just need to recognize this here and then invoke
2720 * drained_end appropriately more often.
2721 */
2722 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2723 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002724
Kevin Wolfd736f112017-12-18 16:05:48 +01002725 /* Attach only after starting new drained sections, so that recursive
2726 * drain sections coming from @child don't get an extra .drained_begin
2727 * callback. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002728 if (child->klass->attach) {
2729 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002730 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002731 }
Max Reitzdebc2922019-07-22 15:33:44 +02002732
2733 /*
2734 * If the old child node was drained but the new one is not, allow
2735 * requests to come in only after the new node has been attached.
2736 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002737 while (drain_saldo < 0 && child->klass->drained_end) {
Max Reitzdebc2922019-07-22 15:33:44 +02002738 bdrv_parent_drained_end_single(child);
2739 drain_saldo++;
2740 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002741}
2742
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002743/**
2744 * Free the given @child.
2745 *
2746 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2747 * unused (i.e. not in a children list).
2748 */
2749static void bdrv_child_free(BdrvChild *child)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002750{
2751 assert(!child->bs);
Hanna Reitza2253692021-11-15 15:53:58 +01002752 assert(!child->next.le_prev); /* not in children list */
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002753
2754 g_free(child->name);
2755 g_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002756}
2757
2758typedef struct BdrvAttachChildCommonState {
2759 BdrvChild **child;
2760 AioContext *old_parent_ctx;
2761 AioContext *old_child_ctx;
2762} BdrvAttachChildCommonState;
2763
2764static void bdrv_attach_child_common_abort(void *opaque)
2765{
2766 BdrvAttachChildCommonState *s = opaque;
2767 BdrvChild *child = *s->child;
2768 BlockDriverState *bs = child->bs;
2769
2770 bdrv_replace_child_noperm(child, NULL);
2771
2772 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2773 bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort);
2774 }
2775
2776 if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) {
Hanna Reitz26518062021-11-15 15:54:00 +01002777 GSList *ignore;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002778
Hanna Reitz26518062021-11-15 15:54:00 +01002779 /* No need to ignore `child`, because it has been detached already */
2780 ignore = NULL;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002781 child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore,
2782 &error_abort);
2783 g_slist_free(ignore);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002784
Hanna Reitz26518062021-11-15 15:54:00 +01002785 ignore = NULL;
2786 child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002787 g_slist_free(ignore);
2788 }
2789
2790 bdrv_unref(bs);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002791 bdrv_child_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002792 *s->child = NULL;
2793}
2794
2795static TransactionActionDrv bdrv_attach_child_common_drv = {
2796 .abort = bdrv_attach_child_common_abort,
2797 .clean = g_free,
2798};
2799
2800/*
2801 * Common part of attaching bdrv child to bs or to blk or to job
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002802 *
2803 * Resulting new child is returned through @child.
2804 * At start *@child must be NULL.
2805 * @child is saved to a new entry of @tran, so that *@child could be reverted to
2806 * NULL on abort(). So referenced variable must live at least until transaction
2807 * end.
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03002808 *
2809 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002810 */
2811static int bdrv_attach_child_common(BlockDriverState *child_bs,
2812 const char *child_name,
2813 const BdrvChildClass *child_class,
2814 BdrvChildRole child_role,
2815 uint64_t perm, uint64_t shared_perm,
2816 void *opaque, BdrvChild **child,
2817 Transaction *tran, Error **errp)
2818{
2819 BdrvChild *new_child;
2820 AioContext *parent_ctx;
2821 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
2822
2823 assert(child);
2824 assert(*child == NULL);
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002825 assert(child_class->get_parent_desc);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002826
2827 new_child = g_new(BdrvChild, 1);
2828 *new_child = (BdrvChild) {
2829 .bs = NULL,
2830 .name = g_strdup(child_name),
2831 .klass = child_class,
2832 .role = child_role,
2833 .perm = perm,
2834 .shared_perm = shared_perm,
2835 .opaque = opaque,
2836 };
2837
2838 /*
2839 * If the AioContexts don't match, first try to move the subtree of
2840 * child_bs into the AioContext of the new parent. If this doesn't work,
2841 * try moving the parent into the AioContext of child_bs instead.
2842 */
2843 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
2844 if (child_ctx != parent_ctx) {
2845 Error *local_err = NULL;
2846 int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err);
2847
2848 if (ret < 0 && child_class->can_set_aio_ctx) {
2849 GSList *ignore = g_slist_prepend(NULL, new_child);
2850 if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore,
2851 NULL))
2852 {
2853 error_free(local_err);
2854 ret = 0;
2855 g_slist_free(ignore);
2856 ignore = g_slist_prepend(NULL, new_child);
2857 child_class->set_aio_ctx(new_child, child_ctx, &ignore);
2858 }
2859 g_slist_free(ignore);
2860 }
2861
2862 if (ret < 0) {
2863 error_propagate(errp, local_err);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002864 bdrv_child_free(new_child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002865 return ret;
2866 }
2867 }
2868
2869 bdrv_ref(child_bs);
2870 bdrv_replace_child_noperm(new_child, child_bs);
2871
2872 *child = new_child;
2873
2874 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
2875 *s = (BdrvAttachChildCommonState) {
2876 .child = child,
2877 .old_parent_ctx = parent_ctx,
2878 .old_child_ctx = child_ctx,
2879 };
2880 tran_add(tran, &bdrv_attach_child_common_drv, s);
2881
2882 return 0;
2883}
2884
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002885/*
2886 * Variable referenced by @child must live at least until transaction end.
2887 * (see bdrv_attach_child_common() doc for details)
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03002888 *
2889 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002890 */
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002891static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
2892 BlockDriverState *child_bs,
2893 const char *child_name,
2894 const BdrvChildClass *child_class,
2895 BdrvChildRole child_role,
2896 BdrvChild **child,
2897 Transaction *tran,
2898 Error **errp)
2899{
2900 int ret;
2901 uint64_t perm, shared_perm;
2902
2903 assert(parent_bs->drv);
2904
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02002905 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
2906 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
2907 child_bs->node_name, child_name, parent_bs->node_name);
2908 return -EINVAL;
2909 }
2910
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002911 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2912 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2913 perm, shared_perm, &perm, &shared_perm);
2914
2915 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
2916 child_role, perm, shared_perm, parent_bs,
2917 child, tran, errp);
2918 if (ret < 0) {
2919 return ret;
2920 }
2921
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002922 return 0;
2923}
2924
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002925static void bdrv_detach_child(BdrvChild *child)
2926{
Vladimir Sementsov-Ogievskiy4954aac2021-04-28 18:18:01 +03002927 BlockDriverState *old_bs = child->bs;
2928
2929 bdrv_replace_child_noperm(child, NULL);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002930 bdrv_child_free(child);
Vladimir Sementsov-Ogievskiy4954aac2021-04-28 18:18:01 +03002931
2932 if (old_bs) {
2933 /*
2934 * Update permissions for old node. We're just taking a parent away, so
2935 * we're loosening restrictions. Errors of permission update are not
2936 * fatal in this case, ignore them.
2937 */
2938 bdrv_refresh_perms(old_bs, NULL);
2939
2940 /*
2941 * When the parent requiring a non-default AioContext is removed, the
2942 * node moves back to the main AioContext
2943 */
2944 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
2945 }
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002946}
2947
Alberto Garciab441dc72019-05-13 16:46:18 +03002948/*
2949 * This function steals the reference to child_bs from the caller.
2950 * That reference is later dropped by bdrv_root_unref_child().
2951 *
2952 * On failure NULL is returned, errp is set and the reference to
2953 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002954 *
2955 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2956 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03002957 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002958BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2959 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002960 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002961 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002962 uint64_t perm, uint64_t shared_perm,
2963 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02002964{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002965 int ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002966 BdrvChild *child = NULL;
2967 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002968
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002969 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
2970 child_role, perm, shared_perm, opaque,
2971 &child, tran, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002972 if (ret < 0) {
Kevin Wolfe878bb12021-05-03 13:05:54 +02002973 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002974 }
2975
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002976 ret = bdrv_refresh_perms(child_bs, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02002977
Kevin Wolfe878bb12021-05-03 13:05:54 +02002978out:
2979 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002980 /* child is unset on failure by bdrv_attach_child_common_abort() */
2981 assert((ret < 0) == !child);
2982
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002983 bdrv_unref(child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002984 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02002985}
2986
Alberto Garciab441dc72019-05-13 16:46:18 +03002987/*
2988 * This function transfers the reference to child_bs from the caller
2989 * to parent_bs. That reference is later dropped by parent_bs on
2990 * bdrv_close() or if someone calls bdrv_unref_child().
2991 *
2992 * On failure NULL is returned, errp is set and the reference to
2993 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002994 *
2995 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2996 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03002997 */
Wen Congyang98292c62016-05-10 15:36:38 +08002998BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2999 BlockDriverState *child_bs,
3000 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003001 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003002 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003003 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003004{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003005 int ret;
3006 BdrvChild *child = NULL;
3007 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003008
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003009 ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class,
3010 child_role, &child, tran, errp);
3011 if (ret < 0) {
3012 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003013 }
3014
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003015 ret = bdrv_refresh_perms(parent_bs, errp);
3016 if (ret < 0) {
3017 goto out;
3018 }
3019
3020out:
3021 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003022 /* child is unset on failure by bdrv_attach_child_common_abort() */
3023 assert((ret < 0) == !child);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003024
3025 bdrv_unref(child_bs);
3026
Kevin Wolff21d96d2016-03-08 13:47:46 +01003027 return child;
3028}
3029
Max Reitz7b99a262019-06-12 16:07:11 +02003030/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003031void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003032{
Kevin Wolf779020c2015-10-13 14:09:44 +02003033 BlockDriverState *child_bs;
3034
Kevin Wolff21d96d2016-03-08 13:47:46 +01003035 child_bs = child->bs;
3036 bdrv_detach_child(child);
3037 bdrv_unref(child_bs);
3038}
3039
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003040typedef struct BdrvSetInheritsFrom {
3041 BlockDriverState *bs;
3042 BlockDriverState *old_inherits_from;
3043} BdrvSetInheritsFrom;
3044
3045static void bdrv_set_inherits_from_abort(void *opaque)
3046{
3047 BdrvSetInheritsFrom *s = opaque;
3048
3049 s->bs->inherits_from = s->old_inherits_from;
3050}
3051
3052static TransactionActionDrv bdrv_set_inherits_from_drv = {
3053 .abort = bdrv_set_inherits_from_abort,
3054 .clean = g_free,
3055};
3056
3057/* @tran is allowed to be NULL. In this case no rollback is possible */
3058static void bdrv_set_inherits_from(BlockDriverState *bs,
3059 BlockDriverState *new_inherits_from,
3060 Transaction *tran)
3061{
3062 if (tran) {
3063 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3064
3065 *s = (BdrvSetInheritsFrom) {
3066 .bs = bs,
3067 .old_inherits_from = bs->inherits_from,
3068 };
3069
3070 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3071 }
3072
3073 bs->inherits_from = new_inherits_from;
3074}
3075
Max Reitz3cf746b2019-07-03 19:28:07 +02003076/**
3077 * Clear all inherits_from pointers from children and grandchildren of
3078 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003079 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003080 */
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003081static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3082 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003083{
Max Reitz3cf746b2019-07-03 19:28:07 +02003084 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003085
Max Reitz3cf746b2019-07-03 19:28:07 +02003086 if (child->bs->inherits_from == root) {
3087 /*
3088 * Remove inherits_from only when the last reference between root and
3089 * child->bs goes away.
3090 */
3091 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003092 if (c != child && c->bs == child->bs) {
3093 break;
3094 }
3095 }
3096 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003097 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003098 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003099 }
3100
Max Reitz3cf746b2019-07-03 19:28:07 +02003101 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003102 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003103 }
3104}
3105
Max Reitz7b99a262019-06-12 16:07:11 +02003106/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003107void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3108{
3109 if (child == NULL) {
3110 return;
3111 }
3112
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003113 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003114 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003115}
3116
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003117
3118static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3119{
3120 BdrvChild *c;
3121 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003122 if (c->klass->change_media) {
3123 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003124 }
3125 }
3126}
3127
Alberto Garcia0065c452018-10-31 18:16:37 +02003128/* Return true if you can reach parent going through child->inherits_from
3129 * recursively. If parent or child are NULL, return false */
3130static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3131 BlockDriverState *parent)
3132{
3133 while (child && child != parent) {
3134 child = child->inherits_from;
3135 }
3136
3137 return child != NULL;
3138}
3139
Kevin Wolf5db15a52015-09-14 15:33:33 +02003140/*
Max Reitz25191e52020-05-13 13:05:33 +02003141 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3142 * mostly used for COW backing children (role = COW), but also for
3143 * filtered children (role = FILTERED | PRIMARY).
3144 */
3145static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3146{
3147 if (bs->drv && bs->drv->is_filter) {
3148 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3149 } else {
3150 return BDRV_CHILD_COW;
3151 }
3152}
3153
3154/*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003155 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3156 * callers which don't need their own reference any more must call bdrv_unref().
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003157 *
3158 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolf5db15a52015-09-14 15:33:33 +02003159 */
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003160static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3161 BlockDriverState *child_bs,
3162 bool is_backing,
3163 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003164{
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003165 int ret = 0;
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003166 bool update_inherits_from =
3167 bdrv_inherits_from_recursive(child_bs, parent_bs);
3168 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3169 BdrvChildRole role;
Alberto Garcia0065c452018-10-31 18:16:37 +02003170
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003171 if (!parent_bs->drv) {
3172 /*
3173 * Node without drv is an object without a class :/. TODO: finally fix
3174 * qcow2 driver to never clear bs->drv and implement format corruption
3175 * handling in other way.
3176 */
3177 error_setg(errp, "Node corrupted");
3178 return -EINVAL;
3179 }
3180
3181 if (child && child->frozen) {
3182 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3183 child->name, parent_bs->node_name, child->bs->node_name);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003184 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003185 }
3186
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03003187 if (is_backing && !parent_bs->drv->is_filter &&
3188 !parent_bs->drv->supports_backing)
3189 {
3190 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3191 "files", parent_bs->drv->format_name, parent_bs->node_name);
3192 return -EINVAL;
3193 }
3194
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003195 if (parent_bs->drv->is_filter) {
3196 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3197 } else if (is_backing) {
3198 role = BDRV_CHILD_COW;
3199 } else {
3200 /*
3201 * We only can use same role as it is in existing child. We don't have
3202 * infrastructure to determine role of file child in generic way
3203 */
3204 if (!child) {
3205 error_setg(errp, "Cannot set file child to format node without "
3206 "file child");
3207 return -EINVAL;
3208 }
3209 role = child->role;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003210 }
3211
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003212 if (child) {
3213 bdrv_unset_inherits_from(parent_bs, child, tran);
3214 bdrv_remove_file_or_backing_child(parent_bs, child, tran);
3215 }
3216
3217 if (!child_bs) {
Fam Zheng8d24cce2014-05-23 21:29:45 +08003218 goto out;
3219 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003220
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003221 ret = bdrv_attach_child_noperm(parent_bs, child_bs,
3222 is_backing ? "backing" : "file",
3223 &child_of_bds, role,
3224 is_backing ? &parent_bs->backing :
3225 &parent_bs->file,
3226 tran, errp);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003227 if (ret < 0) {
3228 return ret;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003229 }
3230
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003231
3232 /*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003233 * If inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003234 * point directly to bs (else it will become NULL).
3235 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003236 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003237 bdrv_set_inherits_from(child_bs, parent_bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003238 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003239
Fam Zheng8d24cce2014-05-23 21:29:45 +08003240out:
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003241 bdrv_refresh_limits(parent_bs, tran, NULL);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003242
3243 return 0;
3244}
3245
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003246static int bdrv_set_backing_noperm(BlockDriverState *bs,
3247 BlockDriverState *backing_hd,
3248 Transaction *tran, Error **errp)
3249{
3250 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3251}
3252
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003253int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3254 Error **errp)
3255{
3256 int ret;
3257 Transaction *tran = tran_new();
3258
3259 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3260 if (ret < 0) {
3261 goto out;
3262 }
3263
3264 ret = bdrv_refresh_perms(bs, errp);
3265out:
3266 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003267
3268 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003269}
3270
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003271/*
3272 * Opens the backing file for a BlockDriverState if not yet open
3273 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003274 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3275 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3276 * itself, all options starting with "${bdref_key}." are considered part of the
3277 * BlockdevRef.
3278 *
3279 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003280 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003281int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3282 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003283{
Max Reitz6b6833c2019-02-01 20:29:15 +01003284 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003285 char *bdref_key_dot;
3286 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003287 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003288 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003289 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003290 QDict *options;
3291 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003292 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003293
Kevin Wolf760e0062015-06-17 14:55:21 +02003294 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003295 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003296 }
3297
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003298 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003299 if (parent_options == NULL) {
3300 tmp_parent_options = qdict_new();
3301 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003302 }
3303
Paolo Bonzini9156df12012-10-18 16:49:17 +02003304 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003305
3306 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3307 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3308 g_free(bdref_key_dot);
3309
Markus Armbruster129c7d12017-03-30 19:43:12 +02003310 /*
3311 * Caution: while qdict_get_try_str() is fine, getting non-string
3312 * types would require more care. When @parent_options come from
3313 * -blockdev or blockdev_add, its members are typed according to
3314 * the QAPI schema, but when they come from -drive, they're all
3315 * QString.
3316 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003317 reference = qdict_get_try_str(parent_options, bdref_key);
3318 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003319 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003320 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003321 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003322 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003323 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003324 if (qdict_size(options) == 0) {
3325 /* If the user specifies options that do not modify the
3326 * backing file's behavior, we might still consider it the
3327 * implicit backing file. But it's easier this way, and
3328 * just specifying some of the backing BDS's options is
3329 * only possible with -drive anyway (otherwise the QAPI
3330 * schema forces the user to specify everything). */
3331 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3332 }
3333
Max Reitz6b6833c2019-02-01 20:29:15 +01003334 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003335 if (local_err) {
3336 ret = -EINVAL;
3337 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003338 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003339 goto free_exit;
3340 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003341 }
3342
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003343 if (!bs->drv || !bs->drv->supports_backing) {
3344 ret = -EINVAL;
3345 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003346 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003347 goto free_exit;
3348 }
3349
Peter Krempa6bff5972017-10-12 16:14:10 +02003350 if (!reference &&
3351 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003352 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003353 }
3354
Max Reitz6b6833c2019-02-01 20:29:15 +01003355 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003356 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003357 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003358 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003359 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003360 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003361 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003362 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003363
Max Reitz998c2012019-02-01 20:29:08 +01003364 if (implicit_backing) {
3365 bdrv_refresh_filename(backing_hd);
3366 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3367 backing_hd->filename);
3368 }
3369
Kevin Wolf5db15a52015-09-14 15:33:33 +02003370 /* Hook up the backing file link; drop our reference, bs owns the
3371 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003372 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003373 bdrv_unref(backing_hd);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003374 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003375 goto free_exit;
3376 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003377
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003378 qdict_del(parent_options, bdref_key);
3379
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003380free_exit:
3381 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003382 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003383 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003384}
3385
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003386static BlockDriverState *
3387bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003388 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003389 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003390{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003391 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003392 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003393 char *bdref_key_dot;
3394 const char *reference;
3395
Max Reitzbd86fb92020-05-13 13:05:13 +02003396 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003397
Max Reitzda557aa2013-12-20 19:28:11 +01003398 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3399 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3400 g_free(bdref_key_dot);
3401
Markus Armbruster129c7d12017-03-30 19:43:12 +02003402 /*
3403 * Caution: while qdict_get_try_str() is fine, getting non-string
3404 * types would require more care. When @options come from
3405 * -blockdev or blockdev_add, its members are typed according to
3406 * the QAPI schema, but when they come from -drive, they're all
3407 * QString.
3408 */
Max Reitzda557aa2013-12-20 19:28:11 +01003409 reference = qdict_get_try_str(options, bdref_key);
3410 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003411 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003412 error_setg(errp, "A block device must be specified for \"%s\"",
3413 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003414 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003415 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003416 goto done;
3417 }
3418
Max Reitz5b363932016-05-17 16:41:31 +02003419 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003420 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003421 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003422 goto done;
3423 }
3424
Max Reitzda557aa2013-12-20 19:28:11 +01003425done:
3426 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003427 return bs;
3428}
3429
3430/*
3431 * Opens a disk image whose options are given as BlockdevRef in another block
3432 * device's options.
3433 *
3434 * If allow_none is true, no image will be opened if filename is false and no
3435 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3436 *
3437 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3438 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3439 * itself, all options starting with "${bdref_key}." are considered part of the
3440 * BlockdevRef.
3441 *
3442 * The BlockdevRef will be removed from the options QDict.
3443 */
3444BdrvChild *bdrv_open_child(const char *filename,
3445 QDict *options, const char *bdref_key,
3446 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003447 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003448 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003449 bool allow_none, Error **errp)
3450{
3451 BlockDriverState *bs;
3452
Max Reitzbd86fb92020-05-13 13:05:13 +02003453 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003454 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003455 if (bs == NULL) {
3456 return NULL;
3457 }
3458
Max Reitz258b7762020-05-13 13:05:15 +02003459 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3460 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003461}
3462
Max Reitzbd86fb92020-05-13 13:05:13 +02003463/*
3464 * TODO Future callers may need to specify parent/child_class in order for
3465 * option inheritance to work. Existing callers use it for the root node.
3466 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003467BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3468{
3469 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003470 QObject *obj = NULL;
3471 QDict *qdict = NULL;
3472 const char *reference = NULL;
3473 Visitor *v = NULL;
3474
3475 if (ref->type == QTYPE_QSTRING) {
3476 reference = ref->u.reference;
3477 } else {
3478 BlockdevOptions *options = &ref->u.definition;
3479 assert(ref->type == QTYPE_QDICT);
3480
3481 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003482 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003483 visit_complete(v, &obj);
3484
Max Reitz7dc847e2018-02-24 16:40:29 +01003485 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003486 qdict_flatten(qdict);
3487
3488 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3489 * compatibility with other callers) rather than what we want as the
3490 * real defaults. Apply the defaults here instead. */
3491 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3492 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3493 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003494 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3495
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003496 }
3497
Max Reitz272c02e2020-05-13 13:05:17 +02003498 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003499 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003500 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003501 visit_free(v);
3502 return bs;
3503}
3504
Max Reitz66836182016-05-17 16:41:27 +02003505static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3506 int flags,
3507 QDict *snapshot_options,
3508 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003509{
3510 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003511 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003512 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003513 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003514 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003515 int ret;
3516
3517 /* if snapshot, we create a temporary backing file and open it
3518 instead of opening 'filename' directly */
3519
3520 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003521 total_size = bdrv_getlength(bs);
3522 if (total_size < 0) {
3523 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003524 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003525 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003526
3527 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003528 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003529 if (ret < 0) {
3530 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003531 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003532 }
3533
Max Reitzef810432014-12-02 18:32:42 +01003534 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003535 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003536 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003537 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003538 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003539 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003540 error_prepend(errp, "Could not create temporary overlay '%s': ",
3541 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003542 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003543 }
3544
Kevin Wolf73176be2016-03-07 13:02:15 +01003545 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003546 qdict_put_str(snapshot_options, "file.driver", "file");
3547 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3548 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003549
Max Reitz5b363932016-05-17 16:41:31 +02003550 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003551 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003552 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003553 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003554 }
3555
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003556 ret = bdrv_append(bs_snapshot, bs, errp);
3557 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003558 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003559 goto out;
3560 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003561
3562out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003563 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003564 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05003565 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003566}
3567
Max Reitzda557aa2013-12-20 19:28:11 +01003568/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003569 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003570 *
3571 * options is a QDict of options to pass to the block drivers, or NULL for an
3572 * empty set of options. The reference to the QDict belongs to the block layer
3573 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003574 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003575 *
3576 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3577 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003578 *
3579 * The reference parameter may be used to specify an existing block device which
3580 * should be opened. If specified, neither options nor a filename may be given,
3581 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003582 */
Max Reitz5b363932016-05-17 16:41:31 +02003583static BlockDriverState *bdrv_open_inherit(const char *filename,
3584 const char *reference,
3585 QDict *options, int flags,
3586 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003587 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003588 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003589 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003590{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003591 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003592 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003593 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003594 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003595 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003596 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003597 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003598 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003599 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003600 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003601
Max Reitzbd86fb92020-05-13 13:05:13 +02003602 assert(!child_class || !flags);
3603 assert(!child_class == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01003604
Max Reitzddf56362014-02-18 18:33:06 +01003605 if (reference) {
3606 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003607 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003608
Max Reitzddf56362014-02-18 18:33:06 +01003609 if (filename || options_non_empty) {
3610 error_setg(errp, "Cannot reference an existing block device with "
3611 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003612 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003613 }
3614
3615 bs = bdrv_lookup_bs(reference, reference, errp);
3616 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003617 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003618 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003619
Max Reitzddf56362014-02-18 18:33:06 +01003620 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003621 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003622 }
3623
Max Reitz5b363932016-05-17 16:41:31 +02003624 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003625
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003626 /* NULL means an empty set of options */
3627 if (options == NULL) {
3628 options = qdict_new();
3629 }
3630
Kevin Wolf145f5982015-05-08 16:15:03 +02003631 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003632 parse_json_protocol(options, &filename, &local_err);
3633 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003634 goto fail;
3635 }
3636
Kevin Wolf145f5982015-05-08 16:15:03 +02003637 bs->explicit_options = qdict_clone_shallow(options);
3638
Max Reitzbd86fb92020-05-13 13:05:13 +02003639 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003640 bool parent_is_format;
3641
3642 if (parent->drv) {
3643 parent_is_format = parent->drv->is_format;
3644 } else {
3645 /*
3646 * parent->drv is not set yet because this node is opened for
3647 * (potential) format probing. That means that @parent is going
3648 * to be a format node.
3649 */
3650 parent_is_format = true;
3651 }
3652
Kevin Wolfbddcec32015-04-09 18:47:50 +02003653 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003654 child_class->inherit_options(child_role, parent_is_format,
3655 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003656 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003657 }
3658
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003659 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003660 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003661 goto fail;
3662 }
3663
Markus Armbruster129c7d12017-03-30 19:43:12 +02003664 /*
3665 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3666 * Caution: getting a boolean member of @options requires care.
3667 * When @options come from -blockdev or blockdev_add, members are
3668 * typed according to the QAPI schema, but when they come from
3669 * -drive, they're all QString.
3670 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003671 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3672 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3673 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3674 } else {
3675 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003676 }
3677
3678 if (flags & BDRV_O_SNAPSHOT) {
3679 snapshot_options = qdict_new();
3680 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3681 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003682 /* Let bdrv_backing_options() override "read-only" */
3683 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003684 bdrv_inherited_options(BDRV_CHILD_COW, true,
3685 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003686 }
3687
Kevin Wolf62392eb2015-04-24 16:38:02 +02003688 bs->open_flags = flags;
3689 bs->options = options;
3690 options = qdict_clone_shallow(options);
3691
Kevin Wolf76c591b2014-06-04 14:19:44 +02003692 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003693 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003694 drvname = qdict_get_try_str(options, "driver");
3695 if (drvname) {
3696 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003697 if (!drv) {
3698 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003699 goto fail;
3700 }
3701 }
3702
3703 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003704
Markus Armbruster129c7d12017-03-30 19:43:12 +02003705 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003706 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003707 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3708 (backing && *backing == '\0'))
3709 {
Max Reitz4f7be282018-02-24 16:40:33 +01003710 if (backing) {
3711 warn_report("Use of \"backing\": \"\" is deprecated; "
3712 "use \"backing\": null instead");
3713 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003714 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003715 qdict_del(bs->explicit_options, "backing");
3716 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003717 qdict_del(options, "backing");
3718 }
3719
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003720 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003721 * probing, the block drivers will do their own bdrv_open_child() for the
3722 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003723 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003724 BlockDriverState *file_bs;
3725
3726 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003727 &child_of_bds, BDRV_CHILD_IMAGE,
3728 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003729 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003730 goto fail;
3731 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003732 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003733 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3734 * looking at the header to guess the image format. This works even
3735 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003736 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003737 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003738 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003739 if (local_err) {
3740 goto fail;
3741 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003742
Eric Blake46f5ac22017-04-27 16:58:17 -05003743 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003744 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003745 }
3746
Kevin Wolf76c591b2014-06-04 14:19:44 +02003747 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003748 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003749 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003750 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003751 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003752 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003753 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003754 /*
3755 * This option update would logically belong in bdrv_fill_options(),
3756 * but we first need to open bs->file for the probing to work, while
3757 * opening bs->file already requires the (mostly) final set of options
3758 * so that cache mode etc. can be inherited.
3759 *
3760 * Adding the driver later is somewhat ugly, but it's not an option
3761 * that would ever be inherited, so it's correct. We just need to make
3762 * sure to update both bs->options (which has the full effective
3763 * options for bs) and options (which has file.* already removed).
3764 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003765 qdict_put_str(bs->options, "driver", drv->format_name);
3766 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003767 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003768 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003769 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003770 }
3771
Max Reitz53a29512015-03-19 14:53:16 -04003772 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3773 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3774 /* file must be NULL if a protocol BDS is about to be created
3775 * (the inverse results in an error message from bdrv_open_common()) */
3776 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3777
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003778 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003779 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003780 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003781 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01003782 }
3783
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003784 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003785 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01003786 file = NULL;
3787 }
3788
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003789 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02003790 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003791 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003792 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003793 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003794 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003795 }
3796
Alberto Garcia50196d72018-09-06 12:37:03 +03003797 /* Remove all children options and references
3798 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03003799 QLIST_FOREACH(child, &bs->children, next) {
3800 char *child_key_dot;
3801 child_key_dot = g_strdup_printf("%s.", child->name);
3802 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3803 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03003804 qdict_del(bs->explicit_options, child->name);
3805 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03003806 g_free(child_key_dot);
3807 }
3808
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003809 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01003810 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003811 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01003812 if (flags & BDRV_O_PROTOCOL) {
3813 error_setg(errp, "Block protocol '%s' doesn't support the option "
3814 "'%s'", drv->format_name, entry->key);
3815 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01003816 error_setg(errp,
3817 "Block format '%s' does not support the option '%s'",
3818 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01003819 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003820
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003821 goto close_and_fail;
3822 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003823
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01003824 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003825
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003826 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03003827 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003828
3829 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3830 * temporary snapshot afterwards. */
3831 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02003832 BlockDriverState *snapshot_bs;
3833 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3834 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01003835 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003836 if (local_err) {
3837 goto close_and_fail;
3838 }
Max Reitz5b363932016-05-17 16:41:31 +02003839 /* We are not going to return bs but the overlay on top of it
3840 * (snapshot_bs); thus, we have to drop the strong reference to bs
3841 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3842 * though, because the overlay still has a reference to it. */
3843 bdrv_unref(bs);
3844 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02003845 }
3846
Max Reitz5b363932016-05-17 16:41:31 +02003847 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003848
Kevin Wolf8bfea152014-04-11 19:16:36 +02003849fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003850 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003851 qobject_unref(snapshot_options);
3852 qobject_unref(bs->explicit_options);
3853 qobject_unref(bs->options);
3854 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003855 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03003856 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003857 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003858 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003859 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003860
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003861close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02003862 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003863 qobject_unref(snapshot_options);
3864 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003865 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003866 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003867}
3868
Max Reitz5b363932016-05-17 16:41:31 +02003869BlockDriverState *bdrv_open(const char *filename, const char *reference,
3870 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02003871{
Max Reitz5b363932016-05-17 16:41:31 +02003872 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02003873 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003874}
3875
Alberto Garciafaf116b2019-03-12 18:48:49 +02003876/* Return true if the NULL-terminated @list contains @str */
3877static bool is_str_in_list(const char *str, const char *const *list)
3878{
3879 if (str && list) {
3880 int i;
3881 for (i = 0; list[i] != NULL; i++) {
3882 if (!strcmp(str, list[i])) {
3883 return true;
3884 }
3885 }
3886 }
3887 return false;
3888}
3889
3890/*
3891 * Check that every option set in @bs->options is also set in
3892 * @new_opts.
3893 *
3894 * Options listed in the common_options list and in
3895 * @bs->drv->mutable_opts are skipped.
3896 *
3897 * Return 0 on success, otherwise return -EINVAL and set @errp.
3898 */
3899static int bdrv_reset_options_allowed(BlockDriverState *bs,
3900 const QDict *new_opts, Error **errp)
3901{
3902 const QDictEntry *e;
3903 /* These options are common to all block drivers and are handled
3904 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3905 const char *const common_options[] = {
3906 "node-name", "discard", "cache.direct", "cache.no-flush",
3907 "read-only", "auto-read-only", "detect-zeroes", NULL
3908 };
3909
3910 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3911 if (!qdict_haskey(new_opts, e->key) &&
3912 !is_str_in_list(e->key, common_options) &&
3913 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3914 error_setg(errp, "Option '%s' cannot be reset "
3915 "to its default value", e->key);
3916 return -EINVAL;
3917 }
3918 }
3919
3920 return 0;
3921}
3922
Jeff Codye971aa12012-09-20 15:13:19 -04003923/*
Alberto Garciacb828c32019-03-12 18:48:47 +02003924 * Returns true if @child can be reached recursively from @bs
3925 */
3926static bool bdrv_recurse_has_child(BlockDriverState *bs,
3927 BlockDriverState *child)
3928{
3929 BdrvChild *c;
3930
3931 if (bs == child) {
3932 return true;
3933 }
3934
3935 QLIST_FOREACH(c, &bs->children, next) {
3936 if (bdrv_recurse_has_child(c->bs, child)) {
3937 return true;
3938 }
3939 }
3940
3941 return false;
3942}
3943
3944/*
Jeff Codye971aa12012-09-20 15:13:19 -04003945 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3946 * reopen of multiple devices.
3947 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003948 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04003949 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3950 * be created and initialized. This newly created BlockReopenQueue should be
3951 * passed back in for subsequent calls that are intended to be of the same
3952 * atomic 'set'.
3953 *
3954 * bs is the BlockDriverState to add to the reopen queue.
3955 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003956 * options contains the changed options for the associated bs
3957 * (the BlockReopenQueue takes ownership)
3958 *
Jeff Codye971aa12012-09-20 15:13:19 -04003959 * flags contains the open flags for the associated bs
3960 *
3961 * returns a pointer to bs_queue, which is either the newly allocated
3962 * bs_queue, or the existing bs_queue being used.
3963 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003964 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003965 */
Kevin Wolf28518102015-05-08 17:07:31 +02003966static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3967 BlockDriverState *bs,
3968 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003969 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02003970 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02003971 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02003972 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02003973 int parent_flags,
3974 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04003975{
3976 assert(bs != NULL);
3977
3978 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02003979 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003980 QDict *old_options, *explicit_options, *options_copy;
3981 int flags;
3982 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003983
Kevin Wolf1a63a902017-12-06 20:24:44 +01003984 /* Make sure that the caller remembered to use a drained section. This is
3985 * important to avoid graph changes between the recursive queuing here and
3986 * bdrv_reopen_multiple(). */
3987 assert(bs->quiesce_counter > 0);
3988
Jeff Codye971aa12012-09-20 15:13:19 -04003989 if (bs_queue == NULL) {
3990 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003991 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04003992 }
3993
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003994 if (!options) {
3995 options = qdict_new();
3996 }
3997
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003998 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003999 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004000 if (bs == bs_entry->state.bs) {
4001 break;
4002 }
4003 }
4004
Kevin Wolf28518102015-05-08 17:07:31 +02004005 /*
4006 * Precedence of options:
4007 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004008 * 2. Retained from explicitly set options of bs
4009 * 3. Inherited from parent node
4010 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004011 */
4012
Kevin Wolf145f5982015-05-08 16:15:03 +02004013 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004014 if (bs_entry || keep_old_opts) {
4015 old_options = qdict_clone_shallow(bs_entry ?
4016 bs_entry->state.explicit_options :
4017 bs->explicit_options);
4018 bdrv_join_options(bs, options, old_options);
4019 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004020 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004021
4022 explicit_options = qdict_clone_shallow(options);
4023
Kevin Wolf28518102015-05-08 17:07:31 +02004024 /* Inherit from parent node */
4025 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004026 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004027 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004028 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004029 } else {
4030 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004031 }
4032
Alberto Garcia077e8e22019-03-12 18:48:44 +02004033 if (keep_old_opts) {
4034 /* Old values are used for options that aren't set yet */
4035 old_options = qdict_clone_shallow(bs->options);
4036 bdrv_join_options(bs, options, old_options);
4037 qobject_unref(old_options);
4038 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004039
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004040 /* We have the final set of options so let's update the flags */
4041 options_copy = qdict_clone_shallow(options);
4042 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4043 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4044 update_flags_from_options(&flags, opts);
4045 qemu_opts_del(opts);
4046 qobject_unref(options_copy);
4047
Kevin Wolffd452022017-08-03 17:02:59 +02004048 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004049 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004050 if (flags & BDRV_O_RDWR) {
4051 flags |= BDRV_O_ALLOW_RDWR;
4052 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004053
Kevin Wolf1857c972017-09-14 14:53:46 +02004054 if (!bs_entry) {
4055 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004056 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004057 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004058 qobject_unref(bs_entry->state.options);
4059 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004060 }
4061
4062 bs_entry->state.bs = bs;
4063 bs_entry->state.options = options;
4064 bs_entry->state.explicit_options = explicit_options;
4065 bs_entry->state.flags = flags;
4066
Alberto Garcia85466322019-03-12 18:48:45 +02004067 /*
4068 * If keep_old_opts is false then it means that unspecified
4069 * options must be reset to their original value. We don't allow
4070 * resetting 'backing' but we need to know if the option is
4071 * missing in order to decide if we have to return an error.
4072 */
4073 if (!keep_old_opts) {
4074 bs_entry->state.backing_missing =
4075 !qdict_haskey(options, "backing") &&
4076 !qdict_haskey(options, "backing.driver");
4077 }
4078
Kevin Wolf67251a32015-04-09 18:54:04 +02004079 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004080 QDict *new_child_options = NULL;
4081 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004082
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004083 /* reopen can only change the options of block devices that were
4084 * implicitly created and inherited options. For other (referenced)
4085 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004086 if (child->bs->inherits_from != bs) {
4087 continue;
4088 }
4089
Alberto Garcia85466322019-03-12 18:48:45 +02004090 /* Check if the options contain a child reference */
4091 if (qdict_haskey(options, child->name)) {
4092 const char *childref = qdict_get_try_str(options, child->name);
4093 /*
4094 * The current child must not be reopened if the child
4095 * reference is null or points to a different node.
4096 */
4097 if (g_strcmp0(childref, child->bs->node_name)) {
4098 continue;
4099 }
4100 /*
4101 * If the child reference points to the current child then
4102 * reopen it with its existing set of options (note that
4103 * it can still inherit new options from the parent).
4104 */
4105 child_keep_old = true;
4106 } else {
4107 /* Extract child options ("child-name.*") */
4108 char *child_key_dot = g_strdup_printf("%s.", child->name);
4109 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4110 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4111 g_free(child_key_dot);
4112 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004113
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004114 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004115 child->klass, child->role, bs->drv->is_format,
4116 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004117 }
4118
Jeff Codye971aa12012-09-20 15:13:19 -04004119 return bs_queue;
4120}
4121
Kevin Wolf28518102015-05-08 17:07:31 +02004122BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4123 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004124 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004125{
Max Reitz3cdc69d2020-05-13 13:05:18 +02004126 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4127 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004128}
4129
Alberto Garciaab5b52282021-07-08 13:47:05 +02004130void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4131{
4132 if (bs_queue) {
4133 BlockReopenQueueEntry *bs_entry, *next;
4134 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4135 qobject_unref(bs_entry->state.explicit_options);
4136 qobject_unref(bs_entry->state.options);
4137 g_free(bs_entry);
4138 }
4139 g_free(bs_queue);
4140 }
4141}
4142
Jeff Codye971aa12012-09-20 15:13:19 -04004143/*
4144 * Reopen multiple BlockDriverStates atomically & transactionally.
4145 *
4146 * The queue passed in (bs_queue) must have been built up previous
4147 * via bdrv_reopen_queue().
4148 *
4149 * Reopens all BDS specified in the queue, with the appropriate
4150 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004151 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004152 * data cleaned up.
4153 *
4154 * If all devices prepare successfully, then the changes are committed
4155 * to all devices.
4156 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004157 * All affected nodes must be drained between bdrv_reopen_queue() and
4158 * bdrv_reopen_multiple().
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004159 *
4160 * To be called from the main thread, with all other AioContexts unlocked.
Jeff Codye971aa12012-09-20 15:13:19 -04004161 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004162int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004163{
4164 int ret = -1;
4165 BlockReopenQueueEntry *bs_entry, *next;
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004166 AioContext *ctx;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004167 Transaction *tran = tran_new();
4168 g_autoptr(GHashTable) found = NULL;
4169 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004170
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004171 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Jeff Codye971aa12012-09-20 15:13:19 -04004172 assert(bs_queue != NULL);
4173
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004174 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004175 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4176 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004177 ret = bdrv_flush(bs_entry->state.bs);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004178 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004179 if (ret < 0) {
4180 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004181 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004182 }
4183 }
4184
4185 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004186 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004187 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4188 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004189 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004190 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004191 if (ret < 0) {
4192 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004193 }
4194 bs_entry->prepared = true;
4195 }
4196
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004197 found = g_hash_table_new(NULL, NULL);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004198 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004199 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004200
4201 refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs);
4202 if (state->old_backing_bs) {
4203 refresh_list = bdrv_topological_dfs(refresh_list, found,
4204 state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004205 }
Alberto Garciaecd30d22021-06-10 15:05:36 +03004206 if (state->old_file_bs) {
4207 refresh_list = bdrv_topological_dfs(refresh_list, found,
4208 state->old_file_bs);
4209 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004210 }
4211
4212 /*
4213 * Note that file-posix driver rely on permission update done during reopen
4214 * (even if no permission changed), because it wants "new" permissions for
4215 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4216 * in raw_reopen_prepare() which is called with "old" permissions.
4217 */
4218 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4219 if (ret < 0) {
4220 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004221 }
4222
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004223 /*
4224 * If we reach this point, we have success and just need to apply the
4225 * changes.
4226 *
4227 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4228 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4229 * children are usually goes after parents in reopen-queue, so go from last
4230 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004231 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004232 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004233 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4234 aio_context_acquire(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004235 bdrv_reopen_commit(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004236 aio_context_release(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004237 }
4238
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004239 tran_commit(tran);
4240
4241 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4242 BlockDriverState *bs = bs_entry->state.bs;
4243
4244 if (bs->drv->bdrv_reopen_commit_post) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004245 ctx = bdrv_get_aio_context(bs);
4246 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004247 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004248 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004249 }
4250 }
4251
Jeff Codye971aa12012-09-20 15:13:19 -04004252 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004253 goto cleanup;
4254
4255abort:
4256 tran_abort(tran);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004257 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004258 if (bs_entry->prepared) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004259 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4260 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004261 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004262 aio_context_release(ctx);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004263 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004264 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004265
Jeff Codye971aa12012-09-20 15:13:19 -04004266cleanup:
Alberto Garciaab5b52282021-07-08 13:47:05 +02004267 bdrv_reopen_queue_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004268
Jeff Codye971aa12012-09-20 15:13:19 -04004269 return ret;
4270}
4271
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004272int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4273 Error **errp)
4274{
4275 AioContext *ctx = bdrv_get_aio_context(bs);
4276 BlockReopenQueue *queue;
4277 int ret;
4278
4279 bdrv_subtree_drained_begin(bs);
4280 if (ctx != qemu_get_aio_context()) {
4281 aio_context_release(ctx);
4282 }
4283
4284 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4285 ret = bdrv_reopen_multiple(queue, errp);
4286
4287 if (ctx != qemu_get_aio_context()) {
4288 aio_context_acquire(ctx);
4289 }
4290 bdrv_subtree_drained_end(bs);
4291
4292 return ret;
4293}
4294
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004295int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4296 Error **errp)
4297{
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004298 QDict *opts = qdict_new();
4299
4300 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4301
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004302 return bdrv_reopen(bs, opts, true, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004303}
4304
Jeff Codye971aa12012-09-20 15:13:19 -04004305/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004306 * Take a BDRVReopenState and check if the value of 'backing' in the
4307 * reopen_state->options QDict is valid or not.
4308 *
4309 * If 'backing' is missing from the QDict then return 0.
4310 *
4311 * If 'backing' contains the node name of the backing file of
4312 * reopen_state->bs then return 0.
4313 *
4314 * If 'backing' contains a different node name (or is null) then check
4315 * whether the current backing file can be replaced with the new one.
4316 * If that's the case then reopen_state->replace_backing_bs is set to
4317 * true and reopen_state->new_backing_bs contains a pointer to the new
4318 * backing BlockDriverState (or NULL).
4319 *
4320 * Return 0 on success, otherwise return < 0 and set @errp.
4321 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004322static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4323 bool is_backing, Transaction *tran,
4324 Error **errp)
Alberto Garciacb828c32019-03-12 18:48:47 +02004325{
4326 BlockDriverState *bs = reopen_state->bs;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004327 BlockDriverState *new_child_bs;
4328 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4329 child_bs(bs->file);
4330 const char *child_name = is_backing ? "backing" : "file";
Alberto Garciacb828c32019-03-12 18:48:47 +02004331 QObject *value;
4332 const char *str;
4333
Alberto Garciaecd30d22021-06-10 15:05:36 +03004334 value = qdict_get(reopen_state->options, child_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004335 if (value == NULL) {
4336 return 0;
4337 }
4338
4339 switch (qobject_type(value)) {
4340 case QTYPE_QNULL:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004341 assert(is_backing); /* The 'file' option does not allow a null value */
4342 new_child_bs = NULL;
Alberto Garciacb828c32019-03-12 18:48:47 +02004343 break;
4344 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004345 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciaecd30d22021-06-10 15:05:36 +03004346 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4347 if (new_child_bs == NULL) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004348 return -EINVAL;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004349 } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4350 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4351 "cycle", str, child_name, bs->node_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004352 return -EINVAL;
4353 }
4354 break;
4355 default:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004356 /*
4357 * The options QDict has been flattened, so 'backing' and 'file'
4358 * do not allow any other data type here.
4359 */
Alberto Garciacb828c32019-03-12 18:48:47 +02004360 g_assert_not_reached();
4361 }
4362
Alberto Garciaecd30d22021-06-10 15:05:36 +03004363 if (old_child_bs == new_child_bs) {
4364 return 0;
4365 }
4366
4367 if (old_child_bs) {
4368 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004369 return 0;
4370 }
4371
Alberto Garciaecd30d22021-06-10 15:05:36 +03004372 if (old_child_bs->implicit) {
4373 error_setg(errp, "Cannot replace implicit %s child of %s",
4374 child_name, bs->node_name);
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004375 return -EPERM;
4376 }
4377 }
4378
Alberto Garciaecd30d22021-06-10 15:05:36 +03004379 if (bs->drv->is_filter && !old_child_bs) {
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03004380 /*
4381 * Filters always have a file or a backing child, so we are trying to
4382 * change wrong child
4383 */
4384 error_setg(errp, "'%s' is a %s filter node that does not support a "
Alberto Garciaecd30d22021-06-10 15:05:36 +03004385 "%s child", bs->node_name, bs->drv->format_name, child_name);
Max Reitz1d42f482019-06-12 17:24:39 +02004386 return -EINVAL;
4387 }
4388
Alberto Garciaecd30d22021-06-10 15:05:36 +03004389 if (is_backing) {
4390 reopen_state->old_backing_bs = old_child_bs;
4391 } else {
4392 reopen_state->old_file_bs = old_child_bs;
4393 }
4394
4395 return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4396 tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004397}
4398
4399/*
Jeff Codye971aa12012-09-20 15:13:19 -04004400 * Prepares a BlockDriverState for reopen. All changes are staged in the
4401 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4402 * the block driver layer .bdrv_reopen_prepare()
4403 *
4404 * bs is the BlockDriverState to reopen
4405 * flags are the new open flags
4406 * queue is the reopen queue
4407 *
4408 * Returns 0 on success, non-zero on error. On error errp will be set
4409 * as well.
4410 *
4411 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4412 * It is the responsibility of the caller to then call the abort() or
4413 * commit() for any other BDS that have been left in a prepare() state
4414 *
4415 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004416static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004417 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +03004418 Transaction *change_child_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004419{
4420 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004421 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004422 Error *local_err = NULL;
4423 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004424 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004425 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004426 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004427 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004428 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004429
4430 assert(reopen_state != NULL);
4431 assert(reopen_state->bs->drv != NULL);
4432 drv = reopen_state->bs->drv;
4433
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004434 /* This function and each driver's bdrv_reopen_prepare() remove
4435 * entries from reopen_state->options as they are processed, so
4436 * we need to make a copy of the original QDict. */
4437 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4438
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004439 /* Process generic block layer options */
4440 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004441 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004442 ret = -EINVAL;
4443 goto error;
4444 }
4445
Alberto Garciae6d79c42018-11-12 16:00:47 +02004446 /* This was already called in bdrv_reopen_queue_child() so the flags
4447 * are up-to-date. This time we simply want to remove the options from
4448 * QemuOpts in order to indicate that they have been processed. */
4449 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004450 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004451 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004452
Alberto Garcia415bbca2018-10-03 13:23:13 +03004453 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004454 if (discard != NULL) {
4455 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4456 error_setg(errp, "Invalid discard option");
4457 ret = -EINVAL;
4458 goto error;
4459 }
4460 }
4461
Alberto Garcia543770b2018-09-06 12:37:09 +03004462 reopen_state->detect_zeroes =
4463 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4464 if (local_err) {
4465 error_propagate(errp, local_err);
4466 ret = -EINVAL;
4467 goto error;
4468 }
4469
Alberto Garcia57f9db92018-09-06 12:37:06 +03004470 /* All other options (including node-name and driver) must be unchanged.
4471 * Put them back into the QDict, so that they are checked at the end
4472 * of this function. */
4473 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004474
Jeff Cody3d8ce172017-04-07 16:55:30 -04004475 /* If we are to stay read-only, do not allow permission change
4476 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4477 * not set, or if the BDS still has copy_on_read enabled */
4478 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004479 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004480 if (local_err) {
4481 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004482 goto error;
4483 }
4484
Jeff Codye971aa12012-09-20 15:13:19 -04004485 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004486 /*
4487 * If a driver-specific option is missing, it means that we
4488 * should reset it to its default value.
4489 * But not all options allow that, so we need to check it first.
4490 */
4491 ret = bdrv_reset_options_allowed(reopen_state->bs,
4492 reopen_state->options, errp);
4493 if (ret) {
4494 goto error;
4495 }
4496
Jeff Codye971aa12012-09-20 15:13:19 -04004497 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4498 if (ret) {
4499 if (local_err != NULL) {
4500 error_propagate(errp, local_err);
4501 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004502 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004503 error_setg(errp, "failed while preparing to reopen image '%s'",
4504 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004505 }
4506 goto error;
4507 }
4508 } else {
4509 /* It is currently mandatory to have a bdrv_reopen_prepare()
4510 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004511 error_setg(errp, "Block format '%s' used by node '%s' "
4512 "does not support reopening files", drv->format_name,
4513 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004514 ret = -1;
4515 goto error;
4516 }
4517
Max Reitz9ad08c42018-11-16 17:45:24 +01004518 drv_prepared = true;
4519
Alberto Garciabacd9b82019-03-12 18:48:46 +02004520 /*
4521 * We must provide the 'backing' option if the BDS has a backing
4522 * file or if the image file has a backing file name as part of
4523 * its metadata. Otherwise the 'backing' option can be omitted.
4524 */
4525 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004526 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004527 error_setg(errp, "backing is missing for '%s'",
4528 reopen_state->bs->node_name);
4529 ret = -EINVAL;
4530 goto error;
4531 }
4532
Alberto Garciacb828c32019-03-12 18:48:47 +02004533 /*
4534 * Allow changing the 'backing' option. The new value can be
4535 * either a reference to an existing node (using its node name)
4536 * or NULL to simply detach the current backing file.
4537 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004538 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4539 change_child_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004540 if (ret < 0) {
4541 goto error;
4542 }
4543 qdict_del(reopen_state->options, "backing");
4544
Alberto Garciaecd30d22021-06-10 15:05:36 +03004545 /* Allow changing the 'file' option. In this case NULL is not allowed */
4546 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4547 change_child_tran, errp);
4548 if (ret < 0) {
4549 goto error;
4550 }
4551 qdict_del(reopen_state->options, "file");
4552
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004553 /* Options that are not handled are only okay if they are unchanged
4554 * compared to the old state. It is expected that some options are only
4555 * used for the initial open, but not reopen (e.g. filename) */
4556 if (qdict_size(reopen_state->options)) {
4557 const QDictEntry *entry = qdict_first(reopen_state->options);
4558
4559 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004560 QObject *new = entry->value;
4561 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004562
Alberto Garciadb905282018-09-06 12:37:05 +03004563 /* Allow child references (child_name=node_name) as long as they
4564 * point to the current child (i.e. everything stays the same). */
4565 if (qobject_type(new) == QTYPE_QSTRING) {
4566 BdrvChild *child;
4567 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4568 if (!strcmp(child->name, entry->key)) {
4569 break;
4570 }
4571 }
4572
4573 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004574 if (!strcmp(child->bs->node_name,
4575 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004576 continue; /* Found child with this name, skip option */
4577 }
4578 }
4579 }
4580
Max Reitz54fd1b02017-11-14 19:01:26 +01004581 /*
4582 * TODO: When using -drive to specify blockdev options, all values
4583 * will be strings; however, when using -blockdev, blockdev-add or
4584 * filenames using the json:{} pseudo-protocol, they will be
4585 * correctly typed.
4586 * In contrast, reopening options are (currently) always strings
4587 * (because you can only specify them through qemu-io; all other
4588 * callers do not specify any options).
4589 * Therefore, when using anything other than -drive to create a BDS,
4590 * this cannot detect non-string options as unchanged, because
4591 * qobject_is_equal() always returns false for objects of different
4592 * type. In the future, this should be remedied by correctly typing
4593 * all options. For now, this is not too big of an issue because
4594 * the user can simply omit options which cannot be changed anyway,
4595 * so they will stay unchanged.
4596 */
4597 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004598 error_setg(errp, "Cannot change the option '%s'", entry->key);
4599 ret = -EINVAL;
4600 goto error;
4601 }
4602 } while ((entry = qdict_next(reopen_state->options, entry)));
4603 }
4604
Jeff Codye971aa12012-09-20 15:13:19 -04004605 ret = 0;
4606
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004607 /* Restore the original reopen_state->options QDict */
4608 qobject_unref(reopen_state->options);
4609 reopen_state->options = qobject_ref(orig_reopen_opts);
4610
Jeff Codye971aa12012-09-20 15:13:19 -04004611error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004612 if (ret < 0 && drv_prepared) {
4613 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4614 * call drv->bdrv_reopen_abort() before signaling an error
4615 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4616 * when the respective bdrv_reopen_prepare() has failed) */
4617 if (drv->bdrv_reopen_abort) {
4618 drv->bdrv_reopen_abort(reopen_state);
4619 }
4620 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004621 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004622 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004623 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004624 return ret;
4625}
4626
4627/*
4628 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4629 * makes them final by swapping the staging BlockDriverState contents into
4630 * the active BlockDriverState contents.
4631 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004632static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004633{
4634 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004635 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004636 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004637
4638 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004639 bs = reopen_state->bs;
4640 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004641 assert(drv != NULL);
4642
4643 /* If there are any driver level actions to take */
4644 if (drv->bdrv_reopen_commit) {
4645 drv->bdrv_reopen_commit(reopen_state);
4646 }
4647
4648 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004649 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004650 qobject_unref(bs->options);
Alberto Garciaab5b52282021-07-08 13:47:05 +02004651 qobject_ref(reopen_state->explicit_options);
4652 qobject_ref(reopen_state->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004653
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004654 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004655 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004656 bs->open_flags = reopen_state->flags;
Alberto Garcia543770b2018-09-06 12:37:09 +03004657 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004658
Alberto Garcia50196d72018-09-06 12:37:03 +03004659 /* Remove child references from bs->options and bs->explicit_options.
4660 * Child options were already removed in bdrv_reopen_queue_child() */
4661 QLIST_FOREACH(child, &bs->children, next) {
4662 qdict_del(bs->explicit_options, child->name);
4663 qdict_del(bs->options, child->name);
4664 }
Vladimir Sementsov-Ogievskiy3d0e8742021-06-10 15:05:35 +03004665 /* backing is probably removed, so it's not handled by previous loop */
4666 qdict_del(bs->explicit_options, "backing");
4667 qdict_del(bs->options, "backing");
4668
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004669 bdrv_refresh_limits(bs, NULL, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004670}
4671
4672/*
4673 * Abort the reopen, and delete and free the staged changes in
4674 * reopen_state
4675 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004676static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004677{
4678 BlockDriver *drv;
4679
4680 assert(reopen_state != NULL);
4681 drv = reopen_state->bs->drv;
4682 assert(drv != NULL);
4683
4684 if (drv->bdrv_reopen_abort) {
4685 drv->bdrv_reopen_abort(reopen_state);
4686 }
4687}
4688
4689
Max Reitz64dff522016-01-29 16:36:10 +01004690static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004691{
Max Reitz33384422014-06-20 21:57:33 +02004692 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004693 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004694
Max Reitz30f55fb2016-05-17 16:41:32 +02004695 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004696
Paolo Bonzinifc272912015-12-23 11:48:24 +01004697 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004698 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004699 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004700
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004701 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004702 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004703 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004704 bs->drv->bdrv_close(bs);
4705 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004706 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004707 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004708
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004709 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004710 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004711 }
4712
Alberto Garciadd4118c2019-05-13 16:46:17 +03004713 bs->backing = NULL;
4714 bs->file = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004715 g_free(bs->opaque);
4716 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004717 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004718 bs->backing_file[0] = '\0';
4719 bs->backing_format[0] = '\0';
4720 bs->total_sectors = 0;
4721 bs->encrypted = false;
4722 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004723 qobject_unref(bs->options);
4724 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004725 bs->options = NULL;
4726 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004727 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004728 bs->full_open_options = NULL;
Hanna Reitz0bc329f2021-08-12 10:41:44 +02004729 g_free(bs->block_status_cache);
4730 bs->block_status_cache = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004731
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004732 bdrv_release_named_dirty_bitmaps(bs);
4733 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4734
Max Reitz33384422014-06-20 21:57:33 +02004735 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4736 g_free(ban);
4737 }
4738 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004739 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004740
4741 /*
4742 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4743 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4744 * gets called.
4745 */
4746 if (bs->quiesce_counter) {
4747 bdrv_drain_all_end_quiesce(bs);
4748 }
bellardb3380822004-03-14 21:38:54 +00004749}
4750
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004751void bdrv_close_all(void)
4752{
Kevin Wolfb3b52992018-05-16 13:46:37 +02004753 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004754
Max Reitzca9bd242016-01-29 16:36:14 +01004755 /* Drop references from requests still in flight, such as canceled block
4756 * jobs whose AIO context has not been polled yet */
4757 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004758
Max Reitzca9bd242016-01-29 16:36:14 +01004759 blk_remove_all_bs();
4760 blockdev_close_all_bdrv_states();
4761
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004762 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004763}
4764
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004765static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004766{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004767 GQueue *queue;
4768 GHashTable *found;
4769 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004770
Max Reitzbd86fb92020-05-13 13:05:13 +02004771 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004772 return false;
4773 }
4774
Max Reitzec9f10f2018-06-13 20:18:15 +02004775 /* If the child @c belongs to the BDS @to, replacing the current
4776 * c->bs by @to would mean to create a loop.
4777 *
4778 * Such a case occurs when appending a BDS to a backing chain.
4779 * For instance, imagine the following chain:
4780 *
4781 * guest device -> node A -> further backing chain...
4782 *
4783 * Now we create a new BDS B which we want to put on top of this
4784 * chain, so we first attach A as its backing node:
4785 *
4786 * node B
4787 * |
4788 * v
4789 * guest device -> node A -> further backing chain...
4790 *
4791 * Finally we want to replace A by B. When doing that, we want to
4792 * replace all pointers to A by pointers to B -- except for the
4793 * pointer from B because (1) that would create a loop, and (2)
4794 * that pointer should simply stay intact:
4795 *
4796 * guest device -> node B
4797 * |
4798 * v
4799 * node A -> further backing chain...
4800 *
4801 * In general, when replacing a node A (c->bs) by a node B (@to),
4802 * if A is a child of B, that means we cannot replace A by B there
4803 * because that would create a loop. Silently detaching A from B
4804 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004805 * place there is the most sensible choice.
4806 *
4807 * We would also create a loop in any cases where @c is only
4808 * indirectly referenced by @to. Prevent this by returning false
4809 * if @c is found (by breadth-first search) anywhere in the whole
4810 * subtree of @to.
4811 */
4812
4813 ret = true;
4814 found = g_hash_table_new(NULL, NULL);
4815 g_hash_table_add(found, to);
4816 queue = g_queue_new();
4817 g_queue_push_tail(queue, to);
4818
4819 while (!g_queue_is_empty(queue)) {
4820 BlockDriverState *v = g_queue_pop_head(queue);
4821 BdrvChild *c2;
4822
4823 QLIST_FOREACH(c2, &v->children, next) {
4824 if (c2 == c) {
4825 ret = false;
4826 break;
4827 }
4828
4829 if (g_hash_table_contains(found, c2->bs)) {
4830 continue;
4831 }
4832
4833 g_queue_push_tail(queue, c2->bs);
4834 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004835 }
4836 }
4837
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004838 g_queue_free(queue);
4839 g_hash_table_destroy(found);
4840
4841 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004842}
4843
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004844typedef struct BdrvRemoveFilterOrCowChild {
4845 BdrvChild *child;
4846 bool is_backing;
4847} BdrvRemoveFilterOrCowChild;
4848
4849static void bdrv_remove_filter_or_cow_child_abort(void *opaque)
4850{
4851 BdrvRemoveFilterOrCowChild *s = opaque;
4852 BlockDriverState *parent_bs = s->child->opaque;
4853
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004854 if (s->is_backing) {
4855 parent_bs->backing = s->child;
4856 } else {
4857 parent_bs->file = s->child;
4858 }
4859
4860 /*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03004861 * We don't have to restore child->bs here to undo bdrv_replace_child_tran()
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004862 * because that function is transactionable and it registered own completion
4863 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
4864 * called automatically.
4865 */
4866}
4867
4868static void bdrv_remove_filter_or_cow_child_commit(void *opaque)
4869{
4870 BdrvRemoveFilterOrCowChild *s = opaque;
4871
4872 bdrv_child_free(s->child);
4873}
4874
4875static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = {
4876 .abort = bdrv_remove_filter_or_cow_child_abort,
4877 .commit = bdrv_remove_filter_or_cow_child_commit,
4878 .clean = g_free,
4879};
4880
4881/*
Vladimir Sementsov-Ogievskiy5b995012021-06-10 15:05:29 +03004882 * A function to remove backing or file child of @bs.
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03004883 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004884 */
Vladimir Sementsov-Ogievskiy5b995012021-06-10 15:05:29 +03004885static void bdrv_remove_file_or_backing_child(BlockDriverState *bs,
4886 BdrvChild *child,
4887 Transaction *tran)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004888{
4889 BdrvRemoveFilterOrCowChild *s;
Vladimir Sementsov-Ogievskiy5b995012021-06-10 15:05:29 +03004890
4891 assert(child == bs->backing || child == bs->file);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004892
4893 if (!child) {
4894 return;
4895 }
4896
4897 if (child->bs) {
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03004898 bdrv_replace_child_tran(child, NULL, tran);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004899 }
4900
4901 s = g_new(BdrvRemoveFilterOrCowChild, 1);
4902 *s = (BdrvRemoveFilterOrCowChild) {
4903 .child = child,
4904 .is_backing = (child == bs->backing),
4905 };
4906 tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
4907
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004908 if (s->is_backing) {
4909 bs->backing = NULL;
4910 } else {
4911 bs->file = NULL;
4912 }
4913}
4914
Vladimir Sementsov-Ogievskiy5b995012021-06-10 15:05:29 +03004915/*
4916 * A function to remove backing-chain child of @bs if exists: cow child for
4917 * format nodes (always .backing) and filter child for filters (may be .file or
4918 * .backing)
4919 */
4920static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
4921 Transaction *tran)
4922{
4923 bdrv_remove_file_or_backing_child(bs, bdrv_filter_or_cow_child(bs), tran);
4924}
4925
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03004926static int bdrv_replace_node_noperm(BlockDriverState *from,
4927 BlockDriverState *to,
4928 bool auto_skip, Transaction *tran,
4929 Error **errp)
4930{
4931 BdrvChild *c, *next;
4932
4933 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
4934 assert(c->bs == from);
4935 if (!should_update_child(c, to)) {
4936 if (auto_skip) {
4937 continue;
4938 }
4939 error_setg(errp, "Should not change '%s' link to '%s'",
4940 c->name, from->node_name);
4941 return -EINVAL;
4942 }
4943 if (c->frozen) {
4944 error_setg(errp, "Cannot change '%s' link to '%s'",
4945 c->name, from->node_name);
4946 return -EPERM;
4947 }
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03004948 bdrv_replace_child_tran(c, to, tran);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03004949 }
4950
4951 return 0;
4952}
4953
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004954/*
4955 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4956 * if it creates a parent-child relation loop or if parent is block-job.
4957 *
4958 * With auto_skip=false the error is returned if from has a parent which should
4959 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004960 *
4961 * With @detach_subchain=true @to must be in a backing chain of @from. In this
4962 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004963 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004964static int bdrv_replace_node_common(BlockDriverState *from,
4965 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004966 bool auto_skip, bool detach_subchain,
4967 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004968{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004969 Transaction *tran = tran_new();
4970 g_autoptr(GHashTable) found = NULL;
4971 g_autoptr(GSList) refresh_list = NULL;
Miroslav Rezanina2d369d62021-05-05 03:59:03 -04004972 BlockDriverState *to_cow_parent = NULL;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004973 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004974
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004975 if (detach_subchain) {
4976 assert(bdrv_chain_contains(from, to));
4977 assert(from != to);
4978 for (to_cow_parent = from;
4979 bdrv_filter_or_cow_bs(to_cow_parent) != to;
4980 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
4981 {
4982 ;
4983 }
4984 }
4985
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004986 /* Make sure that @from doesn't go away until we have successfully attached
4987 * all of its parents to @to. */
4988 bdrv_ref(from);
4989
Kevin Wolff871abd2019-05-21 19:00:25 +02004990 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01004991 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02004992 bdrv_drained_begin(from);
4993
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004994 /*
4995 * Do the replacement without permission update.
4996 * Replacement may influence the permissions, we should calculate new
4997 * permissions based on new graph. If we fail, we'll roll-back the
4998 * replacement.
4999 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005000 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5001 if (ret < 0) {
5002 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005003 }
5004
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005005 if (detach_subchain) {
5006 bdrv_remove_filter_or_cow_child(to_cow_parent, tran);
5007 }
5008
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005009 found = g_hash_table_new(NULL, NULL);
5010
5011 refresh_list = bdrv_topological_dfs(refresh_list, found, to);
5012 refresh_list = bdrv_topological_dfs(refresh_list, found, from);
5013
5014 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005015 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005016 goto out;
5017 }
5018
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005019 ret = 0;
5020
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005021out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005022 tran_finalize(tran, ret);
5023
Kevin Wolff871abd2019-05-21 19:00:25 +02005024 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005025 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005026
5027 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005028}
5029
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005030int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5031 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005032{
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005033 return bdrv_replace_node_common(from, to, true, false, errp);
5034}
5035
5036int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5037{
5038 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5039 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005040}
5041
Jeff Cody8802d1f2012-02-28 15:54:06 -05005042/*
5043 * Add new bs contents at the top of an image chain while the chain is
5044 * live, while keeping required fields on the top layer.
5045 *
5046 * This will modify the BlockDriverState fields, and swap contents
5047 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5048 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005049 * bs_new must not be attached to a BlockBackend and must not have backing
5050 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005051 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005052 * This function does not create any image files.
5053 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005054int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5055 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005056{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005057 int ret;
5058 Transaction *tran = tran_new();
5059
5060 assert(!bs_new->backing);
5061
5062 ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5063 &child_of_bds, bdrv_backing_role(bs_new),
5064 &bs_new->backing, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005065 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005066 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005067 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005068
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005069 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005070 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005071 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005072 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005073
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005074 ret = bdrv_refresh_perms(bs_new, errp);
5075out:
5076 tran_finalize(tran, ret);
5077
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005078 bdrv_refresh_limits(bs_top, NULL, NULL);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005079
5080 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005081}
5082
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005083/* Not for empty child */
5084int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5085 Error **errp)
5086{
5087 int ret;
5088 Transaction *tran = tran_new();
5089 g_autoptr(GHashTable) found = NULL;
5090 g_autoptr(GSList) refresh_list = NULL;
5091 BlockDriverState *old_bs = child->bs;
5092
5093 bdrv_ref(old_bs);
5094 bdrv_drained_begin(old_bs);
5095 bdrv_drained_begin(new_bs);
5096
5097 bdrv_replace_child_tran(child, new_bs, tran);
5098
5099 found = g_hash_table_new(NULL, NULL);
5100 refresh_list = bdrv_topological_dfs(refresh_list, found, old_bs);
5101 refresh_list = bdrv_topological_dfs(refresh_list, found, new_bs);
5102
5103 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5104
5105 tran_finalize(tran, ret);
5106
5107 bdrv_drained_end(old_bs);
5108 bdrv_drained_end(new_bs);
5109 bdrv_unref(old_bs);
5110
5111 return ret;
5112}
5113
Fam Zheng4f6fd342013-08-23 09:14:47 +08005114static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005115{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005116 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005117 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02005118
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005119 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005120 if (bs->node_name[0] != '\0') {
5121 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5122 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005123 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5124
Anton Kuchin30c321f2019-05-07 11:12:56 +03005125 bdrv_close(bs);
5126
Anthony Liguori7267c092011-08-20 22:09:37 -05005127 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005128}
5129
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005130
5131/*
5132 * Replace @bs by newly created block node.
5133 *
5134 * @options is a QDict of options to pass to the block drivers, or NULL for an
5135 * empty set of options. The reference to the QDict belongs to the block layer
5136 * after the call (even on failure), so if the caller intends to reuse the
5137 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5138 */
5139BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005140 int flags, Error **errp)
5141{
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005142 ERRP_GUARD();
5143 int ret;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005144 BlockDriverState *new_node_bs = NULL;
5145 const char *drvname, *node_name;
5146 BlockDriver *drv;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005147
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005148 drvname = qdict_get_try_str(options, "driver");
5149 if (!drvname) {
5150 error_setg(errp, "driver is not specified");
5151 goto fail;
5152 }
5153
5154 drv = bdrv_find_format(drvname);
5155 if (!drv) {
5156 error_setg(errp, "Unknown driver: '%s'", drvname);
5157 goto fail;
5158 }
5159
5160 node_name = qdict_get_try_str(options, "node-name");
5161
5162 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5163 errp);
5164 options = NULL; /* bdrv_new_open_driver() eats options */
5165 if (!new_node_bs) {
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005166 error_prepend(errp, "Could not create node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005167 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005168 }
5169
5170 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005171 ret = bdrv_replace_node(bs, new_node_bs, errp);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005172 bdrv_drained_end(bs);
5173
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005174 if (ret < 0) {
5175 error_prepend(errp, "Could not replace node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005176 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005177 }
5178
5179 return new_node_bs;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005180
5181fail:
5182 qobject_unref(options);
5183 bdrv_unref(new_node_bs);
5184 return NULL;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005185}
5186
aliguorie97fc192009-04-21 23:11:50 +00005187/*
5188 * Run consistency checks on an image
5189 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005190 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005191 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005192 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005193 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005194int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5195 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005196{
Max Reitz908bcd52014-08-07 22:47:55 +02005197 if (bs->drv == NULL) {
5198 return -ENOMEDIUM;
5199 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005200 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005201 return -ENOTSUP;
5202 }
5203
Kevin Wolfe076f332010-06-29 11:43:13 +02005204 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005205 return bs->drv->bdrv_co_check(bs, res, fix);
5206}
5207
Kevin Wolf756e6732010-01-12 12:55:17 +01005208/*
5209 * Return values:
5210 * 0 - success
5211 * -EINVAL - backing format specified, but no file
5212 * -ENOSPC - can't update the backing file because no space is left in the
5213 * image file header
5214 * -ENOTSUP - format driver doesn't support changing the backing file
5215 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005216int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
Eric Blake497a30d2021-05-03 14:36:00 -07005217 const char *backing_fmt, bool require)
Kevin Wolf756e6732010-01-12 12:55:17 +01005218{
5219 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005220 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005221
Max Reitzd470ad42017-11-10 21:31:09 +01005222 if (!drv) {
5223 return -ENOMEDIUM;
5224 }
5225
Paolo Bonzini5f377792012-04-12 14:01:01 +02005226 /* Backing file format doesn't make sense without a backing file */
5227 if (backing_fmt && !backing_file) {
5228 return -EINVAL;
5229 }
5230
Eric Blake497a30d2021-05-03 14:36:00 -07005231 if (require && backing_file && !backing_fmt) {
5232 return -EINVAL;
Eric Blakee54ee1b2020-07-06 15:39:53 -05005233 }
5234
Kevin Wolf756e6732010-01-12 12:55:17 +01005235 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005236 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005237 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005238 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005239 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005240
5241 if (ret == 0) {
5242 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5243 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005244 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5245 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005246 }
5247 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005248}
5249
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005250/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005251 * Finds the first non-filter node above bs in the chain between
5252 * active and bs. The returned node is either an immediate parent of
5253 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005254 *
5255 * Returns NULL if bs is not found in active's image chain,
5256 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005257 *
5258 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005259 */
5260BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5261 BlockDriverState *bs)
5262{
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005263 bs = bdrv_skip_filters(bs);
5264 active = bdrv_skip_filters(active);
5265
5266 while (active) {
5267 BlockDriverState *next = bdrv_backing_chain_next(active);
5268 if (bs == next) {
5269 return active;
5270 }
5271 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005272 }
5273
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005274 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005275}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005276
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005277/* Given a BDS, searches for the base layer. */
5278BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5279{
5280 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005281}
5282
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005283/*
Max Reitz7b99a262019-06-12 16:07:11 +02005284 * Return true if at least one of the COW (backing) and filter links
5285 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005286 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005287 */
5288bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5289 Error **errp)
5290{
5291 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005292 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005293
Max Reitz7b99a262019-06-12 16:07:11 +02005294 for (i = bs; i != base; i = child_bs(child)) {
5295 child = bdrv_filter_or_cow_child(i);
5296
5297 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005298 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005299 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005300 return true;
5301 }
5302 }
5303
5304 return false;
5305}
5306
5307/*
Max Reitz7b99a262019-06-12 16:07:11 +02005308 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005309 * If any of the links is already frozen the operation is aborted and
5310 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005311 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005312 * Returns 0 on success. On failure returns < 0 and sets @errp.
5313 */
5314int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5315 Error **errp)
5316{
5317 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005318 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005319
5320 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5321 return -EPERM;
5322 }
5323
Max Reitz7b99a262019-06-12 16:07:11 +02005324 for (i = bs; i != base; i = child_bs(child)) {
5325 child = bdrv_filter_or_cow_child(i);
5326 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005327 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005328 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005329 return -EPERM;
5330 }
5331 }
5332
Max Reitz7b99a262019-06-12 16:07:11 +02005333 for (i = bs; i != base; i = child_bs(child)) {
5334 child = bdrv_filter_or_cow_child(i);
5335 if (child) {
5336 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005337 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005338 }
5339
5340 return 0;
5341}
5342
5343/*
Max Reitz7b99a262019-06-12 16:07:11 +02005344 * Unfreeze all COW (backing) and filter links between @bs and @base.
5345 * The caller must ensure that all links are frozen before using this
5346 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005347 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005348 */
5349void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5350{
5351 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005352 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005353
Max Reitz7b99a262019-06-12 16:07:11 +02005354 for (i = bs; i != base; i = child_bs(child)) {
5355 child = bdrv_filter_or_cow_child(i);
5356 if (child) {
5357 assert(child->frozen);
5358 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005359 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005360 }
5361}
5362
5363/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005364 * Drops images above 'base' up to and including 'top', and sets the image
5365 * above 'top' to have base as its backing file.
5366 *
5367 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5368 * information in 'bs' can be properly updated.
5369 *
5370 * E.g., this will convert the following chain:
5371 * bottom <- base <- intermediate <- top <- active
5372 *
5373 * to
5374 *
5375 * bottom <- base <- active
5376 *
5377 * It is allowed for bottom==base, in which case it converts:
5378 *
5379 * base <- intermediate <- top <- active
5380 *
5381 * to
5382 *
5383 * base <- active
5384 *
Jeff Cody54e26902014-06-25 15:40:10 -04005385 * If backing_file_str is non-NULL, it will be used when modifying top's
5386 * overlay image metadata.
5387 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005388 * Error conditions:
5389 * if active == top, that is considered an error
5390 *
5391 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005392int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5393 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005394{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005395 BlockDriverState *explicit_top = top;
5396 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005397 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005398 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005399 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005400 g_autoptr(GSList) updated_children = NULL;
5401 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005402
Kevin Wolf6858eba2017-06-29 19:32:21 +02005403 bdrv_ref(top);
Max Reitz637d54a2019-07-22 15:33:43 +02005404 bdrv_subtree_drained_begin(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005405
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005406 if (!top->drv || !base->drv) {
5407 goto exit;
5408 }
5409
Kevin Wolf5db15a52015-09-14 15:33:33 +02005410 /* Make sure that base is in the backing chain of top */
5411 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005412 goto exit;
5413 }
5414
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005415 /* If 'base' recursively inherits from 'top' then we should set
5416 * base->inherits_from to top->inherits_from after 'top' and all
5417 * other intermediate nodes have been dropped.
5418 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5419 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005420 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005421 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5422
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005423 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02005424 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
5425 * we've figured out how they should work. */
Max Reitzf30c66b2019-02-01 20:29:05 +01005426 if (!backing_file_str) {
5427 bdrv_refresh_filename(base);
5428 backing_file_str = base->filename;
5429 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005430
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005431 QLIST_FOREACH(c, &top->parents, next_parent) {
5432 updated_children = g_slist_prepend(updated_children, c);
5433 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005434
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005435 /*
5436 * It seems correct to pass detach_subchain=true here, but it triggers
5437 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5438 * another drained section, which modify the graph (for example, removing
5439 * the child, which we keep in updated_children list). So, it's a TODO.
5440 *
5441 * Note, bug triggered if pass detach_subchain=true here and run
5442 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5443 * That's a FIXME.
5444 */
5445 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005446 if (local_err) {
5447 error_report_err(local_err);
5448 goto exit;
5449 }
5450
5451 for (p = updated_children; p; p = p->next) {
5452 c = p->data;
5453
Max Reitzbd86fb92020-05-13 13:05:13 +02005454 if (c->klass->update_filename) {
5455 ret = c->klass->update_filename(c, base, backing_file_str,
5456 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005457 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005458 /*
5459 * TODO: Actually, we want to rollback all previous iterations
5460 * of this loop, and (which is almost impossible) previous
5461 * bdrv_replace_node()...
5462 *
5463 * Note, that c->klass->update_filename may lead to permission
5464 * update, so it's a bad idea to call it inside permission
5465 * update transaction of bdrv_replace_node.
5466 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005467 error_report_err(local_err);
5468 goto exit;
5469 }
5470 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005471 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005472
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005473 if (update_inherits_from) {
5474 base->inherits_from = explicit_top->inherits_from;
5475 }
5476
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005477 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005478exit:
Max Reitz637d54a2019-07-22 15:33:43 +02005479 bdrv_subtree_drained_end(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005480 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005481 return ret;
5482}
5483
bellard83f64092006-08-01 16:21:11 +00005484/**
Max Reitz081e4652019-06-12 18:14:13 +02005485 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5486 * sums the size of all data-bearing children. (This excludes backing
5487 * children.)
5488 */
5489static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5490{
5491 BdrvChild *child;
5492 int64_t child_size, sum = 0;
5493
5494 QLIST_FOREACH(child, &bs->children, next) {
5495 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5496 BDRV_CHILD_FILTERED))
5497 {
5498 child_size = bdrv_get_allocated_file_size(child->bs);
5499 if (child_size < 0) {
5500 return child_size;
5501 }
5502 sum += child_size;
5503 }
5504 }
5505
5506 return sum;
5507}
5508
5509/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005510 * Length of a allocated file in bytes. Sparse files are counted by actual
5511 * allocated space. Return < 0 if error or unknown.
5512 */
5513int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5514{
5515 BlockDriver *drv = bs->drv;
5516 if (!drv) {
5517 return -ENOMEDIUM;
5518 }
5519 if (drv->bdrv_get_allocated_file_size) {
5520 return drv->bdrv_get_allocated_file_size(bs);
5521 }
Max Reitz081e4652019-06-12 18:14:13 +02005522
5523 if (drv->bdrv_file_open) {
5524 /*
5525 * Protocol drivers default to -ENOTSUP (most of their data is
5526 * not stored in any of their children (if they even have any),
5527 * so there is no generic way to figure it out).
5528 */
5529 return -ENOTSUP;
5530 } else if (drv->is_filter) {
5531 /* Filter drivers default to the size of their filtered child */
5532 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5533 } else {
5534 /* Other drivers default to summing their children's sizes */
5535 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005536 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005537}
5538
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005539/*
5540 * bdrv_measure:
5541 * @drv: Format driver
5542 * @opts: Creation options for new image
5543 * @in_bs: Existing image containing data for new image (may be NULL)
5544 * @errp: Error object
5545 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5546 * or NULL on error
5547 *
5548 * Calculate file size required to create a new image.
5549 *
5550 * If @in_bs is given then space for allocated clusters and zero clusters
5551 * from that image are included in the calculation. If @opts contains a
5552 * backing file that is shared by @in_bs then backing clusters may be omitted
5553 * from the calculation.
5554 *
5555 * If @in_bs is NULL then the calculation includes no allocated clusters
5556 * unless a preallocation option is given in @opts.
5557 *
5558 * Note that @in_bs may use a different BlockDriver from @drv.
5559 *
5560 * If an error occurs the @errp pointer is set.
5561 */
5562BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5563 BlockDriverState *in_bs, Error **errp)
5564{
5565 if (!drv->bdrv_measure) {
5566 error_setg(errp, "Block driver '%s' does not support size measurement",
5567 drv->format_name);
5568 return NULL;
5569 }
5570
5571 return drv->bdrv_measure(opts, in_bs, errp);
5572}
5573
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005574/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005575 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005576 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005577int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005578{
5579 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005580
bellard83f64092006-08-01 16:21:11 +00005581 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005582 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005583
Kevin Wolfb94a2612013-10-29 12:18:58 +01005584 if (drv->has_variable_length) {
5585 int ret = refresh_total_sectors(bs, bs->total_sectors);
5586 if (ret < 0) {
5587 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005588 }
bellard83f64092006-08-01 16:21:11 +00005589 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005590 return bs->total_sectors;
5591}
5592
5593/**
5594 * Return length in bytes on success, -errno on error.
5595 * The length is always a multiple of BDRV_SECTOR_SIZE.
5596 */
5597int64_t bdrv_getlength(BlockDriverState *bs)
5598{
5599 int64_t ret = bdrv_nb_sectors(bs);
5600
Eric Blake122860b2020-11-05 09:51:22 -06005601 if (ret < 0) {
5602 return ret;
5603 }
5604 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5605 return -EFBIG;
5606 }
5607 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005608}
5609
bellard19cb3732006-08-19 11:45:59 +00005610/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005611void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005612{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005613 int64_t nb_sectors = bdrv_nb_sectors(bs);
5614
5615 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005616}
bellardcf989512004-02-16 21:56:36 +00005617
Eric Blake54115412016-06-23 16:37:26 -06005618bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005619{
5620 return bs->sg;
5621}
5622
Max Reitzae23f782019-06-12 22:57:15 +02005623/**
5624 * Return whether the given node supports compressed writes.
5625 */
5626bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5627{
5628 BlockDriverState *filtered;
5629
5630 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5631 return false;
5632 }
5633
5634 filtered = bdrv_filter_bs(bs);
5635 if (filtered) {
5636 /*
5637 * Filters can only forward compressed writes, so we have to
5638 * check the child.
5639 */
5640 return bdrv_supports_compressed_writes(filtered);
5641 }
5642
5643 return true;
5644}
5645
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005646const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005647{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005648 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005649}
5650
Stefan Hajnocziada42402014-08-27 12:08:55 +01005651static int qsort_strcmp(const void *a, const void *b)
5652{
Max Reitzceff5bd2016-10-12 22:49:05 +02005653 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005654}
5655
ths5fafdf22007-09-16 21:08:06 +00005656void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005657 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005658{
5659 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005660 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005661 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005662 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005663
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005664 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005665 if (drv->format_name) {
5666 bool found = false;
5667 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005668
5669 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5670 continue;
5671 }
5672
Jeff Codye855e4f2014-04-28 18:29:54 -04005673 while (formats && i && !found) {
5674 found = !strcmp(formats[--i], drv->format_name);
5675 }
5676
5677 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005678 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005679 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005680 }
5681 }
bellardea2384d2004-08-01 21:59:26 +00005682 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005683
Max Reitzeb0df692016-10-12 22:49:06 +02005684 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5685 const char *format_name = block_driver_modules[i].format_name;
5686
5687 if (format_name) {
5688 bool found = false;
5689 int j = count;
5690
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005691 if (use_bdrv_whitelist &&
5692 !bdrv_format_is_whitelisted(format_name, read_only)) {
5693 continue;
5694 }
5695
Max Reitzeb0df692016-10-12 22:49:06 +02005696 while (formats && j && !found) {
5697 found = !strcmp(formats[--j], format_name);
5698 }
5699
5700 if (!found) {
5701 formats = g_renew(const char *, formats, count + 1);
5702 formats[count++] = format_name;
5703 }
5704 }
5705 }
5706
Stefan Hajnocziada42402014-08-27 12:08:55 +01005707 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5708
5709 for (i = 0; i < count; i++) {
5710 it(opaque, formats[i]);
5711 }
5712
Jeff Codye855e4f2014-04-28 18:29:54 -04005713 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005714}
5715
Benoît Canetdc364f42014-01-23 21:31:32 +01005716/* This function is to find a node in the bs graph */
5717BlockDriverState *bdrv_find_node(const char *node_name)
5718{
5719 BlockDriverState *bs;
5720
5721 assert(node_name);
5722
5723 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5724 if (!strcmp(node_name, bs->node_name)) {
5725 return bs;
5726 }
5727 }
5728 return NULL;
5729}
5730
Benoît Canetc13163f2014-01-23 21:31:34 +01005731/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01005732BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5733 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01005734{
Eric Blake9812e712020-10-27 00:05:47 -05005735 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01005736 BlockDriverState *bs;
5737
5738 list = NULL;
5739 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01005740 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03005741 if (!info) {
5742 qapi_free_BlockDeviceInfoList(list);
5743 return NULL;
5744 }
Eric Blake9812e712020-10-27 00:05:47 -05005745 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01005746 }
5747
5748 return list;
5749}
5750
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005751typedef struct XDbgBlockGraphConstructor {
5752 XDbgBlockGraph *graph;
5753 GHashTable *graph_nodes;
5754} XDbgBlockGraphConstructor;
5755
5756static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5757{
5758 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5759
5760 gr->graph = g_new0(XDbgBlockGraph, 1);
5761 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5762
5763 return gr;
5764}
5765
5766static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5767{
5768 XDbgBlockGraph *graph = gr->graph;
5769
5770 g_hash_table_destroy(gr->graph_nodes);
5771 g_free(gr);
5772
5773 return graph;
5774}
5775
5776static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5777{
5778 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5779
5780 if (ret != 0) {
5781 return ret;
5782 }
5783
5784 /*
5785 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5786 * answer of g_hash_table_lookup.
5787 */
5788 ret = g_hash_table_size(gr->graph_nodes) + 1;
5789 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5790
5791 return ret;
5792}
5793
5794static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5795 XDbgBlockGraphNodeType type, const char *name)
5796{
5797 XDbgBlockGraphNode *n;
5798
5799 n = g_new0(XDbgBlockGraphNode, 1);
5800
5801 n->id = xdbg_graph_node_num(gr, node);
5802 n->type = type;
5803 n->name = g_strdup(name);
5804
Eric Blake9812e712020-10-27 00:05:47 -05005805 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005806}
5807
5808static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5809 const BdrvChild *child)
5810{
Max Reitzcdb1cec2019-11-08 13:34:52 +01005811 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005812 XDbgBlockGraphEdge *edge;
5813
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005814 edge = g_new0(XDbgBlockGraphEdge, 1);
5815
5816 edge->parent = xdbg_graph_node_num(gr, parent);
5817 edge->child = xdbg_graph_node_num(gr, child->bs);
5818 edge->name = g_strdup(child->name);
5819
Max Reitzcdb1cec2019-11-08 13:34:52 +01005820 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5821 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5822
5823 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005824 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005825 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01005826 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005827 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005828 }
5829 }
5830
Eric Blake9812e712020-10-27 00:05:47 -05005831 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005832}
5833
5834
5835XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5836{
5837 BlockBackend *blk;
5838 BlockJob *job;
5839 BlockDriverState *bs;
5840 BdrvChild *child;
5841 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5842
5843 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5844 char *allocated_name = NULL;
5845 const char *name = blk_name(blk);
5846
5847 if (!*name) {
5848 name = allocated_name = blk_get_attached_dev_id(blk);
5849 }
5850 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5851 name);
5852 g_free(allocated_name);
5853 if (blk_root(blk)) {
5854 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5855 }
5856 }
5857
5858 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5859 GSList *el;
5860
5861 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5862 job->job.id);
5863 for (el = job->nodes; el; el = el->next) {
5864 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5865 }
5866 }
5867
5868 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5869 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5870 bs->node_name);
5871 QLIST_FOREACH(child, &bs->children, next) {
5872 xdbg_graph_add_edge(gr, bs, child);
5873 }
5874 }
5875
5876 return xdbg_graph_finalize(gr);
5877}
5878
Benoît Canet12d3ba82014-01-23 21:31:35 +01005879BlockDriverState *bdrv_lookup_bs(const char *device,
5880 const char *node_name,
5881 Error **errp)
5882{
Markus Armbruster7f06d472014-10-07 13:59:12 +02005883 BlockBackend *blk;
5884 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005885
Benoît Canet12d3ba82014-01-23 21:31:35 +01005886 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02005887 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005888
Markus Armbruster7f06d472014-10-07 13:59:12 +02005889 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005890 bs = blk_bs(blk);
5891 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02005892 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02005893 }
5894
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005895 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005896 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005897 }
5898
Benoît Canetdd67fa52014-02-12 17:15:06 +01005899 if (node_name) {
5900 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005901
Benoît Canetdd67fa52014-02-12 17:15:06 +01005902 if (bs) {
5903 return bs;
5904 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005905 }
5906
Connor Kuehl785ec4b2021-03-05 09:19:28 -06005907 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01005908 device ? device : "",
5909 node_name ? node_name : "");
5910 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005911}
5912
Jeff Cody5a6684d2014-06-25 15:40:09 -04005913/* If 'base' is in the same chain as 'top', return true. Otherwise,
5914 * return false. If either argument is NULL, return false. */
5915bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5916{
5917 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005918 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04005919 }
5920
5921 return top != NULL;
5922}
5923
Fam Zheng04df7652014-10-31 11:32:54 +08005924BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5925{
5926 if (!bs) {
5927 return QTAILQ_FIRST(&graph_bdrv_states);
5928 }
5929 return QTAILQ_NEXT(bs, node_list);
5930}
5931
Kevin Wolf0f122642018-03-28 18:29:18 +02005932BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5933{
5934 if (!bs) {
5935 return QTAILQ_FIRST(&all_bdrv_states);
5936 }
5937 return QTAILQ_NEXT(bs, bs_list);
5938}
5939
Fam Zheng20a9e772014-10-31 11:32:55 +08005940const char *bdrv_get_node_name(const BlockDriverState *bs)
5941{
5942 return bs->node_name;
5943}
5944
Kevin Wolf1f0c4612016-03-22 18:38:44 +01005945const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005946{
5947 BdrvChild *c;
5948 const char *name;
5949
5950 /* If multiple parents have a name, just pick the first one. */
5951 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005952 if (c->klass->get_name) {
5953 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005954 if (name && *name) {
5955 return name;
5956 }
5957 }
5958 }
5959
5960 return NULL;
5961}
5962
Markus Armbruster7f06d472014-10-07 13:59:12 +02005963/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02005964const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005965{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005966 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00005967}
5968
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005969/* This can be used to identify nodes that might not have a device
5970 * name associated. Since node and device names live in the same
5971 * namespace, the result is unambiguous. The exception is if both are
5972 * absent, then this returns an empty (non-null) string. */
5973const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5974{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005975 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005976}
5977
Markus Armbrusterc8433282012-06-05 16:49:24 +02005978int bdrv_get_flags(BlockDriverState *bs)
5979{
5980 return bs->open_flags;
5981}
5982
Peter Lieven3ac21622013-06-28 12:47:42 +02005983int bdrv_has_zero_init_1(BlockDriverState *bs)
5984{
5985 return 1;
5986}
5987
Kevin Wolff2feebb2010-04-14 17:30:35 +02005988int bdrv_has_zero_init(BlockDriverState *bs)
5989{
Max Reitz93393e62019-06-12 17:03:38 +02005990 BlockDriverState *filtered;
5991
Max Reitzd470ad42017-11-10 21:31:09 +01005992 if (!bs->drv) {
5993 return 0;
5994 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005995
Paolo Bonzini11212d82013-09-04 19:00:27 +02005996 /* If BS is a copy on write image, it is initialized to
5997 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02005998 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02005999 return 0;
6000 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006001 if (bs->drv->bdrv_has_zero_init) {
6002 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006003 }
Max Reitz93393e62019-06-12 17:03:38 +02006004
6005 filtered = bdrv_filter_bs(bs);
6006 if (filtered) {
6007 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006008 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006009
Peter Lieven3ac21622013-06-28 12:47:42 +02006010 /* safe default */
6011 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006012}
6013
Peter Lieven4ce78692013-10-24 12:06:54 +02006014bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6015{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006016 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006017 return false;
6018 }
6019
Eric Blakee24d8132018-01-26 13:34:39 -06006020 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006021}
6022
ths5fafdf22007-09-16 21:08:06 +00006023void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006024 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006025{
Kevin Wolf3574c602011-10-26 11:02:11 +02006026 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006027}
6028
bellardfaea38e2006-08-05 21:31:00 +00006029int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6030{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006031 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006032 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006033 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6034 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006035 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006036 }
6037 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006038 BlockDriverState *filtered = bdrv_filter_bs(bs);
6039 if (filtered) {
6040 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006041 }
bellardfaea38e2006-08-05 21:31:00 +00006042 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006043 }
bellardfaea38e2006-08-05 21:31:00 +00006044 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006045 ret = drv->bdrv_get_info(bs, bdi);
6046 if (ret < 0) {
6047 return ret;
6048 }
6049
6050 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6051 return -EINVAL;
6052 }
6053
6054 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006055}
6056
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006057ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6058 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006059{
6060 BlockDriver *drv = bs->drv;
6061 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006062 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006063 }
6064 return NULL;
6065}
6066
Anton Nefedovd9245592019-09-23 15:17:37 +03006067BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6068{
6069 BlockDriver *drv = bs->drv;
6070 if (!drv || !drv->bdrv_get_specific_stats) {
6071 return NULL;
6072 }
6073 return drv->bdrv_get_specific_stats(bs);
6074}
6075
Eric Blakea31939e2015-11-18 01:52:54 -07006076void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006077{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006078 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006079 return;
6080 }
6081
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006082 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006083}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006084
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006085static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006086{
6087 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006088 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006089 }
6090
6091 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006092 assert(bs->drv->bdrv_debug_remove_breakpoint);
6093 return bs;
6094 }
6095
6096 return NULL;
6097}
6098
6099int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6100 const char *tag)
6101{
6102 bs = bdrv_find_debug_node(bs);
6103 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006104 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6105 }
6106
6107 return -ENOTSUP;
6108}
6109
Fam Zheng4cc70e92013-11-20 10:01:54 +08006110int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6111{
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006112 bs = bdrv_find_debug_node(bs);
6113 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006114 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6115 }
6116
6117 return -ENOTSUP;
6118}
6119
Kevin Wolf41c695c2012-12-06 14:32:58 +01006120int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6121{
Max Reitz938789e2014-03-10 23:44:08 +01006122 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006123 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006124 }
6125
6126 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6127 return bs->drv->bdrv_debug_resume(bs, tag);
6128 }
6129
6130 return -ENOTSUP;
6131}
6132
6133bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6134{
6135 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006136 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006137 }
6138
6139 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6140 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6141 }
6142
6143 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006144}
6145
Jeff Codyb1b1d782012-10-16 15:49:09 -04006146/* backing_file can either be relative, or absolute, or a protocol. If it is
6147 * relative, it must be relative to the chain. So, passing in bs->filename
6148 * from a BDS as backing_file should not be done, as that may be relative to
6149 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006150BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6151 const char *backing_file)
6152{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006153 char *filename_full = NULL;
6154 char *backing_file_full = NULL;
6155 char *filename_tmp = NULL;
6156 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006157 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006158 BlockDriverState *curr_bs = NULL;
6159 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006160 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006161
6162 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006163 return NULL;
6164 }
6165
Jeff Codyb1b1d782012-10-16 15:49:09 -04006166 filename_full = g_malloc(PATH_MAX);
6167 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006168
6169 is_protocol = path_has_protocol(backing_file);
6170
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006171 /*
6172 * Being largely a legacy function, skip any filters here
6173 * (because filters do not have normal filenames, so they cannot
6174 * match anyway; and allowing json:{} filenames is a bit out of
6175 * scope).
6176 */
6177 for (curr_bs = bdrv_skip_filters(bs);
6178 bdrv_cow_child(curr_bs) != NULL;
6179 curr_bs = bs_below)
6180 {
6181 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006182
Max Reitz0b877d02018-08-01 20:34:11 +02006183 if (bdrv_backing_overridden(curr_bs)) {
6184 /*
6185 * If the backing file was overridden, we can only compare
6186 * directly against the backing node's filename.
6187 */
6188
6189 if (!filenames_refreshed) {
6190 /*
6191 * This will automatically refresh all of the
6192 * filenames in the rest of the backing chain, so we
6193 * only need to do this once.
6194 */
6195 bdrv_refresh_filename(bs_below);
6196 filenames_refreshed = true;
6197 }
6198
6199 if (strcmp(backing_file, bs_below->filename) == 0) {
6200 retval = bs_below;
6201 break;
6202 }
6203 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6204 /*
6205 * If either of the filename paths is actually a protocol, then
6206 * compare unmodified paths; otherwise make paths relative.
6207 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006208 char *backing_file_full_ret;
6209
Jeff Codyb1b1d782012-10-16 15:49:09 -04006210 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006211 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006212 break;
6213 }
Jeff Cody418661e2017-01-25 20:08:20 -05006214 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006215 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6216 NULL);
6217 if (backing_file_full_ret) {
6218 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6219 g_free(backing_file_full_ret);
6220 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006221 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006222 break;
6223 }
Jeff Cody418661e2017-01-25 20:08:20 -05006224 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006225 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006226 /* If not an absolute filename path, make it relative to the current
6227 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006228 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6229 NULL);
6230 /* We are going to compare canonicalized absolute pathnames */
6231 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6232 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006233 continue;
6234 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006235 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006236
6237 /* We need to make sure the backing filename we are comparing against
6238 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006239 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6240 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6241 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006242 continue;
6243 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006244 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006245
6246 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006247 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006248 break;
6249 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006250 }
6251 }
6252
Jeff Codyb1b1d782012-10-16 15:49:09 -04006253 g_free(filename_full);
6254 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006255 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006256}
6257
bellardea2384d2004-08-01 21:59:26 +00006258void bdrv_init(void)
6259{
Kevin Wolfe5f05f82021-07-09 18:41:41 +02006260#ifdef CONFIG_BDRV_WHITELIST_TOOLS
6261 use_bdrv_whitelist = 1;
6262#endif
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006263 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006264}
pbrookce1a14d2006-08-07 02:38:06 +00006265
Markus Armbrustereb852012009-10-27 18:41:44 +01006266void bdrv_init_with_whitelist(void)
6267{
6268 use_bdrv_whitelist = 1;
6269 bdrv_init();
6270}
6271
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03006272int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006273{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006274 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006275 Error *local_err = NULL;
6276 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006277 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006278
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006279 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006280 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006281 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006282
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006283 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01006284 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006285 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006286 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006287 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006288 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006289 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006290
Kevin Wolfdafe0962017-11-16 13:00:01 +01006291 /*
6292 * Update permissions, they may differ for inactive nodes.
6293 *
6294 * Note that the required permissions of inactive images are always a
6295 * subset of the permissions required after activating the image. This
6296 * allows us to just get the permissions upfront without restricting
6297 * drv->bdrv_invalidate_cache().
6298 *
6299 * It also means that in error cases, we don't have to try and revert to
6300 * the old permissions (which is an operation that could fail, too). We can
6301 * just keep the extended permissions for the next time that an activation
6302 * of the image is tried.
6303 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006304 if (bs->open_flags & BDRV_O_INACTIVE) {
6305 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006306 ret = bdrv_refresh_perms(bs, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006307 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006308 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006309 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006310 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006311
Kevin Wolf7bb49412019-12-17 15:06:38 +01006312 if (bs->drv->bdrv_co_invalidate_cache) {
6313 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6314 if (local_err) {
6315 bs->open_flags |= BDRV_O_INACTIVE;
6316 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006317 return -EINVAL;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006318 }
6319 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006320
Kevin Wolf7bb49412019-12-17 15:06:38 +01006321 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6322 bdrv_dirty_bitmap_skip_store(bm, false);
6323 }
6324
6325 ret = refresh_total_sectors(bs, bs->total_sectors);
6326 if (ret < 0) {
6327 bs->open_flags |= BDRV_O_INACTIVE;
6328 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006329 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006330 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006331 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006332
6333 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006334 if (parent->klass->activate) {
6335 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006336 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006337 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006338 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006339 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006340 }
6341 }
6342 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006343
6344 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006345}
6346
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006347void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006348{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006349 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006350 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006351
Kevin Wolf88be7b42016-05-20 18:49:07 +02006352 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006353 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006354 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006355
6356 aio_context_acquire(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006357 ret = bdrv_invalidate_cache(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006358 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006359 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006360 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006361 return;
6362 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006363 }
6364}
6365
Kevin Wolf9e372712018-11-23 15:11:14 +01006366static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6367{
6368 BdrvChild *parent;
6369
6370 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006371 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006372 BlockDriverState *parent_bs = parent->opaque;
6373 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6374 return true;
6375 }
6376 }
6377 }
6378
6379 return false;
6380}
6381
6382static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006383{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006384 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006385 int ret;
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006386 uint64_t cumulative_perms, cumulative_shared_perms;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006387
Max Reitzd470ad42017-11-10 21:31:09 +01006388 if (!bs->drv) {
6389 return -ENOMEDIUM;
6390 }
6391
Kevin Wolf9e372712018-11-23 15:11:14 +01006392 /* Make sure that we don't inactivate a child before its parent.
6393 * It will be covered by recursion from the yet active parent. */
6394 if (bdrv_has_bds_parent(bs, true)) {
6395 return 0;
6396 }
6397
6398 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6399
6400 /* Inactivate this node */
6401 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006402 ret = bs->drv->bdrv_inactivate(bs);
6403 if (ret < 0) {
6404 return ret;
6405 }
6406 }
6407
Kevin Wolf9e372712018-11-23 15:11:14 +01006408 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006409 if (parent->klass->inactivate) {
6410 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01006411 if (ret < 0) {
6412 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006413 }
6414 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006415 }
Kevin Wolf38701b62017-05-04 18:52:39 +02006416
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006417 bdrv_get_cumulative_perm(bs, &cumulative_perms,
6418 &cumulative_shared_perms);
6419 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
6420 /* Our inactive parents still need write access. Inactivation failed. */
6421 return -EPERM;
6422 }
6423
Kevin Wolf9e372712018-11-23 15:11:14 +01006424 bs->open_flags |= BDRV_O_INACTIVE;
6425
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03006426 /*
6427 * Update permissions, they may differ for inactive nodes.
6428 * We only tried to loosen restrictions, so errors are not fatal, ignore
6429 * them.
6430 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006431 bdrv_refresh_perms(bs, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01006432
6433 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02006434 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006435 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02006436 if (ret < 0) {
6437 return ret;
6438 }
6439 }
6440
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006441 return 0;
6442}
6443
6444int bdrv_inactivate_all(void)
6445{
Max Reitz79720af2016-03-16 19:54:44 +01006446 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006447 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006448 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006449 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006450
Kevin Wolf88be7b42016-05-20 18:49:07 +02006451 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006452 AioContext *aio_context = bdrv_get_aio_context(bs);
6453
6454 if (!g_slist_find(aio_ctxs, aio_context)) {
6455 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6456 aio_context_acquire(aio_context);
6457 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006458 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006459
Kevin Wolf9e372712018-11-23 15:11:14 +01006460 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6461 /* Nodes with BDS parents are covered by recursion from the last
6462 * parent that gets inactivated. Don't inactivate them a second
6463 * time if that has already happened. */
6464 if (bdrv_has_bds_parent(bs, false)) {
6465 continue;
6466 }
6467 ret = bdrv_inactivate_recurse(bs);
6468 if (ret < 0) {
6469 bdrv_next_cleanup(&it);
6470 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006471 }
6472 }
6473
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006474out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006475 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6476 AioContext *aio_context = ctx->data;
6477 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006478 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006479 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006480
6481 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006482}
6483
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006484/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006485/* removable device support */
6486
6487/**
6488 * Return TRUE if the media is present
6489 */
Max Reitze031f752015-10-19 17:53:11 +02006490bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006491{
6492 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006493 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006494
Max Reitze031f752015-10-19 17:53:11 +02006495 if (!drv) {
6496 return false;
6497 }
Max Reitz28d7a782015-10-19 17:53:13 +02006498 if (drv->bdrv_is_inserted) {
6499 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006500 }
Max Reitz28d7a782015-10-19 17:53:13 +02006501 QLIST_FOREACH(child, &bs->children, next) {
6502 if (!bdrv_is_inserted(child->bs)) {
6503 return false;
6504 }
6505 }
6506 return true;
bellard19cb3732006-08-19 11:45:59 +00006507}
6508
6509/**
bellard19cb3732006-08-19 11:45:59 +00006510 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6511 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006512void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006513{
6514 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00006515
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006516 if (drv && drv->bdrv_eject) {
6517 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006518 }
bellard19cb3732006-08-19 11:45:59 +00006519}
6520
bellard19cb3732006-08-19 11:45:59 +00006521/**
6522 * Lock or unlock the media (if it is locked, the user won't be able
6523 * to eject it manually).
6524 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006525void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006526{
6527 BlockDriver *drv = bs->drv;
6528
Markus Armbruster025e8492011-09-06 18:58:47 +02006529 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006530
Markus Armbruster025e8492011-09-06 18:58:47 +02006531 if (drv && drv->bdrv_lock_medium) {
6532 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006533 }
6534}
ths985a03b2007-12-24 16:10:43 +00006535
Fam Zheng9fcb0252013-08-23 09:14:46 +08006536/* Get a reference to bs */
6537void bdrv_ref(BlockDriverState *bs)
6538{
6539 bs->refcnt++;
6540}
6541
6542/* Release a previously grabbed reference to bs.
6543 * If after releasing, reference count is zero, the BlockDriverState is
6544 * deleted. */
6545void bdrv_unref(BlockDriverState *bs)
6546{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006547 if (!bs) {
6548 return;
6549 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006550 assert(bs->refcnt > 0);
6551 if (--bs->refcnt == 0) {
6552 bdrv_delete(bs);
6553 }
6554}
6555
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006556struct BdrvOpBlocker {
6557 Error *reason;
6558 QLIST_ENTRY(BdrvOpBlocker) list;
6559};
6560
6561bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6562{
6563 BdrvOpBlocker *blocker;
6564 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6565 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6566 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006567 error_propagate_prepend(errp, error_copy(blocker->reason),
6568 "Node '%s' is busy: ",
6569 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006570 return true;
6571 }
6572 return false;
6573}
6574
6575void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6576{
6577 BdrvOpBlocker *blocker;
6578 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6579
Markus Armbruster5839e532014-08-19 10:31:08 +02006580 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006581 blocker->reason = reason;
6582 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6583}
6584
6585void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6586{
6587 BdrvOpBlocker *blocker, *next;
6588 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6589 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6590 if (blocker->reason == reason) {
6591 QLIST_REMOVE(blocker, list);
6592 g_free(blocker);
6593 }
6594 }
6595}
6596
6597void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6598{
6599 int i;
6600 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6601 bdrv_op_block(bs, i, reason);
6602 }
6603}
6604
6605void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6606{
6607 int i;
6608 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6609 bdrv_op_unblock(bs, i, reason);
6610 }
6611}
6612
6613bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6614{
6615 int i;
6616
6617 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6618 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6619 return false;
6620 }
6621 }
6622 return true;
6623}
6624
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006625void bdrv_img_create(const char *filename, const char *fmt,
6626 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006627 char *options, uint64_t img_size, int flags, bool quiet,
6628 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006629{
Chunyan Liu83d05212014-06-05 17:20:51 +08006630 QemuOptsList *create_opts = NULL;
6631 QemuOpts *opts = NULL;
6632 const char *backing_fmt, *backing_file;
6633 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006634 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006635 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006636 int ret = 0;
6637
6638 /* Find driver and parse its options */
6639 drv = bdrv_find_format(fmt);
6640 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006641 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006642 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006643 }
6644
Max Reitzb65a5e12015-02-05 13:58:12 -05006645 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006646 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006647 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006648 }
6649
Max Reitzc6149722014-12-02 18:32:45 +01006650 if (!drv->create_opts) {
6651 error_setg(errp, "Format driver '%s' does not support image creation",
6652 drv->format_name);
6653 return;
6654 }
6655
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006656 if (!proto_drv->create_opts) {
6657 error_setg(errp, "Protocol driver '%s' does not support image creation",
6658 proto_drv->format_name);
6659 return;
6660 }
6661
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006662 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006663 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006664 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006665
Chunyan Liu83d05212014-06-05 17:20:51 +08006666 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006667
6668 /* Parse -o options */
6669 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02006670 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006671 goto out;
6672 }
6673 }
6674
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006675 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6676 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6677 } else if (img_size != UINT64_C(-1)) {
6678 error_setg(errp, "The image size must be specified only once");
6679 goto out;
6680 }
6681
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006682 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02006683 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02006684 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006685 error_setg(errp, "Backing file not supported for file format '%s'",
6686 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006687 goto out;
6688 }
6689 }
6690
6691 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02006692 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006693 error_setg(errp, "Backing file format not supported for file "
6694 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006695 goto out;
6696 }
6697 }
6698
Chunyan Liu83d05212014-06-05 17:20:51 +08006699 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6700 if (backing_file) {
6701 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006702 error_setg(errp, "Error: Trying to create an image with the "
6703 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01006704 goto out;
6705 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05006706 if (backing_file[0] == '\0') {
6707 error_setg(errp, "Expected backing file name, got empty string");
6708 goto out;
6709 }
Jes Sorensen792da932010-12-16 13:52:17 +01006710 }
6711
Chunyan Liu83d05212014-06-05 17:20:51 +08006712 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006713
John Snow6e6e55f2017-07-17 20:34:22 -04006714 /* The size for the image must always be specified, unless we have a backing
6715 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05006716 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04006717 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6718 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01006719 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04006720 int back_flags;
6721 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02006722
Max Reitz645ae7d2019-02-01 20:29:14 +01006723 full_backing =
6724 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6725 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04006726 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006727 goto out;
6728 }
Max Reitz645ae7d2019-02-01 20:29:14 +01006729 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04006730
Max Reitzd5b23992021-06-22 16:00:30 +02006731 /*
6732 * No need to do I/O here, which allows us to open encrypted
6733 * backing images without needing the secret
6734 */
John Snow6e6e55f2017-07-17 20:34:22 -04006735 back_flags = flags;
6736 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Max Reitzd5b23992021-06-22 16:00:30 +02006737 back_flags |= BDRV_O_NO_IO;
John Snow6e6e55f2017-07-17 20:34:22 -04006738
Fam Zhengcc954f02017-12-15 16:04:45 +08006739 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04006740 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04006741 qdict_put_str(backing_options, "driver", backing_fmt);
6742 }
Fam Zhengcc954f02017-12-15 16:04:45 +08006743 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04006744
6745 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6746 &local_err);
6747 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05006748 if (!bs) {
6749 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04006750 goto out;
6751 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05006752 if (!backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07006753 error_setg(&local_err,
6754 "Backing file specified without backing format");
6755 error_append_hint(&local_err, "Detected format of %s.",
6756 bs->drv->format_name);
6757 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05006758 }
John Snow6e6e55f2017-07-17 20:34:22 -04006759 if (size == -1) {
6760 /* Opened BS, have no size */
6761 size = bdrv_getlength(bs);
6762 if (size < 0) {
6763 error_setg_errno(errp, -size, "Could not get size of '%s'",
6764 backing_file);
6765 bdrv_unref(bs);
6766 goto out;
6767 }
6768 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6769 }
6770 bdrv_unref(bs);
6771 }
Eric Blaked9f059a2020-07-06 15:39:54 -05006772 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6773 } else if (backing_file && !backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07006774 error_setg(&local_err,
6775 "Backing file specified without backing format");
6776 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05006777 }
John Snow6e6e55f2017-07-17 20:34:22 -04006778
6779 if (size == -1) {
6780 error_setg(errp, "Image creation needs a size parameter");
6781 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006782 }
6783
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006784 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02006785 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08006786 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006787 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05006788 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006789 }
Chunyan Liu83d05212014-06-05 17:20:51 +08006790
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006791 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08006792
Max Reitzcc84d902013-09-06 17:14:26 +02006793 if (ret == -EFBIG) {
6794 /* This is generally a better message than whatever the driver would
6795 * deliver (especially because of the cluster_size_hint), since that
6796 * is most probably not much different from "image too large". */
6797 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08006798 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02006799 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006800 }
Max Reitzcc84d902013-09-06 17:14:26 +02006801 error_setg(errp, "The image size is too large for file format '%s'"
6802 "%s", fmt, cluster_size_hint);
6803 error_free(local_err);
6804 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006805 }
6806
6807out:
Chunyan Liu83d05212014-06-05 17:20:51 +08006808 qemu_opts_del(opts);
6809 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03006810 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006811}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006812
6813AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6814{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00006815 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006816}
6817
Kevin Wolfe336fd42020-10-05 17:58:53 +02006818AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6819{
6820 Coroutine *self = qemu_coroutine_self();
6821 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6822 AioContext *new_ctx;
6823
6824 /*
6825 * Increase bs->in_flight to ensure that this operation is completed before
6826 * moving the node to a different AioContext. Read new_ctx only afterwards.
6827 */
6828 bdrv_inc_in_flight(bs);
6829
6830 new_ctx = bdrv_get_aio_context(bs);
6831 aio_co_reschedule_self(new_ctx);
6832 return old_ctx;
6833}
6834
6835void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6836{
6837 aio_co_reschedule_self(old_ctx);
6838 bdrv_dec_in_flight(bs);
6839}
6840
Kevin Wolf18c6ac12020-10-05 17:58:54 +02006841void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6842{
6843 AioContext *ctx = bdrv_get_aio_context(bs);
6844
6845 /* In the main thread, bs->aio_context won't change concurrently */
6846 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6847
6848 /*
6849 * We're in coroutine context, so we already hold the lock of the main
6850 * loop AioContext. Don't lock it twice to avoid deadlocks.
6851 */
6852 assert(qemu_in_coroutine());
6853 if (ctx != qemu_get_aio_context()) {
6854 aio_context_acquire(ctx);
6855 }
6856}
6857
6858void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6859{
6860 AioContext *ctx = bdrv_get_aio_context(bs);
6861
6862 assert(qemu_in_coroutine());
6863 if (ctx != qemu_get_aio_context()) {
6864 aio_context_release(ctx);
6865 }
6866}
6867
Fam Zheng052a7572017-04-10 20:09:25 +08006868void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6869{
6870 aio_co_enter(bdrv_get_aio_context(bs), co);
6871}
6872
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006873static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6874{
6875 QLIST_REMOVE(ban, list);
6876 g_free(ban);
6877}
6878
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006879static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006880{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006881 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006882
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006883 assert(!bs->walking_aio_notifiers);
6884 bs->walking_aio_notifiers = true;
6885 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6886 if (baf->deleted) {
6887 bdrv_do_remove_aio_context_notifier(baf);
6888 } else {
6889 baf->detach_aio_context(baf->opaque);
6890 }
Max Reitz33384422014-06-20 21:57:33 +02006891 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006892 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6893 * remove remaining aio notifiers if we aren't called again.
6894 */
6895 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02006896
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006897 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006898 bs->drv->bdrv_detach_aio_context(bs);
6899 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006900
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006901 if (bs->quiesce_counter) {
6902 aio_enable_external(bs->aio_context);
6903 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006904 bs->aio_context = NULL;
6905}
6906
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006907static void bdrv_attach_aio_context(BlockDriverState *bs,
6908 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006909{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006910 BdrvAioNotifier *ban, *ban_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006911
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006912 if (bs->quiesce_counter) {
6913 aio_disable_external(new_context);
6914 }
6915
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006916 bs->aio_context = new_context;
6917
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006918 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006919 bs->drv->bdrv_attach_aio_context(bs, new_context);
6920 }
Max Reitz33384422014-06-20 21:57:33 +02006921
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006922 assert(!bs->walking_aio_notifiers);
6923 bs->walking_aio_notifiers = true;
6924 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6925 if (ban->deleted) {
6926 bdrv_do_remove_aio_context_notifier(ban);
6927 } else {
6928 ban->attached_aio_context(new_context, ban->opaque);
6929 }
Max Reitz33384422014-06-20 21:57:33 +02006930 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006931 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006932}
6933
Kevin Wolf42a65f02019-05-07 18:31:38 +02006934/*
6935 * Changes the AioContext used for fd handlers, timers, and BHs by this
6936 * BlockDriverState and all its children and parents.
6937 *
Max Reitz43eaaae2019-07-22 15:30:54 +02006938 * Must be called from the main AioContext.
6939 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02006940 * The caller must own the AioContext lock for the old AioContext of bs, but it
6941 * must not own the AioContext lock for new_context (unless new_context is the
6942 * same as the current context of bs).
6943 *
6944 * @ignore will accumulate all visited BdrvChild object. The caller is
6945 * responsible for freeing the list afterwards.
6946 */
Kevin Wolf53a7d042019-05-06 19:17:59 +02006947void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6948 AioContext *new_context, GSList **ignore)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006949{
Max Reitze037c092019-07-19 11:26:14 +02006950 AioContext *old_context = bdrv_get_aio_context(bs);
Sergio Lopez722d8e72021-02-01 13:50:31 +01006951 GSList *children_to_process = NULL;
6952 GSList *parents_to_process = NULL;
6953 GSList *entry;
6954 BdrvChild *child, *parent;
Kevin Wolf0d837082019-05-06 19:17:58 +02006955
Max Reitz43eaaae2019-07-22 15:30:54 +02006956 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6957
Max Reitze037c092019-07-19 11:26:14 +02006958 if (old_context == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03006959 return;
6960 }
6961
Kevin Wolfd70d5952019-02-08 16:53:37 +01006962 bdrv_drained_begin(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02006963
6964 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006965 if (g_slist_find(*ignore, child)) {
6966 continue;
6967 }
6968 *ignore = g_slist_prepend(*ignore, child);
Sergio Lopez722d8e72021-02-01 13:50:31 +01006969 children_to_process = g_slist_prepend(children_to_process, child);
Kevin Wolf53a7d042019-05-06 19:17:59 +02006970 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01006971
6972 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6973 if (g_slist_find(*ignore, parent)) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006974 continue;
6975 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01006976 *ignore = g_slist_prepend(*ignore, parent);
6977 parents_to_process = g_slist_prepend(parents_to_process, parent);
Kevin Wolf0d837082019-05-06 19:17:58 +02006978 }
6979
Sergio Lopez722d8e72021-02-01 13:50:31 +01006980 for (entry = children_to_process;
6981 entry != NULL;
6982 entry = g_slist_next(entry)) {
6983 child = entry->data;
6984 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6985 }
6986 g_slist_free(children_to_process);
6987
6988 for (entry = parents_to_process;
6989 entry != NULL;
6990 entry = g_slist_next(entry)) {
6991 parent = entry->data;
6992 assert(parent->klass->set_aio_ctx);
6993 parent->klass->set_aio_ctx(parent, new_context, ignore);
6994 }
6995 g_slist_free(parents_to_process);
6996
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006997 bdrv_detach_aio_context(bs);
6998
Max Reitze037c092019-07-19 11:26:14 +02006999 /* Acquire the new context, if necessary */
Max Reitz43eaaae2019-07-22 15:30:54 +02007000 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02007001 aio_context_acquire(new_context);
7002 }
7003
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007004 bdrv_attach_aio_context(bs, new_context);
Max Reitze037c092019-07-19 11:26:14 +02007005
7006 /*
7007 * If this function was recursively called from
7008 * bdrv_set_aio_context_ignore(), there may be nodes in the
7009 * subtree that have not yet been moved to the new AioContext.
7010 * Release the old one so bdrv_drained_end() can poll them.
7011 */
Max Reitz43eaaae2019-07-22 15:30:54 +02007012 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02007013 aio_context_release(old_context);
7014 }
7015
Kevin Wolfd70d5952019-02-08 16:53:37 +01007016 bdrv_drained_end(bs);
Max Reitze037c092019-07-19 11:26:14 +02007017
Max Reitz43eaaae2019-07-22 15:30:54 +02007018 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02007019 aio_context_acquire(old_context);
7020 }
Max Reitz43eaaae2019-07-22 15:30:54 +02007021 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02007022 aio_context_release(new_context);
7023 }
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007024}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02007025
Kevin Wolf5d231842019-05-06 19:17:56 +02007026static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7027 GSList **ignore, Error **errp)
7028{
7029 if (g_slist_find(*ignore, c)) {
7030 return true;
7031 }
7032 *ignore = g_slist_prepend(*ignore, c);
7033
Max Reitzbd86fb92020-05-13 13:05:13 +02007034 /*
7035 * A BdrvChildClass that doesn't handle AioContext changes cannot
7036 * tolerate any AioContext changes
7037 */
7038 if (!c->klass->can_set_aio_ctx) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007039 char *user = bdrv_child_user_desc(c);
7040 error_setg(errp, "Changing iothreads is not supported by %s", user);
7041 g_free(user);
7042 return false;
7043 }
Max Reitzbd86fb92020-05-13 13:05:13 +02007044 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007045 assert(!errp || *errp);
7046 return false;
7047 }
7048 return true;
7049}
7050
7051bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7052 GSList **ignore, Error **errp)
7053{
7054 if (g_slist_find(*ignore, c)) {
7055 return true;
7056 }
7057 *ignore = g_slist_prepend(*ignore, c);
7058 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
7059}
7060
7061/* @ignore will accumulate all visited BdrvChild object. The caller is
7062 * responsible for freeing the list afterwards. */
7063bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7064 GSList **ignore, Error **errp)
7065{
7066 BdrvChild *c;
7067
7068 if (bdrv_get_aio_context(bs) == ctx) {
7069 return true;
7070 }
7071
7072 QLIST_FOREACH(c, &bs->parents, next_parent) {
7073 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
7074 return false;
7075 }
7076 }
7077 QLIST_FOREACH(c, &bs->children, next) {
7078 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
7079 return false;
7080 }
7081 }
7082
7083 return true;
7084}
7085
7086int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7087 BdrvChild *ignore_child, Error **errp)
7088{
7089 GSList *ignore;
7090 bool ret;
7091
7092 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7093 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
7094 g_slist_free(ignore);
7095
7096 if (!ret) {
7097 return -EPERM;
7098 }
7099
Kevin Wolf53a7d042019-05-06 19:17:59 +02007100 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7101 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
7102 g_slist_free(ignore);
7103
Kevin Wolf5d231842019-05-06 19:17:56 +02007104 return 0;
7105}
7106
7107int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7108 Error **errp)
7109{
7110 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
7111}
7112
Max Reitz33384422014-06-20 21:57:33 +02007113void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7114 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7115 void (*detach_aio_context)(void *opaque), void *opaque)
7116{
7117 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7118 *ban = (BdrvAioNotifier){
7119 .attached_aio_context = attached_aio_context,
7120 .detach_aio_context = detach_aio_context,
7121 .opaque = opaque
7122 };
7123
7124 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7125}
7126
7127void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7128 void (*attached_aio_context)(AioContext *,
7129 void *),
7130 void (*detach_aio_context)(void *),
7131 void *opaque)
7132{
7133 BdrvAioNotifier *ban, *ban_next;
7134
7135 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7136 if (ban->attached_aio_context == attached_aio_context &&
7137 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007138 ban->opaque == opaque &&
7139 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007140 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007141 if (bs->walking_aio_notifiers) {
7142 ban->deleted = true;
7143 } else {
7144 bdrv_do_remove_aio_context_notifier(ban);
7145 }
Max Reitz33384422014-06-20 21:57:33 +02007146 return;
7147 }
7148 }
7149
7150 abort();
7151}
7152
Max Reitz77485432014-10-27 11:12:50 +01007153int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007154 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007155 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007156 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007157{
Max Reitzd470ad42017-11-10 21:31:09 +01007158 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007159 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007160 return -ENOMEDIUM;
7161 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007162 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007163 error_setg(errp, "Block driver '%s' does not support option amendment",
7164 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007165 return -ENOTSUP;
7166 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007167 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7168 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007169}
Benoît Canetf6186f42013-10-02 14:33:48 +02007170
Max Reitz5d69b5a2020-02-18 11:34:41 +01007171/*
7172 * This function checks whether the given @to_replace is allowed to be
7173 * replaced by a node that always shows the same data as @bs. This is
7174 * used for example to verify whether the mirror job can replace
7175 * @to_replace by the target mirrored from @bs.
7176 * To be replaceable, @bs and @to_replace may either be guaranteed to
7177 * always show the same data (because they are only connected through
7178 * filters), or some driver may allow replacing one of its children
7179 * because it can guarantee that this child's data is not visible at
7180 * all (for example, for dissenting quorum children that have no other
7181 * parents).
7182 */
7183bool bdrv_recurse_can_replace(BlockDriverState *bs,
7184 BlockDriverState *to_replace)
7185{
Max Reitz93393e62019-06-12 17:03:38 +02007186 BlockDriverState *filtered;
7187
Max Reitz5d69b5a2020-02-18 11:34:41 +01007188 if (!bs || !bs->drv) {
7189 return false;
7190 }
7191
7192 if (bs == to_replace) {
7193 return true;
7194 }
7195
7196 /* See what the driver can do */
7197 if (bs->drv->bdrv_recurse_can_replace) {
7198 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7199 }
7200
7201 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007202 filtered = bdrv_filter_bs(bs);
7203 if (filtered) {
7204 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007205 }
7206
7207 /* Safe default */
7208 return false;
7209}
7210
Max Reitz810803a2020-02-18 11:34:44 +01007211/*
7212 * Check whether the given @node_name can be replaced by a node that
7213 * has the same data as @parent_bs. If so, return @node_name's BDS;
7214 * NULL otherwise.
7215 *
7216 * @node_name must be a (recursive) *child of @parent_bs (or this
7217 * function will return NULL).
7218 *
7219 * The result (whether the node can be replaced or not) is only valid
7220 * for as long as no graph or permission changes occur.
7221 */
Wen Congyange12f3782015-07-17 10:12:22 +08007222BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7223 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007224{
7225 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007226 AioContext *aio_context;
7227
Benoît Canet09158f02014-06-27 18:25:25 +02007228 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007229 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007230 return NULL;
7231 }
7232
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007233 aio_context = bdrv_get_aio_context(to_replace_bs);
7234 aio_context_acquire(aio_context);
7235
Benoît Canet09158f02014-06-27 18:25:25 +02007236 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007237 to_replace_bs = NULL;
7238 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007239 }
7240
7241 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7242 * most non filter in order to prevent data corruption.
7243 * Another benefit is that this tests exclude backing files which are
7244 * blocked by the backing blockers.
7245 */
Max Reitz810803a2020-02-18 11:34:44 +01007246 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7247 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7248 "because it cannot be guaranteed that doing so would not "
7249 "lead to an abrupt change of visible data",
7250 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007251 to_replace_bs = NULL;
7252 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007253 }
7254
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007255out:
7256 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007257 return to_replace_bs;
7258}
Ming Lei448ad912014-07-04 18:04:33 +08007259
Max Reitz97e2f022019-02-01 20:29:27 +01007260/**
7261 * Iterates through the list of runtime option keys that are said to
7262 * be "strong" for a BDS. An option is called "strong" if it changes
7263 * a BDS's data. For example, the null block driver's "size" and
7264 * "read-zeroes" options are strong, but its "latency-ns" option is
7265 * not.
7266 *
7267 * If a key returned by this function ends with a dot, all options
7268 * starting with that prefix are strong.
7269 */
7270static const char *const *strong_options(BlockDriverState *bs,
7271 const char *const *curopt)
7272{
7273 static const char *const global_options[] = {
7274 "driver", "filename", NULL
7275 };
7276
7277 if (!curopt) {
7278 return &global_options[0];
7279 }
7280
7281 curopt++;
7282 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7283 curopt = bs->drv->strong_runtime_opts;
7284 }
7285
7286 return (curopt && *curopt) ? curopt : NULL;
7287}
7288
7289/**
7290 * Copies all strong runtime options from bs->options to the given
7291 * QDict. The set of strong option keys is determined by invoking
7292 * strong_options().
7293 *
7294 * Returns true iff any strong option was present in bs->options (and
7295 * thus copied to the target QDict) with the exception of "filename"
7296 * and "driver". The caller is expected to use this value to decide
7297 * whether the existence of strong options prevents the generation of
7298 * a plain filename.
7299 */
7300static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7301{
7302 bool found_any = false;
7303 const char *const *option_name = NULL;
7304
7305 if (!bs->drv) {
7306 return false;
7307 }
7308
7309 while ((option_name = strong_options(bs, option_name))) {
7310 bool option_given = false;
7311
7312 assert(strlen(*option_name) > 0);
7313 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7314 QObject *entry = qdict_get(bs->options, *option_name);
7315 if (!entry) {
7316 continue;
7317 }
7318
7319 qdict_put_obj(d, *option_name, qobject_ref(entry));
7320 option_given = true;
7321 } else {
7322 const QDictEntry *entry;
7323 for (entry = qdict_first(bs->options); entry;
7324 entry = qdict_next(bs->options, entry))
7325 {
7326 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7327 qdict_put_obj(d, qdict_entry_key(entry),
7328 qobject_ref(qdict_entry_value(entry)));
7329 option_given = true;
7330 }
7331 }
7332 }
7333
7334 /* While "driver" and "filename" need to be included in a JSON filename,
7335 * their existence does not prohibit generation of a plain filename. */
7336 if (!found_any && option_given &&
7337 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7338 {
7339 found_any = true;
7340 }
7341 }
7342
Max Reitz62a01a272019-02-01 20:29:34 +01007343 if (!qdict_haskey(d, "driver")) {
7344 /* Drivers created with bdrv_new_open_driver() may not have a
7345 * @driver option. Add it here. */
7346 qdict_put_str(d, "driver", bs->drv->format_name);
7347 }
7348
Max Reitz97e2f022019-02-01 20:29:27 +01007349 return found_any;
7350}
7351
Max Reitz90993622019-02-01 20:29:09 +01007352/* Note: This function may return false positives; it may return true
7353 * even if opening the backing file specified by bs's image header
7354 * would result in exactly bs->backing. */
Max Reitz0b877d02018-08-01 20:34:11 +02007355bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007356{
7357 if (bs->backing) {
7358 return strcmp(bs->auto_backing_file,
7359 bs->backing->bs->filename);
7360 } else {
7361 /* No backing BDS, so if the image header reports any backing
7362 * file, it must have been suppressed */
7363 return bs->auto_backing_file[0] != '\0';
7364 }
7365}
7366
Max Reitz91af7012014-07-18 20:24:56 +02007367/* Updates the following BDS fields:
7368 * - exact_filename: A filename which may be used for opening a block device
7369 * which (mostly) equals the given BDS (even without any
7370 * other options; so reading and writing must return the same
7371 * results, but caching etc. may be different)
7372 * - full_open_options: Options which, when given when opening a block device
7373 * (without a filename), result in a BDS (mostly)
7374 * equalling the given one
7375 * - filename: If exact_filename is set, it is copied here. Otherwise,
7376 * full_open_options is converted to a JSON object, prefixed with
7377 * "json:" (for use through the JSON pseudo protocol) and put here.
7378 */
7379void bdrv_refresh_filename(BlockDriverState *bs)
7380{
7381 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01007382 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02007383 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02007384 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01007385 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01007386 bool generate_json_filename; /* Whether our default implementation should
7387 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02007388
7389 if (!drv) {
7390 return;
7391 }
7392
Max Reitze24518e2019-02-01 20:29:06 +01007393 /* This BDS's file name may depend on any of its children's file names, so
7394 * refresh those first */
7395 QLIST_FOREACH(child, &bs->children, next) {
7396 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02007397 }
7398
Max Reitzbb808d52019-02-01 20:29:07 +01007399 if (bs->implicit) {
7400 /* For implicit nodes, just copy everything from the single child */
7401 child = QLIST_FIRST(&bs->children);
7402 assert(QLIST_NEXT(child, next) == NULL);
7403
7404 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7405 child->bs->exact_filename);
7406 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7407
Pan Nengyuancb895612020-01-16 16:56:00 +08007408 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01007409 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7410
7411 return;
7412 }
7413
Max Reitz90993622019-02-01 20:29:09 +01007414 backing_overridden = bdrv_backing_overridden(bs);
7415
7416 if (bs->open_flags & BDRV_O_NO_IO) {
7417 /* Without I/O, the backing file does not change anything.
7418 * Therefore, in such a case (primarily qemu-img), we can
7419 * pretend the backing file has not been overridden even if
7420 * it technically has been. */
7421 backing_overridden = false;
7422 }
7423
Max Reitz97e2f022019-02-01 20:29:27 +01007424 /* Gather the options QDict */
7425 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01007426 generate_json_filename = append_strong_runtime_options(opts, bs);
7427 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01007428
7429 if (drv->bdrv_gather_child_options) {
7430 /* Some block drivers may not want to present all of their children's
7431 * options, or name them differently from BdrvChild.name */
7432 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7433 } else {
7434 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02007435 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01007436 /* We can skip the backing BDS if it has not been overridden */
7437 continue;
7438 }
7439
7440 qdict_put(opts, child->name,
7441 qobject_ref(child->bs->full_open_options));
7442 }
7443
7444 if (backing_overridden && !bs->backing) {
7445 /* Force no backing file */
7446 qdict_put_null(opts, "backing");
7447 }
7448 }
7449
7450 qobject_unref(bs->full_open_options);
7451 bs->full_open_options = opts;
7452
Max Reitz52f72d62019-06-12 17:43:03 +02007453 primary_child_bs = bdrv_primary_bs(bs);
7454
Max Reitz998b3a12019-02-01 20:29:28 +01007455 if (drv->bdrv_refresh_filename) {
7456 /* Obsolete information is of no use here, so drop the old file name
7457 * information before refreshing it */
7458 bs->exact_filename[0] = '\0';
7459
7460 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02007461 } else if (primary_child_bs) {
7462 /*
7463 * Try to reconstruct valid information from the underlying
7464 * file -- this only works for format nodes (filter nodes
7465 * cannot be probed and as such must be selected by the user
7466 * either through an options dict, or through a special
7467 * filename which the filter driver must construct in its
7468 * .bdrv_refresh_filename() implementation).
7469 */
Max Reitz998b3a12019-02-01 20:29:28 +01007470
7471 bs->exact_filename[0] = '\0';
7472
Max Reitzfb695c72019-02-01 20:29:29 +01007473 /*
7474 * We can use the underlying file's filename if:
7475 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007476 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007477 * - the file is a protocol BDS, and
7478 * - opening that file (as this BDS's format) will automatically create
7479 * the BDS tree we have right now, that is:
7480 * - the user did not significantly change this BDS's behavior with
7481 * some explicit (strong) options
7482 * - no non-file child of this BDS has been overridden by the user
7483 * Both of these conditions are represented by generate_json_filename.
7484 */
Max Reitz52f72d62019-06-12 17:43:03 +02007485 if (primary_child_bs->exact_filename[0] &&
7486 primary_child_bs->drv->bdrv_file_open &&
7487 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007488 {
Max Reitz52f72d62019-06-12 17:43:03 +02007489 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007490 }
7491 }
7492
Max Reitz91af7012014-07-18 20:24:56 +02007493 if (bs->exact_filename[0]) {
7494 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007495 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007496 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007497 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007498 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007499 /* Give user a hint if we truncated things. */
7500 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7501 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007502 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007503 }
7504}
Wen Congyange06018a2016-05-10 15:36:37 +08007505
Max Reitz1e89d0f2019-02-01 20:29:18 +01007506char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7507{
7508 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007509 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007510
7511 if (!drv) {
7512 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7513 return NULL;
7514 }
7515
7516 if (drv->bdrv_dirname) {
7517 return drv->bdrv_dirname(bs, errp);
7518 }
7519
Max Reitz52f72d62019-06-12 17:43:03 +02007520 child_bs = bdrv_primary_bs(bs);
7521 if (child_bs) {
7522 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007523 }
7524
7525 bdrv_refresh_filename(bs);
7526 if (bs->exact_filename[0] != '\0') {
7527 return path_combine(bs->exact_filename, "");
7528 }
7529
7530 error_setg(errp, "Cannot generate a base directory for %s nodes",
7531 drv->format_name);
7532 return NULL;
7533}
7534
Wen Congyange06018a2016-05-10 15:36:37 +08007535/*
7536 * Hot add/remove a BDS's child. So the user can take a child offline when
7537 * it is broken and take a new child online
7538 */
7539void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7540 Error **errp)
7541{
7542
7543 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7544 error_setg(errp, "The node %s does not support adding a child",
7545 bdrv_get_device_or_node_name(parent_bs));
7546 return;
7547 }
7548
7549 if (!QLIST_EMPTY(&child_bs->parents)) {
7550 error_setg(errp, "The node %s already has a parent",
7551 child_bs->node_name);
7552 return;
7553 }
7554
7555 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7556}
7557
7558void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7559{
7560 BdrvChild *tmp;
7561
7562 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7563 error_setg(errp, "The node %s does not support removing a child",
7564 bdrv_get_device_or_node_name(parent_bs));
7565 return;
7566 }
7567
7568 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7569 if (tmp == child) {
7570 break;
7571 }
7572 }
7573
7574 if (!tmp) {
7575 error_setg(errp, "The node %s does not have a child named %s",
7576 bdrv_get_device_or_node_name(parent_bs),
7577 bdrv_get_device_or_node_name(child->bs));
7578 return;
7579 }
7580
7581 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7582}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007583
7584int bdrv_make_empty(BdrvChild *c, Error **errp)
7585{
7586 BlockDriver *drv = c->bs->drv;
7587 int ret;
7588
7589 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7590
7591 if (!drv->bdrv_make_empty) {
7592 error_setg(errp, "%s does not support emptying nodes",
7593 drv->format_name);
7594 return -ENOTSUP;
7595 }
7596
7597 ret = drv->bdrv_make_empty(c->bs);
7598 if (ret < 0) {
7599 error_setg_errno(errp, -ret, "Failed to empty %s",
7600 c->bs->filename);
7601 return ret;
7602 }
7603
7604 return 0;
7605}
Max Reitz9a6fc882019-05-31 15:23:11 +02007606
7607/*
7608 * Return the child that @bs acts as an overlay for, and from which data may be
7609 * copied in COW or COR operations. Usually this is the backing file.
7610 */
7611BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7612{
7613 if (!bs || !bs->drv) {
7614 return NULL;
7615 }
7616
7617 if (bs->drv->is_filter) {
7618 return NULL;
7619 }
7620
7621 if (!bs->backing) {
7622 return NULL;
7623 }
7624
7625 assert(bs->backing->role & BDRV_CHILD_COW);
7626 return bs->backing;
7627}
7628
7629/*
7630 * If @bs acts as a filter for exactly one of its children, return
7631 * that child.
7632 */
7633BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7634{
7635 BdrvChild *c;
7636
7637 if (!bs || !bs->drv) {
7638 return NULL;
7639 }
7640
7641 if (!bs->drv->is_filter) {
7642 return NULL;
7643 }
7644
7645 /* Only one of @backing or @file may be used */
7646 assert(!(bs->backing && bs->file));
7647
7648 c = bs->backing ?: bs->file;
7649 if (!c) {
7650 return NULL;
7651 }
7652
7653 assert(c->role & BDRV_CHILD_FILTERED);
7654 return c;
7655}
7656
7657/*
7658 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7659 * whichever is non-NULL.
7660 *
7661 * Return NULL if both are NULL.
7662 */
7663BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7664{
7665 BdrvChild *cow_child = bdrv_cow_child(bs);
7666 BdrvChild *filter_child = bdrv_filter_child(bs);
7667
7668 /* Filter nodes cannot have COW backing files */
7669 assert(!(cow_child && filter_child));
7670
7671 return cow_child ?: filter_child;
7672}
7673
7674/*
7675 * Return the primary child of this node: For filters, that is the
7676 * filtered child. For other nodes, that is usually the child storing
7677 * metadata.
7678 * (A generally more helpful description is that this is (usually) the
7679 * child that has the same filename as @bs.)
7680 *
7681 * Drivers do not necessarily have a primary child; for example quorum
7682 * does not.
7683 */
7684BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7685{
7686 BdrvChild *c, *found = NULL;
7687
7688 QLIST_FOREACH(c, &bs->children, next) {
7689 if (c->role & BDRV_CHILD_PRIMARY) {
7690 assert(!found);
7691 found = c;
7692 }
7693 }
7694
7695 return found;
7696}
Max Reitzd38d7eb2019-06-12 15:06:37 +02007697
7698static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7699 bool stop_on_explicit_filter)
7700{
7701 BdrvChild *c;
7702
7703 if (!bs) {
7704 return NULL;
7705 }
7706
7707 while (!(stop_on_explicit_filter && !bs->implicit)) {
7708 c = bdrv_filter_child(bs);
7709 if (!c) {
7710 /*
7711 * A filter that is embedded in a working block graph must
7712 * have a child. Assert this here so this function does
7713 * not return a filter node that is not expected by the
7714 * caller.
7715 */
7716 assert(!bs->drv || !bs->drv->is_filter);
7717 break;
7718 }
7719 bs = c->bs;
7720 }
7721 /*
7722 * Note that this treats nodes with bs->drv == NULL as not being
7723 * filters (bs->drv == NULL should be replaced by something else
7724 * anyway).
7725 * The advantage of this behavior is that this function will thus
7726 * always return a non-NULL value (given a non-NULL @bs).
7727 */
7728
7729 return bs;
7730}
7731
7732/*
7733 * Return the first BDS that has not been added implicitly or that
7734 * does not have a filtered child down the chain starting from @bs
7735 * (including @bs itself).
7736 */
7737BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7738{
7739 return bdrv_do_skip_filters(bs, true);
7740}
7741
7742/*
7743 * Return the first BDS that does not have a filtered child down the
7744 * chain starting from @bs (including @bs itself).
7745 */
7746BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7747{
7748 return bdrv_do_skip_filters(bs, false);
7749}
7750
7751/*
7752 * For a backing chain, return the first non-filter backing image of
7753 * the first non-filter image.
7754 */
7755BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7756{
7757 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
7758}
Hanna Reitz0bc329f2021-08-12 10:41:44 +02007759
7760/**
7761 * Check whether [offset, offset + bytes) overlaps with the cached
7762 * block-status data region.
7763 *
7764 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
7765 * which is what bdrv_bsc_is_data()'s interface needs.
7766 * Otherwise, *pnum is not touched.
7767 */
7768static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
7769 int64_t offset, int64_t bytes,
7770 int64_t *pnum)
7771{
7772 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
7773 bool overlaps;
7774
7775 overlaps =
7776 qatomic_read(&bsc->valid) &&
7777 ranges_overlap(offset, bytes, bsc->data_start,
7778 bsc->data_end - bsc->data_start);
7779
7780 if (overlaps && pnum) {
7781 *pnum = bsc->data_end - offset;
7782 }
7783
7784 return overlaps;
7785}
7786
7787/**
7788 * See block_int.h for this function's documentation.
7789 */
7790bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
7791{
7792 RCU_READ_LOCK_GUARD();
7793
7794 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
7795}
7796
7797/**
7798 * See block_int.h for this function's documentation.
7799 */
7800void bdrv_bsc_invalidate_range(BlockDriverState *bs,
7801 int64_t offset, int64_t bytes)
7802{
7803 RCU_READ_LOCK_GUARD();
7804
7805 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
7806 qatomic_set(&bs->block_status_cache->valid, false);
7807 }
7808}
7809
7810/**
7811 * See block_int.h for this function's documentation.
7812 */
7813void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
7814{
7815 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
7816 BdrvBlockStatusCache *old_bsc;
7817
7818 *new_bsc = (BdrvBlockStatusCache) {
7819 .valid = true,
7820 .data_start = offset,
7821 .data_end = offset + bytes,
7822 };
7823
7824 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
7825
7826 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
7827 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
7828 if (old_bsc) {
7829 g_free_rcu(old_bsc, rcu);
7830 }
7831}