blob: 99229437933863d616f1a3bbc5b33c205dc1f787 [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
ths5fafdf22007-09-16 21:08:06 +00005 *
bellardfc01f7e2003-06-30 10:03:06 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
Markus Armbrustere688df62018-02-01 12:18:31 +010024
Peter Maydelld38ea872016-01-29 17:50:05 +000025#include "qemu/osdep.h"
Daniel P. Berrange0ab8ed12017-01-25 16:14:15 +000026#include "block/trace.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010027#include "block/block_int.h"
28#include "block/blockjob.h"
Max Reitz0c9b70d2020-10-27 20:05:42 +010029#include "block/fuse.h"
Kevin Wolfcd7fca92016-07-06 11:22:39 +020030#include "block/nbd.h"
Max Reitz609f45e2018-06-14 21:14:28 +020031#include "block/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010032#include "qemu/error-report.h"
Marc-André Lureau5e5733e2019-08-29 22:34:43 +040033#include "block/module_block.h"
Markus Armbrusterdb725812019-08-12 07:23:50 +020034#include "qemu/main-loop.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010035#include "qemu/module.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010036#include "qapi/error.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010037#include "qapi/qmp/qdict.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010038#include "qapi/qmp/qjson.h"
Max Reitze59a0cf2018-02-24 16:40:32 +010039#include "qapi/qmp/qnull.h"
Markus Armbrusterfc81fa12018-02-01 12:18:40 +010040#include "qapi/qmp/qstring.h"
Kevin Wolfe1d74bc2018-01-10 15:52:33 +010041#include "qapi/qobject-output-visitor.h"
42#include "qapi/qapi-visit-block-core.h"
Markus Armbrusterbfb197e2014-10-07 13:59:11 +020043#include "sysemu/block-backend.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010044#include "sysemu/sysemu.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-Ogievskiy09786232021-04-28 18:17:44 +030095
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +030096static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue
97 *queue, Error **errp);
98static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
99static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
100
Markus Armbrustereb852012009-10-27 18:41:44 +0100101/* If non-zero, use only whitelisted block drivers */
102static int use_bdrv_whitelist;
103
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000104#ifdef _WIN32
105static int is_windows_drive_prefix(const char *filename)
106{
107 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
108 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
109 filename[1] == ':');
110}
111
112int is_windows_drive(const char *filename)
113{
114 if (is_windows_drive_prefix(filename) &&
115 filename[2] == '\0')
116 return 1;
117 if (strstart(filename, "\\\\.\\", NULL) ||
118 strstart(filename, "//./", NULL))
119 return 1;
120 return 0;
121}
122#endif
123
Kevin Wolf339064d2013-11-28 10:23:32 +0100124size_t bdrv_opt_mem_align(BlockDriverState *bs)
125{
126 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300127 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800128 return MAX(4096, qemu_real_host_page_size);
Kevin Wolf339064d2013-11-28 10:23:32 +0100129 }
130
131 return bs->bl.opt_mem_alignment;
132}
133
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300134size_t bdrv_min_mem_align(BlockDriverState *bs)
135{
136 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300137 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800138 return MAX(4096, qemu_real_host_page_size);
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300139 }
140
141 return bs->bl.min_mem_alignment;
142}
143
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000144/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100145int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000146{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200147 const char *p;
148
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000149#ifdef _WIN32
150 if (is_windows_drive(path) ||
151 is_windows_drive_prefix(path)) {
152 return 0;
153 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200154 p = path + strcspn(path, ":/\\");
155#else
156 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000157#endif
158
Paolo Bonzini947995c2012-05-08 16:51:48 +0200159 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000160}
161
bellard83f64092006-08-01 16:21:11 +0000162int path_is_absolute(const char *path)
163{
bellard21664422007-01-07 18:22:37 +0000164#ifdef _WIN32
165 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200166 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000167 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200168 }
169 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000170#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200171 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000172#endif
bellard83f64092006-08-01 16:21:11 +0000173}
174
Max Reitz009b03a2019-02-01 20:29:13 +0100175/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000176 path to it by considering it is relative to base_path. URL are
177 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100178char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000179{
Max Reitz009b03a2019-02-01 20:29:13 +0100180 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000181 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100182 char *result;
bellard83f64092006-08-01 16:21:11 +0000183 int len;
184
bellard83f64092006-08-01 16:21:11 +0000185 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100186 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000187 }
Max Reitz009b03a2019-02-01 20:29:13 +0100188
189 if (path_has_protocol(base_path)) {
190 protocol_stripped = strchr(base_path, ':');
191 if (protocol_stripped) {
192 protocol_stripped++;
193 }
194 }
195 p = protocol_stripped ?: base_path;
196
197 p1 = strrchr(base_path, '/');
198#ifdef _WIN32
199 {
200 const char *p2;
201 p2 = strrchr(base_path, '\\');
202 if (!p1 || p2 > p1) {
203 p1 = p2;
204 }
205 }
206#endif
207 if (p1) {
208 p1++;
209 } else {
210 p1 = base_path;
211 }
212 if (p1 > p) {
213 p = p1;
214 }
215 len = p - base_path;
216
217 result = g_malloc(len + strlen(filename) + 1);
218 memcpy(result, base_path, len);
219 strcpy(result + len, filename);
220
221 return result;
222}
223
Max Reitz03c320d2017-05-22 21:52:16 +0200224/*
225 * Helper function for bdrv_parse_filename() implementations to remove optional
226 * protocol prefixes (especially "file:") from a filename and for putting the
227 * stripped filename into the options QDict if there is such a prefix.
228 */
229void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
230 QDict *options)
231{
232 if (strstart(filename, prefix, &filename)) {
233 /* Stripping the explicit protocol prefix may result in a protocol
234 * prefix being (wrongly) detected (if the filename contains a colon) */
235 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100236 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200237
238 /* This means there is some colon before the first slash; therefore,
239 * this cannot be an absolute path */
240 assert(!path_is_absolute(filename));
241
242 /* And we can thus fix the protocol detection issue by prefixing it
243 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100244 fat_filename = g_string_new("./");
245 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200246
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100247 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200248
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100249 qdict_put(options, "filename",
250 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200251 } else {
252 /* If no protocol prefix was detected, we can use the shortened
253 * filename as-is */
254 qdict_put_str(options, "filename", filename);
255 }
256 }
257}
258
259
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200260/* Returns whether the image file is opened as read-only. Note that this can
261 * return false and writing to the image file is still not possible because the
262 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400263bool bdrv_is_read_only(BlockDriverState *bs)
264{
265 return bs->read_only;
266}
267
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200268int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
269 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400270{
Jeff Codye2b82472017-04-07 16:55:26 -0400271 /* Do not set read_only if copy_on_read is enabled */
272 if (bs->copy_on_read && read_only) {
273 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
274 bdrv_get_device_or_node_name(bs));
275 return -EINVAL;
276 }
277
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400278 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200279 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
280 !ignore_allow_rdw)
281 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400282 error_setg(errp, "Node '%s' is read only",
283 bdrv_get_device_or_node_name(bs));
284 return -EPERM;
285 }
286
Jeff Cody45803a02017-04-07 16:55:29 -0400287 return 0;
288}
289
Kevin Wolfeaa24102018-10-12 11:27:41 +0200290/*
291 * Called by a driver that can only provide a read-only image.
292 *
293 * Returns 0 if the node is already read-only or it could switch the node to
294 * read-only because BDRV_O_AUTO_RDONLY is set.
295 *
296 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
297 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
298 * is not NULL, it is used as the error message for the Error object.
299 */
300int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
301 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400302{
303 int ret = 0;
304
Kevin Wolfeaa24102018-10-12 11:27:41 +0200305 if (!(bs->open_flags & BDRV_O_RDWR)) {
306 return 0;
307 }
308 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
309 goto fail;
310 }
311
312 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400313 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200314 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400315 }
316
Kevin Wolfeaa24102018-10-12 11:27:41 +0200317 bs->read_only = true;
318 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200319
Jeff Codye2b82472017-04-07 16:55:26 -0400320 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200321
322fail:
323 error_setg(errp, "%s", errmsg ?: "Image is read-only");
324 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400325}
326
Max Reitz645ae7d2019-02-01 20:29:14 +0100327/*
328 * If @backing is empty, this function returns NULL without setting
329 * @errp. In all other cases, NULL will only be returned with @errp
330 * set.
331 *
332 * Therefore, a return value of NULL without @errp set means that
333 * there is no backing file; if @errp is set, there is one but its
334 * absolute filename cannot be generated.
335 */
336char *bdrv_get_full_backing_filename_from_filename(const char *backed,
337 const char *backing,
338 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100339{
Max Reitz645ae7d2019-02-01 20:29:14 +0100340 if (backing[0] == '\0') {
341 return NULL;
342 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
343 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100344 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
345 error_setg(errp, "Cannot use relative backing file names for '%s'",
346 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100347 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100348 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100349 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100350 }
351}
352
Max Reitz9f4793d2019-02-01 20:29:16 +0100353/*
354 * If @filename is empty or NULL, this function returns NULL without
355 * setting @errp. In all other cases, NULL will only be returned with
356 * @errp set.
357 */
358static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
359 const char *filename, Error **errp)
360{
Max Reitz8df68612019-02-01 20:29:23 +0100361 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100362
Max Reitz8df68612019-02-01 20:29:23 +0100363 if (!filename || filename[0] == '\0') {
364 return NULL;
365 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
366 return g_strdup(filename);
367 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100368
Max Reitz8df68612019-02-01 20:29:23 +0100369 dir = bdrv_dirname(relative_to, errp);
370 if (!dir) {
371 return NULL;
372 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100373
Max Reitz8df68612019-02-01 20:29:23 +0100374 full_name = g_strconcat(dir, filename, NULL);
375 g_free(dir);
376 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100377}
378
Max Reitz6b6833c2019-02-01 20:29:15 +0100379char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200380{
Max Reitz9f4793d2019-02-01 20:29:16 +0100381 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200382}
383
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100384void bdrv_register(BlockDriver *bdrv)
385{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100386 assert(bdrv->format_name);
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100387 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000388}
bellardb3380822004-03-14 21:38:54 +0000389
Markus Armbrustere4e99862014-10-07 13:59:03 +0200390BlockDriverState *bdrv_new(void)
391{
392 BlockDriverState *bs;
393 int i;
394
Markus Armbruster5839e532014-08-19 10:31:08 +0200395 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800396 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800397 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
398 QLIST_INIT(&bs->op_blockers[i]);
399 }
Stefan Hajnoczid616b222013-06-24 17:13:10 +0200400 notifier_with_return_list_init(&bs->before_write_notifiers);
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200401 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200402 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800403 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200404 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200405
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300406 qemu_co_queue_init(&bs->flush_queue);
407
Kevin Wolf0f122642018-03-28 18:29:18 +0200408 for (i = 0; i < bdrv_drain_all_count; i++) {
409 bdrv_drained_begin(bs);
410 }
411
Max Reitz2c1d04e2016-01-29 16:36:11 +0100412 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
413
bellardb3380822004-03-14 21:38:54 +0000414 return bs;
415}
416
Marc Mari88d88792016-08-12 09:27:03 -0400417static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000418{
419 BlockDriver *drv1;
Marc Mari88d88792016-08-12 09:27:03 -0400420
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100421 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
422 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000423 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100424 }
bellardea2384d2004-08-01 21:59:26 +0000425 }
Marc Mari88d88792016-08-12 09:27:03 -0400426
bellardea2384d2004-08-01 21:59:26 +0000427 return NULL;
428}
429
Marc Mari88d88792016-08-12 09:27:03 -0400430BlockDriver *bdrv_find_format(const char *format_name)
431{
432 BlockDriver *drv1;
433 int i;
434
435 drv1 = bdrv_do_find_format(format_name);
436 if (drv1) {
437 return drv1;
438 }
439
440 /* The driver isn't registered, maybe we need to load a module */
441 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
442 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
443 block_module_load_one(block_driver_modules[i].library_name);
444 break;
445 }
446 }
447
448 return bdrv_do_find_format(format_name);
449}
450
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300451static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100452{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800453 static const char *whitelist_rw[] = {
454 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200455 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800456 };
457 static const char *whitelist_ro[] = {
458 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200459 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100460 };
461 const char **p;
462
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800463 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100464 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800465 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100466
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800467 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300468 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100469 return 1;
470 }
471 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800472 if (read_only) {
473 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300474 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800475 return 1;
476 }
477 }
478 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100479 return 0;
480}
481
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300482int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
483{
484 return bdrv_format_is_whitelisted(drv->format_name, read_only);
485}
486
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000487bool bdrv_uses_whitelist(void)
488{
489 return use_bdrv_whitelist;
490}
491
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800492typedef struct CreateCo {
493 BlockDriver *drv;
494 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800495 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800496 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200497 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800498} CreateCo;
499
500static void coroutine_fn bdrv_create_co_entry(void *opaque)
501{
Max Reitzcc84d902013-09-06 17:14:26 +0200502 Error *local_err = NULL;
503 int ret;
504
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800505 CreateCo *cco = opaque;
506 assert(cco->drv);
507
Maxim Levitskyb92902d2020-03-26 03:12:17 +0200508 ret = cco->drv->bdrv_co_create_opts(cco->drv,
509 cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300510 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200511 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800512}
513
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200514int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800515 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000516{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800517 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200518
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800519 Coroutine *co;
520 CreateCo cco = {
521 .drv = drv,
522 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800523 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800524 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200525 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800526 };
527
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100528 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200529 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300530 ret = -ENOTSUP;
531 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800532 }
533
534 if (qemu_in_coroutine()) {
535 /* Fast-path if already in coroutine context */
536 bdrv_create_co_entry(&cco);
537 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200538 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
539 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800540 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200541 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800542 }
543 }
544
545 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200546 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100547 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200548 error_propagate(errp, cco.err);
549 } else {
550 error_setg_errno(errp, -ret, "Could not create image");
551 }
552 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800553
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300554out:
555 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800556 return ret;
bellardea2384d2004-08-01 21:59:26 +0000557}
558
Max Reitzfd171462020-01-22 17:45:29 +0100559/**
560 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
561 * least the given @minimum_size.
562 *
563 * On success, return @blk's actual length.
564 * Otherwise, return -errno.
565 */
566static int64_t create_file_fallback_truncate(BlockBackend *blk,
567 int64_t minimum_size, Error **errp)
568{
569 Error *local_err = NULL;
570 int64_t size;
571 int ret;
572
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200573 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
574 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100575 if (ret < 0 && ret != -ENOTSUP) {
576 error_propagate(errp, local_err);
577 return ret;
578 }
579
580 size = blk_getlength(blk);
581 if (size < 0) {
582 error_free(local_err);
583 error_setg_errno(errp, -size,
584 "Failed to inquire the new image file's length");
585 return size;
586 }
587
588 if (size < minimum_size) {
589 /* Need to grow the image, but we failed to do that */
590 error_propagate(errp, local_err);
591 return -ENOTSUP;
592 }
593
594 error_free(local_err);
595 local_err = NULL;
596
597 return size;
598}
599
600/**
601 * Helper function for bdrv_create_file_fallback(): Zero the first
602 * sector to remove any potentially pre-existing image header.
603 */
604static int create_file_fallback_zero_first_sector(BlockBackend *blk,
605 int64_t current_size,
606 Error **errp)
607{
608 int64_t bytes_to_clear;
609 int ret;
610
611 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
612 if (bytes_to_clear) {
613 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
614 if (ret < 0) {
615 error_setg_errno(errp, -ret,
616 "Failed to clear the new image's first sector");
617 return ret;
618 }
619 }
620
621 return 0;
622}
623
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200624/**
625 * Simple implementation of bdrv_co_create_opts for protocol drivers
626 * which only support creation via opening a file
627 * (usually existing raw storage device)
628 */
629int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
630 const char *filename,
631 QemuOpts *opts,
632 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100633{
634 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100635 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100636 int64_t size = 0;
637 char *buf = NULL;
638 PreallocMode prealloc;
639 Error *local_err = NULL;
640 int ret;
641
642 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
643 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
644 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
645 PREALLOC_MODE_OFF, &local_err);
646 g_free(buf);
647 if (local_err) {
648 error_propagate(errp, local_err);
649 return -EINVAL;
650 }
651
652 if (prealloc != PREALLOC_MODE_OFF) {
653 error_setg(errp, "Unsupported preallocation mode '%s'",
654 PreallocMode_str(prealloc));
655 return -ENOTSUP;
656 }
657
Max Reitzeeea1fa2020-02-25 16:56:18 +0100658 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100659 qdict_put_str(options, "driver", drv->format_name);
660
661 blk = blk_new_open(filename, NULL, options,
662 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
663 if (!blk) {
664 error_prepend(errp, "Protocol driver '%s' does not support image "
665 "creation, and opening the image failed: ",
666 drv->format_name);
667 return -EINVAL;
668 }
669
670 size = create_file_fallback_truncate(blk, size, errp);
671 if (size < 0) {
672 ret = size;
673 goto out;
674 }
675
676 ret = create_file_fallback_zero_first_sector(blk, size, errp);
677 if (ret < 0) {
678 goto out;
679 }
680
681 ret = 0;
682out:
683 blk_unref(blk);
684 return ret;
685}
686
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800687int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200688{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100689 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200690 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100691 QDict *qdict;
692 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200693
Max Reitzb65a5e12015-02-05 13:58:12 -0500694 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200695 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000696 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200697 }
698
Stefano Garzarella729222a2021-03-08 17:12:32 +0100699 if (!drv->create_opts) {
700 error_setg(errp, "Driver '%s' does not support image creation",
701 drv->format_name);
702 return -ENOTSUP;
703 }
704
705 /*
706 * 'opts' contains a QemuOptsList with a combination of format and protocol
707 * default values.
708 *
709 * The format properly removes its options, but the default values remain
710 * in 'opts->list'. So if the protocol has options with the same name
711 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
712 * of the format, since for overlapping options, the format wins.
713 *
714 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
715 * only the set options, and then convert it back to QemuOpts, using the
716 * create_opts of the protocol. So the new QemuOpts, will contain only the
717 * protocol defaults.
718 */
719 qdict = qemu_opts_to_qdict(opts, NULL);
720 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
721 if (protocol_opts == NULL) {
722 ret = -EINVAL;
723 goto out;
724 }
725
726 ret = bdrv_create(drv, filename, protocol_opts, errp);
727out:
728 qemu_opts_del(protocol_opts);
729 qobject_unref(qdict);
730 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200731}
732
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300733int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
734{
735 Error *local_err = NULL;
736 int ret;
737
738 assert(bs != NULL);
739
740 if (!bs->drv) {
741 error_setg(errp, "Block node '%s' is not opened", bs->filename);
742 return -ENOMEDIUM;
743 }
744
745 if (!bs->drv->bdrv_co_delete_file) {
746 error_setg(errp, "Driver '%s' does not support image deletion",
747 bs->drv->format_name);
748 return -ENOTSUP;
749 }
750
751 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
752 if (ret < 0) {
753 error_propagate(errp, local_err);
754 }
755
756 return ret;
757}
758
Maxim Levitskya890f082020-12-17 19:09:03 +0200759void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
760{
761 Error *local_err = NULL;
762 int ret;
763
764 if (!bs) {
765 return;
766 }
767
768 ret = bdrv_co_delete_file(bs, &local_err);
769 /*
770 * ENOTSUP will happen if the block driver doesn't support
771 * the 'bdrv_co_delete_file' interface. This is a predictable
772 * scenario and shouldn't be reported back to the user.
773 */
774 if (ret == -ENOTSUP) {
775 error_free(local_err);
776 } else if (ret < 0) {
777 error_report_err(local_err);
778 }
779}
780
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100781/**
782 * Try to get @bs's logical and physical block size.
783 * On success, store them in @bsz struct and return 0.
784 * On failure return -errno.
785 * @bs must not be empty.
786 */
787int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
788{
789 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200790 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100791
792 if (drv && drv->bdrv_probe_blocksizes) {
793 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200794 } else if (filtered) {
795 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100796 }
797
798 return -ENOTSUP;
799}
800
801/**
802 * Try to get @bs's geometry (cyls, heads, sectors).
803 * On success, store them in @geo struct and return 0.
804 * On failure return -errno.
805 * @bs must not be empty.
806 */
807int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
808{
809 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200810 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100811
812 if (drv && drv->bdrv_probe_geometry) {
813 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200814 } else if (filtered) {
815 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100816 }
817
818 return -ENOTSUP;
819}
820
Jim Meyeringeba25052012-05-28 09:27:54 +0200821/*
822 * Create a uniquely-named empty temporary file.
823 * Return 0 upon success, otherwise a negative errno value.
824 */
825int get_tmp_filename(char *filename, int size)
826{
bellardd5249392004-08-03 21:14:23 +0000827#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000828 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200829 /* GetTempFileName requires that its output buffer (4th param)
830 have length MAX_PATH or greater. */
831 assert(size >= MAX_PATH);
832 return (GetTempPath(MAX_PATH, temp_dir)
833 && GetTempFileName(temp_dir, "qem", 0, filename)
834 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000835#else
bellardea2384d2004-08-01 21:59:26 +0000836 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000837 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000838 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530839 if (!tmpdir) {
840 tmpdir = "/var/tmp";
841 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200842 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
843 return -EOVERFLOW;
844 }
bellardea2384d2004-08-01 21:59:26 +0000845 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800846 if (fd < 0) {
847 return -errno;
848 }
849 if (close(fd) != 0) {
850 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200851 return -errno;
852 }
853 return 0;
bellardd5249392004-08-03 21:14:23 +0000854#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200855}
bellardea2384d2004-08-01 21:59:26 +0000856
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200857/*
858 * Detect host devices. By convention, /dev/cdrom[N] is always
859 * recognized as a host CDROM.
860 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200861static BlockDriver *find_hdev_driver(const char *filename)
862{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200863 int score_max = 0, score;
864 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200865
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100866 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200867 if (d->bdrv_probe_device) {
868 score = d->bdrv_probe_device(filename);
869 if (score > score_max) {
870 score_max = score;
871 drv = d;
872 }
873 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200874 }
875
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200876 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200877}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200878
Marc Mari88d88792016-08-12 09:27:03 -0400879static BlockDriver *bdrv_do_find_protocol(const char *protocol)
880{
881 BlockDriver *drv1;
882
883 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
884 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
885 return drv1;
886 }
887 }
888
889 return NULL;
890}
891
Kevin Wolf98289622013-07-10 15:47:39 +0200892BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500893 bool allow_protocol_prefix,
894 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200895{
896 BlockDriver *drv1;
897 char protocol[128];
898 int len;
899 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400900 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200901
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200902 /* TODO Drivers without bdrv_file_open must be specified explicitly */
903
Christoph Hellwig39508e72010-06-23 12:25:17 +0200904 /*
905 * XXX(hch): we really should not let host device detection
906 * override an explicit protocol specification, but moving this
907 * later breaks access to device names with colons in them.
908 * Thanks to the brain-dead persistent naming schemes on udev-
909 * based Linux systems those actually are quite common.
910 */
911 drv1 = find_hdev_driver(filename);
912 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200913 return drv1;
914 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200915
Kevin Wolf98289622013-07-10 15:47:39 +0200916 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100917 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200918 }
Kevin Wolf98289622013-07-10 15:47:39 +0200919
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000920 p = strchr(filename, ':');
921 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200922 len = p - filename;
923 if (len > sizeof(protocol) - 1)
924 len = sizeof(protocol) - 1;
925 memcpy(protocol, filename, len);
926 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400927
928 drv1 = bdrv_do_find_protocol(protocol);
929 if (drv1) {
930 return drv1;
931 }
932
933 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
934 if (block_driver_modules[i].protocol_name &&
935 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
936 block_module_load_one(block_driver_modules[i].library_name);
937 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200938 }
939 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500940
Marc Mari88d88792016-08-12 09:27:03 -0400941 drv1 = bdrv_do_find_protocol(protocol);
942 if (!drv1) {
943 error_setg(errp, "Unknown protocol '%s'", protocol);
944 }
945 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200946}
947
Markus Armbrusterc6684242014-11-20 16:27:10 +0100948/*
949 * Guess image format by probing its contents.
950 * This is not a good idea when your image is raw (CVE-2008-2004), but
951 * we do it anyway for backward compatibility.
952 *
953 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100954 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
955 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100956 * @filename is its filename.
957 *
958 * For all block drivers, call the bdrv_probe() method to get its
959 * probing score.
960 * Return the first block driver with the highest probing score.
961 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100962BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
963 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100964{
965 int score_max = 0, score;
966 BlockDriver *drv = NULL, *d;
967
968 QLIST_FOREACH(d, &bdrv_drivers, list) {
969 if (d->bdrv_probe) {
970 score = d->bdrv_probe(buf, buf_size, filename);
971 if (score > score_max) {
972 score_max = score;
973 drv = d;
974 }
975 }
976 }
977
978 return drv;
979}
980
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100981static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200982 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000983{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100984 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100985 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100986 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700987
Kevin Wolf08a00552010-06-01 18:37:31 +0200988 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100989 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100990 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200991 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700992 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700993
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100994 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000995 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200996 error_setg_errno(errp, -ret, "Could not read image for determining its "
997 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +0200998 *pdrv = NULL;
999 return ret;
bellard83f64092006-08-01 16:21:11 +00001000 }
1001
Markus Armbrusterc6684242014-11-20 16:27:10 +01001002 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001003 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001004 error_setg(errp, "Could not determine image format: No compatible "
1005 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +02001006 ret = -ENOENT;
1007 }
1008 *pdrv = drv;
1009 return ret;
bellardea2384d2004-08-01 21:59:26 +00001010}
1011
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001012/**
1013 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001014 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001015 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +02001016int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001017{
1018 BlockDriver *drv = bs->drv;
1019
Max Reitzd470ad42017-11-10 21:31:09 +01001020 if (!drv) {
1021 return -ENOMEDIUM;
1022 }
1023
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001024 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001025 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001026 return 0;
1027
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001028 /* query actual device if possible, otherwise just trust the hint */
1029 if (drv->bdrv_getlength) {
1030 int64_t length = drv->bdrv_getlength(bs);
1031 if (length < 0) {
1032 return length;
1033 }
Fam Zheng7e382002013-11-06 19:48:06 +08001034 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001035 }
1036
1037 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001038
1039 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1040 return -EFBIG;
1041 }
1042
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001043 return 0;
1044}
1045
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001046/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001047 * Combines a QDict of new block driver @options with any missing options taken
1048 * from @old_options, so that leaving out an option defaults to its old value.
1049 */
1050static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1051 QDict *old_options)
1052{
1053 if (bs->drv && bs->drv->bdrv_join_options) {
1054 bs->drv->bdrv_join_options(options, old_options);
1055 } else {
1056 qdict_join(options, old_options, false);
1057 }
1058}
1059
Alberto Garcia543770b2018-09-06 12:37:09 +03001060static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1061 int open_flags,
1062 Error **errp)
1063{
1064 Error *local_err = NULL;
1065 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1066 BlockdevDetectZeroesOptions detect_zeroes =
1067 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1068 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1069 g_free(value);
1070 if (local_err) {
1071 error_propagate(errp, local_err);
1072 return detect_zeroes;
1073 }
1074
1075 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1076 !(open_flags & BDRV_O_UNMAP))
1077 {
1078 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1079 "without setting discard operation to unmap");
1080 }
1081
1082 return detect_zeroes;
1083}
1084
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001085/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001086 * Set open flags for aio engine
1087 *
1088 * Return 0 on success, -1 if the engine specified is invalid
1089 */
1090int bdrv_parse_aio(const char *mode, int *flags)
1091{
1092 if (!strcmp(mode, "threads")) {
1093 /* do nothing, default */
1094 } else if (!strcmp(mode, "native")) {
1095 *flags |= BDRV_O_NATIVE_AIO;
1096#ifdef CONFIG_LINUX_IO_URING
1097 } else if (!strcmp(mode, "io_uring")) {
1098 *flags |= BDRV_O_IO_URING;
1099#endif
1100 } else {
1101 return -1;
1102 }
1103
1104 return 0;
1105}
1106
1107/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001108 * Set open flags for a given discard mode
1109 *
1110 * Return 0 on success, -1 if the discard mode was invalid.
1111 */
1112int bdrv_parse_discard_flags(const char *mode, int *flags)
1113{
1114 *flags &= ~BDRV_O_UNMAP;
1115
1116 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1117 /* do nothing */
1118 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1119 *flags |= BDRV_O_UNMAP;
1120 } else {
1121 return -1;
1122 }
1123
1124 return 0;
1125}
1126
1127/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001128 * Set open flags for a given cache mode
1129 *
1130 * Return 0 on success, -1 if the cache mode was invalid.
1131 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001132int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001133{
1134 *flags &= ~BDRV_O_CACHE_MASK;
1135
1136 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001137 *writethrough = false;
1138 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001139 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001140 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001141 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001142 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001143 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001144 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001145 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001146 *flags |= BDRV_O_NO_FLUSH;
1147 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001148 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001149 } else {
1150 return -1;
1151 }
1152
1153 return 0;
1154}
1155
Kevin Wolfb5411552017-01-17 15:56:16 +01001156static char *bdrv_child_get_parent_desc(BdrvChild *c)
1157{
1158 BlockDriverState *parent = c->opaque;
1159 return g_strdup(bdrv_get_device_or_node_name(parent));
1160}
1161
Kevin Wolf20018e12016-05-23 18:46:59 +02001162static void bdrv_child_cb_drained_begin(BdrvChild *child)
1163{
1164 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001165 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +02001166}
1167
Kevin Wolf89bd0302018-03-22 14:11:20 +01001168static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1169{
1170 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001171 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001172}
1173
Max Reitze037c092019-07-19 11:26:14 +02001174static void bdrv_child_cb_drained_end(BdrvChild *child,
1175 int *drained_end_counter)
Kevin Wolf20018e12016-05-23 18:46:59 +02001176{
1177 BlockDriverState *bs = child->opaque;
Max Reitze037c092019-07-19 11:26:14 +02001178 bdrv_drained_end_no_poll(bs, drained_end_counter);
Kevin Wolf20018e12016-05-23 18:46:59 +02001179}
1180
Kevin Wolf38701b62017-05-04 18:52:39 +02001181static int bdrv_child_cb_inactivate(BdrvChild *child)
1182{
1183 BlockDriverState *bs = child->opaque;
1184 assert(bs->open_flags & BDRV_O_INACTIVE);
1185 return 0;
1186}
1187
Kevin Wolf5d231842019-05-06 19:17:56 +02001188static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1189 GSList **ignore, Error **errp)
1190{
1191 BlockDriverState *bs = child->opaque;
1192 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1193}
1194
Kevin Wolf53a7d042019-05-06 19:17:59 +02001195static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1196 GSList **ignore)
1197{
1198 BlockDriverState *bs = child->opaque;
1199 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1200}
1201
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001202/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001203 * Returns the options and flags that a temporary snapshot should get, based on
1204 * the originally requested flags (the originally requested image will have
1205 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001206 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001207static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1208 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001209{
Kevin Wolf73176be2016-03-07 13:02:15 +01001210 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1211
1212 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001213 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1214 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001215
Kevin Wolf3f486862019-04-04 17:04:43 +02001216 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001217 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001218 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001219
Kevin Wolf41869042016-06-16 12:59:30 +02001220 /* aio=native doesn't work for cache.direct=off, so disable it for the
1221 * temporary snapshot */
1222 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001223}
1224
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001225static void bdrv_backing_attach(BdrvChild *c)
1226{
1227 BlockDriverState *parent = c->opaque;
1228 BlockDriverState *backing_hd = c->bs;
1229
1230 assert(!parent->backing_blocker);
1231 error_setg(&parent->backing_blocker,
1232 "node is used as backing hd of '%s'",
1233 bdrv_get_device_or_node_name(parent));
1234
Max Reitzf30c66b2019-02-01 20:29:05 +01001235 bdrv_refresh_filename(backing_hd);
1236
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001237 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001238
1239 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1240 /* Otherwise we won't be able to commit or stream */
1241 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1242 parent->backing_blocker);
1243 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1244 parent->backing_blocker);
1245 /*
1246 * We do backup in 3 ways:
1247 * 1. drive backup
1248 * The target bs is new opened, and the source is top BDS
1249 * 2. blockdev backup
1250 * Both the source and the target are top BDSes.
1251 * 3. internal backup(used for block replication)
1252 * Both the source and the target are backing file
1253 *
1254 * In case 1 and 2, neither the source nor the target is the backing file.
1255 * In case 3, we will block the top BDS, so there is only one block job
1256 * for the top BDS and its backing chain.
1257 */
1258 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1259 parent->backing_blocker);
1260 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1261 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001262}
Kevin Wolfd736f112017-12-18 16:05:48 +01001263
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001264static void bdrv_backing_detach(BdrvChild *c)
1265{
1266 BlockDriverState *parent = c->opaque;
1267
1268 assert(parent->backing_blocker);
1269 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1270 error_free(parent->backing_blocker);
1271 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001272}
Kevin Wolfd736f112017-12-18 16:05:48 +01001273
Kevin Wolf6858eba2017-06-29 19:32:21 +02001274static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1275 const char *filename, Error **errp)
1276{
1277 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001278 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001279 int ret;
1280
Alberto Garciae94d3db2018-11-12 16:00:34 +02001281 if (read_only) {
1282 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001283 if (ret < 0) {
1284 return ret;
1285 }
1286 }
1287
Kevin Wolf6858eba2017-06-29 19:32:21 +02001288 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001289 base->drv ? base->drv->format_name : "",
1290 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001291 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001292 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001293 }
1294
Alberto Garciae94d3db2018-11-12 16:00:34 +02001295 if (read_only) {
1296 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001297 }
1298
Kevin Wolf6858eba2017-06-29 19:32:21 +02001299 return ret;
1300}
1301
Max Reitzfae8bd32020-05-13 13:05:20 +02001302/*
1303 * Returns the options and flags that a generic child of a BDS should
1304 * get, based on the given options and flags for the parent BDS.
1305 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001306static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1307 int *child_flags, QDict *child_options,
1308 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001309{
1310 int flags = parent_flags;
1311
1312 /*
1313 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1314 * Generally, the question to answer is: Should this child be
1315 * format-probed by default?
1316 */
1317
1318 /*
1319 * Pure and non-filtered data children of non-format nodes should
1320 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1321 * set). This only affects a very limited set of drivers (namely
1322 * quorum and blkverify when this comment was written).
1323 * Force-clear BDRV_O_PROTOCOL then.
1324 */
1325 if (!parent_is_format &&
1326 (role & BDRV_CHILD_DATA) &&
1327 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1328 {
1329 flags &= ~BDRV_O_PROTOCOL;
1330 }
1331
1332 /*
1333 * All children of format nodes (except for COW children) and all
1334 * metadata children in general should never be format-probed.
1335 * Force-set BDRV_O_PROTOCOL then.
1336 */
1337 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1338 (role & BDRV_CHILD_METADATA))
1339 {
1340 flags |= BDRV_O_PROTOCOL;
1341 }
1342
1343 /*
1344 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1345 * the parent.
1346 */
1347 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1348 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1349 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1350
1351 if (role & BDRV_CHILD_COW) {
1352 /* backing files are opened read-only by default */
1353 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1354 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1355 } else {
1356 /* Inherit the read-only option from the parent if it's not set */
1357 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1358 qdict_copy_default(child_options, parent_options,
1359 BDRV_OPT_AUTO_READ_ONLY);
1360 }
1361
1362 /*
1363 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1364 * can default to enable it on lower layers regardless of the
1365 * parent option.
1366 */
1367 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1368
1369 /* Clear flags that only apply to the top layer */
1370 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1371
1372 if (role & BDRV_CHILD_METADATA) {
1373 flags &= ~BDRV_O_NO_IO;
1374 }
1375 if (role & BDRV_CHILD_COW) {
1376 flags &= ~BDRV_O_TEMPORARY;
1377 }
1378
1379 *child_flags = flags;
1380}
1381
Max Reitzca2f1232020-05-13 13:05:22 +02001382static void bdrv_child_cb_attach(BdrvChild *child)
1383{
1384 BlockDriverState *bs = child->opaque;
1385
1386 if (child->role & BDRV_CHILD_COW) {
1387 bdrv_backing_attach(child);
1388 }
1389
1390 bdrv_apply_subtree_drain(child, bs);
1391}
1392
Max Reitz48e08282020-05-13 13:05:23 +02001393static void bdrv_child_cb_detach(BdrvChild *child)
1394{
1395 BlockDriverState *bs = child->opaque;
1396
1397 if (child->role & BDRV_CHILD_COW) {
1398 bdrv_backing_detach(child);
1399 }
1400
1401 bdrv_unapply_subtree_drain(child, bs);
1402}
1403
Max Reitz43483552020-05-13 13:05:24 +02001404static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1405 const char *filename, Error **errp)
1406{
1407 if (c->role & BDRV_CHILD_COW) {
1408 return bdrv_backing_update_filename(c, base, filename, errp);
1409 }
1410 return 0;
1411}
1412
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001413static AioContext *bdrv_child_cb_get_parent_aio_context(BdrvChild *c)
1414{
1415 BlockDriverState *bs = c->opaque;
1416
1417 return bdrv_get_aio_context(bs);
1418}
1419
Max Reitz43483552020-05-13 13:05:24 +02001420const BdrvChildClass child_of_bds = {
1421 .parent_is_bds = true,
1422 .get_parent_desc = bdrv_child_get_parent_desc,
1423 .inherit_options = bdrv_inherited_options,
1424 .drained_begin = bdrv_child_cb_drained_begin,
1425 .drained_poll = bdrv_child_cb_drained_poll,
1426 .drained_end = bdrv_child_cb_drained_end,
1427 .attach = bdrv_child_cb_attach,
1428 .detach = bdrv_child_cb_detach,
1429 .inactivate = bdrv_child_cb_inactivate,
1430 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1431 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1432 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001433 .get_parent_aio_context = bdrv_child_cb_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001434};
1435
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001436AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1437{
1438 return c->klass->get_parent_aio_context(c);
1439}
1440
Kevin Wolf7b272452012-11-12 17:05:39 +01001441static int bdrv_open_flags(BlockDriverState *bs, int flags)
1442{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001443 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001444
1445 /*
1446 * Clear flags that are internal to the block layer before opening the
1447 * image.
1448 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001449 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001450
Kevin Wolf7b272452012-11-12 17:05:39 +01001451 return open_flags;
1452}
1453
Kevin Wolf91a097e2015-05-08 17:49:53 +02001454static void update_flags_from_options(int *flags, QemuOpts *opts)
1455{
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001456 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001457
Alberto Garcia57f9db92018-09-06 12:37:06 +03001458 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001459 *flags |= BDRV_O_NO_FLUSH;
1460 }
1461
Alberto Garcia57f9db92018-09-06 12:37:06 +03001462 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001463 *flags |= BDRV_O_NOCACHE;
1464 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001465
Alberto Garcia57f9db92018-09-06 12:37:06 +03001466 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001467 *flags |= BDRV_O_RDWR;
1468 }
1469
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001470 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1471 *flags |= BDRV_O_AUTO_RDONLY;
1472 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001473}
1474
1475static void update_options_from_flags(QDict *options, int flags)
1476{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001477 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001478 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001479 }
1480 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001481 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1482 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001483 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001484 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001485 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001486 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001487 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1488 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1489 flags & BDRV_O_AUTO_RDONLY);
1490 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001491}
1492
Kevin Wolf636ea372014-01-24 14:11:52 +01001493static void bdrv_assign_node_name(BlockDriverState *bs,
1494 const char *node_name,
1495 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001496{
Jeff Cody15489c72015-10-12 19:36:50 -04001497 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001498
Jeff Cody15489c72015-10-12 19:36:50 -04001499 if (!node_name) {
1500 node_name = gen_node_name = id_generate(ID_BLOCK);
1501 } else if (!id_wellformed(node_name)) {
1502 /*
1503 * Check for empty string or invalid characters, but not if it is
1504 * generated (generated names use characters not available to the user)
1505 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001506 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001507 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001508 }
1509
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001510 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001511 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001512 error_setg(errp, "node-name=%s is conflicting with a device id",
1513 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001514 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001515 }
1516
Benoît Canet6913c0c2014-01-23 21:31:33 +01001517 /* takes care of avoiding duplicates node names */
1518 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001519 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001520 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001521 }
1522
Kevin Wolf824808d2018-07-04 13:28:29 +02001523 /* Make sure that the node name isn't truncated */
1524 if (strlen(node_name) >= sizeof(bs->node_name)) {
1525 error_setg(errp, "Node name too long");
1526 goto out;
1527 }
1528
Benoît Canet6913c0c2014-01-23 21:31:33 +01001529 /* copy node name into the bs and insert it into the graph list */
1530 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1531 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001532out:
1533 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001534}
1535
Kevin Wolf01a56502017-01-18 15:51:56 +01001536static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1537 const char *node_name, QDict *options,
1538 int open_flags, Error **errp)
1539{
1540 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001541 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001542
1543 bdrv_assign_node_name(bs, node_name, &local_err);
1544 if (local_err) {
1545 error_propagate(errp, local_err);
1546 return -EINVAL;
1547 }
1548
1549 bs->drv = drv;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001550 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Kevin Wolf01a56502017-01-18 15:51:56 +01001551 bs->opaque = g_malloc0(drv->instance_size);
1552
1553 if (drv->bdrv_file_open) {
1554 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1555 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001556 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001557 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001558 } else {
1559 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001560 }
1561
1562 if (ret < 0) {
1563 if (local_err) {
1564 error_propagate(errp, local_err);
1565 } else if (bs->filename[0]) {
1566 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1567 } else {
1568 error_setg_errno(errp, -ret, "Could not open image");
1569 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001570 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001571 }
1572
1573 ret = refresh_total_sectors(bs, bs->total_sectors);
1574 if (ret < 0) {
1575 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001576 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001577 }
1578
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001579 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolf01a56502017-01-18 15:51:56 +01001580 if (local_err) {
1581 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001582 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001583 }
1584
1585 assert(bdrv_opt_mem_align(bs) != 0);
1586 assert(bdrv_min_mem_align(bs) != 0);
1587 assert(is_power_of_2(bs->bl.request_alignment));
1588
Kevin Wolf0f122642018-03-28 18:29:18 +02001589 for (i = 0; i < bs->quiesce_counter; i++) {
1590 if (drv->bdrv_co_drain_begin) {
1591 drv->bdrv_co_drain_begin(bs);
1592 }
1593 }
1594
Kevin Wolf01a56502017-01-18 15:51:56 +01001595 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001596open_failed:
1597 bs->drv = NULL;
1598 if (bs->file != NULL) {
1599 bdrv_unref_child(bs, bs->file);
1600 bs->file = NULL;
1601 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001602 g_free(bs->opaque);
1603 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001604 return ret;
1605}
1606
Kevin Wolf680c7f92017-01-18 17:16:41 +01001607BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1608 int flags, Error **errp)
1609{
1610 BlockDriverState *bs;
1611 int ret;
1612
1613 bs = bdrv_new();
1614 bs->open_flags = flags;
1615 bs->explicit_options = qdict_new();
1616 bs->options = qdict_new();
1617 bs->opaque = NULL;
1618
1619 update_options_from_flags(bs->options, flags);
1620
1621 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1622 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001623 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001624 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001625 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001626 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001627 bdrv_unref(bs);
1628 return NULL;
1629 }
1630
1631 return bs;
1632}
1633
Kevin Wolfc5f30142016-10-06 11:33:17 +02001634QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001635 .name = "bdrv_common",
1636 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1637 .desc = {
1638 {
1639 .name = "node-name",
1640 .type = QEMU_OPT_STRING,
1641 .help = "Node name of the block device node",
1642 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001643 {
1644 .name = "driver",
1645 .type = QEMU_OPT_STRING,
1646 .help = "Block driver to use for the node",
1647 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001648 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001649 .name = BDRV_OPT_CACHE_DIRECT,
1650 .type = QEMU_OPT_BOOL,
1651 .help = "Bypass software writeback cache on the host",
1652 },
1653 {
1654 .name = BDRV_OPT_CACHE_NO_FLUSH,
1655 .type = QEMU_OPT_BOOL,
1656 .help = "Ignore flush requests",
1657 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001658 {
1659 .name = BDRV_OPT_READ_ONLY,
1660 .type = QEMU_OPT_BOOL,
1661 .help = "Node is opened in read-only mode",
1662 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001663 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001664 .name = BDRV_OPT_AUTO_READ_ONLY,
1665 .type = QEMU_OPT_BOOL,
1666 .help = "Node can become read-only if opening read-write fails",
1667 },
1668 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001669 .name = "detect-zeroes",
1670 .type = QEMU_OPT_STRING,
1671 .help = "try to optimize zero writes (off, on, unmap)",
1672 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001673 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001674 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001675 .type = QEMU_OPT_STRING,
1676 .help = "discard operation (ignore/off, unmap/on)",
1677 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001678 {
1679 .name = BDRV_OPT_FORCE_SHARE,
1680 .type = QEMU_OPT_BOOL,
1681 .help = "always accept other writers (default: off)",
1682 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001683 { /* end of list */ }
1684 },
1685};
1686
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001687QemuOptsList bdrv_create_opts_simple = {
1688 .name = "simple-create-opts",
1689 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001690 .desc = {
1691 {
1692 .name = BLOCK_OPT_SIZE,
1693 .type = QEMU_OPT_SIZE,
1694 .help = "Virtual disk size"
1695 },
1696 {
1697 .name = BLOCK_OPT_PREALLOC,
1698 .type = QEMU_OPT_STRING,
1699 .help = "Preallocation mode (allowed values: off)"
1700 },
1701 { /* end of list */ }
1702 }
1703};
1704
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001705/*
Kevin Wolf57915332010-04-14 15:24:50 +02001706 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001707 *
1708 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001709 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001710static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001711 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001712{
1713 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001714 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001715 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001716 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001717 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001718 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001719 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001720 Error *local_err = NULL;
Kevin Wolf57915332010-04-14 15:24:50 +02001721
Paolo Bonzini64058752012-05-08 16:51:49 +02001722 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001723 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001724
Kevin Wolf62392eb2015-04-24 16:38:02 +02001725 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001726 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001727 ret = -EINVAL;
1728 goto fail_opts;
1729 }
1730
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001731 update_flags_from_options(&bs->open_flags, opts);
1732
Kevin Wolf62392eb2015-04-24 16:38:02 +02001733 driver_name = qemu_opt_get(opts, "driver");
1734 drv = bdrv_find_format(driver_name);
1735 assert(drv != NULL);
1736
Fam Zheng5a9347c2017-05-03 00:35:37 +08001737 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1738
1739 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1740 error_setg(errp,
1741 BDRV_OPT_FORCE_SHARE
1742 "=on can only be used with read-only images");
1743 ret = -EINVAL;
1744 goto fail_opts;
1745 }
1746
Kevin Wolf45673672013-04-22 17:48:40 +02001747 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001748 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001749 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001750 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001751 /*
1752 * Caution: while qdict_get_try_str() is fine, getting
1753 * non-string types would require more care. When @options
1754 * come from -blockdev or blockdev_add, its members are typed
1755 * according to the QAPI schema, but when they come from
1756 * -drive, they're all QString.
1757 */
Kevin Wolf45673672013-04-22 17:48:40 +02001758 filename = qdict_get_try_str(options, "filename");
1759 }
1760
Max Reitz4a008242017-04-13 18:06:24 +02001761 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001762 error_setg(errp, "The '%s' block driver requires a file name",
1763 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001764 ret = -EINVAL;
1765 goto fail_opts;
1766 }
1767
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001768 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1769 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001770
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001771 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001772
1773 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001774 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1775 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1776 } else {
1777 ret = -ENOTSUP;
1778 }
1779 if (ret < 0) {
1780 error_setg(errp,
1781 !bs->read_only && bdrv_is_whitelisted(drv, true)
1782 ? "Driver '%s' can only be used for read-only devices"
1783 : "Driver '%s' is not whitelisted",
1784 drv->format_name);
1785 goto fail_opts;
1786 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001787 }
Kevin Wolf57915332010-04-14 15:24:50 +02001788
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001789 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001790 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001791
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001792 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001793 if (!bs->read_only) {
1794 bdrv_enable_copy_on_read(bs);
1795 } else {
1796 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001797 ret = -EINVAL;
1798 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001799 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001800 }
1801
Alberto Garcia415bbca2018-10-03 13:23:13 +03001802 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001803 if (discard != NULL) {
1804 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1805 error_setg(errp, "Invalid discard option");
1806 ret = -EINVAL;
1807 goto fail_opts;
1808 }
1809 }
1810
Alberto Garcia543770b2018-09-06 12:37:09 +03001811 bs->detect_zeroes =
1812 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1813 if (local_err) {
1814 error_propagate(errp, local_err);
1815 ret = -EINVAL;
1816 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001817 }
1818
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001819 if (filename != NULL) {
1820 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1821 } else {
1822 bs->filename[0] = '\0';
1823 }
Max Reitz91af7012014-07-18 20:24:56 +02001824 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001825
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001826 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001827 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001828 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001829
Kevin Wolf01a56502017-01-18 15:51:56 +01001830 assert(!drv->bdrv_file_open || file == NULL);
1831 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001832 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001833 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001834 }
1835
Kevin Wolf18edf282015-04-07 17:12:56 +02001836 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001837 return 0;
1838
Kevin Wolf18edf282015-04-07 17:12:56 +02001839fail_opts:
1840 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001841 return ret;
1842}
1843
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001844static QDict *parse_json_filename(const char *filename, Error **errp)
1845{
1846 QObject *options_obj;
1847 QDict *options;
1848 int ret;
1849
1850 ret = strstart(filename, "json:", &filename);
1851 assert(ret);
1852
Markus Armbruster5577fff2017-02-28 22:26:59 +01001853 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001854 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001855 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001856 return NULL;
1857 }
1858
Max Reitz7dc847e2018-02-24 16:40:29 +01001859 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001860 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001861 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001862 error_setg(errp, "Invalid JSON object given");
1863 return NULL;
1864 }
1865
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001866 qdict_flatten(options);
1867
1868 return options;
1869}
1870
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001871static void parse_json_protocol(QDict *options, const char **pfilename,
1872 Error **errp)
1873{
1874 QDict *json_options;
1875 Error *local_err = NULL;
1876
1877 /* Parse json: pseudo-protocol */
1878 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1879 return;
1880 }
1881
1882 json_options = parse_json_filename(*pfilename, &local_err);
1883 if (local_err) {
1884 error_propagate(errp, local_err);
1885 return;
1886 }
1887
1888 /* Options given in the filename have lower priority than options
1889 * specified directly */
1890 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001891 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001892 *pfilename = NULL;
1893}
1894
Kevin Wolf57915332010-04-14 15:24:50 +02001895/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001896 * Fills in default options for opening images and converts the legacy
1897 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001898 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1899 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001900 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001901static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001902 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001903{
1904 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001905 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001906 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001907 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001908 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001909
Markus Armbruster129c7d12017-03-30 19:43:12 +02001910 /*
1911 * Caution: while qdict_get_try_str() is fine, getting non-string
1912 * types would require more care. When @options come from
1913 * -blockdev or blockdev_add, its members are typed according to
1914 * the QAPI schema, but when they come from -drive, they're all
1915 * QString.
1916 */
Max Reitz53a29512015-03-19 14:53:16 -04001917 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001918 if (drvname) {
1919 drv = bdrv_find_format(drvname);
1920 if (!drv) {
1921 error_setg(errp, "Unknown driver '%s'", drvname);
1922 return -ENOENT;
1923 }
1924 /* If the user has explicitly specified the driver, this choice should
1925 * override the BDRV_O_PROTOCOL flag */
1926 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001927 }
1928
1929 if (protocol) {
1930 *flags |= BDRV_O_PROTOCOL;
1931 } else {
1932 *flags &= ~BDRV_O_PROTOCOL;
1933 }
1934
Kevin Wolf91a097e2015-05-08 17:49:53 +02001935 /* Translate cache options from flags into options */
1936 update_options_from_flags(*options, *flags);
1937
Kevin Wolff54120f2014-05-26 11:09:59 +02001938 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001939 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001940 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001941 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001942 parse_filename = true;
1943 } else {
1944 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1945 "the same time");
1946 return -EINVAL;
1947 }
1948 }
1949
1950 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001951 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001952 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001953
Max Reitz053e1572015-08-26 19:47:51 +02001954 if (!drvname && protocol) {
1955 if (filename) {
1956 drv = bdrv_find_protocol(filename, parse_filename, errp);
1957 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001958 return -EINVAL;
1959 }
Max Reitz053e1572015-08-26 19:47:51 +02001960
1961 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001962 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001963 } else {
1964 error_setg(errp, "Must specify either driver or file");
1965 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001966 }
1967 }
1968
Kevin Wolf17b005f2014-05-27 10:50:29 +02001969 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001970
1971 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001972 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001973 drv->bdrv_parse_filename(filename, *options, &local_err);
1974 if (local_err) {
1975 error_propagate(errp, local_err);
1976 return -EINVAL;
1977 }
1978
1979 if (!drv->bdrv_needs_filename) {
1980 qdict_del(*options, "filename");
1981 }
1982 }
1983
1984 return 0;
1985}
1986
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03001987static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
1988 uint64_t new_used_perm,
1989 uint64_t new_shared_perm,
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03001990 Error **errp);
Fam Zhengc1cef672017-03-14 10:30:50 +08001991
Kevin Wolf148eb132017-09-14 14:32:04 +02001992typedef struct BlockReopenQueueEntry {
1993 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01001994 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02001995 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001996 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02001997} BlockReopenQueueEntry;
1998
1999/*
2000 * Return the flags that @bs will have after the reopens in @q have
2001 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2002 * return the current flags.
2003 */
2004static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2005{
2006 BlockReopenQueueEntry *entry;
2007
2008 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002009 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002010 if (entry->state.bs == bs) {
2011 return entry->state.flags;
2012 }
2013 }
2014 }
2015
2016 return bs->open_flags;
2017}
2018
2019/* Returns whether the image file can be written to after the reopen queue @q
2020 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002021static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2022 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002023{
2024 int flags = bdrv_reopen_get_flags(q, bs);
2025
2026 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2027}
2028
Max Reitzcc022142018-06-06 21:37:00 +02002029/*
2030 * Return whether the BDS can be written to. This is not necessarily
2031 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2032 * be written to but do not count as read-only images.
2033 */
2034bool bdrv_is_writable(BlockDriverState *bs)
2035{
2036 return bdrv_is_writable_after_reopen(bs, NULL);
2037}
2038
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002039static char *bdrv_child_user_desc(BdrvChild *c)
2040{
2041 if (c->klass->get_parent_desc) {
2042 return c->klass->get_parent_desc(c);
2043 }
2044
2045 return g_strdup("another user");
2046}
2047
2048static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2049{
2050 g_autofree char *user = NULL;
2051 g_autofree char *perm_names = NULL;
2052
2053 if ((b->perm & a->shared_perm) == b->perm) {
2054 return true;
2055 }
2056
2057 perm_names = bdrv_perm_names(b->perm & ~a->shared_perm);
2058 user = bdrv_child_user_desc(a);
2059 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2060 "allow '%s' on %s",
2061 user, a->name, perm_names, bdrv_get_node_name(b->bs));
2062
2063 return false;
2064}
2065
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002066static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002067{
2068 BdrvChild *a, *b;
2069
2070 /*
2071 * During the loop we'll look at each pair twice. That's correct because
2072 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2073 * directions.
2074 */
2075 QLIST_FOREACH(a, &bs->parents, next_parent) {
2076 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002077 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002078 continue;
2079 }
2080
2081 if (!bdrv_a_allow_b(a, b, errp)) {
2082 return true;
2083 }
2084 }
2085 }
2086
2087 return false;
2088}
2089
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002090static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02002091 BdrvChild *c, BdrvChildRole role,
2092 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002093 uint64_t parent_perm, uint64_t parent_shared,
2094 uint64_t *nperm, uint64_t *nshared)
2095{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002096 assert(bs->drv && bs->drv->bdrv_child_perm);
Max Reitze5d8a402020-05-13 13:05:44 +02002097 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002098 parent_perm, parent_shared,
2099 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002100 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002101 if (child_bs && child_bs->force_share) {
2102 *nshared = BLK_PERM_ALL;
2103 }
2104}
2105
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002106/*
2107 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2108 * nodes that are already in the @list, of course) so that final list is
2109 * topologically sorted. Return the result (GSList @list object is updated, so
2110 * don't use old reference after function call).
2111 *
2112 * On function start @list must be already topologically sorted and for any node
2113 * in the @list the whole subtree of the node must be in the @list as well. The
2114 * simplest way to satisfy this criteria: use only result of
2115 * bdrv_topological_dfs() or NULL as @list parameter.
2116 */
2117static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2118 BlockDriverState *bs)
2119{
2120 BdrvChild *child;
2121 g_autoptr(GHashTable) local_found = NULL;
2122
2123 if (!found) {
2124 assert(!list);
2125 found = local_found = g_hash_table_new(NULL, NULL);
2126 }
2127
2128 if (g_hash_table_contains(found, bs)) {
2129 return list;
2130 }
2131 g_hash_table_add(found, bs);
2132
2133 QLIST_FOREACH(child, &bs->children, next) {
2134 list = bdrv_topological_dfs(list, found, child->bs);
2135 }
2136
2137 return g_slist_prepend(list, bs);
2138}
2139
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002140static void bdrv_child_set_perm_commit(void *opaque)
2141{
2142 BdrvChild *c = opaque;
2143
2144 c->has_backup_perm = false;
2145}
2146
2147static void bdrv_child_set_perm_abort(void *opaque)
2148{
2149 BdrvChild *c = opaque;
2150 /*
2151 * We may have child->has_backup_perm unset at this point, as in case of
2152 * _check_ stage of permission update failure we may _check_ not the whole
2153 * subtree. Still, _abort_ is called on the whole subtree anyway.
2154 */
2155 if (c->has_backup_perm) {
2156 c->perm = c->backup_perm;
2157 c->shared_perm = c->backup_shared_perm;
2158 c->has_backup_perm = false;
2159 }
2160}
2161
2162static TransactionActionDrv bdrv_child_set_pem_drv = {
2163 .abort = bdrv_child_set_perm_abort,
2164 .commit = bdrv_child_set_perm_commit,
2165};
2166
2167/*
2168 * With tran=NULL needs to be followed by direct call to either
2169 * bdrv_child_set_perm_commit() or bdrv_child_set_perm_abort().
2170 *
2171 * With non-NULL tran needs to be followed by tran_abort() or tran_commit()
2172 * instead.
2173 */
2174static void bdrv_child_set_perm_safe(BdrvChild *c, uint64_t perm,
2175 uint64_t shared, Transaction *tran)
2176{
2177 if (!c->has_backup_perm) {
2178 c->has_backup_perm = true;
2179 c->backup_perm = c->perm;
2180 c->backup_shared_perm = c->shared_perm;
2181 }
2182 /*
2183 * Note: it's OK if c->has_backup_perm was already set, as we can find the
2184 * same c twice during check_perm procedure
2185 */
2186
2187 c->perm = perm;
2188 c->shared_perm = shared;
2189
2190 if (tran) {
2191 tran_add(tran, &bdrv_child_set_pem_drv, c);
2192 }
2193}
2194
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002195static void bdrv_drv_set_perm_commit(void *opaque)
2196{
2197 BlockDriverState *bs = opaque;
2198 uint64_t cumulative_perms, cumulative_shared_perms;
2199
2200 if (bs->drv->bdrv_set_perm) {
2201 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2202 &cumulative_shared_perms);
2203 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2204 }
2205}
2206
2207static void bdrv_drv_set_perm_abort(void *opaque)
2208{
2209 BlockDriverState *bs = opaque;
2210
2211 if (bs->drv->bdrv_abort_perm_update) {
2212 bs->drv->bdrv_abort_perm_update(bs);
2213 }
2214}
2215
2216TransactionActionDrv bdrv_drv_set_perm_drv = {
2217 .abort = bdrv_drv_set_perm_abort,
2218 .commit = bdrv_drv_set_perm_commit,
2219};
2220
2221static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2222 uint64_t shared_perm, Transaction *tran,
2223 Error **errp)
2224{
2225 if (!bs->drv) {
2226 return 0;
2227 }
2228
2229 if (bs->drv->bdrv_check_perm) {
2230 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2231 if (ret < 0) {
2232 return ret;
2233 }
2234 }
2235
2236 if (tran) {
2237 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2238 }
2239
2240 return 0;
2241}
2242
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002243typedef struct BdrvReplaceChildState {
2244 BdrvChild *child;
2245 BlockDriverState *old_bs;
2246} BdrvReplaceChildState;
2247
2248static void bdrv_replace_child_commit(void *opaque)
2249{
2250 BdrvReplaceChildState *s = opaque;
2251
2252 bdrv_unref(s->old_bs);
2253}
2254
2255static void bdrv_replace_child_abort(void *opaque)
2256{
2257 BdrvReplaceChildState *s = opaque;
2258 BlockDriverState *new_bs = s->child->bs;
2259
2260 /* old_bs reference is transparently moved from @s to @s->child */
2261 bdrv_replace_child_noperm(s->child, s->old_bs);
2262 bdrv_unref(new_bs);
2263}
2264
2265static TransactionActionDrv bdrv_replace_child_drv = {
2266 .commit = bdrv_replace_child_commit,
2267 .abort = bdrv_replace_child_abort,
2268 .clean = g_free,
2269};
2270
2271/*
2272 * bdrv_replace_child_safe
2273 *
2274 * Note: real unref of old_bs is done only on commit.
2275 */
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002276static void bdrv_replace_child_safe(BdrvChild *child, BlockDriverState *new_bs,
2277 Transaction *tran)
2278{
2279 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2280 *s = (BdrvReplaceChildState) {
2281 .child = child,
2282 .old_bs = child->bs,
2283 };
2284 tran_add(tran, &bdrv_replace_child_drv, s);
2285
2286 if (new_bs) {
2287 bdrv_ref(new_bs);
2288 }
2289 bdrv_replace_child_noperm(child, new_bs);
2290 /* old_bs reference is transparently moved from @child to @s */
2291}
2292
Kevin Wolf33a610c2016-12-15 13:04:20 +01002293/*
2294 * Check whether permissions on this node can be changed in a way that
2295 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
2296 * permissions of all its parents. This involves checking whether all necessary
2297 * permission changes to child nodes can be performed.
2298 *
2299 * A call to this function must always be followed by a call to bdrv_set_perm()
2300 * or bdrv_abort_perm_update().
2301 */
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002302static int bdrv_node_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
2303 uint64_t cumulative_perms,
2304 uint64_t cumulative_shared_perms,
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002305 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002306{
2307 BlockDriver *drv = bs->drv;
2308 BdrvChild *c;
2309 int ret;
2310
2311 /* Write permissions never work with read-only images */
2312 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002313 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002314 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002315 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2316 error_setg(errp, "Block node is read-only");
2317 } else {
2318 uint64_t current_perms, current_shared;
2319 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2320 if (current_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
2321 error_setg(errp, "Cannot make block node read-only, there is "
2322 "a writer on it");
2323 } else {
2324 error_setg(errp, "Cannot make block node read-only and create "
2325 "a writer on it");
2326 }
2327 }
2328
Kevin Wolf33a610c2016-12-15 13:04:20 +01002329 return -EPERM;
2330 }
2331
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002332 /*
2333 * Unaligned requests will automatically be aligned to bl.request_alignment
2334 * and without RESIZE we can't extend requests to write to space beyond the
2335 * end of the image, so it's required that the image size is aligned.
2336 */
2337 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2338 !(cumulative_perms & BLK_PERM_RESIZE))
2339 {
2340 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2341 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2342 "Image size is not a multiple of request "
2343 "alignment");
2344 return -EPERM;
2345 }
2346 }
2347
Kevin Wolf33a610c2016-12-15 13:04:20 +01002348 /* Check this node */
2349 if (!drv) {
2350 return 0;
2351 }
2352
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002353 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002354 errp);
2355 if (ret < 0) {
2356 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002357 }
2358
Kevin Wolf78e421c2016-12-20 23:25:12 +01002359 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002360 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002361 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002362 return 0;
2363 }
2364
2365 /* Check all children */
2366 QLIST_FOREACH(c, &bs->children, next) {
2367 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002368
Max Reitze5d8a402020-05-13 13:05:44 +02002369 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002370 cumulative_perms, cumulative_shared_perms,
2371 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002372 bdrv_child_set_perm_safe(c, cur_perm, cur_shared, tran);
2373 }
2374
2375 return 0;
2376}
2377
2378/*
2379 * If use_cumulative_perms is true, use cumulative_perms and
2380 * cumulative_shared_perms for first element of the list. Otherwise just refresh
2381 * all permissions.
2382 */
2383static int bdrv_check_perm_common(GSList *list, BlockReopenQueue *q,
2384 bool use_cumulative_perms,
2385 uint64_t cumulative_perms,
2386 uint64_t cumulative_shared_perms,
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002387 Transaction *tran, Error **errp)
2388{
2389 int ret;
2390 BlockDriverState *bs;
2391
2392 if (use_cumulative_perms) {
2393 bs = list->data;
2394
2395 ret = bdrv_node_check_perm(bs, q, cumulative_perms,
2396 cumulative_shared_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002397 tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002398 if (ret < 0) {
2399 return ret;
2400 }
2401
2402 list = list->next;
2403 }
2404
2405 for ( ; list; list = list->next) {
2406 bs = list->data;
2407
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002408 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002409 return -EINVAL;
2410 }
2411
2412 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2413 &cumulative_shared_perms);
2414
2415 ret = bdrv_node_check_perm(bs, q, cumulative_perms,
2416 cumulative_shared_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002417 tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002418 if (ret < 0) {
2419 return ret;
2420 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002421 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002422
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002423 return 0;
2424}
2425
2426static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
2427 uint64_t cumulative_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002428 uint64_t cumulative_shared_perms, Error **errp)
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002429{
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002430 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2431 return bdrv_check_perm_common(list, q, true, cumulative_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002432 cumulative_shared_perms, NULL, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002433}
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002434
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002435static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2436 Transaction *tran, Error **errp)
2437{
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002438 return bdrv_check_perm_common(list, q, false, 0, 0, tran, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002439}
2440
2441/*
2442 * Notifies drivers that after a previous bdrv_check_perm() call, the
2443 * permission update is not performed and any preparations made for it (e.g.
2444 * taken file locks) need to be undone.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002445 */
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002446static void bdrv_node_abort_perm_update(BlockDriverState *bs)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002447{
2448 BlockDriver *drv = bs->drv;
2449 BdrvChild *c;
2450
2451 if (!drv) {
2452 return;
2453 }
2454
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002455 bdrv_drv_set_perm_abort(bs);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002456
2457 QLIST_FOREACH(c, &bs->children, next) {
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002458 bdrv_child_set_perm_abort(c);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002459 }
2460}
2461
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002462static void bdrv_list_abort_perm_update(GSList *list)
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002463{
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002464 for ( ; list; list = list->next) {
2465 bdrv_node_abort_perm_update((BlockDriverState *)list->data);
2466 }
2467}
2468
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002469static void bdrv_abort_perm_update(BlockDriverState *bs)
2470{
2471 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2472 return bdrv_list_abort_perm_update(list);
2473}
2474
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002475static void bdrv_node_set_perm(BlockDriverState *bs)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002476{
2477 BlockDriver *drv = bs->drv;
2478 BdrvChild *c;
2479
2480 if (!drv) {
2481 return;
2482 }
2483
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002484 bdrv_drv_set_perm_commit(bs);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002485
Kevin Wolf78e421c2016-12-20 23:25:12 +01002486 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002487 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002488 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002489 return;
2490 }
2491
2492 /* Update all children */
2493 QLIST_FOREACH(c, &bs->children, next) {
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002494 bdrv_child_set_perm_commit(c);
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002495 }
2496}
2497
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002498static void bdrv_list_set_perm(GSList *list)
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002499{
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002500 for ( ; list; list = list->next) {
2501 bdrv_node_set_perm((BlockDriverState *)list->data);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002502 }
2503}
2504
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002505static void bdrv_set_perm(BlockDriverState *bs)
2506{
2507 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2508 return bdrv_list_set_perm(list);
2509}
2510
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002511void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2512 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002513{
2514 BdrvChild *c;
2515 uint64_t cumulative_perms = 0;
2516 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2517
2518 QLIST_FOREACH(c, &bs->parents, next_parent) {
2519 cumulative_perms |= c->perm;
2520 cumulative_shared_perms &= c->shared_perm;
2521 }
2522
2523 *perm = cumulative_perms;
2524 *shared_perm = cumulative_shared_perms;
2525}
2526
Fam Zheng51761962017-05-03 00:35:36 +08002527char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002528{
2529 struct perm_name {
2530 uint64_t perm;
2531 const char *name;
2532 } permissions[] = {
2533 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2534 { BLK_PERM_WRITE, "write" },
2535 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2536 { BLK_PERM_RESIZE, "resize" },
2537 { BLK_PERM_GRAPH_MOD, "change children" },
2538 { 0, NULL }
2539 };
2540
Alberto Garciae2a74232020-01-10 18:15:18 +01002541 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002542 struct perm_name *p;
2543
2544 for (p = permissions; p->name; p++) {
2545 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002546 if (result->len > 0) {
2547 g_string_append(result, ", ");
2548 }
2549 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002550 }
2551 }
2552
Alberto Garciae2a74232020-01-10 18:15:18 +01002553 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002554}
2555
Kevin Wolf33a610c2016-12-15 13:04:20 +01002556/*
2557 * Checks whether a new reference to @bs can be added if the new user requires
Kevin Wolf46181122017-03-06 15:00:13 +01002558 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
2559 * set, the BdrvChild objects in this list are ignored in the calculations;
2560 * this allows checking permission updates for an existing reference.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002561 *
2562 * Needs to be followed by a call to either bdrv_set_perm() or
2563 * bdrv_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02002564static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
2565 uint64_t new_used_perm,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002566 uint64_t new_shared_perm,
Max Reitz9eab1542019-05-22 19:03:50 +02002567 Error **errp)
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002568{
2569 BdrvChild *c;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002570 uint64_t cumulative_perms = new_used_perm;
2571 uint64_t cumulative_shared_perms = new_shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002572
Max Reitz9eab1542019-05-22 19:03:50 +02002573
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002574 /* There is no reason why anyone couldn't tolerate write_unchanged */
2575 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
2576
2577 QLIST_FOREACH(c, &bs->parents, next_parent) {
Kevin Wolfd0833192017-01-16 18:26:20 +01002578 if ((new_used_perm & c->shared_perm) != new_used_perm) {
2579 char *user = bdrv_child_user_desc(c);
2580 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002581
Kevin Wolfd0833192017-01-16 18:26:20 +01002582 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2583 "allow '%s' on %s",
2584 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2585 g_free(user);
2586 g_free(perm_names);
2587 return -EPERM;
2588 }
2589
2590 if ((c->perm & new_shared_perm) != c->perm) {
2591 char *user = bdrv_child_user_desc(c);
2592 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002593
Kevin Wolfd0833192017-01-16 18:26:20 +01002594 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
2595 "'%s' on %s",
2596 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2597 g_free(user);
2598 g_free(perm_names);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002599 return -EPERM;
2600 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002601
2602 cumulative_perms |= c->perm;
2603 cumulative_shared_perms &= c->shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002604 }
2605
Kevin Wolf3121fb42017-09-14 14:42:12 +02002606 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002607 errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002608}
2609
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002610static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002611{
2612 int ret;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002613 Transaction *tran = tran_new();
2614 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002615
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002616 ret = bdrv_list_refresh_perms(list, NULL, tran, errp);
2617 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002618
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002619 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002620}
2621
Kevin Wolf33a610c2016-12-15 13:04:20 +01002622int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2623 Error **errp)
2624{
Max Reitz10467792019-05-22 19:03:51 +02002625 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002626 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002627 int ret;
2628
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002629 bdrv_child_set_perm_safe(c, perm, shared, tran);
2630
2631 ret = bdrv_refresh_perms(c->bs, &local_err);
2632
2633 tran_finalize(tran, ret);
2634
Kevin Wolf33a610c2016-12-15 13:04:20 +01002635 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002636 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2637 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002638 error_propagate(errp, local_err);
2639 } else {
2640 /*
2641 * Our caller may intend to only loosen restrictions and
2642 * does not expect this function to fail. Errors are not
2643 * fatal in such a case, so we can just hide them from our
2644 * caller.
2645 */
2646 error_free(local_err);
2647 ret = 0;
2648 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002649 }
2650
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002651 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002652}
2653
Max Reitzc1087f12019-05-22 19:03:46 +02002654int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2655{
2656 uint64_t parent_perms, parent_shared;
2657 uint64_t perms, shared;
2658
2659 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002660 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002661 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002662
2663 return bdrv_child_try_set_perm(c, perms, shared, errp);
2664}
2665
Max Reitz87278af2020-05-13 13:05:40 +02002666/*
2667 * Default implementation for .bdrv_child_perm() for block filters:
2668 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2669 * filtered child.
2670 */
2671static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002672 BdrvChildRole role,
2673 BlockReopenQueue *reopen_queue,
2674 uint64_t perm, uint64_t shared,
2675 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002676{
Kevin Wolfe444fa82019-08-02 15:59:41 +02002677 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2678 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002679}
2680
Max Reitz70082db2020-05-13 13:05:26 +02002681static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002682 BdrvChildRole role,
2683 BlockReopenQueue *reopen_queue,
2684 uint64_t perm, uint64_t shared,
2685 uint64_t *nperm, uint64_t *nshared)
2686{
Max Reitze5d8a402020-05-13 13:05:44 +02002687 assert(role & BDRV_CHILD_COW);
Max Reitz70082db2020-05-13 13:05:26 +02002688
2689 /*
2690 * We want consistent read from backing files if the parent needs it.
2691 * No other operations are performed on backing files.
2692 */
2693 perm &= BLK_PERM_CONSISTENT_READ;
2694
2695 /*
2696 * If the parent can deal with changing data, we're okay with a
2697 * writable and resizable backing file.
2698 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2699 */
2700 if (shared & BLK_PERM_WRITE) {
2701 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2702 } else {
2703 shared = 0;
2704 }
2705
2706 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2707 BLK_PERM_WRITE_UNCHANGED;
2708
2709 if (bs->open_flags & BDRV_O_INACTIVE) {
2710 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2711 }
2712
2713 *nperm = perm;
2714 *nshared = shared;
2715}
2716
Max Reitz6f838a42020-05-13 13:05:27 +02002717static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002718 BdrvChildRole role,
2719 BlockReopenQueue *reopen_queue,
2720 uint64_t perm, uint64_t shared,
2721 uint64_t *nperm, uint64_t *nshared)
2722{
2723 int flags;
2724
Max Reitze5d8a402020-05-13 13:05:44 +02002725 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002726
2727 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2728
2729 /*
2730 * Apart from the modifications below, the same permissions are
2731 * forwarded and left alone as for filters
2732 */
Max Reitze5d8a402020-05-13 13:05:44 +02002733 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002734 perm, shared, &perm, &shared);
2735
Max Reitzf8890542020-05-13 13:05:28 +02002736 if (role & BDRV_CHILD_METADATA) {
2737 /* Format drivers may touch metadata even if the guest doesn't write */
2738 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2739 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2740 }
2741
2742 /*
2743 * bs->file always needs to be consistent because of the
2744 * metadata. We can never allow other users to resize or write
2745 * to it.
2746 */
2747 if (!(flags & BDRV_O_NO_IO)) {
2748 perm |= BLK_PERM_CONSISTENT_READ;
2749 }
2750 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002751 }
2752
Max Reitzf8890542020-05-13 13:05:28 +02002753 if (role & BDRV_CHILD_DATA) {
2754 /*
2755 * Technically, everything in this block is a subset of the
2756 * BDRV_CHILD_METADATA path taken above, and so this could
2757 * be an "else if" branch. However, that is not obvious, and
2758 * this function is not performance critical, therefore we let
2759 * this be an independent "if".
2760 */
2761
2762 /*
2763 * We cannot allow other users to resize the file because the
2764 * format driver might have some assumptions about the size
2765 * (e.g. because it is stored in metadata, or because the file
2766 * is split into fixed-size data files).
2767 */
2768 shared &= ~BLK_PERM_RESIZE;
2769
2770 /*
2771 * WRITE_UNCHANGED often cannot be performed as such on the
2772 * data file. For example, the qcow2 driver may still need to
2773 * write copied clusters on copy-on-read.
2774 */
2775 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2776 perm |= BLK_PERM_WRITE;
2777 }
2778
2779 /*
2780 * If the data file is written to, the format driver may
2781 * expect to be able to resize it by writing beyond the EOF.
2782 */
2783 if (perm & BLK_PERM_WRITE) {
2784 perm |= BLK_PERM_RESIZE;
2785 }
Max Reitz6f838a42020-05-13 13:05:27 +02002786 }
Max Reitz6f838a42020-05-13 13:05:27 +02002787
2788 if (bs->open_flags & BDRV_O_INACTIVE) {
2789 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2790 }
2791
2792 *nperm = perm;
2793 *nshared = shared;
2794}
2795
Max Reitz2519f542020-05-13 13:05:29 +02002796void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002797 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002798 uint64_t perm, uint64_t shared,
2799 uint64_t *nperm, uint64_t *nshared)
2800{
Max Reitz2519f542020-05-13 13:05:29 +02002801 if (role & BDRV_CHILD_FILTERED) {
2802 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2803 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002804 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002805 perm, shared, nperm, nshared);
2806 } else if (role & BDRV_CHILD_COW) {
2807 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002808 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002809 perm, shared, nperm, nshared);
2810 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002811 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002812 perm, shared, nperm, nshared);
2813 } else {
2814 g_assert_not_reached();
2815 }
2816}
2817
Max Reitz7b1d9c42019-11-08 13:34:51 +01002818uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2819{
2820 static const uint64_t permissions[] = {
2821 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2822 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2823 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2824 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2825 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2826 };
2827
2828 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2829 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2830
2831 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2832
2833 return permissions[qapi_perm];
2834}
2835
Kevin Wolf8ee03992017-03-06 13:45:28 +01002836static void bdrv_replace_child_noperm(BdrvChild *child,
2837 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002838{
2839 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002840 int new_bs_quiesce_counter;
2841 int drain_saldo;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002842
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002843 assert(!child->frozen);
2844
Fam Zhengbb2614e2017-04-07 14:54:10 +08002845 if (old_bs && new_bs) {
2846 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2847 }
Max Reitzdebc2922019-07-22 15:33:44 +02002848
2849 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2850 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2851
2852 /*
2853 * If the new child node is drained but the old one was not, flush
2854 * all outstanding requests to the old child node.
2855 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002856 while (drain_saldo > 0 && child->klass->drained_begin) {
Max Reitzdebc2922019-07-22 15:33:44 +02002857 bdrv_parent_drained_begin_single(child, true);
2858 drain_saldo--;
2859 }
2860
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002861 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002862 /* Detach first so that the recursive drain sections coming from @child
2863 * are already gone and we only end the drain sections that came from
2864 * elsewhere. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002865 if (child->klass->detach) {
2866 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002867 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002868 QLIST_REMOVE(child, next_parent);
2869 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002870
2871 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002872
2873 if (new_bs) {
2874 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzdebc2922019-07-22 15:33:44 +02002875
2876 /*
2877 * Detaching the old node may have led to the new node's
2878 * quiesce_counter having been decreased. Not a problem, we
2879 * just need to recognize this here and then invoke
2880 * drained_end appropriately more often.
2881 */
2882 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2883 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002884
Kevin Wolfd736f112017-12-18 16:05:48 +01002885 /* Attach only after starting new drained sections, so that recursive
2886 * drain sections coming from @child don't get an extra .drained_begin
2887 * callback. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002888 if (child->klass->attach) {
2889 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002890 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002891 }
Max Reitzdebc2922019-07-22 15:33:44 +02002892
2893 /*
2894 * If the old child node was drained but the new one is not, allow
2895 * requests to come in only after the new node has been attached.
2896 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002897 while (drain_saldo < 0 && child->klass->drained_end) {
Max Reitzdebc2922019-07-22 15:33:44 +02002898 bdrv_parent_drained_end_single(child);
2899 drain_saldo++;
2900 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002901}
2902
Kevin Wolf466787f2017-03-08 14:44:07 +01002903/*
2904 * Updates @child to change its reference to point to @new_bs, including
zhaolichange3a6e0d2020-09-17 15:50:20 +08002905 * checking and applying the necessary permission updates both to the old node
Kevin Wolf466787f2017-03-08 14:44:07 +01002906 * and to @new_bs.
2907 *
2908 * NULL is passed as @new_bs for removing the reference before freeing @child.
2909 *
2910 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2911 * function uses bdrv_set_perm() to update the permissions according to the new
2912 * reference that @new_bs gets.
Max Reitz7b99a262019-06-12 16:07:11 +02002913 *
2914 * Callers must ensure that child->frozen is false.
Kevin Wolf466787f2017-03-08 14:44:07 +01002915 */
2916static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolf8ee03992017-03-06 13:45:28 +01002917{
2918 BlockDriverState *old_bs = child->bs;
Kevin Wolf8ee03992017-03-06 13:45:28 +01002919
Max Reitz7b99a262019-06-12 16:07:11 +02002920 /* Asserts that child->frozen == false */
Kevin Wolf8aecf1d2017-08-03 17:02:57 +02002921 bdrv_replace_child_noperm(child, new_bs);
2922
Max Reitz87ace5f2019-05-22 19:03:49 +02002923 /*
2924 * Start with the new node's permissions. If @new_bs is a (direct
2925 * or indirect) child of @old_bs, we must complete the permission
2926 * update on @new_bs before we loosen the restrictions on @old_bs.
2927 * Otherwise, bdrv_check_perm() on @old_bs would re-initiate
2928 * updating the permissions of @new_bs, and thus not purely loosen
2929 * restrictions.
2930 */
2931 if (new_bs) {
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03002932 bdrv_set_perm(new_bs);
Max Reitz87ace5f2019-05-22 19:03:49 +02002933 }
2934
Kevin Wolf8ee03992017-03-06 13:45:28 +01002935 if (old_bs) {
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002936 /*
2937 * Update permissions for old node. We're just taking a parent away, so
2938 * we're loosening restrictions. Errors of permission update are not
2939 * fatal in this case, ignore them.
2940 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002941 bdrv_refresh_perms(old_bs, NULL);
Kevin Wolfad943dc2019-04-24 18:04:42 +02002942
2943 /* When the parent requiring a non-default AioContext is removed, the
2944 * node moves back to the main AioContext */
2945 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
Kevin Wolf8ee03992017-03-06 13:45:28 +01002946 }
Kevin Wolff54120f2014-05-26 11:09:59 +02002947}
2948
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03002949static void bdrv_child_free(void *opaque)
2950{
2951 BdrvChild *c = opaque;
2952
2953 g_free(c->name);
2954 g_free(c);
2955}
2956
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002957static void bdrv_remove_empty_child(BdrvChild *child)
2958{
2959 assert(!child->bs);
2960 QLIST_SAFE_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03002961 bdrv_child_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002962}
2963
2964typedef struct BdrvAttachChildCommonState {
2965 BdrvChild **child;
2966 AioContext *old_parent_ctx;
2967 AioContext *old_child_ctx;
2968} BdrvAttachChildCommonState;
2969
2970static void bdrv_attach_child_common_abort(void *opaque)
2971{
2972 BdrvAttachChildCommonState *s = opaque;
2973 BdrvChild *child = *s->child;
2974 BlockDriverState *bs = child->bs;
2975
2976 bdrv_replace_child_noperm(child, NULL);
2977
2978 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2979 bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort);
2980 }
2981
2982 if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) {
2983 GSList *ignore = g_slist_prepend(NULL, child);
2984
2985 child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore,
2986 &error_abort);
2987 g_slist_free(ignore);
2988 ignore = g_slist_prepend(NULL, child);
2989 child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore);
2990
2991 g_slist_free(ignore);
2992 }
2993
2994 bdrv_unref(bs);
2995 bdrv_remove_empty_child(child);
2996 *s->child = NULL;
2997}
2998
2999static TransactionActionDrv bdrv_attach_child_common_drv = {
3000 .abort = bdrv_attach_child_common_abort,
3001 .clean = g_free,
3002};
3003
3004/*
3005 * Common part of attaching bdrv child to bs or to blk or to job
3006 */
3007static int bdrv_attach_child_common(BlockDriverState *child_bs,
3008 const char *child_name,
3009 const BdrvChildClass *child_class,
3010 BdrvChildRole child_role,
3011 uint64_t perm, uint64_t shared_perm,
3012 void *opaque, BdrvChild **child,
3013 Transaction *tran, Error **errp)
3014{
3015 BdrvChild *new_child;
3016 AioContext *parent_ctx;
3017 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
3018
3019 assert(child);
3020 assert(*child == NULL);
3021
3022 new_child = g_new(BdrvChild, 1);
3023 *new_child = (BdrvChild) {
3024 .bs = NULL,
3025 .name = g_strdup(child_name),
3026 .klass = child_class,
3027 .role = child_role,
3028 .perm = perm,
3029 .shared_perm = shared_perm,
3030 .opaque = opaque,
3031 };
3032
3033 /*
3034 * If the AioContexts don't match, first try to move the subtree of
3035 * child_bs into the AioContext of the new parent. If this doesn't work,
3036 * try moving the parent into the AioContext of child_bs instead.
3037 */
3038 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3039 if (child_ctx != parent_ctx) {
3040 Error *local_err = NULL;
3041 int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err);
3042
3043 if (ret < 0 && child_class->can_set_aio_ctx) {
3044 GSList *ignore = g_slist_prepend(NULL, new_child);
3045 if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore,
3046 NULL))
3047 {
3048 error_free(local_err);
3049 ret = 0;
3050 g_slist_free(ignore);
3051 ignore = g_slist_prepend(NULL, new_child);
3052 child_class->set_aio_ctx(new_child, child_ctx, &ignore);
3053 }
3054 g_slist_free(ignore);
3055 }
3056
3057 if (ret < 0) {
3058 error_propagate(errp, local_err);
3059 bdrv_remove_empty_child(new_child);
3060 return ret;
3061 }
3062 }
3063
3064 bdrv_ref(child_bs);
3065 bdrv_replace_child_noperm(new_child, child_bs);
3066
3067 *child = new_child;
3068
3069 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3070 *s = (BdrvAttachChildCommonState) {
3071 .child = child,
3072 .old_parent_ctx = parent_ctx,
3073 .old_child_ctx = child_ctx,
3074 };
3075 tran_add(tran, &bdrv_attach_child_common_drv, s);
3076
3077 return 0;
3078}
3079
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003080static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3081 BlockDriverState *child_bs,
3082 const char *child_name,
3083 const BdrvChildClass *child_class,
3084 BdrvChildRole child_role,
3085 BdrvChild **child,
3086 Transaction *tran,
3087 Error **errp)
3088{
3089 int ret;
3090 uint64_t perm, shared_perm;
3091
3092 assert(parent_bs->drv);
3093
3094 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3095 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3096 perm, shared_perm, &perm, &shared_perm);
3097
3098 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3099 child_role, perm, shared_perm, parent_bs,
3100 child, tran, errp);
3101 if (ret < 0) {
3102 return ret;
3103 }
3104
3105 QLIST_INSERT_HEAD(&parent_bs->children, *child, next);
3106 /*
3107 * child is removed in bdrv_attach_child_common_abort(), so don't care to
3108 * abort this change separately.
3109 */
3110
3111 return 0;
3112}
3113
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003114static void bdrv_detach_child(BdrvChild *child)
3115{
3116 bdrv_replace_child(child, NULL);
3117 bdrv_remove_empty_child(child);
3118}
3119
Alberto Garciab441dc72019-05-13 16:46:18 +03003120/*
3121 * This function steals the reference to child_bs from the caller.
3122 * That reference is later dropped by bdrv_root_unref_child().
3123 *
3124 * On failure NULL is returned, errp is set and the reference to
3125 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003126 *
3127 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3128 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03003129 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003130BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3131 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003132 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003133 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003134 uint64_t perm, uint64_t shared_perm,
3135 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02003136{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003137 int ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003138 BdrvChild *child = NULL;
3139 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003140
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003141 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3142 child_role, perm, shared_perm, opaque,
3143 &child, tran, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003144 if (ret < 0) {
Alberto Garciab441dc72019-05-13 16:46:18 +03003145 bdrv_unref(child_bs);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003146 return NULL;
3147 }
3148
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003149 ret = bdrv_refresh_perms(child_bs, errp);
3150 tran_finalize(tran, ret);
Kevin Wolfdf581792015-06-15 11:53:47 +02003151
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003152 bdrv_unref(child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003153 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02003154}
3155
Alberto Garciab441dc72019-05-13 16:46:18 +03003156/*
3157 * This function transfers the reference to child_bs from the caller
3158 * to parent_bs. That reference is later dropped by parent_bs on
3159 * bdrv_close() or if someone calls bdrv_unref_child().
3160 *
3161 * On failure NULL is returned, errp is set and the reference to
3162 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003163 *
3164 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3165 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03003166 */
Wen Congyang98292c62016-05-10 15:36:38 +08003167BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3168 BlockDriverState *child_bs,
3169 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003170 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003171 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003172 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003173{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003174 int ret;
3175 BdrvChild *child = NULL;
3176 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003177
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003178 ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class,
3179 child_role, &child, tran, errp);
3180 if (ret < 0) {
3181 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003182 }
3183
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003184 ret = bdrv_refresh_perms(parent_bs, errp);
3185 if (ret < 0) {
3186 goto out;
3187 }
3188
3189out:
3190 tran_finalize(tran, ret);
3191
3192 bdrv_unref(child_bs);
3193
Kevin Wolff21d96d2016-03-08 13:47:46 +01003194 return child;
3195}
3196
Max Reitz7b99a262019-06-12 16:07:11 +02003197/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003198void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003199{
Kevin Wolf779020c2015-10-13 14:09:44 +02003200 BlockDriverState *child_bs;
3201
Kevin Wolff21d96d2016-03-08 13:47:46 +01003202 child_bs = child->bs;
3203 bdrv_detach_child(child);
3204 bdrv_unref(child_bs);
3205}
3206
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003207typedef struct BdrvSetInheritsFrom {
3208 BlockDriverState *bs;
3209 BlockDriverState *old_inherits_from;
3210} BdrvSetInheritsFrom;
3211
3212static void bdrv_set_inherits_from_abort(void *opaque)
3213{
3214 BdrvSetInheritsFrom *s = opaque;
3215
3216 s->bs->inherits_from = s->old_inherits_from;
3217}
3218
3219static TransactionActionDrv bdrv_set_inherits_from_drv = {
3220 .abort = bdrv_set_inherits_from_abort,
3221 .clean = g_free,
3222};
3223
3224/* @tran is allowed to be NULL. In this case no rollback is possible */
3225static void bdrv_set_inherits_from(BlockDriverState *bs,
3226 BlockDriverState *new_inherits_from,
3227 Transaction *tran)
3228{
3229 if (tran) {
3230 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3231
3232 *s = (BdrvSetInheritsFrom) {
3233 .bs = bs,
3234 .old_inherits_from = bs->inherits_from,
3235 };
3236
3237 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3238 }
3239
3240 bs->inherits_from = new_inherits_from;
3241}
3242
Max Reitz3cf746b2019-07-03 19:28:07 +02003243/**
3244 * Clear all inherits_from pointers from children and grandchildren of
3245 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003246 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003247 */
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003248static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3249 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003250{
Max Reitz3cf746b2019-07-03 19:28:07 +02003251 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003252
Max Reitz3cf746b2019-07-03 19:28:07 +02003253 if (child->bs->inherits_from == root) {
3254 /*
3255 * Remove inherits_from only when the last reference between root and
3256 * child->bs goes away.
3257 */
3258 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003259 if (c != child && c->bs == child->bs) {
3260 break;
3261 }
3262 }
3263 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003264 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003265 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003266 }
3267
Max Reitz3cf746b2019-07-03 19:28:07 +02003268 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003269 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003270 }
3271}
3272
Max Reitz7b99a262019-06-12 16:07:11 +02003273/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003274void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3275{
3276 if (child == NULL) {
3277 return;
3278 }
3279
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003280 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003281 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003282}
3283
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003284
3285static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3286{
3287 BdrvChild *c;
3288 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003289 if (c->klass->change_media) {
3290 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003291 }
3292 }
3293}
3294
Alberto Garcia0065c452018-10-31 18:16:37 +02003295/* Return true if you can reach parent going through child->inherits_from
3296 * recursively. If parent or child are NULL, return false */
3297static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3298 BlockDriverState *parent)
3299{
3300 while (child && child != parent) {
3301 child = child->inherits_from;
3302 }
3303
3304 return child != NULL;
3305}
3306
Kevin Wolf5db15a52015-09-14 15:33:33 +02003307/*
Max Reitz25191e52020-05-13 13:05:33 +02003308 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3309 * mostly used for COW backing children (role = COW), but also for
3310 * filtered children (role = FILTERED | PRIMARY).
3311 */
3312static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3313{
3314 if (bs->drv && bs->drv->is_filter) {
3315 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3316 } else {
3317 return BDRV_CHILD_COW;
3318 }
3319}
3320
3321/*
Max Reitz9ee413c2019-06-12 18:42:34 +02003322 * Sets the bs->backing link of a BDS. A new reference is created; callers
Kevin Wolf5db15a52015-09-14 15:33:33 +02003323 * which don't need their own reference any more must call bdrv_unref().
3324 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003325int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3326 Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003327{
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003328 int ret = 0;
Alberto Garcia0065c452018-10-31 18:16:37 +02003329 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
3330 bdrv_inherits_from_recursive(backing_hd, bs);
3331
Max Reitz9ee413c2019-06-12 18:42:34 +02003332 if (bdrv_is_backing_chain_frozen(bs, child_bs(bs->backing), errp)) {
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003333 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003334 }
3335
Kevin Wolf5db15a52015-09-14 15:33:33 +02003336 if (backing_hd) {
3337 bdrv_ref(backing_hd);
3338 }
Fam Zheng8d24cce2014-05-23 21:29:45 +08003339
Kevin Wolf760e0062015-06-17 14:55:21 +02003340 if (bs->backing) {
Max Reitz7b99a262019-06-12 16:07:11 +02003341 /* Cannot be frozen, we checked that above */
Kevin Wolf5db15a52015-09-14 15:33:33 +02003342 bdrv_unref_child(bs, bs->backing);
Vladimir Sementsov-Ogievskiy6e579632020-03-16 09:06:30 +03003343 bs->backing = NULL;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003344 }
3345
Fam Zheng8d24cce2014-05-23 21:29:45 +08003346 if (!backing_hd) {
3347 goto out;
3348 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003349
Max Reitz25191e52020-05-13 13:05:33 +02003350 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_of_bds,
3351 bdrv_backing_role(bs), errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003352 if (!bs->backing) {
3353 ret = -EPERM;
3354 goto out;
3355 }
3356
Alberto Garcia0065c452018-10-31 18:16:37 +02003357 /* If backing_hd was already part of bs's backing chain, and
3358 * inherits_from pointed recursively to bs then let's update it to
3359 * point directly to bs (else it will become NULL). */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003360 if (update_inherits_from) {
Alberto Garcia0065c452018-10-31 18:16:37 +02003361 backing_hd->inherits_from = bs;
3362 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003363
Fam Zheng8d24cce2014-05-23 21:29:45 +08003364out:
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03003365 bdrv_refresh_limits(bs, NULL, NULL);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003366
3367 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003368}
3369
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003370/*
3371 * Opens the backing file for a BlockDriverState if not yet open
3372 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003373 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3374 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3375 * itself, all options starting with "${bdref_key}." are considered part of the
3376 * BlockdevRef.
3377 *
3378 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003379 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003380int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3381 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003382{
Max Reitz6b6833c2019-02-01 20:29:15 +01003383 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003384 char *bdref_key_dot;
3385 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003386 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003387 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003388 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003389 QDict *options;
3390 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003391 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003392
Kevin Wolf760e0062015-06-17 14:55:21 +02003393 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003394 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003395 }
3396
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003397 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003398 if (parent_options == NULL) {
3399 tmp_parent_options = qdict_new();
3400 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003401 }
3402
Paolo Bonzini9156df12012-10-18 16:49:17 +02003403 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003404
3405 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3406 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3407 g_free(bdref_key_dot);
3408
Markus Armbruster129c7d12017-03-30 19:43:12 +02003409 /*
3410 * Caution: while qdict_get_try_str() is fine, getting non-string
3411 * types would require more care. When @parent_options come from
3412 * -blockdev or blockdev_add, its members are typed according to
3413 * the QAPI schema, but when they come from -drive, they're all
3414 * QString.
3415 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003416 reference = qdict_get_try_str(parent_options, bdref_key);
3417 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003418 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003419 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003420 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003421 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003422 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003423 if (qdict_size(options) == 0) {
3424 /* If the user specifies options that do not modify the
3425 * backing file's behavior, we might still consider it the
3426 * implicit backing file. But it's easier this way, and
3427 * just specifying some of the backing BDS's options is
3428 * only possible with -drive anyway (otherwise the QAPI
3429 * schema forces the user to specify everything). */
3430 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3431 }
3432
Max Reitz6b6833c2019-02-01 20:29:15 +01003433 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003434 if (local_err) {
3435 ret = -EINVAL;
3436 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003437 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003438 goto free_exit;
3439 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003440 }
3441
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003442 if (!bs->drv || !bs->drv->supports_backing) {
3443 ret = -EINVAL;
3444 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003445 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003446 goto free_exit;
3447 }
3448
Peter Krempa6bff5972017-10-12 16:14:10 +02003449 if (!reference &&
3450 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003451 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003452 }
3453
Max Reitz6b6833c2019-02-01 20:29:15 +01003454 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003455 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003456 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003457 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003458 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003459 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003460 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003461 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003462
Max Reitz998c2012019-02-01 20:29:08 +01003463 if (implicit_backing) {
3464 bdrv_refresh_filename(backing_hd);
3465 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3466 backing_hd->filename);
3467 }
3468
Kevin Wolf5db15a52015-09-14 15:33:33 +02003469 /* Hook up the backing file link; drop our reference, bs owns the
3470 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003471 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003472 bdrv_unref(backing_hd);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003473 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003474 goto free_exit;
3475 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003476
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003477 qdict_del(parent_options, bdref_key);
3478
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003479free_exit:
3480 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003481 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003482 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003483}
3484
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003485static BlockDriverState *
3486bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003487 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003488 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003489{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003490 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003491 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003492 char *bdref_key_dot;
3493 const char *reference;
3494
Max Reitzbd86fb92020-05-13 13:05:13 +02003495 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003496
Max Reitzda557aa2013-12-20 19:28:11 +01003497 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3498 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3499 g_free(bdref_key_dot);
3500
Markus Armbruster129c7d12017-03-30 19:43:12 +02003501 /*
3502 * Caution: while qdict_get_try_str() is fine, getting non-string
3503 * types would require more care. When @options come from
3504 * -blockdev or blockdev_add, its members are typed according to
3505 * the QAPI schema, but when they come from -drive, they're all
3506 * QString.
3507 */
Max Reitzda557aa2013-12-20 19:28:11 +01003508 reference = qdict_get_try_str(options, bdref_key);
3509 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003510 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003511 error_setg(errp, "A block device must be specified for \"%s\"",
3512 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003513 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003514 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003515 goto done;
3516 }
3517
Max Reitz5b363932016-05-17 16:41:31 +02003518 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003519 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003520 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003521 goto done;
3522 }
3523
Max Reitzda557aa2013-12-20 19:28:11 +01003524done:
3525 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003526 return bs;
3527}
3528
3529/*
3530 * Opens a disk image whose options are given as BlockdevRef in another block
3531 * device's options.
3532 *
3533 * If allow_none is true, no image will be opened if filename is false and no
3534 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3535 *
3536 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3537 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3538 * itself, all options starting with "${bdref_key}." are considered part of the
3539 * BlockdevRef.
3540 *
3541 * The BlockdevRef will be removed from the options QDict.
3542 */
3543BdrvChild *bdrv_open_child(const char *filename,
3544 QDict *options, const char *bdref_key,
3545 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003546 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003547 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003548 bool allow_none, Error **errp)
3549{
3550 BlockDriverState *bs;
3551
Max Reitzbd86fb92020-05-13 13:05:13 +02003552 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003553 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003554 if (bs == NULL) {
3555 return NULL;
3556 }
3557
Max Reitz258b7762020-05-13 13:05:15 +02003558 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3559 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003560}
3561
Max Reitzbd86fb92020-05-13 13:05:13 +02003562/*
3563 * TODO Future callers may need to specify parent/child_class in order for
3564 * option inheritance to work. Existing callers use it for the root node.
3565 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003566BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3567{
3568 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003569 QObject *obj = NULL;
3570 QDict *qdict = NULL;
3571 const char *reference = NULL;
3572 Visitor *v = NULL;
3573
3574 if (ref->type == QTYPE_QSTRING) {
3575 reference = ref->u.reference;
3576 } else {
3577 BlockdevOptions *options = &ref->u.definition;
3578 assert(ref->type == QTYPE_QDICT);
3579
3580 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003581 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003582 visit_complete(v, &obj);
3583
Max Reitz7dc847e2018-02-24 16:40:29 +01003584 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003585 qdict_flatten(qdict);
3586
3587 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3588 * compatibility with other callers) rather than what we want as the
3589 * real defaults. Apply the defaults here instead. */
3590 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3591 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3592 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003593 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3594
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003595 }
3596
Max Reitz272c02e2020-05-13 13:05:17 +02003597 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003598 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003599 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003600 visit_free(v);
3601 return bs;
3602}
3603
Max Reitz66836182016-05-17 16:41:27 +02003604static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3605 int flags,
3606 QDict *snapshot_options,
3607 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003608{
3609 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003610 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003611 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003612 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003613 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003614 int ret;
3615
3616 /* if snapshot, we create a temporary backing file and open it
3617 instead of opening 'filename' directly */
3618
3619 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003620 total_size = bdrv_getlength(bs);
3621 if (total_size < 0) {
3622 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003623 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003624 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003625
3626 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003627 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003628 if (ret < 0) {
3629 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003630 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003631 }
3632
Max Reitzef810432014-12-02 18:32:42 +01003633 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003634 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003635 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003636 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003637 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003638 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003639 error_prepend(errp, "Could not create temporary overlay '%s': ",
3640 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003641 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003642 }
3643
Kevin Wolf73176be2016-03-07 13:02:15 +01003644 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003645 qdict_put_str(snapshot_options, "file.driver", "file");
3646 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3647 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003648
Max Reitz5b363932016-05-17 16:41:31 +02003649 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003650 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003651 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003652 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003653 }
3654
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003655 ret = bdrv_append(bs_snapshot, bs, errp);
3656 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003657 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003658 goto out;
3659 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003660
3661out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003662 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003663 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05003664 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003665}
3666
Max Reitzda557aa2013-12-20 19:28:11 +01003667/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003668 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003669 *
3670 * options is a QDict of options to pass to the block drivers, or NULL for an
3671 * empty set of options. The reference to the QDict belongs to the block layer
3672 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003673 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003674 *
3675 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3676 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003677 *
3678 * The reference parameter may be used to specify an existing block device which
3679 * should be opened. If specified, neither options nor a filename may be given,
3680 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003681 */
Max Reitz5b363932016-05-17 16:41:31 +02003682static BlockDriverState *bdrv_open_inherit(const char *filename,
3683 const char *reference,
3684 QDict *options, int flags,
3685 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003686 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003687 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003688 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003689{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003690 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003691 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003692 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003693 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003694 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003695 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003696 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003697 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003698 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003699 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003700
Max Reitzbd86fb92020-05-13 13:05:13 +02003701 assert(!child_class || !flags);
3702 assert(!child_class == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01003703
Max Reitzddf56362014-02-18 18:33:06 +01003704 if (reference) {
3705 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003706 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003707
Max Reitzddf56362014-02-18 18:33:06 +01003708 if (filename || options_non_empty) {
3709 error_setg(errp, "Cannot reference an existing block device with "
3710 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003711 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003712 }
3713
3714 bs = bdrv_lookup_bs(reference, reference, errp);
3715 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003716 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003717 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003718
Max Reitzddf56362014-02-18 18:33:06 +01003719 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003720 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003721 }
3722
Max Reitz5b363932016-05-17 16:41:31 +02003723 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003724
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003725 /* NULL means an empty set of options */
3726 if (options == NULL) {
3727 options = qdict_new();
3728 }
3729
Kevin Wolf145f5982015-05-08 16:15:03 +02003730 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003731 parse_json_protocol(options, &filename, &local_err);
3732 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003733 goto fail;
3734 }
3735
Kevin Wolf145f5982015-05-08 16:15:03 +02003736 bs->explicit_options = qdict_clone_shallow(options);
3737
Max Reitzbd86fb92020-05-13 13:05:13 +02003738 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003739 bool parent_is_format;
3740
3741 if (parent->drv) {
3742 parent_is_format = parent->drv->is_format;
3743 } else {
3744 /*
3745 * parent->drv is not set yet because this node is opened for
3746 * (potential) format probing. That means that @parent is going
3747 * to be a format node.
3748 */
3749 parent_is_format = true;
3750 }
3751
Kevin Wolfbddcec32015-04-09 18:47:50 +02003752 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003753 child_class->inherit_options(child_role, parent_is_format,
3754 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003755 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003756 }
3757
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003758 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003759 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003760 goto fail;
3761 }
3762
Markus Armbruster129c7d12017-03-30 19:43:12 +02003763 /*
3764 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3765 * Caution: getting a boolean member of @options requires care.
3766 * When @options come from -blockdev or blockdev_add, members are
3767 * typed according to the QAPI schema, but when they come from
3768 * -drive, they're all QString.
3769 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003770 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3771 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3772 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3773 } else {
3774 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003775 }
3776
3777 if (flags & BDRV_O_SNAPSHOT) {
3778 snapshot_options = qdict_new();
3779 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3780 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003781 /* Let bdrv_backing_options() override "read-only" */
3782 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003783 bdrv_inherited_options(BDRV_CHILD_COW, true,
3784 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003785 }
3786
Kevin Wolf62392eb2015-04-24 16:38:02 +02003787 bs->open_flags = flags;
3788 bs->options = options;
3789 options = qdict_clone_shallow(options);
3790
Kevin Wolf76c591b2014-06-04 14:19:44 +02003791 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003792 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003793 drvname = qdict_get_try_str(options, "driver");
3794 if (drvname) {
3795 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003796 if (!drv) {
3797 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003798 goto fail;
3799 }
3800 }
3801
3802 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003803
Markus Armbruster129c7d12017-03-30 19:43:12 +02003804 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003805 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003806 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3807 (backing && *backing == '\0'))
3808 {
Max Reitz4f7be282018-02-24 16:40:33 +01003809 if (backing) {
3810 warn_report("Use of \"backing\": \"\" is deprecated; "
3811 "use \"backing\": null instead");
3812 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003813 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003814 qdict_del(bs->explicit_options, "backing");
3815 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003816 qdict_del(options, "backing");
3817 }
3818
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003819 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003820 * probing, the block drivers will do their own bdrv_open_child() for the
3821 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003822 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003823 BlockDriverState *file_bs;
3824
3825 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003826 &child_of_bds, BDRV_CHILD_IMAGE,
3827 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003828 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003829 goto fail;
3830 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003831 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003832 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3833 * looking at the header to guess the image format. This works even
3834 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003835 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003836 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003837 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003838 if (local_err) {
3839 goto fail;
3840 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003841
Eric Blake46f5ac22017-04-27 16:58:17 -05003842 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003843 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003844 }
3845
Kevin Wolf76c591b2014-06-04 14:19:44 +02003846 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003847 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003848 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003849 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003850 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003851 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003852 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003853 /*
3854 * This option update would logically belong in bdrv_fill_options(),
3855 * but we first need to open bs->file for the probing to work, while
3856 * opening bs->file already requires the (mostly) final set of options
3857 * so that cache mode etc. can be inherited.
3858 *
3859 * Adding the driver later is somewhat ugly, but it's not an option
3860 * that would ever be inherited, so it's correct. We just need to make
3861 * sure to update both bs->options (which has the full effective
3862 * options for bs) and options (which has file.* already removed).
3863 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003864 qdict_put_str(bs->options, "driver", drv->format_name);
3865 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003866 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003867 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003868 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003869 }
3870
Max Reitz53a29512015-03-19 14:53:16 -04003871 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3872 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3873 /* file must be NULL if a protocol BDS is about to be created
3874 * (the inverse results in an error message from bdrv_open_common()) */
3875 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3876
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003877 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003878 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003879 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003880 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01003881 }
3882
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003883 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003884 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01003885 file = NULL;
3886 }
3887
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003888 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02003889 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003890 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003891 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003892 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003893 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003894 }
3895
Alberto Garcia50196d72018-09-06 12:37:03 +03003896 /* Remove all children options and references
3897 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03003898 QLIST_FOREACH(child, &bs->children, next) {
3899 char *child_key_dot;
3900 child_key_dot = g_strdup_printf("%s.", child->name);
3901 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3902 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03003903 qdict_del(bs->explicit_options, child->name);
3904 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03003905 g_free(child_key_dot);
3906 }
3907
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003908 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01003909 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003910 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01003911 if (flags & BDRV_O_PROTOCOL) {
3912 error_setg(errp, "Block protocol '%s' doesn't support the option "
3913 "'%s'", drv->format_name, entry->key);
3914 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01003915 error_setg(errp,
3916 "Block format '%s' does not support the option '%s'",
3917 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01003918 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003919
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003920 goto close_and_fail;
3921 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003922
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01003923 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003924
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003925 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03003926 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003927
3928 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3929 * temporary snapshot afterwards. */
3930 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02003931 BlockDriverState *snapshot_bs;
3932 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3933 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01003934 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003935 if (local_err) {
3936 goto close_and_fail;
3937 }
Max Reitz5b363932016-05-17 16:41:31 +02003938 /* We are not going to return bs but the overlay on top of it
3939 * (snapshot_bs); thus, we have to drop the strong reference to bs
3940 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3941 * though, because the overlay still has a reference to it. */
3942 bdrv_unref(bs);
3943 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02003944 }
3945
Max Reitz5b363932016-05-17 16:41:31 +02003946 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003947
Kevin Wolf8bfea152014-04-11 19:16:36 +02003948fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003949 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003950 qobject_unref(snapshot_options);
3951 qobject_unref(bs->explicit_options);
3952 qobject_unref(bs->options);
3953 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003954 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03003955 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003956 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003957 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003958 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003959
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003960close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02003961 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003962 qobject_unref(snapshot_options);
3963 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003964 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003965 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003966}
3967
Max Reitz5b363932016-05-17 16:41:31 +02003968BlockDriverState *bdrv_open(const char *filename, const char *reference,
3969 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02003970{
Max Reitz5b363932016-05-17 16:41:31 +02003971 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02003972 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003973}
3974
Alberto Garciafaf116b2019-03-12 18:48:49 +02003975/* Return true if the NULL-terminated @list contains @str */
3976static bool is_str_in_list(const char *str, const char *const *list)
3977{
3978 if (str && list) {
3979 int i;
3980 for (i = 0; list[i] != NULL; i++) {
3981 if (!strcmp(str, list[i])) {
3982 return true;
3983 }
3984 }
3985 }
3986 return false;
3987}
3988
3989/*
3990 * Check that every option set in @bs->options is also set in
3991 * @new_opts.
3992 *
3993 * Options listed in the common_options list and in
3994 * @bs->drv->mutable_opts are skipped.
3995 *
3996 * Return 0 on success, otherwise return -EINVAL and set @errp.
3997 */
3998static int bdrv_reset_options_allowed(BlockDriverState *bs,
3999 const QDict *new_opts, Error **errp)
4000{
4001 const QDictEntry *e;
4002 /* These options are common to all block drivers and are handled
4003 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4004 const char *const common_options[] = {
4005 "node-name", "discard", "cache.direct", "cache.no-flush",
4006 "read-only", "auto-read-only", "detect-zeroes", NULL
4007 };
4008
4009 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4010 if (!qdict_haskey(new_opts, e->key) &&
4011 !is_str_in_list(e->key, common_options) &&
4012 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4013 error_setg(errp, "Option '%s' cannot be reset "
4014 "to its default value", e->key);
4015 return -EINVAL;
4016 }
4017 }
4018
4019 return 0;
4020}
4021
Jeff Codye971aa12012-09-20 15:13:19 -04004022/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004023 * Returns true if @child can be reached recursively from @bs
4024 */
4025static bool bdrv_recurse_has_child(BlockDriverState *bs,
4026 BlockDriverState *child)
4027{
4028 BdrvChild *c;
4029
4030 if (bs == child) {
4031 return true;
4032 }
4033
4034 QLIST_FOREACH(c, &bs->children, next) {
4035 if (bdrv_recurse_has_child(c->bs, child)) {
4036 return true;
4037 }
4038 }
4039
4040 return false;
4041}
4042
4043/*
Jeff Codye971aa12012-09-20 15:13:19 -04004044 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4045 * reopen of multiple devices.
4046 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004047 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04004048 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4049 * be created and initialized. This newly created BlockReopenQueue should be
4050 * passed back in for subsequent calls that are intended to be of the same
4051 * atomic 'set'.
4052 *
4053 * bs is the BlockDriverState to add to the reopen queue.
4054 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004055 * options contains the changed options for the associated bs
4056 * (the BlockReopenQueue takes ownership)
4057 *
Jeff Codye971aa12012-09-20 15:13:19 -04004058 * flags contains the open flags for the associated bs
4059 *
4060 * returns a pointer to bs_queue, which is either the newly allocated
4061 * bs_queue, or the existing bs_queue being used.
4062 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004063 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04004064 */
Kevin Wolf28518102015-05-08 17:07:31 +02004065static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4066 BlockDriverState *bs,
4067 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004068 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02004069 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004070 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02004071 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004072 int parent_flags,
4073 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04004074{
4075 assert(bs != NULL);
4076
4077 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02004078 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004079 QDict *old_options, *explicit_options, *options_copy;
4080 int flags;
4081 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004082
Kevin Wolf1a63a902017-12-06 20:24:44 +01004083 /* Make sure that the caller remembered to use a drained section. This is
4084 * important to avoid graph changes between the recursive queuing here and
4085 * bdrv_reopen_multiple(). */
4086 assert(bs->quiesce_counter > 0);
4087
Jeff Codye971aa12012-09-20 15:13:19 -04004088 if (bs_queue == NULL) {
4089 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004090 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04004091 }
4092
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004093 if (!options) {
4094 options = qdict_new();
4095 }
4096
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004097 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004098 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004099 if (bs == bs_entry->state.bs) {
4100 break;
4101 }
4102 }
4103
Kevin Wolf28518102015-05-08 17:07:31 +02004104 /*
4105 * Precedence of options:
4106 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004107 * 2. Retained from explicitly set options of bs
4108 * 3. Inherited from parent node
4109 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004110 */
4111
Kevin Wolf145f5982015-05-08 16:15:03 +02004112 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004113 if (bs_entry || keep_old_opts) {
4114 old_options = qdict_clone_shallow(bs_entry ?
4115 bs_entry->state.explicit_options :
4116 bs->explicit_options);
4117 bdrv_join_options(bs, options, old_options);
4118 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004119 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004120
4121 explicit_options = qdict_clone_shallow(options);
4122
Kevin Wolf28518102015-05-08 17:07:31 +02004123 /* Inherit from parent node */
4124 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004125 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004126 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004127 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004128 } else {
4129 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004130 }
4131
Alberto Garcia077e8e22019-03-12 18:48:44 +02004132 if (keep_old_opts) {
4133 /* Old values are used for options that aren't set yet */
4134 old_options = qdict_clone_shallow(bs->options);
4135 bdrv_join_options(bs, options, old_options);
4136 qobject_unref(old_options);
4137 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004138
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004139 /* We have the final set of options so let's update the flags */
4140 options_copy = qdict_clone_shallow(options);
4141 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4142 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4143 update_flags_from_options(&flags, opts);
4144 qemu_opts_del(opts);
4145 qobject_unref(options_copy);
4146
Kevin Wolffd452022017-08-03 17:02:59 +02004147 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004148 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004149 if (flags & BDRV_O_RDWR) {
4150 flags |= BDRV_O_ALLOW_RDWR;
4151 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004152
Kevin Wolf1857c972017-09-14 14:53:46 +02004153 if (!bs_entry) {
4154 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004155 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004156 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004157 qobject_unref(bs_entry->state.options);
4158 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004159 }
4160
4161 bs_entry->state.bs = bs;
4162 bs_entry->state.options = options;
4163 bs_entry->state.explicit_options = explicit_options;
4164 bs_entry->state.flags = flags;
4165
Kevin Wolf30450252017-07-03 17:07:35 +02004166 /* This needs to be overwritten in bdrv_reopen_prepare() */
4167 bs_entry->state.perm = UINT64_MAX;
4168 bs_entry->state.shared_perm = 0;
4169
Alberto Garcia85466322019-03-12 18:48:45 +02004170 /*
4171 * If keep_old_opts is false then it means that unspecified
4172 * options must be reset to their original value. We don't allow
4173 * resetting 'backing' but we need to know if the option is
4174 * missing in order to decide if we have to return an error.
4175 */
4176 if (!keep_old_opts) {
4177 bs_entry->state.backing_missing =
4178 !qdict_haskey(options, "backing") &&
4179 !qdict_haskey(options, "backing.driver");
4180 }
4181
Kevin Wolf67251a32015-04-09 18:54:04 +02004182 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004183 QDict *new_child_options = NULL;
4184 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004185
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004186 /* reopen can only change the options of block devices that were
4187 * implicitly created and inherited options. For other (referenced)
4188 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004189 if (child->bs->inherits_from != bs) {
4190 continue;
4191 }
4192
Alberto Garcia85466322019-03-12 18:48:45 +02004193 /* Check if the options contain a child reference */
4194 if (qdict_haskey(options, child->name)) {
4195 const char *childref = qdict_get_try_str(options, child->name);
4196 /*
4197 * The current child must not be reopened if the child
4198 * reference is null or points to a different node.
4199 */
4200 if (g_strcmp0(childref, child->bs->node_name)) {
4201 continue;
4202 }
4203 /*
4204 * If the child reference points to the current child then
4205 * reopen it with its existing set of options (note that
4206 * it can still inherit new options from the parent).
4207 */
4208 child_keep_old = true;
4209 } else {
4210 /* Extract child options ("child-name.*") */
4211 char *child_key_dot = g_strdup_printf("%s.", child->name);
4212 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4213 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4214 g_free(child_key_dot);
4215 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004216
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004217 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004218 child->klass, child->role, bs->drv->is_format,
4219 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004220 }
4221
Jeff Codye971aa12012-09-20 15:13:19 -04004222 return bs_queue;
4223}
4224
Kevin Wolf28518102015-05-08 17:07:31 +02004225BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4226 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004227 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004228{
Max Reitz3cdc69d2020-05-13 13:05:18 +02004229 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4230 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004231}
4232
Jeff Codye971aa12012-09-20 15:13:19 -04004233/*
4234 * Reopen multiple BlockDriverStates atomically & transactionally.
4235 *
4236 * The queue passed in (bs_queue) must have been built up previous
4237 * via bdrv_reopen_queue().
4238 *
4239 * Reopens all BDS specified in the queue, with the appropriate
4240 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004241 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004242 * data cleaned up.
4243 *
4244 * If all devices prepare successfully, then the changes are committed
4245 * to all devices.
4246 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004247 * All affected nodes must be drained between bdrv_reopen_queue() and
4248 * bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04004249 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004250int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004251{
4252 int ret = -1;
4253 BlockReopenQueueEntry *bs_entry, *next;
Jeff Codye971aa12012-09-20 15:13:19 -04004254
4255 assert(bs_queue != NULL);
4256
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004257 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004258 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolfa4615ab2019-03-05 16:51:13 +01004259 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, errp)) {
Jeff Codye971aa12012-09-20 15:13:19 -04004260 goto cleanup;
4261 }
4262 bs_entry->prepared = true;
4263 }
4264
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004265 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004266 BDRVReopenState *state = &bs_entry->state;
4267 ret = bdrv_check_perm(state->bs, bs_queue, state->perm,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03004268 state->shared_perm, errp);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004269 if (ret < 0) {
4270 goto cleanup_perm;
4271 }
Alberto Garciacb828c32019-03-12 18:48:47 +02004272 /* Check if new_backing_bs would accept the new permissions */
4273 if (state->replace_backing_bs && state->new_backing_bs) {
4274 uint64_t nperm, nshared;
4275 bdrv_child_perm(state->bs, state->new_backing_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02004276 NULL, bdrv_backing_role(state->bs),
Max Reitz25191e52020-05-13 13:05:33 +02004277 bs_queue, state->perm, state->shared_perm,
Alberto Garciacb828c32019-03-12 18:48:47 +02004278 &nperm, &nshared);
4279 ret = bdrv_check_update_perm(state->new_backing_bs, NULL,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03004280 nperm, nshared, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004281 if (ret < 0) {
4282 goto cleanup_perm;
4283 }
4284 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004285 bs_entry->perms_checked = true;
4286 }
4287
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004288 /*
4289 * If we reach this point, we have success and just need to apply the
4290 * changes.
4291 *
4292 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4293 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4294 * children are usually goes after parents in reopen-queue, so go from last
4295 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004296 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004297 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Jeff Codye971aa12012-09-20 15:13:19 -04004298 bdrv_reopen_commit(&bs_entry->state);
4299 }
4300
4301 ret = 0;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004302cleanup_perm:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004303 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004304 BDRVReopenState *state = &bs_entry->state;
Jeff Codye971aa12012-09-20 15:13:19 -04004305
Kevin Wolf69b736e2019-03-05 17:18:22 +01004306 if (!bs_entry->perms_checked) {
4307 continue;
4308 }
4309
4310 if (ret == 0) {
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03004311 uint64_t perm, shared;
4312
4313 bdrv_get_cumulative_perm(state->bs, &perm, &shared);
4314 assert(perm == state->perm);
4315 assert(shared == state->shared_perm);
4316
4317 bdrv_set_perm(state->bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004318 } else {
4319 bdrv_abort_perm_update(state->bs);
Alberto Garciacb828c32019-03-12 18:48:47 +02004320 if (state->replace_backing_bs && state->new_backing_bs) {
4321 bdrv_abort_perm_update(state->new_backing_bs);
4322 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004323 }
4324 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004325
4326 if (ret == 0) {
4327 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4328 BlockDriverState *bs = bs_entry->state.bs;
4329
4330 if (bs->drv->bdrv_reopen_commit_post)
4331 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4332 }
4333 }
Jeff Codye971aa12012-09-20 15:13:19 -04004334cleanup:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004335 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Alberto Garcia1bab38e2018-06-29 14:37:01 +03004336 if (ret) {
4337 if (bs_entry->prepared) {
4338 bdrv_reopen_abort(&bs_entry->state);
4339 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004340 qobject_unref(bs_entry->state.explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004341 qobject_unref(bs_entry->state.options);
Jeff Codye971aa12012-09-20 15:13:19 -04004342 }
Alberto Garciacb828c32019-03-12 18:48:47 +02004343 if (bs_entry->state.new_backing_bs) {
4344 bdrv_unref(bs_entry->state.new_backing_bs);
4345 }
Jeff Codye971aa12012-09-20 15:13:19 -04004346 g_free(bs_entry);
4347 }
4348 g_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004349
Jeff Codye971aa12012-09-20 15:13:19 -04004350 return ret;
4351}
4352
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004353int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4354 Error **errp)
4355{
4356 int ret;
4357 BlockReopenQueue *queue;
4358 QDict *opts = qdict_new();
4359
4360 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4361
4362 bdrv_subtree_drained_begin(bs);
Alberto Garcia077e8e22019-03-12 18:48:44 +02004363 queue = bdrv_reopen_queue(NULL, bs, opts, true);
Alberto Garcia5019aec2019-03-12 18:48:50 +02004364 ret = bdrv_reopen_multiple(queue, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004365 bdrv_subtree_drained_end(bs);
4366
4367 return ret;
4368}
4369
Kevin Wolf30450252017-07-03 17:07:35 +02004370static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
4371 BdrvChild *c)
4372{
4373 BlockReopenQueueEntry *entry;
4374
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004375 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf30450252017-07-03 17:07:35 +02004376 BlockDriverState *bs = entry->state.bs;
4377 BdrvChild *child;
4378
4379 QLIST_FOREACH(child, &bs->children, next) {
4380 if (child == c) {
4381 return entry;
4382 }
4383 }
4384 }
4385
4386 return NULL;
4387}
4388
4389static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
4390 uint64_t *perm, uint64_t *shared)
4391{
4392 BdrvChild *c;
4393 BlockReopenQueueEntry *parent;
4394 uint64_t cumulative_perms = 0;
4395 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
4396
4397 QLIST_FOREACH(c, &bs->parents, next_parent) {
4398 parent = find_parent_in_reopen_queue(q, c);
4399 if (!parent) {
4400 cumulative_perms |= c->perm;
4401 cumulative_shared_perms &= c->shared_perm;
4402 } else {
4403 uint64_t nperm, nshared;
4404
Max Reitze5d8a402020-05-13 13:05:44 +02004405 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
Kevin Wolf30450252017-07-03 17:07:35 +02004406 parent->state.perm, parent->state.shared_perm,
4407 &nperm, &nshared);
4408
4409 cumulative_perms |= nperm;
4410 cumulative_shared_perms &= nshared;
4411 }
4412 }
4413 *perm = cumulative_perms;
4414 *shared = cumulative_shared_perms;
4415}
Jeff Codye971aa12012-09-20 15:13:19 -04004416
Kevin Wolf1de6b452020-03-06 15:14:13 +01004417static bool bdrv_reopen_can_attach(BlockDriverState *parent,
4418 BdrvChild *child,
4419 BlockDriverState *new_child,
4420 Error **errp)
4421{
4422 AioContext *parent_ctx = bdrv_get_aio_context(parent);
4423 AioContext *child_ctx = bdrv_get_aio_context(new_child);
4424 GSList *ignore;
4425 bool ret;
4426
4427 ignore = g_slist_prepend(NULL, child);
4428 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
4429 g_slist_free(ignore);
4430 if (ret) {
4431 return ret;
4432 }
4433
4434 ignore = g_slist_prepend(NULL, child);
4435 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
4436 g_slist_free(ignore);
4437 return ret;
4438}
4439
Jeff Codye971aa12012-09-20 15:13:19 -04004440/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004441 * Take a BDRVReopenState and check if the value of 'backing' in the
4442 * reopen_state->options QDict is valid or not.
4443 *
4444 * If 'backing' is missing from the QDict then return 0.
4445 *
4446 * If 'backing' contains the node name of the backing file of
4447 * reopen_state->bs then return 0.
4448 *
4449 * If 'backing' contains a different node name (or is null) then check
4450 * whether the current backing file can be replaced with the new one.
4451 * If that's the case then reopen_state->replace_backing_bs is set to
4452 * true and reopen_state->new_backing_bs contains a pointer to the new
4453 * backing BlockDriverState (or NULL).
4454 *
4455 * Return 0 on success, otherwise return < 0 and set @errp.
4456 */
4457static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
4458 Error **errp)
4459{
4460 BlockDriverState *bs = reopen_state->bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004461 BlockDriverState *overlay_bs, *below_bs, *new_backing_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004462 QObject *value;
4463 const char *str;
4464
4465 value = qdict_get(reopen_state->options, "backing");
4466 if (value == NULL) {
4467 return 0;
4468 }
4469
4470 switch (qobject_type(value)) {
4471 case QTYPE_QNULL:
4472 new_backing_bs = NULL;
4473 break;
4474 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004475 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciacb828c32019-03-12 18:48:47 +02004476 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
4477 if (new_backing_bs == NULL) {
4478 return -EINVAL;
4479 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
4480 error_setg(errp, "Making '%s' a backing file of '%s' "
4481 "would create a cycle", str, bs->node_name);
4482 return -EINVAL;
4483 }
4484 break;
4485 default:
4486 /* 'backing' does not allow any other data type */
4487 g_assert_not_reached();
4488 }
4489
4490 /*
Kevin Wolf1de6b452020-03-06 15:14:13 +01004491 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4492 * bdrv_reopen_commit() won't fail.
Alberto Garciacb828c32019-03-12 18:48:47 +02004493 */
4494 if (new_backing_bs) {
Kevin Wolf1de6b452020-03-06 15:14:13 +01004495 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004496 return -EINVAL;
4497 }
4498 }
4499
4500 /*
Max Reitz1d42f482019-06-12 17:24:39 +02004501 * Ensure that @bs can really handle backing files, because we are
4502 * about to give it one (or swap the existing one)
4503 */
4504 if (bs->drv->is_filter) {
4505 /* Filters always have a file or a backing child */
4506 if (!bs->backing) {
4507 error_setg(errp, "'%s' is a %s filter node that does not support a "
4508 "backing child", bs->node_name, bs->drv->format_name);
4509 return -EINVAL;
4510 }
4511 } else if (!bs->drv->supports_backing) {
4512 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
4513 "files", bs->drv->format_name, bs->node_name);
4514 return -EINVAL;
4515 }
4516
4517 /*
Alberto Garciacb828c32019-03-12 18:48:47 +02004518 * Find the "actual" backing file by skipping all links that point
4519 * to an implicit node, if any (e.g. a commit filter node).
Max Reitz1d42f482019-06-12 17:24:39 +02004520 * We cannot use any of the bdrv_skip_*() functions here because
4521 * those return the first explicit node, while we are looking for
4522 * its overlay here.
Alberto Garciacb828c32019-03-12 18:48:47 +02004523 */
4524 overlay_bs = bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004525 for (below_bs = bdrv_filter_or_cow_bs(overlay_bs);
4526 below_bs && below_bs->implicit;
4527 below_bs = bdrv_filter_or_cow_bs(overlay_bs))
4528 {
4529 overlay_bs = below_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004530 }
4531
4532 /* If we want to replace the backing file we need some extra checks */
Max Reitz1d42f482019-06-12 17:24:39 +02004533 if (new_backing_bs != bdrv_filter_or_cow_bs(overlay_bs)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004534 /* Check for implicit nodes between bs and its backing file */
4535 if (bs != overlay_bs) {
4536 error_setg(errp, "Cannot change backing link if '%s' has "
4537 "an implicit backing file", bs->node_name);
4538 return -EPERM;
4539 }
Max Reitz1d42f482019-06-12 17:24:39 +02004540 /*
4541 * Check if the backing link that we want to replace is frozen.
4542 * Note that
4543 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4544 * because we know that overlay_bs == bs, and that @bs
4545 * either is a filter that uses ->backing or a COW format BDS
4546 * with bs->drv->supports_backing == true.
4547 */
4548 if (bdrv_is_backing_chain_frozen(overlay_bs,
4549 child_bs(overlay_bs->backing), errp))
4550 {
Alberto Garciacb828c32019-03-12 18:48:47 +02004551 return -EPERM;
4552 }
4553 reopen_state->replace_backing_bs = true;
4554 if (new_backing_bs) {
4555 bdrv_ref(new_backing_bs);
4556 reopen_state->new_backing_bs = new_backing_bs;
4557 }
4558 }
4559
4560 return 0;
4561}
4562
4563/*
Jeff Codye971aa12012-09-20 15:13:19 -04004564 * Prepares a BlockDriverState for reopen. All changes are staged in the
4565 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4566 * the block driver layer .bdrv_reopen_prepare()
4567 *
4568 * bs is the BlockDriverState to reopen
4569 * flags are the new open flags
4570 * queue is the reopen queue
4571 *
4572 * Returns 0 on success, non-zero on error. On error errp will be set
4573 * as well.
4574 *
4575 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4576 * It is the responsibility of the caller to then call the abort() or
4577 * commit() for any other BDS that have been left in a prepare() state
4578 *
4579 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004580static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
4581 BlockReopenQueue *queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004582{
4583 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004584 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004585 Error *local_err = NULL;
4586 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004587 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004588 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004589 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004590 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004591 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004592
4593 assert(reopen_state != NULL);
4594 assert(reopen_state->bs->drv != NULL);
4595 drv = reopen_state->bs->drv;
4596
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004597 /* This function and each driver's bdrv_reopen_prepare() remove
4598 * entries from reopen_state->options as they are processed, so
4599 * we need to make a copy of the original QDict. */
4600 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4601
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004602 /* Process generic block layer options */
4603 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004604 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004605 ret = -EINVAL;
4606 goto error;
4607 }
4608
Alberto Garciae6d79c42018-11-12 16:00:47 +02004609 /* This was already called in bdrv_reopen_queue_child() so the flags
4610 * are up-to-date. This time we simply want to remove the options from
4611 * QemuOpts in order to indicate that they have been processed. */
4612 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004613 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004614 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004615
Alberto Garcia415bbca2018-10-03 13:23:13 +03004616 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004617 if (discard != NULL) {
4618 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4619 error_setg(errp, "Invalid discard option");
4620 ret = -EINVAL;
4621 goto error;
4622 }
4623 }
4624
Alberto Garcia543770b2018-09-06 12:37:09 +03004625 reopen_state->detect_zeroes =
4626 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4627 if (local_err) {
4628 error_propagate(errp, local_err);
4629 ret = -EINVAL;
4630 goto error;
4631 }
4632
Alberto Garcia57f9db92018-09-06 12:37:06 +03004633 /* All other options (including node-name and driver) must be unchanged.
4634 * Put them back into the QDict, so that they are checked at the end
4635 * of this function. */
4636 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004637
Jeff Cody3d8ce172017-04-07 16:55:30 -04004638 /* If we are to stay read-only, do not allow permission change
4639 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4640 * not set, or if the BDS still has copy_on_read enabled */
4641 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004642 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004643 if (local_err) {
4644 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004645 goto error;
4646 }
4647
Kevin Wolf30450252017-07-03 17:07:35 +02004648 /* Calculate required permissions after reopening */
4649 bdrv_reopen_perm(queue, reopen_state->bs,
4650 &reopen_state->perm, &reopen_state->shared_perm);
Jeff Codye971aa12012-09-20 15:13:19 -04004651
4652 ret = bdrv_flush(reopen_state->bs);
4653 if (ret) {
Eric Blake455b0fd2015-11-10 23:51:20 -07004654 error_setg_errno(errp, -ret, "Error flushing drive");
Jeff Codye971aa12012-09-20 15:13:19 -04004655 goto error;
4656 }
4657
4658 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004659 /*
4660 * If a driver-specific option is missing, it means that we
4661 * should reset it to its default value.
4662 * But not all options allow that, so we need to check it first.
4663 */
4664 ret = bdrv_reset_options_allowed(reopen_state->bs,
4665 reopen_state->options, errp);
4666 if (ret) {
4667 goto error;
4668 }
4669
Jeff Codye971aa12012-09-20 15:13:19 -04004670 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4671 if (ret) {
4672 if (local_err != NULL) {
4673 error_propagate(errp, local_err);
4674 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004675 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004676 error_setg(errp, "failed while preparing to reopen image '%s'",
4677 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004678 }
4679 goto error;
4680 }
4681 } else {
4682 /* It is currently mandatory to have a bdrv_reopen_prepare()
4683 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004684 error_setg(errp, "Block format '%s' used by node '%s' "
4685 "does not support reopening files", drv->format_name,
4686 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004687 ret = -1;
4688 goto error;
4689 }
4690
Max Reitz9ad08c42018-11-16 17:45:24 +01004691 drv_prepared = true;
4692
Alberto Garciabacd9b82019-03-12 18:48:46 +02004693 /*
4694 * We must provide the 'backing' option if the BDS has a backing
4695 * file or if the image file has a backing file name as part of
4696 * its metadata. Otherwise the 'backing' option can be omitted.
4697 */
4698 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004699 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004700 error_setg(errp, "backing is missing for '%s'",
4701 reopen_state->bs->node_name);
4702 ret = -EINVAL;
4703 goto error;
4704 }
4705
Alberto Garciacb828c32019-03-12 18:48:47 +02004706 /*
4707 * Allow changing the 'backing' option. The new value can be
4708 * either a reference to an existing node (using its node name)
4709 * or NULL to simply detach the current backing file.
4710 */
4711 ret = bdrv_reopen_parse_backing(reopen_state, errp);
4712 if (ret < 0) {
4713 goto error;
4714 }
4715 qdict_del(reopen_state->options, "backing");
4716
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004717 /* Options that are not handled are only okay if they are unchanged
4718 * compared to the old state. It is expected that some options are only
4719 * used for the initial open, but not reopen (e.g. filename) */
4720 if (qdict_size(reopen_state->options)) {
4721 const QDictEntry *entry = qdict_first(reopen_state->options);
4722
4723 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004724 QObject *new = entry->value;
4725 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004726
Alberto Garciadb905282018-09-06 12:37:05 +03004727 /* Allow child references (child_name=node_name) as long as they
4728 * point to the current child (i.e. everything stays the same). */
4729 if (qobject_type(new) == QTYPE_QSTRING) {
4730 BdrvChild *child;
4731 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4732 if (!strcmp(child->name, entry->key)) {
4733 break;
4734 }
4735 }
4736
4737 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004738 if (!strcmp(child->bs->node_name,
4739 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004740 continue; /* Found child with this name, skip option */
4741 }
4742 }
4743 }
4744
Max Reitz54fd1b02017-11-14 19:01:26 +01004745 /*
4746 * TODO: When using -drive to specify blockdev options, all values
4747 * will be strings; however, when using -blockdev, blockdev-add or
4748 * filenames using the json:{} pseudo-protocol, they will be
4749 * correctly typed.
4750 * In contrast, reopening options are (currently) always strings
4751 * (because you can only specify them through qemu-io; all other
4752 * callers do not specify any options).
4753 * Therefore, when using anything other than -drive to create a BDS,
4754 * this cannot detect non-string options as unchanged, because
4755 * qobject_is_equal() always returns false for objects of different
4756 * type. In the future, this should be remedied by correctly typing
4757 * all options. For now, this is not too big of an issue because
4758 * the user can simply omit options which cannot be changed anyway,
4759 * so they will stay unchanged.
4760 */
4761 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004762 error_setg(errp, "Cannot change the option '%s'", entry->key);
4763 ret = -EINVAL;
4764 goto error;
4765 }
4766 } while ((entry = qdict_next(reopen_state->options, entry)));
4767 }
4768
Jeff Codye971aa12012-09-20 15:13:19 -04004769 ret = 0;
4770
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004771 /* Restore the original reopen_state->options QDict */
4772 qobject_unref(reopen_state->options);
4773 reopen_state->options = qobject_ref(orig_reopen_opts);
4774
Jeff Codye971aa12012-09-20 15:13:19 -04004775error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004776 if (ret < 0 && drv_prepared) {
4777 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4778 * call drv->bdrv_reopen_abort() before signaling an error
4779 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4780 * when the respective bdrv_reopen_prepare() has failed) */
4781 if (drv->bdrv_reopen_abort) {
4782 drv->bdrv_reopen_abort(reopen_state);
4783 }
4784 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004785 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004786 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004787 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004788 return ret;
4789}
4790
4791/*
4792 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4793 * makes them final by swapping the staging BlockDriverState contents into
4794 * the active BlockDriverState contents.
4795 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004796static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004797{
4798 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004799 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004800 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004801
4802 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004803 bs = reopen_state->bs;
4804 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004805 assert(drv != NULL);
4806
4807 /* If there are any driver level actions to take */
4808 if (drv->bdrv_reopen_commit) {
4809 drv->bdrv_reopen_commit(reopen_state);
4810 }
4811
4812 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004813 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004814 qobject_unref(bs->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004815
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004816 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004817 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004818 bs->open_flags = reopen_state->flags;
4819 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
Alberto Garcia543770b2018-09-06 12:37:09 +03004820 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004821
Alberto Garciacb828c32019-03-12 18:48:47 +02004822 if (reopen_state->replace_backing_bs) {
4823 qdict_del(bs->explicit_options, "backing");
4824 qdict_del(bs->options, "backing");
4825 }
4826
Alberto Garcia50196d72018-09-06 12:37:03 +03004827 /* Remove child references from bs->options and bs->explicit_options.
4828 * Child options were already removed in bdrv_reopen_queue_child() */
4829 QLIST_FOREACH(child, &bs->children, next) {
4830 qdict_del(bs->explicit_options, child->name);
4831 qdict_del(bs->options, child->name);
4832 }
4833
Alberto Garciacb828c32019-03-12 18:48:47 +02004834 /*
4835 * Change the backing file if a new one was specified. We do this
4836 * after updating bs->options, so bdrv_refresh_filename() (called
4837 * from bdrv_set_backing_hd()) has the new values.
4838 */
4839 if (reopen_state->replace_backing_bs) {
Max Reitz1d42f482019-06-12 17:24:39 +02004840 BlockDriverState *old_backing_bs = child_bs(bs->backing);
Alberto Garciacb828c32019-03-12 18:48:47 +02004841 assert(!old_backing_bs || !old_backing_bs->implicit);
4842 /* Abort the permission update on the backing bs we're detaching */
4843 if (old_backing_bs) {
4844 bdrv_abort_perm_update(old_backing_bs);
4845 }
4846 bdrv_set_backing_hd(bs, reopen_state->new_backing_bs, &error_abort);
4847 }
4848
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004849 bdrv_refresh_limits(bs, NULL, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004850}
4851
4852/*
4853 * Abort the reopen, and delete and free the staged changes in
4854 * reopen_state
4855 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004856static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004857{
4858 BlockDriver *drv;
4859
4860 assert(reopen_state != NULL);
4861 drv = reopen_state->bs->drv;
4862 assert(drv != NULL);
4863
4864 if (drv->bdrv_reopen_abort) {
4865 drv->bdrv_reopen_abort(reopen_state);
4866 }
4867}
4868
4869
Max Reitz64dff522016-01-29 16:36:10 +01004870static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004871{
Max Reitz33384422014-06-20 21:57:33 +02004872 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004873 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004874
Max Reitz30f55fb2016-05-17 16:41:32 +02004875 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004876
Paolo Bonzinifc272912015-12-23 11:48:24 +01004877 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004878 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004879 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004880
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004881 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004882 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004883 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004884 bs->drv->bdrv_close(bs);
4885 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004886 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004887 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004888
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004889 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004890 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004891 }
4892
Alberto Garciadd4118c2019-05-13 16:46:17 +03004893 bs->backing = NULL;
4894 bs->file = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004895 g_free(bs->opaque);
4896 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004897 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004898 bs->backing_file[0] = '\0';
4899 bs->backing_format[0] = '\0';
4900 bs->total_sectors = 0;
4901 bs->encrypted = false;
4902 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004903 qobject_unref(bs->options);
4904 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004905 bs->options = NULL;
4906 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004907 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004908 bs->full_open_options = NULL;
4909
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004910 bdrv_release_named_dirty_bitmaps(bs);
4911 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4912
Max Reitz33384422014-06-20 21:57:33 +02004913 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4914 g_free(ban);
4915 }
4916 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004917 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004918
4919 /*
4920 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4921 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4922 * gets called.
4923 */
4924 if (bs->quiesce_counter) {
4925 bdrv_drain_all_end_quiesce(bs);
4926 }
bellardb3380822004-03-14 21:38:54 +00004927}
4928
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004929void bdrv_close_all(void)
4930{
Kevin Wolfb3b52992018-05-16 13:46:37 +02004931 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004932
Max Reitzca9bd242016-01-29 16:36:14 +01004933 /* Drop references from requests still in flight, such as canceled block
4934 * jobs whose AIO context has not been polled yet */
4935 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004936
Max Reitzca9bd242016-01-29 16:36:14 +01004937 blk_remove_all_bs();
4938 blockdev_close_all_bdrv_states();
4939
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004940 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004941}
4942
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004943static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004944{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004945 GQueue *queue;
4946 GHashTable *found;
4947 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004948
Max Reitzbd86fb92020-05-13 13:05:13 +02004949 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004950 return false;
4951 }
4952
Max Reitzec9f10f2018-06-13 20:18:15 +02004953 /* If the child @c belongs to the BDS @to, replacing the current
4954 * c->bs by @to would mean to create a loop.
4955 *
4956 * Such a case occurs when appending a BDS to a backing chain.
4957 * For instance, imagine the following chain:
4958 *
4959 * guest device -> node A -> further backing chain...
4960 *
4961 * Now we create a new BDS B which we want to put on top of this
4962 * chain, so we first attach A as its backing node:
4963 *
4964 * node B
4965 * |
4966 * v
4967 * guest device -> node A -> further backing chain...
4968 *
4969 * Finally we want to replace A by B. When doing that, we want to
4970 * replace all pointers to A by pointers to B -- except for the
4971 * pointer from B because (1) that would create a loop, and (2)
4972 * that pointer should simply stay intact:
4973 *
4974 * guest device -> node B
4975 * |
4976 * v
4977 * node A -> further backing chain...
4978 *
4979 * In general, when replacing a node A (c->bs) by a node B (@to),
4980 * if A is a child of B, that means we cannot replace A by B there
4981 * because that would create a loop. Silently detaching A from B
4982 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004983 * place there is the most sensible choice.
4984 *
4985 * We would also create a loop in any cases where @c is only
4986 * indirectly referenced by @to. Prevent this by returning false
4987 * if @c is found (by breadth-first search) anywhere in the whole
4988 * subtree of @to.
4989 */
4990
4991 ret = true;
4992 found = g_hash_table_new(NULL, NULL);
4993 g_hash_table_add(found, to);
4994 queue = g_queue_new();
4995 g_queue_push_tail(queue, to);
4996
4997 while (!g_queue_is_empty(queue)) {
4998 BlockDriverState *v = g_queue_pop_head(queue);
4999 BdrvChild *c2;
5000
5001 QLIST_FOREACH(c2, &v->children, next) {
5002 if (c2 == c) {
5003 ret = false;
5004 break;
5005 }
5006
5007 if (g_hash_table_contains(found, c2->bs)) {
5008 continue;
5009 }
5010
5011 g_queue_push_tail(queue, c2->bs);
5012 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005013 }
5014 }
5015
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005016 g_queue_free(queue);
5017 g_hash_table_destroy(found);
5018
5019 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005020}
5021
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005022typedef struct BdrvRemoveFilterOrCowChild {
5023 BdrvChild *child;
5024 bool is_backing;
5025} BdrvRemoveFilterOrCowChild;
5026
5027static void bdrv_remove_filter_or_cow_child_abort(void *opaque)
5028{
5029 BdrvRemoveFilterOrCowChild *s = opaque;
5030 BlockDriverState *parent_bs = s->child->opaque;
5031
5032 QLIST_INSERT_HEAD(&parent_bs->children, s->child, next);
5033 if (s->is_backing) {
5034 parent_bs->backing = s->child;
5035 } else {
5036 parent_bs->file = s->child;
5037 }
5038
5039 /*
5040 * We don't have to restore child->bs here to undo bdrv_replace_child()
5041 * because that function is transactionable and it registered own completion
5042 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
5043 * called automatically.
5044 */
5045}
5046
5047static void bdrv_remove_filter_or_cow_child_commit(void *opaque)
5048{
5049 BdrvRemoveFilterOrCowChild *s = opaque;
5050
5051 bdrv_child_free(s->child);
5052}
5053
5054static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = {
5055 .abort = bdrv_remove_filter_or_cow_child_abort,
5056 .commit = bdrv_remove_filter_or_cow_child_commit,
5057 .clean = g_free,
5058};
5059
5060/*
5061 * A function to remove backing-chain child of @bs if exists: cow child for
5062 * format nodes (always .backing) and filter child for filters (may be .file or
5063 * .backing)
5064 */
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005065static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
5066 Transaction *tran)
5067{
5068 BdrvRemoveFilterOrCowChild *s;
5069 BdrvChild *child = bdrv_filter_or_cow_child(bs);
5070
5071 if (!child) {
5072 return;
5073 }
5074
5075 if (child->bs) {
5076 bdrv_replace_child_safe(child, NULL, tran);
5077 }
5078
5079 s = g_new(BdrvRemoveFilterOrCowChild, 1);
5080 *s = (BdrvRemoveFilterOrCowChild) {
5081 .child = child,
5082 .is_backing = (child == bs->backing),
5083 };
5084 tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
5085
5086 QLIST_SAFE_REMOVE(child, next);
5087 if (s->is_backing) {
5088 bs->backing = NULL;
5089 } else {
5090 bs->file = NULL;
5091 }
5092}
5093
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005094static int bdrv_replace_node_noperm(BlockDriverState *from,
5095 BlockDriverState *to,
5096 bool auto_skip, Transaction *tran,
5097 Error **errp)
5098{
5099 BdrvChild *c, *next;
5100
5101 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5102 assert(c->bs == from);
5103 if (!should_update_child(c, to)) {
5104 if (auto_skip) {
5105 continue;
5106 }
5107 error_setg(errp, "Should not change '%s' link to '%s'",
5108 c->name, from->node_name);
5109 return -EINVAL;
5110 }
5111 if (c->frozen) {
5112 error_setg(errp, "Cannot change '%s' link to '%s'",
5113 c->name, from->node_name);
5114 return -EPERM;
5115 }
5116 bdrv_replace_child_safe(c, to, tran);
5117 }
5118
5119 return 0;
5120}
5121
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005122/*
5123 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5124 * if it creates a parent-child relation loop or if parent is block-job.
5125 *
5126 * With auto_skip=false the error is returned if from has a parent which should
5127 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005128 *
5129 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5130 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005131 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005132static int bdrv_replace_node_common(BlockDriverState *from,
5133 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005134 bool auto_skip, bool detach_subchain,
5135 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005136{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005137 Transaction *tran = tran_new();
5138 g_autoptr(GHashTable) found = NULL;
5139 g_autoptr(GSList) refresh_list = NULL;
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005140 BlockDriverState *to_cow_parent;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005141 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005142
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005143 if (detach_subchain) {
5144 assert(bdrv_chain_contains(from, to));
5145 assert(from != to);
5146 for (to_cow_parent = from;
5147 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5148 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5149 {
5150 ;
5151 }
5152 }
5153
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005154 /* Make sure that @from doesn't go away until we have successfully attached
5155 * all of its parents to @to. */
5156 bdrv_ref(from);
5157
Kevin Wolff871abd2019-05-21 19:00:25 +02005158 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01005159 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02005160 bdrv_drained_begin(from);
5161
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005162 /*
5163 * Do the replacement without permission update.
5164 * Replacement may influence the permissions, we should calculate new
5165 * permissions based on new graph. If we fail, we'll roll-back the
5166 * replacement.
5167 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005168 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5169 if (ret < 0) {
5170 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005171 }
5172
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005173 if (detach_subchain) {
5174 bdrv_remove_filter_or_cow_child(to_cow_parent, tran);
5175 }
5176
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005177 found = g_hash_table_new(NULL, NULL);
5178
5179 refresh_list = bdrv_topological_dfs(refresh_list, found, to);
5180 refresh_list = bdrv_topological_dfs(refresh_list, found, from);
5181
5182 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005183 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005184 goto out;
5185 }
5186
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005187 ret = 0;
5188
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005189out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005190 tran_finalize(tran, ret);
5191
Kevin Wolff871abd2019-05-21 19:00:25 +02005192 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005193 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005194
5195 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005196}
5197
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005198int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5199 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005200{
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005201 return bdrv_replace_node_common(from, to, true, false, errp);
5202}
5203
5204int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5205{
5206 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5207 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005208}
5209
Jeff Cody8802d1f2012-02-28 15:54:06 -05005210/*
5211 * Add new bs contents at the top of an image chain while the chain is
5212 * live, while keeping required fields on the top layer.
5213 *
5214 * This will modify the BlockDriverState fields, and swap contents
5215 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5216 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005217 * bs_new must not be attached to a BlockBackend and must not have backing
5218 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005219 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005220 * This function does not create any image files.
5221 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005222int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5223 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005224{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005225 int ret;
5226 Transaction *tran = tran_new();
5227
5228 assert(!bs_new->backing);
5229
5230 ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5231 &child_of_bds, bdrv_backing_role(bs_new),
5232 &bs_new->backing, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005233 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005234 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005235 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005236
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005237 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005238 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005239 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005240 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005241
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005242 ret = bdrv_refresh_perms(bs_new, errp);
5243out:
5244 tran_finalize(tran, ret);
5245
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005246 bdrv_refresh_limits(bs_top, NULL, NULL);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005247
5248 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005249}
5250
Fam Zheng4f6fd342013-08-23 09:14:47 +08005251static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005252{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005253 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005254 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02005255
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005256 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005257 if (bs->node_name[0] != '\0') {
5258 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5259 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005260 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5261
Anton Kuchin30c321f2019-05-07 11:12:56 +03005262 bdrv_close(bs);
5263
Anthony Liguori7267c092011-08-20 22:09:37 -05005264 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005265}
5266
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005267BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *node_options,
5268 int flags, Error **errp)
5269{
5270 BlockDriverState *new_node_bs;
5271 Error *local_err = NULL;
5272
5273 new_node_bs = bdrv_open(NULL, NULL, node_options, flags, errp);
5274 if (new_node_bs == NULL) {
5275 error_prepend(errp, "Could not create node: ");
5276 return NULL;
5277 }
5278
5279 bdrv_drained_begin(bs);
5280 bdrv_replace_node(bs, new_node_bs, &local_err);
5281 bdrv_drained_end(bs);
5282
5283 if (local_err) {
5284 bdrv_unref(new_node_bs);
5285 error_propagate(errp, local_err);
5286 return NULL;
5287 }
5288
5289 return new_node_bs;
5290}
5291
aliguorie97fc192009-04-21 23:11:50 +00005292/*
5293 * Run consistency checks on an image
5294 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005295 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005296 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005297 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005298 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005299int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5300 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005301{
Max Reitz908bcd52014-08-07 22:47:55 +02005302 if (bs->drv == NULL) {
5303 return -ENOMEDIUM;
5304 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005305 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005306 return -ENOTSUP;
5307 }
5308
Kevin Wolfe076f332010-06-29 11:43:13 +02005309 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005310 return bs->drv->bdrv_co_check(bs, res, fix);
5311}
5312
Kevin Wolf756e6732010-01-12 12:55:17 +01005313/*
5314 * Return values:
5315 * 0 - success
5316 * -EINVAL - backing format specified, but no file
5317 * -ENOSPC - can't update the backing file because no space is left in the
5318 * image file header
5319 * -ENOTSUP - format driver doesn't support changing the backing file
5320 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005321int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
5322 const char *backing_fmt, bool warn)
Kevin Wolf756e6732010-01-12 12:55:17 +01005323{
5324 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005325 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005326
Max Reitzd470ad42017-11-10 21:31:09 +01005327 if (!drv) {
5328 return -ENOMEDIUM;
5329 }
5330
Paolo Bonzini5f377792012-04-12 14:01:01 +02005331 /* Backing file format doesn't make sense without a backing file */
5332 if (backing_fmt && !backing_file) {
5333 return -EINVAL;
5334 }
5335
Eric Blakee54ee1b2020-07-06 15:39:53 -05005336 if (warn && backing_file && !backing_fmt) {
5337 warn_report("Deprecated use of backing file without explicit "
5338 "backing format, use of this image requires "
5339 "potentially unsafe format probing");
5340 }
5341
Kevin Wolf756e6732010-01-12 12:55:17 +01005342 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005343 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005344 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005345 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005346 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005347
5348 if (ret == 0) {
5349 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5350 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005351 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5352 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005353 }
5354 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005355}
5356
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005357/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005358 * Finds the first non-filter node above bs in the chain between
5359 * active and bs. The returned node is either an immediate parent of
5360 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005361 *
5362 * Returns NULL if bs is not found in active's image chain,
5363 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005364 *
5365 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005366 */
5367BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5368 BlockDriverState *bs)
5369{
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005370 bs = bdrv_skip_filters(bs);
5371 active = bdrv_skip_filters(active);
5372
5373 while (active) {
5374 BlockDriverState *next = bdrv_backing_chain_next(active);
5375 if (bs == next) {
5376 return active;
5377 }
5378 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005379 }
5380
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005381 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005382}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005383
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005384/* Given a BDS, searches for the base layer. */
5385BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5386{
5387 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005388}
5389
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005390/*
Max Reitz7b99a262019-06-12 16:07:11 +02005391 * Return true if at least one of the COW (backing) and filter links
5392 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005393 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005394 */
5395bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5396 Error **errp)
5397{
5398 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005399 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005400
Max Reitz7b99a262019-06-12 16:07:11 +02005401 for (i = bs; i != base; i = child_bs(child)) {
5402 child = bdrv_filter_or_cow_child(i);
5403
5404 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005405 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005406 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005407 return true;
5408 }
5409 }
5410
5411 return false;
5412}
5413
5414/*
Max Reitz7b99a262019-06-12 16:07:11 +02005415 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005416 * If any of the links is already frozen the operation is aborted and
5417 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005418 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005419 * Returns 0 on success. On failure returns < 0 and sets @errp.
5420 */
5421int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5422 Error **errp)
5423{
5424 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005425 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005426
5427 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5428 return -EPERM;
5429 }
5430
Max Reitz7b99a262019-06-12 16:07:11 +02005431 for (i = bs; i != base; i = child_bs(child)) {
5432 child = bdrv_filter_or_cow_child(i);
5433 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005434 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005435 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005436 return -EPERM;
5437 }
5438 }
5439
Max Reitz7b99a262019-06-12 16:07:11 +02005440 for (i = bs; i != base; i = child_bs(child)) {
5441 child = bdrv_filter_or_cow_child(i);
5442 if (child) {
5443 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005444 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005445 }
5446
5447 return 0;
5448}
5449
5450/*
Max Reitz7b99a262019-06-12 16:07:11 +02005451 * Unfreeze all COW (backing) and filter links between @bs and @base.
5452 * The caller must ensure that all links are frozen before using this
5453 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005454 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005455 */
5456void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5457{
5458 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005459 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005460
Max Reitz7b99a262019-06-12 16:07:11 +02005461 for (i = bs; i != base; i = child_bs(child)) {
5462 child = bdrv_filter_or_cow_child(i);
5463 if (child) {
5464 assert(child->frozen);
5465 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005466 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005467 }
5468}
5469
5470/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005471 * Drops images above 'base' up to and including 'top', and sets the image
5472 * above 'top' to have base as its backing file.
5473 *
5474 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5475 * information in 'bs' can be properly updated.
5476 *
5477 * E.g., this will convert the following chain:
5478 * bottom <- base <- intermediate <- top <- active
5479 *
5480 * to
5481 *
5482 * bottom <- base <- active
5483 *
5484 * It is allowed for bottom==base, in which case it converts:
5485 *
5486 * base <- intermediate <- top <- active
5487 *
5488 * to
5489 *
5490 * base <- active
5491 *
Jeff Cody54e26902014-06-25 15:40:10 -04005492 * If backing_file_str is non-NULL, it will be used when modifying top's
5493 * overlay image metadata.
5494 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005495 * Error conditions:
5496 * if active == top, that is considered an error
5497 *
5498 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005499int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5500 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005501{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005502 BlockDriverState *explicit_top = top;
5503 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005504 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005505 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005506 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005507 g_autoptr(GSList) updated_children = NULL;
5508 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005509
Kevin Wolf6858eba2017-06-29 19:32:21 +02005510 bdrv_ref(top);
Max Reitz637d54a2019-07-22 15:33:43 +02005511 bdrv_subtree_drained_begin(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005512
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005513 if (!top->drv || !base->drv) {
5514 goto exit;
5515 }
5516
Kevin Wolf5db15a52015-09-14 15:33:33 +02005517 /* Make sure that base is in the backing chain of top */
5518 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005519 goto exit;
5520 }
5521
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005522 /* If 'base' recursively inherits from 'top' then we should set
5523 * base->inherits_from to top->inherits_from after 'top' and all
5524 * other intermediate nodes have been dropped.
5525 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5526 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005527 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005528 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5529
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005530 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02005531 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
5532 * we've figured out how they should work. */
Max Reitzf30c66b2019-02-01 20:29:05 +01005533 if (!backing_file_str) {
5534 bdrv_refresh_filename(base);
5535 backing_file_str = base->filename;
5536 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005537
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005538 QLIST_FOREACH(c, &top->parents, next_parent) {
5539 updated_children = g_slist_prepend(updated_children, c);
5540 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005541
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005542 /*
5543 * It seems correct to pass detach_subchain=true here, but it triggers
5544 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5545 * another drained section, which modify the graph (for example, removing
5546 * the child, which we keep in updated_children list). So, it's a TODO.
5547 *
5548 * Note, bug triggered if pass detach_subchain=true here and run
5549 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5550 * That's a FIXME.
5551 */
5552 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005553 if (local_err) {
5554 error_report_err(local_err);
5555 goto exit;
5556 }
5557
5558 for (p = updated_children; p; p = p->next) {
5559 c = p->data;
5560
Max Reitzbd86fb92020-05-13 13:05:13 +02005561 if (c->klass->update_filename) {
5562 ret = c->klass->update_filename(c, base, backing_file_str,
5563 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005564 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005565 /*
5566 * TODO: Actually, we want to rollback all previous iterations
5567 * of this loop, and (which is almost impossible) previous
5568 * bdrv_replace_node()...
5569 *
5570 * Note, that c->klass->update_filename may lead to permission
5571 * update, so it's a bad idea to call it inside permission
5572 * update transaction of bdrv_replace_node.
5573 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005574 error_report_err(local_err);
5575 goto exit;
5576 }
5577 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005578 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005579
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005580 if (update_inherits_from) {
5581 base->inherits_from = explicit_top->inherits_from;
5582 }
5583
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005584 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005585exit:
Max Reitz637d54a2019-07-22 15:33:43 +02005586 bdrv_subtree_drained_end(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005587 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005588 return ret;
5589}
5590
bellard83f64092006-08-01 16:21:11 +00005591/**
Max Reitz081e4652019-06-12 18:14:13 +02005592 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5593 * sums the size of all data-bearing children. (This excludes backing
5594 * children.)
5595 */
5596static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5597{
5598 BdrvChild *child;
5599 int64_t child_size, sum = 0;
5600
5601 QLIST_FOREACH(child, &bs->children, next) {
5602 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5603 BDRV_CHILD_FILTERED))
5604 {
5605 child_size = bdrv_get_allocated_file_size(child->bs);
5606 if (child_size < 0) {
5607 return child_size;
5608 }
5609 sum += child_size;
5610 }
5611 }
5612
5613 return sum;
5614}
5615
5616/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005617 * Length of a allocated file in bytes. Sparse files are counted by actual
5618 * allocated space. Return < 0 if error or unknown.
5619 */
5620int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5621{
5622 BlockDriver *drv = bs->drv;
5623 if (!drv) {
5624 return -ENOMEDIUM;
5625 }
5626 if (drv->bdrv_get_allocated_file_size) {
5627 return drv->bdrv_get_allocated_file_size(bs);
5628 }
Max Reitz081e4652019-06-12 18:14:13 +02005629
5630 if (drv->bdrv_file_open) {
5631 /*
5632 * Protocol drivers default to -ENOTSUP (most of their data is
5633 * not stored in any of their children (if they even have any),
5634 * so there is no generic way to figure it out).
5635 */
5636 return -ENOTSUP;
5637 } else if (drv->is_filter) {
5638 /* Filter drivers default to the size of their filtered child */
5639 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5640 } else {
5641 /* Other drivers default to summing their children's sizes */
5642 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005643 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005644}
5645
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005646/*
5647 * bdrv_measure:
5648 * @drv: Format driver
5649 * @opts: Creation options for new image
5650 * @in_bs: Existing image containing data for new image (may be NULL)
5651 * @errp: Error object
5652 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5653 * or NULL on error
5654 *
5655 * Calculate file size required to create a new image.
5656 *
5657 * If @in_bs is given then space for allocated clusters and zero clusters
5658 * from that image are included in the calculation. If @opts contains a
5659 * backing file that is shared by @in_bs then backing clusters may be omitted
5660 * from the calculation.
5661 *
5662 * If @in_bs is NULL then the calculation includes no allocated clusters
5663 * unless a preallocation option is given in @opts.
5664 *
5665 * Note that @in_bs may use a different BlockDriver from @drv.
5666 *
5667 * If an error occurs the @errp pointer is set.
5668 */
5669BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5670 BlockDriverState *in_bs, Error **errp)
5671{
5672 if (!drv->bdrv_measure) {
5673 error_setg(errp, "Block driver '%s' does not support size measurement",
5674 drv->format_name);
5675 return NULL;
5676 }
5677
5678 return drv->bdrv_measure(opts, in_bs, errp);
5679}
5680
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005681/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005682 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005683 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005684int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005685{
5686 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005687
bellard83f64092006-08-01 16:21:11 +00005688 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005689 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005690
Kevin Wolfb94a2612013-10-29 12:18:58 +01005691 if (drv->has_variable_length) {
5692 int ret = refresh_total_sectors(bs, bs->total_sectors);
5693 if (ret < 0) {
5694 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005695 }
bellard83f64092006-08-01 16:21:11 +00005696 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005697 return bs->total_sectors;
5698}
5699
5700/**
5701 * Return length in bytes on success, -errno on error.
5702 * The length is always a multiple of BDRV_SECTOR_SIZE.
5703 */
5704int64_t bdrv_getlength(BlockDriverState *bs)
5705{
5706 int64_t ret = bdrv_nb_sectors(bs);
5707
Eric Blake122860b2020-11-05 09:51:22 -06005708 if (ret < 0) {
5709 return ret;
5710 }
5711 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5712 return -EFBIG;
5713 }
5714 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005715}
5716
bellard19cb3732006-08-19 11:45:59 +00005717/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005718void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005719{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005720 int64_t nb_sectors = bdrv_nb_sectors(bs);
5721
5722 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005723}
bellardcf989512004-02-16 21:56:36 +00005724
Eric Blake54115412016-06-23 16:37:26 -06005725bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005726{
5727 return bs->sg;
5728}
5729
Max Reitzae23f782019-06-12 22:57:15 +02005730/**
5731 * Return whether the given node supports compressed writes.
5732 */
5733bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5734{
5735 BlockDriverState *filtered;
5736
5737 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5738 return false;
5739 }
5740
5741 filtered = bdrv_filter_bs(bs);
5742 if (filtered) {
5743 /*
5744 * Filters can only forward compressed writes, so we have to
5745 * check the child.
5746 */
5747 return bdrv_supports_compressed_writes(filtered);
5748 }
5749
5750 return true;
5751}
5752
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005753const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005754{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005755 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005756}
5757
Stefan Hajnocziada42402014-08-27 12:08:55 +01005758static int qsort_strcmp(const void *a, const void *b)
5759{
Max Reitzceff5bd2016-10-12 22:49:05 +02005760 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005761}
5762
ths5fafdf22007-09-16 21:08:06 +00005763void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005764 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005765{
5766 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005767 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005768 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005769 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005770
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005771 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005772 if (drv->format_name) {
5773 bool found = false;
5774 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005775
5776 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5777 continue;
5778 }
5779
Jeff Codye855e4f2014-04-28 18:29:54 -04005780 while (formats && i && !found) {
5781 found = !strcmp(formats[--i], drv->format_name);
5782 }
5783
5784 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005785 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005786 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005787 }
5788 }
bellardea2384d2004-08-01 21:59:26 +00005789 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005790
Max Reitzeb0df692016-10-12 22:49:06 +02005791 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5792 const char *format_name = block_driver_modules[i].format_name;
5793
5794 if (format_name) {
5795 bool found = false;
5796 int j = count;
5797
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005798 if (use_bdrv_whitelist &&
5799 !bdrv_format_is_whitelisted(format_name, read_only)) {
5800 continue;
5801 }
5802
Max Reitzeb0df692016-10-12 22:49:06 +02005803 while (formats && j && !found) {
5804 found = !strcmp(formats[--j], format_name);
5805 }
5806
5807 if (!found) {
5808 formats = g_renew(const char *, formats, count + 1);
5809 formats[count++] = format_name;
5810 }
5811 }
5812 }
5813
Stefan Hajnocziada42402014-08-27 12:08:55 +01005814 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5815
5816 for (i = 0; i < count; i++) {
5817 it(opaque, formats[i]);
5818 }
5819
Jeff Codye855e4f2014-04-28 18:29:54 -04005820 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005821}
5822
Benoît Canetdc364f42014-01-23 21:31:32 +01005823/* This function is to find a node in the bs graph */
5824BlockDriverState *bdrv_find_node(const char *node_name)
5825{
5826 BlockDriverState *bs;
5827
5828 assert(node_name);
5829
5830 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5831 if (!strcmp(node_name, bs->node_name)) {
5832 return bs;
5833 }
5834 }
5835 return NULL;
5836}
5837
Benoît Canetc13163f2014-01-23 21:31:34 +01005838/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01005839BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5840 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01005841{
Eric Blake9812e712020-10-27 00:05:47 -05005842 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01005843 BlockDriverState *bs;
5844
5845 list = NULL;
5846 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01005847 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03005848 if (!info) {
5849 qapi_free_BlockDeviceInfoList(list);
5850 return NULL;
5851 }
Eric Blake9812e712020-10-27 00:05:47 -05005852 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01005853 }
5854
5855 return list;
5856}
5857
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005858typedef struct XDbgBlockGraphConstructor {
5859 XDbgBlockGraph *graph;
5860 GHashTable *graph_nodes;
5861} XDbgBlockGraphConstructor;
5862
5863static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5864{
5865 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5866
5867 gr->graph = g_new0(XDbgBlockGraph, 1);
5868 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5869
5870 return gr;
5871}
5872
5873static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5874{
5875 XDbgBlockGraph *graph = gr->graph;
5876
5877 g_hash_table_destroy(gr->graph_nodes);
5878 g_free(gr);
5879
5880 return graph;
5881}
5882
5883static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5884{
5885 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5886
5887 if (ret != 0) {
5888 return ret;
5889 }
5890
5891 /*
5892 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5893 * answer of g_hash_table_lookup.
5894 */
5895 ret = g_hash_table_size(gr->graph_nodes) + 1;
5896 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5897
5898 return ret;
5899}
5900
5901static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5902 XDbgBlockGraphNodeType type, const char *name)
5903{
5904 XDbgBlockGraphNode *n;
5905
5906 n = g_new0(XDbgBlockGraphNode, 1);
5907
5908 n->id = xdbg_graph_node_num(gr, node);
5909 n->type = type;
5910 n->name = g_strdup(name);
5911
Eric Blake9812e712020-10-27 00:05:47 -05005912 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005913}
5914
5915static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5916 const BdrvChild *child)
5917{
Max Reitzcdb1cec2019-11-08 13:34:52 +01005918 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005919 XDbgBlockGraphEdge *edge;
5920
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005921 edge = g_new0(XDbgBlockGraphEdge, 1);
5922
5923 edge->parent = xdbg_graph_node_num(gr, parent);
5924 edge->child = xdbg_graph_node_num(gr, child->bs);
5925 edge->name = g_strdup(child->name);
5926
Max Reitzcdb1cec2019-11-08 13:34:52 +01005927 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5928 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5929
5930 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005931 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005932 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01005933 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005934 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005935 }
5936 }
5937
Eric Blake9812e712020-10-27 00:05:47 -05005938 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005939}
5940
5941
5942XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5943{
5944 BlockBackend *blk;
5945 BlockJob *job;
5946 BlockDriverState *bs;
5947 BdrvChild *child;
5948 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5949
5950 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5951 char *allocated_name = NULL;
5952 const char *name = blk_name(blk);
5953
5954 if (!*name) {
5955 name = allocated_name = blk_get_attached_dev_id(blk);
5956 }
5957 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5958 name);
5959 g_free(allocated_name);
5960 if (blk_root(blk)) {
5961 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5962 }
5963 }
5964
5965 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5966 GSList *el;
5967
5968 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5969 job->job.id);
5970 for (el = job->nodes; el; el = el->next) {
5971 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5972 }
5973 }
5974
5975 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5976 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5977 bs->node_name);
5978 QLIST_FOREACH(child, &bs->children, next) {
5979 xdbg_graph_add_edge(gr, bs, child);
5980 }
5981 }
5982
5983 return xdbg_graph_finalize(gr);
5984}
5985
Benoît Canet12d3ba82014-01-23 21:31:35 +01005986BlockDriverState *bdrv_lookup_bs(const char *device,
5987 const char *node_name,
5988 Error **errp)
5989{
Markus Armbruster7f06d472014-10-07 13:59:12 +02005990 BlockBackend *blk;
5991 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005992
Benoît Canet12d3ba82014-01-23 21:31:35 +01005993 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02005994 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005995
Markus Armbruster7f06d472014-10-07 13:59:12 +02005996 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005997 bs = blk_bs(blk);
5998 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02005999 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02006000 }
6001
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006002 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006003 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006004 }
6005
Benoît Canetdd67fa52014-02-12 17:15:06 +01006006 if (node_name) {
6007 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006008
Benoît Canetdd67fa52014-02-12 17:15:06 +01006009 if (bs) {
6010 return bs;
6011 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006012 }
6013
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006014 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01006015 device ? device : "",
6016 node_name ? node_name : "");
6017 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006018}
6019
Jeff Cody5a6684d2014-06-25 15:40:09 -04006020/* If 'base' is in the same chain as 'top', return true. Otherwise,
6021 * return false. If either argument is NULL, return false. */
6022bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6023{
6024 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006025 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04006026 }
6027
6028 return top != NULL;
6029}
6030
Fam Zheng04df7652014-10-31 11:32:54 +08006031BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6032{
6033 if (!bs) {
6034 return QTAILQ_FIRST(&graph_bdrv_states);
6035 }
6036 return QTAILQ_NEXT(bs, node_list);
6037}
6038
Kevin Wolf0f122642018-03-28 18:29:18 +02006039BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6040{
6041 if (!bs) {
6042 return QTAILQ_FIRST(&all_bdrv_states);
6043 }
6044 return QTAILQ_NEXT(bs, bs_list);
6045}
6046
Fam Zheng20a9e772014-10-31 11:32:55 +08006047const char *bdrv_get_node_name(const BlockDriverState *bs)
6048{
6049 return bs->node_name;
6050}
6051
Kevin Wolf1f0c4612016-03-22 18:38:44 +01006052const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006053{
6054 BdrvChild *c;
6055 const char *name;
6056
6057 /* If multiple parents have a name, just pick the first one. */
6058 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006059 if (c->klass->get_name) {
6060 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006061 if (name && *name) {
6062 return name;
6063 }
6064 }
6065 }
6066
6067 return NULL;
6068}
6069
Markus Armbruster7f06d472014-10-07 13:59:12 +02006070/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02006071const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006072{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006073 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00006074}
6075
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006076/* This can be used to identify nodes that might not have a device
6077 * name associated. Since node and device names live in the same
6078 * namespace, the result is unambiguous. The exception is if both are
6079 * absent, then this returns an empty (non-null) string. */
6080const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6081{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006082 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006083}
6084
Markus Armbrusterc8433282012-06-05 16:49:24 +02006085int bdrv_get_flags(BlockDriverState *bs)
6086{
6087 return bs->open_flags;
6088}
6089
Peter Lieven3ac21622013-06-28 12:47:42 +02006090int bdrv_has_zero_init_1(BlockDriverState *bs)
6091{
6092 return 1;
6093}
6094
Kevin Wolff2feebb2010-04-14 17:30:35 +02006095int bdrv_has_zero_init(BlockDriverState *bs)
6096{
Max Reitz93393e62019-06-12 17:03:38 +02006097 BlockDriverState *filtered;
6098
Max Reitzd470ad42017-11-10 21:31:09 +01006099 if (!bs->drv) {
6100 return 0;
6101 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006102
Paolo Bonzini11212d82013-09-04 19:00:27 +02006103 /* If BS is a copy on write image, it is initialized to
6104 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02006105 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02006106 return 0;
6107 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006108 if (bs->drv->bdrv_has_zero_init) {
6109 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006110 }
Max Reitz93393e62019-06-12 17:03:38 +02006111
6112 filtered = bdrv_filter_bs(bs);
6113 if (filtered) {
6114 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006115 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006116
Peter Lieven3ac21622013-06-28 12:47:42 +02006117 /* safe default */
6118 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006119}
6120
Peter Lieven4ce78692013-10-24 12:06:54 +02006121bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6122{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006123 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006124 return false;
6125 }
6126
Eric Blakee24d8132018-01-26 13:34:39 -06006127 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006128}
6129
ths5fafdf22007-09-16 21:08:06 +00006130void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006131 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006132{
Kevin Wolf3574c602011-10-26 11:02:11 +02006133 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006134}
6135
bellardfaea38e2006-08-05 21:31:00 +00006136int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6137{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006138 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006139 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006140 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6141 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006142 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006143 }
6144 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006145 BlockDriverState *filtered = bdrv_filter_bs(bs);
6146 if (filtered) {
6147 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006148 }
bellardfaea38e2006-08-05 21:31:00 +00006149 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006150 }
bellardfaea38e2006-08-05 21:31:00 +00006151 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006152 ret = drv->bdrv_get_info(bs, bdi);
6153 if (ret < 0) {
6154 return ret;
6155 }
6156
6157 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6158 return -EINVAL;
6159 }
6160
6161 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006162}
6163
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006164ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6165 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006166{
6167 BlockDriver *drv = bs->drv;
6168 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006169 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006170 }
6171 return NULL;
6172}
6173
Anton Nefedovd9245592019-09-23 15:17:37 +03006174BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6175{
6176 BlockDriver *drv = bs->drv;
6177 if (!drv || !drv->bdrv_get_specific_stats) {
6178 return NULL;
6179 }
6180 return drv->bdrv_get_specific_stats(bs);
6181}
6182
Eric Blakea31939e2015-11-18 01:52:54 -07006183void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006184{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006185 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006186 return;
6187 }
6188
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006189 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006190}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006191
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006192static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006193{
6194 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006195 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006196 }
6197
6198 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006199 assert(bs->drv->bdrv_debug_remove_breakpoint);
6200 return bs;
6201 }
6202
6203 return NULL;
6204}
6205
6206int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6207 const char *tag)
6208{
6209 bs = bdrv_find_debug_node(bs);
6210 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006211 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6212 }
6213
6214 return -ENOTSUP;
6215}
6216
Fam Zheng4cc70e92013-11-20 10:01:54 +08006217int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6218{
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006219 bs = bdrv_find_debug_node(bs);
6220 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006221 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6222 }
6223
6224 return -ENOTSUP;
6225}
6226
Kevin Wolf41c695c2012-12-06 14:32:58 +01006227int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6228{
Max Reitz938789e2014-03-10 23:44:08 +01006229 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006230 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006231 }
6232
6233 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6234 return bs->drv->bdrv_debug_resume(bs, tag);
6235 }
6236
6237 return -ENOTSUP;
6238}
6239
6240bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6241{
6242 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006243 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006244 }
6245
6246 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6247 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6248 }
6249
6250 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006251}
6252
Jeff Codyb1b1d782012-10-16 15:49:09 -04006253/* backing_file can either be relative, or absolute, or a protocol. If it is
6254 * relative, it must be relative to the chain. So, passing in bs->filename
6255 * from a BDS as backing_file should not be done, as that may be relative to
6256 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006257BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6258 const char *backing_file)
6259{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006260 char *filename_full = NULL;
6261 char *backing_file_full = NULL;
6262 char *filename_tmp = NULL;
6263 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006264 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006265 BlockDriverState *curr_bs = NULL;
6266 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006267 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006268
6269 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006270 return NULL;
6271 }
6272
Jeff Codyb1b1d782012-10-16 15:49:09 -04006273 filename_full = g_malloc(PATH_MAX);
6274 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006275
6276 is_protocol = path_has_protocol(backing_file);
6277
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006278 /*
6279 * Being largely a legacy function, skip any filters here
6280 * (because filters do not have normal filenames, so they cannot
6281 * match anyway; and allowing json:{} filenames is a bit out of
6282 * scope).
6283 */
6284 for (curr_bs = bdrv_skip_filters(bs);
6285 bdrv_cow_child(curr_bs) != NULL;
6286 curr_bs = bs_below)
6287 {
6288 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006289
Max Reitz0b877d02018-08-01 20:34:11 +02006290 if (bdrv_backing_overridden(curr_bs)) {
6291 /*
6292 * If the backing file was overridden, we can only compare
6293 * directly against the backing node's filename.
6294 */
6295
6296 if (!filenames_refreshed) {
6297 /*
6298 * This will automatically refresh all of the
6299 * filenames in the rest of the backing chain, so we
6300 * only need to do this once.
6301 */
6302 bdrv_refresh_filename(bs_below);
6303 filenames_refreshed = true;
6304 }
6305
6306 if (strcmp(backing_file, bs_below->filename) == 0) {
6307 retval = bs_below;
6308 break;
6309 }
6310 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6311 /*
6312 * If either of the filename paths is actually a protocol, then
6313 * compare unmodified paths; otherwise make paths relative.
6314 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006315 char *backing_file_full_ret;
6316
Jeff Codyb1b1d782012-10-16 15:49:09 -04006317 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006318 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006319 break;
6320 }
Jeff Cody418661e2017-01-25 20:08:20 -05006321 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006322 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6323 NULL);
6324 if (backing_file_full_ret) {
6325 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6326 g_free(backing_file_full_ret);
6327 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006328 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006329 break;
6330 }
Jeff Cody418661e2017-01-25 20:08:20 -05006331 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006332 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006333 /* If not an absolute filename path, make it relative to the current
6334 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006335 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6336 NULL);
6337 /* We are going to compare canonicalized absolute pathnames */
6338 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6339 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006340 continue;
6341 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006342 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006343
6344 /* We need to make sure the backing filename we are comparing against
6345 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006346 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6347 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6348 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006349 continue;
6350 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006351 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006352
6353 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006354 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006355 break;
6356 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006357 }
6358 }
6359
Jeff Codyb1b1d782012-10-16 15:49:09 -04006360 g_free(filename_full);
6361 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006362 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006363}
6364
bellardea2384d2004-08-01 21:59:26 +00006365void bdrv_init(void)
6366{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006367 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006368}
pbrookce1a14d2006-08-07 02:38:06 +00006369
Markus Armbrustereb852012009-10-27 18:41:44 +01006370void bdrv_init_with_whitelist(void)
6371{
6372 use_bdrv_whitelist = 1;
6373 bdrv_init();
6374}
6375
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03006376int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006377{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006378 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006379 Error *local_err = NULL;
6380 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006381 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006382
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006383 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006384 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006385 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006386
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006387 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01006388 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006389 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006390 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006391 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006392 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006393 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006394
Kevin Wolfdafe0962017-11-16 13:00:01 +01006395 /*
6396 * Update permissions, they may differ for inactive nodes.
6397 *
6398 * Note that the required permissions of inactive images are always a
6399 * subset of the permissions required after activating the image. This
6400 * allows us to just get the permissions upfront without restricting
6401 * drv->bdrv_invalidate_cache().
6402 *
6403 * It also means that in error cases, we don't have to try and revert to
6404 * the old permissions (which is an operation that could fail, too). We can
6405 * just keep the extended permissions for the next time that an activation
6406 * of the image is tried.
6407 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006408 if (bs->open_flags & BDRV_O_INACTIVE) {
6409 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006410 ret = bdrv_refresh_perms(bs, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006411 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006412 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006413 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006414 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006415
Kevin Wolf7bb49412019-12-17 15:06:38 +01006416 if (bs->drv->bdrv_co_invalidate_cache) {
6417 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6418 if (local_err) {
6419 bs->open_flags |= BDRV_O_INACTIVE;
6420 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006421 return -EINVAL;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006422 }
6423 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006424
Kevin Wolf7bb49412019-12-17 15:06:38 +01006425 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6426 bdrv_dirty_bitmap_skip_store(bm, false);
6427 }
6428
6429 ret = refresh_total_sectors(bs, bs->total_sectors);
6430 if (ret < 0) {
6431 bs->open_flags |= BDRV_O_INACTIVE;
6432 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006433 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006434 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006435 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006436
6437 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006438 if (parent->klass->activate) {
6439 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006440 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006441 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006442 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006443 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006444 }
6445 }
6446 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006447
6448 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006449}
6450
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006451void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006452{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006453 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006454 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006455
Kevin Wolf88be7b42016-05-20 18:49:07 +02006456 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006457 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006458 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006459
6460 aio_context_acquire(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006461 ret = bdrv_invalidate_cache(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006462 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006463 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006464 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006465 return;
6466 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006467 }
6468}
6469
Kevin Wolf9e372712018-11-23 15:11:14 +01006470static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6471{
6472 BdrvChild *parent;
6473
6474 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006475 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006476 BlockDriverState *parent_bs = parent->opaque;
6477 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6478 return true;
6479 }
6480 }
6481 }
6482
6483 return false;
6484}
6485
6486static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006487{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006488 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006489 int ret;
6490
Max Reitzd470ad42017-11-10 21:31:09 +01006491 if (!bs->drv) {
6492 return -ENOMEDIUM;
6493 }
6494
Kevin Wolf9e372712018-11-23 15:11:14 +01006495 /* Make sure that we don't inactivate a child before its parent.
6496 * It will be covered by recursion from the yet active parent. */
6497 if (bdrv_has_bds_parent(bs, true)) {
6498 return 0;
6499 }
6500
6501 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6502
6503 /* Inactivate this node */
6504 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006505 ret = bs->drv->bdrv_inactivate(bs);
6506 if (ret < 0) {
6507 return ret;
6508 }
6509 }
6510
Kevin Wolf9e372712018-11-23 15:11:14 +01006511 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006512 if (parent->klass->inactivate) {
6513 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01006514 if (ret < 0) {
6515 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006516 }
6517 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006518 }
Kevin Wolf38701b62017-05-04 18:52:39 +02006519
Kevin Wolf9e372712018-11-23 15:11:14 +01006520 bs->open_flags |= BDRV_O_INACTIVE;
6521
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03006522 /*
6523 * Update permissions, they may differ for inactive nodes.
6524 * We only tried to loosen restrictions, so errors are not fatal, ignore
6525 * them.
6526 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006527 bdrv_refresh_perms(bs, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01006528
6529 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02006530 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006531 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02006532 if (ret < 0) {
6533 return ret;
6534 }
6535 }
6536
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006537 return 0;
6538}
6539
6540int bdrv_inactivate_all(void)
6541{
Max Reitz79720af2016-03-16 19:54:44 +01006542 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006543 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006544 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006545 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006546
Kevin Wolf88be7b42016-05-20 18:49:07 +02006547 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006548 AioContext *aio_context = bdrv_get_aio_context(bs);
6549
6550 if (!g_slist_find(aio_ctxs, aio_context)) {
6551 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6552 aio_context_acquire(aio_context);
6553 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006554 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006555
Kevin Wolf9e372712018-11-23 15:11:14 +01006556 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6557 /* Nodes with BDS parents are covered by recursion from the last
6558 * parent that gets inactivated. Don't inactivate them a second
6559 * time if that has already happened. */
6560 if (bdrv_has_bds_parent(bs, false)) {
6561 continue;
6562 }
6563 ret = bdrv_inactivate_recurse(bs);
6564 if (ret < 0) {
6565 bdrv_next_cleanup(&it);
6566 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006567 }
6568 }
6569
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006570out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006571 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6572 AioContext *aio_context = ctx->data;
6573 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006574 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006575 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006576
6577 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006578}
6579
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006580/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006581/* removable device support */
6582
6583/**
6584 * Return TRUE if the media is present
6585 */
Max Reitze031f752015-10-19 17:53:11 +02006586bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006587{
6588 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006589 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006590
Max Reitze031f752015-10-19 17:53:11 +02006591 if (!drv) {
6592 return false;
6593 }
Max Reitz28d7a782015-10-19 17:53:13 +02006594 if (drv->bdrv_is_inserted) {
6595 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006596 }
Max Reitz28d7a782015-10-19 17:53:13 +02006597 QLIST_FOREACH(child, &bs->children, next) {
6598 if (!bdrv_is_inserted(child->bs)) {
6599 return false;
6600 }
6601 }
6602 return true;
bellard19cb3732006-08-19 11:45:59 +00006603}
6604
6605/**
bellard19cb3732006-08-19 11:45:59 +00006606 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6607 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006608void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006609{
6610 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00006611
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006612 if (drv && drv->bdrv_eject) {
6613 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006614 }
bellard19cb3732006-08-19 11:45:59 +00006615}
6616
bellard19cb3732006-08-19 11:45:59 +00006617/**
6618 * Lock or unlock the media (if it is locked, the user won't be able
6619 * to eject it manually).
6620 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006621void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006622{
6623 BlockDriver *drv = bs->drv;
6624
Markus Armbruster025e8492011-09-06 18:58:47 +02006625 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006626
Markus Armbruster025e8492011-09-06 18:58:47 +02006627 if (drv && drv->bdrv_lock_medium) {
6628 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006629 }
6630}
ths985a03b2007-12-24 16:10:43 +00006631
Fam Zheng9fcb0252013-08-23 09:14:46 +08006632/* Get a reference to bs */
6633void bdrv_ref(BlockDriverState *bs)
6634{
6635 bs->refcnt++;
6636}
6637
6638/* Release a previously grabbed reference to bs.
6639 * If after releasing, reference count is zero, the BlockDriverState is
6640 * deleted. */
6641void bdrv_unref(BlockDriverState *bs)
6642{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006643 if (!bs) {
6644 return;
6645 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006646 assert(bs->refcnt > 0);
6647 if (--bs->refcnt == 0) {
6648 bdrv_delete(bs);
6649 }
6650}
6651
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006652struct BdrvOpBlocker {
6653 Error *reason;
6654 QLIST_ENTRY(BdrvOpBlocker) list;
6655};
6656
6657bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6658{
6659 BdrvOpBlocker *blocker;
6660 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6661 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6662 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006663 error_propagate_prepend(errp, error_copy(blocker->reason),
6664 "Node '%s' is busy: ",
6665 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006666 return true;
6667 }
6668 return false;
6669}
6670
6671void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6672{
6673 BdrvOpBlocker *blocker;
6674 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6675
Markus Armbruster5839e532014-08-19 10:31:08 +02006676 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006677 blocker->reason = reason;
6678 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6679}
6680
6681void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6682{
6683 BdrvOpBlocker *blocker, *next;
6684 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6685 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6686 if (blocker->reason == reason) {
6687 QLIST_REMOVE(blocker, list);
6688 g_free(blocker);
6689 }
6690 }
6691}
6692
6693void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6694{
6695 int i;
6696 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6697 bdrv_op_block(bs, i, reason);
6698 }
6699}
6700
6701void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6702{
6703 int i;
6704 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6705 bdrv_op_unblock(bs, i, reason);
6706 }
6707}
6708
6709bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6710{
6711 int i;
6712
6713 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6714 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6715 return false;
6716 }
6717 }
6718 return true;
6719}
6720
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006721void bdrv_img_create(const char *filename, const char *fmt,
6722 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006723 char *options, uint64_t img_size, int flags, bool quiet,
6724 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006725{
Chunyan Liu83d05212014-06-05 17:20:51 +08006726 QemuOptsList *create_opts = NULL;
6727 QemuOpts *opts = NULL;
6728 const char *backing_fmt, *backing_file;
6729 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006730 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006731 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006732 int ret = 0;
6733
6734 /* Find driver and parse its options */
6735 drv = bdrv_find_format(fmt);
6736 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006737 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006738 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006739 }
6740
Max Reitzb65a5e12015-02-05 13:58:12 -05006741 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006742 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006743 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006744 }
6745
Max Reitzc6149722014-12-02 18:32:45 +01006746 if (!drv->create_opts) {
6747 error_setg(errp, "Format driver '%s' does not support image creation",
6748 drv->format_name);
6749 return;
6750 }
6751
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006752 if (!proto_drv->create_opts) {
6753 error_setg(errp, "Protocol driver '%s' does not support image creation",
6754 proto_drv->format_name);
6755 return;
6756 }
6757
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006758 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006759 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006760 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006761
Chunyan Liu83d05212014-06-05 17:20:51 +08006762 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006763
6764 /* Parse -o options */
6765 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02006766 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006767 goto out;
6768 }
6769 }
6770
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006771 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6772 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6773 } else if (img_size != UINT64_C(-1)) {
6774 error_setg(errp, "The image size must be specified only once");
6775 goto out;
6776 }
6777
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006778 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02006779 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02006780 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006781 error_setg(errp, "Backing file not supported for file format '%s'",
6782 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006783 goto out;
6784 }
6785 }
6786
6787 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02006788 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006789 error_setg(errp, "Backing file format not supported for file "
6790 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006791 goto out;
6792 }
6793 }
6794
Chunyan Liu83d05212014-06-05 17:20:51 +08006795 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6796 if (backing_file) {
6797 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006798 error_setg(errp, "Error: Trying to create an image with the "
6799 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01006800 goto out;
6801 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05006802 if (backing_file[0] == '\0') {
6803 error_setg(errp, "Expected backing file name, got empty string");
6804 goto out;
6805 }
Jes Sorensen792da932010-12-16 13:52:17 +01006806 }
6807
Chunyan Liu83d05212014-06-05 17:20:51 +08006808 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006809
John Snow6e6e55f2017-07-17 20:34:22 -04006810 /* The size for the image must always be specified, unless we have a backing
6811 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05006812 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04006813 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6814 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01006815 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04006816 int back_flags;
6817 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02006818
Max Reitz645ae7d2019-02-01 20:29:14 +01006819 full_backing =
6820 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6821 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04006822 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006823 goto out;
6824 }
Max Reitz645ae7d2019-02-01 20:29:14 +01006825 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04006826
6827 /* backing files always opened read-only */
6828 back_flags = flags;
6829 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6830
Fam Zhengcc954f02017-12-15 16:04:45 +08006831 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04006832 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04006833 qdict_put_str(backing_options, "driver", backing_fmt);
6834 }
Fam Zhengcc954f02017-12-15 16:04:45 +08006835 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04006836
6837 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6838 &local_err);
6839 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05006840 if (!bs) {
6841 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04006842 goto out;
6843 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05006844 if (!backing_fmt) {
6845 warn_report("Deprecated use of backing file without explicit "
6846 "backing format (detected format of %s)",
6847 bs->drv->format_name);
6848 if (bs->drv != &bdrv_raw) {
6849 /*
6850 * A probe of raw deserves the most attention:
6851 * leaving the backing format out of the image
6852 * will ensure bs->probed is set (ensuring we
6853 * don't accidentally commit into the backing
6854 * file), and allow more spots to warn the users
6855 * to fix their toolchain when opening this image
6856 * later. For other images, we can safely record
6857 * the format that we probed.
6858 */
6859 backing_fmt = bs->drv->format_name;
6860 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
6861 NULL);
6862 }
6863 }
John Snow6e6e55f2017-07-17 20:34:22 -04006864 if (size == -1) {
6865 /* Opened BS, have no size */
6866 size = bdrv_getlength(bs);
6867 if (size < 0) {
6868 error_setg_errno(errp, -size, "Could not get size of '%s'",
6869 backing_file);
6870 bdrv_unref(bs);
6871 goto out;
6872 }
6873 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6874 }
6875 bdrv_unref(bs);
6876 }
Eric Blaked9f059a2020-07-06 15:39:54 -05006877 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6878 } else if (backing_file && !backing_fmt) {
6879 warn_report("Deprecated use of unopened backing file without "
6880 "explicit backing format, use of this image requires "
6881 "potentially unsafe format probing");
6882 }
John Snow6e6e55f2017-07-17 20:34:22 -04006883
6884 if (size == -1) {
6885 error_setg(errp, "Image creation needs a size parameter");
6886 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006887 }
6888
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006889 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02006890 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08006891 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006892 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05006893 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006894 }
Chunyan Liu83d05212014-06-05 17:20:51 +08006895
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006896 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08006897
Max Reitzcc84d902013-09-06 17:14:26 +02006898 if (ret == -EFBIG) {
6899 /* This is generally a better message than whatever the driver would
6900 * deliver (especially because of the cluster_size_hint), since that
6901 * is most probably not much different from "image too large". */
6902 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08006903 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02006904 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006905 }
Max Reitzcc84d902013-09-06 17:14:26 +02006906 error_setg(errp, "The image size is too large for file format '%s'"
6907 "%s", fmt, cluster_size_hint);
6908 error_free(local_err);
6909 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006910 }
6911
6912out:
Chunyan Liu83d05212014-06-05 17:20:51 +08006913 qemu_opts_del(opts);
6914 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03006915 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006916}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006917
6918AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6919{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00006920 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006921}
6922
Kevin Wolfe336fd42020-10-05 17:58:53 +02006923AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6924{
6925 Coroutine *self = qemu_coroutine_self();
6926 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6927 AioContext *new_ctx;
6928
6929 /*
6930 * Increase bs->in_flight to ensure that this operation is completed before
6931 * moving the node to a different AioContext. Read new_ctx only afterwards.
6932 */
6933 bdrv_inc_in_flight(bs);
6934
6935 new_ctx = bdrv_get_aio_context(bs);
6936 aio_co_reschedule_self(new_ctx);
6937 return old_ctx;
6938}
6939
6940void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6941{
6942 aio_co_reschedule_self(old_ctx);
6943 bdrv_dec_in_flight(bs);
6944}
6945
Kevin Wolf18c6ac12020-10-05 17:58:54 +02006946void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6947{
6948 AioContext *ctx = bdrv_get_aio_context(bs);
6949
6950 /* In the main thread, bs->aio_context won't change concurrently */
6951 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6952
6953 /*
6954 * We're in coroutine context, so we already hold the lock of the main
6955 * loop AioContext. Don't lock it twice to avoid deadlocks.
6956 */
6957 assert(qemu_in_coroutine());
6958 if (ctx != qemu_get_aio_context()) {
6959 aio_context_acquire(ctx);
6960 }
6961}
6962
6963void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6964{
6965 AioContext *ctx = bdrv_get_aio_context(bs);
6966
6967 assert(qemu_in_coroutine());
6968 if (ctx != qemu_get_aio_context()) {
6969 aio_context_release(ctx);
6970 }
6971}
6972
Fam Zheng052a7572017-04-10 20:09:25 +08006973void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6974{
6975 aio_co_enter(bdrv_get_aio_context(bs), co);
6976}
6977
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006978static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6979{
6980 QLIST_REMOVE(ban, list);
6981 g_free(ban);
6982}
6983
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006984static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006985{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006986 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006987
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006988 assert(!bs->walking_aio_notifiers);
6989 bs->walking_aio_notifiers = true;
6990 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6991 if (baf->deleted) {
6992 bdrv_do_remove_aio_context_notifier(baf);
6993 } else {
6994 baf->detach_aio_context(baf->opaque);
6995 }
Max Reitz33384422014-06-20 21:57:33 +02006996 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006997 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6998 * remove remaining aio notifiers if we aren't called again.
6999 */
7000 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02007001
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007002 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007003 bs->drv->bdrv_detach_aio_context(bs);
7004 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007005
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007006 if (bs->quiesce_counter) {
7007 aio_enable_external(bs->aio_context);
7008 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007009 bs->aio_context = NULL;
7010}
7011
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007012static void bdrv_attach_aio_context(BlockDriverState *bs,
7013 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007014{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007015 BdrvAioNotifier *ban, *ban_tmp;
Max Reitz33384422014-06-20 21:57:33 +02007016
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007017 if (bs->quiesce_counter) {
7018 aio_disable_external(new_context);
7019 }
7020
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007021 bs->aio_context = new_context;
7022
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007023 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007024 bs->drv->bdrv_attach_aio_context(bs, new_context);
7025 }
Max Reitz33384422014-06-20 21:57:33 +02007026
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007027 assert(!bs->walking_aio_notifiers);
7028 bs->walking_aio_notifiers = true;
7029 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7030 if (ban->deleted) {
7031 bdrv_do_remove_aio_context_notifier(ban);
7032 } else {
7033 ban->attached_aio_context(new_context, ban->opaque);
7034 }
Max Reitz33384422014-06-20 21:57:33 +02007035 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007036 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007037}
7038
Kevin Wolf42a65f02019-05-07 18:31:38 +02007039/*
7040 * Changes the AioContext used for fd handlers, timers, and BHs by this
7041 * BlockDriverState and all its children and parents.
7042 *
Max Reitz43eaaae2019-07-22 15:30:54 +02007043 * Must be called from the main AioContext.
7044 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02007045 * The caller must own the AioContext lock for the old AioContext of bs, but it
7046 * must not own the AioContext lock for new_context (unless new_context is the
7047 * same as the current context of bs).
7048 *
7049 * @ignore will accumulate all visited BdrvChild object. The caller is
7050 * responsible for freeing the list afterwards.
7051 */
Kevin Wolf53a7d042019-05-06 19:17:59 +02007052void bdrv_set_aio_context_ignore(BlockDriverState *bs,
7053 AioContext *new_context, GSList **ignore)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007054{
Max Reitze037c092019-07-19 11:26:14 +02007055 AioContext *old_context = bdrv_get_aio_context(bs);
Sergio Lopez722d8e72021-02-01 13:50:31 +01007056 GSList *children_to_process = NULL;
7057 GSList *parents_to_process = NULL;
7058 GSList *entry;
7059 BdrvChild *child, *parent;
Kevin Wolf0d837082019-05-06 19:17:58 +02007060
Max Reitz43eaaae2019-07-22 15:30:54 +02007061 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7062
Max Reitze037c092019-07-19 11:26:14 +02007063 if (old_context == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03007064 return;
7065 }
7066
Kevin Wolfd70d5952019-02-08 16:53:37 +01007067 bdrv_drained_begin(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02007068
7069 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02007070 if (g_slist_find(*ignore, child)) {
7071 continue;
7072 }
7073 *ignore = g_slist_prepend(*ignore, child);
Sergio Lopez722d8e72021-02-01 13:50:31 +01007074 children_to_process = g_slist_prepend(children_to_process, child);
Kevin Wolf53a7d042019-05-06 19:17:59 +02007075 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01007076
7077 QLIST_FOREACH(parent, &bs->parents, next_parent) {
7078 if (g_slist_find(*ignore, parent)) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02007079 continue;
7080 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01007081 *ignore = g_slist_prepend(*ignore, parent);
7082 parents_to_process = g_slist_prepend(parents_to_process, parent);
Kevin Wolf0d837082019-05-06 19:17:58 +02007083 }
7084
Sergio Lopez722d8e72021-02-01 13:50:31 +01007085 for (entry = children_to_process;
7086 entry != NULL;
7087 entry = g_slist_next(entry)) {
7088 child = entry->data;
7089 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
7090 }
7091 g_slist_free(children_to_process);
7092
7093 for (entry = parents_to_process;
7094 entry != NULL;
7095 entry = g_slist_next(entry)) {
7096 parent = entry->data;
7097 assert(parent->klass->set_aio_ctx);
7098 parent->klass->set_aio_ctx(parent, new_context, ignore);
7099 }
7100 g_slist_free(parents_to_process);
7101
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007102 bdrv_detach_aio_context(bs);
7103
Max Reitze037c092019-07-19 11:26:14 +02007104 /* Acquire the new context, if necessary */
Max Reitz43eaaae2019-07-22 15:30:54 +02007105 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02007106 aio_context_acquire(new_context);
7107 }
7108
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007109 bdrv_attach_aio_context(bs, new_context);
Max Reitze037c092019-07-19 11:26:14 +02007110
7111 /*
7112 * If this function was recursively called from
7113 * bdrv_set_aio_context_ignore(), there may be nodes in the
7114 * subtree that have not yet been moved to the new AioContext.
7115 * Release the old one so bdrv_drained_end() can poll them.
7116 */
Max Reitz43eaaae2019-07-22 15:30:54 +02007117 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02007118 aio_context_release(old_context);
7119 }
7120
Kevin Wolfd70d5952019-02-08 16:53:37 +01007121 bdrv_drained_end(bs);
Max Reitze037c092019-07-19 11:26:14 +02007122
Max Reitz43eaaae2019-07-22 15:30:54 +02007123 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02007124 aio_context_acquire(old_context);
7125 }
Max Reitz43eaaae2019-07-22 15:30:54 +02007126 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02007127 aio_context_release(new_context);
7128 }
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007129}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02007130
Kevin Wolf5d231842019-05-06 19:17:56 +02007131static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7132 GSList **ignore, Error **errp)
7133{
7134 if (g_slist_find(*ignore, c)) {
7135 return true;
7136 }
7137 *ignore = g_slist_prepend(*ignore, c);
7138
Max Reitzbd86fb92020-05-13 13:05:13 +02007139 /*
7140 * A BdrvChildClass that doesn't handle AioContext changes cannot
7141 * tolerate any AioContext changes
7142 */
7143 if (!c->klass->can_set_aio_ctx) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007144 char *user = bdrv_child_user_desc(c);
7145 error_setg(errp, "Changing iothreads is not supported by %s", user);
7146 g_free(user);
7147 return false;
7148 }
Max Reitzbd86fb92020-05-13 13:05:13 +02007149 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007150 assert(!errp || *errp);
7151 return false;
7152 }
7153 return true;
7154}
7155
7156bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7157 GSList **ignore, Error **errp)
7158{
7159 if (g_slist_find(*ignore, c)) {
7160 return true;
7161 }
7162 *ignore = g_slist_prepend(*ignore, c);
7163 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
7164}
7165
7166/* @ignore will accumulate all visited BdrvChild object. The caller is
7167 * responsible for freeing the list afterwards. */
7168bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7169 GSList **ignore, Error **errp)
7170{
7171 BdrvChild *c;
7172
7173 if (bdrv_get_aio_context(bs) == ctx) {
7174 return true;
7175 }
7176
7177 QLIST_FOREACH(c, &bs->parents, next_parent) {
7178 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
7179 return false;
7180 }
7181 }
7182 QLIST_FOREACH(c, &bs->children, next) {
7183 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
7184 return false;
7185 }
7186 }
7187
7188 return true;
7189}
7190
7191int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7192 BdrvChild *ignore_child, Error **errp)
7193{
7194 GSList *ignore;
7195 bool ret;
7196
7197 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7198 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
7199 g_slist_free(ignore);
7200
7201 if (!ret) {
7202 return -EPERM;
7203 }
7204
Kevin Wolf53a7d042019-05-06 19:17:59 +02007205 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7206 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
7207 g_slist_free(ignore);
7208
Kevin Wolf5d231842019-05-06 19:17:56 +02007209 return 0;
7210}
7211
7212int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7213 Error **errp)
7214{
7215 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
7216}
7217
Max Reitz33384422014-06-20 21:57:33 +02007218void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7219 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7220 void (*detach_aio_context)(void *opaque), void *opaque)
7221{
7222 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7223 *ban = (BdrvAioNotifier){
7224 .attached_aio_context = attached_aio_context,
7225 .detach_aio_context = detach_aio_context,
7226 .opaque = opaque
7227 };
7228
7229 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7230}
7231
7232void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7233 void (*attached_aio_context)(AioContext *,
7234 void *),
7235 void (*detach_aio_context)(void *),
7236 void *opaque)
7237{
7238 BdrvAioNotifier *ban, *ban_next;
7239
7240 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7241 if (ban->attached_aio_context == attached_aio_context &&
7242 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007243 ban->opaque == opaque &&
7244 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007245 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007246 if (bs->walking_aio_notifiers) {
7247 ban->deleted = true;
7248 } else {
7249 bdrv_do_remove_aio_context_notifier(ban);
7250 }
Max Reitz33384422014-06-20 21:57:33 +02007251 return;
7252 }
7253 }
7254
7255 abort();
7256}
7257
Max Reitz77485432014-10-27 11:12:50 +01007258int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007259 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007260 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007261 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007262{
Max Reitzd470ad42017-11-10 21:31:09 +01007263 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007264 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007265 return -ENOMEDIUM;
7266 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007267 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007268 error_setg(errp, "Block driver '%s' does not support option amendment",
7269 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007270 return -ENOTSUP;
7271 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007272 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7273 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007274}
Benoît Canetf6186f42013-10-02 14:33:48 +02007275
Max Reitz5d69b5a2020-02-18 11:34:41 +01007276/*
7277 * This function checks whether the given @to_replace is allowed to be
7278 * replaced by a node that always shows the same data as @bs. This is
7279 * used for example to verify whether the mirror job can replace
7280 * @to_replace by the target mirrored from @bs.
7281 * To be replaceable, @bs and @to_replace may either be guaranteed to
7282 * always show the same data (because they are only connected through
7283 * filters), or some driver may allow replacing one of its children
7284 * because it can guarantee that this child's data is not visible at
7285 * all (for example, for dissenting quorum children that have no other
7286 * parents).
7287 */
7288bool bdrv_recurse_can_replace(BlockDriverState *bs,
7289 BlockDriverState *to_replace)
7290{
Max Reitz93393e62019-06-12 17:03:38 +02007291 BlockDriverState *filtered;
7292
Max Reitz5d69b5a2020-02-18 11:34:41 +01007293 if (!bs || !bs->drv) {
7294 return false;
7295 }
7296
7297 if (bs == to_replace) {
7298 return true;
7299 }
7300
7301 /* See what the driver can do */
7302 if (bs->drv->bdrv_recurse_can_replace) {
7303 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7304 }
7305
7306 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007307 filtered = bdrv_filter_bs(bs);
7308 if (filtered) {
7309 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007310 }
7311
7312 /* Safe default */
7313 return false;
7314}
7315
Max Reitz810803a2020-02-18 11:34:44 +01007316/*
7317 * Check whether the given @node_name can be replaced by a node that
7318 * has the same data as @parent_bs. If so, return @node_name's BDS;
7319 * NULL otherwise.
7320 *
7321 * @node_name must be a (recursive) *child of @parent_bs (or this
7322 * function will return NULL).
7323 *
7324 * The result (whether the node can be replaced or not) is only valid
7325 * for as long as no graph or permission changes occur.
7326 */
Wen Congyange12f3782015-07-17 10:12:22 +08007327BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7328 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007329{
7330 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007331 AioContext *aio_context;
7332
Benoît Canet09158f02014-06-27 18:25:25 +02007333 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007334 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007335 return NULL;
7336 }
7337
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007338 aio_context = bdrv_get_aio_context(to_replace_bs);
7339 aio_context_acquire(aio_context);
7340
Benoît Canet09158f02014-06-27 18:25:25 +02007341 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007342 to_replace_bs = NULL;
7343 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007344 }
7345
7346 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7347 * most non filter in order to prevent data corruption.
7348 * Another benefit is that this tests exclude backing files which are
7349 * blocked by the backing blockers.
7350 */
Max Reitz810803a2020-02-18 11:34:44 +01007351 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7352 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7353 "because it cannot be guaranteed that doing so would not "
7354 "lead to an abrupt change of visible data",
7355 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007356 to_replace_bs = NULL;
7357 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007358 }
7359
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007360out:
7361 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007362 return to_replace_bs;
7363}
Ming Lei448ad912014-07-04 18:04:33 +08007364
Max Reitz97e2f022019-02-01 20:29:27 +01007365/**
7366 * Iterates through the list of runtime option keys that are said to
7367 * be "strong" for a BDS. An option is called "strong" if it changes
7368 * a BDS's data. For example, the null block driver's "size" and
7369 * "read-zeroes" options are strong, but its "latency-ns" option is
7370 * not.
7371 *
7372 * If a key returned by this function ends with a dot, all options
7373 * starting with that prefix are strong.
7374 */
7375static const char *const *strong_options(BlockDriverState *bs,
7376 const char *const *curopt)
7377{
7378 static const char *const global_options[] = {
7379 "driver", "filename", NULL
7380 };
7381
7382 if (!curopt) {
7383 return &global_options[0];
7384 }
7385
7386 curopt++;
7387 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7388 curopt = bs->drv->strong_runtime_opts;
7389 }
7390
7391 return (curopt && *curopt) ? curopt : NULL;
7392}
7393
7394/**
7395 * Copies all strong runtime options from bs->options to the given
7396 * QDict. The set of strong option keys is determined by invoking
7397 * strong_options().
7398 *
7399 * Returns true iff any strong option was present in bs->options (and
7400 * thus copied to the target QDict) with the exception of "filename"
7401 * and "driver". The caller is expected to use this value to decide
7402 * whether the existence of strong options prevents the generation of
7403 * a plain filename.
7404 */
7405static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7406{
7407 bool found_any = false;
7408 const char *const *option_name = NULL;
7409
7410 if (!bs->drv) {
7411 return false;
7412 }
7413
7414 while ((option_name = strong_options(bs, option_name))) {
7415 bool option_given = false;
7416
7417 assert(strlen(*option_name) > 0);
7418 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7419 QObject *entry = qdict_get(bs->options, *option_name);
7420 if (!entry) {
7421 continue;
7422 }
7423
7424 qdict_put_obj(d, *option_name, qobject_ref(entry));
7425 option_given = true;
7426 } else {
7427 const QDictEntry *entry;
7428 for (entry = qdict_first(bs->options); entry;
7429 entry = qdict_next(bs->options, entry))
7430 {
7431 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7432 qdict_put_obj(d, qdict_entry_key(entry),
7433 qobject_ref(qdict_entry_value(entry)));
7434 option_given = true;
7435 }
7436 }
7437 }
7438
7439 /* While "driver" and "filename" need to be included in a JSON filename,
7440 * their existence does not prohibit generation of a plain filename. */
7441 if (!found_any && option_given &&
7442 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7443 {
7444 found_any = true;
7445 }
7446 }
7447
Max Reitz62a01a272019-02-01 20:29:34 +01007448 if (!qdict_haskey(d, "driver")) {
7449 /* Drivers created with bdrv_new_open_driver() may not have a
7450 * @driver option. Add it here. */
7451 qdict_put_str(d, "driver", bs->drv->format_name);
7452 }
7453
Max Reitz97e2f022019-02-01 20:29:27 +01007454 return found_any;
7455}
7456
Max Reitz90993622019-02-01 20:29:09 +01007457/* Note: This function may return false positives; it may return true
7458 * even if opening the backing file specified by bs's image header
7459 * would result in exactly bs->backing. */
Max Reitz0b877d02018-08-01 20:34:11 +02007460bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007461{
7462 if (bs->backing) {
7463 return strcmp(bs->auto_backing_file,
7464 bs->backing->bs->filename);
7465 } else {
7466 /* No backing BDS, so if the image header reports any backing
7467 * file, it must have been suppressed */
7468 return bs->auto_backing_file[0] != '\0';
7469 }
7470}
7471
Max Reitz91af7012014-07-18 20:24:56 +02007472/* Updates the following BDS fields:
7473 * - exact_filename: A filename which may be used for opening a block device
7474 * which (mostly) equals the given BDS (even without any
7475 * other options; so reading and writing must return the same
7476 * results, but caching etc. may be different)
7477 * - full_open_options: Options which, when given when opening a block device
7478 * (without a filename), result in a BDS (mostly)
7479 * equalling the given one
7480 * - filename: If exact_filename is set, it is copied here. Otherwise,
7481 * full_open_options is converted to a JSON object, prefixed with
7482 * "json:" (for use through the JSON pseudo protocol) and put here.
7483 */
7484void bdrv_refresh_filename(BlockDriverState *bs)
7485{
7486 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01007487 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02007488 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02007489 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01007490 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01007491 bool generate_json_filename; /* Whether our default implementation should
7492 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02007493
7494 if (!drv) {
7495 return;
7496 }
7497
Max Reitze24518e2019-02-01 20:29:06 +01007498 /* This BDS's file name may depend on any of its children's file names, so
7499 * refresh those first */
7500 QLIST_FOREACH(child, &bs->children, next) {
7501 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02007502 }
7503
Max Reitzbb808d52019-02-01 20:29:07 +01007504 if (bs->implicit) {
7505 /* For implicit nodes, just copy everything from the single child */
7506 child = QLIST_FIRST(&bs->children);
7507 assert(QLIST_NEXT(child, next) == NULL);
7508
7509 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7510 child->bs->exact_filename);
7511 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7512
Pan Nengyuancb895612020-01-16 16:56:00 +08007513 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01007514 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7515
7516 return;
7517 }
7518
Max Reitz90993622019-02-01 20:29:09 +01007519 backing_overridden = bdrv_backing_overridden(bs);
7520
7521 if (bs->open_flags & BDRV_O_NO_IO) {
7522 /* Without I/O, the backing file does not change anything.
7523 * Therefore, in such a case (primarily qemu-img), we can
7524 * pretend the backing file has not been overridden even if
7525 * it technically has been. */
7526 backing_overridden = false;
7527 }
7528
Max Reitz97e2f022019-02-01 20:29:27 +01007529 /* Gather the options QDict */
7530 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01007531 generate_json_filename = append_strong_runtime_options(opts, bs);
7532 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01007533
7534 if (drv->bdrv_gather_child_options) {
7535 /* Some block drivers may not want to present all of their children's
7536 * options, or name them differently from BdrvChild.name */
7537 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7538 } else {
7539 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02007540 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01007541 /* We can skip the backing BDS if it has not been overridden */
7542 continue;
7543 }
7544
7545 qdict_put(opts, child->name,
7546 qobject_ref(child->bs->full_open_options));
7547 }
7548
7549 if (backing_overridden && !bs->backing) {
7550 /* Force no backing file */
7551 qdict_put_null(opts, "backing");
7552 }
7553 }
7554
7555 qobject_unref(bs->full_open_options);
7556 bs->full_open_options = opts;
7557
Max Reitz52f72d62019-06-12 17:43:03 +02007558 primary_child_bs = bdrv_primary_bs(bs);
7559
Max Reitz998b3a12019-02-01 20:29:28 +01007560 if (drv->bdrv_refresh_filename) {
7561 /* Obsolete information is of no use here, so drop the old file name
7562 * information before refreshing it */
7563 bs->exact_filename[0] = '\0';
7564
7565 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02007566 } else if (primary_child_bs) {
7567 /*
7568 * Try to reconstruct valid information from the underlying
7569 * file -- this only works for format nodes (filter nodes
7570 * cannot be probed and as such must be selected by the user
7571 * either through an options dict, or through a special
7572 * filename which the filter driver must construct in its
7573 * .bdrv_refresh_filename() implementation).
7574 */
Max Reitz998b3a12019-02-01 20:29:28 +01007575
7576 bs->exact_filename[0] = '\0';
7577
Max Reitzfb695c72019-02-01 20:29:29 +01007578 /*
7579 * We can use the underlying file's filename if:
7580 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007581 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007582 * - the file is a protocol BDS, and
7583 * - opening that file (as this BDS's format) will automatically create
7584 * the BDS tree we have right now, that is:
7585 * - the user did not significantly change this BDS's behavior with
7586 * some explicit (strong) options
7587 * - no non-file child of this BDS has been overridden by the user
7588 * Both of these conditions are represented by generate_json_filename.
7589 */
Max Reitz52f72d62019-06-12 17:43:03 +02007590 if (primary_child_bs->exact_filename[0] &&
7591 primary_child_bs->drv->bdrv_file_open &&
7592 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007593 {
Max Reitz52f72d62019-06-12 17:43:03 +02007594 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007595 }
7596 }
7597
Max Reitz91af7012014-07-18 20:24:56 +02007598 if (bs->exact_filename[0]) {
7599 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007600 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007601 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007602 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007603 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007604 /* Give user a hint if we truncated things. */
7605 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7606 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007607 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007608 }
7609}
Wen Congyange06018a2016-05-10 15:36:37 +08007610
Max Reitz1e89d0f2019-02-01 20:29:18 +01007611char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7612{
7613 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007614 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007615
7616 if (!drv) {
7617 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7618 return NULL;
7619 }
7620
7621 if (drv->bdrv_dirname) {
7622 return drv->bdrv_dirname(bs, errp);
7623 }
7624
Max Reitz52f72d62019-06-12 17:43:03 +02007625 child_bs = bdrv_primary_bs(bs);
7626 if (child_bs) {
7627 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007628 }
7629
7630 bdrv_refresh_filename(bs);
7631 if (bs->exact_filename[0] != '\0') {
7632 return path_combine(bs->exact_filename, "");
7633 }
7634
7635 error_setg(errp, "Cannot generate a base directory for %s nodes",
7636 drv->format_name);
7637 return NULL;
7638}
7639
Wen Congyange06018a2016-05-10 15:36:37 +08007640/*
7641 * Hot add/remove a BDS's child. So the user can take a child offline when
7642 * it is broken and take a new child online
7643 */
7644void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7645 Error **errp)
7646{
7647
7648 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7649 error_setg(errp, "The node %s does not support adding a child",
7650 bdrv_get_device_or_node_name(parent_bs));
7651 return;
7652 }
7653
7654 if (!QLIST_EMPTY(&child_bs->parents)) {
7655 error_setg(errp, "The node %s already has a parent",
7656 child_bs->node_name);
7657 return;
7658 }
7659
7660 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7661}
7662
7663void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7664{
7665 BdrvChild *tmp;
7666
7667 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7668 error_setg(errp, "The node %s does not support removing a child",
7669 bdrv_get_device_or_node_name(parent_bs));
7670 return;
7671 }
7672
7673 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7674 if (tmp == child) {
7675 break;
7676 }
7677 }
7678
7679 if (!tmp) {
7680 error_setg(errp, "The node %s does not have a child named %s",
7681 bdrv_get_device_or_node_name(parent_bs),
7682 bdrv_get_device_or_node_name(child->bs));
7683 return;
7684 }
7685
7686 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7687}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007688
7689int bdrv_make_empty(BdrvChild *c, Error **errp)
7690{
7691 BlockDriver *drv = c->bs->drv;
7692 int ret;
7693
7694 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7695
7696 if (!drv->bdrv_make_empty) {
7697 error_setg(errp, "%s does not support emptying nodes",
7698 drv->format_name);
7699 return -ENOTSUP;
7700 }
7701
7702 ret = drv->bdrv_make_empty(c->bs);
7703 if (ret < 0) {
7704 error_setg_errno(errp, -ret, "Failed to empty %s",
7705 c->bs->filename);
7706 return ret;
7707 }
7708
7709 return 0;
7710}
Max Reitz9a6fc882019-05-31 15:23:11 +02007711
7712/*
7713 * Return the child that @bs acts as an overlay for, and from which data may be
7714 * copied in COW or COR operations. Usually this is the backing file.
7715 */
7716BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7717{
7718 if (!bs || !bs->drv) {
7719 return NULL;
7720 }
7721
7722 if (bs->drv->is_filter) {
7723 return NULL;
7724 }
7725
7726 if (!bs->backing) {
7727 return NULL;
7728 }
7729
7730 assert(bs->backing->role & BDRV_CHILD_COW);
7731 return bs->backing;
7732}
7733
7734/*
7735 * If @bs acts as a filter for exactly one of its children, return
7736 * that child.
7737 */
7738BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7739{
7740 BdrvChild *c;
7741
7742 if (!bs || !bs->drv) {
7743 return NULL;
7744 }
7745
7746 if (!bs->drv->is_filter) {
7747 return NULL;
7748 }
7749
7750 /* Only one of @backing or @file may be used */
7751 assert(!(bs->backing && bs->file));
7752
7753 c = bs->backing ?: bs->file;
7754 if (!c) {
7755 return NULL;
7756 }
7757
7758 assert(c->role & BDRV_CHILD_FILTERED);
7759 return c;
7760}
7761
7762/*
7763 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7764 * whichever is non-NULL.
7765 *
7766 * Return NULL if both are NULL.
7767 */
7768BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7769{
7770 BdrvChild *cow_child = bdrv_cow_child(bs);
7771 BdrvChild *filter_child = bdrv_filter_child(bs);
7772
7773 /* Filter nodes cannot have COW backing files */
7774 assert(!(cow_child && filter_child));
7775
7776 return cow_child ?: filter_child;
7777}
7778
7779/*
7780 * Return the primary child of this node: For filters, that is the
7781 * filtered child. For other nodes, that is usually the child storing
7782 * metadata.
7783 * (A generally more helpful description is that this is (usually) the
7784 * child that has the same filename as @bs.)
7785 *
7786 * Drivers do not necessarily have a primary child; for example quorum
7787 * does not.
7788 */
7789BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7790{
7791 BdrvChild *c, *found = NULL;
7792
7793 QLIST_FOREACH(c, &bs->children, next) {
7794 if (c->role & BDRV_CHILD_PRIMARY) {
7795 assert(!found);
7796 found = c;
7797 }
7798 }
7799
7800 return found;
7801}
Max Reitzd38d7eb2019-06-12 15:06:37 +02007802
7803static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7804 bool stop_on_explicit_filter)
7805{
7806 BdrvChild *c;
7807
7808 if (!bs) {
7809 return NULL;
7810 }
7811
7812 while (!(stop_on_explicit_filter && !bs->implicit)) {
7813 c = bdrv_filter_child(bs);
7814 if (!c) {
7815 /*
7816 * A filter that is embedded in a working block graph must
7817 * have a child. Assert this here so this function does
7818 * not return a filter node that is not expected by the
7819 * caller.
7820 */
7821 assert(!bs->drv || !bs->drv->is_filter);
7822 break;
7823 }
7824 bs = c->bs;
7825 }
7826 /*
7827 * Note that this treats nodes with bs->drv == NULL as not being
7828 * filters (bs->drv == NULL should be replaced by something else
7829 * anyway).
7830 * The advantage of this behavior is that this function will thus
7831 * always return a non-NULL value (given a non-NULL @bs).
7832 */
7833
7834 return bs;
7835}
7836
7837/*
7838 * Return the first BDS that has not been added implicitly or that
7839 * does not have a filtered child down the chain starting from @bs
7840 * (including @bs itself).
7841 */
7842BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7843{
7844 return bdrv_do_skip_filters(bs, true);
7845}
7846
7847/*
7848 * Return the first BDS that does not have a filtered child down the
7849 * chain starting from @bs (including @bs itself).
7850 */
7851BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7852{
7853 return bdrv_do_skip_filters(bs, false);
7854}
7855
7856/*
7857 * For a backing chain, return the first non-filter backing image of
7858 * the first non-filter image.
7859 */
7860BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7861{
7862 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
7863}