blob: 1dc14908acd86605bdfe825eee508e71882cb415 [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-Ogievskiyb0defa82021-04-28 18:17:38 +030052#include "qemu/transactions.h"
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +030053#include "block/coroutines.h"
bellardfc01f7e2003-06-30 10:03:06 +000054
Juan Quintela71e72a12009-07-27 16:12:56 +020055#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000056#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000057#include <sys/queue.h>
blueswir1c5e97232009-03-07 20:06:23 +000058#ifndef __DragonFly__
bellard7674e7b2005-04-26 21:59:26 +000059#include <sys/disk.h>
60#endif
blueswir1c5e97232009-03-07 20:06:23 +000061#endif
bellard7674e7b2005-04-26 21:59:26 +000062
aliguori49dc7682009-03-08 16:26:59 +000063#ifdef _WIN32
64#include <windows.h>
65#endif
66
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010067#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
68
Benoît Canetdc364f42014-01-23 21:31:32 +010069static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
70 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
71
Max Reitz2c1d04e2016-01-29 16:36:11 +010072static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
73 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
74
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010075static QLIST_HEAD(, BlockDriver) bdrv_drivers =
76 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000077
Max Reitz5b363932016-05-17 16:41:31 +020078static BlockDriverState *bdrv_open_inherit(const char *filename,
79 const char *reference,
80 QDict *options, int flags,
81 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +020082 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +020083 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +020084 Error **errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +020085
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030086static void bdrv_replace_child_noperm(BdrvChild *child,
87 BlockDriverState *new_bs);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +030088static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
89 BlockDriverState *child_bs,
90 const char *child_name,
91 const BdrvChildClass *child_class,
92 BdrvChildRole child_role,
93 BdrvChild **child,
94 Transaction *tran,
95 Error **errp);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030096
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +030097static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue
98 *queue, Error **errp);
99static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
100static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
101
Markus Armbrustereb852012009-10-27 18:41:44 +0100102/* If non-zero, use only whitelisted block drivers */
103static int use_bdrv_whitelist;
104
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000105#ifdef _WIN32
106static int is_windows_drive_prefix(const char *filename)
107{
108 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
109 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
110 filename[1] == ':');
111}
112
113int is_windows_drive(const char *filename)
114{
115 if (is_windows_drive_prefix(filename) &&
116 filename[2] == '\0')
117 return 1;
118 if (strstart(filename, "\\\\.\\", NULL) ||
119 strstart(filename, "//./", NULL))
120 return 1;
121 return 0;
122}
123#endif
124
Kevin Wolf339064d2013-11-28 10:23:32 +0100125size_t bdrv_opt_mem_align(BlockDriverState *bs)
126{
127 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300128 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800129 return MAX(4096, qemu_real_host_page_size);
Kevin Wolf339064d2013-11-28 10:23:32 +0100130 }
131
132 return bs->bl.opt_mem_alignment;
133}
134
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300135size_t bdrv_min_mem_align(BlockDriverState *bs)
136{
137 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300138 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800139 return MAX(4096, qemu_real_host_page_size);
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300140 }
141
142 return bs->bl.min_mem_alignment;
143}
144
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000145/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100146int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000147{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200148 const char *p;
149
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000150#ifdef _WIN32
151 if (is_windows_drive(path) ||
152 is_windows_drive_prefix(path)) {
153 return 0;
154 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200155 p = path + strcspn(path, ":/\\");
156#else
157 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000158#endif
159
Paolo Bonzini947995c2012-05-08 16:51:48 +0200160 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000161}
162
bellard83f64092006-08-01 16:21:11 +0000163int path_is_absolute(const char *path)
164{
bellard21664422007-01-07 18:22:37 +0000165#ifdef _WIN32
166 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200167 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000168 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200169 }
170 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000171#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200172 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000173#endif
bellard83f64092006-08-01 16:21:11 +0000174}
175
Max Reitz009b03a2019-02-01 20:29:13 +0100176/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000177 path to it by considering it is relative to base_path. URL are
178 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100179char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000180{
Max Reitz009b03a2019-02-01 20:29:13 +0100181 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000182 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100183 char *result;
bellard83f64092006-08-01 16:21:11 +0000184 int len;
185
bellard83f64092006-08-01 16:21:11 +0000186 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100187 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000188 }
Max Reitz009b03a2019-02-01 20:29:13 +0100189
190 if (path_has_protocol(base_path)) {
191 protocol_stripped = strchr(base_path, ':');
192 if (protocol_stripped) {
193 protocol_stripped++;
194 }
195 }
196 p = protocol_stripped ?: base_path;
197
198 p1 = strrchr(base_path, '/');
199#ifdef _WIN32
200 {
201 const char *p2;
202 p2 = strrchr(base_path, '\\');
203 if (!p1 || p2 > p1) {
204 p1 = p2;
205 }
206 }
207#endif
208 if (p1) {
209 p1++;
210 } else {
211 p1 = base_path;
212 }
213 if (p1 > p) {
214 p = p1;
215 }
216 len = p - base_path;
217
218 result = g_malloc(len + strlen(filename) + 1);
219 memcpy(result, base_path, len);
220 strcpy(result + len, filename);
221
222 return result;
223}
224
Max Reitz03c320d2017-05-22 21:52:16 +0200225/*
226 * Helper function for bdrv_parse_filename() implementations to remove optional
227 * protocol prefixes (especially "file:") from a filename and for putting the
228 * stripped filename into the options QDict if there is such a prefix.
229 */
230void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
231 QDict *options)
232{
233 if (strstart(filename, prefix, &filename)) {
234 /* Stripping the explicit protocol prefix may result in a protocol
235 * prefix being (wrongly) detected (if the filename contains a colon) */
236 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100237 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200238
239 /* This means there is some colon before the first slash; therefore,
240 * this cannot be an absolute path */
241 assert(!path_is_absolute(filename));
242
243 /* And we can thus fix the protocol detection issue by prefixing it
244 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100245 fat_filename = g_string_new("./");
246 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200247
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100248 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200249
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100250 qdict_put(options, "filename",
251 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200252 } else {
253 /* If no protocol prefix was detected, we can use the shortened
254 * filename as-is */
255 qdict_put_str(options, "filename", filename);
256 }
257 }
258}
259
260
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200261/* Returns whether the image file is opened as read-only. Note that this can
262 * return false and writing to the image file is still not possible because the
263 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400264bool bdrv_is_read_only(BlockDriverState *bs)
265{
266 return bs->read_only;
267}
268
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200269int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
270 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400271{
Jeff Codye2b82472017-04-07 16:55:26 -0400272 /* Do not set read_only if copy_on_read is enabled */
273 if (bs->copy_on_read && read_only) {
274 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
275 bdrv_get_device_or_node_name(bs));
276 return -EINVAL;
277 }
278
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400279 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200280 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
281 !ignore_allow_rdw)
282 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400283 error_setg(errp, "Node '%s' is read only",
284 bdrv_get_device_or_node_name(bs));
285 return -EPERM;
286 }
287
Jeff Cody45803a02017-04-07 16:55:29 -0400288 return 0;
289}
290
Kevin Wolfeaa24102018-10-12 11:27:41 +0200291/*
292 * Called by a driver that can only provide a read-only image.
293 *
294 * Returns 0 if the node is already read-only or it could switch the node to
295 * read-only because BDRV_O_AUTO_RDONLY is set.
296 *
297 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
298 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
299 * is not NULL, it is used as the error message for the Error object.
300 */
301int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
302 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400303{
304 int ret = 0;
305
Kevin Wolfeaa24102018-10-12 11:27:41 +0200306 if (!(bs->open_flags & BDRV_O_RDWR)) {
307 return 0;
308 }
309 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
310 goto fail;
311 }
312
313 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400314 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200315 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400316 }
317
Kevin Wolfeaa24102018-10-12 11:27:41 +0200318 bs->read_only = true;
319 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200320
Jeff Codye2b82472017-04-07 16:55:26 -0400321 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200322
323fail:
324 error_setg(errp, "%s", errmsg ?: "Image is read-only");
325 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400326}
327
Max Reitz645ae7d2019-02-01 20:29:14 +0100328/*
329 * If @backing is empty, this function returns NULL without setting
330 * @errp. In all other cases, NULL will only be returned with @errp
331 * set.
332 *
333 * Therefore, a return value of NULL without @errp set means that
334 * there is no backing file; if @errp is set, there is one but its
335 * absolute filename cannot be generated.
336 */
337char *bdrv_get_full_backing_filename_from_filename(const char *backed,
338 const char *backing,
339 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100340{
Max Reitz645ae7d2019-02-01 20:29:14 +0100341 if (backing[0] == '\0') {
342 return NULL;
343 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
344 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100345 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
346 error_setg(errp, "Cannot use relative backing file names for '%s'",
347 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100348 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100349 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100350 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100351 }
352}
353
Max Reitz9f4793d2019-02-01 20:29:16 +0100354/*
355 * If @filename is empty or NULL, this function returns NULL without
356 * setting @errp. In all other cases, NULL will only be returned with
357 * @errp set.
358 */
359static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
360 const char *filename, Error **errp)
361{
Max Reitz8df68612019-02-01 20:29:23 +0100362 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100363
Max Reitz8df68612019-02-01 20:29:23 +0100364 if (!filename || filename[0] == '\0') {
365 return NULL;
366 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
367 return g_strdup(filename);
368 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100369
Max Reitz8df68612019-02-01 20:29:23 +0100370 dir = bdrv_dirname(relative_to, errp);
371 if (!dir) {
372 return NULL;
373 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100374
Max Reitz8df68612019-02-01 20:29:23 +0100375 full_name = g_strconcat(dir, filename, NULL);
376 g_free(dir);
377 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100378}
379
Max Reitz6b6833c2019-02-01 20:29:15 +0100380char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200381{
Max Reitz9f4793d2019-02-01 20:29:16 +0100382 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200383}
384
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100385void bdrv_register(BlockDriver *bdrv)
386{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100387 assert(bdrv->format_name);
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100388 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000389}
bellardb3380822004-03-14 21:38:54 +0000390
Markus Armbrustere4e99862014-10-07 13:59:03 +0200391BlockDriverState *bdrv_new(void)
392{
393 BlockDriverState *bs;
394 int i;
395
Markus Armbruster5839e532014-08-19 10:31:08 +0200396 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800397 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800398 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
399 QLIST_INIT(&bs->op_blockers[i]);
400 }
Stefan Hajnoczid616b222013-06-24 17:13:10 +0200401 notifier_with_return_list_init(&bs->before_write_notifiers);
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200402 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200403 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800404 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200405 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200406
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300407 qemu_co_queue_init(&bs->flush_queue);
408
Kevin Wolf0f122642018-03-28 18:29:18 +0200409 for (i = 0; i < bdrv_drain_all_count; i++) {
410 bdrv_drained_begin(bs);
411 }
412
Max Reitz2c1d04e2016-01-29 16:36:11 +0100413 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
414
bellardb3380822004-03-14 21:38:54 +0000415 return bs;
416}
417
Marc Mari88d88792016-08-12 09:27:03 -0400418static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000419{
420 BlockDriver *drv1;
Marc Mari88d88792016-08-12 09:27:03 -0400421
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100422 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
423 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000424 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100425 }
bellardea2384d2004-08-01 21:59:26 +0000426 }
Marc Mari88d88792016-08-12 09:27:03 -0400427
bellardea2384d2004-08-01 21:59:26 +0000428 return NULL;
429}
430
Marc Mari88d88792016-08-12 09:27:03 -0400431BlockDriver *bdrv_find_format(const char *format_name)
432{
433 BlockDriver *drv1;
434 int i;
435
436 drv1 = bdrv_do_find_format(format_name);
437 if (drv1) {
438 return drv1;
439 }
440
441 /* The driver isn't registered, maybe we need to load a module */
442 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
443 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
444 block_module_load_one(block_driver_modules[i].library_name);
445 break;
446 }
447 }
448
449 return bdrv_do_find_format(format_name);
450}
451
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300452static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100453{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800454 static const char *whitelist_rw[] = {
455 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200456 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800457 };
458 static const char *whitelist_ro[] = {
459 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200460 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100461 };
462 const char **p;
463
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800464 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100465 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800466 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100467
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800468 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300469 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100470 return 1;
471 }
472 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800473 if (read_only) {
474 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300475 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800476 return 1;
477 }
478 }
479 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100480 return 0;
481}
482
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300483int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
484{
485 return bdrv_format_is_whitelisted(drv->format_name, read_only);
486}
487
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000488bool bdrv_uses_whitelist(void)
489{
490 return use_bdrv_whitelist;
491}
492
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800493typedef struct CreateCo {
494 BlockDriver *drv;
495 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800496 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800497 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200498 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800499} CreateCo;
500
501static void coroutine_fn bdrv_create_co_entry(void *opaque)
502{
Max Reitzcc84d902013-09-06 17:14:26 +0200503 Error *local_err = NULL;
504 int ret;
505
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800506 CreateCo *cco = opaque;
507 assert(cco->drv);
508
Maxim Levitskyb92902d2020-03-26 03:12:17 +0200509 ret = cco->drv->bdrv_co_create_opts(cco->drv,
510 cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300511 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200512 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800513}
514
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200515int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800516 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000517{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800518 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200519
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800520 Coroutine *co;
521 CreateCo cco = {
522 .drv = drv,
523 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800524 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800525 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200526 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800527 };
528
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100529 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200530 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300531 ret = -ENOTSUP;
532 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800533 }
534
535 if (qemu_in_coroutine()) {
536 /* Fast-path if already in coroutine context */
537 bdrv_create_co_entry(&cco);
538 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200539 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
540 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800541 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200542 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800543 }
544 }
545
546 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200547 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100548 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200549 error_propagate(errp, cco.err);
550 } else {
551 error_setg_errno(errp, -ret, "Could not create image");
552 }
553 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800554
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300555out:
556 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800557 return ret;
bellardea2384d2004-08-01 21:59:26 +0000558}
559
Max Reitzfd171462020-01-22 17:45:29 +0100560/**
561 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
562 * least the given @minimum_size.
563 *
564 * On success, return @blk's actual length.
565 * Otherwise, return -errno.
566 */
567static int64_t create_file_fallback_truncate(BlockBackend *blk,
568 int64_t minimum_size, Error **errp)
569{
570 Error *local_err = NULL;
571 int64_t size;
572 int ret;
573
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200574 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
575 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100576 if (ret < 0 && ret != -ENOTSUP) {
577 error_propagate(errp, local_err);
578 return ret;
579 }
580
581 size = blk_getlength(blk);
582 if (size < 0) {
583 error_free(local_err);
584 error_setg_errno(errp, -size,
585 "Failed to inquire the new image file's length");
586 return size;
587 }
588
589 if (size < minimum_size) {
590 /* Need to grow the image, but we failed to do that */
591 error_propagate(errp, local_err);
592 return -ENOTSUP;
593 }
594
595 error_free(local_err);
596 local_err = NULL;
597
598 return size;
599}
600
601/**
602 * Helper function for bdrv_create_file_fallback(): Zero the first
603 * sector to remove any potentially pre-existing image header.
604 */
605static int create_file_fallback_zero_first_sector(BlockBackend *blk,
606 int64_t current_size,
607 Error **errp)
608{
609 int64_t bytes_to_clear;
610 int ret;
611
612 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
613 if (bytes_to_clear) {
614 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
615 if (ret < 0) {
616 error_setg_errno(errp, -ret,
617 "Failed to clear the new image's first sector");
618 return ret;
619 }
620 }
621
622 return 0;
623}
624
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200625/**
626 * Simple implementation of bdrv_co_create_opts for protocol drivers
627 * which only support creation via opening a file
628 * (usually existing raw storage device)
629 */
630int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
631 const char *filename,
632 QemuOpts *opts,
633 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100634{
635 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100636 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100637 int64_t size = 0;
638 char *buf = NULL;
639 PreallocMode prealloc;
640 Error *local_err = NULL;
641 int ret;
642
643 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
644 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
645 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
646 PREALLOC_MODE_OFF, &local_err);
647 g_free(buf);
648 if (local_err) {
649 error_propagate(errp, local_err);
650 return -EINVAL;
651 }
652
653 if (prealloc != PREALLOC_MODE_OFF) {
654 error_setg(errp, "Unsupported preallocation mode '%s'",
655 PreallocMode_str(prealloc));
656 return -ENOTSUP;
657 }
658
Max Reitzeeea1fa2020-02-25 16:56:18 +0100659 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100660 qdict_put_str(options, "driver", drv->format_name);
661
662 blk = blk_new_open(filename, NULL, options,
663 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
664 if (!blk) {
665 error_prepend(errp, "Protocol driver '%s' does not support image "
666 "creation, and opening the image failed: ",
667 drv->format_name);
668 return -EINVAL;
669 }
670
671 size = create_file_fallback_truncate(blk, size, errp);
672 if (size < 0) {
673 ret = size;
674 goto out;
675 }
676
677 ret = create_file_fallback_zero_first_sector(blk, size, errp);
678 if (ret < 0) {
679 goto out;
680 }
681
682 ret = 0;
683out:
684 blk_unref(blk);
685 return ret;
686}
687
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800688int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200689{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100690 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200691 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100692 QDict *qdict;
693 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200694
Max Reitzb65a5e12015-02-05 13:58:12 -0500695 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200696 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000697 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200698 }
699
Stefano Garzarella729222a2021-03-08 17:12:32 +0100700 if (!drv->create_opts) {
701 error_setg(errp, "Driver '%s' does not support image creation",
702 drv->format_name);
703 return -ENOTSUP;
704 }
705
706 /*
707 * 'opts' contains a QemuOptsList with a combination of format and protocol
708 * default values.
709 *
710 * The format properly removes its options, but the default values remain
711 * in 'opts->list'. So if the protocol has options with the same name
712 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
713 * of the format, since for overlapping options, the format wins.
714 *
715 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
716 * only the set options, and then convert it back to QemuOpts, using the
717 * create_opts of the protocol. So the new QemuOpts, will contain only the
718 * protocol defaults.
719 */
720 qdict = qemu_opts_to_qdict(opts, NULL);
721 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
722 if (protocol_opts == NULL) {
723 ret = -EINVAL;
724 goto out;
725 }
726
727 ret = bdrv_create(drv, filename, protocol_opts, errp);
728out:
729 qemu_opts_del(protocol_opts);
730 qobject_unref(qdict);
731 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200732}
733
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300734int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
735{
736 Error *local_err = NULL;
737 int ret;
738
739 assert(bs != NULL);
740
741 if (!bs->drv) {
742 error_setg(errp, "Block node '%s' is not opened", bs->filename);
743 return -ENOMEDIUM;
744 }
745
746 if (!bs->drv->bdrv_co_delete_file) {
747 error_setg(errp, "Driver '%s' does not support image deletion",
748 bs->drv->format_name);
749 return -ENOTSUP;
750 }
751
752 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
753 if (ret < 0) {
754 error_propagate(errp, local_err);
755 }
756
757 return ret;
758}
759
Maxim Levitskya890f082020-12-17 19:09:03 +0200760void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
761{
762 Error *local_err = NULL;
763 int ret;
764
765 if (!bs) {
766 return;
767 }
768
769 ret = bdrv_co_delete_file(bs, &local_err);
770 /*
771 * ENOTSUP will happen if the block driver doesn't support
772 * the 'bdrv_co_delete_file' interface. This is a predictable
773 * scenario and shouldn't be reported back to the user.
774 */
775 if (ret == -ENOTSUP) {
776 error_free(local_err);
777 } else if (ret < 0) {
778 error_report_err(local_err);
779 }
780}
781
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100782/**
783 * Try to get @bs's logical and physical block size.
784 * On success, store them in @bsz struct and return 0.
785 * On failure return -errno.
786 * @bs must not be empty.
787 */
788int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
789{
790 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200791 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100792
793 if (drv && drv->bdrv_probe_blocksizes) {
794 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200795 } else if (filtered) {
796 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100797 }
798
799 return -ENOTSUP;
800}
801
802/**
803 * Try to get @bs's geometry (cyls, heads, sectors).
804 * On success, store them in @geo struct and return 0.
805 * On failure return -errno.
806 * @bs must not be empty.
807 */
808int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
809{
810 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200811 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100812
813 if (drv && drv->bdrv_probe_geometry) {
814 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200815 } else if (filtered) {
816 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100817 }
818
819 return -ENOTSUP;
820}
821
Jim Meyeringeba25052012-05-28 09:27:54 +0200822/*
823 * Create a uniquely-named empty temporary file.
824 * Return 0 upon success, otherwise a negative errno value.
825 */
826int get_tmp_filename(char *filename, int size)
827{
bellardd5249392004-08-03 21:14:23 +0000828#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000829 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200830 /* GetTempFileName requires that its output buffer (4th param)
831 have length MAX_PATH or greater. */
832 assert(size >= MAX_PATH);
833 return (GetTempPath(MAX_PATH, temp_dir)
834 && GetTempFileName(temp_dir, "qem", 0, filename)
835 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000836#else
bellardea2384d2004-08-01 21:59:26 +0000837 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000838 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000839 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530840 if (!tmpdir) {
841 tmpdir = "/var/tmp";
842 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200843 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
844 return -EOVERFLOW;
845 }
bellardea2384d2004-08-01 21:59:26 +0000846 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800847 if (fd < 0) {
848 return -errno;
849 }
850 if (close(fd) != 0) {
851 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200852 return -errno;
853 }
854 return 0;
bellardd5249392004-08-03 21:14:23 +0000855#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200856}
bellardea2384d2004-08-01 21:59:26 +0000857
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200858/*
859 * Detect host devices. By convention, /dev/cdrom[N] is always
860 * recognized as a host CDROM.
861 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200862static BlockDriver *find_hdev_driver(const char *filename)
863{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200864 int score_max = 0, score;
865 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200866
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100867 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200868 if (d->bdrv_probe_device) {
869 score = d->bdrv_probe_device(filename);
870 if (score > score_max) {
871 score_max = score;
872 drv = d;
873 }
874 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200875 }
876
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200877 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200878}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200879
Marc Mari88d88792016-08-12 09:27:03 -0400880static BlockDriver *bdrv_do_find_protocol(const char *protocol)
881{
882 BlockDriver *drv1;
883
884 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
885 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
886 return drv1;
887 }
888 }
889
890 return NULL;
891}
892
Kevin Wolf98289622013-07-10 15:47:39 +0200893BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500894 bool allow_protocol_prefix,
895 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200896{
897 BlockDriver *drv1;
898 char protocol[128];
899 int len;
900 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400901 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200902
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200903 /* TODO Drivers without bdrv_file_open must be specified explicitly */
904
Christoph Hellwig39508e72010-06-23 12:25:17 +0200905 /*
906 * XXX(hch): we really should not let host device detection
907 * override an explicit protocol specification, but moving this
908 * later breaks access to device names with colons in them.
909 * Thanks to the brain-dead persistent naming schemes on udev-
910 * based Linux systems those actually are quite common.
911 */
912 drv1 = find_hdev_driver(filename);
913 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200914 return drv1;
915 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200916
Kevin Wolf98289622013-07-10 15:47:39 +0200917 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100918 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200919 }
Kevin Wolf98289622013-07-10 15:47:39 +0200920
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000921 p = strchr(filename, ':');
922 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200923 len = p - filename;
924 if (len > sizeof(protocol) - 1)
925 len = sizeof(protocol) - 1;
926 memcpy(protocol, filename, len);
927 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400928
929 drv1 = bdrv_do_find_protocol(protocol);
930 if (drv1) {
931 return drv1;
932 }
933
934 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
935 if (block_driver_modules[i].protocol_name &&
936 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
937 block_module_load_one(block_driver_modules[i].library_name);
938 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200939 }
940 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500941
Marc Mari88d88792016-08-12 09:27:03 -0400942 drv1 = bdrv_do_find_protocol(protocol);
943 if (!drv1) {
944 error_setg(errp, "Unknown protocol '%s'", protocol);
945 }
946 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200947}
948
Markus Armbrusterc6684242014-11-20 16:27:10 +0100949/*
950 * Guess image format by probing its contents.
951 * This is not a good idea when your image is raw (CVE-2008-2004), but
952 * we do it anyway for backward compatibility.
953 *
954 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100955 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
956 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100957 * @filename is its filename.
958 *
959 * For all block drivers, call the bdrv_probe() method to get its
960 * probing score.
961 * Return the first block driver with the highest probing score.
962 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100963BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
964 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100965{
966 int score_max = 0, score;
967 BlockDriver *drv = NULL, *d;
968
969 QLIST_FOREACH(d, &bdrv_drivers, list) {
970 if (d->bdrv_probe) {
971 score = d->bdrv_probe(buf, buf_size, filename);
972 if (score > score_max) {
973 score_max = score;
974 drv = d;
975 }
976 }
977 }
978
979 return drv;
980}
981
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100982static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200983 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000984{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100985 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100986 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100987 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700988
Kevin Wolf08a00552010-06-01 18:37:31 +0200989 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100990 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100991 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200992 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700993 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700994
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100995 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000996 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200997 error_setg_errno(errp, -ret, "Could not read image for determining its "
998 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +0200999 *pdrv = NULL;
1000 return ret;
bellard83f64092006-08-01 16:21:11 +00001001 }
1002
Markus Armbrusterc6684242014-11-20 16:27:10 +01001003 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001004 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001005 error_setg(errp, "Could not determine image format: No compatible "
1006 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +02001007 ret = -ENOENT;
1008 }
1009 *pdrv = drv;
1010 return ret;
bellardea2384d2004-08-01 21:59:26 +00001011}
1012
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001013/**
1014 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001015 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001016 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +02001017int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001018{
1019 BlockDriver *drv = bs->drv;
1020
Max Reitzd470ad42017-11-10 21:31:09 +01001021 if (!drv) {
1022 return -ENOMEDIUM;
1023 }
1024
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001025 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001026 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001027 return 0;
1028
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001029 /* query actual device if possible, otherwise just trust the hint */
1030 if (drv->bdrv_getlength) {
1031 int64_t length = drv->bdrv_getlength(bs);
1032 if (length < 0) {
1033 return length;
1034 }
Fam Zheng7e382002013-11-06 19:48:06 +08001035 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001036 }
1037
1038 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001039
1040 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1041 return -EFBIG;
1042 }
1043
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001044 return 0;
1045}
1046
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001047/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001048 * Combines a QDict of new block driver @options with any missing options taken
1049 * from @old_options, so that leaving out an option defaults to its old value.
1050 */
1051static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1052 QDict *old_options)
1053{
1054 if (bs->drv && bs->drv->bdrv_join_options) {
1055 bs->drv->bdrv_join_options(options, old_options);
1056 } else {
1057 qdict_join(options, old_options, false);
1058 }
1059}
1060
Alberto Garcia543770b2018-09-06 12:37:09 +03001061static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1062 int open_flags,
1063 Error **errp)
1064{
1065 Error *local_err = NULL;
1066 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1067 BlockdevDetectZeroesOptions detect_zeroes =
1068 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1069 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1070 g_free(value);
1071 if (local_err) {
1072 error_propagate(errp, local_err);
1073 return detect_zeroes;
1074 }
1075
1076 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1077 !(open_flags & BDRV_O_UNMAP))
1078 {
1079 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1080 "without setting discard operation to unmap");
1081 }
1082
1083 return detect_zeroes;
1084}
1085
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001086/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001087 * Set open flags for aio engine
1088 *
1089 * Return 0 on success, -1 if the engine specified is invalid
1090 */
1091int bdrv_parse_aio(const char *mode, int *flags)
1092{
1093 if (!strcmp(mode, "threads")) {
1094 /* do nothing, default */
1095 } else if (!strcmp(mode, "native")) {
1096 *flags |= BDRV_O_NATIVE_AIO;
1097#ifdef CONFIG_LINUX_IO_URING
1098 } else if (!strcmp(mode, "io_uring")) {
1099 *flags |= BDRV_O_IO_URING;
1100#endif
1101 } else {
1102 return -1;
1103 }
1104
1105 return 0;
1106}
1107
1108/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001109 * Set open flags for a given discard mode
1110 *
1111 * Return 0 on success, -1 if the discard mode was invalid.
1112 */
1113int bdrv_parse_discard_flags(const char *mode, int *flags)
1114{
1115 *flags &= ~BDRV_O_UNMAP;
1116
1117 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1118 /* do nothing */
1119 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1120 *flags |= BDRV_O_UNMAP;
1121 } else {
1122 return -1;
1123 }
1124
1125 return 0;
1126}
1127
1128/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001129 * Set open flags for a given cache mode
1130 *
1131 * Return 0 on success, -1 if the cache mode was invalid.
1132 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001133int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001134{
1135 *flags &= ~BDRV_O_CACHE_MASK;
1136
1137 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001138 *writethrough = false;
1139 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001140 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001141 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001142 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001143 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001144 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001145 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001146 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001147 *flags |= BDRV_O_NO_FLUSH;
1148 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001149 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001150 } else {
1151 return -1;
1152 }
1153
1154 return 0;
1155}
1156
Kevin Wolfb5411552017-01-17 15:56:16 +01001157static char *bdrv_child_get_parent_desc(BdrvChild *c)
1158{
1159 BlockDriverState *parent = c->opaque;
1160 return g_strdup(bdrv_get_device_or_node_name(parent));
1161}
1162
Kevin Wolf20018e12016-05-23 18:46:59 +02001163static void bdrv_child_cb_drained_begin(BdrvChild *child)
1164{
1165 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001166 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +02001167}
1168
Kevin Wolf89bd0302018-03-22 14:11:20 +01001169static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1170{
1171 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001172 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001173}
1174
Max Reitze037c092019-07-19 11:26:14 +02001175static void bdrv_child_cb_drained_end(BdrvChild *child,
1176 int *drained_end_counter)
Kevin Wolf20018e12016-05-23 18:46:59 +02001177{
1178 BlockDriverState *bs = child->opaque;
Max Reitze037c092019-07-19 11:26:14 +02001179 bdrv_drained_end_no_poll(bs, drained_end_counter);
Kevin Wolf20018e12016-05-23 18:46:59 +02001180}
1181
Kevin Wolf38701b62017-05-04 18:52:39 +02001182static int bdrv_child_cb_inactivate(BdrvChild *child)
1183{
1184 BlockDriverState *bs = child->opaque;
1185 assert(bs->open_flags & BDRV_O_INACTIVE);
1186 return 0;
1187}
1188
Kevin Wolf5d231842019-05-06 19:17:56 +02001189static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1190 GSList **ignore, Error **errp)
1191{
1192 BlockDriverState *bs = child->opaque;
1193 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1194}
1195
Kevin Wolf53a7d042019-05-06 19:17:59 +02001196static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1197 GSList **ignore)
1198{
1199 BlockDriverState *bs = child->opaque;
1200 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1201}
1202
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001203/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001204 * Returns the options and flags that a temporary snapshot should get, based on
1205 * the originally requested flags (the originally requested image will have
1206 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001207 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001208static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1209 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001210{
Kevin Wolf73176be2016-03-07 13:02:15 +01001211 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1212
1213 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001214 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1215 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001216
Kevin Wolf3f486862019-04-04 17:04:43 +02001217 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001218 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001219 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001220
Kevin Wolf41869042016-06-16 12:59:30 +02001221 /* aio=native doesn't work for cache.direct=off, so disable it for the
1222 * temporary snapshot */
1223 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001224}
1225
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001226static void bdrv_backing_attach(BdrvChild *c)
1227{
1228 BlockDriverState *parent = c->opaque;
1229 BlockDriverState *backing_hd = c->bs;
1230
1231 assert(!parent->backing_blocker);
1232 error_setg(&parent->backing_blocker,
1233 "node is used as backing hd of '%s'",
1234 bdrv_get_device_or_node_name(parent));
1235
Max Reitzf30c66b2019-02-01 20:29:05 +01001236 bdrv_refresh_filename(backing_hd);
1237
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001238 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001239
1240 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1241 /* Otherwise we won't be able to commit or stream */
1242 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1243 parent->backing_blocker);
1244 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1245 parent->backing_blocker);
1246 /*
1247 * We do backup in 3 ways:
1248 * 1. drive backup
1249 * The target bs is new opened, and the source is top BDS
1250 * 2. blockdev backup
1251 * Both the source and the target are top BDSes.
1252 * 3. internal backup(used for block replication)
1253 * Both the source and the target are backing file
1254 *
1255 * In case 1 and 2, neither the source nor the target is the backing file.
1256 * In case 3, we will block the top BDS, so there is only one block job
1257 * for the top BDS and its backing chain.
1258 */
1259 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1260 parent->backing_blocker);
1261 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1262 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001263}
Kevin Wolfd736f112017-12-18 16:05:48 +01001264
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001265static void bdrv_backing_detach(BdrvChild *c)
1266{
1267 BlockDriverState *parent = c->opaque;
1268
1269 assert(parent->backing_blocker);
1270 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1271 error_free(parent->backing_blocker);
1272 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001273}
Kevin Wolfd736f112017-12-18 16:05:48 +01001274
Kevin Wolf6858eba2017-06-29 19:32:21 +02001275static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1276 const char *filename, Error **errp)
1277{
1278 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001279 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001280 int ret;
1281
Alberto Garciae94d3db2018-11-12 16:00:34 +02001282 if (read_only) {
1283 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001284 if (ret < 0) {
1285 return ret;
1286 }
1287 }
1288
Kevin Wolf6858eba2017-06-29 19:32:21 +02001289 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001290 base->drv ? base->drv->format_name : "",
1291 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001292 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001293 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001294 }
1295
Alberto Garciae94d3db2018-11-12 16:00:34 +02001296 if (read_only) {
1297 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001298 }
1299
Kevin Wolf6858eba2017-06-29 19:32:21 +02001300 return ret;
1301}
1302
Max Reitzfae8bd32020-05-13 13:05:20 +02001303/*
1304 * Returns the options and flags that a generic child of a BDS should
1305 * get, based on the given options and flags for the parent BDS.
1306 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001307static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1308 int *child_flags, QDict *child_options,
1309 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001310{
1311 int flags = parent_flags;
1312
1313 /*
1314 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1315 * Generally, the question to answer is: Should this child be
1316 * format-probed by default?
1317 */
1318
1319 /*
1320 * Pure and non-filtered data children of non-format nodes should
1321 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1322 * set). This only affects a very limited set of drivers (namely
1323 * quorum and blkverify when this comment was written).
1324 * Force-clear BDRV_O_PROTOCOL then.
1325 */
1326 if (!parent_is_format &&
1327 (role & BDRV_CHILD_DATA) &&
1328 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1329 {
1330 flags &= ~BDRV_O_PROTOCOL;
1331 }
1332
1333 /*
1334 * All children of format nodes (except for COW children) and all
1335 * metadata children in general should never be format-probed.
1336 * Force-set BDRV_O_PROTOCOL then.
1337 */
1338 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1339 (role & BDRV_CHILD_METADATA))
1340 {
1341 flags |= BDRV_O_PROTOCOL;
1342 }
1343
1344 /*
1345 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1346 * the parent.
1347 */
1348 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1349 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1350 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1351
1352 if (role & BDRV_CHILD_COW) {
1353 /* backing files are opened read-only by default */
1354 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1355 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1356 } else {
1357 /* Inherit the read-only option from the parent if it's not set */
1358 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1359 qdict_copy_default(child_options, parent_options,
1360 BDRV_OPT_AUTO_READ_ONLY);
1361 }
1362
1363 /*
1364 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1365 * can default to enable it on lower layers regardless of the
1366 * parent option.
1367 */
1368 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1369
1370 /* Clear flags that only apply to the top layer */
1371 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1372
1373 if (role & BDRV_CHILD_METADATA) {
1374 flags &= ~BDRV_O_NO_IO;
1375 }
1376 if (role & BDRV_CHILD_COW) {
1377 flags &= ~BDRV_O_TEMPORARY;
1378 }
1379
1380 *child_flags = flags;
1381}
1382
Max Reitzca2f1232020-05-13 13:05:22 +02001383static void bdrv_child_cb_attach(BdrvChild *child)
1384{
1385 BlockDriverState *bs = child->opaque;
1386
1387 if (child->role & BDRV_CHILD_COW) {
1388 bdrv_backing_attach(child);
1389 }
1390
1391 bdrv_apply_subtree_drain(child, bs);
1392}
1393
Max Reitz48e08282020-05-13 13:05:23 +02001394static void bdrv_child_cb_detach(BdrvChild *child)
1395{
1396 BlockDriverState *bs = child->opaque;
1397
1398 if (child->role & BDRV_CHILD_COW) {
1399 bdrv_backing_detach(child);
1400 }
1401
1402 bdrv_unapply_subtree_drain(child, bs);
1403}
1404
Max Reitz43483552020-05-13 13:05:24 +02001405static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1406 const char *filename, Error **errp)
1407{
1408 if (c->role & BDRV_CHILD_COW) {
1409 return bdrv_backing_update_filename(c, base, filename, errp);
1410 }
1411 return 0;
1412}
1413
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001414static AioContext *bdrv_child_cb_get_parent_aio_context(BdrvChild *c)
1415{
1416 BlockDriverState *bs = c->opaque;
1417
1418 return bdrv_get_aio_context(bs);
1419}
1420
Max Reitz43483552020-05-13 13:05:24 +02001421const BdrvChildClass child_of_bds = {
1422 .parent_is_bds = true,
1423 .get_parent_desc = bdrv_child_get_parent_desc,
1424 .inherit_options = bdrv_inherited_options,
1425 .drained_begin = bdrv_child_cb_drained_begin,
1426 .drained_poll = bdrv_child_cb_drained_poll,
1427 .drained_end = bdrv_child_cb_drained_end,
1428 .attach = bdrv_child_cb_attach,
1429 .detach = bdrv_child_cb_detach,
1430 .inactivate = bdrv_child_cb_inactivate,
1431 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1432 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1433 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001434 .get_parent_aio_context = bdrv_child_cb_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001435};
1436
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001437AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1438{
1439 return c->klass->get_parent_aio_context(c);
1440}
1441
Kevin Wolf7b272452012-11-12 17:05:39 +01001442static int bdrv_open_flags(BlockDriverState *bs, int flags)
1443{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001444 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001445
1446 /*
1447 * Clear flags that are internal to the block layer before opening the
1448 * image.
1449 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001450 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001451
Kevin Wolf7b272452012-11-12 17:05:39 +01001452 return open_flags;
1453}
1454
Kevin Wolf91a097e2015-05-08 17:49:53 +02001455static void update_flags_from_options(int *flags, QemuOpts *opts)
1456{
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001457 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001458
Alberto Garcia57f9db92018-09-06 12:37:06 +03001459 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001460 *flags |= BDRV_O_NO_FLUSH;
1461 }
1462
Alberto Garcia57f9db92018-09-06 12:37:06 +03001463 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001464 *flags |= BDRV_O_NOCACHE;
1465 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001466
Alberto Garcia57f9db92018-09-06 12:37:06 +03001467 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001468 *flags |= BDRV_O_RDWR;
1469 }
1470
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001471 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1472 *flags |= BDRV_O_AUTO_RDONLY;
1473 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001474}
1475
1476static void update_options_from_flags(QDict *options, int flags)
1477{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001478 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001479 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001480 }
1481 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001482 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1483 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001484 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001485 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001486 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001487 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001488 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1489 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1490 flags & BDRV_O_AUTO_RDONLY);
1491 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001492}
1493
Kevin Wolf636ea372014-01-24 14:11:52 +01001494static void bdrv_assign_node_name(BlockDriverState *bs,
1495 const char *node_name,
1496 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001497{
Jeff Cody15489c72015-10-12 19:36:50 -04001498 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001499
Jeff Cody15489c72015-10-12 19:36:50 -04001500 if (!node_name) {
1501 node_name = gen_node_name = id_generate(ID_BLOCK);
1502 } else if (!id_wellformed(node_name)) {
1503 /*
1504 * Check for empty string or invalid characters, but not if it is
1505 * generated (generated names use characters not available to the user)
1506 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001507 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001508 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001509 }
1510
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001511 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001512 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001513 error_setg(errp, "node-name=%s is conflicting with a device id",
1514 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001515 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001516 }
1517
Benoît Canet6913c0c2014-01-23 21:31:33 +01001518 /* takes care of avoiding duplicates node names */
1519 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001520 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001521 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001522 }
1523
Kevin Wolf824808d2018-07-04 13:28:29 +02001524 /* Make sure that the node name isn't truncated */
1525 if (strlen(node_name) >= sizeof(bs->node_name)) {
1526 error_setg(errp, "Node name too long");
1527 goto out;
1528 }
1529
Benoît Canet6913c0c2014-01-23 21:31:33 +01001530 /* copy node name into the bs and insert it into the graph list */
1531 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1532 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001533out:
1534 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001535}
1536
Kevin Wolf01a56502017-01-18 15:51:56 +01001537static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1538 const char *node_name, QDict *options,
1539 int open_flags, Error **errp)
1540{
1541 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001542 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001543
1544 bdrv_assign_node_name(bs, node_name, &local_err);
1545 if (local_err) {
1546 error_propagate(errp, local_err);
1547 return -EINVAL;
1548 }
1549
1550 bs->drv = drv;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001551 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Kevin Wolf01a56502017-01-18 15:51:56 +01001552 bs->opaque = g_malloc0(drv->instance_size);
1553
1554 if (drv->bdrv_file_open) {
1555 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1556 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001557 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001558 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001559 } else {
1560 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001561 }
1562
1563 if (ret < 0) {
1564 if (local_err) {
1565 error_propagate(errp, local_err);
1566 } else if (bs->filename[0]) {
1567 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1568 } else {
1569 error_setg_errno(errp, -ret, "Could not open image");
1570 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001571 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001572 }
1573
1574 ret = refresh_total_sectors(bs, bs->total_sectors);
1575 if (ret < 0) {
1576 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001577 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001578 }
1579
1580 bdrv_refresh_limits(bs, &local_err);
1581 if (local_err) {
1582 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001583 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001584 }
1585
1586 assert(bdrv_opt_mem_align(bs) != 0);
1587 assert(bdrv_min_mem_align(bs) != 0);
1588 assert(is_power_of_2(bs->bl.request_alignment));
1589
Kevin Wolf0f122642018-03-28 18:29:18 +02001590 for (i = 0; i < bs->quiesce_counter; i++) {
1591 if (drv->bdrv_co_drain_begin) {
1592 drv->bdrv_co_drain_begin(bs);
1593 }
1594 }
1595
Kevin Wolf01a56502017-01-18 15:51:56 +01001596 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001597open_failed:
1598 bs->drv = NULL;
1599 if (bs->file != NULL) {
1600 bdrv_unref_child(bs, bs->file);
1601 bs->file = NULL;
1602 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001603 g_free(bs->opaque);
1604 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001605 return ret;
1606}
1607
Kevin Wolf680c7f92017-01-18 17:16:41 +01001608BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1609 int flags, Error **errp)
1610{
1611 BlockDriverState *bs;
1612 int ret;
1613
1614 bs = bdrv_new();
1615 bs->open_flags = flags;
1616 bs->explicit_options = qdict_new();
1617 bs->options = qdict_new();
1618 bs->opaque = NULL;
1619
1620 update_options_from_flags(bs->options, flags);
1621
1622 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1623 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001624 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001625 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001626 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001627 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001628 bdrv_unref(bs);
1629 return NULL;
1630 }
1631
1632 return bs;
1633}
1634
Kevin Wolfc5f30142016-10-06 11:33:17 +02001635QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001636 .name = "bdrv_common",
1637 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1638 .desc = {
1639 {
1640 .name = "node-name",
1641 .type = QEMU_OPT_STRING,
1642 .help = "Node name of the block device node",
1643 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001644 {
1645 .name = "driver",
1646 .type = QEMU_OPT_STRING,
1647 .help = "Block driver to use for the node",
1648 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001649 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001650 .name = BDRV_OPT_CACHE_DIRECT,
1651 .type = QEMU_OPT_BOOL,
1652 .help = "Bypass software writeback cache on the host",
1653 },
1654 {
1655 .name = BDRV_OPT_CACHE_NO_FLUSH,
1656 .type = QEMU_OPT_BOOL,
1657 .help = "Ignore flush requests",
1658 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001659 {
1660 .name = BDRV_OPT_READ_ONLY,
1661 .type = QEMU_OPT_BOOL,
1662 .help = "Node is opened in read-only mode",
1663 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001664 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001665 .name = BDRV_OPT_AUTO_READ_ONLY,
1666 .type = QEMU_OPT_BOOL,
1667 .help = "Node can become read-only if opening read-write fails",
1668 },
1669 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001670 .name = "detect-zeroes",
1671 .type = QEMU_OPT_STRING,
1672 .help = "try to optimize zero writes (off, on, unmap)",
1673 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001674 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001675 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001676 .type = QEMU_OPT_STRING,
1677 .help = "discard operation (ignore/off, unmap/on)",
1678 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001679 {
1680 .name = BDRV_OPT_FORCE_SHARE,
1681 .type = QEMU_OPT_BOOL,
1682 .help = "always accept other writers (default: off)",
1683 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001684 { /* end of list */ }
1685 },
1686};
1687
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001688QemuOptsList bdrv_create_opts_simple = {
1689 .name = "simple-create-opts",
1690 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001691 .desc = {
1692 {
1693 .name = BLOCK_OPT_SIZE,
1694 .type = QEMU_OPT_SIZE,
1695 .help = "Virtual disk size"
1696 },
1697 {
1698 .name = BLOCK_OPT_PREALLOC,
1699 .type = QEMU_OPT_STRING,
1700 .help = "Preallocation mode (allowed values: off)"
1701 },
1702 { /* end of list */ }
1703 }
1704};
1705
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001706/*
Kevin Wolf57915332010-04-14 15:24:50 +02001707 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001708 *
1709 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001710 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001711static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001712 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001713{
1714 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001715 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001716 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001717 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001718 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001719 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001720 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001721 Error *local_err = NULL;
Kevin Wolf57915332010-04-14 15:24:50 +02001722
Paolo Bonzini64058752012-05-08 16:51:49 +02001723 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001724 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001725
Kevin Wolf62392eb2015-04-24 16:38:02 +02001726 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001727 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001728 ret = -EINVAL;
1729 goto fail_opts;
1730 }
1731
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001732 update_flags_from_options(&bs->open_flags, opts);
1733
Kevin Wolf62392eb2015-04-24 16:38:02 +02001734 driver_name = qemu_opt_get(opts, "driver");
1735 drv = bdrv_find_format(driver_name);
1736 assert(drv != NULL);
1737
Fam Zheng5a9347c2017-05-03 00:35:37 +08001738 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1739
1740 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1741 error_setg(errp,
1742 BDRV_OPT_FORCE_SHARE
1743 "=on can only be used with read-only images");
1744 ret = -EINVAL;
1745 goto fail_opts;
1746 }
1747
Kevin Wolf45673672013-04-22 17:48:40 +02001748 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001749 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001750 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001751 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001752 /*
1753 * Caution: while qdict_get_try_str() is fine, getting
1754 * non-string types would require more care. When @options
1755 * come from -blockdev or blockdev_add, its members are typed
1756 * according to the QAPI schema, but when they come from
1757 * -drive, they're all QString.
1758 */
Kevin Wolf45673672013-04-22 17:48:40 +02001759 filename = qdict_get_try_str(options, "filename");
1760 }
1761
Max Reitz4a008242017-04-13 18:06:24 +02001762 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001763 error_setg(errp, "The '%s' block driver requires a file name",
1764 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001765 ret = -EINVAL;
1766 goto fail_opts;
1767 }
1768
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001769 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1770 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001771
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001772 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001773
1774 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001775 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1776 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1777 } else {
1778 ret = -ENOTSUP;
1779 }
1780 if (ret < 0) {
1781 error_setg(errp,
1782 !bs->read_only && bdrv_is_whitelisted(drv, true)
1783 ? "Driver '%s' can only be used for read-only devices"
1784 : "Driver '%s' is not whitelisted",
1785 drv->format_name);
1786 goto fail_opts;
1787 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001788 }
Kevin Wolf57915332010-04-14 15:24:50 +02001789
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001790 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001791 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001792
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001793 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001794 if (!bs->read_only) {
1795 bdrv_enable_copy_on_read(bs);
1796 } else {
1797 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001798 ret = -EINVAL;
1799 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001800 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001801 }
1802
Alberto Garcia415bbca2018-10-03 13:23:13 +03001803 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001804 if (discard != NULL) {
1805 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1806 error_setg(errp, "Invalid discard option");
1807 ret = -EINVAL;
1808 goto fail_opts;
1809 }
1810 }
1811
Alberto Garcia543770b2018-09-06 12:37:09 +03001812 bs->detect_zeroes =
1813 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1814 if (local_err) {
1815 error_propagate(errp, local_err);
1816 ret = -EINVAL;
1817 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001818 }
1819
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001820 if (filename != NULL) {
1821 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1822 } else {
1823 bs->filename[0] = '\0';
1824 }
Max Reitz91af7012014-07-18 20:24:56 +02001825 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001826
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001827 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001828 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001829 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001830
Kevin Wolf01a56502017-01-18 15:51:56 +01001831 assert(!drv->bdrv_file_open || file == NULL);
1832 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001833 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001834 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001835 }
1836
Kevin Wolf18edf282015-04-07 17:12:56 +02001837 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001838 return 0;
1839
Kevin Wolf18edf282015-04-07 17:12:56 +02001840fail_opts:
1841 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001842 return ret;
1843}
1844
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001845static QDict *parse_json_filename(const char *filename, Error **errp)
1846{
1847 QObject *options_obj;
1848 QDict *options;
1849 int ret;
1850
1851 ret = strstart(filename, "json:", &filename);
1852 assert(ret);
1853
Markus Armbruster5577fff2017-02-28 22:26:59 +01001854 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001855 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001856 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001857 return NULL;
1858 }
1859
Max Reitz7dc847e2018-02-24 16:40:29 +01001860 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001861 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001862 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001863 error_setg(errp, "Invalid JSON object given");
1864 return NULL;
1865 }
1866
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001867 qdict_flatten(options);
1868
1869 return options;
1870}
1871
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001872static void parse_json_protocol(QDict *options, const char **pfilename,
1873 Error **errp)
1874{
1875 QDict *json_options;
1876 Error *local_err = NULL;
1877
1878 /* Parse json: pseudo-protocol */
1879 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1880 return;
1881 }
1882
1883 json_options = parse_json_filename(*pfilename, &local_err);
1884 if (local_err) {
1885 error_propagate(errp, local_err);
1886 return;
1887 }
1888
1889 /* Options given in the filename have lower priority than options
1890 * specified directly */
1891 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001892 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001893 *pfilename = NULL;
1894}
1895
Kevin Wolf57915332010-04-14 15:24:50 +02001896/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001897 * Fills in default options for opening images and converts the legacy
1898 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001899 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1900 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001901 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001902static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001903 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001904{
1905 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001906 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001907 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001908 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001909 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001910
Markus Armbruster129c7d12017-03-30 19:43:12 +02001911 /*
1912 * Caution: while qdict_get_try_str() is fine, getting non-string
1913 * types would require more care. When @options come from
1914 * -blockdev or blockdev_add, its members are typed according to
1915 * the QAPI schema, but when they come from -drive, they're all
1916 * QString.
1917 */
Max Reitz53a29512015-03-19 14:53:16 -04001918 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001919 if (drvname) {
1920 drv = bdrv_find_format(drvname);
1921 if (!drv) {
1922 error_setg(errp, "Unknown driver '%s'", drvname);
1923 return -ENOENT;
1924 }
1925 /* If the user has explicitly specified the driver, this choice should
1926 * override the BDRV_O_PROTOCOL flag */
1927 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001928 }
1929
1930 if (protocol) {
1931 *flags |= BDRV_O_PROTOCOL;
1932 } else {
1933 *flags &= ~BDRV_O_PROTOCOL;
1934 }
1935
Kevin Wolf91a097e2015-05-08 17:49:53 +02001936 /* Translate cache options from flags into options */
1937 update_options_from_flags(*options, *flags);
1938
Kevin Wolff54120f2014-05-26 11:09:59 +02001939 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001940 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001941 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001942 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001943 parse_filename = true;
1944 } else {
1945 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1946 "the same time");
1947 return -EINVAL;
1948 }
1949 }
1950
1951 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001952 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001953 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001954
Max Reitz053e1572015-08-26 19:47:51 +02001955 if (!drvname && protocol) {
1956 if (filename) {
1957 drv = bdrv_find_protocol(filename, parse_filename, errp);
1958 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001959 return -EINVAL;
1960 }
Max Reitz053e1572015-08-26 19:47:51 +02001961
1962 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001963 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001964 } else {
1965 error_setg(errp, "Must specify either driver or file");
1966 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001967 }
1968 }
1969
Kevin Wolf17b005f2014-05-27 10:50:29 +02001970 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001971
1972 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001973 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001974 drv->bdrv_parse_filename(filename, *options, &local_err);
1975 if (local_err) {
1976 error_propagate(errp, local_err);
1977 return -EINVAL;
1978 }
1979
1980 if (!drv->bdrv_needs_filename) {
1981 qdict_del(*options, "filename");
1982 }
1983 }
1984
1985 return 0;
1986}
1987
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03001988static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
1989 uint64_t new_used_perm,
1990 uint64_t new_shared_perm,
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03001991 Error **errp);
Fam Zhengc1cef672017-03-14 10:30:50 +08001992
Kevin Wolf148eb132017-09-14 14:32:04 +02001993typedef struct BlockReopenQueueEntry {
1994 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01001995 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02001996 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001997 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02001998} BlockReopenQueueEntry;
1999
2000/*
2001 * Return the flags that @bs will have after the reopens in @q have
2002 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2003 * return the current flags.
2004 */
2005static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2006{
2007 BlockReopenQueueEntry *entry;
2008
2009 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002010 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002011 if (entry->state.bs == bs) {
2012 return entry->state.flags;
2013 }
2014 }
2015 }
2016
2017 return bs->open_flags;
2018}
2019
2020/* Returns whether the image file can be written to after the reopen queue @q
2021 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002022static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2023 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002024{
2025 int flags = bdrv_reopen_get_flags(q, bs);
2026
2027 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2028}
2029
Max Reitzcc022142018-06-06 21:37:00 +02002030/*
2031 * Return whether the BDS can be written to. This is not necessarily
2032 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2033 * be written to but do not count as read-only images.
2034 */
2035bool bdrv_is_writable(BlockDriverState *bs)
2036{
2037 return bdrv_is_writable_after_reopen(bs, NULL);
2038}
2039
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002040static char *bdrv_child_user_desc(BdrvChild *c)
2041{
2042 if (c->klass->get_parent_desc) {
2043 return c->klass->get_parent_desc(c);
2044 }
2045
2046 return g_strdup("another user");
2047}
2048
2049static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2050{
2051 g_autofree char *user = NULL;
2052 g_autofree char *perm_names = NULL;
2053
2054 if ((b->perm & a->shared_perm) == b->perm) {
2055 return true;
2056 }
2057
2058 perm_names = bdrv_perm_names(b->perm & ~a->shared_perm);
2059 user = bdrv_child_user_desc(a);
2060 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2061 "allow '%s' on %s",
2062 user, a->name, perm_names, bdrv_get_node_name(b->bs));
2063
2064 return false;
2065}
2066
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002067static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002068{
2069 BdrvChild *a, *b;
2070
2071 /*
2072 * During the loop we'll look at each pair twice. That's correct because
2073 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2074 * directions.
2075 */
2076 QLIST_FOREACH(a, &bs->parents, next_parent) {
2077 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002078 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002079 continue;
2080 }
2081
2082 if (!bdrv_a_allow_b(a, b, errp)) {
2083 return true;
2084 }
2085 }
2086 }
2087
2088 return false;
2089}
2090
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002091static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02002092 BdrvChild *c, BdrvChildRole role,
2093 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002094 uint64_t parent_perm, uint64_t parent_shared,
2095 uint64_t *nperm, uint64_t *nshared)
2096{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002097 assert(bs->drv && bs->drv->bdrv_child_perm);
Max Reitze5d8a402020-05-13 13:05:44 +02002098 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002099 parent_perm, parent_shared,
2100 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002101 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002102 if (child_bs && child_bs->force_share) {
2103 *nshared = BLK_PERM_ALL;
2104 }
2105}
2106
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002107/*
2108 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2109 * nodes that are already in the @list, of course) so that final list is
2110 * topologically sorted. Return the result (GSList @list object is updated, so
2111 * don't use old reference after function call).
2112 *
2113 * On function start @list must be already topologically sorted and for any node
2114 * in the @list the whole subtree of the node must be in the @list as well. The
2115 * simplest way to satisfy this criteria: use only result of
2116 * bdrv_topological_dfs() or NULL as @list parameter.
2117 */
2118static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2119 BlockDriverState *bs)
2120{
2121 BdrvChild *child;
2122 g_autoptr(GHashTable) local_found = NULL;
2123
2124 if (!found) {
2125 assert(!list);
2126 found = local_found = g_hash_table_new(NULL, NULL);
2127 }
2128
2129 if (g_hash_table_contains(found, bs)) {
2130 return list;
2131 }
2132 g_hash_table_add(found, bs);
2133
2134 QLIST_FOREACH(child, &bs->children, next) {
2135 list = bdrv_topological_dfs(list, found, child->bs);
2136 }
2137
2138 return g_slist_prepend(list, bs);
2139}
2140
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002141static void bdrv_child_set_perm_commit(void *opaque)
2142{
2143 BdrvChild *c = opaque;
2144
2145 c->has_backup_perm = false;
2146}
2147
2148static void bdrv_child_set_perm_abort(void *opaque)
2149{
2150 BdrvChild *c = opaque;
2151 /*
2152 * We may have child->has_backup_perm unset at this point, as in case of
2153 * _check_ stage of permission update failure we may _check_ not the whole
2154 * subtree. Still, _abort_ is called on the whole subtree anyway.
2155 */
2156 if (c->has_backup_perm) {
2157 c->perm = c->backup_perm;
2158 c->shared_perm = c->backup_shared_perm;
2159 c->has_backup_perm = false;
2160 }
2161}
2162
2163static TransactionActionDrv bdrv_child_set_pem_drv = {
2164 .abort = bdrv_child_set_perm_abort,
2165 .commit = bdrv_child_set_perm_commit,
2166};
2167
2168/*
2169 * With tran=NULL needs to be followed by direct call to either
2170 * bdrv_child_set_perm_commit() or bdrv_child_set_perm_abort().
2171 *
2172 * With non-NULL tran needs to be followed by tran_abort() or tran_commit()
2173 * instead.
2174 */
2175static void bdrv_child_set_perm_safe(BdrvChild *c, uint64_t perm,
2176 uint64_t shared, Transaction *tran)
2177{
2178 if (!c->has_backup_perm) {
2179 c->has_backup_perm = true;
2180 c->backup_perm = c->perm;
2181 c->backup_shared_perm = c->shared_perm;
2182 }
2183 /*
2184 * Note: it's OK if c->has_backup_perm was already set, as we can find the
2185 * same c twice during check_perm procedure
2186 */
2187
2188 c->perm = perm;
2189 c->shared_perm = shared;
2190
2191 if (tran) {
2192 tran_add(tran, &bdrv_child_set_pem_drv, c);
2193 }
2194}
2195
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002196static void bdrv_drv_set_perm_commit(void *opaque)
2197{
2198 BlockDriverState *bs = opaque;
2199 uint64_t cumulative_perms, cumulative_shared_perms;
2200
2201 if (bs->drv->bdrv_set_perm) {
2202 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2203 &cumulative_shared_perms);
2204 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2205 }
2206}
2207
2208static void bdrv_drv_set_perm_abort(void *opaque)
2209{
2210 BlockDriverState *bs = opaque;
2211
2212 if (bs->drv->bdrv_abort_perm_update) {
2213 bs->drv->bdrv_abort_perm_update(bs);
2214 }
2215}
2216
2217TransactionActionDrv bdrv_drv_set_perm_drv = {
2218 .abort = bdrv_drv_set_perm_abort,
2219 .commit = bdrv_drv_set_perm_commit,
2220};
2221
2222static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2223 uint64_t shared_perm, Transaction *tran,
2224 Error **errp)
2225{
2226 if (!bs->drv) {
2227 return 0;
2228 }
2229
2230 if (bs->drv->bdrv_check_perm) {
2231 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2232 if (ret < 0) {
2233 return ret;
2234 }
2235 }
2236
2237 if (tran) {
2238 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2239 }
2240
2241 return 0;
2242}
2243
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002244typedef struct BdrvReplaceChildState {
2245 BdrvChild *child;
2246 BlockDriverState *old_bs;
2247} BdrvReplaceChildState;
2248
2249static void bdrv_replace_child_commit(void *opaque)
2250{
2251 BdrvReplaceChildState *s = opaque;
2252
2253 bdrv_unref(s->old_bs);
2254}
2255
2256static void bdrv_replace_child_abort(void *opaque)
2257{
2258 BdrvReplaceChildState *s = opaque;
2259 BlockDriverState *new_bs = s->child->bs;
2260
2261 /* old_bs reference is transparently moved from @s to @s->child */
2262 bdrv_replace_child_noperm(s->child, s->old_bs);
2263 bdrv_unref(new_bs);
2264}
2265
2266static TransactionActionDrv bdrv_replace_child_drv = {
2267 .commit = bdrv_replace_child_commit,
2268 .abort = bdrv_replace_child_abort,
2269 .clean = g_free,
2270};
2271
2272/*
2273 * bdrv_replace_child_safe
2274 *
2275 * Note: real unref of old_bs is done only on commit.
2276 */
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002277static void bdrv_replace_child_safe(BdrvChild *child, BlockDriverState *new_bs,
2278 Transaction *tran)
2279{
2280 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2281 *s = (BdrvReplaceChildState) {
2282 .child = child,
2283 .old_bs = child->bs,
2284 };
2285 tran_add(tran, &bdrv_replace_child_drv, s);
2286
2287 if (new_bs) {
2288 bdrv_ref(new_bs);
2289 }
2290 bdrv_replace_child_noperm(child, new_bs);
2291 /* old_bs reference is transparently moved from @child to @s */
2292}
2293
Kevin Wolf33a610c2016-12-15 13:04:20 +01002294/*
2295 * Check whether permissions on this node can be changed in a way that
2296 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
2297 * permissions of all its parents. This involves checking whether all necessary
2298 * permission changes to child nodes can be performed.
2299 *
2300 * A call to this function must always be followed by a call to bdrv_set_perm()
2301 * or bdrv_abort_perm_update().
2302 */
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002303static int bdrv_node_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
2304 uint64_t cumulative_perms,
2305 uint64_t cumulative_shared_perms,
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002306 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002307{
2308 BlockDriver *drv = bs->drv;
2309 BdrvChild *c;
2310 int ret;
2311
2312 /* Write permissions never work with read-only images */
2313 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002314 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002315 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002316 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2317 error_setg(errp, "Block node is read-only");
2318 } else {
2319 uint64_t current_perms, current_shared;
2320 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2321 if (current_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
2322 error_setg(errp, "Cannot make block node read-only, there is "
2323 "a writer on it");
2324 } else {
2325 error_setg(errp, "Cannot make block node read-only and create "
2326 "a writer on it");
2327 }
2328 }
2329
Kevin Wolf33a610c2016-12-15 13:04:20 +01002330 return -EPERM;
2331 }
2332
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002333 /*
2334 * Unaligned requests will automatically be aligned to bl.request_alignment
2335 * and without RESIZE we can't extend requests to write to space beyond the
2336 * end of the image, so it's required that the image size is aligned.
2337 */
2338 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2339 !(cumulative_perms & BLK_PERM_RESIZE))
2340 {
2341 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2342 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2343 "Image size is not a multiple of request "
2344 "alignment");
2345 return -EPERM;
2346 }
2347 }
2348
Kevin Wolf33a610c2016-12-15 13:04:20 +01002349 /* Check this node */
2350 if (!drv) {
2351 return 0;
2352 }
2353
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002354 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002355 errp);
2356 if (ret < 0) {
2357 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002358 }
2359
Kevin Wolf78e421c2016-12-20 23:25:12 +01002360 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002361 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002362 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002363 return 0;
2364 }
2365
2366 /* Check all children */
2367 QLIST_FOREACH(c, &bs->children, next) {
2368 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002369
Max Reitze5d8a402020-05-13 13:05:44 +02002370 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002371 cumulative_perms, cumulative_shared_perms,
2372 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002373 bdrv_child_set_perm_safe(c, cur_perm, cur_shared, tran);
2374 }
2375
2376 return 0;
2377}
2378
2379/*
2380 * If use_cumulative_perms is true, use cumulative_perms and
2381 * cumulative_shared_perms for first element of the list. Otherwise just refresh
2382 * all permissions.
2383 */
2384static int bdrv_check_perm_common(GSList *list, BlockReopenQueue *q,
2385 bool use_cumulative_perms,
2386 uint64_t cumulative_perms,
2387 uint64_t cumulative_shared_perms,
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002388 Transaction *tran, Error **errp)
2389{
2390 int ret;
2391 BlockDriverState *bs;
2392
2393 if (use_cumulative_perms) {
2394 bs = list->data;
2395
2396 ret = bdrv_node_check_perm(bs, q, cumulative_perms,
2397 cumulative_shared_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002398 tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002399 if (ret < 0) {
2400 return ret;
2401 }
2402
2403 list = list->next;
2404 }
2405
2406 for ( ; list; list = list->next) {
2407 bs = list->data;
2408
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002409 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002410 return -EINVAL;
2411 }
2412
2413 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2414 &cumulative_shared_perms);
2415
2416 ret = bdrv_node_check_perm(bs, q, cumulative_perms,
2417 cumulative_shared_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002418 tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002419 if (ret < 0) {
2420 return ret;
2421 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002422 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002423
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002424 return 0;
2425}
2426
2427static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
2428 uint64_t cumulative_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002429 uint64_t cumulative_shared_perms, Error **errp)
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002430{
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002431 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2432 return bdrv_check_perm_common(list, q, true, cumulative_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002433 cumulative_shared_perms, NULL, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002434}
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002435
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002436static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2437 Transaction *tran, Error **errp)
2438{
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002439 return bdrv_check_perm_common(list, q, false, 0, 0, tran, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002440}
2441
2442/*
2443 * Notifies drivers that after a previous bdrv_check_perm() call, the
2444 * permission update is not performed and any preparations made for it (e.g.
2445 * taken file locks) need to be undone.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002446 */
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002447static void bdrv_node_abort_perm_update(BlockDriverState *bs)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002448{
2449 BlockDriver *drv = bs->drv;
2450 BdrvChild *c;
2451
2452 if (!drv) {
2453 return;
2454 }
2455
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002456 bdrv_drv_set_perm_abort(bs);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002457
2458 QLIST_FOREACH(c, &bs->children, next) {
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002459 bdrv_child_set_perm_abort(c);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002460 }
2461}
2462
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002463static void bdrv_list_abort_perm_update(GSList *list)
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002464{
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002465 for ( ; list; list = list->next) {
2466 bdrv_node_abort_perm_update((BlockDriverState *)list->data);
2467 }
2468}
2469
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002470static void bdrv_abort_perm_update(BlockDriverState *bs)
2471{
2472 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2473 return bdrv_list_abort_perm_update(list);
2474}
2475
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002476static void bdrv_node_set_perm(BlockDriverState *bs)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002477{
2478 BlockDriver *drv = bs->drv;
2479 BdrvChild *c;
2480
2481 if (!drv) {
2482 return;
2483 }
2484
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002485 bdrv_drv_set_perm_commit(bs);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002486
Kevin Wolf78e421c2016-12-20 23:25:12 +01002487 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002488 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002489 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002490 return;
2491 }
2492
2493 /* Update all children */
2494 QLIST_FOREACH(c, &bs->children, next) {
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002495 bdrv_child_set_perm_commit(c);
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002496 }
2497}
2498
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002499static void bdrv_list_set_perm(GSList *list)
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002500{
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002501 for ( ; list; list = list->next) {
2502 bdrv_node_set_perm((BlockDriverState *)list->data);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002503 }
2504}
2505
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002506static void bdrv_set_perm(BlockDriverState *bs)
2507{
2508 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
2509 return bdrv_list_set_perm(list);
2510}
2511
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002512void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2513 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002514{
2515 BdrvChild *c;
2516 uint64_t cumulative_perms = 0;
2517 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2518
2519 QLIST_FOREACH(c, &bs->parents, next_parent) {
2520 cumulative_perms |= c->perm;
2521 cumulative_shared_perms &= c->shared_perm;
2522 }
2523
2524 *perm = cumulative_perms;
2525 *shared_perm = cumulative_shared_perms;
2526}
2527
Fam Zheng51761962017-05-03 00:35:36 +08002528char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002529{
2530 struct perm_name {
2531 uint64_t perm;
2532 const char *name;
2533 } permissions[] = {
2534 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2535 { BLK_PERM_WRITE, "write" },
2536 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2537 { BLK_PERM_RESIZE, "resize" },
2538 { BLK_PERM_GRAPH_MOD, "change children" },
2539 { 0, NULL }
2540 };
2541
Alberto Garciae2a74232020-01-10 18:15:18 +01002542 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002543 struct perm_name *p;
2544
2545 for (p = permissions; p->name; p++) {
2546 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002547 if (result->len > 0) {
2548 g_string_append(result, ", ");
2549 }
2550 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002551 }
2552 }
2553
Alberto Garciae2a74232020-01-10 18:15:18 +01002554 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002555}
2556
Kevin Wolf33a610c2016-12-15 13:04:20 +01002557/*
2558 * Checks whether a new reference to @bs can be added if the new user requires
Kevin Wolf46181122017-03-06 15:00:13 +01002559 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
2560 * set, the BdrvChild objects in this list are ignored in the calculations;
2561 * this allows checking permission updates for an existing reference.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002562 *
2563 * Needs to be followed by a call to either bdrv_set_perm() or
2564 * bdrv_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02002565static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
2566 uint64_t new_used_perm,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002567 uint64_t new_shared_perm,
Max Reitz9eab1542019-05-22 19:03:50 +02002568 Error **errp)
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002569{
2570 BdrvChild *c;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002571 uint64_t cumulative_perms = new_used_perm;
2572 uint64_t cumulative_shared_perms = new_shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002573
Max Reitz9eab1542019-05-22 19:03:50 +02002574
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002575 /* There is no reason why anyone couldn't tolerate write_unchanged */
2576 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
2577
2578 QLIST_FOREACH(c, &bs->parents, next_parent) {
Kevin Wolfd0833192017-01-16 18:26:20 +01002579 if ((new_used_perm & c->shared_perm) != new_used_perm) {
2580 char *user = bdrv_child_user_desc(c);
2581 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002582
Kevin Wolfd0833192017-01-16 18:26:20 +01002583 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2584 "allow '%s' on %s",
2585 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2586 g_free(user);
2587 g_free(perm_names);
2588 return -EPERM;
2589 }
2590
2591 if ((c->perm & new_shared_perm) != c->perm) {
2592 char *user = bdrv_child_user_desc(c);
2593 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002594
Kevin Wolfd0833192017-01-16 18:26:20 +01002595 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
2596 "'%s' on %s",
2597 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2598 g_free(user);
2599 g_free(perm_names);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002600 return -EPERM;
2601 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002602
2603 cumulative_perms |= c->perm;
2604 cumulative_shared_perms &= c->shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002605 }
2606
Kevin Wolf3121fb42017-09-14 14:42:12 +02002607 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002608 errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002609}
2610
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002611static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002612{
2613 int ret;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002614 Transaction *tran = tran_new();
2615 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002616
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002617 ret = bdrv_list_refresh_perms(list, NULL, tran, errp);
2618 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002619
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002620 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002621}
2622
Kevin Wolf33a610c2016-12-15 13:04:20 +01002623int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2624 Error **errp)
2625{
Max Reitz10467792019-05-22 19:03:51 +02002626 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002627 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002628 int ret;
2629
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002630 bdrv_child_set_perm_safe(c, perm, shared, tran);
2631
2632 ret = bdrv_refresh_perms(c->bs, &local_err);
2633
2634 tran_finalize(tran, ret);
2635
Kevin Wolf33a610c2016-12-15 13:04:20 +01002636 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002637 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2638 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002639 error_propagate(errp, local_err);
2640 } else {
2641 /*
2642 * Our caller may intend to only loosen restrictions and
2643 * does not expect this function to fail. Errors are not
2644 * fatal in such a case, so we can just hide them from our
2645 * caller.
2646 */
2647 error_free(local_err);
2648 ret = 0;
2649 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002650 }
2651
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002652 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002653}
2654
Max Reitzc1087f12019-05-22 19:03:46 +02002655int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2656{
2657 uint64_t parent_perms, parent_shared;
2658 uint64_t perms, shared;
2659
2660 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002661 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002662 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002663
2664 return bdrv_child_try_set_perm(c, perms, shared, errp);
2665}
2666
Max Reitz87278af2020-05-13 13:05:40 +02002667/*
2668 * Default implementation for .bdrv_child_perm() for block filters:
2669 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2670 * filtered child.
2671 */
2672static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002673 BdrvChildRole role,
2674 BlockReopenQueue *reopen_queue,
2675 uint64_t perm, uint64_t shared,
2676 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002677{
Kevin Wolfe444fa82019-08-02 15:59:41 +02002678 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2679 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002680}
2681
Max Reitz70082db2020-05-13 13:05:26 +02002682static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002683 BdrvChildRole role,
2684 BlockReopenQueue *reopen_queue,
2685 uint64_t perm, uint64_t shared,
2686 uint64_t *nperm, uint64_t *nshared)
2687{
Max Reitze5d8a402020-05-13 13:05:44 +02002688 assert(role & BDRV_CHILD_COW);
Max Reitz70082db2020-05-13 13:05:26 +02002689
2690 /*
2691 * We want consistent read from backing files if the parent needs it.
2692 * No other operations are performed on backing files.
2693 */
2694 perm &= BLK_PERM_CONSISTENT_READ;
2695
2696 /*
2697 * If the parent can deal with changing data, we're okay with a
2698 * writable and resizable backing file.
2699 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2700 */
2701 if (shared & BLK_PERM_WRITE) {
2702 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2703 } else {
2704 shared = 0;
2705 }
2706
2707 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2708 BLK_PERM_WRITE_UNCHANGED;
2709
2710 if (bs->open_flags & BDRV_O_INACTIVE) {
2711 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2712 }
2713
2714 *nperm = perm;
2715 *nshared = shared;
2716}
2717
Max Reitz6f838a42020-05-13 13:05:27 +02002718static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002719 BdrvChildRole role,
2720 BlockReopenQueue *reopen_queue,
2721 uint64_t perm, uint64_t shared,
2722 uint64_t *nperm, uint64_t *nshared)
2723{
2724 int flags;
2725
Max Reitze5d8a402020-05-13 13:05:44 +02002726 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002727
2728 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2729
2730 /*
2731 * Apart from the modifications below, the same permissions are
2732 * forwarded and left alone as for filters
2733 */
Max Reitze5d8a402020-05-13 13:05:44 +02002734 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002735 perm, shared, &perm, &shared);
2736
Max Reitzf8890542020-05-13 13:05:28 +02002737 if (role & BDRV_CHILD_METADATA) {
2738 /* Format drivers may touch metadata even if the guest doesn't write */
2739 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2740 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2741 }
2742
2743 /*
2744 * bs->file always needs to be consistent because of the
2745 * metadata. We can never allow other users to resize or write
2746 * to it.
2747 */
2748 if (!(flags & BDRV_O_NO_IO)) {
2749 perm |= BLK_PERM_CONSISTENT_READ;
2750 }
2751 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002752 }
2753
Max Reitzf8890542020-05-13 13:05:28 +02002754 if (role & BDRV_CHILD_DATA) {
2755 /*
2756 * Technically, everything in this block is a subset of the
2757 * BDRV_CHILD_METADATA path taken above, and so this could
2758 * be an "else if" branch. However, that is not obvious, and
2759 * this function is not performance critical, therefore we let
2760 * this be an independent "if".
2761 */
2762
2763 /*
2764 * We cannot allow other users to resize the file because the
2765 * format driver might have some assumptions about the size
2766 * (e.g. because it is stored in metadata, or because the file
2767 * is split into fixed-size data files).
2768 */
2769 shared &= ~BLK_PERM_RESIZE;
2770
2771 /*
2772 * WRITE_UNCHANGED often cannot be performed as such on the
2773 * data file. For example, the qcow2 driver may still need to
2774 * write copied clusters on copy-on-read.
2775 */
2776 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2777 perm |= BLK_PERM_WRITE;
2778 }
2779
2780 /*
2781 * If the data file is written to, the format driver may
2782 * expect to be able to resize it by writing beyond the EOF.
2783 */
2784 if (perm & BLK_PERM_WRITE) {
2785 perm |= BLK_PERM_RESIZE;
2786 }
Max Reitz6f838a42020-05-13 13:05:27 +02002787 }
Max Reitz6f838a42020-05-13 13:05:27 +02002788
2789 if (bs->open_flags & BDRV_O_INACTIVE) {
2790 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2791 }
2792
2793 *nperm = perm;
2794 *nshared = shared;
2795}
2796
Max Reitz2519f542020-05-13 13:05:29 +02002797void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002798 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002799 uint64_t perm, uint64_t shared,
2800 uint64_t *nperm, uint64_t *nshared)
2801{
Max Reitz2519f542020-05-13 13:05:29 +02002802 if (role & BDRV_CHILD_FILTERED) {
2803 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2804 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002805 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002806 perm, shared, nperm, nshared);
2807 } else if (role & BDRV_CHILD_COW) {
2808 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002809 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002810 perm, shared, nperm, nshared);
2811 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002812 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002813 perm, shared, nperm, nshared);
2814 } else {
2815 g_assert_not_reached();
2816 }
2817}
2818
Max Reitz7b1d9c42019-11-08 13:34:51 +01002819uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2820{
2821 static const uint64_t permissions[] = {
2822 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2823 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2824 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2825 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2826 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2827 };
2828
2829 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2830 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2831
2832 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2833
2834 return permissions[qapi_perm];
2835}
2836
Kevin Wolf8ee03992017-03-06 13:45:28 +01002837static void bdrv_replace_child_noperm(BdrvChild *child,
2838 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002839{
2840 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002841 int new_bs_quiesce_counter;
2842 int drain_saldo;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002843
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002844 assert(!child->frozen);
2845
Fam Zhengbb2614e2017-04-07 14:54:10 +08002846 if (old_bs && new_bs) {
2847 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2848 }
Max Reitzdebc2922019-07-22 15:33:44 +02002849
2850 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2851 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2852
2853 /*
2854 * If the new child node is drained but the old one was not, flush
2855 * all outstanding requests to the old child node.
2856 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002857 while (drain_saldo > 0 && child->klass->drained_begin) {
Max Reitzdebc2922019-07-22 15:33:44 +02002858 bdrv_parent_drained_begin_single(child, true);
2859 drain_saldo--;
2860 }
2861
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002862 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002863 /* Detach first so that the recursive drain sections coming from @child
2864 * are already gone and we only end the drain sections that came from
2865 * elsewhere. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002866 if (child->klass->detach) {
2867 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002868 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002869 QLIST_REMOVE(child, next_parent);
2870 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002871
2872 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002873
2874 if (new_bs) {
2875 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzdebc2922019-07-22 15:33:44 +02002876
2877 /*
2878 * Detaching the old node may have led to the new node's
2879 * quiesce_counter having been decreased. Not a problem, we
2880 * just need to recognize this here and then invoke
2881 * drained_end appropriately more often.
2882 */
2883 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2884 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002885
Kevin Wolfd736f112017-12-18 16:05:48 +01002886 /* Attach only after starting new drained sections, so that recursive
2887 * drain sections coming from @child don't get an extra .drained_begin
2888 * callback. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002889 if (child->klass->attach) {
2890 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002891 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002892 }
Max Reitzdebc2922019-07-22 15:33:44 +02002893
2894 /*
2895 * If the old child node was drained but the new one is not, allow
2896 * requests to come in only after the new node has been attached.
2897 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002898 while (drain_saldo < 0 && child->klass->drained_end) {
Max Reitzdebc2922019-07-22 15:33:44 +02002899 bdrv_parent_drained_end_single(child);
2900 drain_saldo++;
2901 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002902}
2903
Kevin Wolf466787f2017-03-08 14:44:07 +01002904/*
2905 * Updates @child to change its reference to point to @new_bs, including
zhaolichange3a6e0d2020-09-17 15:50:20 +08002906 * checking and applying the necessary permission updates both to the old node
Kevin Wolf466787f2017-03-08 14:44:07 +01002907 * and to @new_bs.
2908 *
2909 * NULL is passed as @new_bs for removing the reference before freeing @child.
2910 *
2911 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2912 * function uses bdrv_set_perm() to update the permissions according to the new
2913 * reference that @new_bs gets.
Max Reitz7b99a262019-06-12 16:07:11 +02002914 *
2915 * Callers must ensure that child->frozen is false.
Kevin Wolf466787f2017-03-08 14:44:07 +01002916 */
2917static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolf8ee03992017-03-06 13:45:28 +01002918{
2919 BlockDriverState *old_bs = child->bs;
Kevin Wolf8ee03992017-03-06 13:45:28 +01002920
Max Reitz7b99a262019-06-12 16:07:11 +02002921 /* Asserts that child->frozen == false */
Kevin Wolf8aecf1d2017-08-03 17:02:57 +02002922 bdrv_replace_child_noperm(child, new_bs);
2923
Max Reitz87ace5f2019-05-22 19:03:49 +02002924 /*
2925 * Start with the new node's permissions. If @new_bs is a (direct
2926 * or indirect) child of @old_bs, we must complete the permission
2927 * update on @new_bs before we loosen the restrictions on @old_bs.
2928 * Otherwise, bdrv_check_perm() on @old_bs would re-initiate
2929 * updating the permissions of @new_bs, and thus not purely loosen
2930 * restrictions.
2931 */
2932 if (new_bs) {
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03002933 bdrv_set_perm(new_bs);
Max Reitz87ace5f2019-05-22 19:03:49 +02002934 }
2935
Kevin Wolf8ee03992017-03-06 13:45:28 +01002936 if (old_bs) {
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002937 /*
2938 * Update permissions for old node. We're just taking a parent away, so
2939 * we're loosening restrictions. Errors of permission update are not
2940 * fatal in this case, ignore them.
2941 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002942 bdrv_refresh_perms(old_bs, NULL);
Kevin Wolfad943dc2019-04-24 18:04:42 +02002943
2944 /* When the parent requiring a non-default AioContext is removed, the
2945 * node moves back to the main AioContext */
2946 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
Kevin Wolf8ee03992017-03-06 13:45:28 +01002947 }
Kevin Wolff54120f2014-05-26 11:09:59 +02002948}
2949
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03002950static void bdrv_child_free(void *opaque)
2951{
2952 BdrvChild *c = opaque;
2953
2954 g_free(c->name);
2955 g_free(c);
2956}
2957
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002958static void bdrv_remove_empty_child(BdrvChild *child)
2959{
2960 assert(!child->bs);
2961 QLIST_SAFE_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03002962 bdrv_child_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002963}
2964
2965typedef struct BdrvAttachChildCommonState {
2966 BdrvChild **child;
2967 AioContext *old_parent_ctx;
2968 AioContext *old_child_ctx;
2969} BdrvAttachChildCommonState;
2970
2971static void bdrv_attach_child_common_abort(void *opaque)
2972{
2973 BdrvAttachChildCommonState *s = opaque;
2974 BdrvChild *child = *s->child;
2975 BlockDriverState *bs = child->bs;
2976
2977 bdrv_replace_child_noperm(child, NULL);
2978
2979 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2980 bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort);
2981 }
2982
2983 if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) {
2984 GSList *ignore = g_slist_prepend(NULL, child);
2985
2986 child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore,
2987 &error_abort);
2988 g_slist_free(ignore);
2989 ignore = g_slist_prepend(NULL, child);
2990 child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore);
2991
2992 g_slist_free(ignore);
2993 }
2994
2995 bdrv_unref(bs);
2996 bdrv_remove_empty_child(child);
2997 *s->child = NULL;
2998}
2999
3000static TransactionActionDrv bdrv_attach_child_common_drv = {
3001 .abort = bdrv_attach_child_common_abort,
3002 .clean = g_free,
3003};
3004
3005/*
3006 * Common part of attaching bdrv child to bs or to blk or to job
3007 */
3008static int bdrv_attach_child_common(BlockDriverState *child_bs,
3009 const char *child_name,
3010 const BdrvChildClass *child_class,
3011 BdrvChildRole child_role,
3012 uint64_t perm, uint64_t shared_perm,
3013 void *opaque, BdrvChild **child,
3014 Transaction *tran, Error **errp)
3015{
3016 BdrvChild *new_child;
3017 AioContext *parent_ctx;
3018 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
3019
3020 assert(child);
3021 assert(*child == NULL);
3022
3023 new_child = g_new(BdrvChild, 1);
3024 *new_child = (BdrvChild) {
3025 .bs = NULL,
3026 .name = g_strdup(child_name),
3027 .klass = child_class,
3028 .role = child_role,
3029 .perm = perm,
3030 .shared_perm = shared_perm,
3031 .opaque = opaque,
3032 };
3033
3034 /*
3035 * If the AioContexts don't match, first try to move the subtree of
3036 * child_bs into the AioContext of the new parent. If this doesn't work,
3037 * try moving the parent into the AioContext of child_bs instead.
3038 */
3039 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3040 if (child_ctx != parent_ctx) {
3041 Error *local_err = NULL;
3042 int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err);
3043
3044 if (ret < 0 && child_class->can_set_aio_ctx) {
3045 GSList *ignore = g_slist_prepend(NULL, new_child);
3046 if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore,
3047 NULL))
3048 {
3049 error_free(local_err);
3050 ret = 0;
3051 g_slist_free(ignore);
3052 ignore = g_slist_prepend(NULL, new_child);
3053 child_class->set_aio_ctx(new_child, child_ctx, &ignore);
3054 }
3055 g_slist_free(ignore);
3056 }
3057
3058 if (ret < 0) {
3059 error_propagate(errp, local_err);
3060 bdrv_remove_empty_child(new_child);
3061 return ret;
3062 }
3063 }
3064
3065 bdrv_ref(child_bs);
3066 bdrv_replace_child_noperm(new_child, child_bs);
3067
3068 *child = new_child;
3069
3070 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3071 *s = (BdrvAttachChildCommonState) {
3072 .child = child,
3073 .old_parent_ctx = parent_ctx,
3074 .old_child_ctx = child_ctx,
3075 };
3076 tran_add(tran, &bdrv_attach_child_common_drv, s);
3077
3078 return 0;
3079}
3080
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003081static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3082 BlockDriverState *child_bs,
3083 const char *child_name,
3084 const BdrvChildClass *child_class,
3085 BdrvChildRole child_role,
3086 BdrvChild **child,
3087 Transaction *tran,
3088 Error **errp)
3089{
3090 int ret;
3091 uint64_t perm, shared_perm;
3092
3093 assert(parent_bs->drv);
3094
3095 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3096 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3097 perm, shared_perm, &perm, &shared_perm);
3098
3099 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3100 child_role, perm, shared_perm, parent_bs,
3101 child, tran, errp);
3102 if (ret < 0) {
3103 return ret;
3104 }
3105
3106 QLIST_INSERT_HEAD(&parent_bs->children, *child, next);
3107 /*
3108 * child is removed in bdrv_attach_child_common_abort(), so don't care to
3109 * abort this change separately.
3110 */
3111
3112 return 0;
3113}
3114
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003115static void bdrv_detach_child(BdrvChild *child)
3116{
3117 bdrv_replace_child(child, NULL);
3118 bdrv_remove_empty_child(child);
3119}
3120
Alberto Garciab441dc72019-05-13 16:46:18 +03003121/*
3122 * This function steals the reference to child_bs from the caller.
3123 * That reference is later dropped by bdrv_root_unref_child().
3124 *
3125 * On failure NULL is returned, errp is set and the reference to
3126 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003127 *
3128 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3129 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03003130 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003131BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3132 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003133 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003134 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003135 uint64_t perm, uint64_t shared_perm,
3136 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02003137{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003138 int ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003139 BdrvChild *child = NULL;
3140 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003141
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003142 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3143 child_role, perm, shared_perm, opaque,
3144 &child, tran, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003145 if (ret < 0) {
Alberto Garciab441dc72019-05-13 16:46:18 +03003146 bdrv_unref(child_bs);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003147 return NULL;
3148 }
3149
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003150 ret = bdrv_refresh_perms(child_bs, errp);
3151 tran_finalize(tran, ret);
Kevin Wolfdf581792015-06-15 11:53:47 +02003152
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003153 bdrv_unref(child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003154 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02003155}
3156
Alberto Garciab441dc72019-05-13 16:46:18 +03003157/*
3158 * This function transfers the reference to child_bs from the caller
3159 * to parent_bs. That reference is later dropped by parent_bs on
3160 * bdrv_close() or if someone calls bdrv_unref_child().
3161 *
3162 * On failure NULL is returned, errp is set and the reference to
3163 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003164 *
3165 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3166 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03003167 */
Wen Congyang98292c62016-05-10 15:36:38 +08003168BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3169 BlockDriverState *child_bs,
3170 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003171 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003172 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003173 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003174{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003175 int ret;
3176 BdrvChild *child = NULL;
3177 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003178
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003179 ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class,
3180 child_role, &child, tran, errp);
3181 if (ret < 0) {
3182 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003183 }
3184
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003185 ret = bdrv_refresh_perms(parent_bs, errp);
3186 if (ret < 0) {
3187 goto out;
3188 }
3189
3190out:
3191 tran_finalize(tran, ret);
3192
3193 bdrv_unref(child_bs);
3194
Kevin Wolff21d96d2016-03-08 13:47:46 +01003195 return child;
3196}
3197
Max Reitz7b99a262019-06-12 16:07:11 +02003198/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003199void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003200{
Kevin Wolf779020c2015-10-13 14:09:44 +02003201 BlockDriverState *child_bs;
3202
Kevin Wolff21d96d2016-03-08 13:47:46 +01003203 child_bs = child->bs;
3204 bdrv_detach_child(child);
3205 bdrv_unref(child_bs);
3206}
3207
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003208typedef struct BdrvSetInheritsFrom {
3209 BlockDriverState *bs;
3210 BlockDriverState *old_inherits_from;
3211} BdrvSetInheritsFrom;
3212
3213static void bdrv_set_inherits_from_abort(void *opaque)
3214{
3215 BdrvSetInheritsFrom *s = opaque;
3216
3217 s->bs->inherits_from = s->old_inherits_from;
3218}
3219
3220static TransactionActionDrv bdrv_set_inherits_from_drv = {
3221 .abort = bdrv_set_inherits_from_abort,
3222 .clean = g_free,
3223};
3224
3225/* @tran is allowed to be NULL. In this case no rollback is possible */
3226static void bdrv_set_inherits_from(BlockDriverState *bs,
3227 BlockDriverState *new_inherits_from,
3228 Transaction *tran)
3229{
3230 if (tran) {
3231 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3232
3233 *s = (BdrvSetInheritsFrom) {
3234 .bs = bs,
3235 .old_inherits_from = bs->inherits_from,
3236 };
3237
3238 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3239 }
3240
3241 bs->inherits_from = new_inherits_from;
3242}
3243
Max Reitz3cf746b2019-07-03 19:28:07 +02003244/**
3245 * Clear all inherits_from pointers from children and grandchildren of
3246 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003247 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003248 */
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003249static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3250 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003251{
Max Reitz3cf746b2019-07-03 19:28:07 +02003252 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003253
Max Reitz3cf746b2019-07-03 19:28:07 +02003254 if (child->bs->inherits_from == root) {
3255 /*
3256 * Remove inherits_from only when the last reference between root and
3257 * child->bs goes away.
3258 */
3259 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003260 if (c != child && c->bs == child->bs) {
3261 break;
3262 }
3263 }
3264 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003265 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003266 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003267 }
3268
Max Reitz3cf746b2019-07-03 19:28:07 +02003269 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003270 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003271 }
3272}
3273
Max Reitz7b99a262019-06-12 16:07:11 +02003274/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003275void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3276{
3277 if (child == NULL) {
3278 return;
3279 }
3280
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003281 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003282 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003283}
3284
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003285
3286static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3287{
3288 BdrvChild *c;
3289 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003290 if (c->klass->change_media) {
3291 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003292 }
3293 }
3294}
3295
Alberto Garcia0065c452018-10-31 18:16:37 +02003296/* Return true if you can reach parent going through child->inherits_from
3297 * recursively. If parent or child are NULL, return false */
3298static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3299 BlockDriverState *parent)
3300{
3301 while (child && child != parent) {
3302 child = child->inherits_from;
3303 }
3304
3305 return child != NULL;
3306}
3307
Kevin Wolf5db15a52015-09-14 15:33:33 +02003308/*
Max Reitz25191e52020-05-13 13:05:33 +02003309 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3310 * mostly used for COW backing children (role = COW), but also for
3311 * filtered children (role = FILTERED | PRIMARY).
3312 */
3313static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3314{
3315 if (bs->drv && bs->drv->is_filter) {
3316 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3317 } else {
3318 return BDRV_CHILD_COW;
3319 }
3320}
3321
3322/*
Max Reitz9ee413c2019-06-12 18:42:34 +02003323 * Sets the bs->backing link of a BDS. A new reference is created; callers
Kevin Wolf5db15a52015-09-14 15:33:33 +02003324 * which don't need their own reference any more must call bdrv_unref().
3325 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003326int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3327 Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003328{
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003329 int ret = 0;
Alberto Garcia0065c452018-10-31 18:16:37 +02003330 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
3331 bdrv_inherits_from_recursive(backing_hd, bs);
3332
Max Reitz9ee413c2019-06-12 18:42:34 +02003333 if (bdrv_is_backing_chain_frozen(bs, child_bs(bs->backing), errp)) {
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003334 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003335 }
3336
Kevin Wolf5db15a52015-09-14 15:33:33 +02003337 if (backing_hd) {
3338 bdrv_ref(backing_hd);
3339 }
Fam Zheng8d24cce2014-05-23 21:29:45 +08003340
Kevin Wolf760e0062015-06-17 14:55:21 +02003341 if (bs->backing) {
Max Reitz7b99a262019-06-12 16:07:11 +02003342 /* Cannot be frozen, we checked that above */
Kevin Wolf5db15a52015-09-14 15:33:33 +02003343 bdrv_unref_child(bs, bs->backing);
Vladimir Sementsov-Ogievskiy6e579632020-03-16 09:06:30 +03003344 bs->backing = NULL;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003345 }
3346
Fam Zheng8d24cce2014-05-23 21:29:45 +08003347 if (!backing_hd) {
3348 goto out;
3349 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003350
Max Reitz25191e52020-05-13 13:05:33 +02003351 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_of_bds,
3352 bdrv_backing_role(bs), errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003353 if (!bs->backing) {
3354 ret = -EPERM;
3355 goto out;
3356 }
3357
Alberto Garcia0065c452018-10-31 18:16:37 +02003358 /* If backing_hd was already part of bs's backing chain, and
3359 * inherits_from pointed recursively to bs then let's update it to
3360 * point directly to bs (else it will become NULL). */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003361 if (update_inherits_from) {
Alberto Garcia0065c452018-10-31 18:16:37 +02003362 backing_hd->inherits_from = bs;
3363 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003364
Fam Zheng8d24cce2014-05-23 21:29:45 +08003365out:
Kevin Wolf3baca892014-07-16 17:48:16 +02003366 bdrv_refresh_limits(bs, NULL);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003367
3368 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003369}
3370
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003371/*
3372 * Opens the backing file for a BlockDriverState if not yet open
3373 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003374 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3375 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3376 * itself, all options starting with "${bdref_key}." are considered part of the
3377 * BlockdevRef.
3378 *
3379 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003380 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003381int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3382 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003383{
Max Reitz6b6833c2019-02-01 20:29:15 +01003384 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003385 char *bdref_key_dot;
3386 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003387 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003388 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003389 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003390 QDict *options;
3391 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003392 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003393
Kevin Wolf760e0062015-06-17 14:55:21 +02003394 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003395 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003396 }
3397
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003398 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003399 if (parent_options == NULL) {
3400 tmp_parent_options = qdict_new();
3401 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003402 }
3403
Paolo Bonzini9156df12012-10-18 16:49:17 +02003404 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003405
3406 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3407 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3408 g_free(bdref_key_dot);
3409
Markus Armbruster129c7d12017-03-30 19:43:12 +02003410 /*
3411 * Caution: while qdict_get_try_str() is fine, getting non-string
3412 * types would require more care. When @parent_options come from
3413 * -blockdev or blockdev_add, its members are typed according to
3414 * the QAPI schema, but when they come from -drive, they're all
3415 * QString.
3416 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003417 reference = qdict_get_try_str(parent_options, bdref_key);
3418 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003419 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003420 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003421 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003422 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003423 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003424 if (qdict_size(options) == 0) {
3425 /* If the user specifies options that do not modify the
3426 * backing file's behavior, we might still consider it the
3427 * implicit backing file. But it's easier this way, and
3428 * just specifying some of the backing BDS's options is
3429 * only possible with -drive anyway (otherwise the QAPI
3430 * schema forces the user to specify everything). */
3431 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3432 }
3433
Max Reitz6b6833c2019-02-01 20:29:15 +01003434 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003435 if (local_err) {
3436 ret = -EINVAL;
3437 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003438 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003439 goto free_exit;
3440 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003441 }
3442
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003443 if (!bs->drv || !bs->drv->supports_backing) {
3444 ret = -EINVAL;
3445 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003446 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003447 goto free_exit;
3448 }
3449
Peter Krempa6bff5972017-10-12 16:14:10 +02003450 if (!reference &&
3451 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003452 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003453 }
3454
Max Reitz6b6833c2019-02-01 20:29:15 +01003455 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003456 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003457 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003458 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003459 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003460 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003461 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003462 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003463
Max Reitz998c2012019-02-01 20:29:08 +01003464 if (implicit_backing) {
3465 bdrv_refresh_filename(backing_hd);
3466 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3467 backing_hd->filename);
3468 }
3469
Kevin Wolf5db15a52015-09-14 15:33:33 +02003470 /* Hook up the backing file link; drop our reference, bs owns the
3471 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003472 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003473 bdrv_unref(backing_hd);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003474 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003475 goto free_exit;
3476 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003477
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003478 qdict_del(parent_options, bdref_key);
3479
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003480free_exit:
3481 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003482 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003483 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003484}
3485
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003486static BlockDriverState *
3487bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003488 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003489 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003490{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003491 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003492 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003493 char *bdref_key_dot;
3494 const char *reference;
3495
Max Reitzbd86fb92020-05-13 13:05:13 +02003496 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003497
Max Reitzda557aa2013-12-20 19:28:11 +01003498 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3499 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3500 g_free(bdref_key_dot);
3501
Markus Armbruster129c7d12017-03-30 19:43:12 +02003502 /*
3503 * Caution: while qdict_get_try_str() is fine, getting non-string
3504 * types would require more care. When @options come from
3505 * -blockdev or blockdev_add, its members are typed according to
3506 * the QAPI schema, but when they come from -drive, they're all
3507 * QString.
3508 */
Max Reitzda557aa2013-12-20 19:28:11 +01003509 reference = qdict_get_try_str(options, bdref_key);
3510 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003511 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003512 error_setg(errp, "A block device must be specified for \"%s\"",
3513 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003514 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003515 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003516 goto done;
3517 }
3518
Max Reitz5b363932016-05-17 16:41:31 +02003519 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003520 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003521 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003522 goto done;
3523 }
3524
Max Reitzda557aa2013-12-20 19:28:11 +01003525done:
3526 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003527 return bs;
3528}
3529
3530/*
3531 * Opens a disk image whose options are given as BlockdevRef in another block
3532 * device's options.
3533 *
3534 * If allow_none is true, no image will be opened if filename is false and no
3535 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3536 *
3537 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3538 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3539 * itself, all options starting with "${bdref_key}." are considered part of the
3540 * BlockdevRef.
3541 *
3542 * The BlockdevRef will be removed from the options QDict.
3543 */
3544BdrvChild *bdrv_open_child(const char *filename,
3545 QDict *options, const char *bdref_key,
3546 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003547 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003548 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003549 bool allow_none, Error **errp)
3550{
3551 BlockDriverState *bs;
3552
Max Reitzbd86fb92020-05-13 13:05:13 +02003553 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003554 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003555 if (bs == NULL) {
3556 return NULL;
3557 }
3558
Max Reitz258b7762020-05-13 13:05:15 +02003559 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3560 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003561}
3562
Max Reitzbd86fb92020-05-13 13:05:13 +02003563/*
3564 * TODO Future callers may need to specify parent/child_class in order for
3565 * option inheritance to work. Existing callers use it for the root node.
3566 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003567BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3568{
3569 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003570 QObject *obj = NULL;
3571 QDict *qdict = NULL;
3572 const char *reference = NULL;
3573 Visitor *v = NULL;
3574
3575 if (ref->type == QTYPE_QSTRING) {
3576 reference = ref->u.reference;
3577 } else {
3578 BlockdevOptions *options = &ref->u.definition;
3579 assert(ref->type == QTYPE_QDICT);
3580
3581 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003582 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003583 visit_complete(v, &obj);
3584
Max Reitz7dc847e2018-02-24 16:40:29 +01003585 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003586 qdict_flatten(qdict);
3587
3588 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3589 * compatibility with other callers) rather than what we want as the
3590 * real defaults. Apply the defaults here instead. */
3591 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3592 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3593 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003594 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3595
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003596 }
3597
Max Reitz272c02e2020-05-13 13:05:17 +02003598 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003599 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003600 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003601 visit_free(v);
3602 return bs;
3603}
3604
Max Reitz66836182016-05-17 16:41:27 +02003605static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3606 int flags,
3607 QDict *snapshot_options,
3608 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003609{
3610 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003611 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003612 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003613 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003614 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003615 int ret;
3616
3617 /* if snapshot, we create a temporary backing file and open it
3618 instead of opening 'filename' directly */
3619
3620 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003621 total_size = bdrv_getlength(bs);
3622 if (total_size < 0) {
3623 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003624 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003625 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003626
3627 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003628 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003629 if (ret < 0) {
3630 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003631 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003632 }
3633
Max Reitzef810432014-12-02 18:32:42 +01003634 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003635 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003636 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003637 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003638 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003639 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003640 error_prepend(errp, "Could not create temporary overlay '%s': ",
3641 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003642 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003643 }
3644
Kevin Wolf73176be2016-03-07 13:02:15 +01003645 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003646 qdict_put_str(snapshot_options, "file.driver", "file");
3647 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3648 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003649
Max Reitz5b363932016-05-17 16:41:31 +02003650 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003651 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003652 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003653 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003654 }
3655
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003656 ret = bdrv_append(bs_snapshot, bs, errp);
3657 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003658 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003659 goto out;
3660 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003661
3662out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003663 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003664 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05003665 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003666}
3667
Max Reitzda557aa2013-12-20 19:28:11 +01003668/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003669 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003670 *
3671 * options is a QDict of options to pass to the block drivers, or NULL for an
3672 * empty set of options. The reference to the QDict belongs to the block layer
3673 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003674 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003675 *
3676 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3677 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003678 *
3679 * The reference parameter may be used to specify an existing block device which
3680 * should be opened. If specified, neither options nor a filename may be given,
3681 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003682 */
Max Reitz5b363932016-05-17 16:41:31 +02003683static BlockDriverState *bdrv_open_inherit(const char *filename,
3684 const char *reference,
3685 QDict *options, int flags,
3686 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003687 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003688 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003689 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003690{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003691 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003692 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003693 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003694 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003695 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003696 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003697 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003698 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003699 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003700 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003701
Max Reitzbd86fb92020-05-13 13:05:13 +02003702 assert(!child_class || !flags);
3703 assert(!child_class == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01003704
Max Reitzddf56362014-02-18 18:33:06 +01003705 if (reference) {
3706 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003707 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003708
Max Reitzddf56362014-02-18 18:33:06 +01003709 if (filename || options_non_empty) {
3710 error_setg(errp, "Cannot reference an existing block device with "
3711 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003712 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003713 }
3714
3715 bs = bdrv_lookup_bs(reference, reference, errp);
3716 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003717 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003718 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003719
Max Reitzddf56362014-02-18 18:33:06 +01003720 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003721 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003722 }
3723
Max Reitz5b363932016-05-17 16:41:31 +02003724 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003725
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003726 /* NULL means an empty set of options */
3727 if (options == NULL) {
3728 options = qdict_new();
3729 }
3730
Kevin Wolf145f5982015-05-08 16:15:03 +02003731 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003732 parse_json_protocol(options, &filename, &local_err);
3733 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003734 goto fail;
3735 }
3736
Kevin Wolf145f5982015-05-08 16:15:03 +02003737 bs->explicit_options = qdict_clone_shallow(options);
3738
Max Reitzbd86fb92020-05-13 13:05:13 +02003739 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003740 bool parent_is_format;
3741
3742 if (parent->drv) {
3743 parent_is_format = parent->drv->is_format;
3744 } else {
3745 /*
3746 * parent->drv is not set yet because this node is opened for
3747 * (potential) format probing. That means that @parent is going
3748 * to be a format node.
3749 */
3750 parent_is_format = true;
3751 }
3752
Kevin Wolfbddcec32015-04-09 18:47:50 +02003753 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003754 child_class->inherit_options(child_role, parent_is_format,
3755 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003756 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003757 }
3758
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003759 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003760 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003761 goto fail;
3762 }
3763
Markus Armbruster129c7d12017-03-30 19:43:12 +02003764 /*
3765 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3766 * Caution: getting a boolean member of @options requires care.
3767 * When @options come from -blockdev or blockdev_add, members are
3768 * typed according to the QAPI schema, but when they come from
3769 * -drive, they're all QString.
3770 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003771 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3772 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3773 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3774 } else {
3775 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003776 }
3777
3778 if (flags & BDRV_O_SNAPSHOT) {
3779 snapshot_options = qdict_new();
3780 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3781 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003782 /* Let bdrv_backing_options() override "read-only" */
3783 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003784 bdrv_inherited_options(BDRV_CHILD_COW, true,
3785 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003786 }
3787
Kevin Wolf62392eb2015-04-24 16:38:02 +02003788 bs->open_flags = flags;
3789 bs->options = options;
3790 options = qdict_clone_shallow(options);
3791
Kevin Wolf76c591b2014-06-04 14:19:44 +02003792 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003793 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003794 drvname = qdict_get_try_str(options, "driver");
3795 if (drvname) {
3796 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003797 if (!drv) {
3798 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003799 goto fail;
3800 }
3801 }
3802
3803 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003804
Markus Armbruster129c7d12017-03-30 19:43:12 +02003805 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003806 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003807 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3808 (backing && *backing == '\0'))
3809 {
Max Reitz4f7be282018-02-24 16:40:33 +01003810 if (backing) {
3811 warn_report("Use of \"backing\": \"\" is deprecated; "
3812 "use \"backing\": null instead");
3813 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003814 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003815 qdict_del(bs->explicit_options, "backing");
3816 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003817 qdict_del(options, "backing");
3818 }
3819
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003820 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003821 * probing, the block drivers will do their own bdrv_open_child() for the
3822 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003823 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003824 BlockDriverState *file_bs;
3825
3826 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003827 &child_of_bds, BDRV_CHILD_IMAGE,
3828 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003829 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003830 goto fail;
3831 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003832 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003833 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3834 * looking at the header to guess the image format. This works even
3835 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003836 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003837 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003838 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003839 if (local_err) {
3840 goto fail;
3841 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003842
Eric Blake46f5ac22017-04-27 16:58:17 -05003843 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003844 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003845 }
3846
Kevin Wolf76c591b2014-06-04 14:19:44 +02003847 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003848 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003849 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003850 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003851 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003852 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003853 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003854 /*
3855 * This option update would logically belong in bdrv_fill_options(),
3856 * but we first need to open bs->file for the probing to work, while
3857 * opening bs->file already requires the (mostly) final set of options
3858 * so that cache mode etc. can be inherited.
3859 *
3860 * Adding the driver later is somewhat ugly, but it's not an option
3861 * that would ever be inherited, so it's correct. We just need to make
3862 * sure to update both bs->options (which has the full effective
3863 * options for bs) and options (which has file.* already removed).
3864 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003865 qdict_put_str(bs->options, "driver", drv->format_name);
3866 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003867 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003868 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003869 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003870 }
3871
Max Reitz53a29512015-03-19 14:53:16 -04003872 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3873 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3874 /* file must be NULL if a protocol BDS is about to be created
3875 * (the inverse results in an error message from bdrv_open_common()) */
3876 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3877
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003878 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003879 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003880 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003881 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01003882 }
3883
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003884 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003885 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01003886 file = NULL;
3887 }
3888
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003889 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02003890 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003891 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003892 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003893 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003894 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003895 }
3896
Alberto Garcia50196d72018-09-06 12:37:03 +03003897 /* Remove all children options and references
3898 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03003899 QLIST_FOREACH(child, &bs->children, next) {
3900 char *child_key_dot;
3901 child_key_dot = g_strdup_printf("%s.", child->name);
3902 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3903 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03003904 qdict_del(bs->explicit_options, child->name);
3905 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03003906 g_free(child_key_dot);
3907 }
3908
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003909 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01003910 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003911 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01003912 if (flags & BDRV_O_PROTOCOL) {
3913 error_setg(errp, "Block protocol '%s' doesn't support the option "
3914 "'%s'", drv->format_name, entry->key);
3915 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01003916 error_setg(errp,
3917 "Block format '%s' does not support the option '%s'",
3918 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01003919 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003920
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003921 goto close_and_fail;
3922 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003923
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01003924 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003925
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003926 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03003927 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003928
3929 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3930 * temporary snapshot afterwards. */
3931 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02003932 BlockDriverState *snapshot_bs;
3933 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3934 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01003935 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003936 if (local_err) {
3937 goto close_and_fail;
3938 }
Max Reitz5b363932016-05-17 16:41:31 +02003939 /* We are not going to return bs but the overlay on top of it
3940 * (snapshot_bs); thus, we have to drop the strong reference to bs
3941 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3942 * though, because the overlay still has a reference to it. */
3943 bdrv_unref(bs);
3944 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02003945 }
3946
Max Reitz5b363932016-05-17 16:41:31 +02003947 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003948
Kevin Wolf8bfea152014-04-11 19:16:36 +02003949fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003950 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003951 qobject_unref(snapshot_options);
3952 qobject_unref(bs->explicit_options);
3953 qobject_unref(bs->options);
3954 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003955 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03003956 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003957 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003958 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003959 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003960
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003961close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02003962 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003963 qobject_unref(snapshot_options);
3964 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003965 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003966 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003967}
3968
Max Reitz5b363932016-05-17 16:41:31 +02003969BlockDriverState *bdrv_open(const char *filename, const char *reference,
3970 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02003971{
Max Reitz5b363932016-05-17 16:41:31 +02003972 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02003973 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003974}
3975
Alberto Garciafaf116b2019-03-12 18:48:49 +02003976/* Return true if the NULL-terminated @list contains @str */
3977static bool is_str_in_list(const char *str, const char *const *list)
3978{
3979 if (str && list) {
3980 int i;
3981 for (i = 0; list[i] != NULL; i++) {
3982 if (!strcmp(str, list[i])) {
3983 return true;
3984 }
3985 }
3986 }
3987 return false;
3988}
3989
3990/*
3991 * Check that every option set in @bs->options is also set in
3992 * @new_opts.
3993 *
3994 * Options listed in the common_options list and in
3995 * @bs->drv->mutable_opts are skipped.
3996 *
3997 * Return 0 on success, otherwise return -EINVAL and set @errp.
3998 */
3999static int bdrv_reset_options_allowed(BlockDriverState *bs,
4000 const QDict *new_opts, Error **errp)
4001{
4002 const QDictEntry *e;
4003 /* These options are common to all block drivers and are handled
4004 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4005 const char *const common_options[] = {
4006 "node-name", "discard", "cache.direct", "cache.no-flush",
4007 "read-only", "auto-read-only", "detect-zeroes", NULL
4008 };
4009
4010 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4011 if (!qdict_haskey(new_opts, e->key) &&
4012 !is_str_in_list(e->key, common_options) &&
4013 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4014 error_setg(errp, "Option '%s' cannot be reset "
4015 "to its default value", e->key);
4016 return -EINVAL;
4017 }
4018 }
4019
4020 return 0;
4021}
4022
Jeff Codye971aa12012-09-20 15:13:19 -04004023/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004024 * Returns true if @child can be reached recursively from @bs
4025 */
4026static bool bdrv_recurse_has_child(BlockDriverState *bs,
4027 BlockDriverState *child)
4028{
4029 BdrvChild *c;
4030
4031 if (bs == child) {
4032 return true;
4033 }
4034
4035 QLIST_FOREACH(c, &bs->children, next) {
4036 if (bdrv_recurse_has_child(c->bs, child)) {
4037 return true;
4038 }
4039 }
4040
4041 return false;
4042}
4043
4044/*
Jeff Codye971aa12012-09-20 15:13:19 -04004045 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4046 * reopen of multiple devices.
4047 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004048 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04004049 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4050 * be created and initialized. This newly created BlockReopenQueue should be
4051 * passed back in for subsequent calls that are intended to be of the same
4052 * atomic 'set'.
4053 *
4054 * bs is the BlockDriverState to add to the reopen queue.
4055 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004056 * options contains the changed options for the associated bs
4057 * (the BlockReopenQueue takes ownership)
4058 *
Jeff Codye971aa12012-09-20 15:13:19 -04004059 * flags contains the open flags for the associated bs
4060 *
4061 * returns a pointer to bs_queue, which is either the newly allocated
4062 * bs_queue, or the existing bs_queue being used.
4063 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004064 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04004065 */
Kevin Wolf28518102015-05-08 17:07:31 +02004066static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4067 BlockDriverState *bs,
4068 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004069 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02004070 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004071 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02004072 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004073 int parent_flags,
4074 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04004075{
4076 assert(bs != NULL);
4077
4078 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02004079 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004080 QDict *old_options, *explicit_options, *options_copy;
4081 int flags;
4082 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004083
Kevin Wolf1a63a902017-12-06 20:24:44 +01004084 /* Make sure that the caller remembered to use a drained section. This is
4085 * important to avoid graph changes between the recursive queuing here and
4086 * bdrv_reopen_multiple(). */
4087 assert(bs->quiesce_counter > 0);
4088
Jeff Codye971aa12012-09-20 15:13:19 -04004089 if (bs_queue == NULL) {
4090 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004091 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04004092 }
4093
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004094 if (!options) {
4095 options = qdict_new();
4096 }
4097
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004098 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004099 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004100 if (bs == bs_entry->state.bs) {
4101 break;
4102 }
4103 }
4104
Kevin Wolf28518102015-05-08 17:07:31 +02004105 /*
4106 * Precedence of options:
4107 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004108 * 2. Retained from explicitly set options of bs
4109 * 3. Inherited from parent node
4110 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004111 */
4112
Kevin Wolf145f5982015-05-08 16:15:03 +02004113 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004114 if (bs_entry || keep_old_opts) {
4115 old_options = qdict_clone_shallow(bs_entry ?
4116 bs_entry->state.explicit_options :
4117 bs->explicit_options);
4118 bdrv_join_options(bs, options, old_options);
4119 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004120 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004121
4122 explicit_options = qdict_clone_shallow(options);
4123
Kevin Wolf28518102015-05-08 17:07:31 +02004124 /* Inherit from parent node */
4125 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004126 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004127 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004128 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004129 } else {
4130 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004131 }
4132
Alberto Garcia077e8e22019-03-12 18:48:44 +02004133 if (keep_old_opts) {
4134 /* Old values are used for options that aren't set yet */
4135 old_options = qdict_clone_shallow(bs->options);
4136 bdrv_join_options(bs, options, old_options);
4137 qobject_unref(old_options);
4138 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004139
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004140 /* We have the final set of options so let's update the flags */
4141 options_copy = qdict_clone_shallow(options);
4142 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4143 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4144 update_flags_from_options(&flags, opts);
4145 qemu_opts_del(opts);
4146 qobject_unref(options_copy);
4147
Kevin Wolffd452022017-08-03 17:02:59 +02004148 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004149 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004150 if (flags & BDRV_O_RDWR) {
4151 flags |= BDRV_O_ALLOW_RDWR;
4152 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004153
Kevin Wolf1857c972017-09-14 14:53:46 +02004154 if (!bs_entry) {
4155 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004156 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004157 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004158 qobject_unref(bs_entry->state.options);
4159 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004160 }
4161
4162 bs_entry->state.bs = bs;
4163 bs_entry->state.options = options;
4164 bs_entry->state.explicit_options = explicit_options;
4165 bs_entry->state.flags = flags;
4166
Kevin Wolf30450252017-07-03 17:07:35 +02004167 /* This needs to be overwritten in bdrv_reopen_prepare() */
4168 bs_entry->state.perm = UINT64_MAX;
4169 bs_entry->state.shared_perm = 0;
4170
Alberto Garcia85466322019-03-12 18:48:45 +02004171 /*
4172 * If keep_old_opts is false then it means that unspecified
4173 * options must be reset to their original value. We don't allow
4174 * resetting 'backing' but we need to know if the option is
4175 * missing in order to decide if we have to return an error.
4176 */
4177 if (!keep_old_opts) {
4178 bs_entry->state.backing_missing =
4179 !qdict_haskey(options, "backing") &&
4180 !qdict_haskey(options, "backing.driver");
4181 }
4182
Kevin Wolf67251a32015-04-09 18:54:04 +02004183 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004184 QDict *new_child_options = NULL;
4185 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004186
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004187 /* reopen can only change the options of block devices that were
4188 * implicitly created and inherited options. For other (referenced)
4189 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004190 if (child->bs->inherits_from != bs) {
4191 continue;
4192 }
4193
Alberto Garcia85466322019-03-12 18:48:45 +02004194 /* Check if the options contain a child reference */
4195 if (qdict_haskey(options, child->name)) {
4196 const char *childref = qdict_get_try_str(options, child->name);
4197 /*
4198 * The current child must not be reopened if the child
4199 * reference is null or points to a different node.
4200 */
4201 if (g_strcmp0(childref, child->bs->node_name)) {
4202 continue;
4203 }
4204 /*
4205 * If the child reference points to the current child then
4206 * reopen it with its existing set of options (note that
4207 * it can still inherit new options from the parent).
4208 */
4209 child_keep_old = true;
4210 } else {
4211 /* Extract child options ("child-name.*") */
4212 char *child_key_dot = g_strdup_printf("%s.", child->name);
4213 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4214 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4215 g_free(child_key_dot);
4216 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004217
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004218 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004219 child->klass, child->role, bs->drv->is_format,
4220 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004221 }
4222
Jeff Codye971aa12012-09-20 15:13:19 -04004223 return bs_queue;
4224}
4225
Kevin Wolf28518102015-05-08 17:07:31 +02004226BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4227 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004228 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004229{
Max Reitz3cdc69d2020-05-13 13:05:18 +02004230 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4231 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004232}
4233
Jeff Codye971aa12012-09-20 15:13:19 -04004234/*
4235 * Reopen multiple BlockDriverStates atomically & transactionally.
4236 *
4237 * The queue passed in (bs_queue) must have been built up previous
4238 * via bdrv_reopen_queue().
4239 *
4240 * Reopens all BDS specified in the queue, with the appropriate
4241 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004242 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004243 * data cleaned up.
4244 *
4245 * If all devices prepare successfully, then the changes are committed
4246 * to all devices.
4247 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004248 * All affected nodes must be drained between bdrv_reopen_queue() and
4249 * bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04004250 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004251int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004252{
4253 int ret = -1;
4254 BlockReopenQueueEntry *bs_entry, *next;
Jeff Codye971aa12012-09-20 15:13:19 -04004255
4256 assert(bs_queue != NULL);
4257
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004258 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004259 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolfa4615ab2019-03-05 16:51:13 +01004260 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, errp)) {
Jeff Codye971aa12012-09-20 15:13:19 -04004261 goto cleanup;
4262 }
4263 bs_entry->prepared = true;
4264 }
4265
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004266 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004267 BDRVReopenState *state = &bs_entry->state;
4268 ret = bdrv_check_perm(state->bs, bs_queue, state->perm,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03004269 state->shared_perm, errp);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004270 if (ret < 0) {
4271 goto cleanup_perm;
4272 }
Alberto Garciacb828c32019-03-12 18:48:47 +02004273 /* Check if new_backing_bs would accept the new permissions */
4274 if (state->replace_backing_bs && state->new_backing_bs) {
4275 uint64_t nperm, nshared;
4276 bdrv_child_perm(state->bs, state->new_backing_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02004277 NULL, bdrv_backing_role(state->bs),
Max Reitz25191e52020-05-13 13:05:33 +02004278 bs_queue, state->perm, state->shared_perm,
Alberto Garciacb828c32019-03-12 18:48:47 +02004279 &nperm, &nshared);
4280 ret = bdrv_check_update_perm(state->new_backing_bs, NULL,
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03004281 nperm, nshared, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004282 if (ret < 0) {
4283 goto cleanup_perm;
4284 }
4285 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004286 bs_entry->perms_checked = true;
4287 }
4288
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004289 /*
4290 * If we reach this point, we have success and just need to apply the
4291 * changes.
4292 *
4293 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4294 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4295 * children are usually goes after parents in reopen-queue, so go from last
4296 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004297 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004298 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Jeff Codye971aa12012-09-20 15:13:19 -04004299 bdrv_reopen_commit(&bs_entry->state);
4300 }
4301
4302 ret = 0;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004303cleanup_perm:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004304 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004305 BDRVReopenState *state = &bs_entry->state;
Jeff Codye971aa12012-09-20 15:13:19 -04004306
Kevin Wolf69b736e2019-03-05 17:18:22 +01004307 if (!bs_entry->perms_checked) {
4308 continue;
4309 }
4310
4311 if (ret == 0) {
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03004312 uint64_t perm, shared;
4313
4314 bdrv_get_cumulative_perm(state->bs, &perm, &shared);
4315 assert(perm == state->perm);
4316 assert(shared == state->shared_perm);
4317
4318 bdrv_set_perm(state->bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004319 } else {
4320 bdrv_abort_perm_update(state->bs);
Alberto Garciacb828c32019-03-12 18:48:47 +02004321 if (state->replace_backing_bs && state->new_backing_bs) {
4322 bdrv_abort_perm_update(state->new_backing_bs);
4323 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004324 }
4325 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004326
4327 if (ret == 0) {
4328 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4329 BlockDriverState *bs = bs_entry->state.bs;
4330
4331 if (bs->drv->bdrv_reopen_commit_post)
4332 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4333 }
4334 }
Jeff Codye971aa12012-09-20 15:13:19 -04004335cleanup:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004336 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Alberto Garcia1bab38e2018-06-29 14:37:01 +03004337 if (ret) {
4338 if (bs_entry->prepared) {
4339 bdrv_reopen_abort(&bs_entry->state);
4340 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004341 qobject_unref(bs_entry->state.explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004342 qobject_unref(bs_entry->state.options);
Jeff Codye971aa12012-09-20 15:13:19 -04004343 }
Alberto Garciacb828c32019-03-12 18:48:47 +02004344 if (bs_entry->state.new_backing_bs) {
4345 bdrv_unref(bs_entry->state.new_backing_bs);
4346 }
Jeff Codye971aa12012-09-20 15:13:19 -04004347 g_free(bs_entry);
4348 }
4349 g_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004350
Jeff Codye971aa12012-09-20 15:13:19 -04004351 return ret;
4352}
4353
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004354int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4355 Error **errp)
4356{
4357 int ret;
4358 BlockReopenQueue *queue;
4359 QDict *opts = qdict_new();
4360
4361 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4362
4363 bdrv_subtree_drained_begin(bs);
Alberto Garcia077e8e22019-03-12 18:48:44 +02004364 queue = bdrv_reopen_queue(NULL, bs, opts, true);
Alberto Garcia5019aec2019-03-12 18:48:50 +02004365 ret = bdrv_reopen_multiple(queue, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004366 bdrv_subtree_drained_end(bs);
4367
4368 return ret;
4369}
4370
Kevin Wolf30450252017-07-03 17:07:35 +02004371static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
4372 BdrvChild *c)
4373{
4374 BlockReopenQueueEntry *entry;
4375
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004376 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf30450252017-07-03 17:07:35 +02004377 BlockDriverState *bs = entry->state.bs;
4378 BdrvChild *child;
4379
4380 QLIST_FOREACH(child, &bs->children, next) {
4381 if (child == c) {
4382 return entry;
4383 }
4384 }
4385 }
4386
4387 return NULL;
4388}
4389
4390static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
4391 uint64_t *perm, uint64_t *shared)
4392{
4393 BdrvChild *c;
4394 BlockReopenQueueEntry *parent;
4395 uint64_t cumulative_perms = 0;
4396 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
4397
4398 QLIST_FOREACH(c, &bs->parents, next_parent) {
4399 parent = find_parent_in_reopen_queue(q, c);
4400 if (!parent) {
4401 cumulative_perms |= c->perm;
4402 cumulative_shared_perms &= c->shared_perm;
4403 } else {
4404 uint64_t nperm, nshared;
4405
Max Reitze5d8a402020-05-13 13:05:44 +02004406 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
Kevin Wolf30450252017-07-03 17:07:35 +02004407 parent->state.perm, parent->state.shared_perm,
4408 &nperm, &nshared);
4409
4410 cumulative_perms |= nperm;
4411 cumulative_shared_perms &= nshared;
4412 }
4413 }
4414 *perm = cumulative_perms;
4415 *shared = cumulative_shared_perms;
4416}
Jeff Codye971aa12012-09-20 15:13:19 -04004417
Kevin Wolf1de6b452020-03-06 15:14:13 +01004418static bool bdrv_reopen_can_attach(BlockDriverState *parent,
4419 BdrvChild *child,
4420 BlockDriverState *new_child,
4421 Error **errp)
4422{
4423 AioContext *parent_ctx = bdrv_get_aio_context(parent);
4424 AioContext *child_ctx = bdrv_get_aio_context(new_child);
4425 GSList *ignore;
4426 bool ret;
4427
4428 ignore = g_slist_prepend(NULL, child);
4429 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
4430 g_slist_free(ignore);
4431 if (ret) {
4432 return ret;
4433 }
4434
4435 ignore = g_slist_prepend(NULL, child);
4436 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
4437 g_slist_free(ignore);
4438 return ret;
4439}
4440
Jeff Codye971aa12012-09-20 15:13:19 -04004441/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004442 * Take a BDRVReopenState and check if the value of 'backing' in the
4443 * reopen_state->options QDict is valid or not.
4444 *
4445 * If 'backing' is missing from the QDict then return 0.
4446 *
4447 * If 'backing' contains the node name of the backing file of
4448 * reopen_state->bs then return 0.
4449 *
4450 * If 'backing' contains a different node name (or is null) then check
4451 * whether the current backing file can be replaced with the new one.
4452 * If that's the case then reopen_state->replace_backing_bs is set to
4453 * true and reopen_state->new_backing_bs contains a pointer to the new
4454 * backing BlockDriverState (or NULL).
4455 *
4456 * Return 0 on success, otherwise return < 0 and set @errp.
4457 */
4458static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
4459 Error **errp)
4460{
4461 BlockDriverState *bs = reopen_state->bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004462 BlockDriverState *overlay_bs, *below_bs, *new_backing_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004463 QObject *value;
4464 const char *str;
4465
4466 value = qdict_get(reopen_state->options, "backing");
4467 if (value == NULL) {
4468 return 0;
4469 }
4470
4471 switch (qobject_type(value)) {
4472 case QTYPE_QNULL:
4473 new_backing_bs = NULL;
4474 break;
4475 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004476 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciacb828c32019-03-12 18:48:47 +02004477 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
4478 if (new_backing_bs == NULL) {
4479 return -EINVAL;
4480 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
4481 error_setg(errp, "Making '%s' a backing file of '%s' "
4482 "would create a cycle", str, bs->node_name);
4483 return -EINVAL;
4484 }
4485 break;
4486 default:
4487 /* 'backing' does not allow any other data type */
4488 g_assert_not_reached();
4489 }
4490
4491 /*
Kevin Wolf1de6b452020-03-06 15:14:13 +01004492 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4493 * bdrv_reopen_commit() won't fail.
Alberto Garciacb828c32019-03-12 18:48:47 +02004494 */
4495 if (new_backing_bs) {
Kevin Wolf1de6b452020-03-06 15:14:13 +01004496 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004497 return -EINVAL;
4498 }
4499 }
4500
4501 /*
Max Reitz1d42f482019-06-12 17:24:39 +02004502 * Ensure that @bs can really handle backing files, because we are
4503 * about to give it one (or swap the existing one)
4504 */
4505 if (bs->drv->is_filter) {
4506 /* Filters always have a file or a backing child */
4507 if (!bs->backing) {
4508 error_setg(errp, "'%s' is a %s filter node that does not support a "
4509 "backing child", bs->node_name, bs->drv->format_name);
4510 return -EINVAL;
4511 }
4512 } else if (!bs->drv->supports_backing) {
4513 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
4514 "files", bs->drv->format_name, bs->node_name);
4515 return -EINVAL;
4516 }
4517
4518 /*
Alberto Garciacb828c32019-03-12 18:48:47 +02004519 * Find the "actual" backing file by skipping all links that point
4520 * to an implicit node, if any (e.g. a commit filter node).
Max Reitz1d42f482019-06-12 17:24:39 +02004521 * We cannot use any of the bdrv_skip_*() functions here because
4522 * those return the first explicit node, while we are looking for
4523 * its overlay here.
Alberto Garciacb828c32019-03-12 18:48:47 +02004524 */
4525 overlay_bs = bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004526 for (below_bs = bdrv_filter_or_cow_bs(overlay_bs);
4527 below_bs && below_bs->implicit;
4528 below_bs = bdrv_filter_or_cow_bs(overlay_bs))
4529 {
4530 overlay_bs = below_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004531 }
4532
4533 /* If we want to replace the backing file we need some extra checks */
Max Reitz1d42f482019-06-12 17:24:39 +02004534 if (new_backing_bs != bdrv_filter_or_cow_bs(overlay_bs)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004535 /* Check for implicit nodes between bs and its backing file */
4536 if (bs != overlay_bs) {
4537 error_setg(errp, "Cannot change backing link if '%s' has "
4538 "an implicit backing file", bs->node_name);
4539 return -EPERM;
4540 }
Max Reitz1d42f482019-06-12 17:24:39 +02004541 /*
4542 * Check if the backing link that we want to replace is frozen.
4543 * Note that
4544 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4545 * because we know that overlay_bs == bs, and that @bs
4546 * either is a filter that uses ->backing or a COW format BDS
4547 * with bs->drv->supports_backing == true.
4548 */
4549 if (bdrv_is_backing_chain_frozen(overlay_bs,
4550 child_bs(overlay_bs->backing), errp))
4551 {
Alberto Garciacb828c32019-03-12 18:48:47 +02004552 return -EPERM;
4553 }
4554 reopen_state->replace_backing_bs = true;
4555 if (new_backing_bs) {
4556 bdrv_ref(new_backing_bs);
4557 reopen_state->new_backing_bs = new_backing_bs;
4558 }
4559 }
4560
4561 return 0;
4562}
4563
4564/*
Jeff Codye971aa12012-09-20 15:13:19 -04004565 * Prepares a BlockDriverState for reopen. All changes are staged in the
4566 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4567 * the block driver layer .bdrv_reopen_prepare()
4568 *
4569 * bs is the BlockDriverState to reopen
4570 * flags are the new open flags
4571 * queue is the reopen queue
4572 *
4573 * Returns 0 on success, non-zero on error. On error errp will be set
4574 * as well.
4575 *
4576 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4577 * It is the responsibility of the caller to then call the abort() or
4578 * commit() for any other BDS that have been left in a prepare() state
4579 *
4580 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004581static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
4582 BlockReopenQueue *queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004583{
4584 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004585 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004586 Error *local_err = NULL;
4587 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004588 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004589 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004590 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004591 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004592 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004593
4594 assert(reopen_state != NULL);
4595 assert(reopen_state->bs->drv != NULL);
4596 drv = reopen_state->bs->drv;
4597
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004598 /* This function and each driver's bdrv_reopen_prepare() remove
4599 * entries from reopen_state->options as they are processed, so
4600 * we need to make a copy of the original QDict. */
4601 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4602
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004603 /* Process generic block layer options */
4604 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004605 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004606 ret = -EINVAL;
4607 goto error;
4608 }
4609
Alberto Garciae6d79c42018-11-12 16:00:47 +02004610 /* This was already called in bdrv_reopen_queue_child() so the flags
4611 * are up-to-date. This time we simply want to remove the options from
4612 * QemuOpts in order to indicate that they have been processed. */
4613 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004614 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004615 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004616
Alberto Garcia415bbca2018-10-03 13:23:13 +03004617 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004618 if (discard != NULL) {
4619 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4620 error_setg(errp, "Invalid discard option");
4621 ret = -EINVAL;
4622 goto error;
4623 }
4624 }
4625
Alberto Garcia543770b2018-09-06 12:37:09 +03004626 reopen_state->detect_zeroes =
4627 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4628 if (local_err) {
4629 error_propagate(errp, local_err);
4630 ret = -EINVAL;
4631 goto error;
4632 }
4633
Alberto Garcia57f9db92018-09-06 12:37:06 +03004634 /* All other options (including node-name and driver) must be unchanged.
4635 * Put them back into the QDict, so that they are checked at the end
4636 * of this function. */
4637 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004638
Jeff Cody3d8ce172017-04-07 16:55:30 -04004639 /* If we are to stay read-only, do not allow permission change
4640 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4641 * not set, or if the BDS still has copy_on_read enabled */
4642 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004643 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004644 if (local_err) {
4645 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004646 goto error;
4647 }
4648
Kevin Wolf30450252017-07-03 17:07:35 +02004649 /* Calculate required permissions after reopening */
4650 bdrv_reopen_perm(queue, reopen_state->bs,
4651 &reopen_state->perm, &reopen_state->shared_perm);
Jeff Codye971aa12012-09-20 15:13:19 -04004652
4653 ret = bdrv_flush(reopen_state->bs);
4654 if (ret) {
Eric Blake455b0fd2015-11-10 23:51:20 -07004655 error_setg_errno(errp, -ret, "Error flushing drive");
Jeff Codye971aa12012-09-20 15:13:19 -04004656 goto error;
4657 }
4658
4659 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004660 /*
4661 * If a driver-specific option is missing, it means that we
4662 * should reset it to its default value.
4663 * But not all options allow that, so we need to check it first.
4664 */
4665 ret = bdrv_reset_options_allowed(reopen_state->bs,
4666 reopen_state->options, errp);
4667 if (ret) {
4668 goto error;
4669 }
4670
Jeff Codye971aa12012-09-20 15:13:19 -04004671 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4672 if (ret) {
4673 if (local_err != NULL) {
4674 error_propagate(errp, local_err);
4675 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004676 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004677 error_setg(errp, "failed while preparing to reopen image '%s'",
4678 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004679 }
4680 goto error;
4681 }
4682 } else {
4683 /* It is currently mandatory to have a bdrv_reopen_prepare()
4684 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004685 error_setg(errp, "Block format '%s' used by node '%s' "
4686 "does not support reopening files", drv->format_name,
4687 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004688 ret = -1;
4689 goto error;
4690 }
4691
Max Reitz9ad08c42018-11-16 17:45:24 +01004692 drv_prepared = true;
4693
Alberto Garciabacd9b82019-03-12 18:48:46 +02004694 /*
4695 * We must provide the 'backing' option if the BDS has a backing
4696 * file or if the image file has a backing file name as part of
4697 * its metadata. Otherwise the 'backing' option can be omitted.
4698 */
4699 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004700 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004701 error_setg(errp, "backing is missing for '%s'",
4702 reopen_state->bs->node_name);
4703 ret = -EINVAL;
4704 goto error;
4705 }
4706
Alberto Garciacb828c32019-03-12 18:48:47 +02004707 /*
4708 * Allow changing the 'backing' option. The new value can be
4709 * either a reference to an existing node (using its node name)
4710 * or NULL to simply detach the current backing file.
4711 */
4712 ret = bdrv_reopen_parse_backing(reopen_state, errp);
4713 if (ret < 0) {
4714 goto error;
4715 }
4716 qdict_del(reopen_state->options, "backing");
4717
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004718 /* Options that are not handled are only okay if they are unchanged
4719 * compared to the old state. It is expected that some options are only
4720 * used for the initial open, but not reopen (e.g. filename) */
4721 if (qdict_size(reopen_state->options)) {
4722 const QDictEntry *entry = qdict_first(reopen_state->options);
4723
4724 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004725 QObject *new = entry->value;
4726 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004727
Alberto Garciadb905282018-09-06 12:37:05 +03004728 /* Allow child references (child_name=node_name) as long as they
4729 * point to the current child (i.e. everything stays the same). */
4730 if (qobject_type(new) == QTYPE_QSTRING) {
4731 BdrvChild *child;
4732 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4733 if (!strcmp(child->name, entry->key)) {
4734 break;
4735 }
4736 }
4737
4738 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004739 if (!strcmp(child->bs->node_name,
4740 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004741 continue; /* Found child with this name, skip option */
4742 }
4743 }
4744 }
4745
Max Reitz54fd1b02017-11-14 19:01:26 +01004746 /*
4747 * TODO: When using -drive to specify blockdev options, all values
4748 * will be strings; however, when using -blockdev, blockdev-add or
4749 * filenames using the json:{} pseudo-protocol, they will be
4750 * correctly typed.
4751 * In contrast, reopening options are (currently) always strings
4752 * (because you can only specify them through qemu-io; all other
4753 * callers do not specify any options).
4754 * Therefore, when using anything other than -drive to create a BDS,
4755 * this cannot detect non-string options as unchanged, because
4756 * qobject_is_equal() always returns false for objects of different
4757 * type. In the future, this should be remedied by correctly typing
4758 * all options. For now, this is not too big of an issue because
4759 * the user can simply omit options which cannot be changed anyway,
4760 * so they will stay unchanged.
4761 */
4762 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004763 error_setg(errp, "Cannot change the option '%s'", entry->key);
4764 ret = -EINVAL;
4765 goto error;
4766 }
4767 } while ((entry = qdict_next(reopen_state->options, entry)));
4768 }
4769
Jeff Codye971aa12012-09-20 15:13:19 -04004770 ret = 0;
4771
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004772 /* Restore the original reopen_state->options QDict */
4773 qobject_unref(reopen_state->options);
4774 reopen_state->options = qobject_ref(orig_reopen_opts);
4775
Jeff Codye971aa12012-09-20 15:13:19 -04004776error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004777 if (ret < 0 && drv_prepared) {
4778 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4779 * call drv->bdrv_reopen_abort() before signaling an error
4780 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4781 * when the respective bdrv_reopen_prepare() has failed) */
4782 if (drv->bdrv_reopen_abort) {
4783 drv->bdrv_reopen_abort(reopen_state);
4784 }
4785 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004786 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004787 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004788 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004789 return ret;
4790}
4791
4792/*
4793 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4794 * makes them final by swapping the staging BlockDriverState contents into
4795 * the active BlockDriverState contents.
4796 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004797static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004798{
4799 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004800 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004801 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004802
4803 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004804 bs = reopen_state->bs;
4805 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004806 assert(drv != NULL);
4807
4808 /* If there are any driver level actions to take */
4809 if (drv->bdrv_reopen_commit) {
4810 drv->bdrv_reopen_commit(reopen_state);
4811 }
4812
4813 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004814 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004815 qobject_unref(bs->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004816
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004817 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004818 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004819 bs->open_flags = reopen_state->flags;
4820 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
Alberto Garcia543770b2018-09-06 12:37:09 +03004821 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004822
Alberto Garciacb828c32019-03-12 18:48:47 +02004823 if (reopen_state->replace_backing_bs) {
4824 qdict_del(bs->explicit_options, "backing");
4825 qdict_del(bs->options, "backing");
4826 }
4827
Alberto Garcia50196d72018-09-06 12:37:03 +03004828 /* Remove child references from bs->options and bs->explicit_options.
4829 * Child options were already removed in bdrv_reopen_queue_child() */
4830 QLIST_FOREACH(child, &bs->children, next) {
4831 qdict_del(bs->explicit_options, child->name);
4832 qdict_del(bs->options, child->name);
4833 }
4834
Alberto Garciacb828c32019-03-12 18:48:47 +02004835 /*
4836 * Change the backing file if a new one was specified. We do this
4837 * after updating bs->options, so bdrv_refresh_filename() (called
4838 * from bdrv_set_backing_hd()) has the new values.
4839 */
4840 if (reopen_state->replace_backing_bs) {
Max Reitz1d42f482019-06-12 17:24:39 +02004841 BlockDriverState *old_backing_bs = child_bs(bs->backing);
Alberto Garciacb828c32019-03-12 18:48:47 +02004842 assert(!old_backing_bs || !old_backing_bs->implicit);
4843 /* Abort the permission update on the backing bs we're detaching */
4844 if (old_backing_bs) {
4845 bdrv_abort_perm_update(old_backing_bs);
4846 }
4847 bdrv_set_backing_hd(bs, reopen_state->new_backing_bs, &error_abort);
4848 }
4849
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004850 bdrv_refresh_limits(bs, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004851}
4852
4853/*
4854 * Abort the reopen, and delete and free the staged changes in
4855 * reopen_state
4856 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004857static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004858{
4859 BlockDriver *drv;
4860
4861 assert(reopen_state != NULL);
4862 drv = reopen_state->bs->drv;
4863 assert(drv != NULL);
4864
4865 if (drv->bdrv_reopen_abort) {
4866 drv->bdrv_reopen_abort(reopen_state);
4867 }
4868}
4869
4870
Max Reitz64dff522016-01-29 16:36:10 +01004871static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004872{
Max Reitz33384422014-06-20 21:57:33 +02004873 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004874 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004875
Max Reitz30f55fb2016-05-17 16:41:32 +02004876 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004877
Paolo Bonzinifc272912015-12-23 11:48:24 +01004878 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004879 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004880 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004881
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004882 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004883 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004884 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004885 bs->drv->bdrv_close(bs);
4886 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004887 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004888 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004889
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004890 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004891 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004892 }
4893
Alberto Garciadd4118c2019-05-13 16:46:17 +03004894 bs->backing = NULL;
4895 bs->file = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004896 g_free(bs->opaque);
4897 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004898 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004899 bs->backing_file[0] = '\0';
4900 bs->backing_format[0] = '\0';
4901 bs->total_sectors = 0;
4902 bs->encrypted = false;
4903 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004904 qobject_unref(bs->options);
4905 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004906 bs->options = NULL;
4907 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004908 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004909 bs->full_open_options = NULL;
4910
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004911 bdrv_release_named_dirty_bitmaps(bs);
4912 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4913
Max Reitz33384422014-06-20 21:57:33 +02004914 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4915 g_free(ban);
4916 }
4917 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004918 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004919
4920 /*
4921 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4922 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4923 * gets called.
4924 */
4925 if (bs->quiesce_counter) {
4926 bdrv_drain_all_end_quiesce(bs);
4927 }
bellardb3380822004-03-14 21:38:54 +00004928}
4929
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004930void bdrv_close_all(void)
4931{
Kevin Wolfb3b52992018-05-16 13:46:37 +02004932 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004933
Max Reitzca9bd242016-01-29 16:36:14 +01004934 /* Drop references from requests still in flight, such as canceled block
4935 * jobs whose AIO context has not been polled yet */
4936 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004937
Max Reitzca9bd242016-01-29 16:36:14 +01004938 blk_remove_all_bs();
4939 blockdev_close_all_bdrv_states();
4940
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004941 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004942}
4943
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004944static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004945{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004946 GQueue *queue;
4947 GHashTable *found;
4948 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004949
Max Reitzbd86fb92020-05-13 13:05:13 +02004950 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004951 return false;
4952 }
4953
Max Reitzec9f10f2018-06-13 20:18:15 +02004954 /* If the child @c belongs to the BDS @to, replacing the current
4955 * c->bs by @to would mean to create a loop.
4956 *
4957 * Such a case occurs when appending a BDS to a backing chain.
4958 * For instance, imagine the following chain:
4959 *
4960 * guest device -> node A -> further backing chain...
4961 *
4962 * Now we create a new BDS B which we want to put on top of this
4963 * chain, so we first attach A as its backing node:
4964 *
4965 * node B
4966 * |
4967 * v
4968 * guest device -> node A -> further backing chain...
4969 *
4970 * Finally we want to replace A by B. When doing that, we want to
4971 * replace all pointers to A by pointers to B -- except for the
4972 * pointer from B because (1) that would create a loop, and (2)
4973 * that pointer should simply stay intact:
4974 *
4975 * guest device -> node B
4976 * |
4977 * v
4978 * node A -> further backing chain...
4979 *
4980 * In general, when replacing a node A (c->bs) by a node B (@to),
4981 * if A is a child of B, that means we cannot replace A by B there
4982 * because that would create a loop. Silently detaching A from B
4983 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004984 * place there is the most sensible choice.
4985 *
4986 * We would also create a loop in any cases where @c is only
4987 * indirectly referenced by @to. Prevent this by returning false
4988 * if @c is found (by breadth-first search) anywhere in the whole
4989 * subtree of @to.
4990 */
4991
4992 ret = true;
4993 found = g_hash_table_new(NULL, NULL);
4994 g_hash_table_add(found, to);
4995 queue = g_queue_new();
4996 g_queue_push_tail(queue, to);
4997
4998 while (!g_queue_is_empty(queue)) {
4999 BlockDriverState *v = g_queue_pop_head(queue);
5000 BdrvChild *c2;
5001
5002 QLIST_FOREACH(c2, &v->children, next) {
5003 if (c2 == c) {
5004 ret = false;
5005 break;
5006 }
5007
5008 if (g_hash_table_contains(found, c2->bs)) {
5009 continue;
5010 }
5011
5012 g_queue_push_tail(queue, c2->bs);
5013 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005014 }
5015 }
5016
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005017 g_queue_free(queue);
5018 g_hash_table_destroy(found);
5019
5020 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005021}
5022
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005023typedef struct BdrvRemoveFilterOrCowChild {
5024 BdrvChild *child;
5025 bool is_backing;
5026} BdrvRemoveFilterOrCowChild;
5027
5028static void bdrv_remove_filter_or_cow_child_abort(void *opaque)
5029{
5030 BdrvRemoveFilterOrCowChild *s = opaque;
5031 BlockDriverState *parent_bs = s->child->opaque;
5032
5033 QLIST_INSERT_HEAD(&parent_bs->children, s->child, next);
5034 if (s->is_backing) {
5035 parent_bs->backing = s->child;
5036 } else {
5037 parent_bs->file = s->child;
5038 }
5039
5040 /*
5041 * We don't have to restore child->bs here to undo bdrv_replace_child()
5042 * because that function is transactionable and it registered own completion
5043 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
5044 * called automatically.
5045 */
5046}
5047
5048static void bdrv_remove_filter_or_cow_child_commit(void *opaque)
5049{
5050 BdrvRemoveFilterOrCowChild *s = opaque;
5051
5052 bdrv_child_free(s->child);
5053}
5054
5055static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = {
5056 .abort = bdrv_remove_filter_or_cow_child_abort,
5057 .commit = bdrv_remove_filter_or_cow_child_commit,
5058 .clean = g_free,
5059};
5060
5061/*
5062 * A function to remove backing-chain child of @bs if exists: cow child for
5063 * format nodes (always .backing) and filter child for filters (may be .file or
5064 * .backing)
5065 */
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005066static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
5067 Transaction *tran)
5068{
5069 BdrvRemoveFilterOrCowChild *s;
5070 BdrvChild *child = bdrv_filter_or_cow_child(bs);
5071
5072 if (!child) {
5073 return;
5074 }
5075
5076 if (child->bs) {
5077 bdrv_replace_child_safe(child, NULL, tran);
5078 }
5079
5080 s = g_new(BdrvRemoveFilterOrCowChild, 1);
5081 *s = (BdrvRemoveFilterOrCowChild) {
5082 .child = child,
5083 .is_backing = (child == bs->backing),
5084 };
5085 tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
5086
5087 QLIST_SAFE_REMOVE(child, next);
5088 if (s->is_backing) {
5089 bs->backing = NULL;
5090 } else {
5091 bs->file = NULL;
5092 }
5093}
5094
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005095static int bdrv_replace_node_noperm(BlockDriverState *from,
5096 BlockDriverState *to,
5097 bool auto_skip, Transaction *tran,
5098 Error **errp)
5099{
5100 BdrvChild *c, *next;
5101
5102 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5103 assert(c->bs == from);
5104 if (!should_update_child(c, to)) {
5105 if (auto_skip) {
5106 continue;
5107 }
5108 error_setg(errp, "Should not change '%s' link to '%s'",
5109 c->name, from->node_name);
5110 return -EINVAL;
5111 }
5112 if (c->frozen) {
5113 error_setg(errp, "Cannot change '%s' link to '%s'",
5114 c->name, from->node_name);
5115 return -EPERM;
5116 }
5117 bdrv_replace_child_safe(c, to, tran);
5118 }
5119
5120 return 0;
5121}
5122
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005123/*
5124 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5125 * if it creates a parent-child relation loop or if parent is block-job.
5126 *
5127 * With auto_skip=false the error is returned if from has a parent which should
5128 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005129 *
5130 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5131 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005132 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005133static int bdrv_replace_node_common(BlockDriverState *from,
5134 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005135 bool auto_skip, bool detach_subchain,
5136 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005137{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005138 Transaction *tran = tran_new();
5139 g_autoptr(GHashTable) found = NULL;
5140 g_autoptr(GSList) refresh_list = NULL;
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005141 BlockDriverState *to_cow_parent;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005142 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005143
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005144 if (detach_subchain) {
5145 assert(bdrv_chain_contains(from, to));
5146 assert(from != to);
5147 for (to_cow_parent = from;
5148 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5149 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5150 {
5151 ;
5152 }
5153 }
5154
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005155 /* Make sure that @from doesn't go away until we have successfully attached
5156 * all of its parents to @to. */
5157 bdrv_ref(from);
5158
Kevin Wolff871abd2019-05-21 19:00:25 +02005159 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01005160 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02005161 bdrv_drained_begin(from);
5162
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005163 /*
5164 * Do the replacement without permission update.
5165 * Replacement may influence the permissions, we should calculate new
5166 * permissions based on new graph. If we fail, we'll roll-back the
5167 * replacement.
5168 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005169 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5170 if (ret < 0) {
5171 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005172 }
5173
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005174 if (detach_subchain) {
5175 bdrv_remove_filter_or_cow_child(to_cow_parent, tran);
5176 }
5177
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005178 found = g_hash_table_new(NULL, NULL);
5179
5180 refresh_list = bdrv_topological_dfs(refresh_list, found, to);
5181 refresh_list = bdrv_topological_dfs(refresh_list, found, from);
5182
5183 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005184 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005185 goto out;
5186 }
5187
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005188 ret = 0;
5189
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005190out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005191 tran_finalize(tran, ret);
5192
Kevin Wolff871abd2019-05-21 19:00:25 +02005193 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005194 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005195
5196 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005197}
5198
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005199int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5200 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005201{
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005202 return bdrv_replace_node_common(from, to, true, false, errp);
5203}
5204
5205int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5206{
5207 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5208 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005209}
5210
Jeff Cody8802d1f2012-02-28 15:54:06 -05005211/*
5212 * Add new bs contents at the top of an image chain while the chain is
5213 * live, while keeping required fields on the top layer.
5214 *
5215 * This will modify the BlockDriverState fields, and swap contents
5216 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5217 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005218 * bs_new must not be attached to a BlockBackend and must not have backing
5219 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005220 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005221 * This function does not create any image files.
5222 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005223int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5224 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005225{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005226 int ret;
5227 Transaction *tran = tran_new();
5228
5229 assert(!bs_new->backing);
5230
5231 ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5232 &child_of_bds, bdrv_backing_role(bs_new),
5233 &bs_new->backing, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005234 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005235 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005236 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005237
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005238 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005239 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005240 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005241 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005242
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005243 ret = bdrv_refresh_perms(bs_new, errp);
5244out:
5245 tran_finalize(tran, ret);
5246
5247 bdrv_refresh_limits(bs_top, NULL);
5248
5249 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005250}
5251
Fam Zheng4f6fd342013-08-23 09:14:47 +08005252static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005253{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005254 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005255 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02005256
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005257 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005258 if (bs->node_name[0] != '\0') {
5259 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5260 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005261 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5262
Anton Kuchin30c321f2019-05-07 11:12:56 +03005263 bdrv_close(bs);
5264
Anthony Liguori7267c092011-08-20 22:09:37 -05005265 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005266}
5267
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005268BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *node_options,
5269 int flags, Error **errp)
5270{
5271 BlockDriverState *new_node_bs;
5272 Error *local_err = NULL;
5273
5274 new_node_bs = bdrv_open(NULL, NULL, node_options, flags, errp);
5275 if (new_node_bs == NULL) {
5276 error_prepend(errp, "Could not create node: ");
5277 return NULL;
5278 }
5279
5280 bdrv_drained_begin(bs);
5281 bdrv_replace_node(bs, new_node_bs, &local_err);
5282 bdrv_drained_end(bs);
5283
5284 if (local_err) {
5285 bdrv_unref(new_node_bs);
5286 error_propagate(errp, local_err);
5287 return NULL;
5288 }
5289
5290 return new_node_bs;
5291}
5292
aliguorie97fc192009-04-21 23:11:50 +00005293/*
5294 * Run consistency checks on an image
5295 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005296 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005297 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005298 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005299 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005300int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5301 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005302{
Max Reitz908bcd52014-08-07 22:47:55 +02005303 if (bs->drv == NULL) {
5304 return -ENOMEDIUM;
5305 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005306 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005307 return -ENOTSUP;
5308 }
5309
Kevin Wolfe076f332010-06-29 11:43:13 +02005310 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005311 return bs->drv->bdrv_co_check(bs, res, fix);
5312}
5313
Kevin Wolf756e6732010-01-12 12:55:17 +01005314/*
5315 * Return values:
5316 * 0 - success
5317 * -EINVAL - backing format specified, but no file
5318 * -ENOSPC - can't update the backing file because no space is left in the
5319 * image file header
5320 * -ENOTSUP - format driver doesn't support changing the backing file
5321 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005322int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
5323 const char *backing_fmt, bool warn)
Kevin Wolf756e6732010-01-12 12:55:17 +01005324{
5325 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005326 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005327
Max Reitzd470ad42017-11-10 21:31:09 +01005328 if (!drv) {
5329 return -ENOMEDIUM;
5330 }
5331
Paolo Bonzini5f377792012-04-12 14:01:01 +02005332 /* Backing file format doesn't make sense without a backing file */
5333 if (backing_fmt && !backing_file) {
5334 return -EINVAL;
5335 }
5336
Eric Blakee54ee1b2020-07-06 15:39:53 -05005337 if (warn && backing_file && !backing_fmt) {
5338 warn_report("Deprecated use of backing file without explicit "
5339 "backing format, use of this image requires "
5340 "potentially unsafe format probing");
5341 }
5342
Kevin Wolf756e6732010-01-12 12:55:17 +01005343 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005344 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005345 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005346 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005347 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005348
5349 if (ret == 0) {
5350 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5351 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005352 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5353 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005354 }
5355 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005356}
5357
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005358/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005359 * Finds the first non-filter node above bs in the chain between
5360 * active and bs. The returned node is either an immediate parent of
5361 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005362 *
5363 * Returns NULL if bs is not found in active's image chain,
5364 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005365 *
5366 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005367 */
5368BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5369 BlockDriverState *bs)
5370{
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005371 bs = bdrv_skip_filters(bs);
5372 active = bdrv_skip_filters(active);
5373
5374 while (active) {
5375 BlockDriverState *next = bdrv_backing_chain_next(active);
5376 if (bs == next) {
5377 return active;
5378 }
5379 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005380 }
5381
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005382 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005383}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005384
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005385/* Given a BDS, searches for the base layer. */
5386BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5387{
5388 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005389}
5390
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005391/*
Max Reitz7b99a262019-06-12 16:07:11 +02005392 * Return true if at least one of the COW (backing) and filter links
5393 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005394 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005395 */
5396bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5397 Error **errp)
5398{
5399 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005400 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005401
Max Reitz7b99a262019-06-12 16:07:11 +02005402 for (i = bs; i != base; i = child_bs(child)) {
5403 child = bdrv_filter_or_cow_child(i);
5404
5405 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005406 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005407 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005408 return true;
5409 }
5410 }
5411
5412 return false;
5413}
5414
5415/*
Max Reitz7b99a262019-06-12 16:07:11 +02005416 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005417 * If any of the links is already frozen the operation is aborted and
5418 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005419 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005420 * Returns 0 on success. On failure returns < 0 and sets @errp.
5421 */
5422int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5423 Error **errp)
5424{
5425 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005426 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005427
5428 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5429 return -EPERM;
5430 }
5431
Max Reitz7b99a262019-06-12 16:07:11 +02005432 for (i = bs; i != base; i = child_bs(child)) {
5433 child = bdrv_filter_or_cow_child(i);
5434 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005435 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005436 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005437 return -EPERM;
5438 }
5439 }
5440
Max Reitz7b99a262019-06-12 16:07:11 +02005441 for (i = bs; i != base; i = child_bs(child)) {
5442 child = bdrv_filter_or_cow_child(i);
5443 if (child) {
5444 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005445 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005446 }
5447
5448 return 0;
5449}
5450
5451/*
Max Reitz7b99a262019-06-12 16:07:11 +02005452 * Unfreeze all COW (backing) and filter links between @bs and @base.
5453 * The caller must ensure that all links are frozen before using this
5454 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005455 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005456 */
5457void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5458{
5459 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005460 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005461
Max Reitz7b99a262019-06-12 16:07:11 +02005462 for (i = bs; i != base; i = child_bs(child)) {
5463 child = bdrv_filter_or_cow_child(i);
5464 if (child) {
5465 assert(child->frozen);
5466 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005467 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005468 }
5469}
5470
5471/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005472 * Drops images above 'base' up to and including 'top', and sets the image
5473 * above 'top' to have base as its backing file.
5474 *
5475 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5476 * information in 'bs' can be properly updated.
5477 *
5478 * E.g., this will convert the following chain:
5479 * bottom <- base <- intermediate <- top <- active
5480 *
5481 * to
5482 *
5483 * bottom <- base <- active
5484 *
5485 * It is allowed for bottom==base, in which case it converts:
5486 *
5487 * base <- intermediate <- top <- active
5488 *
5489 * to
5490 *
5491 * base <- active
5492 *
Jeff Cody54e26902014-06-25 15:40:10 -04005493 * If backing_file_str is non-NULL, it will be used when modifying top's
5494 * overlay image metadata.
5495 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005496 * Error conditions:
5497 * if active == top, that is considered an error
5498 *
5499 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005500int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5501 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005502{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005503 BlockDriverState *explicit_top = top;
5504 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005505 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005506 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005507 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005508 g_autoptr(GSList) updated_children = NULL;
5509 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005510
Kevin Wolf6858eba2017-06-29 19:32:21 +02005511 bdrv_ref(top);
Max Reitz637d54a2019-07-22 15:33:43 +02005512 bdrv_subtree_drained_begin(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005513
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005514 if (!top->drv || !base->drv) {
5515 goto exit;
5516 }
5517
Kevin Wolf5db15a52015-09-14 15:33:33 +02005518 /* Make sure that base is in the backing chain of top */
5519 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005520 goto exit;
5521 }
5522
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005523 /* If 'base' recursively inherits from 'top' then we should set
5524 * base->inherits_from to top->inherits_from after 'top' and all
5525 * other intermediate nodes have been dropped.
5526 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5527 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005528 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005529 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5530
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005531 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02005532 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
5533 * we've figured out how they should work. */
Max Reitzf30c66b2019-02-01 20:29:05 +01005534 if (!backing_file_str) {
5535 bdrv_refresh_filename(base);
5536 backing_file_str = base->filename;
5537 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005538
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005539 QLIST_FOREACH(c, &top->parents, next_parent) {
5540 updated_children = g_slist_prepend(updated_children, c);
5541 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005542
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005543 /*
5544 * It seems correct to pass detach_subchain=true here, but it triggers
5545 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5546 * another drained section, which modify the graph (for example, removing
5547 * the child, which we keep in updated_children list). So, it's a TODO.
5548 *
5549 * Note, bug triggered if pass detach_subchain=true here and run
5550 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5551 * That's a FIXME.
5552 */
5553 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005554 if (local_err) {
5555 error_report_err(local_err);
5556 goto exit;
5557 }
5558
5559 for (p = updated_children; p; p = p->next) {
5560 c = p->data;
5561
Max Reitzbd86fb92020-05-13 13:05:13 +02005562 if (c->klass->update_filename) {
5563 ret = c->klass->update_filename(c, base, backing_file_str,
5564 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005565 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005566 /*
5567 * TODO: Actually, we want to rollback all previous iterations
5568 * of this loop, and (which is almost impossible) previous
5569 * bdrv_replace_node()...
5570 *
5571 * Note, that c->klass->update_filename may lead to permission
5572 * update, so it's a bad idea to call it inside permission
5573 * update transaction of bdrv_replace_node.
5574 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005575 error_report_err(local_err);
5576 goto exit;
5577 }
5578 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005579 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005580
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005581 if (update_inherits_from) {
5582 base->inherits_from = explicit_top->inherits_from;
5583 }
5584
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005585 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005586exit:
Max Reitz637d54a2019-07-22 15:33:43 +02005587 bdrv_subtree_drained_end(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005588 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005589 return ret;
5590}
5591
bellard83f64092006-08-01 16:21:11 +00005592/**
Max Reitz081e4652019-06-12 18:14:13 +02005593 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5594 * sums the size of all data-bearing children. (This excludes backing
5595 * children.)
5596 */
5597static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5598{
5599 BdrvChild *child;
5600 int64_t child_size, sum = 0;
5601
5602 QLIST_FOREACH(child, &bs->children, next) {
5603 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5604 BDRV_CHILD_FILTERED))
5605 {
5606 child_size = bdrv_get_allocated_file_size(child->bs);
5607 if (child_size < 0) {
5608 return child_size;
5609 }
5610 sum += child_size;
5611 }
5612 }
5613
5614 return sum;
5615}
5616
5617/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005618 * Length of a allocated file in bytes. Sparse files are counted by actual
5619 * allocated space. Return < 0 if error or unknown.
5620 */
5621int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5622{
5623 BlockDriver *drv = bs->drv;
5624 if (!drv) {
5625 return -ENOMEDIUM;
5626 }
5627 if (drv->bdrv_get_allocated_file_size) {
5628 return drv->bdrv_get_allocated_file_size(bs);
5629 }
Max Reitz081e4652019-06-12 18:14:13 +02005630
5631 if (drv->bdrv_file_open) {
5632 /*
5633 * Protocol drivers default to -ENOTSUP (most of their data is
5634 * not stored in any of their children (if they even have any),
5635 * so there is no generic way to figure it out).
5636 */
5637 return -ENOTSUP;
5638 } else if (drv->is_filter) {
5639 /* Filter drivers default to the size of their filtered child */
5640 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5641 } else {
5642 /* Other drivers default to summing their children's sizes */
5643 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005644 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005645}
5646
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005647/*
5648 * bdrv_measure:
5649 * @drv: Format driver
5650 * @opts: Creation options for new image
5651 * @in_bs: Existing image containing data for new image (may be NULL)
5652 * @errp: Error object
5653 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5654 * or NULL on error
5655 *
5656 * Calculate file size required to create a new image.
5657 *
5658 * If @in_bs is given then space for allocated clusters and zero clusters
5659 * from that image are included in the calculation. If @opts contains a
5660 * backing file that is shared by @in_bs then backing clusters may be omitted
5661 * from the calculation.
5662 *
5663 * If @in_bs is NULL then the calculation includes no allocated clusters
5664 * unless a preallocation option is given in @opts.
5665 *
5666 * Note that @in_bs may use a different BlockDriver from @drv.
5667 *
5668 * If an error occurs the @errp pointer is set.
5669 */
5670BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5671 BlockDriverState *in_bs, Error **errp)
5672{
5673 if (!drv->bdrv_measure) {
5674 error_setg(errp, "Block driver '%s' does not support size measurement",
5675 drv->format_name);
5676 return NULL;
5677 }
5678
5679 return drv->bdrv_measure(opts, in_bs, errp);
5680}
5681
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005682/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005683 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005684 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005685int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005686{
5687 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005688
bellard83f64092006-08-01 16:21:11 +00005689 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005690 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005691
Kevin Wolfb94a2612013-10-29 12:18:58 +01005692 if (drv->has_variable_length) {
5693 int ret = refresh_total_sectors(bs, bs->total_sectors);
5694 if (ret < 0) {
5695 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005696 }
bellard83f64092006-08-01 16:21:11 +00005697 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005698 return bs->total_sectors;
5699}
5700
5701/**
5702 * Return length in bytes on success, -errno on error.
5703 * The length is always a multiple of BDRV_SECTOR_SIZE.
5704 */
5705int64_t bdrv_getlength(BlockDriverState *bs)
5706{
5707 int64_t ret = bdrv_nb_sectors(bs);
5708
Eric Blake122860b2020-11-05 09:51:22 -06005709 if (ret < 0) {
5710 return ret;
5711 }
5712 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5713 return -EFBIG;
5714 }
5715 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005716}
5717
bellard19cb3732006-08-19 11:45:59 +00005718/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005719void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005720{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005721 int64_t nb_sectors = bdrv_nb_sectors(bs);
5722
5723 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005724}
bellardcf989512004-02-16 21:56:36 +00005725
Eric Blake54115412016-06-23 16:37:26 -06005726bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005727{
5728 return bs->sg;
5729}
5730
Max Reitzae23f782019-06-12 22:57:15 +02005731/**
5732 * Return whether the given node supports compressed writes.
5733 */
5734bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5735{
5736 BlockDriverState *filtered;
5737
5738 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5739 return false;
5740 }
5741
5742 filtered = bdrv_filter_bs(bs);
5743 if (filtered) {
5744 /*
5745 * Filters can only forward compressed writes, so we have to
5746 * check the child.
5747 */
5748 return bdrv_supports_compressed_writes(filtered);
5749 }
5750
5751 return true;
5752}
5753
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005754const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005755{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005756 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005757}
5758
Stefan Hajnocziada42402014-08-27 12:08:55 +01005759static int qsort_strcmp(const void *a, const void *b)
5760{
Max Reitzceff5bd2016-10-12 22:49:05 +02005761 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005762}
5763
ths5fafdf22007-09-16 21:08:06 +00005764void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005765 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005766{
5767 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005768 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005769 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005770 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005771
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005772 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005773 if (drv->format_name) {
5774 bool found = false;
5775 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005776
5777 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5778 continue;
5779 }
5780
Jeff Codye855e4f2014-04-28 18:29:54 -04005781 while (formats && i && !found) {
5782 found = !strcmp(formats[--i], drv->format_name);
5783 }
5784
5785 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005786 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005787 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005788 }
5789 }
bellardea2384d2004-08-01 21:59:26 +00005790 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005791
Max Reitzeb0df692016-10-12 22:49:06 +02005792 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5793 const char *format_name = block_driver_modules[i].format_name;
5794
5795 if (format_name) {
5796 bool found = false;
5797 int j = count;
5798
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005799 if (use_bdrv_whitelist &&
5800 !bdrv_format_is_whitelisted(format_name, read_only)) {
5801 continue;
5802 }
5803
Max Reitzeb0df692016-10-12 22:49:06 +02005804 while (formats && j && !found) {
5805 found = !strcmp(formats[--j], format_name);
5806 }
5807
5808 if (!found) {
5809 formats = g_renew(const char *, formats, count + 1);
5810 formats[count++] = format_name;
5811 }
5812 }
5813 }
5814
Stefan Hajnocziada42402014-08-27 12:08:55 +01005815 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5816
5817 for (i = 0; i < count; i++) {
5818 it(opaque, formats[i]);
5819 }
5820
Jeff Codye855e4f2014-04-28 18:29:54 -04005821 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005822}
5823
Benoît Canetdc364f42014-01-23 21:31:32 +01005824/* This function is to find a node in the bs graph */
5825BlockDriverState *bdrv_find_node(const char *node_name)
5826{
5827 BlockDriverState *bs;
5828
5829 assert(node_name);
5830
5831 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5832 if (!strcmp(node_name, bs->node_name)) {
5833 return bs;
5834 }
5835 }
5836 return NULL;
5837}
5838
Benoît Canetc13163f2014-01-23 21:31:34 +01005839/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01005840BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5841 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01005842{
Eric Blake9812e712020-10-27 00:05:47 -05005843 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01005844 BlockDriverState *bs;
5845
5846 list = NULL;
5847 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01005848 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03005849 if (!info) {
5850 qapi_free_BlockDeviceInfoList(list);
5851 return NULL;
5852 }
Eric Blake9812e712020-10-27 00:05:47 -05005853 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01005854 }
5855
5856 return list;
5857}
5858
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005859typedef struct XDbgBlockGraphConstructor {
5860 XDbgBlockGraph *graph;
5861 GHashTable *graph_nodes;
5862} XDbgBlockGraphConstructor;
5863
5864static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5865{
5866 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5867
5868 gr->graph = g_new0(XDbgBlockGraph, 1);
5869 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5870
5871 return gr;
5872}
5873
5874static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5875{
5876 XDbgBlockGraph *graph = gr->graph;
5877
5878 g_hash_table_destroy(gr->graph_nodes);
5879 g_free(gr);
5880
5881 return graph;
5882}
5883
5884static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5885{
5886 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5887
5888 if (ret != 0) {
5889 return ret;
5890 }
5891
5892 /*
5893 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5894 * answer of g_hash_table_lookup.
5895 */
5896 ret = g_hash_table_size(gr->graph_nodes) + 1;
5897 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5898
5899 return ret;
5900}
5901
5902static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5903 XDbgBlockGraphNodeType type, const char *name)
5904{
5905 XDbgBlockGraphNode *n;
5906
5907 n = g_new0(XDbgBlockGraphNode, 1);
5908
5909 n->id = xdbg_graph_node_num(gr, node);
5910 n->type = type;
5911 n->name = g_strdup(name);
5912
Eric Blake9812e712020-10-27 00:05:47 -05005913 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005914}
5915
5916static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5917 const BdrvChild *child)
5918{
Max Reitzcdb1cec2019-11-08 13:34:52 +01005919 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005920 XDbgBlockGraphEdge *edge;
5921
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005922 edge = g_new0(XDbgBlockGraphEdge, 1);
5923
5924 edge->parent = xdbg_graph_node_num(gr, parent);
5925 edge->child = xdbg_graph_node_num(gr, child->bs);
5926 edge->name = g_strdup(child->name);
5927
Max Reitzcdb1cec2019-11-08 13:34:52 +01005928 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5929 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5930
5931 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005932 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005933 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01005934 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005935 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005936 }
5937 }
5938
Eric Blake9812e712020-10-27 00:05:47 -05005939 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005940}
5941
5942
5943XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5944{
5945 BlockBackend *blk;
5946 BlockJob *job;
5947 BlockDriverState *bs;
5948 BdrvChild *child;
5949 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5950
5951 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5952 char *allocated_name = NULL;
5953 const char *name = blk_name(blk);
5954
5955 if (!*name) {
5956 name = allocated_name = blk_get_attached_dev_id(blk);
5957 }
5958 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5959 name);
5960 g_free(allocated_name);
5961 if (blk_root(blk)) {
5962 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5963 }
5964 }
5965
5966 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5967 GSList *el;
5968
5969 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5970 job->job.id);
5971 for (el = job->nodes; el; el = el->next) {
5972 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5973 }
5974 }
5975
5976 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5977 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5978 bs->node_name);
5979 QLIST_FOREACH(child, &bs->children, next) {
5980 xdbg_graph_add_edge(gr, bs, child);
5981 }
5982 }
5983
5984 return xdbg_graph_finalize(gr);
5985}
5986
Benoît Canet12d3ba82014-01-23 21:31:35 +01005987BlockDriverState *bdrv_lookup_bs(const char *device,
5988 const char *node_name,
5989 Error **errp)
5990{
Markus Armbruster7f06d472014-10-07 13:59:12 +02005991 BlockBackend *blk;
5992 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005993
Benoît Canet12d3ba82014-01-23 21:31:35 +01005994 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02005995 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005996
Markus Armbruster7f06d472014-10-07 13:59:12 +02005997 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005998 bs = blk_bs(blk);
5999 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02006000 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02006001 }
6002
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006003 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006004 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006005 }
6006
Benoît Canetdd67fa52014-02-12 17:15:06 +01006007 if (node_name) {
6008 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006009
Benoît Canetdd67fa52014-02-12 17:15:06 +01006010 if (bs) {
6011 return bs;
6012 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006013 }
6014
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006015 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01006016 device ? device : "",
6017 node_name ? node_name : "");
6018 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006019}
6020
Jeff Cody5a6684d2014-06-25 15:40:09 -04006021/* If 'base' is in the same chain as 'top', return true. Otherwise,
6022 * return false. If either argument is NULL, return false. */
6023bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6024{
6025 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006026 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04006027 }
6028
6029 return top != NULL;
6030}
6031
Fam Zheng04df7652014-10-31 11:32:54 +08006032BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6033{
6034 if (!bs) {
6035 return QTAILQ_FIRST(&graph_bdrv_states);
6036 }
6037 return QTAILQ_NEXT(bs, node_list);
6038}
6039
Kevin Wolf0f122642018-03-28 18:29:18 +02006040BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6041{
6042 if (!bs) {
6043 return QTAILQ_FIRST(&all_bdrv_states);
6044 }
6045 return QTAILQ_NEXT(bs, bs_list);
6046}
6047
Fam Zheng20a9e772014-10-31 11:32:55 +08006048const char *bdrv_get_node_name(const BlockDriverState *bs)
6049{
6050 return bs->node_name;
6051}
6052
Kevin Wolf1f0c4612016-03-22 18:38:44 +01006053const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006054{
6055 BdrvChild *c;
6056 const char *name;
6057
6058 /* If multiple parents have a name, just pick the first one. */
6059 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006060 if (c->klass->get_name) {
6061 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006062 if (name && *name) {
6063 return name;
6064 }
6065 }
6066 }
6067
6068 return NULL;
6069}
6070
Markus Armbruster7f06d472014-10-07 13:59:12 +02006071/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02006072const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006073{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006074 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00006075}
6076
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006077/* This can be used to identify nodes that might not have a device
6078 * name associated. Since node and device names live in the same
6079 * namespace, the result is unambiguous. The exception is if both are
6080 * absent, then this returns an empty (non-null) string. */
6081const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6082{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006083 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006084}
6085
Markus Armbrusterc8433282012-06-05 16:49:24 +02006086int bdrv_get_flags(BlockDriverState *bs)
6087{
6088 return bs->open_flags;
6089}
6090
Peter Lieven3ac21622013-06-28 12:47:42 +02006091int bdrv_has_zero_init_1(BlockDriverState *bs)
6092{
6093 return 1;
6094}
6095
Kevin Wolff2feebb2010-04-14 17:30:35 +02006096int bdrv_has_zero_init(BlockDriverState *bs)
6097{
Max Reitz93393e62019-06-12 17:03:38 +02006098 BlockDriverState *filtered;
6099
Max Reitzd470ad42017-11-10 21:31:09 +01006100 if (!bs->drv) {
6101 return 0;
6102 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006103
Paolo Bonzini11212d82013-09-04 19:00:27 +02006104 /* If BS is a copy on write image, it is initialized to
6105 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02006106 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02006107 return 0;
6108 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006109 if (bs->drv->bdrv_has_zero_init) {
6110 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006111 }
Max Reitz93393e62019-06-12 17:03:38 +02006112
6113 filtered = bdrv_filter_bs(bs);
6114 if (filtered) {
6115 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006116 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006117
Peter Lieven3ac21622013-06-28 12:47:42 +02006118 /* safe default */
6119 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006120}
6121
Peter Lieven4ce78692013-10-24 12:06:54 +02006122bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6123{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006124 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006125 return false;
6126 }
6127
Eric Blakee24d8132018-01-26 13:34:39 -06006128 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006129}
6130
ths5fafdf22007-09-16 21:08:06 +00006131void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006132 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006133{
Kevin Wolf3574c602011-10-26 11:02:11 +02006134 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006135}
6136
bellardfaea38e2006-08-05 21:31:00 +00006137int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6138{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006139 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006140 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006141 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6142 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006143 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006144 }
6145 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006146 BlockDriverState *filtered = bdrv_filter_bs(bs);
6147 if (filtered) {
6148 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006149 }
bellardfaea38e2006-08-05 21:31:00 +00006150 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006151 }
bellardfaea38e2006-08-05 21:31:00 +00006152 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006153 ret = drv->bdrv_get_info(bs, bdi);
6154 if (ret < 0) {
6155 return ret;
6156 }
6157
6158 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6159 return -EINVAL;
6160 }
6161
6162 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006163}
6164
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006165ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6166 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006167{
6168 BlockDriver *drv = bs->drv;
6169 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006170 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006171 }
6172 return NULL;
6173}
6174
Anton Nefedovd9245592019-09-23 15:17:37 +03006175BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6176{
6177 BlockDriver *drv = bs->drv;
6178 if (!drv || !drv->bdrv_get_specific_stats) {
6179 return NULL;
6180 }
6181 return drv->bdrv_get_specific_stats(bs);
6182}
6183
Eric Blakea31939e2015-11-18 01:52:54 -07006184void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006185{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006186 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006187 return;
6188 }
6189
Kevin Wolfbf736fe2013-06-05 15:17:55 +02006190 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006191}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006192
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006193static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006194{
6195 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006196 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006197 }
6198
6199 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006200 assert(bs->drv->bdrv_debug_remove_breakpoint);
6201 return bs;
6202 }
6203
6204 return NULL;
6205}
6206
6207int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6208 const char *tag)
6209{
6210 bs = bdrv_find_debug_node(bs);
6211 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006212 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6213 }
6214
6215 return -ENOTSUP;
6216}
6217
Fam Zheng4cc70e92013-11-20 10:01:54 +08006218int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6219{
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006220 bs = bdrv_find_debug_node(bs);
6221 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006222 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6223 }
6224
6225 return -ENOTSUP;
6226}
6227
Kevin Wolf41c695c2012-12-06 14:32:58 +01006228int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6229{
Max Reitz938789e2014-03-10 23:44:08 +01006230 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006231 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006232 }
6233
6234 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6235 return bs->drv->bdrv_debug_resume(bs, tag);
6236 }
6237
6238 return -ENOTSUP;
6239}
6240
6241bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6242{
6243 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006244 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006245 }
6246
6247 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6248 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6249 }
6250
6251 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006252}
6253
Jeff Codyb1b1d782012-10-16 15:49:09 -04006254/* backing_file can either be relative, or absolute, or a protocol. If it is
6255 * relative, it must be relative to the chain. So, passing in bs->filename
6256 * from a BDS as backing_file should not be done, as that may be relative to
6257 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006258BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6259 const char *backing_file)
6260{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006261 char *filename_full = NULL;
6262 char *backing_file_full = NULL;
6263 char *filename_tmp = NULL;
6264 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006265 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006266 BlockDriverState *curr_bs = NULL;
6267 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006268 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006269
6270 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006271 return NULL;
6272 }
6273
Jeff Codyb1b1d782012-10-16 15:49:09 -04006274 filename_full = g_malloc(PATH_MAX);
6275 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006276
6277 is_protocol = path_has_protocol(backing_file);
6278
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006279 /*
6280 * Being largely a legacy function, skip any filters here
6281 * (because filters do not have normal filenames, so they cannot
6282 * match anyway; and allowing json:{} filenames is a bit out of
6283 * scope).
6284 */
6285 for (curr_bs = bdrv_skip_filters(bs);
6286 bdrv_cow_child(curr_bs) != NULL;
6287 curr_bs = bs_below)
6288 {
6289 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006290
Max Reitz0b877d02018-08-01 20:34:11 +02006291 if (bdrv_backing_overridden(curr_bs)) {
6292 /*
6293 * If the backing file was overridden, we can only compare
6294 * directly against the backing node's filename.
6295 */
6296
6297 if (!filenames_refreshed) {
6298 /*
6299 * This will automatically refresh all of the
6300 * filenames in the rest of the backing chain, so we
6301 * only need to do this once.
6302 */
6303 bdrv_refresh_filename(bs_below);
6304 filenames_refreshed = true;
6305 }
6306
6307 if (strcmp(backing_file, bs_below->filename) == 0) {
6308 retval = bs_below;
6309 break;
6310 }
6311 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6312 /*
6313 * If either of the filename paths is actually a protocol, then
6314 * compare unmodified paths; otherwise make paths relative.
6315 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006316 char *backing_file_full_ret;
6317
Jeff Codyb1b1d782012-10-16 15:49:09 -04006318 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006319 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006320 break;
6321 }
Jeff Cody418661e2017-01-25 20:08:20 -05006322 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006323 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6324 NULL);
6325 if (backing_file_full_ret) {
6326 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6327 g_free(backing_file_full_ret);
6328 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006329 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006330 break;
6331 }
Jeff Cody418661e2017-01-25 20:08:20 -05006332 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006333 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006334 /* If not an absolute filename path, make it relative to the current
6335 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006336 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6337 NULL);
6338 /* We are going to compare canonicalized absolute pathnames */
6339 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6340 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006341 continue;
6342 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006343 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006344
6345 /* We need to make sure the backing filename we are comparing against
6346 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006347 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6348 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6349 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006350 continue;
6351 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006352 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006353
6354 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006355 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006356 break;
6357 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006358 }
6359 }
6360
Jeff Codyb1b1d782012-10-16 15:49:09 -04006361 g_free(filename_full);
6362 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006363 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006364}
6365
bellardea2384d2004-08-01 21:59:26 +00006366void bdrv_init(void)
6367{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006368 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006369}
pbrookce1a14d2006-08-07 02:38:06 +00006370
Markus Armbrustereb852012009-10-27 18:41:44 +01006371void bdrv_init_with_whitelist(void)
6372{
6373 use_bdrv_whitelist = 1;
6374 bdrv_init();
6375}
6376
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03006377int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006378{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006379 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006380 Error *local_err = NULL;
6381 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006382 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006383
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006384 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006385 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006386 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006387
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006388 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01006389 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006390 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006391 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006392 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006393 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006394 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006395
Kevin Wolfdafe0962017-11-16 13:00:01 +01006396 /*
6397 * Update permissions, they may differ for inactive nodes.
6398 *
6399 * Note that the required permissions of inactive images are always a
6400 * subset of the permissions required after activating the image. This
6401 * allows us to just get the permissions upfront without restricting
6402 * drv->bdrv_invalidate_cache().
6403 *
6404 * It also means that in error cases, we don't have to try and revert to
6405 * the old permissions (which is an operation that could fail, too). We can
6406 * just keep the extended permissions for the next time that an activation
6407 * of the image is tried.
6408 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006409 if (bs->open_flags & BDRV_O_INACTIVE) {
6410 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006411 ret = bdrv_refresh_perms(bs, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006412 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006413 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006414 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006415 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006416
Kevin Wolf7bb49412019-12-17 15:06:38 +01006417 if (bs->drv->bdrv_co_invalidate_cache) {
6418 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6419 if (local_err) {
6420 bs->open_flags |= BDRV_O_INACTIVE;
6421 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006422 return -EINVAL;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006423 }
6424 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006425
Kevin Wolf7bb49412019-12-17 15:06:38 +01006426 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6427 bdrv_dirty_bitmap_skip_store(bm, false);
6428 }
6429
6430 ret = refresh_total_sectors(bs, bs->total_sectors);
6431 if (ret < 0) {
6432 bs->open_flags |= BDRV_O_INACTIVE;
6433 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006434 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006435 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006436 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006437
6438 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006439 if (parent->klass->activate) {
6440 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006441 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006442 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006443 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006444 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006445 }
6446 }
6447 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006448
6449 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006450}
6451
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006452void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006453{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006454 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006455 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006456
Kevin Wolf88be7b42016-05-20 18:49:07 +02006457 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006458 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006459 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006460
6461 aio_context_acquire(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006462 ret = bdrv_invalidate_cache(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006463 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006464 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006465 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006466 return;
6467 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006468 }
6469}
6470
Kevin Wolf9e372712018-11-23 15:11:14 +01006471static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6472{
6473 BdrvChild *parent;
6474
6475 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006476 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006477 BlockDriverState *parent_bs = parent->opaque;
6478 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6479 return true;
6480 }
6481 }
6482 }
6483
6484 return false;
6485}
6486
6487static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006488{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006489 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006490 int ret;
6491
Max Reitzd470ad42017-11-10 21:31:09 +01006492 if (!bs->drv) {
6493 return -ENOMEDIUM;
6494 }
6495
Kevin Wolf9e372712018-11-23 15:11:14 +01006496 /* Make sure that we don't inactivate a child before its parent.
6497 * It will be covered by recursion from the yet active parent. */
6498 if (bdrv_has_bds_parent(bs, true)) {
6499 return 0;
6500 }
6501
6502 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6503
6504 /* Inactivate this node */
6505 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006506 ret = bs->drv->bdrv_inactivate(bs);
6507 if (ret < 0) {
6508 return ret;
6509 }
6510 }
6511
Kevin Wolf9e372712018-11-23 15:11:14 +01006512 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006513 if (parent->klass->inactivate) {
6514 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01006515 if (ret < 0) {
6516 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006517 }
6518 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006519 }
Kevin Wolf38701b62017-05-04 18:52:39 +02006520
Kevin Wolf9e372712018-11-23 15:11:14 +01006521 bs->open_flags |= BDRV_O_INACTIVE;
6522
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03006523 /*
6524 * Update permissions, they may differ for inactive nodes.
6525 * We only tried to loosen restrictions, so errors are not fatal, ignore
6526 * them.
6527 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006528 bdrv_refresh_perms(bs, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01006529
6530 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02006531 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006532 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02006533 if (ret < 0) {
6534 return ret;
6535 }
6536 }
6537
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006538 return 0;
6539}
6540
6541int bdrv_inactivate_all(void)
6542{
Max Reitz79720af2016-03-16 19:54:44 +01006543 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006544 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006545 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006546 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006547
Kevin Wolf88be7b42016-05-20 18:49:07 +02006548 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006549 AioContext *aio_context = bdrv_get_aio_context(bs);
6550
6551 if (!g_slist_find(aio_ctxs, aio_context)) {
6552 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6553 aio_context_acquire(aio_context);
6554 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006555 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006556
Kevin Wolf9e372712018-11-23 15:11:14 +01006557 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6558 /* Nodes with BDS parents are covered by recursion from the last
6559 * parent that gets inactivated. Don't inactivate them a second
6560 * time if that has already happened. */
6561 if (bdrv_has_bds_parent(bs, false)) {
6562 continue;
6563 }
6564 ret = bdrv_inactivate_recurse(bs);
6565 if (ret < 0) {
6566 bdrv_next_cleanup(&it);
6567 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006568 }
6569 }
6570
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006571out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006572 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6573 AioContext *aio_context = ctx->data;
6574 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006575 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006576 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006577
6578 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006579}
6580
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006581/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006582/* removable device support */
6583
6584/**
6585 * Return TRUE if the media is present
6586 */
Max Reitze031f752015-10-19 17:53:11 +02006587bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006588{
6589 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006590 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006591
Max Reitze031f752015-10-19 17:53:11 +02006592 if (!drv) {
6593 return false;
6594 }
Max Reitz28d7a782015-10-19 17:53:13 +02006595 if (drv->bdrv_is_inserted) {
6596 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006597 }
Max Reitz28d7a782015-10-19 17:53:13 +02006598 QLIST_FOREACH(child, &bs->children, next) {
6599 if (!bdrv_is_inserted(child->bs)) {
6600 return false;
6601 }
6602 }
6603 return true;
bellard19cb3732006-08-19 11:45:59 +00006604}
6605
6606/**
bellard19cb3732006-08-19 11:45:59 +00006607 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6608 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006609void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006610{
6611 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00006612
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006613 if (drv && drv->bdrv_eject) {
6614 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006615 }
bellard19cb3732006-08-19 11:45:59 +00006616}
6617
bellard19cb3732006-08-19 11:45:59 +00006618/**
6619 * Lock or unlock the media (if it is locked, the user won't be able
6620 * to eject it manually).
6621 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006622void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006623{
6624 BlockDriver *drv = bs->drv;
6625
Markus Armbruster025e8492011-09-06 18:58:47 +02006626 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006627
Markus Armbruster025e8492011-09-06 18:58:47 +02006628 if (drv && drv->bdrv_lock_medium) {
6629 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006630 }
6631}
ths985a03b2007-12-24 16:10:43 +00006632
Fam Zheng9fcb0252013-08-23 09:14:46 +08006633/* Get a reference to bs */
6634void bdrv_ref(BlockDriverState *bs)
6635{
6636 bs->refcnt++;
6637}
6638
6639/* Release a previously grabbed reference to bs.
6640 * If after releasing, reference count is zero, the BlockDriverState is
6641 * deleted. */
6642void bdrv_unref(BlockDriverState *bs)
6643{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006644 if (!bs) {
6645 return;
6646 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006647 assert(bs->refcnt > 0);
6648 if (--bs->refcnt == 0) {
6649 bdrv_delete(bs);
6650 }
6651}
6652
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006653struct BdrvOpBlocker {
6654 Error *reason;
6655 QLIST_ENTRY(BdrvOpBlocker) list;
6656};
6657
6658bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6659{
6660 BdrvOpBlocker *blocker;
6661 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6662 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6663 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006664 error_propagate_prepend(errp, error_copy(blocker->reason),
6665 "Node '%s' is busy: ",
6666 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006667 return true;
6668 }
6669 return false;
6670}
6671
6672void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6673{
6674 BdrvOpBlocker *blocker;
6675 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6676
Markus Armbruster5839e532014-08-19 10:31:08 +02006677 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006678 blocker->reason = reason;
6679 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6680}
6681
6682void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6683{
6684 BdrvOpBlocker *blocker, *next;
6685 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6686 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6687 if (blocker->reason == reason) {
6688 QLIST_REMOVE(blocker, list);
6689 g_free(blocker);
6690 }
6691 }
6692}
6693
6694void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6695{
6696 int i;
6697 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6698 bdrv_op_block(bs, i, reason);
6699 }
6700}
6701
6702void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6703{
6704 int i;
6705 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6706 bdrv_op_unblock(bs, i, reason);
6707 }
6708}
6709
6710bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6711{
6712 int i;
6713
6714 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6715 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6716 return false;
6717 }
6718 }
6719 return true;
6720}
6721
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006722void bdrv_img_create(const char *filename, const char *fmt,
6723 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006724 char *options, uint64_t img_size, int flags, bool quiet,
6725 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006726{
Chunyan Liu83d05212014-06-05 17:20:51 +08006727 QemuOptsList *create_opts = NULL;
6728 QemuOpts *opts = NULL;
6729 const char *backing_fmt, *backing_file;
6730 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006731 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006732 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006733 int ret = 0;
6734
6735 /* Find driver and parse its options */
6736 drv = bdrv_find_format(fmt);
6737 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006738 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006739 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006740 }
6741
Max Reitzb65a5e12015-02-05 13:58:12 -05006742 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006743 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006744 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006745 }
6746
Max Reitzc6149722014-12-02 18:32:45 +01006747 if (!drv->create_opts) {
6748 error_setg(errp, "Format driver '%s' does not support image creation",
6749 drv->format_name);
6750 return;
6751 }
6752
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006753 if (!proto_drv->create_opts) {
6754 error_setg(errp, "Protocol driver '%s' does not support image creation",
6755 proto_drv->format_name);
6756 return;
6757 }
6758
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006759 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006760 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006761 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006762
Chunyan Liu83d05212014-06-05 17:20:51 +08006763 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006764
6765 /* Parse -o options */
6766 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02006767 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006768 goto out;
6769 }
6770 }
6771
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006772 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6773 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6774 } else if (img_size != UINT64_C(-1)) {
6775 error_setg(errp, "The image size must be specified only once");
6776 goto out;
6777 }
6778
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006779 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02006780 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02006781 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006782 error_setg(errp, "Backing file not supported for file format '%s'",
6783 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006784 goto out;
6785 }
6786 }
6787
6788 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02006789 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006790 error_setg(errp, "Backing file format not supported for file "
6791 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006792 goto out;
6793 }
6794 }
6795
Chunyan Liu83d05212014-06-05 17:20:51 +08006796 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6797 if (backing_file) {
6798 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006799 error_setg(errp, "Error: Trying to create an image with the "
6800 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01006801 goto out;
6802 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05006803 if (backing_file[0] == '\0') {
6804 error_setg(errp, "Expected backing file name, got empty string");
6805 goto out;
6806 }
Jes Sorensen792da932010-12-16 13:52:17 +01006807 }
6808
Chunyan Liu83d05212014-06-05 17:20:51 +08006809 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006810
John Snow6e6e55f2017-07-17 20:34:22 -04006811 /* The size for the image must always be specified, unless we have a backing
6812 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05006813 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04006814 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6815 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01006816 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04006817 int back_flags;
6818 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02006819
Max Reitz645ae7d2019-02-01 20:29:14 +01006820 full_backing =
6821 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6822 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04006823 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006824 goto out;
6825 }
Max Reitz645ae7d2019-02-01 20:29:14 +01006826 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04006827
6828 /* backing files always opened read-only */
6829 back_flags = flags;
6830 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6831
Fam Zhengcc954f02017-12-15 16:04:45 +08006832 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04006833 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04006834 qdict_put_str(backing_options, "driver", backing_fmt);
6835 }
Fam Zhengcc954f02017-12-15 16:04:45 +08006836 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04006837
6838 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6839 &local_err);
6840 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05006841 if (!bs) {
6842 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04006843 goto out;
6844 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05006845 if (!backing_fmt) {
6846 warn_report("Deprecated use of backing file without explicit "
6847 "backing format (detected format of %s)",
6848 bs->drv->format_name);
6849 if (bs->drv != &bdrv_raw) {
6850 /*
6851 * A probe of raw deserves the most attention:
6852 * leaving the backing format out of the image
6853 * will ensure bs->probed is set (ensuring we
6854 * don't accidentally commit into the backing
6855 * file), and allow more spots to warn the users
6856 * to fix their toolchain when opening this image
6857 * later. For other images, we can safely record
6858 * the format that we probed.
6859 */
6860 backing_fmt = bs->drv->format_name;
6861 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
6862 NULL);
6863 }
6864 }
John Snow6e6e55f2017-07-17 20:34:22 -04006865 if (size == -1) {
6866 /* Opened BS, have no size */
6867 size = bdrv_getlength(bs);
6868 if (size < 0) {
6869 error_setg_errno(errp, -size, "Could not get size of '%s'",
6870 backing_file);
6871 bdrv_unref(bs);
6872 goto out;
6873 }
6874 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6875 }
6876 bdrv_unref(bs);
6877 }
Eric Blaked9f059a2020-07-06 15:39:54 -05006878 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6879 } else if (backing_file && !backing_fmt) {
6880 warn_report("Deprecated use of unopened backing file without "
6881 "explicit backing format, use of this image requires "
6882 "potentially unsafe format probing");
6883 }
John Snow6e6e55f2017-07-17 20:34:22 -04006884
6885 if (size == -1) {
6886 error_setg(errp, "Image creation needs a size parameter");
6887 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006888 }
6889
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006890 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02006891 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08006892 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006893 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05006894 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006895 }
Chunyan Liu83d05212014-06-05 17:20:51 +08006896
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006897 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08006898
Max Reitzcc84d902013-09-06 17:14:26 +02006899 if (ret == -EFBIG) {
6900 /* This is generally a better message than whatever the driver would
6901 * deliver (especially because of the cluster_size_hint), since that
6902 * is most probably not much different from "image too large". */
6903 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08006904 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02006905 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006906 }
Max Reitzcc84d902013-09-06 17:14:26 +02006907 error_setg(errp, "The image size is too large for file format '%s'"
6908 "%s", fmt, cluster_size_hint);
6909 error_free(local_err);
6910 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006911 }
6912
6913out:
Chunyan Liu83d05212014-06-05 17:20:51 +08006914 qemu_opts_del(opts);
6915 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03006916 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006917}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006918
6919AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6920{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00006921 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006922}
6923
Kevin Wolfe336fd42020-10-05 17:58:53 +02006924AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6925{
6926 Coroutine *self = qemu_coroutine_self();
6927 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6928 AioContext *new_ctx;
6929
6930 /*
6931 * Increase bs->in_flight to ensure that this operation is completed before
6932 * moving the node to a different AioContext. Read new_ctx only afterwards.
6933 */
6934 bdrv_inc_in_flight(bs);
6935
6936 new_ctx = bdrv_get_aio_context(bs);
6937 aio_co_reschedule_self(new_ctx);
6938 return old_ctx;
6939}
6940
6941void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6942{
6943 aio_co_reschedule_self(old_ctx);
6944 bdrv_dec_in_flight(bs);
6945}
6946
Kevin Wolf18c6ac12020-10-05 17:58:54 +02006947void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6948{
6949 AioContext *ctx = bdrv_get_aio_context(bs);
6950
6951 /* In the main thread, bs->aio_context won't change concurrently */
6952 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6953
6954 /*
6955 * We're in coroutine context, so we already hold the lock of the main
6956 * loop AioContext. Don't lock it twice to avoid deadlocks.
6957 */
6958 assert(qemu_in_coroutine());
6959 if (ctx != qemu_get_aio_context()) {
6960 aio_context_acquire(ctx);
6961 }
6962}
6963
6964void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6965{
6966 AioContext *ctx = bdrv_get_aio_context(bs);
6967
6968 assert(qemu_in_coroutine());
6969 if (ctx != qemu_get_aio_context()) {
6970 aio_context_release(ctx);
6971 }
6972}
6973
Fam Zheng052a7572017-04-10 20:09:25 +08006974void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6975{
6976 aio_co_enter(bdrv_get_aio_context(bs), co);
6977}
6978
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006979static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6980{
6981 QLIST_REMOVE(ban, list);
6982 g_free(ban);
6983}
6984
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006985static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006986{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006987 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006988
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006989 assert(!bs->walking_aio_notifiers);
6990 bs->walking_aio_notifiers = true;
6991 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6992 if (baf->deleted) {
6993 bdrv_do_remove_aio_context_notifier(baf);
6994 } else {
6995 baf->detach_aio_context(baf->opaque);
6996 }
Max Reitz33384422014-06-20 21:57:33 +02006997 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006998 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6999 * remove remaining aio notifiers if we aren't called again.
7000 */
7001 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02007002
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007003 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007004 bs->drv->bdrv_detach_aio_context(bs);
7005 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007006
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007007 if (bs->quiesce_counter) {
7008 aio_enable_external(bs->aio_context);
7009 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007010 bs->aio_context = NULL;
7011}
7012
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007013static void bdrv_attach_aio_context(BlockDriverState *bs,
7014 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007015{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007016 BdrvAioNotifier *ban, *ban_tmp;
Max Reitz33384422014-06-20 21:57:33 +02007017
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007018 if (bs->quiesce_counter) {
7019 aio_disable_external(new_context);
7020 }
7021
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007022 bs->aio_context = new_context;
7023
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007024 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007025 bs->drv->bdrv_attach_aio_context(bs, new_context);
7026 }
Max Reitz33384422014-06-20 21:57:33 +02007027
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007028 assert(!bs->walking_aio_notifiers);
7029 bs->walking_aio_notifiers = true;
7030 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7031 if (ban->deleted) {
7032 bdrv_do_remove_aio_context_notifier(ban);
7033 } else {
7034 ban->attached_aio_context(new_context, ban->opaque);
7035 }
Max Reitz33384422014-06-20 21:57:33 +02007036 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007037 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007038}
7039
Kevin Wolf42a65f02019-05-07 18:31:38 +02007040/*
7041 * Changes the AioContext used for fd handlers, timers, and BHs by this
7042 * BlockDriverState and all its children and parents.
7043 *
Max Reitz43eaaae2019-07-22 15:30:54 +02007044 * Must be called from the main AioContext.
7045 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02007046 * The caller must own the AioContext lock for the old AioContext of bs, but it
7047 * must not own the AioContext lock for new_context (unless new_context is the
7048 * same as the current context of bs).
7049 *
7050 * @ignore will accumulate all visited BdrvChild object. The caller is
7051 * responsible for freeing the list afterwards.
7052 */
Kevin Wolf53a7d042019-05-06 19:17:59 +02007053void bdrv_set_aio_context_ignore(BlockDriverState *bs,
7054 AioContext *new_context, GSList **ignore)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007055{
Max Reitze037c092019-07-19 11:26:14 +02007056 AioContext *old_context = bdrv_get_aio_context(bs);
Sergio Lopez722d8e72021-02-01 13:50:31 +01007057 GSList *children_to_process = NULL;
7058 GSList *parents_to_process = NULL;
7059 GSList *entry;
7060 BdrvChild *child, *parent;
Kevin Wolf0d837082019-05-06 19:17:58 +02007061
Max Reitz43eaaae2019-07-22 15:30:54 +02007062 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7063
Max Reitze037c092019-07-19 11:26:14 +02007064 if (old_context == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03007065 return;
7066 }
7067
Kevin Wolfd70d5952019-02-08 16:53:37 +01007068 bdrv_drained_begin(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02007069
7070 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02007071 if (g_slist_find(*ignore, child)) {
7072 continue;
7073 }
7074 *ignore = g_slist_prepend(*ignore, child);
Sergio Lopez722d8e72021-02-01 13:50:31 +01007075 children_to_process = g_slist_prepend(children_to_process, child);
Kevin Wolf53a7d042019-05-06 19:17:59 +02007076 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01007077
7078 QLIST_FOREACH(parent, &bs->parents, next_parent) {
7079 if (g_slist_find(*ignore, parent)) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02007080 continue;
7081 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01007082 *ignore = g_slist_prepend(*ignore, parent);
7083 parents_to_process = g_slist_prepend(parents_to_process, parent);
Kevin Wolf0d837082019-05-06 19:17:58 +02007084 }
7085
Sergio Lopez722d8e72021-02-01 13:50:31 +01007086 for (entry = children_to_process;
7087 entry != NULL;
7088 entry = g_slist_next(entry)) {
7089 child = entry->data;
7090 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
7091 }
7092 g_slist_free(children_to_process);
7093
7094 for (entry = parents_to_process;
7095 entry != NULL;
7096 entry = g_slist_next(entry)) {
7097 parent = entry->data;
7098 assert(parent->klass->set_aio_ctx);
7099 parent->klass->set_aio_ctx(parent, new_context, ignore);
7100 }
7101 g_slist_free(parents_to_process);
7102
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007103 bdrv_detach_aio_context(bs);
7104
Max Reitze037c092019-07-19 11:26:14 +02007105 /* Acquire the new context, if necessary */
Max Reitz43eaaae2019-07-22 15:30:54 +02007106 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02007107 aio_context_acquire(new_context);
7108 }
7109
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007110 bdrv_attach_aio_context(bs, new_context);
Max Reitze037c092019-07-19 11:26:14 +02007111
7112 /*
7113 * If this function was recursively called from
7114 * bdrv_set_aio_context_ignore(), there may be nodes in the
7115 * subtree that have not yet been moved to the new AioContext.
7116 * Release the old one so bdrv_drained_end() can poll them.
7117 */
Max Reitz43eaaae2019-07-22 15:30:54 +02007118 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02007119 aio_context_release(old_context);
7120 }
7121
Kevin Wolfd70d5952019-02-08 16:53:37 +01007122 bdrv_drained_end(bs);
Max Reitze037c092019-07-19 11:26:14 +02007123
Max Reitz43eaaae2019-07-22 15:30:54 +02007124 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02007125 aio_context_acquire(old_context);
7126 }
Max Reitz43eaaae2019-07-22 15:30:54 +02007127 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02007128 aio_context_release(new_context);
7129 }
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007130}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02007131
Kevin Wolf5d231842019-05-06 19:17:56 +02007132static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7133 GSList **ignore, Error **errp)
7134{
7135 if (g_slist_find(*ignore, c)) {
7136 return true;
7137 }
7138 *ignore = g_slist_prepend(*ignore, c);
7139
Max Reitzbd86fb92020-05-13 13:05:13 +02007140 /*
7141 * A BdrvChildClass that doesn't handle AioContext changes cannot
7142 * tolerate any AioContext changes
7143 */
7144 if (!c->klass->can_set_aio_ctx) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007145 char *user = bdrv_child_user_desc(c);
7146 error_setg(errp, "Changing iothreads is not supported by %s", user);
7147 g_free(user);
7148 return false;
7149 }
Max Reitzbd86fb92020-05-13 13:05:13 +02007150 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007151 assert(!errp || *errp);
7152 return false;
7153 }
7154 return true;
7155}
7156
7157bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7158 GSList **ignore, Error **errp)
7159{
7160 if (g_slist_find(*ignore, c)) {
7161 return true;
7162 }
7163 *ignore = g_slist_prepend(*ignore, c);
7164 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
7165}
7166
7167/* @ignore will accumulate all visited BdrvChild object. The caller is
7168 * responsible for freeing the list afterwards. */
7169bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7170 GSList **ignore, Error **errp)
7171{
7172 BdrvChild *c;
7173
7174 if (bdrv_get_aio_context(bs) == ctx) {
7175 return true;
7176 }
7177
7178 QLIST_FOREACH(c, &bs->parents, next_parent) {
7179 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
7180 return false;
7181 }
7182 }
7183 QLIST_FOREACH(c, &bs->children, next) {
7184 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
7185 return false;
7186 }
7187 }
7188
7189 return true;
7190}
7191
7192int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7193 BdrvChild *ignore_child, Error **errp)
7194{
7195 GSList *ignore;
7196 bool ret;
7197
7198 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7199 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
7200 g_slist_free(ignore);
7201
7202 if (!ret) {
7203 return -EPERM;
7204 }
7205
Kevin Wolf53a7d042019-05-06 19:17:59 +02007206 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7207 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
7208 g_slist_free(ignore);
7209
Kevin Wolf5d231842019-05-06 19:17:56 +02007210 return 0;
7211}
7212
7213int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7214 Error **errp)
7215{
7216 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
7217}
7218
Max Reitz33384422014-06-20 21:57:33 +02007219void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7220 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7221 void (*detach_aio_context)(void *opaque), void *opaque)
7222{
7223 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7224 *ban = (BdrvAioNotifier){
7225 .attached_aio_context = attached_aio_context,
7226 .detach_aio_context = detach_aio_context,
7227 .opaque = opaque
7228 };
7229
7230 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7231}
7232
7233void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7234 void (*attached_aio_context)(AioContext *,
7235 void *),
7236 void (*detach_aio_context)(void *),
7237 void *opaque)
7238{
7239 BdrvAioNotifier *ban, *ban_next;
7240
7241 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7242 if (ban->attached_aio_context == attached_aio_context &&
7243 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007244 ban->opaque == opaque &&
7245 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007246 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007247 if (bs->walking_aio_notifiers) {
7248 ban->deleted = true;
7249 } else {
7250 bdrv_do_remove_aio_context_notifier(ban);
7251 }
Max Reitz33384422014-06-20 21:57:33 +02007252 return;
7253 }
7254 }
7255
7256 abort();
7257}
7258
Max Reitz77485432014-10-27 11:12:50 +01007259int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007260 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007261 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007262 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007263{
Max Reitzd470ad42017-11-10 21:31:09 +01007264 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007265 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007266 return -ENOMEDIUM;
7267 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007268 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007269 error_setg(errp, "Block driver '%s' does not support option amendment",
7270 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007271 return -ENOTSUP;
7272 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007273 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7274 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007275}
Benoît Canetf6186f42013-10-02 14:33:48 +02007276
Max Reitz5d69b5a2020-02-18 11:34:41 +01007277/*
7278 * This function checks whether the given @to_replace is allowed to be
7279 * replaced by a node that always shows the same data as @bs. This is
7280 * used for example to verify whether the mirror job can replace
7281 * @to_replace by the target mirrored from @bs.
7282 * To be replaceable, @bs and @to_replace may either be guaranteed to
7283 * always show the same data (because they are only connected through
7284 * filters), or some driver may allow replacing one of its children
7285 * because it can guarantee that this child's data is not visible at
7286 * all (for example, for dissenting quorum children that have no other
7287 * parents).
7288 */
7289bool bdrv_recurse_can_replace(BlockDriverState *bs,
7290 BlockDriverState *to_replace)
7291{
Max Reitz93393e62019-06-12 17:03:38 +02007292 BlockDriverState *filtered;
7293
Max Reitz5d69b5a2020-02-18 11:34:41 +01007294 if (!bs || !bs->drv) {
7295 return false;
7296 }
7297
7298 if (bs == to_replace) {
7299 return true;
7300 }
7301
7302 /* See what the driver can do */
7303 if (bs->drv->bdrv_recurse_can_replace) {
7304 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7305 }
7306
7307 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007308 filtered = bdrv_filter_bs(bs);
7309 if (filtered) {
7310 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007311 }
7312
7313 /* Safe default */
7314 return false;
7315}
7316
Max Reitz810803a2020-02-18 11:34:44 +01007317/*
7318 * Check whether the given @node_name can be replaced by a node that
7319 * has the same data as @parent_bs. If so, return @node_name's BDS;
7320 * NULL otherwise.
7321 *
7322 * @node_name must be a (recursive) *child of @parent_bs (or this
7323 * function will return NULL).
7324 *
7325 * The result (whether the node can be replaced or not) is only valid
7326 * for as long as no graph or permission changes occur.
7327 */
Wen Congyange12f3782015-07-17 10:12:22 +08007328BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7329 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007330{
7331 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007332 AioContext *aio_context;
7333
Benoît Canet09158f02014-06-27 18:25:25 +02007334 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007335 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007336 return NULL;
7337 }
7338
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007339 aio_context = bdrv_get_aio_context(to_replace_bs);
7340 aio_context_acquire(aio_context);
7341
Benoît Canet09158f02014-06-27 18:25:25 +02007342 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007343 to_replace_bs = NULL;
7344 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007345 }
7346
7347 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7348 * most non filter in order to prevent data corruption.
7349 * Another benefit is that this tests exclude backing files which are
7350 * blocked by the backing blockers.
7351 */
Max Reitz810803a2020-02-18 11:34:44 +01007352 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7353 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7354 "because it cannot be guaranteed that doing so would not "
7355 "lead to an abrupt change of visible data",
7356 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007357 to_replace_bs = NULL;
7358 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007359 }
7360
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007361out:
7362 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007363 return to_replace_bs;
7364}
Ming Lei448ad912014-07-04 18:04:33 +08007365
Max Reitz97e2f022019-02-01 20:29:27 +01007366/**
7367 * Iterates through the list of runtime option keys that are said to
7368 * be "strong" for a BDS. An option is called "strong" if it changes
7369 * a BDS's data. For example, the null block driver's "size" and
7370 * "read-zeroes" options are strong, but its "latency-ns" option is
7371 * not.
7372 *
7373 * If a key returned by this function ends with a dot, all options
7374 * starting with that prefix are strong.
7375 */
7376static const char *const *strong_options(BlockDriverState *bs,
7377 const char *const *curopt)
7378{
7379 static const char *const global_options[] = {
7380 "driver", "filename", NULL
7381 };
7382
7383 if (!curopt) {
7384 return &global_options[0];
7385 }
7386
7387 curopt++;
7388 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7389 curopt = bs->drv->strong_runtime_opts;
7390 }
7391
7392 return (curopt && *curopt) ? curopt : NULL;
7393}
7394
7395/**
7396 * Copies all strong runtime options from bs->options to the given
7397 * QDict. The set of strong option keys is determined by invoking
7398 * strong_options().
7399 *
7400 * Returns true iff any strong option was present in bs->options (and
7401 * thus copied to the target QDict) with the exception of "filename"
7402 * and "driver". The caller is expected to use this value to decide
7403 * whether the existence of strong options prevents the generation of
7404 * a plain filename.
7405 */
7406static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7407{
7408 bool found_any = false;
7409 const char *const *option_name = NULL;
7410
7411 if (!bs->drv) {
7412 return false;
7413 }
7414
7415 while ((option_name = strong_options(bs, option_name))) {
7416 bool option_given = false;
7417
7418 assert(strlen(*option_name) > 0);
7419 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7420 QObject *entry = qdict_get(bs->options, *option_name);
7421 if (!entry) {
7422 continue;
7423 }
7424
7425 qdict_put_obj(d, *option_name, qobject_ref(entry));
7426 option_given = true;
7427 } else {
7428 const QDictEntry *entry;
7429 for (entry = qdict_first(bs->options); entry;
7430 entry = qdict_next(bs->options, entry))
7431 {
7432 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7433 qdict_put_obj(d, qdict_entry_key(entry),
7434 qobject_ref(qdict_entry_value(entry)));
7435 option_given = true;
7436 }
7437 }
7438 }
7439
7440 /* While "driver" and "filename" need to be included in a JSON filename,
7441 * their existence does not prohibit generation of a plain filename. */
7442 if (!found_any && option_given &&
7443 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7444 {
7445 found_any = true;
7446 }
7447 }
7448
Max Reitz62a01a272019-02-01 20:29:34 +01007449 if (!qdict_haskey(d, "driver")) {
7450 /* Drivers created with bdrv_new_open_driver() may not have a
7451 * @driver option. Add it here. */
7452 qdict_put_str(d, "driver", bs->drv->format_name);
7453 }
7454
Max Reitz97e2f022019-02-01 20:29:27 +01007455 return found_any;
7456}
7457
Max Reitz90993622019-02-01 20:29:09 +01007458/* Note: This function may return false positives; it may return true
7459 * even if opening the backing file specified by bs's image header
7460 * would result in exactly bs->backing. */
Max Reitz0b877d02018-08-01 20:34:11 +02007461bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007462{
7463 if (bs->backing) {
7464 return strcmp(bs->auto_backing_file,
7465 bs->backing->bs->filename);
7466 } else {
7467 /* No backing BDS, so if the image header reports any backing
7468 * file, it must have been suppressed */
7469 return bs->auto_backing_file[0] != '\0';
7470 }
7471}
7472
Max Reitz91af7012014-07-18 20:24:56 +02007473/* Updates the following BDS fields:
7474 * - exact_filename: A filename which may be used for opening a block device
7475 * which (mostly) equals the given BDS (even without any
7476 * other options; so reading and writing must return the same
7477 * results, but caching etc. may be different)
7478 * - full_open_options: Options which, when given when opening a block device
7479 * (without a filename), result in a BDS (mostly)
7480 * equalling the given one
7481 * - filename: If exact_filename is set, it is copied here. Otherwise,
7482 * full_open_options is converted to a JSON object, prefixed with
7483 * "json:" (for use through the JSON pseudo protocol) and put here.
7484 */
7485void bdrv_refresh_filename(BlockDriverState *bs)
7486{
7487 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01007488 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02007489 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02007490 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01007491 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01007492 bool generate_json_filename; /* Whether our default implementation should
7493 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02007494
7495 if (!drv) {
7496 return;
7497 }
7498
Max Reitze24518e2019-02-01 20:29:06 +01007499 /* This BDS's file name may depend on any of its children's file names, so
7500 * refresh those first */
7501 QLIST_FOREACH(child, &bs->children, next) {
7502 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02007503 }
7504
Max Reitzbb808d52019-02-01 20:29:07 +01007505 if (bs->implicit) {
7506 /* For implicit nodes, just copy everything from the single child */
7507 child = QLIST_FIRST(&bs->children);
7508 assert(QLIST_NEXT(child, next) == NULL);
7509
7510 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7511 child->bs->exact_filename);
7512 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7513
Pan Nengyuancb895612020-01-16 16:56:00 +08007514 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01007515 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7516
7517 return;
7518 }
7519
Max Reitz90993622019-02-01 20:29:09 +01007520 backing_overridden = bdrv_backing_overridden(bs);
7521
7522 if (bs->open_flags & BDRV_O_NO_IO) {
7523 /* Without I/O, the backing file does not change anything.
7524 * Therefore, in such a case (primarily qemu-img), we can
7525 * pretend the backing file has not been overridden even if
7526 * it technically has been. */
7527 backing_overridden = false;
7528 }
7529
Max Reitz97e2f022019-02-01 20:29:27 +01007530 /* Gather the options QDict */
7531 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01007532 generate_json_filename = append_strong_runtime_options(opts, bs);
7533 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01007534
7535 if (drv->bdrv_gather_child_options) {
7536 /* Some block drivers may not want to present all of their children's
7537 * options, or name them differently from BdrvChild.name */
7538 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7539 } else {
7540 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02007541 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01007542 /* We can skip the backing BDS if it has not been overridden */
7543 continue;
7544 }
7545
7546 qdict_put(opts, child->name,
7547 qobject_ref(child->bs->full_open_options));
7548 }
7549
7550 if (backing_overridden && !bs->backing) {
7551 /* Force no backing file */
7552 qdict_put_null(opts, "backing");
7553 }
7554 }
7555
7556 qobject_unref(bs->full_open_options);
7557 bs->full_open_options = opts;
7558
Max Reitz52f72d62019-06-12 17:43:03 +02007559 primary_child_bs = bdrv_primary_bs(bs);
7560
Max Reitz998b3a12019-02-01 20:29:28 +01007561 if (drv->bdrv_refresh_filename) {
7562 /* Obsolete information is of no use here, so drop the old file name
7563 * information before refreshing it */
7564 bs->exact_filename[0] = '\0';
7565
7566 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02007567 } else if (primary_child_bs) {
7568 /*
7569 * Try to reconstruct valid information from the underlying
7570 * file -- this only works for format nodes (filter nodes
7571 * cannot be probed and as such must be selected by the user
7572 * either through an options dict, or through a special
7573 * filename which the filter driver must construct in its
7574 * .bdrv_refresh_filename() implementation).
7575 */
Max Reitz998b3a12019-02-01 20:29:28 +01007576
7577 bs->exact_filename[0] = '\0';
7578
Max Reitzfb695c72019-02-01 20:29:29 +01007579 /*
7580 * We can use the underlying file's filename if:
7581 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007582 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007583 * - the file is a protocol BDS, and
7584 * - opening that file (as this BDS's format) will automatically create
7585 * the BDS tree we have right now, that is:
7586 * - the user did not significantly change this BDS's behavior with
7587 * some explicit (strong) options
7588 * - no non-file child of this BDS has been overridden by the user
7589 * Both of these conditions are represented by generate_json_filename.
7590 */
Max Reitz52f72d62019-06-12 17:43:03 +02007591 if (primary_child_bs->exact_filename[0] &&
7592 primary_child_bs->drv->bdrv_file_open &&
7593 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007594 {
Max Reitz52f72d62019-06-12 17:43:03 +02007595 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007596 }
7597 }
7598
Max Reitz91af7012014-07-18 20:24:56 +02007599 if (bs->exact_filename[0]) {
7600 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007601 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007602 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007603 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007604 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007605 /* Give user a hint if we truncated things. */
7606 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7607 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007608 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007609 }
7610}
Wen Congyange06018a2016-05-10 15:36:37 +08007611
Max Reitz1e89d0f2019-02-01 20:29:18 +01007612char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7613{
7614 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007615 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007616
7617 if (!drv) {
7618 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7619 return NULL;
7620 }
7621
7622 if (drv->bdrv_dirname) {
7623 return drv->bdrv_dirname(bs, errp);
7624 }
7625
Max Reitz52f72d62019-06-12 17:43:03 +02007626 child_bs = bdrv_primary_bs(bs);
7627 if (child_bs) {
7628 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007629 }
7630
7631 bdrv_refresh_filename(bs);
7632 if (bs->exact_filename[0] != '\0') {
7633 return path_combine(bs->exact_filename, "");
7634 }
7635
7636 error_setg(errp, "Cannot generate a base directory for %s nodes",
7637 drv->format_name);
7638 return NULL;
7639}
7640
Wen Congyange06018a2016-05-10 15:36:37 +08007641/*
7642 * Hot add/remove a BDS's child. So the user can take a child offline when
7643 * it is broken and take a new child online
7644 */
7645void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7646 Error **errp)
7647{
7648
7649 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7650 error_setg(errp, "The node %s does not support adding a child",
7651 bdrv_get_device_or_node_name(parent_bs));
7652 return;
7653 }
7654
7655 if (!QLIST_EMPTY(&child_bs->parents)) {
7656 error_setg(errp, "The node %s already has a parent",
7657 child_bs->node_name);
7658 return;
7659 }
7660
7661 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7662}
7663
7664void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7665{
7666 BdrvChild *tmp;
7667
7668 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7669 error_setg(errp, "The node %s does not support removing a child",
7670 bdrv_get_device_or_node_name(parent_bs));
7671 return;
7672 }
7673
7674 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7675 if (tmp == child) {
7676 break;
7677 }
7678 }
7679
7680 if (!tmp) {
7681 error_setg(errp, "The node %s does not have a child named %s",
7682 bdrv_get_device_or_node_name(parent_bs),
7683 bdrv_get_device_or_node_name(child->bs));
7684 return;
7685 }
7686
7687 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7688}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007689
7690int bdrv_make_empty(BdrvChild *c, Error **errp)
7691{
7692 BlockDriver *drv = c->bs->drv;
7693 int ret;
7694
7695 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7696
7697 if (!drv->bdrv_make_empty) {
7698 error_setg(errp, "%s does not support emptying nodes",
7699 drv->format_name);
7700 return -ENOTSUP;
7701 }
7702
7703 ret = drv->bdrv_make_empty(c->bs);
7704 if (ret < 0) {
7705 error_setg_errno(errp, -ret, "Failed to empty %s",
7706 c->bs->filename);
7707 return ret;
7708 }
7709
7710 return 0;
7711}
Max Reitz9a6fc882019-05-31 15:23:11 +02007712
7713/*
7714 * Return the child that @bs acts as an overlay for, and from which data may be
7715 * copied in COW or COR operations. Usually this is the backing file.
7716 */
7717BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7718{
7719 if (!bs || !bs->drv) {
7720 return NULL;
7721 }
7722
7723 if (bs->drv->is_filter) {
7724 return NULL;
7725 }
7726
7727 if (!bs->backing) {
7728 return NULL;
7729 }
7730
7731 assert(bs->backing->role & BDRV_CHILD_COW);
7732 return bs->backing;
7733}
7734
7735/*
7736 * If @bs acts as a filter for exactly one of its children, return
7737 * that child.
7738 */
7739BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7740{
7741 BdrvChild *c;
7742
7743 if (!bs || !bs->drv) {
7744 return NULL;
7745 }
7746
7747 if (!bs->drv->is_filter) {
7748 return NULL;
7749 }
7750
7751 /* Only one of @backing or @file may be used */
7752 assert(!(bs->backing && bs->file));
7753
7754 c = bs->backing ?: bs->file;
7755 if (!c) {
7756 return NULL;
7757 }
7758
7759 assert(c->role & BDRV_CHILD_FILTERED);
7760 return c;
7761}
7762
7763/*
7764 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7765 * whichever is non-NULL.
7766 *
7767 * Return NULL if both are NULL.
7768 */
7769BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7770{
7771 BdrvChild *cow_child = bdrv_cow_child(bs);
7772 BdrvChild *filter_child = bdrv_filter_child(bs);
7773
7774 /* Filter nodes cannot have COW backing files */
7775 assert(!(cow_child && filter_child));
7776
7777 return cow_child ?: filter_child;
7778}
7779
7780/*
7781 * Return the primary child of this node: For filters, that is the
7782 * filtered child. For other nodes, that is usually the child storing
7783 * metadata.
7784 * (A generally more helpful description is that this is (usually) the
7785 * child that has the same filename as @bs.)
7786 *
7787 * Drivers do not necessarily have a primary child; for example quorum
7788 * does not.
7789 */
7790BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7791{
7792 BdrvChild *c, *found = NULL;
7793
7794 QLIST_FOREACH(c, &bs->children, next) {
7795 if (c->role & BDRV_CHILD_PRIMARY) {
7796 assert(!found);
7797 found = c;
7798 }
7799 }
7800
7801 return found;
7802}
Max Reitzd38d7eb2019-06-12 15:06:37 +02007803
7804static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7805 bool stop_on_explicit_filter)
7806{
7807 BdrvChild *c;
7808
7809 if (!bs) {
7810 return NULL;
7811 }
7812
7813 while (!(stop_on_explicit_filter && !bs->implicit)) {
7814 c = bdrv_filter_child(bs);
7815 if (!c) {
7816 /*
7817 * A filter that is embedded in a working block graph must
7818 * have a child. Assert this here so this function does
7819 * not return a filter node that is not expected by the
7820 * caller.
7821 */
7822 assert(!bs->drv || !bs->drv->is_filter);
7823 break;
7824 }
7825 bs = c->bs;
7826 }
7827 /*
7828 * Note that this treats nodes with bs->drv == NULL as not being
7829 * filters (bs->drv == NULL should be replaced by something else
7830 * anyway).
7831 * The advantage of this behavior is that this function will thus
7832 * always return a non-NULL value (given a non-NULL @bs).
7833 */
7834
7835 return bs;
7836}
7837
7838/*
7839 * Return the first BDS that has not been added implicitly or that
7840 * does not have a filtered child down the chain starting from @bs
7841 * (including @bs itself).
7842 */
7843BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7844{
7845 return bdrv_do_skip_filters(bs, true);
7846}
7847
7848/*
7849 * Return the first BDS that does not have a filtered child down the
7850 * chain starting from @bs (including @bs itself).
7851 */
7852BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7853{
7854 return bdrv_do_skip_filters(bs, false);
7855}
7856
7857/*
7858 * For a backing chain, return the first non-filter backing image of
7859 * the first non-filter image.
7860 */
7861BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7862{
7863 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
7864}