blob: ef13076c4c12dc76b6d34054d61c7ae3b2ce4910 [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"
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +030052#include "block/coroutines.h"
bellardfc01f7e2003-06-30 10:03:06 +000053
Juan Quintela71e72a12009-07-27 16:12:56 +020054#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000055#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000056#include <sys/queue.h>
blueswir1c5e97232009-03-07 20:06:23 +000057#ifndef __DragonFly__
bellard7674e7b2005-04-26 21:59:26 +000058#include <sys/disk.h>
59#endif
blueswir1c5e97232009-03-07 20:06:23 +000060#endif
bellard7674e7b2005-04-26 21:59:26 +000061
aliguori49dc7682009-03-08 16:26:59 +000062#ifdef _WIN32
63#include <windows.h>
64#endif
65
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010066#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
67
Benoît Canetdc364f42014-01-23 21:31:32 +010068static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
69 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
70
Max Reitz2c1d04e2016-01-29 16:36:11 +010071static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
72 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
73
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010074static QLIST_HEAD(, BlockDriver) bdrv_drivers =
75 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000076
Max Reitz5b363932016-05-17 16:41:31 +020077static BlockDriverState *bdrv_open_inherit(const char *filename,
78 const char *reference,
79 QDict *options, int flags,
80 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +020081 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +020082 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +020083 Error **errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +020084
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030085static void bdrv_replace_child_noperm(BdrvChild *child,
86 BlockDriverState *new_bs);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +030087static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
88 BlockDriverState *child_bs,
89 const char *child_name,
90 const BdrvChildClass *child_class,
91 BdrvChildRole child_role,
92 BdrvChild **child,
93 Transaction *tran,
94 Error **errp);
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,
100 Transaction *set_backings_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{
268 return bs->read_only;
269}
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->read_only = true;
321 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200322
Jeff Codye2b82472017-04-07 16:55:26 -0400323 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200324
325fail:
326 error_setg(errp, "%s", errmsg ?: "Image is read-only");
327 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400328}
329
Max Reitz645ae7d2019-02-01 20:29:14 +0100330/*
331 * If @backing is empty, this function returns NULL without setting
332 * @errp. In all other cases, NULL will only be returned with @errp
333 * set.
334 *
335 * Therefore, a return value of NULL without @errp set means that
336 * there is no backing file; if @errp is set, there is one but its
337 * absolute filename cannot be generated.
338 */
339char *bdrv_get_full_backing_filename_from_filename(const char *backed,
340 const char *backing,
341 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100342{
Max Reitz645ae7d2019-02-01 20:29:14 +0100343 if (backing[0] == '\0') {
344 return NULL;
345 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
346 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100347 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
348 error_setg(errp, "Cannot use relative backing file names for '%s'",
349 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100350 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100351 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100352 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100353 }
354}
355
Max Reitz9f4793d2019-02-01 20:29:16 +0100356/*
357 * If @filename is empty or NULL, this function returns NULL without
358 * setting @errp. In all other cases, NULL will only be returned with
359 * @errp set.
360 */
361static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
362 const char *filename, Error **errp)
363{
Max Reitz8df68612019-02-01 20:29:23 +0100364 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100365
Max Reitz8df68612019-02-01 20:29:23 +0100366 if (!filename || filename[0] == '\0') {
367 return NULL;
368 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
369 return g_strdup(filename);
370 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100371
Max Reitz8df68612019-02-01 20:29:23 +0100372 dir = bdrv_dirname(relative_to, errp);
373 if (!dir) {
374 return NULL;
375 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100376
Max Reitz8df68612019-02-01 20:29:23 +0100377 full_name = g_strconcat(dir, filename, NULL);
378 g_free(dir);
379 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100380}
381
Max Reitz6b6833c2019-02-01 20:29:15 +0100382char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200383{
Max Reitz9f4793d2019-02-01 20:29:16 +0100384 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200385}
386
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100387void bdrv_register(BlockDriver *bdrv)
388{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100389 assert(bdrv->format_name);
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100390 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000391}
bellardb3380822004-03-14 21:38:54 +0000392
Markus Armbrustere4e99862014-10-07 13:59:03 +0200393BlockDriverState *bdrv_new(void)
394{
395 BlockDriverState *bs;
396 int i;
397
Markus Armbruster5839e532014-08-19 10:31:08 +0200398 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800399 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800400 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
401 QLIST_INIT(&bs->op_blockers[i]);
402 }
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200403 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200404 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800405 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200406 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200407
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300408 qemu_co_queue_init(&bs->flush_queue);
409
Kevin Wolf0f122642018-03-28 18:29:18 +0200410 for (i = 0; i < bdrv_drain_all_count; i++) {
411 bdrv_drained_begin(bs);
412 }
413
Max Reitz2c1d04e2016-01-29 16:36:11 +0100414 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
415
bellardb3380822004-03-14 21:38:54 +0000416 return bs;
417}
418
Marc Mari88d88792016-08-12 09:27:03 -0400419static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000420{
421 BlockDriver *drv1;
Marc Mari88d88792016-08-12 09:27:03 -0400422
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100423 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
424 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000425 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100426 }
bellardea2384d2004-08-01 21:59:26 +0000427 }
Marc Mari88d88792016-08-12 09:27:03 -0400428
bellardea2384d2004-08-01 21:59:26 +0000429 return NULL;
430}
431
Marc Mari88d88792016-08-12 09:27:03 -0400432BlockDriver *bdrv_find_format(const char *format_name)
433{
434 BlockDriver *drv1;
435 int i;
436
437 drv1 = bdrv_do_find_format(format_name);
438 if (drv1) {
439 return drv1;
440 }
441
442 /* The driver isn't registered, maybe we need to load a module */
443 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
444 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
445 block_module_load_one(block_driver_modules[i].library_name);
446 break;
447 }
448 }
449
450 return bdrv_do_find_format(format_name);
451}
452
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300453static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100454{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800455 static const char *whitelist_rw[] = {
456 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200457 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800458 };
459 static const char *whitelist_ro[] = {
460 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200461 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100462 };
463 const char **p;
464
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800465 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100466 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800467 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100468
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800469 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300470 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100471 return 1;
472 }
473 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800474 if (read_only) {
475 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300476 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800477 return 1;
478 }
479 }
480 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100481 return 0;
482}
483
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300484int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
485{
486 return bdrv_format_is_whitelisted(drv->format_name, read_only);
487}
488
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000489bool bdrv_uses_whitelist(void)
490{
491 return use_bdrv_whitelist;
492}
493
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800494typedef struct CreateCo {
495 BlockDriver *drv;
496 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800497 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800498 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200499 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800500} CreateCo;
501
502static void coroutine_fn bdrv_create_co_entry(void *opaque)
503{
Max Reitzcc84d902013-09-06 17:14:26 +0200504 Error *local_err = NULL;
505 int ret;
506
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800507 CreateCo *cco = opaque;
508 assert(cco->drv);
509
Maxim Levitskyb92902d2020-03-26 03:12:17 +0200510 ret = cco->drv->bdrv_co_create_opts(cco->drv,
511 cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300512 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200513 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800514}
515
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200516int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800517 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000518{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800519 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200520
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800521 Coroutine *co;
522 CreateCo cco = {
523 .drv = drv,
524 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800525 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800526 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200527 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800528 };
529
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100530 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200531 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300532 ret = -ENOTSUP;
533 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800534 }
535
536 if (qemu_in_coroutine()) {
537 /* Fast-path if already in coroutine context */
538 bdrv_create_co_entry(&cco);
539 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200540 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
541 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800542 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200543 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800544 }
545 }
546
547 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200548 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100549 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200550 error_propagate(errp, cco.err);
551 } else {
552 error_setg_errno(errp, -ret, "Could not create image");
553 }
554 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800555
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300556out:
557 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800558 return ret;
bellardea2384d2004-08-01 21:59:26 +0000559}
560
Max Reitzfd171462020-01-22 17:45:29 +0100561/**
562 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
563 * least the given @minimum_size.
564 *
565 * On success, return @blk's actual length.
566 * Otherwise, return -errno.
567 */
568static int64_t create_file_fallback_truncate(BlockBackend *blk,
569 int64_t minimum_size, Error **errp)
570{
571 Error *local_err = NULL;
572 int64_t size;
573 int ret;
574
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200575 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
576 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100577 if (ret < 0 && ret != -ENOTSUP) {
578 error_propagate(errp, local_err);
579 return ret;
580 }
581
582 size = blk_getlength(blk);
583 if (size < 0) {
584 error_free(local_err);
585 error_setg_errno(errp, -size,
586 "Failed to inquire the new image file's length");
587 return size;
588 }
589
590 if (size < minimum_size) {
591 /* Need to grow the image, but we failed to do that */
592 error_propagate(errp, local_err);
593 return -ENOTSUP;
594 }
595
596 error_free(local_err);
597 local_err = NULL;
598
599 return size;
600}
601
602/**
603 * Helper function for bdrv_create_file_fallback(): Zero the first
604 * sector to remove any potentially pre-existing image header.
605 */
606static int create_file_fallback_zero_first_sector(BlockBackend *blk,
607 int64_t current_size,
608 Error **errp)
609{
610 int64_t bytes_to_clear;
611 int ret;
612
613 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
614 if (bytes_to_clear) {
615 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
616 if (ret < 0) {
617 error_setg_errno(errp, -ret,
618 "Failed to clear the new image's first sector");
619 return ret;
620 }
621 }
622
623 return 0;
624}
625
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200626/**
627 * Simple implementation of bdrv_co_create_opts for protocol drivers
628 * which only support creation via opening a file
629 * (usually existing raw storage device)
630 */
631int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
632 const char *filename,
633 QemuOpts *opts,
634 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100635{
636 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100637 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100638 int64_t size = 0;
639 char *buf = NULL;
640 PreallocMode prealloc;
641 Error *local_err = NULL;
642 int ret;
643
644 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
645 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
646 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
647 PREALLOC_MODE_OFF, &local_err);
648 g_free(buf);
649 if (local_err) {
650 error_propagate(errp, local_err);
651 return -EINVAL;
652 }
653
654 if (prealloc != PREALLOC_MODE_OFF) {
655 error_setg(errp, "Unsupported preallocation mode '%s'",
656 PreallocMode_str(prealloc));
657 return -ENOTSUP;
658 }
659
Max Reitzeeea1fa2020-02-25 16:56:18 +0100660 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100661 qdict_put_str(options, "driver", drv->format_name);
662
663 blk = blk_new_open(filename, NULL, options,
664 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
665 if (!blk) {
666 error_prepend(errp, "Protocol driver '%s' does not support image "
667 "creation, and opening the image failed: ",
668 drv->format_name);
669 return -EINVAL;
670 }
671
672 size = create_file_fallback_truncate(blk, size, errp);
673 if (size < 0) {
674 ret = size;
675 goto out;
676 }
677
678 ret = create_file_fallback_zero_first_sector(blk, size, errp);
679 if (ret < 0) {
680 goto out;
681 }
682
683 ret = 0;
684out:
685 blk_unref(blk);
686 return ret;
687}
688
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800689int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200690{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100691 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200692 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100693 QDict *qdict;
694 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200695
Max Reitzb65a5e12015-02-05 13:58:12 -0500696 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200697 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000698 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200699 }
700
Stefano Garzarella729222a2021-03-08 17:12:32 +0100701 if (!drv->create_opts) {
702 error_setg(errp, "Driver '%s' does not support image creation",
703 drv->format_name);
704 return -ENOTSUP;
705 }
706
707 /*
708 * 'opts' contains a QemuOptsList with a combination of format and protocol
709 * default values.
710 *
711 * The format properly removes its options, but the default values remain
712 * in 'opts->list'. So if the protocol has options with the same name
713 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
714 * of the format, since for overlapping options, the format wins.
715 *
716 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
717 * only the set options, and then convert it back to QemuOpts, using the
718 * create_opts of the protocol. So the new QemuOpts, will contain only the
719 * protocol defaults.
720 */
721 qdict = qemu_opts_to_qdict(opts, NULL);
722 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
723 if (protocol_opts == NULL) {
724 ret = -EINVAL;
725 goto out;
726 }
727
728 ret = bdrv_create(drv, filename, protocol_opts, errp);
729out:
730 qemu_opts_del(protocol_opts);
731 qobject_unref(qdict);
732 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200733}
734
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300735int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
736{
737 Error *local_err = NULL;
738 int ret;
739
740 assert(bs != NULL);
741
742 if (!bs->drv) {
743 error_setg(errp, "Block node '%s' is not opened", bs->filename);
744 return -ENOMEDIUM;
745 }
746
747 if (!bs->drv->bdrv_co_delete_file) {
748 error_setg(errp, "Driver '%s' does not support image deletion",
749 bs->drv->format_name);
750 return -ENOTSUP;
751 }
752
753 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
754 if (ret < 0) {
755 error_propagate(errp, local_err);
756 }
757
758 return ret;
759}
760
Maxim Levitskya890f082020-12-17 19:09:03 +0200761void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
762{
763 Error *local_err = NULL;
764 int ret;
765
766 if (!bs) {
767 return;
768 }
769
770 ret = bdrv_co_delete_file(bs, &local_err);
771 /*
772 * ENOTSUP will happen if the block driver doesn't support
773 * the 'bdrv_co_delete_file' interface. This is a predictable
774 * scenario and shouldn't be reported back to the user.
775 */
776 if (ret == -ENOTSUP) {
777 error_free(local_err);
778 } else if (ret < 0) {
779 error_report_err(local_err);
780 }
781}
782
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100783/**
784 * Try to get @bs's logical and physical block size.
785 * On success, store them in @bsz struct and return 0.
786 * On failure return -errno.
787 * @bs must not be empty.
788 */
789int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
790{
791 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200792 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100793
794 if (drv && drv->bdrv_probe_blocksizes) {
795 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200796 } else if (filtered) {
797 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100798 }
799
800 return -ENOTSUP;
801}
802
803/**
804 * Try to get @bs's geometry (cyls, heads, sectors).
805 * On success, store them in @geo struct and return 0.
806 * On failure return -errno.
807 * @bs must not be empty.
808 */
809int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
810{
811 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200812 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100813
814 if (drv && drv->bdrv_probe_geometry) {
815 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200816 } else if (filtered) {
817 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100818 }
819
820 return -ENOTSUP;
821}
822
Jim Meyeringeba25052012-05-28 09:27:54 +0200823/*
824 * Create a uniquely-named empty temporary file.
825 * Return 0 upon success, otherwise a negative errno value.
826 */
827int get_tmp_filename(char *filename, int size)
828{
bellardd5249392004-08-03 21:14:23 +0000829#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000830 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200831 /* GetTempFileName requires that its output buffer (4th param)
832 have length MAX_PATH or greater. */
833 assert(size >= MAX_PATH);
834 return (GetTempPath(MAX_PATH, temp_dir)
835 && GetTempFileName(temp_dir, "qem", 0, filename)
836 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000837#else
bellardea2384d2004-08-01 21:59:26 +0000838 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000839 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000840 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530841 if (!tmpdir) {
842 tmpdir = "/var/tmp";
843 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200844 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
845 return -EOVERFLOW;
846 }
bellardea2384d2004-08-01 21:59:26 +0000847 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800848 if (fd < 0) {
849 return -errno;
850 }
851 if (close(fd) != 0) {
852 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200853 return -errno;
854 }
855 return 0;
bellardd5249392004-08-03 21:14:23 +0000856#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200857}
bellardea2384d2004-08-01 21:59:26 +0000858
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200859/*
860 * Detect host devices. By convention, /dev/cdrom[N] is always
861 * recognized as a host CDROM.
862 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200863static BlockDriver *find_hdev_driver(const char *filename)
864{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200865 int score_max = 0, score;
866 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200867
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100868 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200869 if (d->bdrv_probe_device) {
870 score = d->bdrv_probe_device(filename);
871 if (score > score_max) {
872 score_max = score;
873 drv = d;
874 }
875 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200876 }
877
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200878 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200879}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200880
Marc Mari88d88792016-08-12 09:27:03 -0400881static BlockDriver *bdrv_do_find_protocol(const char *protocol)
882{
883 BlockDriver *drv1;
884
885 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
886 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
887 return drv1;
888 }
889 }
890
891 return NULL;
892}
893
Kevin Wolf98289622013-07-10 15:47:39 +0200894BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500895 bool allow_protocol_prefix,
896 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200897{
898 BlockDriver *drv1;
899 char protocol[128];
900 int len;
901 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400902 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200903
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200904 /* TODO Drivers without bdrv_file_open must be specified explicitly */
905
Christoph Hellwig39508e72010-06-23 12:25:17 +0200906 /*
907 * XXX(hch): we really should not let host device detection
908 * override an explicit protocol specification, but moving this
909 * later breaks access to device names with colons in them.
910 * Thanks to the brain-dead persistent naming schemes on udev-
911 * based Linux systems those actually are quite common.
912 */
913 drv1 = find_hdev_driver(filename);
914 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200915 return drv1;
916 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200917
Kevin Wolf98289622013-07-10 15:47:39 +0200918 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100919 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200920 }
Kevin Wolf98289622013-07-10 15:47:39 +0200921
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000922 p = strchr(filename, ':');
923 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200924 len = p - filename;
925 if (len > sizeof(protocol) - 1)
926 len = sizeof(protocol) - 1;
927 memcpy(protocol, filename, len);
928 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400929
930 drv1 = bdrv_do_find_protocol(protocol);
931 if (drv1) {
932 return drv1;
933 }
934
935 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
936 if (block_driver_modules[i].protocol_name &&
937 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
938 block_module_load_one(block_driver_modules[i].library_name);
939 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200940 }
941 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500942
Marc Mari88d88792016-08-12 09:27:03 -0400943 drv1 = bdrv_do_find_protocol(protocol);
944 if (!drv1) {
945 error_setg(errp, "Unknown protocol '%s'", protocol);
946 }
947 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200948}
949
Markus Armbrusterc6684242014-11-20 16:27:10 +0100950/*
951 * Guess image format by probing its contents.
952 * This is not a good idea when your image is raw (CVE-2008-2004), but
953 * we do it anyway for backward compatibility.
954 *
955 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100956 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
957 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100958 * @filename is its filename.
959 *
960 * For all block drivers, call the bdrv_probe() method to get its
961 * probing score.
962 * Return the first block driver with the highest probing score.
963 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100964BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
965 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100966{
967 int score_max = 0, score;
968 BlockDriver *drv = NULL, *d;
969
970 QLIST_FOREACH(d, &bdrv_drivers, list) {
971 if (d->bdrv_probe) {
972 score = d->bdrv_probe(buf, buf_size, filename);
973 if (score > score_max) {
974 score_max = score;
975 drv = d;
976 }
977 }
978 }
979
980 return drv;
981}
982
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100983static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200984 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000985{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100986 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100987 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100988 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700989
Kevin Wolf08a00552010-06-01 18:37:31 +0200990 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100991 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100992 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200993 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700994 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700995
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100996 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000997 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200998 error_setg_errno(errp, -ret, "Could not read image for determining its "
999 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +02001000 *pdrv = NULL;
1001 return ret;
bellard83f64092006-08-01 16:21:11 +00001002 }
1003
Markus Armbrusterc6684242014-11-20 16:27:10 +01001004 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001005 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001006 error_setg(errp, "Could not determine image format: No compatible "
1007 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +02001008 ret = -ENOENT;
1009 }
1010 *pdrv = drv;
1011 return ret;
bellardea2384d2004-08-01 21:59:26 +00001012}
1013
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001014/**
1015 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001016 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001017 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +02001018int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001019{
1020 BlockDriver *drv = bs->drv;
1021
Max Reitzd470ad42017-11-10 21:31:09 +01001022 if (!drv) {
1023 return -ENOMEDIUM;
1024 }
1025
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001026 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001027 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001028 return 0;
1029
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001030 /* query actual device if possible, otherwise just trust the hint */
1031 if (drv->bdrv_getlength) {
1032 int64_t length = drv->bdrv_getlength(bs);
1033 if (length < 0) {
1034 return length;
1035 }
Fam Zheng7e382002013-11-06 19:48:06 +08001036 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001037 }
1038
1039 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001040
1041 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1042 return -EFBIG;
1043 }
1044
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001045 return 0;
1046}
1047
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001048/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001049 * Combines a QDict of new block driver @options with any missing options taken
1050 * from @old_options, so that leaving out an option defaults to its old value.
1051 */
1052static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1053 QDict *old_options)
1054{
1055 if (bs->drv && bs->drv->bdrv_join_options) {
1056 bs->drv->bdrv_join_options(options, old_options);
1057 } else {
1058 qdict_join(options, old_options, false);
1059 }
1060}
1061
Alberto Garcia543770b2018-09-06 12:37:09 +03001062static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1063 int open_flags,
1064 Error **errp)
1065{
1066 Error *local_err = NULL;
1067 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1068 BlockdevDetectZeroesOptions detect_zeroes =
1069 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1070 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1071 g_free(value);
1072 if (local_err) {
1073 error_propagate(errp, local_err);
1074 return detect_zeroes;
1075 }
1076
1077 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1078 !(open_flags & BDRV_O_UNMAP))
1079 {
1080 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1081 "without setting discard operation to unmap");
1082 }
1083
1084 return detect_zeroes;
1085}
1086
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001087/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001088 * Set open flags for aio engine
1089 *
1090 * Return 0 on success, -1 if the engine specified is invalid
1091 */
1092int bdrv_parse_aio(const char *mode, int *flags)
1093{
1094 if (!strcmp(mode, "threads")) {
1095 /* do nothing, default */
1096 } else if (!strcmp(mode, "native")) {
1097 *flags |= BDRV_O_NATIVE_AIO;
1098#ifdef CONFIG_LINUX_IO_URING
1099 } else if (!strcmp(mode, "io_uring")) {
1100 *flags |= BDRV_O_IO_URING;
1101#endif
1102 } else {
1103 return -1;
1104 }
1105
1106 return 0;
1107}
1108
1109/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001110 * Set open flags for a given discard mode
1111 *
1112 * Return 0 on success, -1 if the discard mode was invalid.
1113 */
1114int bdrv_parse_discard_flags(const char *mode, int *flags)
1115{
1116 *flags &= ~BDRV_O_UNMAP;
1117
1118 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1119 /* do nothing */
1120 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1121 *flags |= BDRV_O_UNMAP;
1122 } else {
1123 return -1;
1124 }
1125
1126 return 0;
1127}
1128
1129/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001130 * Set open flags for a given cache mode
1131 *
1132 * Return 0 on success, -1 if the cache mode was invalid.
1133 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001134int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001135{
1136 *flags &= ~BDRV_O_CACHE_MASK;
1137
1138 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001139 *writethrough = false;
1140 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001141 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001142 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001143 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001144 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001145 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001146 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001147 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001148 *flags |= BDRV_O_NO_FLUSH;
1149 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001150 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001151 } else {
1152 return -1;
1153 }
1154
1155 return 0;
1156}
1157
Kevin Wolfb5411552017-01-17 15:56:16 +01001158static char *bdrv_child_get_parent_desc(BdrvChild *c)
1159{
1160 BlockDriverState *parent = c->opaque;
1161 return g_strdup(bdrv_get_device_or_node_name(parent));
1162}
1163
Kevin Wolf20018e12016-05-23 18:46:59 +02001164static void bdrv_child_cb_drained_begin(BdrvChild *child)
1165{
1166 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001167 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +02001168}
1169
Kevin Wolf89bd0302018-03-22 14:11:20 +01001170static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1171{
1172 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001173 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001174}
1175
Max Reitze037c092019-07-19 11:26:14 +02001176static void bdrv_child_cb_drained_end(BdrvChild *child,
1177 int *drained_end_counter)
Kevin Wolf20018e12016-05-23 18:46:59 +02001178{
1179 BlockDriverState *bs = child->opaque;
Max Reitze037c092019-07-19 11:26:14 +02001180 bdrv_drained_end_no_poll(bs, drained_end_counter);
Kevin Wolf20018e12016-05-23 18:46:59 +02001181}
1182
Kevin Wolf38701b62017-05-04 18:52:39 +02001183static int bdrv_child_cb_inactivate(BdrvChild *child)
1184{
1185 BlockDriverState *bs = child->opaque;
1186 assert(bs->open_flags & BDRV_O_INACTIVE);
1187 return 0;
1188}
1189
Kevin Wolf5d231842019-05-06 19:17:56 +02001190static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1191 GSList **ignore, Error **errp)
1192{
1193 BlockDriverState *bs = child->opaque;
1194 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1195}
1196
Kevin Wolf53a7d042019-05-06 19:17:59 +02001197static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1198 GSList **ignore)
1199{
1200 BlockDriverState *bs = child->opaque;
1201 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1202}
1203
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001204/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001205 * Returns the options and flags that a temporary snapshot should get, based on
1206 * the originally requested flags (the originally requested image will have
1207 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001208 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001209static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1210 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001211{
Kevin Wolf73176be2016-03-07 13:02:15 +01001212 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1213
1214 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001215 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1216 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001217
Kevin Wolf3f486862019-04-04 17:04:43 +02001218 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001219 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001220 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001221
Kevin Wolf41869042016-06-16 12:59:30 +02001222 /* aio=native doesn't work for cache.direct=off, so disable it for the
1223 * temporary snapshot */
1224 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001225}
1226
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001227static void bdrv_backing_attach(BdrvChild *c)
1228{
1229 BlockDriverState *parent = c->opaque;
1230 BlockDriverState *backing_hd = c->bs;
1231
1232 assert(!parent->backing_blocker);
1233 error_setg(&parent->backing_blocker,
1234 "node is used as backing hd of '%s'",
1235 bdrv_get_device_or_node_name(parent));
1236
Max Reitzf30c66b2019-02-01 20:29:05 +01001237 bdrv_refresh_filename(backing_hd);
1238
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001239 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001240
1241 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1242 /* Otherwise we won't be able to commit or stream */
1243 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1244 parent->backing_blocker);
1245 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1246 parent->backing_blocker);
1247 /*
1248 * We do backup in 3 ways:
1249 * 1. drive backup
1250 * The target bs is new opened, and the source is top BDS
1251 * 2. blockdev backup
1252 * Both the source and the target are top BDSes.
1253 * 3. internal backup(used for block replication)
1254 * Both the source and the target are backing file
1255 *
1256 * In case 1 and 2, neither the source nor the target is the backing file.
1257 * In case 3, we will block the top BDS, so there is only one block job
1258 * for the top BDS and its backing chain.
1259 */
1260 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1261 parent->backing_blocker);
1262 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1263 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001264}
Kevin Wolfd736f112017-12-18 16:05:48 +01001265
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001266static void bdrv_backing_detach(BdrvChild *c)
1267{
1268 BlockDriverState *parent = c->opaque;
1269
1270 assert(parent->backing_blocker);
1271 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1272 error_free(parent->backing_blocker);
1273 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001274}
Kevin Wolfd736f112017-12-18 16:05:48 +01001275
Kevin Wolf6858eba2017-06-29 19:32:21 +02001276static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1277 const char *filename, Error **errp)
1278{
1279 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001280 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001281 int ret;
1282
Alberto Garciae94d3db2018-11-12 16:00:34 +02001283 if (read_only) {
1284 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001285 if (ret < 0) {
1286 return ret;
1287 }
1288 }
1289
Kevin Wolf6858eba2017-06-29 19:32:21 +02001290 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001291 base->drv ? base->drv->format_name : "",
1292 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001293 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001294 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001295 }
1296
Alberto Garciae94d3db2018-11-12 16:00:34 +02001297 if (read_only) {
1298 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001299 }
1300
Kevin Wolf6858eba2017-06-29 19:32:21 +02001301 return ret;
1302}
1303
Max Reitzfae8bd32020-05-13 13:05:20 +02001304/*
1305 * Returns the options and flags that a generic child of a BDS should
1306 * get, based on the given options and flags for the parent BDS.
1307 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001308static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1309 int *child_flags, QDict *child_options,
1310 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001311{
1312 int flags = parent_flags;
1313
1314 /*
1315 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1316 * Generally, the question to answer is: Should this child be
1317 * format-probed by default?
1318 */
1319
1320 /*
1321 * Pure and non-filtered data children of non-format nodes should
1322 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1323 * set). This only affects a very limited set of drivers (namely
1324 * quorum and blkverify when this comment was written).
1325 * Force-clear BDRV_O_PROTOCOL then.
1326 */
1327 if (!parent_is_format &&
1328 (role & BDRV_CHILD_DATA) &&
1329 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1330 {
1331 flags &= ~BDRV_O_PROTOCOL;
1332 }
1333
1334 /*
1335 * All children of format nodes (except for COW children) and all
1336 * metadata children in general should never be format-probed.
1337 * Force-set BDRV_O_PROTOCOL then.
1338 */
1339 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1340 (role & BDRV_CHILD_METADATA))
1341 {
1342 flags |= BDRV_O_PROTOCOL;
1343 }
1344
1345 /*
1346 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1347 * the parent.
1348 */
1349 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1350 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1351 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1352
1353 if (role & BDRV_CHILD_COW) {
1354 /* backing files are opened read-only by default */
1355 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1356 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1357 } else {
1358 /* Inherit the read-only option from the parent if it's not set */
1359 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1360 qdict_copy_default(child_options, parent_options,
1361 BDRV_OPT_AUTO_READ_ONLY);
1362 }
1363
1364 /*
1365 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1366 * can default to enable it on lower layers regardless of the
1367 * parent option.
1368 */
1369 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1370
1371 /* Clear flags that only apply to the top layer */
1372 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1373
1374 if (role & BDRV_CHILD_METADATA) {
1375 flags &= ~BDRV_O_NO_IO;
1376 }
1377 if (role & BDRV_CHILD_COW) {
1378 flags &= ~BDRV_O_TEMPORARY;
1379 }
1380
1381 *child_flags = flags;
1382}
1383
Max Reitzca2f1232020-05-13 13:05:22 +02001384static void bdrv_child_cb_attach(BdrvChild *child)
1385{
1386 BlockDriverState *bs = child->opaque;
1387
1388 if (child->role & BDRV_CHILD_COW) {
1389 bdrv_backing_attach(child);
1390 }
1391
1392 bdrv_apply_subtree_drain(child, bs);
1393}
1394
Max Reitz48e08282020-05-13 13:05:23 +02001395static void bdrv_child_cb_detach(BdrvChild *child)
1396{
1397 BlockDriverState *bs = child->opaque;
1398
1399 if (child->role & BDRV_CHILD_COW) {
1400 bdrv_backing_detach(child);
1401 }
1402
1403 bdrv_unapply_subtree_drain(child, bs);
1404}
1405
Max Reitz43483552020-05-13 13:05:24 +02001406static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1407 const char *filename, Error **errp)
1408{
1409 if (c->role & BDRV_CHILD_COW) {
1410 return bdrv_backing_update_filename(c, base, filename, errp);
1411 }
1412 return 0;
1413}
1414
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001415AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001416{
1417 BlockDriverState *bs = c->opaque;
1418
1419 return bdrv_get_aio_context(bs);
1420}
1421
Max Reitz43483552020-05-13 13:05:24 +02001422const BdrvChildClass child_of_bds = {
1423 .parent_is_bds = true,
1424 .get_parent_desc = bdrv_child_get_parent_desc,
1425 .inherit_options = bdrv_inherited_options,
1426 .drained_begin = bdrv_child_cb_drained_begin,
1427 .drained_poll = bdrv_child_cb_drained_poll,
1428 .drained_end = bdrv_child_cb_drained_end,
1429 .attach = bdrv_child_cb_attach,
1430 .detach = bdrv_child_cb_detach,
1431 .inactivate = bdrv_child_cb_inactivate,
1432 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1433 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1434 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001435 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001436};
1437
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001438AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1439{
1440 return c->klass->get_parent_aio_context(c);
1441}
1442
Kevin Wolf7b272452012-11-12 17:05:39 +01001443static int bdrv_open_flags(BlockDriverState *bs, int flags)
1444{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001445 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001446
1447 /*
1448 * Clear flags that are internal to the block layer before opening the
1449 * image.
1450 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001451 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001452
Kevin Wolf7b272452012-11-12 17:05:39 +01001453 return open_flags;
1454}
1455
Kevin Wolf91a097e2015-05-08 17:49:53 +02001456static void update_flags_from_options(int *flags, QemuOpts *opts)
1457{
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001458 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001459
Alberto Garcia57f9db92018-09-06 12:37:06 +03001460 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001461 *flags |= BDRV_O_NO_FLUSH;
1462 }
1463
Alberto Garcia57f9db92018-09-06 12:37:06 +03001464 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001465 *flags |= BDRV_O_NOCACHE;
1466 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001467
Alberto Garcia57f9db92018-09-06 12:37:06 +03001468 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001469 *flags |= BDRV_O_RDWR;
1470 }
1471
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001472 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1473 *flags |= BDRV_O_AUTO_RDONLY;
1474 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001475}
1476
1477static void update_options_from_flags(QDict *options, int flags)
1478{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001479 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001480 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001481 }
1482 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001483 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1484 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001485 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001486 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001487 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001488 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001489 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1490 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1491 flags & BDRV_O_AUTO_RDONLY);
1492 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001493}
1494
Kevin Wolf636ea372014-01-24 14:11:52 +01001495static void bdrv_assign_node_name(BlockDriverState *bs,
1496 const char *node_name,
1497 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001498{
Jeff Cody15489c72015-10-12 19:36:50 -04001499 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001500
Jeff Cody15489c72015-10-12 19:36:50 -04001501 if (!node_name) {
1502 node_name = gen_node_name = id_generate(ID_BLOCK);
1503 } else if (!id_wellformed(node_name)) {
1504 /*
1505 * Check for empty string or invalid characters, but not if it is
1506 * generated (generated names use characters not available to the user)
1507 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001508 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001509 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001510 }
1511
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001512 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001513 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001514 error_setg(errp, "node-name=%s is conflicting with a device id",
1515 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001516 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001517 }
1518
Benoît Canet6913c0c2014-01-23 21:31:33 +01001519 /* takes care of avoiding duplicates node names */
1520 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001521 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001522 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001523 }
1524
Kevin Wolf824808d2018-07-04 13:28:29 +02001525 /* Make sure that the node name isn't truncated */
1526 if (strlen(node_name) >= sizeof(bs->node_name)) {
1527 error_setg(errp, "Node name too long");
1528 goto out;
1529 }
1530
Benoît Canet6913c0c2014-01-23 21:31:33 +01001531 /* copy node name into the bs and insert it into the graph list */
1532 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1533 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001534out:
1535 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001536}
1537
Kevin Wolf01a56502017-01-18 15:51:56 +01001538static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1539 const char *node_name, QDict *options,
1540 int open_flags, Error **errp)
1541{
1542 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001543 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001544
1545 bdrv_assign_node_name(bs, node_name, &local_err);
1546 if (local_err) {
1547 error_propagate(errp, local_err);
1548 return -EINVAL;
1549 }
1550
1551 bs->drv = drv;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001552 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Kevin Wolf01a56502017-01-18 15:51:56 +01001553 bs->opaque = g_malloc0(drv->instance_size);
1554
1555 if (drv->bdrv_file_open) {
1556 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1557 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001558 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001559 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001560 } else {
1561 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001562 }
1563
1564 if (ret < 0) {
1565 if (local_err) {
1566 error_propagate(errp, local_err);
1567 } else if (bs->filename[0]) {
1568 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1569 } else {
1570 error_setg_errno(errp, -ret, "Could not open image");
1571 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001572 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001573 }
1574
1575 ret = refresh_total_sectors(bs, bs->total_sectors);
1576 if (ret < 0) {
1577 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001578 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001579 }
1580
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001581 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolf01a56502017-01-18 15:51:56 +01001582 if (local_err) {
1583 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001584 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001585 }
1586
1587 assert(bdrv_opt_mem_align(bs) != 0);
1588 assert(bdrv_min_mem_align(bs) != 0);
1589 assert(is_power_of_2(bs->bl.request_alignment));
1590
Kevin Wolf0f122642018-03-28 18:29:18 +02001591 for (i = 0; i < bs->quiesce_counter; i++) {
1592 if (drv->bdrv_co_drain_begin) {
1593 drv->bdrv_co_drain_begin(bs);
1594 }
1595 }
1596
Kevin Wolf01a56502017-01-18 15:51:56 +01001597 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001598open_failed:
1599 bs->drv = NULL;
1600 if (bs->file != NULL) {
1601 bdrv_unref_child(bs, bs->file);
1602 bs->file = NULL;
1603 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001604 g_free(bs->opaque);
1605 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001606 return ret;
1607}
1608
Kevin Wolf680c7f92017-01-18 17:16:41 +01001609BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1610 int flags, Error **errp)
1611{
1612 BlockDriverState *bs;
1613 int ret;
1614
1615 bs = bdrv_new();
1616 bs->open_flags = flags;
1617 bs->explicit_options = qdict_new();
1618 bs->options = qdict_new();
1619 bs->opaque = NULL;
1620
1621 update_options_from_flags(bs->options, flags);
1622
1623 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1624 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001625 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001626 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001627 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001628 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001629 bdrv_unref(bs);
1630 return NULL;
1631 }
1632
1633 return bs;
1634}
1635
Kevin Wolfc5f30142016-10-06 11:33:17 +02001636QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001637 .name = "bdrv_common",
1638 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1639 .desc = {
1640 {
1641 .name = "node-name",
1642 .type = QEMU_OPT_STRING,
1643 .help = "Node name of the block device node",
1644 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001645 {
1646 .name = "driver",
1647 .type = QEMU_OPT_STRING,
1648 .help = "Block driver to use for the node",
1649 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001650 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001651 .name = BDRV_OPT_CACHE_DIRECT,
1652 .type = QEMU_OPT_BOOL,
1653 .help = "Bypass software writeback cache on the host",
1654 },
1655 {
1656 .name = BDRV_OPT_CACHE_NO_FLUSH,
1657 .type = QEMU_OPT_BOOL,
1658 .help = "Ignore flush requests",
1659 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001660 {
1661 .name = BDRV_OPT_READ_ONLY,
1662 .type = QEMU_OPT_BOOL,
1663 .help = "Node is opened in read-only mode",
1664 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001665 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001666 .name = BDRV_OPT_AUTO_READ_ONLY,
1667 .type = QEMU_OPT_BOOL,
1668 .help = "Node can become read-only if opening read-write fails",
1669 },
1670 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001671 .name = "detect-zeroes",
1672 .type = QEMU_OPT_STRING,
1673 .help = "try to optimize zero writes (off, on, unmap)",
1674 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001675 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001676 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001677 .type = QEMU_OPT_STRING,
1678 .help = "discard operation (ignore/off, unmap/on)",
1679 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001680 {
1681 .name = BDRV_OPT_FORCE_SHARE,
1682 .type = QEMU_OPT_BOOL,
1683 .help = "always accept other writers (default: off)",
1684 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001685 { /* end of list */ }
1686 },
1687};
1688
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001689QemuOptsList bdrv_create_opts_simple = {
1690 .name = "simple-create-opts",
1691 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001692 .desc = {
1693 {
1694 .name = BLOCK_OPT_SIZE,
1695 .type = QEMU_OPT_SIZE,
1696 .help = "Virtual disk size"
1697 },
1698 {
1699 .name = BLOCK_OPT_PREALLOC,
1700 .type = QEMU_OPT_STRING,
1701 .help = "Preallocation mode (allowed values: off)"
1702 },
1703 { /* end of list */ }
1704 }
1705};
1706
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001707/*
Kevin Wolf57915332010-04-14 15:24:50 +02001708 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001709 *
1710 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001711 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001712static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001713 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001714{
1715 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001716 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001717 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001718 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001719 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001720 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001721 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001722 Error *local_err = NULL;
Kevin Wolf57915332010-04-14 15:24:50 +02001723
Paolo Bonzini64058752012-05-08 16:51:49 +02001724 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001725 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001726
Kevin Wolf62392eb2015-04-24 16:38:02 +02001727 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001728 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001729 ret = -EINVAL;
1730 goto fail_opts;
1731 }
1732
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001733 update_flags_from_options(&bs->open_flags, opts);
1734
Kevin Wolf62392eb2015-04-24 16:38:02 +02001735 driver_name = qemu_opt_get(opts, "driver");
1736 drv = bdrv_find_format(driver_name);
1737 assert(drv != NULL);
1738
Fam Zheng5a9347c2017-05-03 00:35:37 +08001739 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1740
1741 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1742 error_setg(errp,
1743 BDRV_OPT_FORCE_SHARE
1744 "=on can only be used with read-only images");
1745 ret = -EINVAL;
1746 goto fail_opts;
1747 }
1748
Kevin Wolf45673672013-04-22 17:48:40 +02001749 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001750 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001751 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001752 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001753 /*
1754 * Caution: while qdict_get_try_str() is fine, getting
1755 * non-string types would require more care. When @options
1756 * come from -blockdev or blockdev_add, its members are typed
1757 * according to the QAPI schema, but when they come from
1758 * -drive, they're all QString.
1759 */
Kevin Wolf45673672013-04-22 17:48:40 +02001760 filename = qdict_get_try_str(options, "filename");
1761 }
1762
Max Reitz4a008242017-04-13 18:06:24 +02001763 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001764 error_setg(errp, "The '%s' block driver requires a file name",
1765 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001766 ret = -EINVAL;
1767 goto fail_opts;
1768 }
1769
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001770 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1771 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001772
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001773 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001774
1775 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001776 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1777 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1778 } else {
1779 ret = -ENOTSUP;
1780 }
1781 if (ret < 0) {
1782 error_setg(errp,
1783 !bs->read_only && bdrv_is_whitelisted(drv, true)
1784 ? "Driver '%s' can only be used for read-only devices"
1785 : "Driver '%s' is not whitelisted",
1786 drv->format_name);
1787 goto fail_opts;
1788 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001789 }
Kevin Wolf57915332010-04-14 15:24:50 +02001790
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001791 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001792 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001793
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001794 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001795 if (!bs->read_only) {
1796 bdrv_enable_copy_on_read(bs);
1797 } else {
1798 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001799 ret = -EINVAL;
1800 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001801 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001802 }
1803
Alberto Garcia415bbca2018-10-03 13:23:13 +03001804 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001805 if (discard != NULL) {
1806 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1807 error_setg(errp, "Invalid discard option");
1808 ret = -EINVAL;
1809 goto fail_opts;
1810 }
1811 }
1812
Alberto Garcia543770b2018-09-06 12:37:09 +03001813 bs->detect_zeroes =
1814 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1815 if (local_err) {
1816 error_propagate(errp, local_err);
1817 ret = -EINVAL;
1818 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001819 }
1820
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001821 if (filename != NULL) {
1822 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1823 } else {
1824 bs->filename[0] = '\0';
1825 }
Max Reitz91af7012014-07-18 20:24:56 +02001826 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001827
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001828 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001829 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001830 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001831
Kevin Wolf01a56502017-01-18 15:51:56 +01001832 assert(!drv->bdrv_file_open || file == NULL);
1833 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001834 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001835 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001836 }
1837
Kevin Wolf18edf282015-04-07 17:12:56 +02001838 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001839 return 0;
1840
Kevin Wolf18edf282015-04-07 17:12:56 +02001841fail_opts:
1842 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001843 return ret;
1844}
1845
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001846static QDict *parse_json_filename(const char *filename, Error **errp)
1847{
1848 QObject *options_obj;
1849 QDict *options;
1850 int ret;
1851
1852 ret = strstart(filename, "json:", &filename);
1853 assert(ret);
1854
Markus Armbruster5577fff2017-02-28 22:26:59 +01001855 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001856 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001857 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001858 return NULL;
1859 }
1860
Max Reitz7dc847e2018-02-24 16:40:29 +01001861 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001862 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001863 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001864 error_setg(errp, "Invalid JSON object given");
1865 return NULL;
1866 }
1867
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001868 qdict_flatten(options);
1869
1870 return options;
1871}
1872
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001873static void parse_json_protocol(QDict *options, const char **pfilename,
1874 Error **errp)
1875{
1876 QDict *json_options;
1877 Error *local_err = NULL;
1878
1879 /* Parse json: pseudo-protocol */
1880 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1881 return;
1882 }
1883
1884 json_options = parse_json_filename(*pfilename, &local_err);
1885 if (local_err) {
1886 error_propagate(errp, local_err);
1887 return;
1888 }
1889
1890 /* Options given in the filename have lower priority than options
1891 * specified directly */
1892 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001893 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001894 *pfilename = NULL;
1895}
1896
Kevin Wolf57915332010-04-14 15:24:50 +02001897/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001898 * Fills in default options for opening images and converts the legacy
1899 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001900 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1901 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001902 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001903static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001904 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001905{
1906 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001907 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001908 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001909 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001910 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001911
Markus Armbruster129c7d12017-03-30 19:43:12 +02001912 /*
1913 * Caution: while qdict_get_try_str() is fine, getting non-string
1914 * types would require more care. When @options come from
1915 * -blockdev or blockdev_add, its members are typed according to
1916 * the QAPI schema, but when they come from -drive, they're all
1917 * QString.
1918 */
Max Reitz53a29512015-03-19 14:53:16 -04001919 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001920 if (drvname) {
1921 drv = bdrv_find_format(drvname);
1922 if (!drv) {
1923 error_setg(errp, "Unknown driver '%s'", drvname);
1924 return -ENOENT;
1925 }
1926 /* If the user has explicitly specified the driver, this choice should
1927 * override the BDRV_O_PROTOCOL flag */
1928 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001929 }
1930
1931 if (protocol) {
1932 *flags |= BDRV_O_PROTOCOL;
1933 } else {
1934 *flags &= ~BDRV_O_PROTOCOL;
1935 }
1936
Kevin Wolf91a097e2015-05-08 17:49:53 +02001937 /* Translate cache options from flags into options */
1938 update_options_from_flags(*options, *flags);
1939
Kevin Wolff54120f2014-05-26 11:09:59 +02001940 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001941 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001942 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001943 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001944 parse_filename = true;
1945 } else {
1946 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1947 "the same time");
1948 return -EINVAL;
1949 }
1950 }
1951
1952 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001953 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001954 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001955
Max Reitz053e1572015-08-26 19:47:51 +02001956 if (!drvname && protocol) {
1957 if (filename) {
1958 drv = bdrv_find_protocol(filename, parse_filename, errp);
1959 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001960 return -EINVAL;
1961 }
Max Reitz053e1572015-08-26 19:47:51 +02001962
1963 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001964 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001965 } else {
1966 error_setg(errp, "Must specify either driver or file");
1967 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001968 }
1969 }
1970
Kevin Wolf17b005f2014-05-27 10:50:29 +02001971 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001972
1973 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001974 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001975 drv->bdrv_parse_filename(filename, *options, &local_err);
1976 if (local_err) {
1977 error_propagate(errp, local_err);
1978 return -EINVAL;
1979 }
1980
1981 if (!drv->bdrv_needs_filename) {
1982 qdict_del(*options, "filename");
1983 }
1984 }
1985
1986 return 0;
1987}
1988
Kevin Wolf148eb132017-09-14 14:32:04 +02001989typedef struct BlockReopenQueueEntry {
1990 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01001991 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02001992 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001993 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02001994} BlockReopenQueueEntry;
1995
1996/*
1997 * Return the flags that @bs will have after the reopens in @q have
1998 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1999 * return the current flags.
2000 */
2001static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2002{
2003 BlockReopenQueueEntry *entry;
2004
2005 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002006 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002007 if (entry->state.bs == bs) {
2008 return entry->state.flags;
2009 }
2010 }
2011 }
2012
2013 return bs->open_flags;
2014}
2015
2016/* Returns whether the image file can be written to after the reopen queue @q
2017 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002018static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2019 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002020{
2021 int flags = bdrv_reopen_get_flags(q, bs);
2022
2023 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2024}
2025
Max Reitzcc022142018-06-06 21:37:00 +02002026/*
2027 * Return whether the BDS can be written to. This is not necessarily
2028 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2029 * be written to but do not count as read-only images.
2030 */
2031bool bdrv_is_writable(BlockDriverState *bs)
2032{
2033 return bdrv_is_writable_after_reopen(bs, NULL);
2034}
2035
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002036static char *bdrv_child_user_desc(BdrvChild *c)
2037{
2038 if (c->klass->get_parent_desc) {
2039 return c->klass->get_parent_desc(c);
2040 }
2041
2042 return g_strdup("another user");
2043}
2044
2045static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2046{
2047 g_autofree char *user = NULL;
2048 g_autofree char *perm_names = NULL;
2049
2050 if ((b->perm & a->shared_perm) == b->perm) {
2051 return true;
2052 }
2053
2054 perm_names = bdrv_perm_names(b->perm & ~a->shared_perm);
2055 user = bdrv_child_user_desc(a);
2056 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2057 "allow '%s' on %s",
2058 user, a->name, perm_names, bdrv_get_node_name(b->bs));
2059
2060 return false;
2061}
2062
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002063static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002064{
2065 BdrvChild *a, *b;
2066
2067 /*
2068 * During the loop we'll look at each pair twice. That's correct because
2069 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2070 * directions.
2071 */
2072 QLIST_FOREACH(a, &bs->parents, next_parent) {
2073 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002074 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002075 continue;
2076 }
2077
2078 if (!bdrv_a_allow_b(a, b, errp)) {
2079 return true;
2080 }
2081 }
2082 }
2083
2084 return false;
2085}
2086
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002087static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02002088 BdrvChild *c, BdrvChildRole role,
2089 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002090 uint64_t parent_perm, uint64_t parent_shared,
2091 uint64_t *nperm, uint64_t *nshared)
2092{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002093 assert(bs->drv && bs->drv->bdrv_child_perm);
Max Reitze5d8a402020-05-13 13:05:44 +02002094 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002095 parent_perm, parent_shared,
2096 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002097 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002098 if (child_bs && child_bs->force_share) {
2099 *nshared = BLK_PERM_ALL;
2100 }
2101}
2102
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002103/*
2104 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2105 * nodes that are already in the @list, of course) so that final list is
2106 * topologically sorted. Return the result (GSList @list object is updated, so
2107 * don't use old reference after function call).
2108 *
2109 * On function start @list must be already topologically sorted and for any node
2110 * in the @list the whole subtree of the node must be in the @list as well. The
2111 * simplest way to satisfy this criteria: use only result of
2112 * bdrv_topological_dfs() or NULL as @list parameter.
2113 */
2114static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2115 BlockDriverState *bs)
2116{
2117 BdrvChild *child;
2118 g_autoptr(GHashTable) local_found = NULL;
2119
2120 if (!found) {
2121 assert(!list);
2122 found = local_found = g_hash_table_new(NULL, NULL);
2123 }
2124
2125 if (g_hash_table_contains(found, bs)) {
2126 return list;
2127 }
2128 g_hash_table_add(found, bs);
2129
2130 QLIST_FOREACH(child, &bs->children, next) {
2131 list = bdrv_topological_dfs(list, found, child->bs);
2132 }
2133
2134 return g_slist_prepend(list, bs);
2135}
2136
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002137typedef struct BdrvChildSetPermState {
2138 BdrvChild *child;
2139 uint64_t old_perm;
2140 uint64_t old_shared_perm;
2141} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002142
2143static void bdrv_child_set_perm_abort(void *opaque)
2144{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002145 BdrvChildSetPermState *s = opaque;
2146
2147 s->child->perm = s->old_perm;
2148 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002149}
2150
2151static TransactionActionDrv bdrv_child_set_pem_drv = {
2152 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002153 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002154};
2155
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002156static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2157 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002158{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002159 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
2160
2161 *s = (BdrvChildSetPermState) {
2162 .child = c,
2163 .old_perm = c->perm,
2164 .old_shared_perm = c->shared_perm,
2165 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002166
2167 c->perm = perm;
2168 c->shared_perm = shared;
2169
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002170 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002171}
2172
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002173static void bdrv_drv_set_perm_commit(void *opaque)
2174{
2175 BlockDriverState *bs = opaque;
2176 uint64_t cumulative_perms, cumulative_shared_perms;
2177
2178 if (bs->drv->bdrv_set_perm) {
2179 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2180 &cumulative_shared_perms);
2181 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2182 }
2183}
2184
2185static void bdrv_drv_set_perm_abort(void *opaque)
2186{
2187 BlockDriverState *bs = opaque;
2188
2189 if (bs->drv->bdrv_abort_perm_update) {
2190 bs->drv->bdrv_abort_perm_update(bs);
2191 }
2192}
2193
2194TransactionActionDrv bdrv_drv_set_perm_drv = {
2195 .abort = bdrv_drv_set_perm_abort,
2196 .commit = bdrv_drv_set_perm_commit,
2197};
2198
2199static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2200 uint64_t shared_perm, Transaction *tran,
2201 Error **errp)
2202{
2203 if (!bs->drv) {
2204 return 0;
2205 }
2206
2207 if (bs->drv->bdrv_check_perm) {
2208 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2209 if (ret < 0) {
2210 return ret;
2211 }
2212 }
2213
2214 if (tran) {
2215 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2216 }
2217
2218 return 0;
2219}
2220
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002221typedef struct BdrvReplaceChildState {
2222 BdrvChild *child;
2223 BlockDriverState *old_bs;
2224} BdrvReplaceChildState;
2225
2226static void bdrv_replace_child_commit(void *opaque)
2227{
2228 BdrvReplaceChildState *s = opaque;
2229
2230 bdrv_unref(s->old_bs);
2231}
2232
2233static void bdrv_replace_child_abort(void *opaque)
2234{
2235 BdrvReplaceChildState *s = opaque;
2236 BlockDriverState *new_bs = s->child->bs;
2237
2238 /* old_bs reference is transparently moved from @s to @s->child */
2239 bdrv_replace_child_noperm(s->child, s->old_bs);
2240 bdrv_unref(new_bs);
2241}
2242
2243static TransactionActionDrv bdrv_replace_child_drv = {
2244 .commit = bdrv_replace_child_commit,
2245 .abort = bdrv_replace_child_abort,
2246 .clean = g_free,
2247};
2248
2249/*
Vladimir Sementsov-Ogievskiy2fe5ff52021-04-28 18:18:03 +03002250 * bdrv_replace_child
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002251 *
2252 * Note: real unref of old_bs is done only on commit.
2253 */
Vladimir Sementsov-Ogievskiy2fe5ff52021-04-28 18:18:03 +03002254static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs,
2255 Transaction *tran)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002256{
2257 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2258 *s = (BdrvReplaceChildState) {
2259 .child = child,
2260 .old_bs = child->bs,
2261 };
2262 tran_add(tran, &bdrv_replace_child_drv, s);
2263
2264 if (new_bs) {
2265 bdrv_ref(new_bs);
2266 }
2267 bdrv_replace_child_noperm(child, new_bs);
2268 /* old_bs reference is transparently moved from @child to @s */
2269}
2270
Kevin Wolf33a610c2016-12-15 13:04:20 +01002271/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002272 * Refresh permissions in @bs subtree. The function is intended to be called
2273 * after some graph modification that was done without permission update.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002274 */
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002275static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2276 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002277{
2278 BlockDriver *drv = bs->drv;
2279 BdrvChild *c;
2280 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002281 uint64_t cumulative_perms, cumulative_shared_perms;
2282
2283 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002284
2285 /* Write permissions never work with read-only images */
2286 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002287 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002288 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002289 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2290 error_setg(errp, "Block node is read-only");
2291 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002292 error_setg(errp, "Read-only block node '%s' cannot support "
2293 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002294 }
2295
Kevin Wolf33a610c2016-12-15 13:04:20 +01002296 return -EPERM;
2297 }
2298
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002299 /*
2300 * Unaligned requests will automatically be aligned to bl.request_alignment
2301 * and without RESIZE we can't extend requests to write to space beyond the
2302 * end of the image, so it's required that the image size is aligned.
2303 */
2304 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2305 !(cumulative_perms & BLK_PERM_RESIZE))
2306 {
2307 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2308 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2309 "Image size is not a multiple of request "
2310 "alignment");
2311 return -EPERM;
2312 }
2313 }
2314
Kevin Wolf33a610c2016-12-15 13:04:20 +01002315 /* Check this node */
2316 if (!drv) {
2317 return 0;
2318 }
2319
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002320 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002321 errp);
2322 if (ret < 0) {
2323 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002324 }
2325
Kevin Wolf78e421c2016-12-20 23:25:12 +01002326 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002327 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002328 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002329 return 0;
2330 }
2331
2332 /* Check all children */
2333 QLIST_FOREACH(c, &bs->children, next) {
2334 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002335
Max Reitze5d8a402020-05-13 13:05:44 +02002336 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002337 cumulative_perms, cumulative_shared_perms,
2338 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002339 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002340 }
2341
2342 return 0;
2343}
2344
Vladimir Sementsov-Ogievskiy25409802021-04-28 18:18:00 +03002345static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2346 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002347{
2348 int ret;
2349 BlockDriverState *bs;
2350
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002351 for ( ; list; list = list->next) {
2352 bs = list->data;
2353
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002354 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002355 return -EINVAL;
2356 }
2357
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002358 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002359 if (ret < 0) {
2360 return ret;
2361 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002362 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002363
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002364 return 0;
2365}
2366
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002367void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2368 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002369{
2370 BdrvChild *c;
2371 uint64_t cumulative_perms = 0;
2372 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2373
2374 QLIST_FOREACH(c, &bs->parents, next_parent) {
2375 cumulative_perms |= c->perm;
2376 cumulative_shared_perms &= c->shared_perm;
2377 }
2378
2379 *perm = cumulative_perms;
2380 *shared_perm = cumulative_shared_perms;
2381}
2382
Fam Zheng51761962017-05-03 00:35:36 +08002383char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002384{
2385 struct perm_name {
2386 uint64_t perm;
2387 const char *name;
2388 } permissions[] = {
2389 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2390 { BLK_PERM_WRITE, "write" },
2391 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2392 { BLK_PERM_RESIZE, "resize" },
2393 { BLK_PERM_GRAPH_MOD, "change children" },
2394 { 0, NULL }
2395 };
2396
Alberto Garciae2a74232020-01-10 18:15:18 +01002397 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002398 struct perm_name *p;
2399
2400 for (p = permissions; p->name; p++) {
2401 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002402 if (result->len > 0) {
2403 g_string_append(result, ", ");
2404 }
2405 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002406 }
2407 }
2408
Alberto Garciae2a74232020-01-10 18:15:18 +01002409 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002410}
2411
Kevin Wolf33a610c2016-12-15 13:04:20 +01002412
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002413static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002414{
2415 int ret;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002416 Transaction *tran = tran_new();
2417 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002418
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002419 ret = bdrv_list_refresh_perms(list, NULL, tran, errp);
2420 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002421
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002422 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002423}
2424
Kevin Wolf33a610c2016-12-15 13:04:20 +01002425int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2426 Error **errp)
2427{
Max Reitz10467792019-05-22 19:03:51 +02002428 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002429 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002430 int ret;
2431
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002432 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002433
2434 ret = bdrv_refresh_perms(c->bs, &local_err);
2435
2436 tran_finalize(tran, ret);
2437
Kevin Wolf33a610c2016-12-15 13:04:20 +01002438 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002439 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2440 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002441 error_propagate(errp, local_err);
2442 } else {
2443 /*
2444 * Our caller may intend to only loosen restrictions and
2445 * does not expect this function to fail. Errors are not
2446 * fatal in such a case, so we can just hide them from our
2447 * caller.
2448 */
2449 error_free(local_err);
2450 ret = 0;
2451 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002452 }
2453
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002454 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002455}
2456
Max Reitzc1087f12019-05-22 19:03:46 +02002457int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2458{
2459 uint64_t parent_perms, parent_shared;
2460 uint64_t perms, shared;
2461
2462 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002463 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002464 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002465
2466 return bdrv_child_try_set_perm(c, perms, shared, errp);
2467}
2468
Max Reitz87278af2020-05-13 13:05:40 +02002469/*
2470 * Default implementation for .bdrv_child_perm() for block filters:
2471 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2472 * filtered child.
2473 */
2474static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002475 BdrvChildRole role,
2476 BlockReopenQueue *reopen_queue,
2477 uint64_t perm, uint64_t shared,
2478 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002479{
Kevin Wolfe444fa82019-08-02 15:59:41 +02002480 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2481 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002482}
2483
Max Reitz70082db2020-05-13 13:05:26 +02002484static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002485 BdrvChildRole role,
2486 BlockReopenQueue *reopen_queue,
2487 uint64_t perm, uint64_t shared,
2488 uint64_t *nperm, uint64_t *nshared)
2489{
Max Reitze5d8a402020-05-13 13:05:44 +02002490 assert(role & BDRV_CHILD_COW);
Max Reitz70082db2020-05-13 13:05:26 +02002491
2492 /*
2493 * We want consistent read from backing files if the parent needs it.
2494 * No other operations are performed on backing files.
2495 */
2496 perm &= BLK_PERM_CONSISTENT_READ;
2497
2498 /*
2499 * If the parent can deal with changing data, we're okay with a
2500 * writable and resizable backing file.
2501 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2502 */
2503 if (shared & BLK_PERM_WRITE) {
2504 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2505 } else {
2506 shared = 0;
2507 }
2508
2509 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2510 BLK_PERM_WRITE_UNCHANGED;
2511
2512 if (bs->open_flags & BDRV_O_INACTIVE) {
2513 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2514 }
2515
2516 *nperm = perm;
2517 *nshared = shared;
2518}
2519
Max Reitz6f838a42020-05-13 13:05:27 +02002520static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002521 BdrvChildRole role,
2522 BlockReopenQueue *reopen_queue,
2523 uint64_t perm, uint64_t shared,
2524 uint64_t *nperm, uint64_t *nshared)
2525{
2526 int flags;
2527
Max Reitze5d8a402020-05-13 13:05:44 +02002528 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002529
2530 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2531
2532 /*
2533 * Apart from the modifications below, the same permissions are
2534 * forwarded and left alone as for filters
2535 */
Max Reitze5d8a402020-05-13 13:05:44 +02002536 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002537 perm, shared, &perm, &shared);
2538
Max Reitzf8890542020-05-13 13:05:28 +02002539 if (role & BDRV_CHILD_METADATA) {
2540 /* Format drivers may touch metadata even if the guest doesn't write */
2541 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2542 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2543 }
2544
2545 /*
2546 * bs->file always needs to be consistent because of the
2547 * metadata. We can never allow other users to resize or write
2548 * to it.
2549 */
2550 if (!(flags & BDRV_O_NO_IO)) {
2551 perm |= BLK_PERM_CONSISTENT_READ;
2552 }
2553 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002554 }
2555
Max Reitzf8890542020-05-13 13:05:28 +02002556 if (role & BDRV_CHILD_DATA) {
2557 /*
2558 * Technically, everything in this block is a subset of the
2559 * BDRV_CHILD_METADATA path taken above, and so this could
2560 * be an "else if" branch. However, that is not obvious, and
2561 * this function is not performance critical, therefore we let
2562 * this be an independent "if".
2563 */
2564
2565 /*
2566 * We cannot allow other users to resize the file because the
2567 * format driver might have some assumptions about the size
2568 * (e.g. because it is stored in metadata, or because the file
2569 * is split into fixed-size data files).
2570 */
2571 shared &= ~BLK_PERM_RESIZE;
2572
2573 /*
2574 * WRITE_UNCHANGED often cannot be performed as such on the
2575 * data file. For example, the qcow2 driver may still need to
2576 * write copied clusters on copy-on-read.
2577 */
2578 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2579 perm |= BLK_PERM_WRITE;
2580 }
2581
2582 /*
2583 * If the data file is written to, the format driver may
2584 * expect to be able to resize it by writing beyond the EOF.
2585 */
2586 if (perm & BLK_PERM_WRITE) {
2587 perm |= BLK_PERM_RESIZE;
2588 }
Max Reitz6f838a42020-05-13 13:05:27 +02002589 }
Max Reitz6f838a42020-05-13 13:05:27 +02002590
2591 if (bs->open_flags & BDRV_O_INACTIVE) {
2592 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2593 }
2594
2595 *nperm = perm;
2596 *nshared = shared;
2597}
2598
Max Reitz2519f542020-05-13 13:05:29 +02002599void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002600 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002601 uint64_t perm, uint64_t shared,
2602 uint64_t *nperm, uint64_t *nshared)
2603{
Max Reitz2519f542020-05-13 13:05:29 +02002604 if (role & BDRV_CHILD_FILTERED) {
2605 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2606 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002607 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002608 perm, shared, nperm, nshared);
2609 } else if (role & BDRV_CHILD_COW) {
2610 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002611 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002612 perm, shared, nperm, nshared);
2613 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002614 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002615 perm, shared, nperm, nshared);
2616 } else {
2617 g_assert_not_reached();
2618 }
2619}
2620
Max Reitz7b1d9c42019-11-08 13:34:51 +01002621uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2622{
2623 static const uint64_t permissions[] = {
2624 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2625 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2626 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2627 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2628 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2629 };
2630
2631 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2632 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2633
2634 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2635
2636 return permissions[qapi_perm];
2637}
2638
Kevin Wolf8ee03992017-03-06 13:45:28 +01002639static void bdrv_replace_child_noperm(BdrvChild *child,
2640 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002641{
2642 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002643 int new_bs_quiesce_counter;
2644 int drain_saldo;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002645
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002646 assert(!child->frozen);
2647
Fam Zhengbb2614e2017-04-07 14:54:10 +08002648 if (old_bs && new_bs) {
2649 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2650 }
Max Reitzdebc2922019-07-22 15:33:44 +02002651
2652 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2653 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2654
2655 /*
2656 * If the new child node is drained but the old one was not, flush
2657 * all outstanding requests to the old child node.
2658 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002659 while (drain_saldo > 0 && child->klass->drained_begin) {
Max Reitzdebc2922019-07-22 15:33:44 +02002660 bdrv_parent_drained_begin_single(child, true);
2661 drain_saldo--;
2662 }
2663
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002664 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002665 /* Detach first so that the recursive drain sections coming from @child
2666 * are already gone and we only end the drain sections that came from
2667 * elsewhere. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002668 if (child->klass->detach) {
2669 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002670 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002671 QLIST_REMOVE(child, next_parent);
2672 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002673
2674 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002675
2676 if (new_bs) {
2677 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzdebc2922019-07-22 15:33:44 +02002678
2679 /*
2680 * Detaching the old node may have led to the new node's
2681 * quiesce_counter having been decreased. Not a problem, we
2682 * just need to recognize this here and then invoke
2683 * drained_end appropriately more often.
2684 */
2685 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2686 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002687
Kevin Wolfd736f112017-12-18 16:05:48 +01002688 /* Attach only after starting new drained sections, so that recursive
2689 * drain sections coming from @child don't get an extra .drained_begin
2690 * callback. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002691 if (child->klass->attach) {
2692 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002693 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002694 }
Max Reitzdebc2922019-07-22 15:33:44 +02002695
2696 /*
2697 * If the old child node was drained but the new one is not, allow
2698 * requests to come in only after the new node has been attached.
2699 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002700 while (drain_saldo < 0 && child->klass->drained_end) {
Max Reitzdebc2922019-07-22 15:33:44 +02002701 bdrv_parent_drained_end_single(child);
2702 drain_saldo++;
2703 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002704}
2705
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03002706static void bdrv_child_free(void *opaque)
2707{
2708 BdrvChild *c = opaque;
2709
2710 g_free(c->name);
2711 g_free(c);
2712}
2713
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002714static void bdrv_remove_empty_child(BdrvChild *child)
2715{
2716 assert(!child->bs);
2717 QLIST_SAFE_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03002718 bdrv_child_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002719}
2720
2721typedef struct BdrvAttachChildCommonState {
2722 BdrvChild **child;
2723 AioContext *old_parent_ctx;
2724 AioContext *old_child_ctx;
2725} BdrvAttachChildCommonState;
2726
2727static void bdrv_attach_child_common_abort(void *opaque)
2728{
2729 BdrvAttachChildCommonState *s = opaque;
2730 BdrvChild *child = *s->child;
2731 BlockDriverState *bs = child->bs;
2732
2733 bdrv_replace_child_noperm(child, NULL);
2734
2735 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2736 bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort);
2737 }
2738
2739 if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) {
2740 GSList *ignore = g_slist_prepend(NULL, child);
2741
2742 child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore,
2743 &error_abort);
2744 g_slist_free(ignore);
2745 ignore = g_slist_prepend(NULL, child);
2746 child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore);
2747
2748 g_slist_free(ignore);
2749 }
2750
2751 bdrv_unref(bs);
2752 bdrv_remove_empty_child(child);
2753 *s->child = NULL;
2754}
2755
2756static TransactionActionDrv bdrv_attach_child_common_drv = {
2757 .abort = bdrv_attach_child_common_abort,
2758 .clean = g_free,
2759};
2760
2761/*
2762 * Common part of attaching bdrv child to bs or to blk or to job
2763 */
2764static int bdrv_attach_child_common(BlockDriverState *child_bs,
2765 const char *child_name,
2766 const BdrvChildClass *child_class,
2767 BdrvChildRole child_role,
2768 uint64_t perm, uint64_t shared_perm,
2769 void *opaque, BdrvChild **child,
2770 Transaction *tran, Error **errp)
2771{
2772 BdrvChild *new_child;
2773 AioContext *parent_ctx;
2774 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
2775
2776 assert(child);
2777 assert(*child == NULL);
2778
2779 new_child = g_new(BdrvChild, 1);
2780 *new_child = (BdrvChild) {
2781 .bs = NULL,
2782 .name = g_strdup(child_name),
2783 .klass = child_class,
2784 .role = child_role,
2785 .perm = perm,
2786 .shared_perm = shared_perm,
2787 .opaque = opaque,
2788 };
2789
2790 /*
2791 * If the AioContexts don't match, first try to move the subtree of
2792 * child_bs into the AioContext of the new parent. If this doesn't work,
2793 * try moving the parent into the AioContext of child_bs instead.
2794 */
2795 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
2796 if (child_ctx != parent_ctx) {
2797 Error *local_err = NULL;
2798 int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err);
2799
2800 if (ret < 0 && child_class->can_set_aio_ctx) {
2801 GSList *ignore = g_slist_prepend(NULL, new_child);
2802 if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore,
2803 NULL))
2804 {
2805 error_free(local_err);
2806 ret = 0;
2807 g_slist_free(ignore);
2808 ignore = g_slist_prepend(NULL, new_child);
2809 child_class->set_aio_ctx(new_child, child_ctx, &ignore);
2810 }
2811 g_slist_free(ignore);
2812 }
2813
2814 if (ret < 0) {
2815 error_propagate(errp, local_err);
2816 bdrv_remove_empty_child(new_child);
2817 return ret;
2818 }
2819 }
2820
2821 bdrv_ref(child_bs);
2822 bdrv_replace_child_noperm(new_child, child_bs);
2823
2824 *child = new_child;
2825
2826 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
2827 *s = (BdrvAttachChildCommonState) {
2828 .child = child,
2829 .old_parent_ctx = parent_ctx,
2830 .old_child_ctx = child_ctx,
2831 };
2832 tran_add(tran, &bdrv_attach_child_common_drv, s);
2833
2834 return 0;
2835}
2836
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002837static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
2838 BlockDriverState *child_bs,
2839 const char *child_name,
2840 const BdrvChildClass *child_class,
2841 BdrvChildRole child_role,
2842 BdrvChild **child,
2843 Transaction *tran,
2844 Error **errp)
2845{
2846 int ret;
2847 uint64_t perm, shared_perm;
2848
2849 assert(parent_bs->drv);
2850
2851 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2852 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2853 perm, shared_perm, &perm, &shared_perm);
2854
2855 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
2856 child_role, perm, shared_perm, parent_bs,
2857 child, tran, errp);
2858 if (ret < 0) {
2859 return ret;
2860 }
2861
2862 QLIST_INSERT_HEAD(&parent_bs->children, *child, next);
2863 /*
2864 * child is removed in bdrv_attach_child_common_abort(), so don't care to
2865 * abort this change separately.
2866 */
2867
2868 return 0;
2869}
2870
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002871static void bdrv_detach_child(BdrvChild *child)
2872{
Vladimir Sementsov-Ogievskiy4954aac2021-04-28 18:18:01 +03002873 BlockDriverState *old_bs = child->bs;
2874
2875 bdrv_replace_child_noperm(child, NULL);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002876 bdrv_remove_empty_child(child);
Vladimir Sementsov-Ogievskiy4954aac2021-04-28 18:18:01 +03002877
2878 if (old_bs) {
2879 /*
2880 * Update permissions for old node. We're just taking a parent away, so
2881 * we're loosening restrictions. Errors of permission update are not
2882 * fatal in this case, ignore them.
2883 */
2884 bdrv_refresh_perms(old_bs, NULL);
2885
2886 /*
2887 * When the parent requiring a non-default AioContext is removed, the
2888 * node moves back to the main AioContext
2889 */
2890 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
2891 }
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002892}
2893
Alberto Garciab441dc72019-05-13 16:46:18 +03002894/*
2895 * This function steals the reference to child_bs from the caller.
2896 * That reference is later dropped by bdrv_root_unref_child().
2897 *
2898 * On failure NULL is returned, errp is set and the reference to
2899 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002900 *
2901 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2902 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03002903 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002904BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2905 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002906 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002907 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002908 uint64_t perm, uint64_t shared_perm,
2909 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02002910{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002911 int ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002912 BdrvChild *child = NULL;
2913 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002914
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002915 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
2916 child_role, perm, shared_perm, opaque,
2917 &child, tran, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002918 if (ret < 0) {
Kevin Wolfe878bb12021-05-03 13:05:54 +02002919 assert(child == NULL);
2920 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002921 }
2922
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002923 ret = bdrv_refresh_perms(child_bs, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02002924
Kevin Wolfe878bb12021-05-03 13:05:54 +02002925out:
2926 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002927 bdrv_unref(child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002928 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02002929}
2930
Alberto Garciab441dc72019-05-13 16:46:18 +03002931/*
2932 * This function transfers the reference to child_bs from the caller
2933 * to parent_bs. That reference is later dropped by parent_bs on
2934 * bdrv_close() or if someone calls bdrv_unref_child().
2935 *
2936 * On failure NULL is returned, errp is set and the reference to
2937 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002938 *
2939 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2940 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03002941 */
Wen Congyang98292c62016-05-10 15:36:38 +08002942BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2943 BlockDriverState *child_bs,
2944 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002945 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002946 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002947 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002948{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002949 int ret;
2950 BdrvChild *child = NULL;
2951 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002952
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002953 ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class,
2954 child_role, &child, tran, errp);
2955 if (ret < 0) {
2956 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002957 }
2958
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002959 ret = bdrv_refresh_perms(parent_bs, errp);
2960 if (ret < 0) {
2961 goto out;
2962 }
2963
2964out:
2965 tran_finalize(tran, ret);
2966
2967 bdrv_unref(child_bs);
2968
Kevin Wolff21d96d2016-03-08 13:47:46 +01002969 return child;
2970}
2971
Max Reitz7b99a262019-06-12 16:07:11 +02002972/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002973void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002974{
Kevin Wolf779020c2015-10-13 14:09:44 +02002975 BlockDriverState *child_bs;
2976
Kevin Wolff21d96d2016-03-08 13:47:46 +01002977 child_bs = child->bs;
2978 bdrv_detach_child(child);
2979 bdrv_unref(child_bs);
2980}
2981
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03002982typedef struct BdrvSetInheritsFrom {
2983 BlockDriverState *bs;
2984 BlockDriverState *old_inherits_from;
2985} BdrvSetInheritsFrom;
2986
2987static void bdrv_set_inherits_from_abort(void *opaque)
2988{
2989 BdrvSetInheritsFrom *s = opaque;
2990
2991 s->bs->inherits_from = s->old_inherits_from;
2992}
2993
2994static TransactionActionDrv bdrv_set_inherits_from_drv = {
2995 .abort = bdrv_set_inherits_from_abort,
2996 .clean = g_free,
2997};
2998
2999/* @tran is allowed to be NULL. In this case no rollback is possible */
3000static void bdrv_set_inherits_from(BlockDriverState *bs,
3001 BlockDriverState *new_inherits_from,
3002 Transaction *tran)
3003{
3004 if (tran) {
3005 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3006
3007 *s = (BdrvSetInheritsFrom) {
3008 .bs = bs,
3009 .old_inherits_from = bs->inherits_from,
3010 };
3011
3012 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3013 }
3014
3015 bs->inherits_from = new_inherits_from;
3016}
3017
Max Reitz3cf746b2019-07-03 19:28:07 +02003018/**
3019 * Clear all inherits_from pointers from children and grandchildren of
3020 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003021 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003022 */
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003023static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3024 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003025{
Max Reitz3cf746b2019-07-03 19:28:07 +02003026 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003027
Max Reitz3cf746b2019-07-03 19:28:07 +02003028 if (child->bs->inherits_from == root) {
3029 /*
3030 * Remove inherits_from only when the last reference between root and
3031 * child->bs goes away.
3032 */
3033 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003034 if (c != child && c->bs == child->bs) {
3035 break;
3036 }
3037 }
3038 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003039 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003040 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003041 }
3042
Max Reitz3cf746b2019-07-03 19:28:07 +02003043 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003044 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003045 }
3046}
3047
Max Reitz7b99a262019-06-12 16:07:11 +02003048/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003049void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3050{
3051 if (child == NULL) {
3052 return;
3053 }
3054
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003055 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003056 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003057}
3058
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003059
3060static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3061{
3062 BdrvChild *c;
3063 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003064 if (c->klass->change_media) {
3065 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003066 }
3067 }
3068}
3069
Alberto Garcia0065c452018-10-31 18:16:37 +02003070/* Return true if you can reach parent going through child->inherits_from
3071 * recursively. If parent or child are NULL, return false */
3072static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3073 BlockDriverState *parent)
3074{
3075 while (child && child != parent) {
3076 child = child->inherits_from;
3077 }
3078
3079 return child != NULL;
3080}
3081
Kevin Wolf5db15a52015-09-14 15:33:33 +02003082/*
Max Reitz25191e52020-05-13 13:05:33 +02003083 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3084 * mostly used for COW backing children (role = COW), but also for
3085 * filtered children (role = FILTERED | PRIMARY).
3086 */
3087static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3088{
3089 if (bs->drv && bs->drv->is_filter) {
3090 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3091 } else {
3092 return BDRV_CHILD_COW;
3093 }
3094}
3095
3096/*
Max Reitz9ee413c2019-06-12 18:42:34 +02003097 * Sets the bs->backing link of a BDS. A new reference is created; callers
Kevin Wolf5db15a52015-09-14 15:33:33 +02003098 * which don't need their own reference any more must call bdrv_unref().
3099 */
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003100static int bdrv_set_backing_noperm(BlockDriverState *bs,
3101 BlockDriverState *backing_hd,
3102 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003103{
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003104 int ret = 0;
Alberto Garcia0065c452018-10-31 18:16:37 +02003105 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
3106 bdrv_inherits_from_recursive(backing_hd, bs);
3107
Max Reitz9ee413c2019-06-12 18:42:34 +02003108 if (bdrv_is_backing_chain_frozen(bs, child_bs(bs->backing), errp)) {
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003109 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003110 }
3111
Kevin Wolf760e0062015-06-17 14:55:21 +02003112 if (bs->backing) {
Max Reitz7b99a262019-06-12 16:07:11 +02003113 /* Cannot be frozen, we checked that above */
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003114 bdrv_unset_inherits_from(bs, bs->backing, tran);
3115 bdrv_remove_filter_or_cow_child(bs, tran);
Fam Zheng826b6ca2014-05-23 21:29:47 +08003116 }
3117
Fam Zheng8d24cce2014-05-23 21:29:45 +08003118 if (!backing_hd) {
3119 goto out;
3120 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003121
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003122 ret = bdrv_attach_child_noperm(bs, backing_hd, "backing",
3123 &child_of_bds, bdrv_backing_role(bs),
3124 &bs->backing, tran, errp);
3125 if (ret < 0) {
3126 return ret;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003127 }
3128
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003129
3130 /*
3131 * If backing_hd was already part of bs's backing chain, and
Alberto Garcia0065c452018-10-31 18:16:37 +02003132 * inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003133 * point directly to bs (else it will become NULL).
3134 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003135 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003136 bdrv_set_inherits_from(backing_hd, bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003137 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003138
Fam Zheng8d24cce2014-05-23 21:29:45 +08003139out:
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003140 bdrv_refresh_limits(bs, tran, NULL);
3141
3142 return 0;
3143}
3144
3145int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3146 Error **errp)
3147{
3148 int ret;
3149 Transaction *tran = tran_new();
3150
3151 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3152 if (ret < 0) {
3153 goto out;
3154 }
3155
3156 ret = bdrv_refresh_perms(bs, errp);
3157out:
3158 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003159
3160 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003161}
3162
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003163/*
3164 * Opens the backing file for a BlockDriverState if not yet open
3165 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003166 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3167 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3168 * itself, all options starting with "${bdref_key}." are considered part of the
3169 * BlockdevRef.
3170 *
3171 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003172 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003173int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3174 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003175{
Max Reitz6b6833c2019-02-01 20:29:15 +01003176 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003177 char *bdref_key_dot;
3178 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003179 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003180 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003181 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003182 QDict *options;
3183 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003184 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003185
Kevin Wolf760e0062015-06-17 14:55:21 +02003186 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003187 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003188 }
3189
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003190 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003191 if (parent_options == NULL) {
3192 tmp_parent_options = qdict_new();
3193 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003194 }
3195
Paolo Bonzini9156df12012-10-18 16:49:17 +02003196 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003197
3198 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3199 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3200 g_free(bdref_key_dot);
3201
Markus Armbruster129c7d12017-03-30 19:43:12 +02003202 /*
3203 * Caution: while qdict_get_try_str() is fine, getting non-string
3204 * types would require more care. When @parent_options come from
3205 * -blockdev or blockdev_add, its members are typed according to
3206 * the QAPI schema, but when they come from -drive, they're all
3207 * QString.
3208 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003209 reference = qdict_get_try_str(parent_options, bdref_key);
3210 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003211 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003212 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003213 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003214 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003215 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003216 if (qdict_size(options) == 0) {
3217 /* If the user specifies options that do not modify the
3218 * backing file's behavior, we might still consider it the
3219 * implicit backing file. But it's easier this way, and
3220 * just specifying some of the backing BDS's options is
3221 * only possible with -drive anyway (otherwise the QAPI
3222 * schema forces the user to specify everything). */
3223 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3224 }
3225
Max Reitz6b6833c2019-02-01 20:29:15 +01003226 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003227 if (local_err) {
3228 ret = -EINVAL;
3229 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003230 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003231 goto free_exit;
3232 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003233 }
3234
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003235 if (!bs->drv || !bs->drv->supports_backing) {
3236 ret = -EINVAL;
3237 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003238 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003239 goto free_exit;
3240 }
3241
Peter Krempa6bff5972017-10-12 16:14:10 +02003242 if (!reference &&
3243 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003244 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003245 }
3246
Max Reitz6b6833c2019-02-01 20:29:15 +01003247 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003248 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003249 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003250 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003251 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003252 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003253 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003254 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003255
Max Reitz998c2012019-02-01 20:29:08 +01003256 if (implicit_backing) {
3257 bdrv_refresh_filename(backing_hd);
3258 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3259 backing_hd->filename);
3260 }
3261
Kevin Wolf5db15a52015-09-14 15:33:33 +02003262 /* Hook up the backing file link; drop our reference, bs owns the
3263 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003264 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003265 bdrv_unref(backing_hd);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003266 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003267 goto free_exit;
3268 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003269
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003270 qdict_del(parent_options, bdref_key);
3271
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003272free_exit:
3273 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003274 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003275 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003276}
3277
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003278static BlockDriverState *
3279bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003280 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003281 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003282{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003283 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003284 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003285 char *bdref_key_dot;
3286 const char *reference;
3287
Max Reitzbd86fb92020-05-13 13:05:13 +02003288 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003289
Max Reitzda557aa2013-12-20 19:28:11 +01003290 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3291 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3292 g_free(bdref_key_dot);
3293
Markus Armbruster129c7d12017-03-30 19:43:12 +02003294 /*
3295 * Caution: while qdict_get_try_str() is fine, getting non-string
3296 * types would require more care. When @options come from
3297 * -blockdev or blockdev_add, its members are typed according to
3298 * the QAPI schema, but when they come from -drive, they're all
3299 * QString.
3300 */
Max Reitzda557aa2013-12-20 19:28:11 +01003301 reference = qdict_get_try_str(options, bdref_key);
3302 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003303 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003304 error_setg(errp, "A block device must be specified for \"%s\"",
3305 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003306 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003307 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003308 goto done;
3309 }
3310
Max Reitz5b363932016-05-17 16:41:31 +02003311 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003312 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003313 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003314 goto done;
3315 }
3316
Max Reitzda557aa2013-12-20 19:28:11 +01003317done:
3318 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003319 return bs;
3320}
3321
3322/*
3323 * Opens a disk image whose options are given as BlockdevRef in another block
3324 * device's options.
3325 *
3326 * If allow_none is true, no image will be opened if filename is false and no
3327 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3328 *
3329 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3330 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3331 * itself, all options starting with "${bdref_key}." are considered part of the
3332 * BlockdevRef.
3333 *
3334 * The BlockdevRef will be removed from the options QDict.
3335 */
3336BdrvChild *bdrv_open_child(const char *filename,
3337 QDict *options, const char *bdref_key,
3338 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003339 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003340 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003341 bool allow_none, Error **errp)
3342{
3343 BlockDriverState *bs;
3344
Max Reitzbd86fb92020-05-13 13:05:13 +02003345 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003346 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003347 if (bs == NULL) {
3348 return NULL;
3349 }
3350
Max Reitz258b7762020-05-13 13:05:15 +02003351 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3352 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003353}
3354
Max Reitzbd86fb92020-05-13 13:05:13 +02003355/*
3356 * TODO Future callers may need to specify parent/child_class in order for
3357 * option inheritance to work. Existing callers use it for the root node.
3358 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003359BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3360{
3361 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003362 QObject *obj = NULL;
3363 QDict *qdict = NULL;
3364 const char *reference = NULL;
3365 Visitor *v = NULL;
3366
3367 if (ref->type == QTYPE_QSTRING) {
3368 reference = ref->u.reference;
3369 } else {
3370 BlockdevOptions *options = &ref->u.definition;
3371 assert(ref->type == QTYPE_QDICT);
3372
3373 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003374 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003375 visit_complete(v, &obj);
3376
Max Reitz7dc847e2018-02-24 16:40:29 +01003377 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003378 qdict_flatten(qdict);
3379
3380 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3381 * compatibility with other callers) rather than what we want as the
3382 * real defaults. Apply the defaults here instead. */
3383 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3384 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3385 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003386 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3387
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003388 }
3389
Max Reitz272c02e2020-05-13 13:05:17 +02003390 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003391 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003392 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003393 visit_free(v);
3394 return bs;
3395}
3396
Max Reitz66836182016-05-17 16:41:27 +02003397static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3398 int flags,
3399 QDict *snapshot_options,
3400 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003401{
3402 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003403 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003404 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003405 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003406 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003407 int ret;
3408
3409 /* if snapshot, we create a temporary backing file and open it
3410 instead of opening 'filename' directly */
3411
3412 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003413 total_size = bdrv_getlength(bs);
3414 if (total_size < 0) {
3415 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003416 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003417 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003418
3419 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003420 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003421 if (ret < 0) {
3422 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003423 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003424 }
3425
Max Reitzef810432014-12-02 18:32:42 +01003426 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003427 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003428 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003429 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003430 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003431 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003432 error_prepend(errp, "Could not create temporary overlay '%s': ",
3433 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003434 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003435 }
3436
Kevin Wolf73176be2016-03-07 13:02:15 +01003437 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003438 qdict_put_str(snapshot_options, "file.driver", "file");
3439 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3440 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003441
Max Reitz5b363932016-05-17 16:41:31 +02003442 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003443 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003444 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003445 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003446 }
3447
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003448 ret = bdrv_append(bs_snapshot, bs, errp);
3449 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003450 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003451 goto out;
3452 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003453
3454out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003455 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003456 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05003457 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003458}
3459
Max Reitzda557aa2013-12-20 19:28:11 +01003460/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003461 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003462 *
3463 * options is a QDict of options to pass to the block drivers, or NULL for an
3464 * empty set of options. The reference to the QDict belongs to the block layer
3465 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003466 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003467 *
3468 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3469 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003470 *
3471 * The reference parameter may be used to specify an existing block device which
3472 * should be opened. If specified, neither options nor a filename may be given,
3473 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003474 */
Max Reitz5b363932016-05-17 16:41:31 +02003475static BlockDriverState *bdrv_open_inherit(const char *filename,
3476 const char *reference,
3477 QDict *options, int flags,
3478 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003479 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003480 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003481 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003482{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003483 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003484 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003485 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003486 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003487 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003488 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003489 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003490 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003491 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003492 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003493
Max Reitzbd86fb92020-05-13 13:05:13 +02003494 assert(!child_class || !flags);
3495 assert(!child_class == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01003496
Max Reitzddf56362014-02-18 18:33:06 +01003497 if (reference) {
3498 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003499 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003500
Max Reitzddf56362014-02-18 18:33:06 +01003501 if (filename || options_non_empty) {
3502 error_setg(errp, "Cannot reference an existing block device with "
3503 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003504 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003505 }
3506
3507 bs = bdrv_lookup_bs(reference, reference, errp);
3508 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003509 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003510 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003511
Max Reitzddf56362014-02-18 18:33:06 +01003512 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003513 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003514 }
3515
Max Reitz5b363932016-05-17 16:41:31 +02003516 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003517
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003518 /* NULL means an empty set of options */
3519 if (options == NULL) {
3520 options = qdict_new();
3521 }
3522
Kevin Wolf145f5982015-05-08 16:15:03 +02003523 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003524 parse_json_protocol(options, &filename, &local_err);
3525 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003526 goto fail;
3527 }
3528
Kevin Wolf145f5982015-05-08 16:15:03 +02003529 bs->explicit_options = qdict_clone_shallow(options);
3530
Max Reitzbd86fb92020-05-13 13:05:13 +02003531 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003532 bool parent_is_format;
3533
3534 if (parent->drv) {
3535 parent_is_format = parent->drv->is_format;
3536 } else {
3537 /*
3538 * parent->drv is not set yet because this node is opened for
3539 * (potential) format probing. That means that @parent is going
3540 * to be a format node.
3541 */
3542 parent_is_format = true;
3543 }
3544
Kevin Wolfbddcec32015-04-09 18:47:50 +02003545 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003546 child_class->inherit_options(child_role, parent_is_format,
3547 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003548 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003549 }
3550
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003551 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003552 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003553 goto fail;
3554 }
3555
Markus Armbruster129c7d12017-03-30 19:43:12 +02003556 /*
3557 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3558 * Caution: getting a boolean member of @options requires care.
3559 * When @options come from -blockdev or blockdev_add, members are
3560 * typed according to the QAPI schema, but when they come from
3561 * -drive, they're all QString.
3562 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003563 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3564 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3565 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3566 } else {
3567 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003568 }
3569
3570 if (flags & BDRV_O_SNAPSHOT) {
3571 snapshot_options = qdict_new();
3572 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3573 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003574 /* Let bdrv_backing_options() override "read-only" */
3575 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003576 bdrv_inherited_options(BDRV_CHILD_COW, true,
3577 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003578 }
3579
Kevin Wolf62392eb2015-04-24 16:38:02 +02003580 bs->open_flags = flags;
3581 bs->options = options;
3582 options = qdict_clone_shallow(options);
3583
Kevin Wolf76c591b2014-06-04 14:19:44 +02003584 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003585 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003586 drvname = qdict_get_try_str(options, "driver");
3587 if (drvname) {
3588 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003589 if (!drv) {
3590 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003591 goto fail;
3592 }
3593 }
3594
3595 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003596
Markus Armbruster129c7d12017-03-30 19:43:12 +02003597 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003598 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003599 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3600 (backing && *backing == '\0'))
3601 {
Max Reitz4f7be282018-02-24 16:40:33 +01003602 if (backing) {
3603 warn_report("Use of \"backing\": \"\" is deprecated; "
3604 "use \"backing\": null instead");
3605 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003606 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003607 qdict_del(bs->explicit_options, "backing");
3608 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003609 qdict_del(options, "backing");
3610 }
3611
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003612 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003613 * probing, the block drivers will do their own bdrv_open_child() for the
3614 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003615 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003616 BlockDriverState *file_bs;
3617
3618 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003619 &child_of_bds, BDRV_CHILD_IMAGE,
3620 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003621 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003622 goto fail;
3623 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003624 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003625 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3626 * looking at the header to guess the image format. This works even
3627 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003628 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003629 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003630 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003631 if (local_err) {
3632 goto fail;
3633 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003634
Eric Blake46f5ac22017-04-27 16:58:17 -05003635 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003636 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003637 }
3638
Kevin Wolf76c591b2014-06-04 14:19:44 +02003639 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003640 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003641 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003642 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003643 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003644 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003645 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003646 /*
3647 * This option update would logically belong in bdrv_fill_options(),
3648 * but we first need to open bs->file for the probing to work, while
3649 * opening bs->file already requires the (mostly) final set of options
3650 * so that cache mode etc. can be inherited.
3651 *
3652 * Adding the driver later is somewhat ugly, but it's not an option
3653 * that would ever be inherited, so it's correct. We just need to make
3654 * sure to update both bs->options (which has the full effective
3655 * options for bs) and options (which has file.* already removed).
3656 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003657 qdict_put_str(bs->options, "driver", drv->format_name);
3658 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003659 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003660 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003661 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003662 }
3663
Max Reitz53a29512015-03-19 14:53:16 -04003664 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3665 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3666 /* file must be NULL if a protocol BDS is about to be created
3667 * (the inverse results in an error message from bdrv_open_common()) */
3668 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3669
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003670 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003671 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003672 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003673 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01003674 }
3675
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003676 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003677 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01003678 file = NULL;
3679 }
3680
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003681 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02003682 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003683 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003684 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003685 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003686 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003687 }
3688
Alberto Garcia50196d72018-09-06 12:37:03 +03003689 /* Remove all children options and references
3690 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03003691 QLIST_FOREACH(child, &bs->children, next) {
3692 char *child_key_dot;
3693 child_key_dot = g_strdup_printf("%s.", child->name);
3694 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3695 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03003696 qdict_del(bs->explicit_options, child->name);
3697 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03003698 g_free(child_key_dot);
3699 }
3700
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003701 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01003702 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003703 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01003704 if (flags & BDRV_O_PROTOCOL) {
3705 error_setg(errp, "Block protocol '%s' doesn't support the option "
3706 "'%s'", drv->format_name, entry->key);
3707 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01003708 error_setg(errp,
3709 "Block format '%s' does not support the option '%s'",
3710 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01003711 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003712
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003713 goto close_and_fail;
3714 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003715
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01003716 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003717
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003718 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03003719 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003720
3721 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3722 * temporary snapshot afterwards. */
3723 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02003724 BlockDriverState *snapshot_bs;
3725 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3726 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01003727 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003728 if (local_err) {
3729 goto close_and_fail;
3730 }
Max Reitz5b363932016-05-17 16:41:31 +02003731 /* We are not going to return bs but the overlay on top of it
3732 * (snapshot_bs); thus, we have to drop the strong reference to bs
3733 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3734 * though, because the overlay still has a reference to it. */
3735 bdrv_unref(bs);
3736 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02003737 }
3738
Max Reitz5b363932016-05-17 16:41:31 +02003739 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003740
Kevin Wolf8bfea152014-04-11 19:16:36 +02003741fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003742 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003743 qobject_unref(snapshot_options);
3744 qobject_unref(bs->explicit_options);
3745 qobject_unref(bs->options);
3746 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003747 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03003748 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003749 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003750 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003751 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003752
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003753close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02003754 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003755 qobject_unref(snapshot_options);
3756 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003757 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003758 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003759}
3760
Max Reitz5b363932016-05-17 16:41:31 +02003761BlockDriverState *bdrv_open(const char *filename, const char *reference,
3762 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02003763{
Max Reitz5b363932016-05-17 16:41:31 +02003764 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02003765 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003766}
3767
Alberto Garciafaf116b2019-03-12 18:48:49 +02003768/* Return true if the NULL-terminated @list contains @str */
3769static bool is_str_in_list(const char *str, const char *const *list)
3770{
3771 if (str && list) {
3772 int i;
3773 for (i = 0; list[i] != NULL; i++) {
3774 if (!strcmp(str, list[i])) {
3775 return true;
3776 }
3777 }
3778 }
3779 return false;
3780}
3781
3782/*
3783 * Check that every option set in @bs->options is also set in
3784 * @new_opts.
3785 *
3786 * Options listed in the common_options list and in
3787 * @bs->drv->mutable_opts are skipped.
3788 *
3789 * Return 0 on success, otherwise return -EINVAL and set @errp.
3790 */
3791static int bdrv_reset_options_allowed(BlockDriverState *bs,
3792 const QDict *new_opts, Error **errp)
3793{
3794 const QDictEntry *e;
3795 /* These options are common to all block drivers and are handled
3796 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3797 const char *const common_options[] = {
3798 "node-name", "discard", "cache.direct", "cache.no-flush",
3799 "read-only", "auto-read-only", "detect-zeroes", NULL
3800 };
3801
3802 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3803 if (!qdict_haskey(new_opts, e->key) &&
3804 !is_str_in_list(e->key, common_options) &&
3805 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3806 error_setg(errp, "Option '%s' cannot be reset "
3807 "to its default value", e->key);
3808 return -EINVAL;
3809 }
3810 }
3811
3812 return 0;
3813}
3814
Jeff Codye971aa12012-09-20 15:13:19 -04003815/*
Alberto Garciacb828c32019-03-12 18:48:47 +02003816 * Returns true if @child can be reached recursively from @bs
3817 */
3818static bool bdrv_recurse_has_child(BlockDriverState *bs,
3819 BlockDriverState *child)
3820{
3821 BdrvChild *c;
3822
3823 if (bs == child) {
3824 return true;
3825 }
3826
3827 QLIST_FOREACH(c, &bs->children, next) {
3828 if (bdrv_recurse_has_child(c->bs, child)) {
3829 return true;
3830 }
3831 }
3832
3833 return false;
3834}
3835
3836/*
Jeff Codye971aa12012-09-20 15:13:19 -04003837 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3838 * reopen of multiple devices.
3839 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003840 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04003841 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3842 * be created and initialized. This newly created BlockReopenQueue should be
3843 * passed back in for subsequent calls that are intended to be of the same
3844 * atomic 'set'.
3845 *
3846 * bs is the BlockDriverState to add to the reopen queue.
3847 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003848 * options contains the changed options for the associated bs
3849 * (the BlockReopenQueue takes ownership)
3850 *
Jeff Codye971aa12012-09-20 15:13:19 -04003851 * flags contains the open flags for the associated bs
3852 *
3853 * returns a pointer to bs_queue, which is either the newly allocated
3854 * bs_queue, or the existing bs_queue being used.
3855 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003856 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003857 */
Kevin Wolf28518102015-05-08 17:07:31 +02003858static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3859 BlockDriverState *bs,
3860 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003861 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02003862 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02003863 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02003864 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02003865 int parent_flags,
3866 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04003867{
3868 assert(bs != NULL);
3869
3870 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02003871 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003872 QDict *old_options, *explicit_options, *options_copy;
3873 int flags;
3874 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003875
Kevin Wolf1a63a902017-12-06 20:24:44 +01003876 /* Make sure that the caller remembered to use a drained section. This is
3877 * important to avoid graph changes between the recursive queuing here and
3878 * bdrv_reopen_multiple(). */
3879 assert(bs->quiesce_counter > 0);
3880
Jeff Codye971aa12012-09-20 15:13:19 -04003881 if (bs_queue == NULL) {
3882 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003883 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04003884 }
3885
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003886 if (!options) {
3887 options = qdict_new();
3888 }
3889
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003890 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003891 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003892 if (bs == bs_entry->state.bs) {
3893 break;
3894 }
3895 }
3896
Kevin Wolf28518102015-05-08 17:07:31 +02003897 /*
3898 * Precedence of options:
3899 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003900 * 2. Retained from explicitly set options of bs
3901 * 3. Inherited from parent node
3902 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02003903 */
3904
Kevin Wolf145f5982015-05-08 16:15:03 +02003905 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02003906 if (bs_entry || keep_old_opts) {
3907 old_options = qdict_clone_shallow(bs_entry ?
3908 bs_entry->state.explicit_options :
3909 bs->explicit_options);
3910 bdrv_join_options(bs, options, old_options);
3911 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003912 }
Kevin Wolf145f5982015-05-08 16:15:03 +02003913
3914 explicit_options = qdict_clone_shallow(options);
3915
Kevin Wolf28518102015-05-08 17:07:31 +02003916 /* Inherit from parent node */
3917 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003918 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003919 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02003920 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003921 } else {
3922 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02003923 }
3924
Alberto Garcia077e8e22019-03-12 18:48:44 +02003925 if (keep_old_opts) {
3926 /* Old values are used for options that aren't set yet */
3927 old_options = qdict_clone_shallow(bs->options);
3928 bdrv_join_options(bs, options, old_options);
3929 qobject_unref(old_options);
3930 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003931
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003932 /* We have the final set of options so let's update the flags */
3933 options_copy = qdict_clone_shallow(options);
3934 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3935 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3936 update_flags_from_options(&flags, opts);
3937 qemu_opts_del(opts);
3938 qobject_unref(options_copy);
3939
Kevin Wolffd452022017-08-03 17:02:59 +02003940 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02003941 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02003942 if (flags & BDRV_O_RDWR) {
3943 flags |= BDRV_O_ALLOW_RDWR;
3944 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02003945
Kevin Wolf1857c972017-09-14 14:53:46 +02003946 if (!bs_entry) {
3947 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003948 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02003949 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003950 qobject_unref(bs_entry->state.options);
3951 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02003952 }
3953
3954 bs_entry->state.bs = bs;
3955 bs_entry->state.options = options;
3956 bs_entry->state.explicit_options = explicit_options;
3957 bs_entry->state.flags = flags;
3958
Alberto Garcia85466322019-03-12 18:48:45 +02003959 /*
3960 * If keep_old_opts is false then it means that unspecified
3961 * options must be reset to their original value. We don't allow
3962 * resetting 'backing' but we need to know if the option is
3963 * missing in order to decide if we have to return an error.
3964 */
3965 if (!keep_old_opts) {
3966 bs_entry->state.backing_missing =
3967 !qdict_haskey(options, "backing") &&
3968 !qdict_haskey(options, "backing.driver");
3969 }
3970
Kevin Wolf67251a32015-04-09 18:54:04 +02003971 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02003972 QDict *new_child_options = NULL;
3973 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003974
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003975 /* reopen can only change the options of block devices that were
3976 * implicitly created and inherited options. For other (referenced)
3977 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02003978 if (child->bs->inherits_from != bs) {
3979 continue;
3980 }
3981
Alberto Garcia85466322019-03-12 18:48:45 +02003982 /* Check if the options contain a child reference */
3983 if (qdict_haskey(options, child->name)) {
3984 const char *childref = qdict_get_try_str(options, child->name);
3985 /*
3986 * The current child must not be reopened if the child
3987 * reference is null or points to a different node.
3988 */
3989 if (g_strcmp0(childref, child->bs->node_name)) {
3990 continue;
3991 }
3992 /*
3993 * If the child reference points to the current child then
3994 * reopen it with its existing set of options (note that
3995 * it can still inherit new options from the parent).
3996 */
3997 child_keep_old = true;
3998 } else {
3999 /* Extract child options ("child-name.*") */
4000 char *child_key_dot = g_strdup_printf("%s.", child->name);
4001 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4002 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4003 g_free(child_key_dot);
4004 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004005
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004006 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004007 child->klass, child->role, bs->drv->is_format,
4008 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004009 }
4010
Jeff Codye971aa12012-09-20 15:13:19 -04004011 return bs_queue;
4012}
4013
Kevin Wolf28518102015-05-08 17:07:31 +02004014BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4015 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004016 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004017{
Max Reitz3cdc69d2020-05-13 13:05:18 +02004018 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4019 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004020}
4021
Jeff Codye971aa12012-09-20 15:13:19 -04004022/*
4023 * Reopen multiple BlockDriverStates atomically & transactionally.
4024 *
4025 * The queue passed in (bs_queue) must have been built up previous
4026 * via bdrv_reopen_queue().
4027 *
4028 * Reopens all BDS specified in the queue, with the appropriate
4029 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004030 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004031 * data cleaned up.
4032 *
4033 * If all devices prepare successfully, then the changes are committed
4034 * to all devices.
4035 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004036 * All affected nodes must be drained between bdrv_reopen_queue() and
4037 * bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04004038 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004039int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004040{
4041 int ret = -1;
4042 BlockReopenQueueEntry *bs_entry, *next;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004043 Transaction *tran = tran_new();
4044 g_autoptr(GHashTable) found = NULL;
4045 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004046
4047 assert(bs_queue != NULL);
4048
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004049 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004050 ret = bdrv_flush(bs_entry->state.bs);
4051 if (ret < 0) {
4052 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004053 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004054 }
4055 }
4056
4057 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004058 assert(bs_entry->state.bs->quiesce_counter > 0);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004059 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
4060 if (ret < 0) {
4061 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004062 }
4063 bs_entry->prepared = true;
4064 }
4065
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004066 found = g_hash_table_new(NULL, NULL);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004067 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004068 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004069
4070 refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs);
4071 if (state->old_backing_bs) {
4072 refresh_list = bdrv_topological_dfs(refresh_list, found,
4073 state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004074 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004075 }
4076
4077 /*
4078 * Note that file-posix driver rely on permission update done during reopen
4079 * (even if no permission changed), because it wants "new" permissions for
4080 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4081 * in raw_reopen_prepare() which is called with "old" permissions.
4082 */
4083 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4084 if (ret < 0) {
4085 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004086 }
4087
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004088 /*
4089 * If we reach this point, we have success and just need to apply the
4090 * changes.
4091 *
4092 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4093 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4094 * children are usually goes after parents in reopen-queue, so go from last
4095 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004096 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004097 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Jeff Codye971aa12012-09-20 15:13:19 -04004098 bdrv_reopen_commit(&bs_entry->state);
4099 }
4100
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004101 tran_commit(tran);
4102
4103 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4104 BlockDriverState *bs = bs_entry->state.bs;
4105
4106 if (bs->drv->bdrv_reopen_commit_post) {
4107 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4108 }
4109 }
4110
Jeff Codye971aa12012-09-20 15:13:19 -04004111 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004112 goto cleanup;
4113
4114abort:
4115 tran_abort(tran);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004116 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004117 if (bs_entry->prepared) {
4118 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004119 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004120 qobject_unref(bs_entry->state.explicit_options);
4121 qobject_unref(bs_entry->state.options);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004122 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004123
Jeff Codye971aa12012-09-20 15:13:19 -04004124cleanup:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004125 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Jeff Codye971aa12012-09-20 15:13:19 -04004126 g_free(bs_entry);
4127 }
4128 g_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004129
Jeff Codye971aa12012-09-20 15:13:19 -04004130 return ret;
4131}
4132
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004133int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4134 Error **errp)
4135{
4136 int ret;
4137 BlockReopenQueue *queue;
4138 QDict *opts = qdict_new();
4139
4140 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4141
4142 bdrv_subtree_drained_begin(bs);
Alberto Garcia077e8e22019-03-12 18:48:44 +02004143 queue = bdrv_reopen_queue(NULL, bs, opts, true);
Alberto Garcia5019aec2019-03-12 18:48:50 +02004144 ret = bdrv_reopen_multiple(queue, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004145 bdrv_subtree_drained_end(bs);
4146
4147 return ret;
4148}
4149
Kevin Wolf1de6b452020-03-06 15:14:13 +01004150static bool bdrv_reopen_can_attach(BlockDriverState *parent,
4151 BdrvChild *child,
4152 BlockDriverState *new_child,
4153 Error **errp)
4154{
4155 AioContext *parent_ctx = bdrv_get_aio_context(parent);
4156 AioContext *child_ctx = bdrv_get_aio_context(new_child);
4157 GSList *ignore;
4158 bool ret;
4159
4160 ignore = g_slist_prepend(NULL, child);
4161 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
4162 g_slist_free(ignore);
4163 if (ret) {
4164 return ret;
4165 }
4166
4167 ignore = g_slist_prepend(NULL, child);
4168 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
4169 g_slist_free(ignore);
4170 return ret;
4171}
4172
Jeff Codye971aa12012-09-20 15:13:19 -04004173/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004174 * Take a BDRVReopenState and check if the value of 'backing' in the
4175 * reopen_state->options QDict is valid or not.
4176 *
4177 * If 'backing' is missing from the QDict then return 0.
4178 *
4179 * If 'backing' contains the node name of the backing file of
4180 * reopen_state->bs then return 0.
4181 *
4182 * If 'backing' contains a different node name (or is null) then check
4183 * whether the current backing file can be replaced with the new one.
4184 * If that's the case then reopen_state->replace_backing_bs is set to
4185 * true and reopen_state->new_backing_bs contains a pointer to the new
4186 * backing BlockDriverState (or NULL).
4187 *
4188 * Return 0 on success, otherwise return < 0 and set @errp.
4189 */
4190static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004191 Transaction *set_backings_tran,
Alberto Garciacb828c32019-03-12 18:48:47 +02004192 Error **errp)
4193{
4194 BlockDriverState *bs = reopen_state->bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004195 BlockDriverState *overlay_bs, *below_bs, *new_backing_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004196 QObject *value;
4197 const char *str;
4198
4199 value = qdict_get(reopen_state->options, "backing");
4200 if (value == NULL) {
4201 return 0;
4202 }
4203
4204 switch (qobject_type(value)) {
4205 case QTYPE_QNULL:
4206 new_backing_bs = NULL;
4207 break;
4208 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004209 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciacb828c32019-03-12 18:48:47 +02004210 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
4211 if (new_backing_bs == NULL) {
4212 return -EINVAL;
4213 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
4214 error_setg(errp, "Making '%s' a backing file of '%s' "
4215 "would create a cycle", str, bs->node_name);
4216 return -EINVAL;
4217 }
4218 break;
4219 default:
4220 /* 'backing' does not allow any other data type */
4221 g_assert_not_reached();
4222 }
4223
4224 /*
Kevin Wolf1de6b452020-03-06 15:14:13 +01004225 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4226 * bdrv_reopen_commit() won't fail.
Alberto Garciacb828c32019-03-12 18:48:47 +02004227 */
4228 if (new_backing_bs) {
Kevin Wolf1de6b452020-03-06 15:14:13 +01004229 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004230 return -EINVAL;
4231 }
4232 }
4233
4234 /*
Max Reitz1d42f482019-06-12 17:24:39 +02004235 * Ensure that @bs can really handle backing files, because we are
4236 * about to give it one (or swap the existing one)
4237 */
4238 if (bs->drv->is_filter) {
4239 /* Filters always have a file or a backing child */
4240 if (!bs->backing) {
4241 error_setg(errp, "'%s' is a %s filter node that does not support a "
4242 "backing child", bs->node_name, bs->drv->format_name);
4243 return -EINVAL;
4244 }
4245 } else if (!bs->drv->supports_backing) {
4246 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
4247 "files", bs->drv->format_name, bs->node_name);
4248 return -EINVAL;
4249 }
4250
4251 /*
Alberto Garciacb828c32019-03-12 18:48:47 +02004252 * Find the "actual" backing file by skipping all links that point
4253 * to an implicit node, if any (e.g. a commit filter node).
Max Reitz1d42f482019-06-12 17:24:39 +02004254 * We cannot use any of the bdrv_skip_*() functions here because
4255 * those return the first explicit node, while we are looking for
4256 * its overlay here.
Alberto Garciacb828c32019-03-12 18:48:47 +02004257 */
4258 overlay_bs = bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004259 for (below_bs = bdrv_filter_or_cow_bs(overlay_bs);
4260 below_bs && below_bs->implicit;
4261 below_bs = bdrv_filter_or_cow_bs(overlay_bs))
4262 {
4263 overlay_bs = below_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004264 }
4265
4266 /* If we want to replace the backing file we need some extra checks */
Max Reitz1d42f482019-06-12 17:24:39 +02004267 if (new_backing_bs != bdrv_filter_or_cow_bs(overlay_bs)) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004268 int ret;
4269
Alberto Garciacb828c32019-03-12 18:48:47 +02004270 /* Check for implicit nodes between bs and its backing file */
4271 if (bs != overlay_bs) {
4272 error_setg(errp, "Cannot change backing link if '%s' has "
4273 "an implicit backing file", bs->node_name);
4274 return -EPERM;
4275 }
Max Reitz1d42f482019-06-12 17:24:39 +02004276 /*
4277 * Check if the backing link that we want to replace is frozen.
4278 * Note that
4279 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4280 * because we know that overlay_bs == bs, and that @bs
4281 * either is a filter that uses ->backing or a COW format BDS
4282 * with bs->drv->supports_backing == true.
4283 */
4284 if (bdrv_is_backing_chain_frozen(overlay_bs,
4285 child_bs(overlay_bs->backing), errp))
4286 {
Alberto Garciacb828c32019-03-12 18:48:47 +02004287 return -EPERM;
4288 }
4289 reopen_state->replace_backing_bs = true;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004290 reopen_state->old_backing_bs = bs->backing ? bs->backing->bs : NULL;
4291 ret = bdrv_set_backing_noperm(bs, new_backing_bs, set_backings_tran,
4292 errp);
4293 if (ret < 0) {
4294 return ret;
Alberto Garciacb828c32019-03-12 18:48:47 +02004295 }
4296 }
4297
4298 return 0;
4299}
4300
4301/*
Jeff Codye971aa12012-09-20 15:13:19 -04004302 * Prepares a BlockDriverState for reopen. All changes are staged in the
4303 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4304 * the block driver layer .bdrv_reopen_prepare()
4305 *
4306 * bs is the BlockDriverState to reopen
4307 * flags are the new open flags
4308 * queue is the reopen queue
4309 *
4310 * Returns 0 on success, non-zero on error. On error errp will be set
4311 * as well.
4312 *
4313 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4314 * It is the responsibility of the caller to then call the abort() or
4315 * commit() for any other BDS that have been left in a prepare() state
4316 *
4317 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004318static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004319 BlockReopenQueue *queue,
4320 Transaction *set_backings_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004321{
4322 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004323 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004324 Error *local_err = NULL;
4325 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004326 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004327 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004328 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004329 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004330 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004331
4332 assert(reopen_state != NULL);
4333 assert(reopen_state->bs->drv != NULL);
4334 drv = reopen_state->bs->drv;
4335
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004336 /* This function and each driver's bdrv_reopen_prepare() remove
4337 * entries from reopen_state->options as they are processed, so
4338 * we need to make a copy of the original QDict. */
4339 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4340
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004341 /* Process generic block layer options */
4342 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004343 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004344 ret = -EINVAL;
4345 goto error;
4346 }
4347
Alberto Garciae6d79c42018-11-12 16:00:47 +02004348 /* This was already called in bdrv_reopen_queue_child() so the flags
4349 * are up-to-date. This time we simply want to remove the options from
4350 * QemuOpts in order to indicate that they have been processed. */
4351 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004352 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004353 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004354
Alberto Garcia415bbca2018-10-03 13:23:13 +03004355 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004356 if (discard != NULL) {
4357 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4358 error_setg(errp, "Invalid discard option");
4359 ret = -EINVAL;
4360 goto error;
4361 }
4362 }
4363
Alberto Garcia543770b2018-09-06 12:37:09 +03004364 reopen_state->detect_zeroes =
4365 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4366 if (local_err) {
4367 error_propagate(errp, local_err);
4368 ret = -EINVAL;
4369 goto error;
4370 }
4371
Alberto Garcia57f9db92018-09-06 12:37:06 +03004372 /* All other options (including node-name and driver) must be unchanged.
4373 * Put them back into the QDict, so that they are checked at the end
4374 * of this function. */
4375 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004376
Jeff Cody3d8ce172017-04-07 16:55:30 -04004377 /* If we are to stay read-only, do not allow permission change
4378 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4379 * not set, or if the BDS still has copy_on_read enabled */
4380 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004381 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004382 if (local_err) {
4383 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004384 goto error;
4385 }
4386
Jeff Codye971aa12012-09-20 15:13:19 -04004387 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004388 /*
4389 * If a driver-specific option is missing, it means that we
4390 * should reset it to its default value.
4391 * But not all options allow that, so we need to check it first.
4392 */
4393 ret = bdrv_reset_options_allowed(reopen_state->bs,
4394 reopen_state->options, errp);
4395 if (ret) {
4396 goto error;
4397 }
4398
Jeff Codye971aa12012-09-20 15:13:19 -04004399 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4400 if (ret) {
4401 if (local_err != NULL) {
4402 error_propagate(errp, local_err);
4403 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004404 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004405 error_setg(errp, "failed while preparing to reopen image '%s'",
4406 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004407 }
4408 goto error;
4409 }
4410 } else {
4411 /* It is currently mandatory to have a bdrv_reopen_prepare()
4412 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004413 error_setg(errp, "Block format '%s' used by node '%s' "
4414 "does not support reopening files", drv->format_name,
4415 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004416 ret = -1;
4417 goto error;
4418 }
4419
Max Reitz9ad08c42018-11-16 17:45:24 +01004420 drv_prepared = true;
4421
Alberto Garciabacd9b82019-03-12 18:48:46 +02004422 /*
4423 * We must provide the 'backing' option if the BDS has a backing
4424 * file or if the image file has a backing file name as part of
4425 * its metadata. Otherwise the 'backing' option can be omitted.
4426 */
4427 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004428 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004429 error_setg(errp, "backing is missing for '%s'",
4430 reopen_state->bs->node_name);
4431 ret = -EINVAL;
4432 goto error;
4433 }
4434
Alberto Garciacb828c32019-03-12 18:48:47 +02004435 /*
4436 * Allow changing the 'backing' option. The new value can be
4437 * either a reference to an existing node (using its node name)
4438 * or NULL to simply detach the current backing file.
4439 */
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004440 ret = bdrv_reopen_parse_backing(reopen_state, set_backings_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004441 if (ret < 0) {
4442 goto error;
4443 }
4444 qdict_del(reopen_state->options, "backing");
4445
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004446 /* Options that are not handled are only okay if they are unchanged
4447 * compared to the old state. It is expected that some options are only
4448 * used for the initial open, but not reopen (e.g. filename) */
4449 if (qdict_size(reopen_state->options)) {
4450 const QDictEntry *entry = qdict_first(reopen_state->options);
4451
4452 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004453 QObject *new = entry->value;
4454 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004455
Alberto Garciadb905282018-09-06 12:37:05 +03004456 /* Allow child references (child_name=node_name) as long as they
4457 * point to the current child (i.e. everything stays the same). */
4458 if (qobject_type(new) == QTYPE_QSTRING) {
4459 BdrvChild *child;
4460 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4461 if (!strcmp(child->name, entry->key)) {
4462 break;
4463 }
4464 }
4465
4466 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004467 if (!strcmp(child->bs->node_name,
4468 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004469 continue; /* Found child with this name, skip option */
4470 }
4471 }
4472 }
4473
Max Reitz54fd1b02017-11-14 19:01:26 +01004474 /*
4475 * TODO: When using -drive to specify blockdev options, all values
4476 * will be strings; however, when using -blockdev, blockdev-add or
4477 * filenames using the json:{} pseudo-protocol, they will be
4478 * correctly typed.
4479 * In contrast, reopening options are (currently) always strings
4480 * (because you can only specify them through qemu-io; all other
4481 * callers do not specify any options).
4482 * Therefore, when using anything other than -drive to create a BDS,
4483 * this cannot detect non-string options as unchanged, because
4484 * qobject_is_equal() always returns false for objects of different
4485 * type. In the future, this should be remedied by correctly typing
4486 * all options. For now, this is not too big of an issue because
4487 * the user can simply omit options which cannot be changed anyway,
4488 * so they will stay unchanged.
4489 */
4490 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004491 error_setg(errp, "Cannot change the option '%s'", entry->key);
4492 ret = -EINVAL;
4493 goto error;
4494 }
4495 } while ((entry = qdict_next(reopen_state->options, entry)));
4496 }
4497
Jeff Codye971aa12012-09-20 15:13:19 -04004498 ret = 0;
4499
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004500 /* Restore the original reopen_state->options QDict */
4501 qobject_unref(reopen_state->options);
4502 reopen_state->options = qobject_ref(orig_reopen_opts);
4503
Jeff Codye971aa12012-09-20 15:13:19 -04004504error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004505 if (ret < 0 && drv_prepared) {
4506 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4507 * call drv->bdrv_reopen_abort() before signaling an error
4508 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4509 * when the respective bdrv_reopen_prepare() has failed) */
4510 if (drv->bdrv_reopen_abort) {
4511 drv->bdrv_reopen_abort(reopen_state);
4512 }
4513 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004514 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004515 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004516 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004517 return ret;
4518}
4519
4520/*
4521 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4522 * makes them final by swapping the staging BlockDriverState contents into
4523 * the active BlockDriverState contents.
4524 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004525static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004526{
4527 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004528 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004529 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004530
4531 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004532 bs = reopen_state->bs;
4533 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004534 assert(drv != NULL);
4535
4536 /* If there are any driver level actions to take */
4537 if (drv->bdrv_reopen_commit) {
4538 drv->bdrv_reopen_commit(reopen_state);
4539 }
4540
4541 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004542 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004543 qobject_unref(bs->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004544
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004545 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004546 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004547 bs->open_flags = reopen_state->flags;
4548 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
Alberto Garcia543770b2018-09-06 12:37:09 +03004549 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004550
Alberto Garciacb828c32019-03-12 18:48:47 +02004551 if (reopen_state->replace_backing_bs) {
4552 qdict_del(bs->explicit_options, "backing");
4553 qdict_del(bs->options, "backing");
4554 }
4555
Alberto Garcia50196d72018-09-06 12:37:03 +03004556 /* Remove child references from bs->options and bs->explicit_options.
4557 * Child options were already removed in bdrv_reopen_queue_child() */
4558 QLIST_FOREACH(child, &bs->children, next) {
4559 qdict_del(bs->explicit_options, child->name);
4560 qdict_del(bs->options, child->name);
4561 }
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004562 bdrv_refresh_limits(bs, NULL, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004563}
4564
4565/*
4566 * Abort the reopen, and delete and free the staged changes in
4567 * reopen_state
4568 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004569static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004570{
4571 BlockDriver *drv;
4572
4573 assert(reopen_state != NULL);
4574 drv = reopen_state->bs->drv;
4575 assert(drv != NULL);
4576
4577 if (drv->bdrv_reopen_abort) {
4578 drv->bdrv_reopen_abort(reopen_state);
4579 }
4580}
4581
4582
Max Reitz64dff522016-01-29 16:36:10 +01004583static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004584{
Max Reitz33384422014-06-20 21:57:33 +02004585 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004586 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004587
Max Reitz30f55fb2016-05-17 16:41:32 +02004588 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004589
Paolo Bonzinifc272912015-12-23 11:48:24 +01004590 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004591 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004592 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004593
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004594 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004595 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004596 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004597 bs->drv->bdrv_close(bs);
4598 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004599 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004600 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004601
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004602 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004603 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004604 }
4605
Alberto Garciadd4118c2019-05-13 16:46:17 +03004606 bs->backing = NULL;
4607 bs->file = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004608 g_free(bs->opaque);
4609 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004610 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004611 bs->backing_file[0] = '\0';
4612 bs->backing_format[0] = '\0';
4613 bs->total_sectors = 0;
4614 bs->encrypted = false;
4615 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004616 qobject_unref(bs->options);
4617 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004618 bs->options = NULL;
4619 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004620 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004621 bs->full_open_options = NULL;
4622
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004623 bdrv_release_named_dirty_bitmaps(bs);
4624 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4625
Max Reitz33384422014-06-20 21:57:33 +02004626 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4627 g_free(ban);
4628 }
4629 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004630 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004631
4632 /*
4633 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4634 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4635 * gets called.
4636 */
4637 if (bs->quiesce_counter) {
4638 bdrv_drain_all_end_quiesce(bs);
4639 }
bellardb3380822004-03-14 21:38:54 +00004640}
4641
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004642void bdrv_close_all(void)
4643{
Kevin Wolfb3b52992018-05-16 13:46:37 +02004644 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004645
Max Reitzca9bd242016-01-29 16:36:14 +01004646 /* Drop references from requests still in flight, such as canceled block
4647 * jobs whose AIO context has not been polled yet */
4648 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004649
Max Reitzca9bd242016-01-29 16:36:14 +01004650 blk_remove_all_bs();
4651 blockdev_close_all_bdrv_states();
4652
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004653 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004654}
4655
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004656static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004657{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004658 GQueue *queue;
4659 GHashTable *found;
4660 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004661
Max Reitzbd86fb92020-05-13 13:05:13 +02004662 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004663 return false;
4664 }
4665
Max Reitzec9f10f2018-06-13 20:18:15 +02004666 /* If the child @c belongs to the BDS @to, replacing the current
4667 * c->bs by @to would mean to create a loop.
4668 *
4669 * Such a case occurs when appending a BDS to a backing chain.
4670 * For instance, imagine the following chain:
4671 *
4672 * guest device -> node A -> further backing chain...
4673 *
4674 * Now we create a new BDS B which we want to put on top of this
4675 * chain, so we first attach A as its backing node:
4676 *
4677 * node B
4678 * |
4679 * v
4680 * guest device -> node A -> further backing chain...
4681 *
4682 * Finally we want to replace A by B. When doing that, we want to
4683 * replace all pointers to A by pointers to B -- except for the
4684 * pointer from B because (1) that would create a loop, and (2)
4685 * that pointer should simply stay intact:
4686 *
4687 * guest device -> node B
4688 * |
4689 * v
4690 * node A -> further backing chain...
4691 *
4692 * In general, when replacing a node A (c->bs) by a node B (@to),
4693 * if A is a child of B, that means we cannot replace A by B there
4694 * because that would create a loop. Silently detaching A from B
4695 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004696 * place there is the most sensible choice.
4697 *
4698 * We would also create a loop in any cases where @c is only
4699 * indirectly referenced by @to. Prevent this by returning false
4700 * if @c is found (by breadth-first search) anywhere in the whole
4701 * subtree of @to.
4702 */
4703
4704 ret = true;
4705 found = g_hash_table_new(NULL, NULL);
4706 g_hash_table_add(found, to);
4707 queue = g_queue_new();
4708 g_queue_push_tail(queue, to);
4709
4710 while (!g_queue_is_empty(queue)) {
4711 BlockDriverState *v = g_queue_pop_head(queue);
4712 BdrvChild *c2;
4713
4714 QLIST_FOREACH(c2, &v->children, next) {
4715 if (c2 == c) {
4716 ret = false;
4717 break;
4718 }
4719
4720 if (g_hash_table_contains(found, c2->bs)) {
4721 continue;
4722 }
4723
4724 g_queue_push_tail(queue, c2->bs);
4725 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004726 }
4727 }
4728
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004729 g_queue_free(queue);
4730 g_hash_table_destroy(found);
4731
4732 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004733}
4734
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004735typedef struct BdrvRemoveFilterOrCowChild {
4736 BdrvChild *child;
4737 bool is_backing;
4738} BdrvRemoveFilterOrCowChild;
4739
4740static void bdrv_remove_filter_or_cow_child_abort(void *opaque)
4741{
4742 BdrvRemoveFilterOrCowChild *s = opaque;
4743 BlockDriverState *parent_bs = s->child->opaque;
4744
4745 QLIST_INSERT_HEAD(&parent_bs->children, s->child, next);
4746 if (s->is_backing) {
4747 parent_bs->backing = s->child;
4748 } else {
4749 parent_bs->file = s->child;
4750 }
4751
4752 /*
4753 * We don't have to restore child->bs here to undo bdrv_replace_child()
4754 * because that function is transactionable and it registered own completion
4755 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
4756 * called automatically.
4757 */
4758}
4759
4760static void bdrv_remove_filter_or_cow_child_commit(void *opaque)
4761{
4762 BdrvRemoveFilterOrCowChild *s = opaque;
4763
4764 bdrv_child_free(s->child);
4765}
4766
4767static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = {
4768 .abort = bdrv_remove_filter_or_cow_child_abort,
4769 .commit = bdrv_remove_filter_or_cow_child_commit,
4770 .clean = g_free,
4771};
4772
4773/*
4774 * A function to remove backing-chain child of @bs if exists: cow child for
4775 * format nodes (always .backing) and filter child for filters (may be .file or
4776 * .backing)
4777 */
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004778static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
4779 Transaction *tran)
4780{
4781 BdrvRemoveFilterOrCowChild *s;
4782 BdrvChild *child = bdrv_filter_or_cow_child(bs);
4783
4784 if (!child) {
4785 return;
4786 }
4787
4788 if (child->bs) {
Vladimir Sementsov-Ogievskiy2fe5ff52021-04-28 18:18:03 +03004789 bdrv_replace_child(child, NULL, tran);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004790 }
4791
4792 s = g_new(BdrvRemoveFilterOrCowChild, 1);
4793 *s = (BdrvRemoveFilterOrCowChild) {
4794 .child = child,
4795 .is_backing = (child == bs->backing),
4796 };
4797 tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
4798
4799 QLIST_SAFE_REMOVE(child, next);
4800 if (s->is_backing) {
4801 bs->backing = NULL;
4802 } else {
4803 bs->file = NULL;
4804 }
4805}
4806
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03004807static int bdrv_replace_node_noperm(BlockDriverState *from,
4808 BlockDriverState *to,
4809 bool auto_skip, Transaction *tran,
4810 Error **errp)
4811{
4812 BdrvChild *c, *next;
4813
4814 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
4815 assert(c->bs == from);
4816 if (!should_update_child(c, to)) {
4817 if (auto_skip) {
4818 continue;
4819 }
4820 error_setg(errp, "Should not change '%s' link to '%s'",
4821 c->name, from->node_name);
4822 return -EINVAL;
4823 }
4824 if (c->frozen) {
4825 error_setg(errp, "Cannot change '%s' link to '%s'",
4826 c->name, from->node_name);
4827 return -EPERM;
4828 }
Vladimir Sementsov-Ogievskiy2fe5ff52021-04-28 18:18:03 +03004829 bdrv_replace_child(c, to, tran);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03004830 }
4831
4832 return 0;
4833}
4834
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004835/*
4836 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4837 * if it creates a parent-child relation loop or if parent is block-job.
4838 *
4839 * With auto_skip=false the error is returned if from has a parent which should
4840 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004841 *
4842 * With @detach_subchain=true @to must be in a backing chain of @from. In this
4843 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004844 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004845static int bdrv_replace_node_common(BlockDriverState *from,
4846 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004847 bool auto_skip, bool detach_subchain,
4848 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004849{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004850 Transaction *tran = tran_new();
4851 g_autoptr(GHashTable) found = NULL;
4852 g_autoptr(GSList) refresh_list = NULL;
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004853 BlockDriverState *to_cow_parent;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004854 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004855
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004856 if (detach_subchain) {
4857 assert(bdrv_chain_contains(from, to));
4858 assert(from != to);
4859 for (to_cow_parent = from;
4860 bdrv_filter_or_cow_bs(to_cow_parent) != to;
4861 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
4862 {
4863 ;
4864 }
4865 }
4866
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004867 /* Make sure that @from doesn't go away until we have successfully attached
4868 * all of its parents to @to. */
4869 bdrv_ref(from);
4870
Kevin Wolff871abd2019-05-21 19:00:25 +02004871 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01004872 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02004873 bdrv_drained_begin(from);
4874
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004875 /*
4876 * Do the replacement without permission update.
4877 * Replacement may influence the permissions, we should calculate new
4878 * permissions based on new graph. If we fail, we'll roll-back the
4879 * replacement.
4880 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03004881 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
4882 if (ret < 0) {
4883 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004884 }
4885
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004886 if (detach_subchain) {
4887 bdrv_remove_filter_or_cow_child(to_cow_parent, tran);
4888 }
4889
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004890 found = g_hash_table_new(NULL, NULL);
4891
4892 refresh_list = bdrv_topological_dfs(refresh_list, found, to);
4893 refresh_list = bdrv_topological_dfs(refresh_list, found, from);
4894
4895 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004896 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004897 goto out;
4898 }
4899
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004900 ret = 0;
4901
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004902out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004903 tran_finalize(tran, ret);
4904
Kevin Wolff871abd2019-05-21 19:00:25 +02004905 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004906 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004907
4908 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004909}
4910
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004911int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
4912 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004913{
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004914 return bdrv_replace_node_common(from, to, true, false, errp);
4915}
4916
4917int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
4918{
4919 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
4920 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004921}
4922
Jeff Cody8802d1f2012-02-28 15:54:06 -05004923/*
4924 * Add new bs contents at the top of an image chain while the chain is
4925 * live, while keeping required fields on the top layer.
4926 *
4927 * This will modify the BlockDriverState fields, and swap contents
4928 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4929 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004930 * bs_new must not be attached to a BlockBackend and must not have backing
4931 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04004932 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05004933 * This function does not create any image files.
4934 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004935int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
4936 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05004937{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004938 int ret;
4939 Transaction *tran = tran_new();
4940
4941 assert(!bs_new->backing);
4942
4943 ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
4944 &child_of_bds, bdrv_backing_role(bs_new),
4945 &bs_new->backing, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004946 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004947 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01004948 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004949
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004950 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004951 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004952 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004953 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004954
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004955 ret = bdrv_refresh_perms(bs_new, errp);
4956out:
4957 tran_finalize(tran, ret);
4958
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004959 bdrv_refresh_limits(bs_top, NULL, NULL);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004960
4961 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05004962}
4963
Fam Zheng4f6fd342013-08-23 09:14:47 +08004964static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00004965{
Fam Zheng3718d8a2014-05-23 21:29:43 +08004966 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08004967 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02004968
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01004969 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01004970 if (bs->node_name[0] != '\0') {
4971 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
4972 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01004973 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
4974
Anton Kuchin30c321f2019-05-07 11:12:56 +03004975 bdrv_close(bs);
4976
Anthony Liguori7267c092011-08-20 22:09:37 -05004977 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00004978}
4979
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03004980BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *node_options,
4981 int flags, Error **errp)
4982{
4983 BlockDriverState *new_node_bs;
4984 Error *local_err = NULL;
4985
4986 new_node_bs = bdrv_open(NULL, NULL, node_options, flags, errp);
4987 if (new_node_bs == NULL) {
4988 error_prepend(errp, "Could not create node: ");
4989 return NULL;
4990 }
4991
4992 bdrv_drained_begin(bs);
4993 bdrv_replace_node(bs, new_node_bs, &local_err);
4994 bdrv_drained_end(bs);
4995
4996 if (local_err) {
4997 bdrv_unref(new_node_bs);
4998 error_propagate(errp, local_err);
4999 return NULL;
5000 }
5001
5002 return new_node_bs;
5003}
5004
aliguorie97fc192009-04-21 23:11:50 +00005005/*
5006 * Run consistency checks on an image
5007 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005008 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005009 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005010 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005011 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005012int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5013 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005014{
Max Reitz908bcd52014-08-07 22:47:55 +02005015 if (bs->drv == NULL) {
5016 return -ENOMEDIUM;
5017 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005018 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005019 return -ENOTSUP;
5020 }
5021
Kevin Wolfe076f332010-06-29 11:43:13 +02005022 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005023 return bs->drv->bdrv_co_check(bs, res, fix);
5024}
5025
Kevin Wolf756e6732010-01-12 12:55:17 +01005026/*
5027 * Return values:
5028 * 0 - success
5029 * -EINVAL - backing format specified, but no file
5030 * -ENOSPC - can't update the backing file because no space is left in the
5031 * image file header
5032 * -ENOTSUP - format driver doesn't support changing the backing file
5033 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005034int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
5035 const char *backing_fmt, bool warn)
Kevin Wolf756e6732010-01-12 12:55:17 +01005036{
5037 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005038 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005039
Max Reitzd470ad42017-11-10 21:31:09 +01005040 if (!drv) {
5041 return -ENOMEDIUM;
5042 }
5043
Paolo Bonzini5f377792012-04-12 14:01:01 +02005044 /* Backing file format doesn't make sense without a backing file */
5045 if (backing_fmt && !backing_file) {
5046 return -EINVAL;
5047 }
5048
Eric Blakee54ee1b2020-07-06 15:39:53 -05005049 if (warn && backing_file && !backing_fmt) {
5050 warn_report("Deprecated use of backing file without explicit "
5051 "backing format, use of this image requires "
5052 "potentially unsafe format probing");
5053 }
5054
Kevin Wolf756e6732010-01-12 12:55:17 +01005055 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005056 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005057 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005058 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005059 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005060
5061 if (ret == 0) {
5062 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5063 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005064 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5065 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005066 }
5067 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005068}
5069
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005070/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005071 * Finds the first non-filter node above bs in the chain between
5072 * active and bs. The returned node is either an immediate parent of
5073 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005074 *
5075 * Returns NULL if bs is not found in active's image chain,
5076 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005077 *
5078 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005079 */
5080BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5081 BlockDriverState *bs)
5082{
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005083 bs = bdrv_skip_filters(bs);
5084 active = bdrv_skip_filters(active);
5085
5086 while (active) {
5087 BlockDriverState *next = bdrv_backing_chain_next(active);
5088 if (bs == next) {
5089 return active;
5090 }
5091 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005092 }
5093
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005094 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005095}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005096
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005097/* Given a BDS, searches for the base layer. */
5098BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5099{
5100 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005101}
5102
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005103/*
Max Reitz7b99a262019-06-12 16:07:11 +02005104 * Return true if at least one of the COW (backing) and filter links
5105 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005106 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005107 */
5108bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5109 Error **errp)
5110{
5111 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005112 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005113
Max Reitz7b99a262019-06-12 16:07:11 +02005114 for (i = bs; i != base; i = child_bs(child)) {
5115 child = bdrv_filter_or_cow_child(i);
5116
5117 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005118 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005119 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005120 return true;
5121 }
5122 }
5123
5124 return false;
5125}
5126
5127/*
Max Reitz7b99a262019-06-12 16:07:11 +02005128 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005129 * If any of the links is already frozen the operation is aborted and
5130 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005131 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005132 * Returns 0 on success. On failure returns < 0 and sets @errp.
5133 */
5134int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5135 Error **errp)
5136{
5137 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005138 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005139
5140 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5141 return -EPERM;
5142 }
5143
Max Reitz7b99a262019-06-12 16:07:11 +02005144 for (i = bs; i != base; i = child_bs(child)) {
5145 child = bdrv_filter_or_cow_child(i);
5146 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005147 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005148 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005149 return -EPERM;
5150 }
5151 }
5152
Max Reitz7b99a262019-06-12 16:07:11 +02005153 for (i = bs; i != base; i = child_bs(child)) {
5154 child = bdrv_filter_or_cow_child(i);
5155 if (child) {
5156 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005157 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005158 }
5159
5160 return 0;
5161}
5162
5163/*
Max Reitz7b99a262019-06-12 16:07:11 +02005164 * Unfreeze all COW (backing) and filter links between @bs and @base.
5165 * The caller must ensure that all links are frozen before using this
5166 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005167 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005168 */
5169void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5170{
5171 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005172 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005173
Max Reitz7b99a262019-06-12 16:07:11 +02005174 for (i = bs; i != base; i = child_bs(child)) {
5175 child = bdrv_filter_or_cow_child(i);
5176 if (child) {
5177 assert(child->frozen);
5178 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005179 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005180 }
5181}
5182
5183/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005184 * Drops images above 'base' up to and including 'top', and sets the image
5185 * above 'top' to have base as its backing file.
5186 *
5187 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5188 * information in 'bs' can be properly updated.
5189 *
5190 * E.g., this will convert the following chain:
5191 * bottom <- base <- intermediate <- top <- active
5192 *
5193 * to
5194 *
5195 * bottom <- base <- active
5196 *
5197 * It is allowed for bottom==base, in which case it converts:
5198 *
5199 * base <- intermediate <- top <- active
5200 *
5201 * to
5202 *
5203 * base <- active
5204 *
Jeff Cody54e26902014-06-25 15:40:10 -04005205 * If backing_file_str is non-NULL, it will be used when modifying top's
5206 * overlay image metadata.
5207 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005208 * Error conditions:
5209 * if active == top, that is considered an error
5210 *
5211 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005212int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5213 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005214{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005215 BlockDriverState *explicit_top = top;
5216 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005217 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005218 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005219 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005220 g_autoptr(GSList) updated_children = NULL;
5221 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005222
Kevin Wolf6858eba2017-06-29 19:32:21 +02005223 bdrv_ref(top);
Max Reitz637d54a2019-07-22 15:33:43 +02005224 bdrv_subtree_drained_begin(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005225
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005226 if (!top->drv || !base->drv) {
5227 goto exit;
5228 }
5229
Kevin Wolf5db15a52015-09-14 15:33:33 +02005230 /* Make sure that base is in the backing chain of top */
5231 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005232 goto exit;
5233 }
5234
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005235 /* If 'base' recursively inherits from 'top' then we should set
5236 * base->inherits_from to top->inherits_from after 'top' and all
5237 * other intermediate nodes have been dropped.
5238 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5239 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005240 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005241 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5242
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005243 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02005244 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
5245 * we've figured out how they should work. */
Max Reitzf30c66b2019-02-01 20:29:05 +01005246 if (!backing_file_str) {
5247 bdrv_refresh_filename(base);
5248 backing_file_str = base->filename;
5249 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005250
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005251 QLIST_FOREACH(c, &top->parents, next_parent) {
5252 updated_children = g_slist_prepend(updated_children, c);
5253 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005254
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005255 /*
5256 * It seems correct to pass detach_subchain=true here, but it triggers
5257 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5258 * another drained section, which modify the graph (for example, removing
5259 * the child, which we keep in updated_children list). So, it's a TODO.
5260 *
5261 * Note, bug triggered if pass detach_subchain=true here and run
5262 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5263 * That's a FIXME.
5264 */
5265 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005266 if (local_err) {
5267 error_report_err(local_err);
5268 goto exit;
5269 }
5270
5271 for (p = updated_children; p; p = p->next) {
5272 c = p->data;
5273
Max Reitzbd86fb92020-05-13 13:05:13 +02005274 if (c->klass->update_filename) {
5275 ret = c->klass->update_filename(c, base, backing_file_str,
5276 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005277 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005278 /*
5279 * TODO: Actually, we want to rollback all previous iterations
5280 * of this loop, and (which is almost impossible) previous
5281 * bdrv_replace_node()...
5282 *
5283 * Note, that c->klass->update_filename may lead to permission
5284 * update, so it's a bad idea to call it inside permission
5285 * update transaction of bdrv_replace_node.
5286 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005287 error_report_err(local_err);
5288 goto exit;
5289 }
5290 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005291 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005292
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005293 if (update_inherits_from) {
5294 base->inherits_from = explicit_top->inherits_from;
5295 }
5296
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005297 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005298exit:
Max Reitz637d54a2019-07-22 15:33:43 +02005299 bdrv_subtree_drained_end(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005300 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005301 return ret;
5302}
5303
bellard83f64092006-08-01 16:21:11 +00005304/**
Max Reitz081e4652019-06-12 18:14:13 +02005305 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5306 * sums the size of all data-bearing children. (This excludes backing
5307 * children.)
5308 */
5309static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5310{
5311 BdrvChild *child;
5312 int64_t child_size, sum = 0;
5313
5314 QLIST_FOREACH(child, &bs->children, next) {
5315 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5316 BDRV_CHILD_FILTERED))
5317 {
5318 child_size = bdrv_get_allocated_file_size(child->bs);
5319 if (child_size < 0) {
5320 return child_size;
5321 }
5322 sum += child_size;
5323 }
5324 }
5325
5326 return sum;
5327}
5328
5329/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005330 * Length of a allocated file in bytes. Sparse files are counted by actual
5331 * allocated space. Return < 0 if error or unknown.
5332 */
5333int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5334{
5335 BlockDriver *drv = bs->drv;
5336 if (!drv) {
5337 return -ENOMEDIUM;
5338 }
5339 if (drv->bdrv_get_allocated_file_size) {
5340 return drv->bdrv_get_allocated_file_size(bs);
5341 }
Max Reitz081e4652019-06-12 18:14:13 +02005342
5343 if (drv->bdrv_file_open) {
5344 /*
5345 * Protocol drivers default to -ENOTSUP (most of their data is
5346 * not stored in any of their children (if they even have any),
5347 * so there is no generic way to figure it out).
5348 */
5349 return -ENOTSUP;
5350 } else if (drv->is_filter) {
5351 /* Filter drivers default to the size of their filtered child */
5352 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5353 } else {
5354 /* Other drivers default to summing their children's sizes */
5355 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005356 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005357}
5358
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005359/*
5360 * bdrv_measure:
5361 * @drv: Format driver
5362 * @opts: Creation options for new image
5363 * @in_bs: Existing image containing data for new image (may be NULL)
5364 * @errp: Error object
5365 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5366 * or NULL on error
5367 *
5368 * Calculate file size required to create a new image.
5369 *
5370 * If @in_bs is given then space for allocated clusters and zero clusters
5371 * from that image are included in the calculation. If @opts contains a
5372 * backing file that is shared by @in_bs then backing clusters may be omitted
5373 * from the calculation.
5374 *
5375 * If @in_bs is NULL then the calculation includes no allocated clusters
5376 * unless a preallocation option is given in @opts.
5377 *
5378 * Note that @in_bs may use a different BlockDriver from @drv.
5379 *
5380 * If an error occurs the @errp pointer is set.
5381 */
5382BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5383 BlockDriverState *in_bs, Error **errp)
5384{
5385 if (!drv->bdrv_measure) {
5386 error_setg(errp, "Block driver '%s' does not support size measurement",
5387 drv->format_name);
5388 return NULL;
5389 }
5390
5391 return drv->bdrv_measure(opts, in_bs, errp);
5392}
5393
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005394/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005395 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005396 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005397int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005398{
5399 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005400
bellard83f64092006-08-01 16:21:11 +00005401 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005402 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005403
Kevin Wolfb94a2612013-10-29 12:18:58 +01005404 if (drv->has_variable_length) {
5405 int ret = refresh_total_sectors(bs, bs->total_sectors);
5406 if (ret < 0) {
5407 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005408 }
bellard83f64092006-08-01 16:21:11 +00005409 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005410 return bs->total_sectors;
5411}
5412
5413/**
5414 * Return length in bytes on success, -errno on error.
5415 * The length is always a multiple of BDRV_SECTOR_SIZE.
5416 */
5417int64_t bdrv_getlength(BlockDriverState *bs)
5418{
5419 int64_t ret = bdrv_nb_sectors(bs);
5420
Eric Blake122860b2020-11-05 09:51:22 -06005421 if (ret < 0) {
5422 return ret;
5423 }
5424 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5425 return -EFBIG;
5426 }
5427 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005428}
5429
bellard19cb3732006-08-19 11:45:59 +00005430/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005431void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005432{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005433 int64_t nb_sectors = bdrv_nb_sectors(bs);
5434
5435 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005436}
bellardcf989512004-02-16 21:56:36 +00005437
Eric Blake54115412016-06-23 16:37:26 -06005438bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005439{
5440 return bs->sg;
5441}
5442
Max Reitzae23f782019-06-12 22:57:15 +02005443/**
5444 * Return whether the given node supports compressed writes.
5445 */
5446bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5447{
5448 BlockDriverState *filtered;
5449
5450 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5451 return false;
5452 }
5453
5454 filtered = bdrv_filter_bs(bs);
5455 if (filtered) {
5456 /*
5457 * Filters can only forward compressed writes, so we have to
5458 * check the child.
5459 */
5460 return bdrv_supports_compressed_writes(filtered);
5461 }
5462
5463 return true;
5464}
5465
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005466const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005467{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005468 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005469}
5470
Stefan Hajnocziada42402014-08-27 12:08:55 +01005471static int qsort_strcmp(const void *a, const void *b)
5472{
Max Reitzceff5bd2016-10-12 22:49:05 +02005473 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005474}
5475
ths5fafdf22007-09-16 21:08:06 +00005476void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005477 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005478{
5479 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005480 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005481 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005482 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005483
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005484 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005485 if (drv->format_name) {
5486 bool found = false;
5487 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005488
5489 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5490 continue;
5491 }
5492
Jeff Codye855e4f2014-04-28 18:29:54 -04005493 while (formats && i && !found) {
5494 found = !strcmp(formats[--i], drv->format_name);
5495 }
5496
5497 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005498 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005499 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005500 }
5501 }
bellardea2384d2004-08-01 21:59:26 +00005502 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005503
Max Reitzeb0df692016-10-12 22:49:06 +02005504 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5505 const char *format_name = block_driver_modules[i].format_name;
5506
5507 if (format_name) {
5508 bool found = false;
5509 int j = count;
5510
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005511 if (use_bdrv_whitelist &&
5512 !bdrv_format_is_whitelisted(format_name, read_only)) {
5513 continue;
5514 }
5515
Max Reitzeb0df692016-10-12 22:49:06 +02005516 while (formats && j && !found) {
5517 found = !strcmp(formats[--j], format_name);
5518 }
5519
5520 if (!found) {
5521 formats = g_renew(const char *, formats, count + 1);
5522 formats[count++] = format_name;
5523 }
5524 }
5525 }
5526
Stefan Hajnocziada42402014-08-27 12:08:55 +01005527 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5528
5529 for (i = 0; i < count; i++) {
5530 it(opaque, formats[i]);
5531 }
5532
Jeff Codye855e4f2014-04-28 18:29:54 -04005533 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005534}
5535
Benoît Canetdc364f42014-01-23 21:31:32 +01005536/* This function is to find a node in the bs graph */
5537BlockDriverState *bdrv_find_node(const char *node_name)
5538{
5539 BlockDriverState *bs;
5540
5541 assert(node_name);
5542
5543 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5544 if (!strcmp(node_name, bs->node_name)) {
5545 return bs;
5546 }
5547 }
5548 return NULL;
5549}
5550
Benoît Canetc13163f2014-01-23 21:31:34 +01005551/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01005552BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5553 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01005554{
Eric Blake9812e712020-10-27 00:05:47 -05005555 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01005556 BlockDriverState *bs;
5557
5558 list = NULL;
5559 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01005560 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03005561 if (!info) {
5562 qapi_free_BlockDeviceInfoList(list);
5563 return NULL;
5564 }
Eric Blake9812e712020-10-27 00:05:47 -05005565 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01005566 }
5567
5568 return list;
5569}
5570
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005571typedef struct XDbgBlockGraphConstructor {
5572 XDbgBlockGraph *graph;
5573 GHashTable *graph_nodes;
5574} XDbgBlockGraphConstructor;
5575
5576static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5577{
5578 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5579
5580 gr->graph = g_new0(XDbgBlockGraph, 1);
5581 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5582
5583 return gr;
5584}
5585
5586static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5587{
5588 XDbgBlockGraph *graph = gr->graph;
5589
5590 g_hash_table_destroy(gr->graph_nodes);
5591 g_free(gr);
5592
5593 return graph;
5594}
5595
5596static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5597{
5598 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5599
5600 if (ret != 0) {
5601 return ret;
5602 }
5603
5604 /*
5605 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5606 * answer of g_hash_table_lookup.
5607 */
5608 ret = g_hash_table_size(gr->graph_nodes) + 1;
5609 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5610
5611 return ret;
5612}
5613
5614static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5615 XDbgBlockGraphNodeType type, const char *name)
5616{
5617 XDbgBlockGraphNode *n;
5618
5619 n = g_new0(XDbgBlockGraphNode, 1);
5620
5621 n->id = xdbg_graph_node_num(gr, node);
5622 n->type = type;
5623 n->name = g_strdup(name);
5624
Eric Blake9812e712020-10-27 00:05:47 -05005625 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005626}
5627
5628static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5629 const BdrvChild *child)
5630{
Max Reitzcdb1cec2019-11-08 13:34:52 +01005631 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005632 XDbgBlockGraphEdge *edge;
5633
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005634 edge = g_new0(XDbgBlockGraphEdge, 1);
5635
5636 edge->parent = xdbg_graph_node_num(gr, parent);
5637 edge->child = xdbg_graph_node_num(gr, child->bs);
5638 edge->name = g_strdup(child->name);
5639
Max Reitzcdb1cec2019-11-08 13:34:52 +01005640 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5641 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5642
5643 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005644 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005645 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01005646 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005647 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005648 }
5649 }
5650
Eric Blake9812e712020-10-27 00:05:47 -05005651 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005652}
5653
5654
5655XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5656{
5657 BlockBackend *blk;
5658 BlockJob *job;
5659 BlockDriverState *bs;
5660 BdrvChild *child;
5661 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5662
5663 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5664 char *allocated_name = NULL;
5665 const char *name = blk_name(blk);
5666
5667 if (!*name) {
5668 name = allocated_name = blk_get_attached_dev_id(blk);
5669 }
5670 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5671 name);
5672 g_free(allocated_name);
5673 if (blk_root(blk)) {
5674 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5675 }
5676 }
5677
5678 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5679 GSList *el;
5680
5681 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5682 job->job.id);
5683 for (el = job->nodes; el; el = el->next) {
5684 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5685 }
5686 }
5687
5688 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5689 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5690 bs->node_name);
5691 QLIST_FOREACH(child, &bs->children, next) {
5692 xdbg_graph_add_edge(gr, bs, child);
5693 }
5694 }
5695
5696 return xdbg_graph_finalize(gr);
5697}
5698
Benoît Canet12d3ba82014-01-23 21:31:35 +01005699BlockDriverState *bdrv_lookup_bs(const char *device,
5700 const char *node_name,
5701 Error **errp)
5702{
Markus Armbruster7f06d472014-10-07 13:59:12 +02005703 BlockBackend *blk;
5704 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005705
Benoît Canet12d3ba82014-01-23 21:31:35 +01005706 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02005707 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005708
Markus Armbruster7f06d472014-10-07 13:59:12 +02005709 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005710 bs = blk_bs(blk);
5711 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02005712 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02005713 }
5714
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005715 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005716 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005717 }
5718
Benoît Canetdd67fa52014-02-12 17:15:06 +01005719 if (node_name) {
5720 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005721
Benoît Canetdd67fa52014-02-12 17:15:06 +01005722 if (bs) {
5723 return bs;
5724 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005725 }
5726
Connor Kuehl785ec4b2021-03-05 09:19:28 -06005727 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01005728 device ? device : "",
5729 node_name ? node_name : "");
5730 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005731}
5732
Jeff Cody5a6684d2014-06-25 15:40:09 -04005733/* If 'base' is in the same chain as 'top', return true. Otherwise,
5734 * return false. If either argument is NULL, return false. */
5735bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5736{
5737 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005738 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04005739 }
5740
5741 return top != NULL;
5742}
5743
Fam Zheng04df7652014-10-31 11:32:54 +08005744BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5745{
5746 if (!bs) {
5747 return QTAILQ_FIRST(&graph_bdrv_states);
5748 }
5749 return QTAILQ_NEXT(bs, node_list);
5750}
5751
Kevin Wolf0f122642018-03-28 18:29:18 +02005752BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5753{
5754 if (!bs) {
5755 return QTAILQ_FIRST(&all_bdrv_states);
5756 }
5757 return QTAILQ_NEXT(bs, bs_list);
5758}
5759
Fam Zheng20a9e772014-10-31 11:32:55 +08005760const char *bdrv_get_node_name(const BlockDriverState *bs)
5761{
5762 return bs->node_name;
5763}
5764
Kevin Wolf1f0c4612016-03-22 18:38:44 +01005765const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005766{
5767 BdrvChild *c;
5768 const char *name;
5769
5770 /* If multiple parents have a name, just pick the first one. */
5771 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005772 if (c->klass->get_name) {
5773 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005774 if (name && *name) {
5775 return name;
5776 }
5777 }
5778 }
5779
5780 return NULL;
5781}
5782
Markus Armbruster7f06d472014-10-07 13:59:12 +02005783/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02005784const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005785{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005786 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00005787}
5788
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005789/* This can be used to identify nodes that might not have a device
5790 * name associated. Since node and device names live in the same
5791 * namespace, the result is unambiguous. The exception is if both are
5792 * absent, then this returns an empty (non-null) string. */
5793const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5794{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005795 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005796}
5797
Markus Armbrusterc8433282012-06-05 16:49:24 +02005798int bdrv_get_flags(BlockDriverState *bs)
5799{
5800 return bs->open_flags;
5801}
5802
Peter Lieven3ac21622013-06-28 12:47:42 +02005803int bdrv_has_zero_init_1(BlockDriverState *bs)
5804{
5805 return 1;
5806}
5807
Kevin Wolff2feebb2010-04-14 17:30:35 +02005808int bdrv_has_zero_init(BlockDriverState *bs)
5809{
Max Reitz93393e62019-06-12 17:03:38 +02005810 BlockDriverState *filtered;
5811
Max Reitzd470ad42017-11-10 21:31:09 +01005812 if (!bs->drv) {
5813 return 0;
5814 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005815
Paolo Bonzini11212d82013-09-04 19:00:27 +02005816 /* If BS is a copy on write image, it is initialized to
5817 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02005818 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02005819 return 0;
5820 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02005821 if (bs->drv->bdrv_has_zero_init) {
5822 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02005823 }
Max Reitz93393e62019-06-12 17:03:38 +02005824
5825 filtered = bdrv_filter_bs(bs);
5826 if (filtered) {
5827 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005828 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005829
Peter Lieven3ac21622013-06-28 12:47:42 +02005830 /* safe default */
5831 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02005832}
5833
Peter Lieven4ce78692013-10-24 12:06:54 +02005834bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
5835{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03005836 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02005837 return false;
5838 }
5839
Eric Blakee24d8132018-01-26 13:34:39 -06005840 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02005841}
5842
ths5fafdf22007-09-16 21:08:06 +00005843void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00005844 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00005845{
Kevin Wolf3574c602011-10-26 11:02:11 +02005846 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00005847}
5848
bellardfaea38e2006-08-05 21:31:00 +00005849int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5850{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005851 int ret;
bellardfaea38e2006-08-05 21:31:00 +00005852 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005853 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5854 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00005855 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005856 }
5857 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02005858 BlockDriverState *filtered = bdrv_filter_bs(bs);
5859 if (filtered) {
5860 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005861 }
bellardfaea38e2006-08-05 21:31:00 +00005862 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005863 }
bellardfaea38e2006-08-05 21:31:00 +00005864 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005865 ret = drv->bdrv_get_info(bs, bdi);
5866 if (ret < 0) {
5867 return ret;
5868 }
5869
5870 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
5871 return -EINVAL;
5872 }
5873
5874 return 0;
bellardfaea38e2006-08-05 21:31:00 +00005875}
5876
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005877ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
5878 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02005879{
5880 BlockDriver *drv = bs->drv;
5881 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005882 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02005883 }
5884 return NULL;
5885}
5886
Anton Nefedovd9245592019-09-23 15:17:37 +03005887BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
5888{
5889 BlockDriver *drv = bs->drv;
5890 if (!drv || !drv->bdrv_get_specific_stats) {
5891 return NULL;
5892 }
5893 return drv->bdrv_get_specific_stats(bs);
5894}
5895
Eric Blakea31939e2015-11-18 01:52:54 -07005896void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005897{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005898 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005899 return;
5900 }
5901
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005902 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005903}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005904
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005905static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01005906{
5907 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02005908 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005909 }
5910
5911 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005912 assert(bs->drv->bdrv_debug_remove_breakpoint);
5913 return bs;
5914 }
5915
5916 return NULL;
5917}
5918
5919int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
5920 const char *tag)
5921{
5922 bs = bdrv_find_debug_node(bs);
5923 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01005924 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
5925 }
5926
5927 return -ENOTSUP;
5928}
5929
Fam Zheng4cc70e92013-11-20 10:01:54 +08005930int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
5931{
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005932 bs = bdrv_find_debug_node(bs);
5933 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08005934 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
5935 }
5936
5937 return -ENOTSUP;
5938}
5939
Kevin Wolf41c695c2012-12-06 14:32:58 +01005940int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
5941{
Max Reitz938789e2014-03-10 23:44:08 +01005942 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02005943 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005944 }
5945
5946 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
5947 return bs->drv->bdrv_debug_resume(bs, tag);
5948 }
5949
5950 return -ENOTSUP;
5951}
5952
5953bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
5954{
5955 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02005956 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005957 }
5958
5959 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
5960 return bs->drv->bdrv_debug_is_suspended(bs, tag);
5961 }
5962
5963 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005964}
5965
Jeff Codyb1b1d782012-10-16 15:49:09 -04005966/* backing_file can either be relative, or absolute, or a protocol. If it is
5967 * relative, it must be relative to the chain. So, passing in bs->filename
5968 * from a BDS as backing_file should not be done, as that may be relative to
5969 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005970BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
5971 const char *backing_file)
5972{
Jeff Codyb1b1d782012-10-16 15:49:09 -04005973 char *filename_full = NULL;
5974 char *backing_file_full = NULL;
5975 char *filename_tmp = NULL;
5976 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02005977 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005978 BlockDriverState *curr_bs = NULL;
5979 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005980 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005981
5982 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005983 return NULL;
5984 }
5985
Jeff Codyb1b1d782012-10-16 15:49:09 -04005986 filename_full = g_malloc(PATH_MAX);
5987 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005988
5989 is_protocol = path_has_protocol(backing_file);
5990
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005991 /*
5992 * Being largely a legacy function, skip any filters here
5993 * (because filters do not have normal filenames, so they cannot
5994 * match anyway; and allowing json:{} filenames is a bit out of
5995 * scope).
5996 */
5997 for (curr_bs = bdrv_skip_filters(bs);
5998 bdrv_cow_child(curr_bs) != NULL;
5999 curr_bs = bs_below)
6000 {
6001 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006002
Max Reitz0b877d02018-08-01 20:34:11 +02006003 if (bdrv_backing_overridden(curr_bs)) {
6004 /*
6005 * If the backing file was overridden, we can only compare
6006 * directly against the backing node's filename.
6007 */
6008
6009 if (!filenames_refreshed) {
6010 /*
6011 * This will automatically refresh all of the
6012 * filenames in the rest of the backing chain, so we
6013 * only need to do this once.
6014 */
6015 bdrv_refresh_filename(bs_below);
6016 filenames_refreshed = true;
6017 }
6018
6019 if (strcmp(backing_file, bs_below->filename) == 0) {
6020 retval = bs_below;
6021 break;
6022 }
6023 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6024 /*
6025 * If either of the filename paths is actually a protocol, then
6026 * compare unmodified paths; otherwise make paths relative.
6027 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006028 char *backing_file_full_ret;
6029
Jeff Codyb1b1d782012-10-16 15:49:09 -04006030 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006031 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006032 break;
6033 }
Jeff Cody418661e2017-01-25 20:08:20 -05006034 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006035 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6036 NULL);
6037 if (backing_file_full_ret) {
6038 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6039 g_free(backing_file_full_ret);
6040 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006041 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006042 break;
6043 }
Jeff Cody418661e2017-01-25 20:08:20 -05006044 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006045 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006046 /* If not an absolute filename path, make it relative to the current
6047 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006048 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6049 NULL);
6050 /* We are going to compare canonicalized absolute pathnames */
6051 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6052 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006053 continue;
6054 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006055 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006056
6057 /* We need to make sure the backing filename we are comparing against
6058 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006059 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6060 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6061 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006062 continue;
6063 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006064 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006065
6066 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006067 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006068 break;
6069 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006070 }
6071 }
6072
Jeff Codyb1b1d782012-10-16 15:49:09 -04006073 g_free(filename_full);
6074 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006075 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006076}
6077
bellardea2384d2004-08-01 21:59:26 +00006078void bdrv_init(void)
6079{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006080 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006081}
pbrookce1a14d2006-08-07 02:38:06 +00006082
Markus Armbrustereb852012009-10-27 18:41:44 +01006083void bdrv_init_with_whitelist(void)
6084{
6085 use_bdrv_whitelist = 1;
6086 bdrv_init();
6087}
6088
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03006089int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006090{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006091 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006092 Error *local_err = NULL;
6093 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006094 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006095
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006096 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006097 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006098 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006099
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006100 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01006101 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006102 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006103 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006104 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006105 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006106 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006107
Kevin Wolfdafe0962017-11-16 13:00:01 +01006108 /*
6109 * Update permissions, they may differ for inactive nodes.
6110 *
6111 * Note that the required permissions of inactive images are always a
6112 * subset of the permissions required after activating the image. This
6113 * allows us to just get the permissions upfront without restricting
6114 * drv->bdrv_invalidate_cache().
6115 *
6116 * It also means that in error cases, we don't have to try and revert to
6117 * the old permissions (which is an operation that could fail, too). We can
6118 * just keep the extended permissions for the next time that an activation
6119 * of the image is tried.
6120 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006121 if (bs->open_flags & BDRV_O_INACTIVE) {
6122 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006123 ret = bdrv_refresh_perms(bs, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006124 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006125 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006126 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006127 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006128
Kevin Wolf7bb49412019-12-17 15:06:38 +01006129 if (bs->drv->bdrv_co_invalidate_cache) {
6130 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6131 if (local_err) {
6132 bs->open_flags |= BDRV_O_INACTIVE;
6133 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006134 return -EINVAL;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006135 }
6136 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006137
Kevin Wolf7bb49412019-12-17 15:06:38 +01006138 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6139 bdrv_dirty_bitmap_skip_store(bm, false);
6140 }
6141
6142 ret = refresh_total_sectors(bs, bs->total_sectors);
6143 if (ret < 0) {
6144 bs->open_flags |= BDRV_O_INACTIVE;
6145 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006146 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006147 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006148 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006149
6150 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006151 if (parent->klass->activate) {
6152 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006153 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006154 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006155 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006156 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006157 }
6158 }
6159 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006160
6161 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006162}
6163
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006164void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006165{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006166 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006167 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006168
Kevin Wolf88be7b42016-05-20 18:49:07 +02006169 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006170 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006171 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006172
6173 aio_context_acquire(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006174 ret = bdrv_invalidate_cache(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006175 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006176 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006177 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006178 return;
6179 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006180 }
6181}
6182
Kevin Wolf9e372712018-11-23 15:11:14 +01006183static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6184{
6185 BdrvChild *parent;
6186
6187 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006188 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006189 BlockDriverState *parent_bs = parent->opaque;
6190 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6191 return true;
6192 }
6193 }
6194 }
6195
6196 return false;
6197}
6198
6199static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006200{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006201 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006202 int ret;
6203
Max Reitzd470ad42017-11-10 21:31:09 +01006204 if (!bs->drv) {
6205 return -ENOMEDIUM;
6206 }
6207
Kevin Wolf9e372712018-11-23 15:11:14 +01006208 /* Make sure that we don't inactivate a child before its parent.
6209 * It will be covered by recursion from the yet active parent. */
6210 if (bdrv_has_bds_parent(bs, true)) {
6211 return 0;
6212 }
6213
6214 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6215
6216 /* Inactivate this node */
6217 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006218 ret = bs->drv->bdrv_inactivate(bs);
6219 if (ret < 0) {
6220 return ret;
6221 }
6222 }
6223
Kevin Wolf9e372712018-11-23 15:11:14 +01006224 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006225 if (parent->klass->inactivate) {
6226 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01006227 if (ret < 0) {
6228 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006229 }
6230 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006231 }
Kevin Wolf38701b62017-05-04 18:52:39 +02006232
Kevin Wolf9e372712018-11-23 15:11:14 +01006233 bs->open_flags |= BDRV_O_INACTIVE;
6234
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03006235 /*
6236 * Update permissions, they may differ for inactive nodes.
6237 * We only tried to loosen restrictions, so errors are not fatal, ignore
6238 * them.
6239 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006240 bdrv_refresh_perms(bs, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01006241
6242 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02006243 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006244 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02006245 if (ret < 0) {
6246 return ret;
6247 }
6248 }
6249
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006250 return 0;
6251}
6252
6253int bdrv_inactivate_all(void)
6254{
Max Reitz79720af2016-03-16 19:54:44 +01006255 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006256 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006257 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006258 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006259
Kevin Wolf88be7b42016-05-20 18:49:07 +02006260 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006261 AioContext *aio_context = bdrv_get_aio_context(bs);
6262
6263 if (!g_slist_find(aio_ctxs, aio_context)) {
6264 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6265 aio_context_acquire(aio_context);
6266 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006267 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006268
Kevin Wolf9e372712018-11-23 15:11:14 +01006269 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6270 /* Nodes with BDS parents are covered by recursion from the last
6271 * parent that gets inactivated. Don't inactivate them a second
6272 * time if that has already happened. */
6273 if (bdrv_has_bds_parent(bs, false)) {
6274 continue;
6275 }
6276 ret = bdrv_inactivate_recurse(bs);
6277 if (ret < 0) {
6278 bdrv_next_cleanup(&it);
6279 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006280 }
6281 }
6282
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006283out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006284 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6285 AioContext *aio_context = ctx->data;
6286 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006287 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006288 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006289
6290 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006291}
6292
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006293/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006294/* removable device support */
6295
6296/**
6297 * Return TRUE if the media is present
6298 */
Max Reitze031f752015-10-19 17:53:11 +02006299bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006300{
6301 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006302 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006303
Max Reitze031f752015-10-19 17:53:11 +02006304 if (!drv) {
6305 return false;
6306 }
Max Reitz28d7a782015-10-19 17:53:13 +02006307 if (drv->bdrv_is_inserted) {
6308 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006309 }
Max Reitz28d7a782015-10-19 17:53:13 +02006310 QLIST_FOREACH(child, &bs->children, next) {
6311 if (!bdrv_is_inserted(child->bs)) {
6312 return false;
6313 }
6314 }
6315 return true;
bellard19cb3732006-08-19 11:45:59 +00006316}
6317
6318/**
bellard19cb3732006-08-19 11:45:59 +00006319 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6320 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006321void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006322{
6323 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00006324
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006325 if (drv && drv->bdrv_eject) {
6326 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006327 }
bellard19cb3732006-08-19 11:45:59 +00006328}
6329
bellard19cb3732006-08-19 11:45:59 +00006330/**
6331 * Lock or unlock the media (if it is locked, the user won't be able
6332 * to eject it manually).
6333 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006334void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006335{
6336 BlockDriver *drv = bs->drv;
6337
Markus Armbruster025e8492011-09-06 18:58:47 +02006338 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006339
Markus Armbruster025e8492011-09-06 18:58:47 +02006340 if (drv && drv->bdrv_lock_medium) {
6341 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006342 }
6343}
ths985a03b2007-12-24 16:10:43 +00006344
Fam Zheng9fcb0252013-08-23 09:14:46 +08006345/* Get a reference to bs */
6346void bdrv_ref(BlockDriverState *bs)
6347{
6348 bs->refcnt++;
6349}
6350
6351/* Release a previously grabbed reference to bs.
6352 * If after releasing, reference count is zero, the BlockDriverState is
6353 * deleted. */
6354void bdrv_unref(BlockDriverState *bs)
6355{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006356 if (!bs) {
6357 return;
6358 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006359 assert(bs->refcnt > 0);
6360 if (--bs->refcnt == 0) {
6361 bdrv_delete(bs);
6362 }
6363}
6364
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006365struct BdrvOpBlocker {
6366 Error *reason;
6367 QLIST_ENTRY(BdrvOpBlocker) list;
6368};
6369
6370bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6371{
6372 BdrvOpBlocker *blocker;
6373 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6374 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6375 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006376 error_propagate_prepend(errp, error_copy(blocker->reason),
6377 "Node '%s' is busy: ",
6378 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006379 return true;
6380 }
6381 return false;
6382}
6383
6384void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6385{
6386 BdrvOpBlocker *blocker;
6387 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6388
Markus Armbruster5839e532014-08-19 10:31:08 +02006389 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006390 blocker->reason = reason;
6391 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6392}
6393
6394void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6395{
6396 BdrvOpBlocker *blocker, *next;
6397 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6398 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6399 if (blocker->reason == reason) {
6400 QLIST_REMOVE(blocker, list);
6401 g_free(blocker);
6402 }
6403 }
6404}
6405
6406void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6407{
6408 int i;
6409 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6410 bdrv_op_block(bs, i, reason);
6411 }
6412}
6413
6414void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6415{
6416 int i;
6417 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6418 bdrv_op_unblock(bs, i, reason);
6419 }
6420}
6421
6422bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6423{
6424 int i;
6425
6426 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6427 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6428 return false;
6429 }
6430 }
6431 return true;
6432}
6433
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006434void bdrv_img_create(const char *filename, const char *fmt,
6435 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006436 char *options, uint64_t img_size, int flags, bool quiet,
6437 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006438{
Chunyan Liu83d05212014-06-05 17:20:51 +08006439 QemuOptsList *create_opts = NULL;
6440 QemuOpts *opts = NULL;
6441 const char *backing_fmt, *backing_file;
6442 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006443 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006444 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006445 int ret = 0;
6446
6447 /* Find driver and parse its options */
6448 drv = bdrv_find_format(fmt);
6449 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006450 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006451 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006452 }
6453
Max Reitzb65a5e12015-02-05 13:58:12 -05006454 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006455 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006456 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006457 }
6458
Max Reitzc6149722014-12-02 18:32:45 +01006459 if (!drv->create_opts) {
6460 error_setg(errp, "Format driver '%s' does not support image creation",
6461 drv->format_name);
6462 return;
6463 }
6464
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006465 if (!proto_drv->create_opts) {
6466 error_setg(errp, "Protocol driver '%s' does not support image creation",
6467 proto_drv->format_name);
6468 return;
6469 }
6470
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006471 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006472 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006473 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006474
Chunyan Liu83d05212014-06-05 17:20:51 +08006475 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006476
6477 /* Parse -o options */
6478 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02006479 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006480 goto out;
6481 }
6482 }
6483
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006484 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6485 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6486 } else if (img_size != UINT64_C(-1)) {
6487 error_setg(errp, "The image size must be specified only once");
6488 goto out;
6489 }
6490
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006491 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02006492 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02006493 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006494 error_setg(errp, "Backing file not supported for file format '%s'",
6495 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006496 goto out;
6497 }
6498 }
6499
6500 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02006501 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006502 error_setg(errp, "Backing file format not supported for file "
6503 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006504 goto out;
6505 }
6506 }
6507
Chunyan Liu83d05212014-06-05 17:20:51 +08006508 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6509 if (backing_file) {
6510 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006511 error_setg(errp, "Error: Trying to create an image with the "
6512 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01006513 goto out;
6514 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05006515 if (backing_file[0] == '\0') {
6516 error_setg(errp, "Expected backing file name, got empty string");
6517 goto out;
6518 }
Jes Sorensen792da932010-12-16 13:52:17 +01006519 }
6520
Chunyan Liu83d05212014-06-05 17:20:51 +08006521 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006522
John Snow6e6e55f2017-07-17 20:34:22 -04006523 /* The size for the image must always be specified, unless we have a backing
6524 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05006525 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04006526 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6527 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01006528 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04006529 int back_flags;
6530 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02006531
Max Reitz645ae7d2019-02-01 20:29:14 +01006532 full_backing =
6533 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6534 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04006535 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006536 goto out;
6537 }
Max Reitz645ae7d2019-02-01 20:29:14 +01006538 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04006539
6540 /* backing files always opened read-only */
6541 back_flags = flags;
6542 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6543
Fam Zhengcc954f02017-12-15 16:04:45 +08006544 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04006545 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04006546 qdict_put_str(backing_options, "driver", backing_fmt);
6547 }
Fam Zhengcc954f02017-12-15 16:04:45 +08006548 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04006549
6550 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6551 &local_err);
6552 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05006553 if (!bs) {
6554 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04006555 goto out;
6556 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05006557 if (!backing_fmt) {
6558 warn_report("Deprecated use of backing file without explicit "
6559 "backing format (detected format of %s)",
6560 bs->drv->format_name);
6561 if (bs->drv != &bdrv_raw) {
6562 /*
6563 * A probe of raw deserves the most attention:
6564 * leaving the backing format out of the image
6565 * will ensure bs->probed is set (ensuring we
6566 * don't accidentally commit into the backing
6567 * file), and allow more spots to warn the users
6568 * to fix their toolchain when opening this image
6569 * later. For other images, we can safely record
6570 * the format that we probed.
6571 */
6572 backing_fmt = bs->drv->format_name;
6573 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
6574 NULL);
6575 }
6576 }
John Snow6e6e55f2017-07-17 20:34:22 -04006577 if (size == -1) {
6578 /* Opened BS, have no size */
6579 size = bdrv_getlength(bs);
6580 if (size < 0) {
6581 error_setg_errno(errp, -size, "Could not get size of '%s'",
6582 backing_file);
6583 bdrv_unref(bs);
6584 goto out;
6585 }
6586 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6587 }
6588 bdrv_unref(bs);
6589 }
Eric Blaked9f059a2020-07-06 15:39:54 -05006590 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6591 } else if (backing_file && !backing_fmt) {
6592 warn_report("Deprecated use of unopened backing file without "
6593 "explicit backing format, use of this image requires "
6594 "potentially unsafe format probing");
6595 }
John Snow6e6e55f2017-07-17 20:34:22 -04006596
6597 if (size == -1) {
6598 error_setg(errp, "Image creation needs a size parameter");
6599 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006600 }
6601
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006602 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02006603 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08006604 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006605 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05006606 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006607 }
Chunyan Liu83d05212014-06-05 17:20:51 +08006608
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006609 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08006610
Max Reitzcc84d902013-09-06 17:14:26 +02006611 if (ret == -EFBIG) {
6612 /* This is generally a better message than whatever the driver would
6613 * deliver (especially because of the cluster_size_hint), since that
6614 * is most probably not much different from "image too large". */
6615 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08006616 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02006617 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006618 }
Max Reitzcc84d902013-09-06 17:14:26 +02006619 error_setg(errp, "The image size is too large for file format '%s'"
6620 "%s", fmt, cluster_size_hint);
6621 error_free(local_err);
6622 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006623 }
6624
6625out:
Chunyan Liu83d05212014-06-05 17:20:51 +08006626 qemu_opts_del(opts);
6627 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03006628 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006629}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006630
6631AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6632{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00006633 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006634}
6635
Kevin Wolfe336fd42020-10-05 17:58:53 +02006636AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6637{
6638 Coroutine *self = qemu_coroutine_self();
6639 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6640 AioContext *new_ctx;
6641
6642 /*
6643 * Increase bs->in_flight to ensure that this operation is completed before
6644 * moving the node to a different AioContext. Read new_ctx only afterwards.
6645 */
6646 bdrv_inc_in_flight(bs);
6647
6648 new_ctx = bdrv_get_aio_context(bs);
6649 aio_co_reschedule_self(new_ctx);
6650 return old_ctx;
6651}
6652
6653void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6654{
6655 aio_co_reschedule_self(old_ctx);
6656 bdrv_dec_in_flight(bs);
6657}
6658
Kevin Wolf18c6ac12020-10-05 17:58:54 +02006659void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6660{
6661 AioContext *ctx = bdrv_get_aio_context(bs);
6662
6663 /* In the main thread, bs->aio_context won't change concurrently */
6664 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6665
6666 /*
6667 * We're in coroutine context, so we already hold the lock of the main
6668 * loop AioContext. Don't lock it twice to avoid deadlocks.
6669 */
6670 assert(qemu_in_coroutine());
6671 if (ctx != qemu_get_aio_context()) {
6672 aio_context_acquire(ctx);
6673 }
6674}
6675
6676void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6677{
6678 AioContext *ctx = bdrv_get_aio_context(bs);
6679
6680 assert(qemu_in_coroutine());
6681 if (ctx != qemu_get_aio_context()) {
6682 aio_context_release(ctx);
6683 }
6684}
6685
Fam Zheng052a7572017-04-10 20:09:25 +08006686void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6687{
6688 aio_co_enter(bdrv_get_aio_context(bs), co);
6689}
6690
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006691static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6692{
6693 QLIST_REMOVE(ban, list);
6694 g_free(ban);
6695}
6696
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006697static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006698{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006699 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006700
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006701 assert(!bs->walking_aio_notifiers);
6702 bs->walking_aio_notifiers = true;
6703 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6704 if (baf->deleted) {
6705 bdrv_do_remove_aio_context_notifier(baf);
6706 } else {
6707 baf->detach_aio_context(baf->opaque);
6708 }
Max Reitz33384422014-06-20 21:57:33 +02006709 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006710 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6711 * remove remaining aio notifiers if we aren't called again.
6712 */
6713 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02006714
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006715 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006716 bs->drv->bdrv_detach_aio_context(bs);
6717 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006718
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006719 if (bs->quiesce_counter) {
6720 aio_enable_external(bs->aio_context);
6721 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006722 bs->aio_context = NULL;
6723}
6724
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006725static void bdrv_attach_aio_context(BlockDriverState *bs,
6726 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006727{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006728 BdrvAioNotifier *ban, *ban_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006729
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006730 if (bs->quiesce_counter) {
6731 aio_disable_external(new_context);
6732 }
6733
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006734 bs->aio_context = new_context;
6735
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006736 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006737 bs->drv->bdrv_attach_aio_context(bs, new_context);
6738 }
Max Reitz33384422014-06-20 21:57:33 +02006739
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006740 assert(!bs->walking_aio_notifiers);
6741 bs->walking_aio_notifiers = true;
6742 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6743 if (ban->deleted) {
6744 bdrv_do_remove_aio_context_notifier(ban);
6745 } else {
6746 ban->attached_aio_context(new_context, ban->opaque);
6747 }
Max Reitz33384422014-06-20 21:57:33 +02006748 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006749 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006750}
6751
Kevin Wolf42a65f02019-05-07 18:31:38 +02006752/*
6753 * Changes the AioContext used for fd handlers, timers, and BHs by this
6754 * BlockDriverState and all its children and parents.
6755 *
Max Reitz43eaaae2019-07-22 15:30:54 +02006756 * Must be called from the main AioContext.
6757 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02006758 * The caller must own the AioContext lock for the old AioContext of bs, but it
6759 * must not own the AioContext lock for new_context (unless new_context is the
6760 * same as the current context of bs).
6761 *
6762 * @ignore will accumulate all visited BdrvChild object. The caller is
6763 * responsible for freeing the list afterwards.
6764 */
Kevin Wolf53a7d042019-05-06 19:17:59 +02006765void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6766 AioContext *new_context, GSList **ignore)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006767{
Max Reitze037c092019-07-19 11:26:14 +02006768 AioContext *old_context = bdrv_get_aio_context(bs);
Sergio Lopez722d8e72021-02-01 13:50:31 +01006769 GSList *children_to_process = NULL;
6770 GSList *parents_to_process = NULL;
6771 GSList *entry;
6772 BdrvChild *child, *parent;
Kevin Wolf0d837082019-05-06 19:17:58 +02006773
Max Reitz43eaaae2019-07-22 15:30:54 +02006774 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6775
Max Reitze037c092019-07-19 11:26:14 +02006776 if (old_context == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03006777 return;
6778 }
6779
Kevin Wolfd70d5952019-02-08 16:53:37 +01006780 bdrv_drained_begin(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02006781
6782 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006783 if (g_slist_find(*ignore, child)) {
6784 continue;
6785 }
6786 *ignore = g_slist_prepend(*ignore, child);
Sergio Lopez722d8e72021-02-01 13:50:31 +01006787 children_to_process = g_slist_prepend(children_to_process, child);
Kevin Wolf53a7d042019-05-06 19:17:59 +02006788 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01006789
6790 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6791 if (g_slist_find(*ignore, parent)) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006792 continue;
6793 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01006794 *ignore = g_slist_prepend(*ignore, parent);
6795 parents_to_process = g_slist_prepend(parents_to_process, parent);
Kevin Wolf0d837082019-05-06 19:17:58 +02006796 }
6797
Sergio Lopez722d8e72021-02-01 13:50:31 +01006798 for (entry = children_to_process;
6799 entry != NULL;
6800 entry = g_slist_next(entry)) {
6801 child = entry->data;
6802 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6803 }
6804 g_slist_free(children_to_process);
6805
6806 for (entry = parents_to_process;
6807 entry != NULL;
6808 entry = g_slist_next(entry)) {
6809 parent = entry->data;
6810 assert(parent->klass->set_aio_ctx);
6811 parent->klass->set_aio_ctx(parent, new_context, ignore);
6812 }
6813 g_slist_free(parents_to_process);
6814
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006815 bdrv_detach_aio_context(bs);
6816
Max Reitze037c092019-07-19 11:26:14 +02006817 /* Acquire the new context, if necessary */
Max Reitz43eaaae2019-07-22 15:30:54 +02006818 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006819 aio_context_acquire(new_context);
6820 }
6821
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006822 bdrv_attach_aio_context(bs, new_context);
Max Reitze037c092019-07-19 11:26:14 +02006823
6824 /*
6825 * If this function was recursively called from
6826 * bdrv_set_aio_context_ignore(), there may be nodes in the
6827 * subtree that have not yet been moved to the new AioContext.
6828 * Release the old one so bdrv_drained_end() can poll them.
6829 */
Max Reitz43eaaae2019-07-22 15:30:54 +02006830 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006831 aio_context_release(old_context);
6832 }
6833
Kevin Wolfd70d5952019-02-08 16:53:37 +01006834 bdrv_drained_end(bs);
Max Reitze037c092019-07-19 11:26:14 +02006835
Max Reitz43eaaae2019-07-22 15:30:54 +02006836 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006837 aio_context_acquire(old_context);
6838 }
Max Reitz43eaaae2019-07-22 15:30:54 +02006839 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006840 aio_context_release(new_context);
6841 }
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006842}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02006843
Kevin Wolf5d231842019-05-06 19:17:56 +02006844static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6845 GSList **ignore, Error **errp)
6846{
6847 if (g_slist_find(*ignore, c)) {
6848 return true;
6849 }
6850 *ignore = g_slist_prepend(*ignore, c);
6851
Max Reitzbd86fb92020-05-13 13:05:13 +02006852 /*
6853 * A BdrvChildClass that doesn't handle AioContext changes cannot
6854 * tolerate any AioContext changes
6855 */
6856 if (!c->klass->can_set_aio_ctx) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006857 char *user = bdrv_child_user_desc(c);
6858 error_setg(errp, "Changing iothreads is not supported by %s", user);
6859 g_free(user);
6860 return false;
6861 }
Max Reitzbd86fb92020-05-13 13:05:13 +02006862 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006863 assert(!errp || *errp);
6864 return false;
6865 }
6866 return true;
6867}
6868
6869bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6870 GSList **ignore, Error **errp)
6871{
6872 if (g_slist_find(*ignore, c)) {
6873 return true;
6874 }
6875 *ignore = g_slist_prepend(*ignore, c);
6876 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
6877}
6878
6879/* @ignore will accumulate all visited BdrvChild object. The caller is
6880 * responsible for freeing the list afterwards. */
6881bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6882 GSList **ignore, Error **errp)
6883{
6884 BdrvChild *c;
6885
6886 if (bdrv_get_aio_context(bs) == ctx) {
6887 return true;
6888 }
6889
6890 QLIST_FOREACH(c, &bs->parents, next_parent) {
6891 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
6892 return false;
6893 }
6894 }
6895 QLIST_FOREACH(c, &bs->children, next) {
6896 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
6897 return false;
6898 }
6899 }
6900
6901 return true;
6902}
6903
6904int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6905 BdrvChild *ignore_child, Error **errp)
6906{
6907 GSList *ignore;
6908 bool ret;
6909
6910 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6911 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
6912 g_slist_free(ignore);
6913
6914 if (!ret) {
6915 return -EPERM;
6916 }
6917
Kevin Wolf53a7d042019-05-06 19:17:59 +02006918 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6919 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
6920 g_slist_free(ignore);
6921
Kevin Wolf5d231842019-05-06 19:17:56 +02006922 return 0;
6923}
6924
6925int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6926 Error **errp)
6927{
6928 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
6929}
6930
Max Reitz33384422014-06-20 21:57:33 +02006931void bdrv_add_aio_context_notifier(BlockDriverState *bs,
6932 void (*attached_aio_context)(AioContext *new_context, void *opaque),
6933 void (*detach_aio_context)(void *opaque), void *opaque)
6934{
6935 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
6936 *ban = (BdrvAioNotifier){
6937 .attached_aio_context = attached_aio_context,
6938 .detach_aio_context = detach_aio_context,
6939 .opaque = opaque
6940 };
6941
6942 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
6943}
6944
6945void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
6946 void (*attached_aio_context)(AioContext *,
6947 void *),
6948 void (*detach_aio_context)(void *),
6949 void *opaque)
6950{
6951 BdrvAioNotifier *ban, *ban_next;
6952
6953 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
6954 if (ban->attached_aio_context == attached_aio_context &&
6955 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006956 ban->opaque == opaque &&
6957 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02006958 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006959 if (bs->walking_aio_notifiers) {
6960 ban->deleted = true;
6961 } else {
6962 bdrv_do_remove_aio_context_notifier(ban);
6963 }
Max Reitz33384422014-06-20 21:57:33 +02006964 return;
6965 }
6966 }
6967
6968 abort();
6969}
6970
Max Reitz77485432014-10-27 11:12:50 +01006971int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02006972 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02006973 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02006974 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02006975{
Max Reitzd470ad42017-11-10 21:31:09 +01006976 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02006977 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01006978 return -ENOMEDIUM;
6979 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006980 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02006981 error_setg(errp, "Block driver '%s' does not support option amendment",
6982 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02006983 return -ENOTSUP;
6984 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02006985 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
6986 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02006987}
Benoît Canetf6186f42013-10-02 14:33:48 +02006988
Max Reitz5d69b5a2020-02-18 11:34:41 +01006989/*
6990 * This function checks whether the given @to_replace is allowed to be
6991 * replaced by a node that always shows the same data as @bs. This is
6992 * used for example to verify whether the mirror job can replace
6993 * @to_replace by the target mirrored from @bs.
6994 * To be replaceable, @bs and @to_replace may either be guaranteed to
6995 * always show the same data (because they are only connected through
6996 * filters), or some driver may allow replacing one of its children
6997 * because it can guarantee that this child's data is not visible at
6998 * all (for example, for dissenting quorum children that have no other
6999 * parents).
7000 */
7001bool bdrv_recurse_can_replace(BlockDriverState *bs,
7002 BlockDriverState *to_replace)
7003{
Max Reitz93393e62019-06-12 17:03:38 +02007004 BlockDriverState *filtered;
7005
Max Reitz5d69b5a2020-02-18 11:34:41 +01007006 if (!bs || !bs->drv) {
7007 return false;
7008 }
7009
7010 if (bs == to_replace) {
7011 return true;
7012 }
7013
7014 /* See what the driver can do */
7015 if (bs->drv->bdrv_recurse_can_replace) {
7016 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7017 }
7018
7019 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007020 filtered = bdrv_filter_bs(bs);
7021 if (filtered) {
7022 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007023 }
7024
7025 /* Safe default */
7026 return false;
7027}
7028
Max Reitz810803a2020-02-18 11:34:44 +01007029/*
7030 * Check whether the given @node_name can be replaced by a node that
7031 * has the same data as @parent_bs. If so, return @node_name's BDS;
7032 * NULL otherwise.
7033 *
7034 * @node_name must be a (recursive) *child of @parent_bs (or this
7035 * function will return NULL).
7036 *
7037 * The result (whether the node can be replaced or not) is only valid
7038 * for as long as no graph or permission changes occur.
7039 */
Wen Congyange12f3782015-07-17 10:12:22 +08007040BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7041 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007042{
7043 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007044 AioContext *aio_context;
7045
Benoît Canet09158f02014-06-27 18:25:25 +02007046 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007047 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007048 return NULL;
7049 }
7050
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007051 aio_context = bdrv_get_aio_context(to_replace_bs);
7052 aio_context_acquire(aio_context);
7053
Benoît Canet09158f02014-06-27 18:25:25 +02007054 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007055 to_replace_bs = NULL;
7056 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007057 }
7058
7059 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7060 * most non filter in order to prevent data corruption.
7061 * Another benefit is that this tests exclude backing files which are
7062 * blocked by the backing blockers.
7063 */
Max Reitz810803a2020-02-18 11:34:44 +01007064 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7065 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7066 "because it cannot be guaranteed that doing so would not "
7067 "lead to an abrupt change of visible data",
7068 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007069 to_replace_bs = NULL;
7070 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007071 }
7072
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007073out:
7074 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007075 return to_replace_bs;
7076}
Ming Lei448ad912014-07-04 18:04:33 +08007077
Max Reitz97e2f022019-02-01 20:29:27 +01007078/**
7079 * Iterates through the list of runtime option keys that are said to
7080 * be "strong" for a BDS. An option is called "strong" if it changes
7081 * a BDS's data. For example, the null block driver's "size" and
7082 * "read-zeroes" options are strong, but its "latency-ns" option is
7083 * not.
7084 *
7085 * If a key returned by this function ends with a dot, all options
7086 * starting with that prefix are strong.
7087 */
7088static const char *const *strong_options(BlockDriverState *bs,
7089 const char *const *curopt)
7090{
7091 static const char *const global_options[] = {
7092 "driver", "filename", NULL
7093 };
7094
7095 if (!curopt) {
7096 return &global_options[0];
7097 }
7098
7099 curopt++;
7100 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7101 curopt = bs->drv->strong_runtime_opts;
7102 }
7103
7104 return (curopt && *curopt) ? curopt : NULL;
7105}
7106
7107/**
7108 * Copies all strong runtime options from bs->options to the given
7109 * QDict. The set of strong option keys is determined by invoking
7110 * strong_options().
7111 *
7112 * Returns true iff any strong option was present in bs->options (and
7113 * thus copied to the target QDict) with the exception of "filename"
7114 * and "driver". The caller is expected to use this value to decide
7115 * whether the existence of strong options prevents the generation of
7116 * a plain filename.
7117 */
7118static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7119{
7120 bool found_any = false;
7121 const char *const *option_name = NULL;
7122
7123 if (!bs->drv) {
7124 return false;
7125 }
7126
7127 while ((option_name = strong_options(bs, option_name))) {
7128 bool option_given = false;
7129
7130 assert(strlen(*option_name) > 0);
7131 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7132 QObject *entry = qdict_get(bs->options, *option_name);
7133 if (!entry) {
7134 continue;
7135 }
7136
7137 qdict_put_obj(d, *option_name, qobject_ref(entry));
7138 option_given = true;
7139 } else {
7140 const QDictEntry *entry;
7141 for (entry = qdict_first(bs->options); entry;
7142 entry = qdict_next(bs->options, entry))
7143 {
7144 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7145 qdict_put_obj(d, qdict_entry_key(entry),
7146 qobject_ref(qdict_entry_value(entry)));
7147 option_given = true;
7148 }
7149 }
7150 }
7151
7152 /* While "driver" and "filename" need to be included in a JSON filename,
7153 * their existence does not prohibit generation of a plain filename. */
7154 if (!found_any && option_given &&
7155 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7156 {
7157 found_any = true;
7158 }
7159 }
7160
Max Reitz62a01a272019-02-01 20:29:34 +01007161 if (!qdict_haskey(d, "driver")) {
7162 /* Drivers created with bdrv_new_open_driver() may not have a
7163 * @driver option. Add it here. */
7164 qdict_put_str(d, "driver", bs->drv->format_name);
7165 }
7166
Max Reitz97e2f022019-02-01 20:29:27 +01007167 return found_any;
7168}
7169
Max Reitz90993622019-02-01 20:29:09 +01007170/* Note: This function may return false positives; it may return true
7171 * even if opening the backing file specified by bs's image header
7172 * would result in exactly bs->backing. */
Max Reitz0b877d02018-08-01 20:34:11 +02007173bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007174{
7175 if (bs->backing) {
7176 return strcmp(bs->auto_backing_file,
7177 bs->backing->bs->filename);
7178 } else {
7179 /* No backing BDS, so if the image header reports any backing
7180 * file, it must have been suppressed */
7181 return bs->auto_backing_file[0] != '\0';
7182 }
7183}
7184
Max Reitz91af7012014-07-18 20:24:56 +02007185/* Updates the following BDS fields:
7186 * - exact_filename: A filename which may be used for opening a block device
7187 * which (mostly) equals the given BDS (even without any
7188 * other options; so reading and writing must return the same
7189 * results, but caching etc. may be different)
7190 * - full_open_options: Options which, when given when opening a block device
7191 * (without a filename), result in a BDS (mostly)
7192 * equalling the given one
7193 * - filename: If exact_filename is set, it is copied here. Otherwise,
7194 * full_open_options is converted to a JSON object, prefixed with
7195 * "json:" (for use through the JSON pseudo protocol) and put here.
7196 */
7197void bdrv_refresh_filename(BlockDriverState *bs)
7198{
7199 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01007200 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02007201 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02007202 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01007203 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01007204 bool generate_json_filename; /* Whether our default implementation should
7205 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02007206
7207 if (!drv) {
7208 return;
7209 }
7210
Max Reitze24518e2019-02-01 20:29:06 +01007211 /* This BDS's file name may depend on any of its children's file names, so
7212 * refresh those first */
7213 QLIST_FOREACH(child, &bs->children, next) {
7214 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02007215 }
7216
Max Reitzbb808d52019-02-01 20:29:07 +01007217 if (bs->implicit) {
7218 /* For implicit nodes, just copy everything from the single child */
7219 child = QLIST_FIRST(&bs->children);
7220 assert(QLIST_NEXT(child, next) == NULL);
7221
7222 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7223 child->bs->exact_filename);
7224 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7225
Pan Nengyuancb895612020-01-16 16:56:00 +08007226 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01007227 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7228
7229 return;
7230 }
7231
Max Reitz90993622019-02-01 20:29:09 +01007232 backing_overridden = bdrv_backing_overridden(bs);
7233
7234 if (bs->open_flags & BDRV_O_NO_IO) {
7235 /* Without I/O, the backing file does not change anything.
7236 * Therefore, in such a case (primarily qemu-img), we can
7237 * pretend the backing file has not been overridden even if
7238 * it technically has been. */
7239 backing_overridden = false;
7240 }
7241
Max Reitz97e2f022019-02-01 20:29:27 +01007242 /* Gather the options QDict */
7243 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01007244 generate_json_filename = append_strong_runtime_options(opts, bs);
7245 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01007246
7247 if (drv->bdrv_gather_child_options) {
7248 /* Some block drivers may not want to present all of their children's
7249 * options, or name them differently from BdrvChild.name */
7250 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7251 } else {
7252 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02007253 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01007254 /* We can skip the backing BDS if it has not been overridden */
7255 continue;
7256 }
7257
7258 qdict_put(opts, child->name,
7259 qobject_ref(child->bs->full_open_options));
7260 }
7261
7262 if (backing_overridden && !bs->backing) {
7263 /* Force no backing file */
7264 qdict_put_null(opts, "backing");
7265 }
7266 }
7267
7268 qobject_unref(bs->full_open_options);
7269 bs->full_open_options = opts;
7270
Max Reitz52f72d62019-06-12 17:43:03 +02007271 primary_child_bs = bdrv_primary_bs(bs);
7272
Max Reitz998b3a12019-02-01 20:29:28 +01007273 if (drv->bdrv_refresh_filename) {
7274 /* Obsolete information is of no use here, so drop the old file name
7275 * information before refreshing it */
7276 bs->exact_filename[0] = '\0';
7277
7278 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02007279 } else if (primary_child_bs) {
7280 /*
7281 * Try to reconstruct valid information from the underlying
7282 * file -- this only works for format nodes (filter nodes
7283 * cannot be probed and as such must be selected by the user
7284 * either through an options dict, or through a special
7285 * filename which the filter driver must construct in its
7286 * .bdrv_refresh_filename() implementation).
7287 */
Max Reitz998b3a12019-02-01 20:29:28 +01007288
7289 bs->exact_filename[0] = '\0';
7290
Max Reitzfb695c72019-02-01 20:29:29 +01007291 /*
7292 * We can use the underlying file's filename if:
7293 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007294 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007295 * - the file is a protocol BDS, and
7296 * - opening that file (as this BDS's format) will automatically create
7297 * the BDS tree we have right now, that is:
7298 * - the user did not significantly change this BDS's behavior with
7299 * some explicit (strong) options
7300 * - no non-file child of this BDS has been overridden by the user
7301 * Both of these conditions are represented by generate_json_filename.
7302 */
Max Reitz52f72d62019-06-12 17:43:03 +02007303 if (primary_child_bs->exact_filename[0] &&
7304 primary_child_bs->drv->bdrv_file_open &&
7305 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007306 {
Max Reitz52f72d62019-06-12 17:43:03 +02007307 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007308 }
7309 }
7310
Max Reitz91af7012014-07-18 20:24:56 +02007311 if (bs->exact_filename[0]) {
7312 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007313 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007314 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007315 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007316 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007317 /* Give user a hint if we truncated things. */
7318 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7319 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007320 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007321 }
7322}
Wen Congyange06018a2016-05-10 15:36:37 +08007323
Max Reitz1e89d0f2019-02-01 20:29:18 +01007324char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7325{
7326 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007327 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007328
7329 if (!drv) {
7330 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7331 return NULL;
7332 }
7333
7334 if (drv->bdrv_dirname) {
7335 return drv->bdrv_dirname(bs, errp);
7336 }
7337
Max Reitz52f72d62019-06-12 17:43:03 +02007338 child_bs = bdrv_primary_bs(bs);
7339 if (child_bs) {
7340 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007341 }
7342
7343 bdrv_refresh_filename(bs);
7344 if (bs->exact_filename[0] != '\0') {
7345 return path_combine(bs->exact_filename, "");
7346 }
7347
7348 error_setg(errp, "Cannot generate a base directory for %s nodes",
7349 drv->format_name);
7350 return NULL;
7351}
7352
Wen Congyange06018a2016-05-10 15:36:37 +08007353/*
7354 * Hot add/remove a BDS's child. So the user can take a child offline when
7355 * it is broken and take a new child online
7356 */
7357void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7358 Error **errp)
7359{
7360
7361 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7362 error_setg(errp, "The node %s does not support adding a child",
7363 bdrv_get_device_or_node_name(parent_bs));
7364 return;
7365 }
7366
7367 if (!QLIST_EMPTY(&child_bs->parents)) {
7368 error_setg(errp, "The node %s already has a parent",
7369 child_bs->node_name);
7370 return;
7371 }
7372
7373 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7374}
7375
7376void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7377{
7378 BdrvChild *tmp;
7379
7380 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7381 error_setg(errp, "The node %s does not support removing a child",
7382 bdrv_get_device_or_node_name(parent_bs));
7383 return;
7384 }
7385
7386 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7387 if (tmp == child) {
7388 break;
7389 }
7390 }
7391
7392 if (!tmp) {
7393 error_setg(errp, "The node %s does not have a child named %s",
7394 bdrv_get_device_or_node_name(parent_bs),
7395 bdrv_get_device_or_node_name(child->bs));
7396 return;
7397 }
7398
7399 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7400}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007401
7402int bdrv_make_empty(BdrvChild *c, Error **errp)
7403{
7404 BlockDriver *drv = c->bs->drv;
7405 int ret;
7406
7407 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7408
7409 if (!drv->bdrv_make_empty) {
7410 error_setg(errp, "%s does not support emptying nodes",
7411 drv->format_name);
7412 return -ENOTSUP;
7413 }
7414
7415 ret = drv->bdrv_make_empty(c->bs);
7416 if (ret < 0) {
7417 error_setg_errno(errp, -ret, "Failed to empty %s",
7418 c->bs->filename);
7419 return ret;
7420 }
7421
7422 return 0;
7423}
Max Reitz9a6fc882019-05-31 15:23:11 +02007424
7425/*
7426 * Return the child that @bs acts as an overlay for, and from which data may be
7427 * copied in COW or COR operations. Usually this is the backing file.
7428 */
7429BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7430{
7431 if (!bs || !bs->drv) {
7432 return NULL;
7433 }
7434
7435 if (bs->drv->is_filter) {
7436 return NULL;
7437 }
7438
7439 if (!bs->backing) {
7440 return NULL;
7441 }
7442
7443 assert(bs->backing->role & BDRV_CHILD_COW);
7444 return bs->backing;
7445}
7446
7447/*
7448 * If @bs acts as a filter for exactly one of its children, return
7449 * that child.
7450 */
7451BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7452{
7453 BdrvChild *c;
7454
7455 if (!bs || !bs->drv) {
7456 return NULL;
7457 }
7458
7459 if (!bs->drv->is_filter) {
7460 return NULL;
7461 }
7462
7463 /* Only one of @backing or @file may be used */
7464 assert(!(bs->backing && bs->file));
7465
7466 c = bs->backing ?: bs->file;
7467 if (!c) {
7468 return NULL;
7469 }
7470
7471 assert(c->role & BDRV_CHILD_FILTERED);
7472 return c;
7473}
7474
7475/*
7476 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7477 * whichever is non-NULL.
7478 *
7479 * Return NULL if both are NULL.
7480 */
7481BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7482{
7483 BdrvChild *cow_child = bdrv_cow_child(bs);
7484 BdrvChild *filter_child = bdrv_filter_child(bs);
7485
7486 /* Filter nodes cannot have COW backing files */
7487 assert(!(cow_child && filter_child));
7488
7489 return cow_child ?: filter_child;
7490}
7491
7492/*
7493 * Return the primary child of this node: For filters, that is the
7494 * filtered child. For other nodes, that is usually the child storing
7495 * metadata.
7496 * (A generally more helpful description is that this is (usually) the
7497 * child that has the same filename as @bs.)
7498 *
7499 * Drivers do not necessarily have a primary child; for example quorum
7500 * does not.
7501 */
7502BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7503{
7504 BdrvChild *c, *found = NULL;
7505
7506 QLIST_FOREACH(c, &bs->children, next) {
7507 if (c->role & BDRV_CHILD_PRIMARY) {
7508 assert(!found);
7509 found = c;
7510 }
7511 }
7512
7513 return found;
7514}
Max Reitzd38d7eb2019-06-12 15:06:37 +02007515
7516static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7517 bool stop_on_explicit_filter)
7518{
7519 BdrvChild *c;
7520
7521 if (!bs) {
7522 return NULL;
7523 }
7524
7525 while (!(stop_on_explicit_filter && !bs->implicit)) {
7526 c = bdrv_filter_child(bs);
7527 if (!c) {
7528 /*
7529 * A filter that is embedded in a working block graph must
7530 * have a child. Assert this here so this function does
7531 * not return a filter node that is not expected by the
7532 * caller.
7533 */
7534 assert(!bs->drv || !bs->drv->is_filter);
7535 break;
7536 }
7537 bs = c->bs;
7538 }
7539 /*
7540 * Note that this treats nodes with bs->drv == NULL as not being
7541 * filters (bs->drv == NULL should be replaced by something else
7542 * anyway).
7543 * The advantage of this behavior is that this function will thus
7544 * always return a non-NULL value (given a non-NULL @bs).
7545 */
7546
7547 return bs;
7548}
7549
7550/*
7551 * Return the first BDS that has not been added implicitly or that
7552 * does not have a filtered child down the chain starting from @bs
7553 * (including @bs itself).
7554 */
7555BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7556{
7557 return bdrv_do_skip_filters(bs, true);
7558}
7559
7560/*
7561 * Return the first BDS that does not have a filtered child down the
7562 * chain starting from @bs (including @bs itself).
7563 */
7564BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7565{
7566 return bdrv_do_skip_filters(bs, false);
7567}
7568
7569/*
7570 * For a backing chain, return the first non-filter backing image of
7571 * the first non-filter image.
7572 */
7573BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7574{
7575 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
7576}