blob: 2daff6d29a5a60bca5531c5c8d0f578d2639152b [file] [log] [blame]
bellardfc01f7e2003-06-30 10:03:06 +00001/*
2 * QEMU System Emulator block driver
ths5fafdf22007-09-16 21:08:06 +00003 *
bellardfc01f7e2003-06-30 10:03:06 +00004 * Copyright (c) 2003 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellardfc01f7e2003-06-30 10:03:06 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
Markus Armbrustere688df62018-02-01 12:18:31 +010024
Peter Maydelld38ea872016-01-29 17:50:05 +000025#include "qemu/osdep.h"
Daniel P. Berrange0ab8ed12017-01-25 16:14:15 +000026#include "block/trace.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010027#include "block/block_int.h"
28#include "block/blockjob.h"
Max Reitz0c9b70d2020-10-27 20:05:42 +010029#include "block/fuse.h"
Kevin Wolfcd7fca92016-07-06 11:22:39 +020030#include "block/nbd.h"
Max Reitz609f45e2018-06-14 21:14:28 +020031#include "block/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010032#include "qemu/error-report.h"
Marc-André Lureau5e5733e2019-08-29 22:34:43 +040033#include "block/module_block.h"
Markus Armbrusterdb725812019-08-12 07:23:50 +020034#include "qemu/main-loop.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010035#include "qemu/module.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010036#include "qapi/error.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010037#include "qapi/qmp/qdict.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010038#include "qapi/qmp/qjson.h"
Max Reitze59a0cf2018-02-24 16:40:32 +010039#include "qapi/qmp/qnull.h"
Markus Armbrusterfc81fa12018-02-01 12:18:40 +010040#include "qapi/qmp/qstring.h"
Kevin Wolfe1d74bc2018-01-10 15:52:33 +010041#include "qapi/qobject-output-visitor.h"
42#include "qapi/qapi-visit-block-core.h"
Markus Armbrusterbfb197e2014-10-07 13:59:11 +020043#include "sysemu/block-backend.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010044#include "sysemu/sysemu.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010045#include "qemu/notify.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010046#include "qemu/option.h"
Daniel P. Berrange10817bf2015-09-01 14:48:02 +010047#include "qemu/coroutine.h"
Benoît Canetc13163f2014-01-23 21:31:34 +010048#include "block/qapi.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010049#include "qemu/timer.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020050#include "qemu/cutils.h"
51#include "qemu/id.h"
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +030052#include "block/coroutines.h"
bellardfc01f7e2003-06-30 10:03:06 +000053
Juan Quintela71e72a12009-07-27 16:12:56 +020054#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000055#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000056#include <sys/queue.h>
blueswir1c5e97232009-03-07 20:06:23 +000057#ifndef __DragonFly__
bellard7674e7b2005-04-26 21:59:26 +000058#include <sys/disk.h>
59#endif
blueswir1c5e97232009-03-07 20:06:23 +000060#endif
bellard7674e7b2005-04-26 21:59:26 +000061
aliguori49dc7682009-03-08 16:26:59 +000062#ifdef _WIN32
63#include <windows.h>
64#endif
65
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010066#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
67
Benoît Canetdc364f42014-01-23 21:31:32 +010068static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
69 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
70
Max Reitz2c1d04e2016-01-29 16:36:11 +010071static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
72 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
73
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010074static QLIST_HEAD(, BlockDriver) bdrv_drivers =
75 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000076
Max Reitz5b363932016-05-17 16:41:31 +020077static BlockDriverState *bdrv_open_inherit(const char *filename,
78 const char *reference,
79 QDict *options, int flags,
80 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +020081 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +020082 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +020083 Error **errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +020084
Markus Armbrustereb852012009-10-27 18:41:44 +010085/* If non-zero, use only whitelisted block drivers */
86static int use_bdrv_whitelist;
87
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +000088#ifdef _WIN32
89static int is_windows_drive_prefix(const char *filename)
90{
91 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
92 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
93 filename[1] == ':');
94}
95
96int is_windows_drive(const char *filename)
97{
98 if (is_windows_drive_prefix(filename) &&
99 filename[2] == '\0')
100 return 1;
101 if (strstart(filename, "\\\\.\\", NULL) ||
102 strstart(filename, "//./", NULL))
103 return 1;
104 return 0;
105}
106#endif
107
Kevin Wolf339064d2013-11-28 10:23:32 +0100108size_t bdrv_opt_mem_align(BlockDriverState *bs)
109{
110 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300111 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800112 return MAX(4096, qemu_real_host_page_size);
Kevin Wolf339064d2013-11-28 10:23:32 +0100113 }
114
115 return bs->bl.opt_mem_alignment;
116}
117
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300118size_t bdrv_min_mem_align(BlockDriverState *bs)
119{
120 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300121 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800122 return MAX(4096, qemu_real_host_page_size);
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300123 }
124
125 return bs->bl.min_mem_alignment;
126}
127
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000128/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100129int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000130{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200131 const char *p;
132
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000133#ifdef _WIN32
134 if (is_windows_drive(path) ||
135 is_windows_drive_prefix(path)) {
136 return 0;
137 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200138 p = path + strcspn(path, ":/\\");
139#else
140 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000141#endif
142
Paolo Bonzini947995c2012-05-08 16:51:48 +0200143 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000144}
145
bellard83f64092006-08-01 16:21:11 +0000146int path_is_absolute(const char *path)
147{
bellard21664422007-01-07 18:22:37 +0000148#ifdef _WIN32
149 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200150 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000151 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200152 }
153 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000154#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200155 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000156#endif
bellard83f64092006-08-01 16:21:11 +0000157}
158
Max Reitz009b03a2019-02-01 20:29:13 +0100159/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000160 path to it by considering it is relative to base_path. URL are
161 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100162char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000163{
Max Reitz009b03a2019-02-01 20:29:13 +0100164 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000165 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100166 char *result;
bellard83f64092006-08-01 16:21:11 +0000167 int len;
168
bellard83f64092006-08-01 16:21:11 +0000169 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100170 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000171 }
Max Reitz009b03a2019-02-01 20:29:13 +0100172
173 if (path_has_protocol(base_path)) {
174 protocol_stripped = strchr(base_path, ':');
175 if (protocol_stripped) {
176 protocol_stripped++;
177 }
178 }
179 p = protocol_stripped ?: base_path;
180
181 p1 = strrchr(base_path, '/');
182#ifdef _WIN32
183 {
184 const char *p2;
185 p2 = strrchr(base_path, '\\');
186 if (!p1 || p2 > p1) {
187 p1 = p2;
188 }
189 }
190#endif
191 if (p1) {
192 p1++;
193 } else {
194 p1 = base_path;
195 }
196 if (p1 > p) {
197 p = p1;
198 }
199 len = p - base_path;
200
201 result = g_malloc(len + strlen(filename) + 1);
202 memcpy(result, base_path, len);
203 strcpy(result + len, filename);
204
205 return result;
206}
207
Max Reitz03c320d2017-05-22 21:52:16 +0200208/*
209 * Helper function for bdrv_parse_filename() implementations to remove optional
210 * protocol prefixes (especially "file:") from a filename and for putting the
211 * stripped filename into the options QDict if there is such a prefix.
212 */
213void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
214 QDict *options)
215{
216 if (strstart(filename, prefix, &filename)) {
217 /* Stripping the explicit protocol prefix may result in a protocol
218 * prefix being (wrongly) detected (if the filename contains a colon) */
219 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100220 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200221
222 /* This means there is some colon before the first slash; therefore,
223 * this cannot be an absolute path */
224 assert(!path_is_absolute(filename));
225
226 /* And we can thus fix the protocol detection issue by prefixing it
227 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100228 fat_filename = g_string_new("./");
229 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200230
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100231 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200232
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100233 qdict_put(options, "filename",
234 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200235 } else {
236 /* If no protocol prefix was detected, we can use the shortened
237 * filename as-is */
238 qdict_put_str(options, "filename", filename);
239 }
240 }
241}
242
243
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200244/* Returns whether the image file is opened as read-only. Note that this can
245 * return false and writing to the image file is still not possible because the
246 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400247bool bdrv_is_read_only(BlockDriverState *bs)
248{
249 return bs->read_only;
250}
251
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200252int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
253 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400254{
Jeff Codye2b82472017-04-07 16:55:26 -0400255 /* Do not set read_only if copy_on_read is enabled */
256 if (bs->copy_on_read && read_only) {
257 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
258 bdrv_get_device_or_node_name(bs));
259 return -EINVAL;
260 }
261
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400262 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200263 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
264 !ignore_allow_rdw)
265 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400266 error_setg(errp, "Node '%s' is read only",
267 bdrv_get_device_or_node_name(bs));
268 return -EPERM;
269 }
270
Jeff Cody45803a02017-04-07 16:55:29 -0400271 return 0;
272}
273
Kevin Wolfeaa24102018-10-12 11:27:41 +0200274/*
275 * Called by a driver that can only provide a read-only image.
276 *
277 * Returns 0 if the node is already read-only or it could switch the node to
278 * read-only because BDRV_O_AUTO_RDONLY is set.
279 *
280 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
281 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
282 * is not NULL, it is used as the error message for the Error object.
283 */
284int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
285 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400286{
287 int ret = 0;
288
Kevin Wolfeaa24102018-10-12 11:27:41 +0200289 if (!(bs->open_flags & BDRV_O_RDWR)) {
290 return 0;
291 }
292 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
293 goto fail;
294 }
295
296 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400297 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200298 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400299 }
300
Kevin Wolfeaa24102018-10-12 11:27:41 +0200301 bs->read_only = true;
302 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200303
Jeff Codye2b82472017-04-07 16:55:26 -0400304 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200305
306fail:
307 error_setg(errp, "%s", errmsg ?: "Image is read-only");
308 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400309}
310
Max Reitz645ae7d2019-02-01 20:29:14 +0100311/*
312 * If @backing is empty, this function returns NULL without setting
313 * @errp. In all other cases, NULL will only be returned with @errp
314 * set.
315 *
316 * Therefore, a return value of NULL without @errp set means that
317 * there is no backing file; if @errp is set, there is one but its
318 * absolute filename cannot be generated.
319 */
320char *bdrv_get_full_backing_filename_from_filename(const char *backed,
321 const char *backing,
322 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100323{
Max Reitz645ae7d2019-02-01 20:29:14 +0100324 if (backing[0] == '\0') {
325 return NULL;
326 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
327 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100328 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
329 error_setg(errp, "Cannot use relative backing file names for '%s'",
330 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100331 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100332 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100333 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100334 }
335}
336
Max Reitz9f4793d2019-02-01 20:29:16 +0100337/*
338 * If @filename is empty or NULL, this function returns NULL without
339 * setting @errp. In all other cases, NULL will only be returned with
340 * @errp set.
341 */
342static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
343 const char *filename, Error **errp)
344{
Max Reitz8df68612019-02-01 20:29:23 +0100345 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100346
Max Reitz8df68612019-02-01 20:29:23 +0100347 if (!filename || filename[0] == '\0') {
348 return NULL;
349 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
350 return g_strdup(filename);
351 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100352
Max Reitz8df68612019-02-01 20:29:23 +0100353 dir = bdrv_dirname(relative_to, errp);
354 if (!dir) {
355 return NULL;
356 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100357
Max Reitz8df68612019-02-01 20:29:23 +0100358 full_name = g_strconcat(dir, filename, NULL);
359 g_free(dir);
360 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100361}
362
Max Reitz6b6833c2019-02-01 20:29:15 +0100363char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200364{
Max Reitz9f4793d2019-02-01 20:29:16 +0100365 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200366}
367
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100368void bdrv_register(BlockDriver *bdrv)
369{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100370 assert(bdrv->format_name);
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100371 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000372}
bellardb3380822004-03-14 21:38:54 +0000373
Markus Armbrustere4e99862014-10-07 13:59:03 +0200374BlockDriverState *bdrv_new(void)
375{
376 BlockDriverState *bs;
377 int i;
378
Markus Armbruster5839e532014-08-19 10:31:08 +0200379 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800380 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800381 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
382 QLIST_INIT(&bs->op_blockers[i]);
383 }
Stefan Hajnoczid616b222013-06-24 17:13:10 +0200384 notifier_with_return_list_init(&bs->before_write_notifiers);
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200385 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200386 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800387 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200388 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200389
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300390 qemu_co_queue_init(&bs->flush_queue);
391
Kevin Wolf0f122642018-03-28 18:29:18 +0200392 for (i = 0; i < bdrv_drain_all_count; i++) {
393 bdrv_drained_begin(bs);
394 }
395
Max Reitz2c1d04e2016-01-29 16:36:11 +0100396 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
397
bellardb3380822004-03-14 21:38:54 +0000398 return bs;
399}
400
Marc Mari88d88792016-08-12 09:27:03 -0400401static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000402{
403 BlockDriver *drv1;
Marc Mari88d88792016-08-12 09:27:03 -0400404
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100405 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
406 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000407 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100408 }
bellardea2384d2004-08-01 21:59:26 +0000409 }
Marc Mari88d88792016-08-12 09:27:03 -0400410
bellardea2384d2004-08-01 21:59:26 +0000411 return NULL;
412}
413
Marc Mari88d88792016-08-12 09:27:03 -0400414BlockDriver *bdrv_find_format(const char *format_name)
415{
416 BlockDriver *drv1;
417 int i;
418
419 drv1 = bdrv_do_find_format(format_name);
420 if (drv1) {
421 return drv1;
422 }
423
424 /* The driver isn't registered, maybe we need to load a module */
425 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
426 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
427 block_module_load_one(block_driver_modules[i].library_name);
428 break;
429 }
430 }
431
432 return bdrv_do_find_format(format_name);
433}
434
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300435static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100436{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800437 static const char *whitelist_rw[] = {
438 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200439 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800440 };
441 static const char *whitelist_ro[] = {
442 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200443 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100444 };
445 const char **p;
446
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800447 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100448 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800449 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100450
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800451 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300452 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100453 return 1;
454 }
455 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800456 if (read_only) {
457 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300458 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800459 return 1;
460 }
461 }
462 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100463 return 0;
464}
465
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300466int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
467{
468 return bdrv_format_is_whitelisted(drv->format_name, read_only);
469}
470
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000471bool bdrv_uses_whitelist(void)
472{
473 return use_bdrv_whitelist;
474}
475
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800476typedef struct CreateCo {
477 BlockDriver *drv;
478 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800479 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800480 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200481 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800482} CreateCo;
483
484static void coroutine_fn bdrv_create_co_entry(void *opaque)
485{
Max Reitzcc84d902013-09-06 17:14:26 +0200486 Error *local_err = NULL;
487 int ret;
488
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800489 CreateCo *cco = opaque;
490 assert(cco->drv);
491
Maxim Levitskyb92902d2020-03-26 03:12:17 +0200492 ret = cco->drv->bdrv_co_create_opts(cco->drv,
493 cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300494 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200495 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800496}
497
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200498int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800499 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000500{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800501 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200502
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800503 Coroutine *co;
504 CreateCo cco = {
505 .drv = drv,
506 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800507 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800508 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200509 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800510 };
511
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100512 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200513 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300514 ret = -ENOTSUP;
515 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800516 }
517
518 if (qemu_in_coroutine()) {
519 /* Fast-path if already in coroutine context */
520 bdrv_create_co_entry(&cco);
521 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200522 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
523 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800524 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200525 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800526 }
527 }
528
529 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200530 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100531 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200532 error_propagate(errp, cco.err);
533 } else {
534 error_setg_errno(errp, -ret, "Could not create image");
535 }
536 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800537
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300538out:
539 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800540 return ret;
bellardea2384d2004-08-01 21:59:26 +0000541}
542
Max Reitzfd171462020-01-22 17:45:29 +0100543/**
544 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
545 * least the given @minimum_size.
546 *
547 * On success, return @blk's actual length.
548 * Otherwise, return -errno.
549 */
550static int64_t create_file_fallback_truncate(BlockBackend *blk,
551 int64_t minimum_size, Error **errp)
552{
553 Error *local_err = NULL;
554 int64_t size;
555 int ret;
556
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200557 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
558 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100559 if (ret < 0 && ret != -ENOTSUP) {
560 error_propagate(errp, local_err);
561 return ret;
562 }
563
564 size = blk_getlength(blk);
565 if (size < 0) {
566 error_free(local_err);
567 error_setg_errno(errp, -size,
568 "Failed to inquire the new image file's length");
569 return size;
570 }
571
572 if (size < minimum_size) {
573 /* Need to grow the image, but we failed to do that */
574 error_propagate(errp, local_err);
575 return -ENOTSUP;
576 }
577
578 error_free(local_err);
579 local_err = NULL;
580
581 return size;
582}
583
584/**
585 * Helper function for bdrv_create_file_fallback(): Zero the first
586 * sector to remove any potentially pre-existing image header.
587 */
588static int create_file_fallback_zero_first_sector(BlockBackend *blk,
589 int64_t current_size,
590 Error **errp)
591{
592 int64_t bytes_to_clear;
593 int ret;
594
595 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
596 if (bytes_to_clear) {
597 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
598 if (ret < 0) {
599 error_setg_errno(errp, -ret,
600 "Failed to clear the new image's first sector");
601 return ret;
602 }
603 }
604
605 return 0;
606}
607
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200608/**
609 * Simple implementation of bdrv_co_create_opts for protocol drivers
610 * which only support creation via opening a file
611 * (usually existing raw storage device)
612 */
613int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
614 const char *filename,
615 QemuOpts *opts,
616 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100617{
618 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100619 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100620 int64_t size = 0;
621 char *buf = NULL;
622 PreallocMode prealloc;
623 Error *local_err = NULL;
624 int ret;
625
626 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
627 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
628 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
629 PREALLOC_MODE_OFF, &local_err);
630 g_free(buf);
631 if (local_err) {
632 error_propagate(errp, local_err);
633 return -EINVAL;
634 }
635
636 if (prealloc != PREALLOC_MODE_OFF) {
637 error_setg(errp, "Unsupported preallocation mode '%s'",
638 PreallocMode_str(prealloc));
639 return -ENOTSUP;
640 }
641
Max Reitzeeea1fa2020-02-25 16:56:18 +0100642 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100643 qdict_put_str(options, "driver", drv->format_name);
644
645 blk = blk_new_open(filename, NULL, options,
646 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
647 if (!blk) {
648 error_prepend(errp, "Protocol driver '%s' does not support image "
649 "creation, and opening the image failed: ",
650 drv->format_name);
651 return -EINVAL;
652 }
653
654 size = create_file_fallback_truncate(blk, size, errp);
655 if (size < 0) {
656 ret = size;
657 goto out;
658 }
659
660 ret = create_file_fallback_zero_first_sector(blk, size, errp);
661 if (ret < 0) {
662 goto out;
663 }
664
665 ret = 0;
666out:
667 blk_unref(blk);
668 return ret;
669}
670
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800671int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200672{
673 BlockDriver *drv;
674
Max Reitzb65a5e12015-02-05 13:58:12 -0500675 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200676 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000677 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200678 }
679
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200680 return bdrv_create(drv, filename, opts, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200681}
682
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300683int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
684{
685 Error *local_err = NULL;
686 int ret;
687
688 assert(bs != NULL);
689
690 if (!bs->drv) {
691 error_setg(errp, "Block node '%s' is not opened", bs->filename);
692 return -ENOMEDIUM;
693 }
694
695 if (!bs->drv->bdrv_co_delete_file) {
696 error_setg(errp, "Driver '%s' does not support image deletion",
697 bs->drv->format_name);
698 return -ENOTSUP;
699 }
700
701 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
702 if (ret < 0) {
703 error_propagate(errp, local_err);
704 }
705
706 return ret;
707}
708
Maxim Levitskya890f082020-12-17 19:09:03 +0200709void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
710{
711 Error *local_err = NULL;
712 int ret;
713
714 if (!bs) {
715 return;
716 }
717
718 ret = bdrv_co_delete_file(bs, &local_err);
719 /*
720 * ENOTSUP will happen if the block driver doesn't support
721 * the 'bdrv_co_delete_file' interface. This is a predictable
722 * scenario and shouldn't be reported back to the user.
723 */
724 if (ret == -ENOTSUP) {
725 error_free(local_err);
726 } else if (ret < 0) {
727 error_report_err(local_err);
728 }
729}
730
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100731/**
732 * Try to get @bs's logical and physical block size.
733 * On success, store them in @bsz struct and return 0.
734 * On failure return -errno.
735 * @bs must not be empty.
736 */
737int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
738{
739 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200740 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100741
742 if (drv && drv->bdrv_probe_blocksizes) {
743 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200744 } else if (filtered) {
745 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100746 }
747
748 return -ENOTSUP;
749}
750
751/**
752 * Try to get @bs's geometry (cyls, heads, sectors).
753 * On success, store them in @geo struct and return 0.
754 * On failure return -errno.
755 * @bs must not be empty.
756 */
757int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
758{
759 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200760 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100761
762 if (drv && drv->bdrv_probe_geometry) {
763 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200764 } else if (filtered) {
765 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100766 }
767
768 return -ENOTSUP;
769}
770
Jim Meyeringeba25052012-05-28 09:27:54 +0200771/*
772 * Create a uniquely-named empty temporary file.
773 * Return 0 upon success, otherwise a negative errno value.
774 */
775int get_tmp_filename(char *filename, int size)
776{
bellardd5249392004-08-03 21:14:23 +0000777#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000778 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200779 /* GetTempFileName requires that its output buffer (4th param)
780 have length MAX_PATH or greater. */
781 assert(size >= MAX_PATH);
782 return (GetTempPath(MAX_PATH, temp_dir)
783 && GetTempFileName(temp_dir, "qem", 0, filename)
784 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000785#else
bellardea2384d2004-08-01 21:59:26 +0000786 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000787 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000788 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530789 if (!tmpdir) {
790 tmpdir = "/var/tmp";
791 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200792 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
793 return -EOVERFLOW;
794 }
bellardea2384d2004-08-01 21:59:26 +0000795 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800796 if (fd < 0) {
797 return -errno;
798 }
799 if (close(fd) != 0) {
800 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200801 return -errno;
802 }
803 return 0;
bellardd5249392004-08-03 21:14:23 +0000804#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200805}
bellardea2384d2004-08-01 21:59:26 +0000806
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200807/*
808 * Detect host devices. By convention, /dev/cdrom[N] is always
809 * recognized as a host CDROM.
810 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200811static BlockDriver *find_hdev_driver(const char *filename)
812{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200813 int score_max = 0, score;
814 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200815
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100816 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200817 if (d->bdrv_probe_device) {
818 score = d->bdrv_probe_device(filename);
819 if (score > score_max) {
820 score_max = score;
821 drv = d;
822 }
823 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200824 }
825
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200826 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200827}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200828
Marc Mari88d88792016-08-12 09:27:03 -0400829static BlockDriver *bdrv_do_find_protocol(const char *protocol)
830{
831 BlockDriver *drv1;
832
833 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
834 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
835 return drv1;
836 }
837 }
838
839 return NULL;
840}
841
Kevin Wolf98289622013-07-10 15:47:39 +0200842BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500843 bool allow_protocol_prefix,
844 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200845{
846 BlockDriver *drv1;
847 char protocol[128];
848 int len;
849 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400850 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200851
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200852 /* TODO Drivers without bdrv_file_open must be specified explicitly */
853
Christoph Hellwig39508e72010-06-23 12:25:17 +0200854 /*
855 * XXX(hch): we really should not let host device detection
856 * override an explicit protocol specification, but moving this
857 * later breaks access to device names with colons in them.
858 * Thanks to the brain-dead persistent naming schemes on udev-
859 * based Linux systems those actually are quite common.
860 */
861 drv1 = find_hdev_driver(filename);
862 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200863 return drv1;
864 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200865
Kevin Wolf98289622013-07-10 15:47:39 +0200866 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100867 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200868 }
Kevin Wolf98289622013-07-10 15:47:39 +0200869
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000870 p = strchr(filename, ':');
871 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200872 len = p - filename;
873 if (len > sizeof(protocol) - 1)
874 len = sizeof(protocol) - 1;
875 memcpy(protocol, filename, len);
876 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400877
878 drv1 = bdrv_do_find_protocol(protocol);
879 if (drv1) {
880 return drv1;
881 }
882
883 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
884 if (block_driver_modules[i].protocol_name &&
885 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
886 block_module_load_one(block_driver_modules[i].library_name);
887 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200888 }
889 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500890
Marc Mari88d88792016-08-12 09:27:03 -0400891 drv1 = bdrv_do_find_protocol(protocol);
892 if (!drv1) {
893 error_setg(errp, "Unknown protocol '%s'", protocol);
894 }
895 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200896}
897
Markus Armbrusterc6684242014-11-20 16:27:10 +0100898/*
899 * Guess image format by probing its contents.
900 * This is not a good idea when your image is raw (CVE-2008-2004), but
901 * we do it anyway for backward compatibility.
902 *
903 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100904 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
905 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100906 * @filename is its filename.
907 *
908 * For all block drivers, call the bdrv_probe() method to get its
909 * probing score.
910 * Return the first block driver with the highest probing score.
911 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100912BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
913 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100914{
915 int score_max = 0, score;
916 BlockDriver *drv = NULL, *d;
917
918 QLIST_FOREACH(d, &bdrv_drivers, list) {
919 if (d->bdrv_probe) {
920 score = d->bdrv_probe(buf, buf_size, filename);
921 if (score > score_max) {
922 score_max = score;
923 drv = d;
924 }
925 }
926 }
927
928 return drv;
929}
930
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100931static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200932 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000933{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100934 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100935 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100936 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700937
Kevin Wolf08a00552010-06-01 18:37:31 +0200938 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100939 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100940 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200941 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700942 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700943
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100944 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000945 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200946 error_setg_errno(errp, -ret, "Could not read image for determining its "
947 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +0200948 *pdrv = NULL;
949 return ret;
bellard83f64092006-08-01 16:21:11 +0000950 }
951
Markus Armbrusterc6684242014-11-20 16:27:10 +0100952 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +0200953 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200954 error_setg(errp, "Could not determine image format: No compatible "
955 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +0200956 ret = -ENOENT;
957 }
958 *pdrv = drv;
959 return ret;
bellardea2384d2004-08-01 21:59:26 +0000960}
961
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100962/**
963 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +0200964 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100965 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +0200966int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100967{
968 BlockDriver *drv = bs->drv;
969
Max Reitzd470ad42017-11-10 21:31:09 +0100970 if (!drv) {
971 return -ENOMEDIUM;
972 }
973
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700974 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +0300975 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700976 return 0;
977
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100978 /* query actual device if possible, otherwise just trust the hint */
979 if (drv->bdrv_getlength) {
980 int64_t length = drv->bdrv_getlength(bs);
981 if (length < 0) {
982 return length;
983 }
Fam Zheng7e382002013-11-06 19:48:06 +0800984 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100985 }
986
987 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +0300988
989 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
990 return -EFBIG;
991 }
992
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100993 return 0;
994}
995
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100996/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +0100997 * Combines a QDict of new block driver @options with any missing options taken
998 * from @old_options, so that leaving out an option defaults to its old value.
999 */
1000static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1001 QDict *old_options)
1002{
1003 if (bs->drv && bs->drv->bdrv_join_options) {
1004 bs->drv->bdrv_join_options(options, old_options);
1005 } else {
1006 qdict_join(options, old_options, false);
1007 }
1008}
1009
Alberto Garcia543770b2018-09-06 12:37:09 +03001010static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1011 int open_flags,
1012 Error **errp)
1013{
1014 Error *local_err = NULL;
1015 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1016 BlockdevDetectZeroesOptions detect_zeroes =
1017 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1018 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1019 g_free(value);
1020 if (local_err) {
1021 error_propagate(errp, local_err);
1022 return detect_zeroes;
1023 }
1024
1025 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1026 !(open_flags & BDRV_O_UNMAP))
1027 {
1028 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1029 "without setting discard operation to unmap");
1030 }
1031
1032 return detect_zeroes;
1033}
1034
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001035/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001036 * Set open flags for aio engine
1037 *
1038 * Return 0 on success, -1 if the engine specified is invalid
1039 */
1040int bdrv_parse_aio(const char *mode, int *flags)
1041{
1042 if (!strcmp(mode, "threads")) {
1043 /* do nothing, default */
1044 } else if (!strcmp(mode, "native")) {
1045 *flags |= BDRV_O_NATIVE_AIO;
1046#ifdef CONFIG_LINUX_IO_URING
1047 } else if (!strcmp(mode, "io_uring")) {
1048 *flags |= BDRV_O_IO_URING;
1049#endif
1050 } else {
1051 return -1;
1052 }
1053
1054 return 0;
1055}
1056
1057/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001058 * Set open flags for a given discard mode
1059 *
1060 * Return 0 on success, -1 if the discard mode was invalid.
1061 */
1062int bdrv_parse_discard_flags(const char *mode, int *flags)
1063{
1064 *flags &= ~BDRV_O_UNMAP;
1065
1066 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1067 /* do nothing */
1068 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1069 *flags |= BDRV_O_UNMAP;
1070 } else {
1071 return -1;
1072 }
1073
1074 return 0;
1075}
1076
1077/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001078 * Set open flags for a given cache mode
1079 *
1080 * Return 0 on success, -1 if the cache mode was invalid.
1081 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001082int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001083{
1084 *flags &= ~BDRV_O_CACHE_MASK;
1085
1086 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001087 *writethrough = false;
1088 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001089 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001090 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001091 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001092 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001093 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001094 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001095 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001096 *flags |= BDRV_O_NO_FLUSH;
1097 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001098 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001099 } else {
1100 return -1;
1101 }
1102
1103 return 0;
1104}
1105
Kevin Wolfb5411552017-01-17 15:56:16 +01001106static char *bdrv_child_get_parent_desc(BdrvChild *c)
1107{
1108 BlockDriverState *parent = c->opaque;
1109 return g_strdup(bdrv_get_device_or_node_name(parent));
1110}
1111
Kevin Wolf20018e12016-05-23 18:46:59 +02001112static void bdrv_child_cb_drained_begin(BdrvChild *child)
1113{
1114 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001115 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +02001116}
1117
Kevin Wolf89bd0302018-03-22 14:11:20 +01001118static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1119{
1120 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001121 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001122}
1123
Max Reitze037c092019-07-19 11:26:14 +02001124static void bdrv_child_cb_drained_end(BdrvChild *child,
1125 int *drained_end_counter)
Kevin Wolf20018e12016-05-23 18:46:59 +02001126{
1127 BlockDriverState *bs = child->opaque;
Max Reitze037c092019-07-19 11:26:14 +02001128 bdrv_drained_end_no_poll(bs, drained_end_counter);
Kevin Wolf20018e12016-05-23 18:46:59 +02001129}
1130
Kevin Wolf38701b62017-05-04 18:52:39 +02001131static int bdrv_child_cb_inactivate(BdrvChild *child)
1132{
1133 BlockDriverState *bs = child->opaque;
1134 assert(bs->open_flags & BDRV_O_INACTIVE);
1135 return 0;
1136}
1137
Kevin Wolf5d231842019-05-06 19:17:56 +02001138static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1139 GSList **ignore, Error **errp)
1140{
1141 BlockDriverState *bs = child->opaque;
1142 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1143}
1144
Kevin Wolf53a7d042019-05-06 19:17:59 +02001145static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1146 GSList **ignore)
1147{
1148 BlockDriverState *bs = child->opaque;
1149 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1150}
1151
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001152/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001153 * Returns the options and flags that a temporary snapshot should get, based on
1154 * the originally requested flags (the originally requested image will have
1155 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001156 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001157static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1158 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001159{
Kevin Wolf73176be2016-03-07 13:02:15 +01001160 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1161
1162 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001163 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1164 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001165
Kevin Wolf3f486862019-04-04 17:04:43 +02001166 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001167 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001168 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001169
Kevin Wolf41869042016-06-16 12:59:30 +02001170 /* aio=native doesn't work for cache.direct=off, so disable it for the
1171 * temporary snapshot */
1172 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001173}
1174
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001175static void bdrv_backing_attach(BdrvChild *c)
1176{
1177 BlockDriverState *parent = c->opaque;
1178 BlockDriverState *backing_hd = c->bs;
1179
1180 assert(!parent->backing_blocker);
1181 error_setg(&parent->backing_blocker,
1182 "node is used as backing hd of '%s'",
1183 bdrv_get_device_or_node_name(parent));
1184
Max Reitzf30c66b2019-02-01 20:29:05 +01001185 bdrv_refresh_filename(backing_hd);
1186
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001187 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001188
1189 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1190 /* Otherwise we won't be able to commit or stream */
1191 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1192 parent->backing_blocker);
1193 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1194 parent->backing_blocker);
1195 /*
1196 * We do backup in 3 ways:
1197 * 1. drive backup
1198 * The target bs is new opened, and the source is top BDS
1199 * 2. blockdev backup
1200 * Both the source and the target are top BDSes.
1201 * 3. internal backup(used for block replication)
1202 * Both the source and the target are backing file
1203 *
1204 * In case 1 and 2, neither the source nor the target is the backing file.
1205 * In case 3, we will block the top BDS, so there is only one block job
1206 * for the top BDS and its backing chain.
1207 */
1208 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1209 parent->backing_blocker);
1210 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1211 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001212}
Kevin Wolfd736f112017-12-18 16:05:48 +01001213
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001214static void bdrv_backing_detach(BdrvChild *c)
1215{
1216 BlockDriverState *parent = c->opaque;
1217
1218 assert(parent->backing_blocker);
1219 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1220 error_free(parent->backing_blocker);
1221 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001222}
Kevin Wolfd736f112017-12-18 16:05:48 +01001223
Kevin Wolf6858eba2017-06-29 19:32:21 +02001224static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1225 const char *filename, Error **errp)
1226{
1227 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001228 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001229 int ret;
1230
Alberto Garciae94d3db2018-11-12 16:00:34 +02001231 if (read_only) {
1232 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001233 if (ret < 0) {
1234 return ret;
1235 }
1236 }
1237
Kevin Wolf6858eba2017-06-29 19:32:21 +02001238 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001239 base->drv ? base->drv->format_name : "",
1240 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001241 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001242 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001243 }
1244
Alberto Garciae94d3db2018-11-12 16:00:34 +02001245 if (read_only) {
1246 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001247 }
1248
Kevin Wolf6858eba2017-06-29 19:32:21 +02001249 return ret;
1250}
1251
Max Reitzfae8bd32020-05-13 13:05:20 +02001252/*
1253 * Returns the options and flags that a generic child of a BDS should
1254 * get, based on the given options and flags for the parent BDS.
1255 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001256static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1257 int *child_flags, QDict *child_options,
1258 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001259{
1260 int flags = parent_flags;
1261
1262 /*
1263 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1264 * Generally, the question to answer is: Should this child be
1265 * format-probed by default?
1266 */
1267
1268 /*
1269 * Pure and non-filtered data children of non-format nodes should
1270 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1271 * set). This only affects a very limited set of drivers (namely
1272 * quorum and blkverify when this comment was written).
1273 * Force-clear BDRV_O_PROTOCOL then.
1274 */
1275 if (!parent_is_format &&
1276 (role & BDRV_CHILD_DATA) &&
1277 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1278 {
1279 flags &= ~BDRV_O_PROTOCOL;
1280 }
1281
1282 /*
1283 * All children of format nodes (except for COW children) and all
1284 * metadata children in general should never be format-probed.
1285 * Force-set BDRV_O_PROTOCOL then.
1286 */
1287 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1288 (role & BDRV_CHILD_METADATA))
1289 {
1290 flags |= BDRV_O_PROTOCOL;
1291 }
1292
1293 /*
1294 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1295 * the parent.
1296 */
1297 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1298 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1299 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1300
1301 if (role & BDRV_CHILD_COW) {
1302 /* backing files are opened read-only by default */
1303 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1304 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1305 } else {
1306 /* Inherit the read-only option from the parent if it's not set */
1307 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1308 qdict_copy_default(child_options, parent_options,
1309 BDRV_OPT_AUTO_READ_ONLY);
1310 }
1311
1312 /*
1313 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1314 * can default to enable it on lower layers regardless of the
1315 * parent option.
1316 */
1317 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1318
1319 /* Clear flags that only apply to the top layer */
1320 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1321
1322 if (role & BDRV_CHILD_METADATA) {
1323 flags &= ~BDRV_O_NO_IO;
1324 }
1325 if (role & BDRV_CHILD_COW) {
1326 flags &= ~BDRV_O_TEMPORARY;
1327 }
1328
1329 *child_flags = flags;
1330}
1331
Max Reitzca2f1232020-05-13 13:05:22 +02001332static void bdrv_child_cb_attach(BdrvChild *child)
1333{
1334 BlockDriverState *bs = child->opaque;
1335
1336 if (child->role & BDRV_CHILD_COW) {
1337 bdrv_backing_attach(child);
1338 }
1339
1340 bdrv_apply_subtree_drain(child, bs);
1341}
1342
Max Reitz48e08282020-05-13 13:05:23 +02001343static void bdrv_child_cb_detach(BdrvChild *child)
1344{
1345 BlockDriverState *bs = child->opaque;
1346
1347 if (child->role & BDRV_CHILD_COW) {
1348 bdrv_backing_detach(child);
1349 }
1350
1351 bdrv_unapply_subtree_drain(child, bs);
1352}
1353
Max Reitz43483552020-05-13 13:05:24 +02001354static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1355 const char *filename, Error **errp)
1356{
1357 if (c->role & BDRV_CHILD_COW) {
1358 return bdrv_backing_update_filename(c, base, filename, errp);
1359 }
1360 return 0;
1361}
1362
1363const BdrvChildClass child_of_bds = {
1364 .parent_is_bds = true,
1365 .get_parent_desc = bdrv_child_get_parent_desc,
1366 .inherit_options = bdrv_inherited_options,
1367 .drained_begin = bdrv_child_cb_drained_begin,
1368 .drained_poll = bdrv_child_cb_drained_poll,
1369 .drained_end = bdrv_child_cb_drained_end,
1370 .attach = bdrv_child_cb_attach,
1371 .detach = bdrv_child_cb_detach,
1372 .inactivate = bdrv_child_cb_inactivate,
1373 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1374 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1375 .update_filename = bdrv_child_cb_update_filename,
1376};
1377
Kevin Wolf7b272452012-11-12 17:05:39 +01001378static int bdrv_open_flags(BlockDriverState *bs, int flags)
1379{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001380 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001381
1382 /*
1383 * Clear flags that are internal to the block layer before opening the
1384 * image.
1385 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001386 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001387
Kevin Wolf7b272452012-11-12 17:05:39 +01001388 return open_flags;
1389}
1390
Kevin Wolf91a097e2015-05-08 17:49:53 +02001391static void update_flags_from_options(int *flags, QemuOpts *opts)
1392{
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001393 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001394
Alberto Garcia57f9db92018-09-06 12:37:06 +03001395 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001396 *flags |= BDRV_O_NO_FLUSH;
1397 }
1398
Alberto Garcia57f9db92018-09-06 12:37:06 +03001399 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001400 *flags |= BDRV_O_NOCACHE;
1401 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001402
Alberto Garcia57f9db92018-09-06 12:37:06 +03001403 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001404 *flags |= BDRV_O_RDWR;
1405 }
1406
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001407 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1408 *flags |= BDRV_O_AUTO_RDONLY;
1409 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001410}
1411
1412static void update_options_from_flags(QDict *options, int flags)
1413{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001414 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001415 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001416 }
1417 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001418 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1419 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001420 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001421 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001422 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001423 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001424 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1425 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1426 flags & BDRV_O_AUTO_RDONLY);
1427 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001428}
1429
Kevin Wolf636ea372014-01-24 14:11:52 +01001430static void bdrv_assign_node_name(BlockDriverState *bs,
1431 const char *node_name,
1432 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001433{
Jeff Cody15489c72015-10-12 19:36:50 -04001434 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001435
Jeff Cody15489c72015-10-12 19:36:50 -04001436 if (!node_name) {
1437 node_name = gen_node_name = id_generate(ID_BLOCK);
1438 } else if (!id_wellformed(node_name)) {
1439 /*
1440 * Check for empty string or invalid characters, but not if it is
1441 * generated (generated names use characters not available to the user)
1442 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001443 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001444 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001445 }
1446
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001447 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001448 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001449 error_setg(errp, "node-name=%s is conflicting with a device id",
1450 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001451 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001452 }
1453
Benoît Canet6913c0c2014-01-23 21:31:33 +01001454 /* takes care of avoiding duplicates node names */
1455 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001456 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001457 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001458 }
1459
Kevin Wolf824808d2018-07-04 13:28:29 +02001460 /* Make sure that the node name isn't truncated */
1461 if (strlen(node_name) >= sizeof(bs->node_name)) {
1462 error_setg(errp, "Node name too long");
1463 goto out;
1464 }
1465
Benoît Canet6913c0c2014-01-23 21:31:33 +01001466 /* copy node name into the bs and insert it into the graph list */
1467 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1468 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001469out:
1470 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001471}
1472
Kevin Wolf01a56502017-01-18 15:51:56 +01001473static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1474 const char *node_name, QDict *options,
1475 int open_flags, Error **errp)
1476{
1477 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001478 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001479
1480 bdrv_assign_node_name(bs, node_name, &local_err);
1481 if (local_err) {
1482 error_propagate(errp, local_err);
1483 return -EINVAL;
1484 }
1485
1486 bs->drv = drv;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001487 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Kevin Wolf01a56502017-01-18 15:51:56 +01001488 bs->opaque = g_malloc0(drv->instance_size);
1489
1490 if (drv->bdrv_file_open) {
1491 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1492 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001493 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001494 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001495 } else {
1496 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001497 }
1498
1499 if (ret < 0) {
1500 if (local_err) {
1501 error_propagate(errp, local_err);
1502 } else if (bs->filename[0]) {
1503 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1504 } else {
1505 error_setg_errno(errp, -ret, "Could not open image");
1506 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001507 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001508 }
1509
1510 ret = refresh_total_sectors(bs, bs->total_sectors);
1511 if (ret < 0) {
1512 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001513 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001514 }
1515
1516 bdrv_refresh_limits(bs, &local_err);
1517 if (local_err) {
1518 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001519 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001520 }
1521
1522 assert(bdrv_opt_mem_align(bs) != 0);
1523 assert(bdrv_min_mem_align(bs) != 0);
1524 assert(is_power_of_2(bs->bl.request_alignment));
1525
Kevin Wolf0f122642018-03-28 18:29:18 +02001526 for (i = 0; i < bs->quiesce_counter; i++) {
1527 if (drv->bdrv_co_drain_begin) {
1528 drv->bdrv_co_drain_begin(bs);
1529 }
1530 }
1531
Kevin Wolf01a56502017-01-18 15:51:56 +01001532 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001533open_failed:
1534 bs->drv = NULL;
1535 if (bs->file != NULL) {
1536 bdrv_unref_child(bs, bs->file);
1537 bs->file = NULL;
1538 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001539 g_free(bs->opaque);
1540 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001541 return ret;
1542}
1543
Kevin Wolf680c7f92017-01-18 17:16:41 +01001544BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1545 int flags, Error **errp)
1546{
1547 BlockDriverState *bs;
1548 int ret;
1549
1550 bs = bdrv_new();
1551 bs->open_flags = flags;
1552 bs->explicit_options = qdict_new();
1553 bs->options = qdict_new();
1554 bs->opaque = NULL;
1555
1556 update_options_from_flags(bs->options, flags);
1557
1558 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1559 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001560 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001561 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001562 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001563 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001564 bdrv_unref(bs);
1565 return NULL;
1566 }
1567
1568 return bs;
1569}
1570
Kevin Wolfc5f30142016-10-06 11:33:17 +02001571QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001572 .name = "bdrv_common",
1573 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1574 .desc = {
1575 {
1576 .name = "node-name",
1577 .type = QEMU_OPT_STRING,
1578 .help = "Node name of the block device node",
1579 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001580 {
1581 .name = "driver",
1582 .type = QEMU_OPT_STRING,
1583 .help = "Block driver to use for the node",
1584 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001585 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001586 .name = BDRV_OPT_CACHE_DIRECT,
1587 .type = QEMU_OPT_BOOL,
1588 .help = "Bypass software writeback cache on the host",
1589 },
1590 {
1591 .name = BDRV_OPT_CACHE_NO_FLUSH,
1592 .type = QEMU_OPT_BOOL,
1593 .help = "Ignore flush requests",
1594 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001595 {
1596 .name = BDRV_OPT_READ_ONLY,
1597 .type = QEMU_OPT_BOOL,
1598 .help = "Node is opened in read-only mode",
1599 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001600 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001601 .name = BDRV_OPT_AUTO_READ_ONLY,
1602 .type = QEMU_OPT_BOOL,
1603 .help = "Node can become read-only if opening read-write fails",
1604 },
1605 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001606 .name = "detect-zeroes",
1607 .type = QEMU_OPT_STRING,
1608 .help = "try to optimize zero writes (off, on, unmap)",
1609 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001610 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001611 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001612 .type = QEMU_OPT_STRING,
1613 .help = "discard operation (ignore/off, unmap/on)",
1614 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001615 {
1616 .name = BDRV_OPT_FORCE_SHARE,
1617 .type = QEMU_OPT_BOOL,
1618 .help = "always accept other writers (default: off)",
1619 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001620 { /* end of list */ }
1621 },
1622};
1623
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001624QemuOptsList bdrv_create_opts_simple = {
1625 .name = "simple-create-opts",
1626 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001627 .desc = {
1628 {
1629 .name = BLOCK_OPT_SIZE,
1630 .type = QEMU_OPT_SIZE,
1631 .help = "Virtual disk size"
1632 },
1633 {
1634 .name = BLOCK_OPT_PREALLOC,
1635 .type = QEMU_OPT_STRING,
1636 .help = "Preallocation mode (allowed values: off)"
1637 },
1638 { /* end of list */ }
1639 }
1640};
1641
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001642/*
Kevin Wolf57915332010-04-14 15:24:50 +02001643 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001644 *
1645 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001646 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001647static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001648 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001649{
1650 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001651 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001652 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001653 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001654 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001655 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001656 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001657 Error *local_err = NULL;
Kevin Wolf57915332010-04-14 15:24:50 +02001658
Paolo Bonzini64058752012-05-08 16:51:49 +02001659 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001660 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001661
Kevin Wolf62392eb2015-04-24 16:38:02 +02001662 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001663 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001664 ret = -EINVAL;
1665 goto fail_opts;
1666 }
1667
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001668 update_flags_from_options(&bs->open_flags, opts);
1669
Kevin Wolf62392eb2015-04-24 16:38:02 +02001670 driver_name = qemu_opt_get(opts, "driver");
1671 drv = bdrv_find_format(driver_name);
1672 assert(drv != NULL);
1673
Fam Zheng5a9347c2017-05-03 00:35:37 +08001674 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1675
1676 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1677 error_setg(errp,
1678 BDRV_OPT_FORCE_SHARE
1679 "=on can only be used with read-only images");
1680 ret = -EINVAL;
1681 goto fail_opts;
1682 }
1683
Kevin Wolf45673672013-04-22 17:48:40 +02001684 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001685 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001686 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001687 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001688 /*
1689 * Caution: while qdict_get_try_str() is fine, getting
1690 * non-string types would require more care. When @options
1691 * come from -blockdev or blockdev_add, its members are typed
1692 * according to the QAPI schema, but when they come from
1693 * -drive, they're all QString.
1694 */
Kevin Wolf45673672013-04-22 17:48:40 +02001695 filename = qdict_get_try_str(options, "filename");
1696 }
1697
Max Reitz4a008242017-04-13 18:06:24 +02001698 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001699 error_setg(errp, "The '%s' block driver requires a file name",
1700 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001701 ret = -EINVAL;
1702 goto fail_opts;
1703 }
1704
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001705 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1706 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001707
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001708 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001709
1710 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001711 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1712 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1713 } else {
1714 ret = -ENOTSUP;
1715 }
1716 if (ret < 0) {
1717 error_setg(errp,
1718 !bs->read_only && bdrv_is_whitelisted(drv, true)
1719 ? "Driver '%s' can only be used for read-only devices"
1720 : "Driver '%s' is not whitelisted",
1721 drv->format_name);
1722 goto fail_opts;
1723 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001724 }
Kevin Wolf57915332010-04-14 15:24:50 +02001725
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001726 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001727 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001728
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001729 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001730 if (!bs->read_only) {
1731 bdrv_enable_copy_on_read(bs);
1732 } else {
1733 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001734 ret = -EINVAL;
1735 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001736 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001737 }
1738
Alberto Garcia415bbca2018-10-03 13:23:13 +03001739 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001740 if (discard != NULL) {
1741 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1742 error_setg(errp, "Invalid discard option");
1743 ret = -EINVAL;
1744 goto fail_opts;
1745 }
1746 }
1747
Alberto Garcia543770b2018-09-06 12:37:09 +03001748 bs->detect_zeroes =
1749 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1750 if (local_err) {
1751 error_propagate(errp, local_err);
1752 ret = -EINVAL;
1753 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001754 }
1755
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001756 if (filename != NULL) {
1757 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1758 } else {
1759 bs->filename[0] = '\0';
1760 }
Max Reitz91af7012014-07-18 20:24:56 +02001761 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001762
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001763 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001764 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001765 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001766
Kevin Wolf01a56502017-01-18 15:51:56 +01001767 assert(!drv->bdrv_file_open || file == NULL);
1768 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001769 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001770 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001771 }
1772
Kevin Wolf18edf282015-04-07 17:12:56 +02001773 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001774 return 0;
1775
Kevin Wolf18edf282015-04-07 17:12:56 +02001776fail_opts:
1777 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001778 return ret;
1779}
1780
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001781static QDict *parse_json_filename(const char *filename, Error **errp)
1782{
1783 QObject *options_obj;
1784 QDict *options;
1785 int ret;
1786
1787 ret = strstart(filename, "json:", &filename);
1788 assert(ret);
1789
Markus Armbruster5577fff2017-02-28 22:26:59 +01001790 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001791 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001792 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001793 return NULL;
1794 }
1795
Max Reitz7dc847e2018-02-24 16:40:29 +01001796 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001797 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001798 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001799 error_setg(errp, "Invalid JSON object given");
1800 return NULL;
1801 }
1802
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001803 qdict_flatten(options);
1804
1805 return options;
1806}
1807
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001808static void parse_json_protocol(QDict *options, const char **pfilename,
1809 Error **errp)
1810{
1811 QDict *json_options;
1812 Error *local_err = NULL;
1813
1814 /* Parse json: pseudo-protocol */
1815 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1816 return;
1817 }
1818
1819 json_options = parse_json_filename(*pfilename, &local_err);
1820 if (local_err) {
1821 error_propagate(errp, local_err);
1822 return;
1823 }
1824
1825 /* Options given in the filename have lower priority than options
1826 * specified directly */
1827 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001828 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001829 *pfilename = NULL;
1830}
1831
Kevin Wolf57915332010-04-14 15:24:50 +02001832/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001833 * Fills in default options for opening images and converts the legacy
1834 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001835 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1836 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001837 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001838static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001839 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001840{
1841 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001842 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001843 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001844 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001845 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001846
Markus Armbruster129c7d12017-03-30 19:43:12 +02001847 /*
1848 * Caution: while qdict_get_try_str() is fine, getting non-string
1849 * types would require more care. When @options come from
1850 * -blockdev or blockdev_add, its members are typed according to
1851 * the QAPI schema, but when they come from -drive, they're all
1852 * QString.
1853 */
Max Reitz53a29512015-03-19 14:53:16 -04001854 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001855 if (drvname) {
1856 drv = bdrv_find_format(drvname);
1857 if (!drv) {
1858 error_setg(errp, "Unknown driver '%s'", drvname);
1859 return -ENOENT;
1860 }
1861 /* If the user has explicitly specified the driver, this choice should
1862 * override the BDRV_O_PROTOCOL flag */
1863 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001864 }
1865
1866 if (protocol) {
1867 *flags |= BDRV_O_PROTOCOL;
1868 } else {
1869 *flags &= ~BDRV_O_PROTOCOL;
1870 }
1871
Kevin Wolf91a097e2015-05-08 17:49:53 +02001872 /* Translate cache options from flags into options */
1873 update_options_from_flags(*options, *flags);
1874
Kevin Wolff54120f2014-05-26 11:09:59 +02001875 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001876 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001877 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001878 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001879 parse_filename = true;
1880 } else {
1881 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1882 "the same time");
1883 return -EINVAL;
1884 }
1885 }
1886
1887 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001888 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001889 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001890
Max Reitz053e1572015-08-26 19:47:51 +02001891 if (!drvname && protocol) {
1892 if (filename) {
1893 drv = bdrv_find_protocol(filename, parse_filename, errp);
1894 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001895 return -EINVAL;
1896 }
Max Reitz053e1572015-08-26 19:47:51 +02001897
1898 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001899 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001900 } else {
1901 error_setg(errp, "Must specify either driver or file");
1902 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001903 }
1904 }
1905
Kevin Wolf17b005f2014-05-27 10:50:29 +02001906 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001907
1908 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001909 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001910 drv->bdrv_parse_filename(filename, *options, &local_err);
1911 if (local_err) {
1912 error_propagate(errp, local_err);
1913 return -EINVAL;
1914 }
1915
1916 if (!drv->bdrv_needs_filename) {
1917 qdict_del(*options, "filename");
1918 }
1919 }
1920
1921 return 0;
1922}
1923
Kevin Wolf3121fb42017-09-14 14:42:12 +02001924static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1925 uint64_t perm, uint64_t shared,
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03001926 GSList *ignore_children, Error **errp);
Fam Zhengc1cef672017-03-14 10:30:50 +08001927static void bdrv_child_abort_perm_update(BdrvChild *c);
Vladimir Sementsov-Ogievskiy6e0c9162020-11-06 15:42:40 +03001928static void bdrv_child_set_perm(BdrvChild *c);
Fam Zhengc1cef672017-03-14 10:30:50 +08001929
Kevin Wolf148eb132017-09-14 14:32:04 +02001930typedef struct BlockReopenQueueEntry {
1931 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01001932 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02001933 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001934 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02001935} BlockReopenQueueEntry;
1936
1937/*
1938 * Return the flags that @bs will have after the reopens in @q have
1939 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1940 * return the current flags.
1941 */
1942static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1943{
1944 BlockReopenQueueEntry *entry;
1945
1946 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001947 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02001948 if (entry->state.bs == bs) {
1949 return entry->state.flags;
1950 }
1951 }
1952 }
1953
1954 return bs->open_flags;
1955}
1956
1957/* Returns whether the image file can be written to after the reopen queue @q
1958 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02001959static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1960 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02001961{
1962 int flags = bdrv_reopen_get_flags(q, bs);
1963
1964 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1965}
1966
Max Reitzcc022142018-06-06 21:37:00 +02001967/*
1968 * Return whether the BDS can be written to. This is not necessarily
1969 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1970 * be written to but do not count as read-only images.
1971 */
1972bool bdrv_is_writable(BlockDriverState *bs)
1973{
1974 return bdrv_is_writable_after_reopen(bs, NULL);
1975}
1976
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001977static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02001978 BdrvChild *c, BdrvChildRole role,
1979 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001980 uint64_t parent_perm, uint64_t parent_shared,
1981 uint64_t *nperm, uint64_t *nshared)
1982{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03001983 assert(bs->drv && bs->drv->bdrv_child_perm);
Max Reitze5d8a402020-05-13 13:05:44 +02001984 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03001985 parent_perm, parent_shared,
1986 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001987 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001988 if (child_bs && child_bs->force_share) {
1989 *nshared = BLK_PERM_ALL;
1990 }
1991}
1992
Kevin Wolf33a610c2016-12-15 13:04:20 +01001993/*
1994 * Check whether permissions on this node can be changed in a way that
1995 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1996 * permissions of all its parents. This involves checking whether all necessary
1997 * permission changes to child nodes can be performed.
1998 *
1999 * A call to this function must always be followed by a call to bdrv_set_perm()
2000 * or bdrv_abort_perm_update().
2001 */
Kevin Wolf3121fb42017-09-14 14:42:12 +02002002static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
2003 uint64_t cumulative_perms,
Kevin Wolf46181122017-03-06 15:00:13 +01002004 uint64_t cumulative_shared_perms,
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002005 GSList *ignore_children, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002006{
2007 BlockDriver *drv = bs->drv;
2008 BdrvChild *c;
2009 int ret;
2010
2011 /* Write permissions never work with read-only images */
2012 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002013 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002014 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002015 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2016 error_setg(errp, "Block node is read-only");
2017 } else {
2018 uint64_t current_perms, current_shared;
2019 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2020 if (current_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
2021 error_setg(errp, "Cannot make block node read-only, there is "
2022 "a writer on it");
2023 } else {
2024 error_setg(errp, "Cannot make block node read-only and create "
2025 "a writer on it");
2026 }
2027 }
2028
Kevin Wolf33a610c2016-12-15 13:04:20 +01002029 return -EPERM;
2030 }
2031
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002032 /*
2033 * Unaligned requests will automatically be aligned to bl.request_alignment
2034 * and without RESIZE we can't extend requests to write to space beyond the
2035 * end of the image, so it's required that the image size is aligned.
2036 */
2037 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2038 !(cumulative_perms & BLK_PERM_RESIZE))
2039 {
2040 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2041 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2042 "Image size is not a multiple of request "
2043 "alignment");
2044 return -EPERM;
2045 }
2046 }
2047
Kevin Wolf33a610c2016-12-15 13:04:20 +01002048 /* Check this node */
2049 if (!drv) {
2050 return 0;
2051 }
2052
2053 if (drv->bdrv_check_perm) {
Vladimir Sementsov-Ogievskiy9530a252020-10-21 17:58:45 +03002054 ret = drv->bdrv_check_perm(bs, cumulative_perms,
2055 cumulative_shared_perms, errp);
2056 if (ret < 0) {
2057 return ret;
2058 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002059 }
2060
Kevin Wolf78e421c2016-12-20 23:25:12 +01002061 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002062 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002063 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002064 return 0;
2065 }
2066
2067 /* Check all children */
2068 QLIST_FOREACH(c, &bs->children, next) {
2069 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002070
Max Reitze5d8a402020-05-13 13:05:44 +02002071 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002072 cumulative_perms, cumulative_shared_perms,
2073 &cur_perm, &cur_shared);
Max Reitz9eab1542019-05-22 19:03:50 +02002074 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared, ignore_children,
Max Reitz9eab1542019-05-22 19:03:50 +02002075 errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002076 if (ret < 0) {
2077 return ret;
2078 }
2079 }
2080
2081 return 0;
2082}
2083
2084/*
2085 * Notifies drivers that after a previous bdrv_check_perm() call, the
2086 * permission update is not performed and any preparations made for it (e.g.
2087 * taken file locks) need to be undone.
2088 *
2089 * This function recursively notifies all child nodes.
2090 */
2091static void bdrv_abort_perm_update(BlockDriverState *bs)
2092{
2093 BlockDriver *drv = bs->drv;
2094 BdrvChild *c;
2095
2096 if (!drv) {
2097 return;
2098 }
2099
2100 if (drv->bdrv_abort_perm_update) {
2101 drv->bdrv_abort_perm_update(bs);
2102 }
2103
2104 QLIST_FOREACH(c, &bs->children, next) {
2105 bdrv_child_abort_perm_update(c);
2106 }
2107}
2108
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03002109static void bdrv_set_perm(BlockDriverState *bs)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002110{
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03002111 uint64_t cumulative_perms, cumulative_shared_perms;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002112 BlockDriver *drv = bs->drv;
2113 BdrvChild *c;
2114
2115 if (!drv) {
2116 return;
2117 }
2118
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03002119 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
2120
Kevin Wolf33a610c2016-12-15 13:04:20 +01002121 /* Update this node */
2122 if (drv->bdrv_set_perm) {
2123 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2124 }
2125
Kevin Wolf78e421c2016-12-20 23:25:12 +01002126 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002127 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002128 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002129 return;
2130 }
2131
2132 /* Update all children */
2133 QLIST_FOREACH(c, &bs->children, next) {
Vladimir Sementsov-Ogievskiy6e0c9162020-11-06 15:42:40 +03002134 bdrv_child_set_perm(c);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002135 }
2136}
2137
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002138void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2139 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002140{
2141 BdrvChild *c;
2142 uint64_t cumulative_perms = 0;
2143 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2144
2145 QLIST_FOREACH(c, &bs->parents, next_parent) {
2146 cumulative_perms |= c->perm;
2147 cumulative_shared_perms &= c->shared_perm;
2148 }
2149
2150 *perm = cumulative_perms;
2151 *shared_perm = cumulative_shared_perms;
2152}
2153
Kevin Wolfd0833192017-01-16 18:26:20 +01002154static char *bdrv_child_user_desc(BdrvChild *c)
2155{
Max Reitzbd86fb92020-05-13 13:05:13 +02002156 if (c->klass->get_parent_desc) {
2157 return c->klass->get_parent_desc(c);
Kevin Wolfd0833192017-01-16 18:26:20 +01002158 }
2159
2160 return g_strdup("another user");
2161}
2162
Fam Zheng51761962017-05-03 00:35:36 +08002163char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002164{
2165 struct perm_name {
2166 uint64_t perm;
2167 const char *name;
2168 } permissions[] = {
2169 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2170 { BLK_PERM_WRITE, "write" },
2171 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2172 { BLK_PERM_RESIZE, "resize" },
2173 { BLK_PERM_GRAPH_MOD, "change children" },
2174 { 0, NULL }
2175 };
2176
Alberto Garciae2a74232020-01-10 18:15:18 +01002177 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002178 struct perm_name *p;
2179
2180 for (p = permissions; p->name; p++) {
2181 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002182 if (result->len > 0) {
2183 g_string_append(result, ", ");
2184 }
2185 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002186 }
2187 }
2188
Alberto Garciae2a74232020-01-10 18:15:18 +01002189 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002190}
2191
Kevin Wolf33a610c2016-12-15 13:04:20 +01002192/*
2193 * Checks whether a new reference to @bs can be added if the new user requires
Kevin Wolf46181122017-03-06 15:00:13 +01002194 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
2195 * set, the BdrvChild objects in this list are ignored in the calculations;
2196 * this allows checking permission updates for an existing reference.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002197 *
2198 * Needs to be followed by a call to either bdrv_set_perm() or
2199 * bdrv_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02002200static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
2201 uint64_t new_used_perm,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002202 uint64_t new_shared_perm,
Max Reitz9eab1542019-05-22 19:03:50 +02002203 GSList *ignore_children,
Max Reitz9eab1542019-05-22 19:03:50 +02002204 Error **errp)
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002205{
2206 BdrvChild *c;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002207 uint64_t cumulative_perms = new_used_perm;
2208 uint64_t cumulative_shared_perms = new_shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002209
Max Reitz9eab1542019-05-22 19:03:50 +02002210
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002211 /* There is no reason why anyone couldn't tolerate write_unchanged */
2212 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
2213
2214 QLIST_FOREACH(c, &bs->parents, next_parent) {
Kevin Wolf46181122017-03-06 15:00:13 +01002215 if (g_slist_find(ignore_children, c)) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002216 continue;
2217 }
2218
Kevin Wolfd0833192017-01-16 18:26:20 +01002219 if ((new_used_perm & c->shared_perm) != new_used_perm) {
2220 char *user = bdrv_child_user_desc(c);
2221 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002222
Kevin Wolfd0833192017-01-16 18:26:20 +01002223 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2224 "allow '%s' on %s",
2225 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2226 g_free(user);
2227 g_free(perm_names);
2228 return -EPERM;
2229 }
2230
2231 if ((c->perm & new_shared_perm) != c->perm) {
2232 char *user = bdrv_child_user_desc(c);
2233 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002234
Kevin Wolfd0833192017-01-16 18:26:20 +01002235 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
2236 "'%s' on %s",
2237 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2238 g_free(user);
2239 g_free(perm_names);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002240 return -EPERM;
2241 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002242
2243 cumulative_perms |= c->perm;
2244 cumulative_shared_perms &= c->shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002245 }
2246
Kevin Wolf3121fb42017-09-14 14:42:12 +02002247 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002248 ignore_children, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002249}
2250
2251/* Needs to be followed by a call to either bdrv_child_set_perm() or
2252 * bdrv_child_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02002253static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
2254 uint64_t perm, uint64_t shared,
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002255 GSList *ignore_children, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002256{
Kevin Wolf46181122017-03-06 15:00:13 +01002257 int ret;
2258
2259 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002260 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
Kevin Wolf46181122017-03-06 15:00:13 +01002261 g_slist_free(ignore_children);
2262
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002263 if (ret < 0) {
2264 return ret;
2265 }
2266
2267 if (!c->has_backup_perm) {
2268 c->has_backup_perm = true;
2269 c->backup_perm = c->perm;
2270 c->backup_shared_perm = c->shared_perm;
2271 }
2272 /*
2273 * Note: it's OK if c->has_backup_perm was already set, as we can find the
2274 * same child twice during check_perm procedure
2275 */
2276
2277 c->perm = perm;
2278 c->shared_perm = shared;
2279
2280 return 0;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002281}
2282
Vladimir Sementsov-Ogievskiy6e0c9162020-11-06 15:42:40 +03002283static void bdrv_child_set_perm(BdrvChild *c)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002284{
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002285 c->has_backup_perm = false;
2286
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03002287 bdrv_set_perm(c->bs);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002288}
2289
Fam Zhengc1cef672017-03-14 10:30:50 +08002290static void bdrv_child_abort_perm_update(BdrvChild *c)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002291{
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002292 if (c->has_backup_perm) {
2293 c->perm = c->backup_perm;
2294 c->shared_perm = c->backup_shared_perm;
2295 c->has_backup_perm = false;
2296 }
2297
Kevin Wolf33a610c2016-12-15 13:04:20 +01002298 bdrv_abort_perm_update(c->bs);
2299}
2300
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002301static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002302{
2303 int ret;
2304 uint64_t perm, shared_perm;
2305
2306 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002307 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, errp);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002308 if (ret < 0) {
2309 bdrv_abort_perm_update(bs);
2310 return ret;
2311 }
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03002312 bdrv_set_perm(bs);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002313
2314 return 0;
2315}
2316
Kevin Wolf33a610c2016-12-15 13:04:20 +01002317int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2318 Error **errp)
2319{
Max Reitz10467792019-05-22 19:03:51 +02002320 Error *local_err = NULL;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002321 int ret;
2322
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002323 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, &local_err);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002324 if (ret < 0) {
2325 bdrv_child_abort_perm_update(c);
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002326 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2327 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002328 error_propagate(errp, local_err);
2329 } else {
2330 /*
2331 * Our caller may intend to only loosen restrictions and
2332 * does not expect this function to fail. Errors are not
2333 * fatal in such a case, so we can just hide them from our
2334 * caller.
2335 */
2336 error_free(local_err);
2337 ret = 0;
2338 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002339 return ret;
2340 }
2341
Vladimir Sementsov-Ogievskiy6e0c9162020-11-06 15:42:40 +03002342 bdrv_child_set_perm(c);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002343
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002344 return 0;
2345}
2346
Max Reitzc1087f12019-05-22 19:03:46 +02002347int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2348{
2349 uint64_t parent_perms, parent_shared;
2350 uint64_t perms, shared;
2351
2352 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002353 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002354 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002355
2356 return bdrv_child_try_set_perm(c, perms, shared, errp);
2357}
2358
Max Reitz87278af2020-05-13 13:05:40 +02002359/*
2360 * Default implementation for .bdrv_child_perm() for block filters:
2361 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2362 * filtered child.
2363 */
2364static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002365 BdrvChildRole role,
2366 BlockReopenQueue *reopen_queue,
2367 uint64_t perm, uint64_t shared,
2368 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002369{
Kevin Wolfe444fa82019-08-02 15:59:41 +02002370 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2371 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002372}
2373
Max Reitz70082db2020-05-13 13:05:26 +02002374static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002375 BdrvChildRole role,
2376 BlockReopenQueue *reopen_queue,
2377 uint64_t perm, uint64_t shared,
2378 uint64_t *nperm, uint64_t *nshared)
2379{
Max Reitze5d8a402020-05-13 13:05:44 +02002380 assert(role & BDRV_CHILD_COW);
Max Reitz70082db2020-05-13 13:05:26 +02002381
2382 /*
2383 * We want consistent read from backing files if the parent needs it.
2384 * No other operations are performed on backing files.
2385 */
2386 perm &= BLK_PERM_CONSISTENT_READ;
2387
2388 /*
2389 * If the parent can deal with changing data, we're okay with a
2390 * writable and resizable backing file.
2391 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2392 */
2393 if (shared & BLK_PERM_WRITE) {
2394 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2395 } else {
2396 shared = 0;
2397 }
2398
2399 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2400 BLK_PERM_WRITE_UNCHANGED;
2401
2402 if (bs->open_flags & BDRV_O_INACTIVE) {
2403 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2404 }
2405
2406 *nperm = perm;
2407 *nshared = shared;
2408}
2409
Max Reitz6f838a42020-05-13 13:05:27 +02002410static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002411 BdrvChildRole role,
2412 BlockReopenQueue *reopen_queue,
2413 uint64_t perm, uint64_t shared,
2414 uint64_t *nperm, uint64_t *nshared)
2415{
2416 int flags;
2417
Max Reitze5d8a402020-05-13 13:05:44 +02002418 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002419
2420 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2421
2422 /*
2423 * Apart from the modifications below, the same permissions are
2424 * forwarded and left alone as for filters
2425 */
Max Reitze5d8a402020-05-13 13:05:44 +02002426 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002427 perm, shared, &perm, &shared);
2428
Max Reitzf8890542020-05-13 13:05:28 +02002429 if (role & BDRV_CHILD_METADATA) {
2430 /* Format drivers may touch metadata even if the guest doesn't write */
2431 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2432 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2433 }
2434
2435 /*
2436 * bs->file always needs to be consistent because of the
2437 * metadata. We can never allow other users to resize or write
2438 * to it.
2439 */
2440 if (!(flags & BDRV_O_NO_IO)) {
2441 perm |= BLK_PERM_CONSISTENT_READ;
2442 }
2443 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002444 }
2445
Max Reitzf8890542020-05-13 13:05:28 +02002446 if (role & BDRV_CHILD_DATA) {
2447 /*
2448 * Technically, everything in this block is a subset of the
2449 * BDRV_CHILD_METADATA path taken above, and so this could
2450 * be an "else if" branch. However, that is not obvious, and
2451 * this function is not performance critical, therefore we let
2452 * this be an independent "if".
2453 */
2454
2455 /*
2456 * We cannot allow other users to resize the file because the
2457 * format driver might have some assumptions about the size
2458 * (e.g. because it is stored in metadata, or because the file
2459 * is split into fixed-size data files).
2460 */
2461 shared &= ~BLK_PERM_RESIZE;
2462
2463 /*
2464 * WRITE_UNCHANGED often cannot be performed as such on the
2465 * data file. For example, the qcow2 driver may still need to
2466 * write copied clusters on copy-on-read.
2467 */
2468 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2469 perm |= BLK_PERM_WRITE;
2470 }
2471
2472 /*
2473 * If the data file is written to, the format driver may
2474 * expect to be able to resize it by writing beyond the EOF.
2475 */
2476 if (perm & BLK_PERM_WRITE) {
2477 perm |= BLK_PERM_RESIZE;
2478 }
Max Reitz6f838a42020-05-13 13:05:27 +02002479 }
Max Reitz6f838a42020-05-13 13:05:27 +02002480
2481 if (bs->open_flags & BDRV_O_INACTIVE) {
2482 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2483 }
2484
2485 *nperm = perm;
2486 *nshared = shared;
2487}
2488
Max Reitz2519f542020-05-13 13:05:29 +02002489void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002490 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002491 uint64_t perm, uint64_t shared,
2492 uint64_t *nperm, uint64_t *nshared)
2493{
Max Reitz2519f542020-05-13 13:05:29 +02002494 if (role & BDRV_CHILD_FILTERED) {
2495 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2496 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002497 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002498 perm, shared, nperm, nshared);
2499 } else if (role & BDRV_CHILD_COW) {
2500 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002501 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002502 perm, shared, nperm, nshared);
2503 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002504 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002505 perm, shared, nperm, nshared);
2506 } else {
2507 g_assert_not_reached();
2508 }
2509}
2510
Max Reitz7b1d9c42019-11-08 13:34:51 +01002511uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2512{
2513 static const uint64_t permissions[] = {
2514 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2515 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2516 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2517 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2518 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2519 };
2520
2521 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2522 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2523
2524 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2525
2526 return permissions[qapi_perm];
2527}
2528
Kevin Wolf8ee03992017-03-06 13:45:28 +01002529static void bdrv_replace_child_noperm(BdrvChild *child,
2530 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002531{
2532 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002533 int new_bs_quiesce_counter;
2534 int drain_saldo;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002535
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002536 assert(!child->frozen);
2537
Fam Zhengbb2614e2017-04-07 14:54:10 +08002538 if (old_bs && new_bs) {
2539 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2540 }
Max Reitzdebc2922019-07-22 15:33:44 +02002541
2542 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2543 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2544
2545 /*
2546 * If the new child node is drained but the old one was not, flush
2547 * all outstanding requests to the old child node.
2548 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002549 while (drain_saldo > 0 && child->klass->drained_begin) {
Max Reitzdebc2922019-07-22 15:33:44 +02002550 bdrv_parent_drained_begin_single(child, true);
2551 drain_saldo--;
2552 }
2553
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002554 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002555 /* Detach first so that the recursive drain sections coming from @child
2556 * are already gone and we only end the drain sections that came from
2557 * elsewhere. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002558 if (child->klass->detach) {
2559 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002560 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002561 QLIST_REMOVE(child, next_parent);
2562 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002563
2564 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002565
2566 if (new_bs) {
2567 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzdebc2922019-07-22 15:33:44 +02002568
2569 /*
2570 * Detaching the old node may have led to the new node's
2571 * quiesce_counter having been decreased. Not a problem, we
2572 * just need to recognize this here and then invoke
2573 * drained_end appropriately more often.
2574 */
2575 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2576 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002577
Kevin Wolfd736f112017-12-18 16:05:48 +01002578 /* Attach only after starting new drained sections, so that recursive
2579 * drain sections coming from @child don't get an extra .drained_begin
2580 * callback. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002581 if (child->klass->attach) {
2582 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002583 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002584 }
Max Reitzdebc2922019-07-22 15:33:44 +02002585
2586 /*
2587 * If the old child node was drained but the new one is not, allow
2588 * requests to come in only after the new node has been attached.
2589 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002590 while (drain_saldo < 0 && child->klass->drained_end) {
Max Reitzdebc2922019-07-22 15:33:44 +02002591 bdrv_parent_drained_end_single(child);
2592 drain_saldo++;
2593 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002594}
2595
Kevin Wolf466787f2017-03-08 14:44:07 +01002596/*
2597 * Updates @child to change its reference to point to @new_bs, including
zhaolichange3a6e0d2020-09-17 15:50:20 +08002598 * checking and applying the necessary permission updates both to the old node
Kevin Wolf466787f2017-03-08 14:44:07 +01002599 * and to @new_bs.
2600 *
2601 * NULL is passed as @new_bs for removing the reference before freeing @child.
2602 *
2603 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2604 * function uses bdrv_set_perm() to update the permissions according to the new
2605 * reference that @new_bs gets.
Max Reitz7b99a262019-06-12 16:07:11 +02002606 *
2607 * Callers must ensure that child->frozen is false.
Kevin Wolf466787f2017-03-08 14:44:07 +01002608 */
2609static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolf8ee03992017-03-06 13:45:28 +01002610{
2611 BlockDriverState *old_bs = child->bs;
Kevin Wolf8ee03992017-03-06 13:45:28 +01002612
Max Reitz7b99a262019-06-12 16:07:11 +02002613 /* Asserts that child->frozen == false */
Kevin Wolf8aecf1d2017-08-03 17:02:57 +02002614 bdrv_replace_child_noperm(child, new_bs);
2615
Max Reitz87ace5f2019-05-22 19:03:49 +02002616 /*
2617 * Start with the new node's permissions. If @new_bs is a (direct
2618 * or indirect) child of @old_bs, we must complete the permission
2619 * update on @new_bs before we loosen the restrictions on @old_bs.
2620 * Otherwise, bdrv_check_perm() on @old_bs would re-initiate
2621 * updating the permissions of @new_bs, and thus not purely loosen
2622 * restrictions.
2623 */
2624 if (new_bs) {
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03002625 bdrv_set_perm(new_bs);
Max Reitz87ace5f2019-05-22 19:03:49 +02002626 }
2627
Kevin Wolf8ee03992017-03-06 13:45:28 +01002628 if (old_bs) {
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002629 /*
2630 * Update permissions for old node. We're just taking a parent away, so
2631 * we're loosening restrictions. Errors of permission update are not
2632 * fatal in this case, ignore them.
2633 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002634 bdrv_refresh_perms(old_bs, NULL);
Kevin Wolfad943dc2019-04-24 18:04:42 +02002635
2636 /* When the parent requiring a non-default AioContext is removed, the
2637 * node moves back to the main AioContext */
2638 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
Kevin Wolf8ee03992017-03-06 13:45:28 +01002639 }
Kevin Wolff54120f2014-05-26 11:09:59 +02002640}
2641
Alberto Garciab441dc72019-05-13 16:46:18 +03002642/*
2643 * This function steals the reference to child_bs from the caller.
2644 * That reference is later dropped by bdrv_root_unref_child().
2645 *
2646 * On failure NULL is returned, errp is set and the reference to
2647 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002648 *
2649 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2650 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03002651 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002652BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2653 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002654 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002655 BdrvChildRole child_role,
Kevin Wolf132ada82019-04-24 17:41:46 +02002656 AioContext *ctx,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002657 uint64_t perm, uint64_t shared_perm,
2658 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02002659{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002660 BdrvChild *child;
Kevin Wolf132ada82019-04-24 17:41:46 +02002661 Error *local_err = NULL;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002662 int ret;
2663
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002664 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002665 if (ret < 0) {
Kevin Wolf33a610c2016-12-15 13:04:20 +01002666 bdrv_abort_perm_update(child_bs);
Alberto Garciab441dc72019-05-13 16:46:18 +03002667 bdrv_unref(child_bs);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002668 return NULL;
2669 }
2670
2671 child = g_new(BdrvChild, 1);
Kevin Wolfdf581792015-06-15 11:53:47 +02002672 *child = (BdrvChild) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002673 .bs = NULL,
2674 .name = g_strdup(child_name),
Max Reitzbd86fb92020-05-13 13:05:13 +02002675 .klass = child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002676 .role = child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002677 .perm = perm,
2678 .shared_perm = shared_perm,
2679 .opaque = opaque,
Kevin Wolfdf581792015-06-15 11:53:47 +02002680 };
2681
Kevin Wolf132ada82019-04-24 17:41:46 +02002682 /* If the AioContexts don't match, first try to move the subtree of
2683 * child_bs into the AioContext of the new parent. If this doesn't work,
2684 * try moving the parent into the AioContext of child_bs instead. */
2685 if (bdrv_get_aio_context(child_bs) != ctx) {
2686 ret = bdrv_try_set_aio_context(child_bs, ctx, &local_err);
Max Reitzbd86fb92020-05-13 13:05:13 +02002687 if (ret < 0 && child_class->can_set_aio_ctx) {
Philippe Mathieu-Daudé0beab812020-02-18 10:43:52 +01002688 GSList *ignore = g_slist_prepend(NULL, child);
Kevin Wolf132ada82019-04-24 17:41:46 +02002689 ctx = bdrv_get_aio_context(child_bs);
Max Reitzbd86fb92020-05-13 13:05:13 +02002690 if (child_class->can_set_aio_ctx(child, ctx, &ignore, NULL)) {
Kevin Wolf132ada82019-04-24 17:41:46 +02002691 error_free(local_err);
2692 ret = 0;
2693 g_slist_free(ignore);
Philippe Mathieu-Daudé0beab812020-02-18 10:43:52 +01002694 ignore = g_slist_prepend(NULL, child);
Max Reitzbd86fb92020-05-13 13:05:13 +02002695 child_class->set_aio_ctx(child, ctx, &ignore);
Kevin Wolf132ada82019-04-24 17:41:46 +02002696 }
2697 g_slist_free(ignore);
2698 }
2699 if (ret < 0) {
2700 error_propagate(errp, local_err);
2701 g_free(child);
2702 bdrv_abort_perm_update(child_bs);
Vladimir Sementsov-Ogievskiy7a26df22020-03-24 18:59:21 +03002703 bdrv_unref(child_bs);
Kevin Wolf132ada82019-04-24 17:41:46 +02002704 return NULL;
2705 }
2706 }
2707
Kevin Wolf33a610c2016-12-15 13:04:20 +01002708 /* This performs the matching bdrv_set_perm() for the above check. */
Kevin Wolf466787f2017-03-08 14:44:07 +01002709 bdrv_replace_child(child, child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002710
2711 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02002712}
2713
Alberto Garciab441dc72019-05-13 16:46:18 +03002714/*
2715 * This function transfers the reference to child_bs from the caller
2716 * to parent_bs. That reference is later dropped by parent_bs on
2717 * bdrv_close() or if someone calls bdrv_unref_child().
2718 *
2719 * On failure NULL is returned, errp is set and the reference to
2720 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002721 *
2722 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2723 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03002724 */
Wen Congyang98292c62016-05-10 15:36:38 +08002725BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2726 BlockDriverState *child_bs,
2727 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002728 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002729 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002730 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002731{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002732 BdrvChild *child;
Kevin Wolff68c5982016-12-20 15:51:12 +01002733 uint64_t perm, shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002734
Kevin Wolff68c5982016-12-20 15:51:12 +01002735 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2736
2737 assert(parent_bs->drv);
Max Reitze5d8a402020-05-13 13:05:44 +02002738 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002739 perm, shared_perm, &perm, &shared_perm);
Kevin Wolff68c5982016-12-20 15:51:12 +01002740
Max Reitzbd86fb92020-05-13 13:05:13 +02002741 child = bdrv_root_attach_child(child_bs, child_name, child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002742 child_role, bdrv_get_aio_context(parent_bs),
Kevin Wolff68c5982016-12-20 15:51:12 +01002743 perm, shared_perm, parent_bs, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002744 if (child == NULL) {
2745 return NULL;
2746 }
2747
Kevin Wolff21d96d2016-03-08 13:47:46 +01002748 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2749 return child;
2750}
2751
Kevin Wolf3f09bfb2015-09-15 11:58:23 +02002752static void bdrv_detach_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002753{
Stefan Hajnoczi195ed8c2020-02-14 17:17:10 +00002754 QLIST_SAFE_REMOVE(child, next);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002755
Kevin Wolf466787f2017-03-08 14:44:07 +01002756 bdrv_replace_child(child, NULL);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002757
Kevin Wolf260fecf2015-04-27 13:46:22 +02002758 g_free(child->name);
Kevin Wolf33a60402015-06-15 13:51:04 +02002759 g_free(child);
2760}
2761
Max Reitz7b99a262019-06-12 16:07:11 +02002762/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002763void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002764{
Kevin Wolf779020c2015-10-13 14:09:44 +02002765 BlockDriverState *child_bs;
2766
Kevin Wolff21d96d2016-03-08 13:47:46 +01002767 child_bs = child->bs;
2768 bdrv_detach_child(child);
2769 bdrv_unref(child_bs);
2770}
2771
Max Reitz3cf746b2019-07-03 19:28:07 +02002772/**
2773 * Clear all inherits_from pointers from children and grandchildren of
2774 * @root that point to @root, where necessary.
2775 */
2776static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002777{
Max Reitz3cf746b2019-07-03 19:28:07 +02002778 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02002779
Max Reitz3cf746b2019-07-03 19:28:07 +02002780 if (child->bs->inherits_from == root) {
2781 /*
2782 * Remove inherits_from only when the last reference between root and
2783 * child->bs goes away.
2784 */
2785 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002786 if (c != child && c->bs == child->bs) {
2787 break;
2788 }
2789 }
2790 if (c == NULL) {
2791 child->bs->inherits_from = NULL;
2792 }
Kevin Wolf33a60402015-06-15 13:51:04 +02002793 }
2794
Max Reitz3cf746b2019-07-03 19:28:07 +02002795 QLIST_FOREACH(c, &child->bs->children, next) {
2796 bdrv_unset_inherits_from(root, c);
2797 }
2798}
2799
Max Reitz7b99a262019-06-12 16:07:11 +02002800/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02002801void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2802{
2803 if (child == NULL) {
2804 return;
2805 }
2806
2807 bdrv_unset_inherits_from(parent, child);
Kevin Wolff21d96d2016-03-08 13:47:46 +01002808 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02002809}
2810
Kevin Wolf5c8cab42016-02-24 15:13:35 +01002811
2812static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2813{
2814 BdrvChild *c;
2815 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02002816 if (c->klass->change_media) {
2817 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01002818 }
2819 }
2820}
2821
Alberto Garcia0065c452018-10-31 18:16:37 +02002822/* Return true if you can reach parent going through child->inherits_from
2823 * recursively. If parent or child are NULL, return false */
2824static bool bdrv_inherits_from_recursive(BlockDriverState *child,
2825 BlockDriverState *parent)
2826{
2827 while (child && child != parent) {
2828 child = child->inherits_from;
2829 }
2830
2831 return child != NULL;
2832}
2833
Kevin Wolf5db15a52015-09-14 15:33:33 +02002834/*
Max Reitz25191e52020-05-13 13:05:33 +02002835 * Return the BdrvChildRole for @bs's backing child. bs->backing is
2836 * mostly used for COW backing children (role = COW), but also for
2837 * filtered children (role = FILTERED | PRIMARY).
2838 */
2839static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
2840{
2841 if (bs->drv && bs->drv->is_filter) {
2842 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
2843 } else {
2844 return BDRV_CHILD_COW;
2845 }
2846}
2847
2848/*
Max Reitz9ee413c2019-06-12 18:42:34 +02002849 * Sets the bs->backing link of a BDS. A new reference is created; callers
Kevin Wolf5db15a52015-09-14 15:33:33 +02002850 * which don't need their own reference any more must call bdrv_unref().
2851 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03002852int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2853 Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08002854{
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03002855 int ret = 0;
Alberto Garcia0065c452018-10-31 18:16:37 +02002856 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
2857 bdrv_inherits_from_recursive(backing_hd, bs);
2858
Max Reitz9ee413c2019-06-12 18:42:34 +02002859 if (bdrv_is_backing_chain_frozen(bs, child_bs(bs->backing), errp)) {
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03002860 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002861 }
2862
Kevin Wolf5db15a52015-09-14 15:33:33 +02002863 if (backing_hd) {
2864 bdrv_ref(backing_hd);
2865 }
Fam Zheng8d24cce2014-05-23 21:29:45 +08002866
Kevin Wolf760e0062015-06-17 14:55:21 +02002867 if (bs->backing) {
Max Reitz7b99a262019-06-12 16:07:11 +02002868 /* Cannot be frozen, we checked that above */
Kevin Wolf5db15a52015-09-14 15:33:33 +02002869 bdrv_unref_child(bs, bs->backing);
Vladimir Sementsov-Ogievskiy6e579632020-03-16 09:06:30 +03002870 bs->backing = NULL;
Fam Zheng826b6ca2014-05-23 21:29:47 +08002871 }
2872
Fam Zheng8d24cce2014-05-23 21:29:45 +08002873 if (!backing_hd) {
2874 goto out;
2875 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002876
Max Reitz25191e52020-05-13 13:05:33 +02002877 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_of_bds,
2878 bdrv_backing_role(bs), errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03002879 if (!bs->backing) {
2880 ret = -EPERM;
2881 goto out;
2882 }
2883
Alberto Garcia0065c452018-10-31 18:16:37 +02002884 /* If backing_hd was already part of bs's backing chain, and
2885 * inherits_from pointed recursively to bs then let's update it to
2886 * point directly to bs (else it will become NULL). */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03002887 if (update_inherits_from) {
Alberto Garcia0065c452018-10-31 18:16:37 +02002888 backing_hd->inherits_from = bs;
2889 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08002890
Fam Zheng8d24cce2014-05-23 21:29:45 +08002891out:
Kevin Wolf3baca892014-07-16 17:48:16 +02002892 bdrv_refresh_limits(bs, NULL);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03002893
2894 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08002895}
2896
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002897/*
2898 * Opens the backing file for a BlockDriverState if not yet open
2899 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002900 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2901 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2902 * itself, all options starting with "${bdref_key}." are considered part of the
2903 * BlockdevRef.
2904 *
2905 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002906 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002907int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2908 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02002909{
Max Reitz6b6833c2019-02-01 20:29:15 +01002910 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002911 char *bdref_key_dot;
2912 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02002913 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01002914 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08002915 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002916 QDict *options;
2917 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002918 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002919
Kevin Wolf760e0062015-06-17 14:55:21 +02002920 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002921 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002922 }
2923
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002924 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002925 if (parent_options == NULL) {
2926 tmp_parent_options = qdict_new();
2927 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002928 }
2929
Paolo Bonzini9156df12012-10-18 16:49:17 +02002930 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002931
2932 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2933 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2934 g_free(bdref_key_dot);
2935
Markus Armbruster129c7d12017-03-30 19:43:12 +02002936 /*
2937 * Caution: while qdict_get_try_str() is fine, getting non-string
2938 * types would require more care. When @parent_options come from
2939 * -blockdev or blockdev_add, its members are typed according to
2940 * the QAPI schema, but when they come from -drive, they're all
2941 * QString.
2942 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002943 reference = qdict_get_try_str(parent_options, bdref_key);
2944 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01002945 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02002946 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002947 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002948 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08002949 } else {
Max Reitz998c2012019-02-01 20:29:08 +01002950 if (qdict_size(options) == 0) {
2951 /* If the user specifies options that do not modify the
2952 * backing file's behavior, we might still consider it the
2953 * implicit backing file. But it's easier this way, and
2954 * just specifying some of the backing BDS's options is
2955 * only possible with -drive anyway (otherwise the QAPI
2956 * schema forces the user to specify everything). */
2957 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
2958 }
2959
Max Reitz6b6833c2019-02-01 20:29:15 +01002960 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01002961 if (local_err) {
2962 ret = -EINVAL;
2963 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002964 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01002965 goto free_exit;
2966 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02002967 }
2968
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002969 if (!bs->drv || !bs->drv->supports_backing) {
2970 ret = -EINVAL;
2971 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002972 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002973 goto free_exit;
2974 }
2975
Peter Krempa6bff5972017-10-12 16:14:10 +02002976 if (!reference &&
2977 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002978 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02002979 }
2980
Max Reitz6b6833c2019-02-01 20:29:15 +01002981 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02002982 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02002983 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02002984 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01002985 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02002986 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002987 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002988 }
Kevin Wolfdf581792015-06-15 11:53:47 +02002989
Max Reitz998c2012019-02-01 20:29:08 +01002990 if (implicit_backing) {
2991 bdrv_refresh_filename(backing_hd);
2992 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
2993 backing_hd->filename);
2994 }
2995
Kevin Wolf5db15a52015-09-14 15:33:33 +02002996 /* Hook up the backing file link; drop our reference, bs owns the
2997 * backing_hd reference now */
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002998 bdrv_set_backing_hd(bs, backing_hd, &local_err);
Kevin Wolf5db15a52015-09-14 15:33:33 +02002999 bdrv_unref(backing_hd);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003000 if (local_err) {
Fam Zheng8cd1a3e2017-03-17 09:56:30 +08003001 error_propagate(errp, local_err);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003002 ret = -EINVAL;
3003 goto free_exit;
3004 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003005
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003006 qdict_del(parent_options, bdref_key);
3007
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003008free_exit:
3009 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003010 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003011 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003012}
3013
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003014static BlockDriverState *
3015bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003016 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003017 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003018{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003019 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003020 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003021 char *bdref_key_dot;
3022 const char *reference;
3023
Max Reitzbd86fb92020-05-13 13:05:13 +02003024 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003025
Max Reitzda557aa2013-12-20 19:28:11 +01003026 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3027 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3028 g_free(bdref_key_dot);
3029
Markus Armbruster129c7d12017-03-30 19:43:12 +02003030 /*
3031 * Caution: while qdict_get_try_str() is fine, getting non-string
3032 * types would require more care. When @options come from
3033 * -blockdev or blockdev_add, its members are typed according to
3034 * the QAPI schema, but when they come from -drive, they're all
3035 * QString.
3036 */
Max Reitzda557aa2013-12-20 19:28:11 +01003037 reference = qdict_get_try_str(options, bdref_key);
3038 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003039 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003040 error_setg(errp, "A block device must be specified for \"%s\"",
3041 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003042 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003043 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003044 goto done;
3045 }
3046
Max Reitz5b363932016-05-17 16:41:31 +02003047 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003048 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003049 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003050 goto done;
3051 }
3052
Max Reitzda557aa2013-12-20 19:28:11 +01003053done:
3054 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003055 return bs;
3056}
3057
3058/*
3059 * Opens a disk image whose options are given as BlockdevRef in another block
3060 * device's options.
3061 *
3062 * If allow_none is true, no image will be opened if filename is false and no
3063 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3064 *
3065 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3066 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3067 * itself, all options starting with "${bdref_key}." are considered part of the
3068 * BlockdevRef.
3069 *
3070 * The BlockdevRef will be removed from the options QDict.
3071 */
3072BdrvChild *bdrv_open_child(const char *filename,
3073 QDict *options, const char *bdref_key,
3074 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003075 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003076 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003077 bool allow_none, Error **errp)
3078{
3079 BlockDriverState *bs;
3080
Max Reitzbd86fb92020-05-13 13:05:13 +02003081 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003082 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003083 if (bs == NULL) {
3084 return NULL;
3085 }
3086
Max Reitz258b7762020-05-13 13:05:15 +02003087 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3088 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003089}
3090
Max Reitzbd86fb92020-05-13 13:05:13 +02003091/*
3092 * TODO Future callers may need to specify parent/child_class in order for
3093 * option inheritance to work. Existing callers use it for the root node.
3094 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003095BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3096{
3097 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003098 QObject *obj = NULL;
3099 QDict *qdict = NULL;
3100 const char *reference = NULL;
3101 Visitor *v = NULL;
3102
3103 if (ref->type == QTYPE_QSTRING) {
3104 reference = ref->u.reference;
3105 } else {
3106 BlockdevOptions *options = &ref->u.definition;
3107 assert(ref->type == QTYPE_QDICT);
3108
3109 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003110 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003111 visit_complete(v, &obj);
3112
Max Reitz7dc847e2018-02-24 16:40:29 +01003113 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003114 qdict_flatten(qdict);
3115
3116 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3117 * compatibility with other callers) rather than what we want as the
3118 * real defaults. Apply the defaults here instead. */
3119 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3120 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3121 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003122 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3123
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003124 }
3125
Max Reitz272c02e2020-05-13 13:05:17 +02003126 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003127 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003128 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003129 visit_free(v);
3130 return bs;
3131}
3132
Max Reitz66836182016-05-17 16:41:27 +02003133static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3134 int flags,
3135 QDict *snapshot_options,
3136 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003137{
3138 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003139 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003140 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003141 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003142 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003143 int ret;
3144
3145 /* if snapshot, we create a temporary backing file and open it
3146 instead of opening 'filename' directly */
3147
3148 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003149 total_size = bdrv_getlength(bs);
3150 if (total_size < 0) {
3151 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003152 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003153 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003154
3155 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003156 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003157 if (ret < 0) {
3158 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003159 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003160 }
3161
Max Reitzef810432014-12-02 18:32:42 +01003162 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003163 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003164 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003165 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003166 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003167 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003168 error_prepend(errp, "Could not create temporary overlay '%s': ",
3169 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003170 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003171 }
3172
Kevin Wolf73176be2016-03-07 13:02:15 +01003173 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003174 qdict_put_str(snapshot_options, "file.driver", "file");
3175 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3176 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003177
Max Reitz5b363932016-05-17 16:41:31 +02003178 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003179 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003180 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003181 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003182 }
3183
Eric Blakeff6ed712017-04-27 16:58:18 -05003184 /* bdrv_append() consumes a strong reference to bs_snapshot
3185 * (i.e. it will call bdrv_unref() on it) even on error, so in
3186 * order to be able to return one, we have to increase
3187 * bs_snapshot's refcount here */
Max Reitz66836182016-05-17 16:41:27 +02003188 bdrv_ref(bs_snapshot);
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003189 ret = bdrv_append(bs_snapshot, bs, errp);
3190 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003191 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003192 goto out;
3193 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003194
3195out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003196 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003197 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05003198 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003199}
3200
Max Reitzda557aa2013-12-20 19:28:11 +01003201/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003202 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003203 *
3204 * options is a QDict of options to pass to the block drivers, or NULL for an
3205 * empty set of options. The reference to the QDict belongs to the block layer
3206 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003207 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003208 *
3209 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3210 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003211 *
3212 * The reference parameter may be used to specify an existing block device which
3213 * should be opened. If specified, neither options nor a filename may be given,
3214 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003215 */
Max Reitz5b363932016-05-17 16:41:31 +02003216static BlockDriverState *bdrv_open_inherit(const char *filename,
3217 const char *reference,
3218 QDict *options, int flags,
3219 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003220 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003221 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003222 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003223{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003224 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003225 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003226 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003227 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003228 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003229 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003230 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003231 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003232 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003233 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003234
Max Reitzbd86fb92020-05-13 13:05:13 +02003235 assert(!child_class || !flags);
3236 assert(!child_class == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01003237
Max Reitzddf56362014-02-18 18:33:06 +01003238 if (reference) {
3239 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003240 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003241
Max Reitzddf56362014-02-18 18:33:06 +01003242 if (filename || options_non_empty) {
3243 error_setg(errp, "Cannot reference an existing block device with "
3244 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003245 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003246 }
3247
3248 bs = bdrv_lookup_bs(reference, reference, errp);
3249 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003250 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003251 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003252
Max Reitzddf56362014-02-18 18:33:06 +01003253 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003254 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003255 }
3256
Max Reitz5b363932016-05-17 16:41:31 +02003257 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003258
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003259 /* NULL means an empty set of options */
3260 if (options == NULL) {
3261 options = qdict_new();
3262 }
3263
Kevin Wolf145f5982015-05-08 16:15:03 +02003264 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003265 parse_json_protocol(options, &filename, &local_err);
3266 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003267 goto fail;
3268 }
3269
Kevin Wolf145f5982015-05-08 16:15:03 +02003270 bs->explicit_options = qdict_clone_shallow(options);
3271
Max Reitzbd86fb92020-05-13 13:05:13 +02003272 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003273 bool parent_is_format;
3274
3275 if (parent->drv) {
3276 parent_is_format = parent->drv->is_format;
3277 } else {
3278 /*
3279 * parent->drv is not set yet because this node is opened for
3280 * (potential) format probing. That means that @parent is going
3281 * to be a format node.
3282 */
3283 parent_is_format = true;
3284 }
3285
Kevin Wolfbddcec32015-04-09 18:47:50 +02003286 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003287 child_class->inherit_options(child_role, parent_is_format,
3288 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003289 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003290 }
3291
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003292 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003293 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003294 goto fail;
3295 }
3296
Markus Armbruster129c7d12017-03-30 19:43:12 +02003297 /*
3298 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3299 * Caution: getting a boolean member of @options requires care.
3300 * When @options come from -blockdev or blockdev_add, members are
3301 * typed according to the QAPI schema, but when they come from
3302 * -drive, they're all QString.
3303 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003304 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3305 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3306 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3307 } else {
3308 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003309 }
3310
3311 if (flags & BDRV_O_SNAPSHOT) {
3312 snapshot_options = qdict_new();
3313 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3314 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003315 /* Let bdrv_backing_options() override "read-only" */
3316 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003317 bdrv_inherited_options(BDRV_CHILD_COW, true,
3318 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003319 }
3320
Kevin Wolf62392eb2015-04-24 16:38:02 +02003321 bs->open_flags = flags;
3322 bs->options = options;
3323 options = qdict_clone_shallow(options);
3324
Kevin Wolf76c591b2014-06-04 14:19:44 +02003325 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003326 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003327 drvname = qdict_get_try_str(options, "driver");
3328 if (drvname) {
3329 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003330 if (!drv) {
3331 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003332 goto fail;
3333 }
3334 }
3335
3336 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003337
Markus Armbruster129c7d12017-03-30 19:43:12 +02003338 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003339 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003340 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3341 (backing && *backing == '\0'))
3342 {
Max Reitz4f7be282018-02-24 16:40:33 +01003343 if (backing) {
3344 warn_report("Use of \"backing\": \"\" is deprecated; "
3345 "use \"backing\": null instead");
3346 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003347 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003348 qdict_del(bs->explicit_options, "backing");
3349 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003350 qdict_del(options, "backing");
3351 }
3352
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003353 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003354 * probing, the block drivers will do their own bdrv_open_child() for the
3355 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003356 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003357 BlockDriverState *file_bs;
3358
3359 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003360 &child_of_bds, BDRV_CHILD_IMAGE,
3361 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003362 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003363 goto fail;
3364 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003365 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003366 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3367 * looking at the header to guess the image format. This works even
3368 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003369 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003370 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003371 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003372 if (local_err) {
3373 goto fail;
3374 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003375
Eric Blake46f5ac22017-04-27 16:58:17 -05003376 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003377 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003378 }
3379
Kevin Wolf76c591b2014-06-04 14:19:44 +02003380 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003381 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003382 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003383 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003384 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003385 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003386 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003387 /*
3388 * This option update would logically belong in bdrv_fill_options(),
3389 * but we first need to open bs->file for the probing to work, while
3390 * opening bs->file already requires the (mostly) final set of options
3391 * so that cache mode etc. can be inherited.
3392 *
3393 * Adding the driver later is somewhat ugly, but it's not an option
3394 * that would ever be inherited, so it's correct. We just need to make
3395 * sure to update both bs->options (which has the full effective
3396 * options for bs) and options (which has file.* already removed).
3397 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003398 qdict_put_str(bs->options, "driver", drv->format_name);
3399 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003400 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003401 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003402 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003403 }
3404
Max Reitz53a29512015-03-19 14:53:16 -04003405 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3406 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3407 /* file must be NULL if a protocol BDS is about to be created
3408 * (the inverse results in an error message from bdrv_open_common()) */
3409 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3410
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003411 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003412 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003413 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003414 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01003415 }
3416
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003417 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003418 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01003419 file = NULL;
3420 }
3421
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003422 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02003423 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003424 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003425 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003426 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003427 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003428 }
3429
Alberto Garcia50196d72018-09-06 12:37:03 +03003430 /* Remove all children options and references
3431 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03003432 QLIST_FOREACH(child, &bs->children, next) {
3433 char *child_key_dot;
3434 child_key_dot = g_strdup_printf("%s.", child->name);
3435 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3436 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03003437 qdict_del(bs->explicit_options, child->name);
3438 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03003439 g_free(child_key_dot);
3440 }
3441
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003442 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01003443 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003444 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01003445 if (flags & BDRV_O_PROTOCOL) {
3446 error_setg(errp, "Block protocol '%s' doesn't support the option "
3447 "'%s'", drv->format_name, entry->key);
3448 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01003449 error_setg(errp,
3450 "Block format '%s' does not support the option '%s'",
3451 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01003452 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003453
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003454 goto close_and_fail;
3455 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003456
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01003457 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003458
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003459 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03003460 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003461
3462 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3463 * temporary snapshot afterwards. */
3464 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02003465 BlockDriverState *snapshot_bs;
3466 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3467 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01003468 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003469 if (local_err) {
3470 goto close_and_fail;
3471 }
Max Reitz5b363932016-05-17 16:41:31 +02003472 /* We are not going to return bs but the overlay on top of it
3473 * (snapshot_bs); thus, we have to drop the strong reference to bs
3474 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3475 * though, because the overlay still has a reference to it. */
3476 bdrv_unref(bs);
3477 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02003478 }
3479
Max Reitz5b363932016-05-17 16:41:31 +02003480 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003481
Kevin Wolf8bfea152014-04-11 19:16:36 +02003482fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003483 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003484 qobject_unref(snapshot_options);
3485 qobject_unref(bs->explicit_options);
3486 qobject_unref(bs->options);
3487 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003488 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03003489 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003490 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003491 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003492 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003493
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003494close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02003495 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003496 qobject_unref(snapshot_options);
3497 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003498 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003499 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003500}
3501
Max Reitz5b363932016-05-17 16:41:31 +02003502BlockDriverState *bdrv_open(const char *filename, const char *reference,
3503 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02003504{
Max Reitz5b363932016-05-17 16:41:31 +02003505 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02003506 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003507}
3508
Alberto Garciafaf116b2019-03-12 18:48:49 +02003509/* Return true if the NULL-terminated @list contains @str */
3510static bool is_str_in_list(const char *str, const char *const *list)
3511{
3512 if (str && list) {
3513 int i;
3514 for (i = 0; list[i] != NULL; i++) {
3515 if (!strcmp(str, list[i])) {
3516 return true;
3517 }
3518 }
3519 }
3520 return false;
3521}
3522
3523/*
3524 * Check that every option set in @bs->options is also set in
3525 * @new_opts.
3526 *
3527 * Options listed in the common_options list and in
3528 * @bs->drv->mutable_opts are skipped.
3529 *
3530 * Return 0 on success, otherwise return -EINVAL and set @errp.
3531 */
3532static int bdrv_reset_options_allowed(BlockDriverState *bs,
3533 const QDict *new_opts, Error **errp)
3534{
3535 const QDictEntry *e;
3536 /* These options are common to all block drivers and are handled
3537 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3538 const char *const common_options[] = {
3539 "node-name", "discard", "cache.direct", "cache.no-flush",
3540 "read-only", "auto-read-only", "detect-zeroes", NULL
3541 };
3542
3543 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3544 if (!qdict_haskey(new_opts, e->key) &&
3545 !is_str_in_list(e->key, common_options) &&
3546 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3547 error_setg(errp, "Option '%s' cannot be reset "
3548 "to its default value", e->key);
3549 return -EINVAL;
3550 }
3551 }
3552
3553 return 0;
3554}
3555
Jeff Codye971aa12012-09-20 15:13:19 -04003556/*
Alberto Garciacb828c32019-03-12 18:48:47 +02003557 * Returns true if @child can be reached recursively from @bs
3558 */
3559static bool bdrv_recurse_has_child(BlockDriverState *bs,
3560 BlockDriverState *child)
3561{
3562 BdrvChild *c;
3563
3564 if (bs == child) {
3565 return true;
3566 }
3567
3568 QLIST_FOREACH(c, &bs->children, next) {
3569 if (bdrv_recurse_has_child(c->bs, child)) {
3570 return true;
3571 }
3572 }
3573
3574 return false;
3575}
3576
3577/*
Jeff Codye971aa12012-09-20 15:13:19 -04003578 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3579 * reopen of multiple devices.
3580 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003581 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04003582 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3583 * be created and initialized. This newly created BlockReopenQueue should be
3584 * passed back in for subsequent calls that are intended to be of the same
3585 * atomic 'set'.
3586 *
3587 * bs is the BlockDriverState to add to the reopen queue.
3588 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003589 * options contains the changed options for the associated bs
3590 * (the BlockReopenQueue takes ownership)
3591 *
Jeff Codye971aa12012-09-20 15:13:19 -04003592 * flags contains the open flags for the associated bs
3593 *
3594 * returns a pointer to bs_queue, which is either the newly allocated
3595 * bs_queue, or the existing bs_queue being used.
3596 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003597 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003598 */
Kevin Wolf28518102015-05-08 17:07:31 +02003599static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3600 BlockDriverState *bs,
3601 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003602 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02003603 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02003604 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02003605 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02003606 int parent_flags,
3607 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04003608{
3609 assert(bs != NULL);
3610
3611 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02003612 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003613 QDict *old_options, *explicit_options, *options_copy;
3614 int flags;
3615 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003616
Kevin Wolf1a63a902017-12-06 20:24:44 +01003617 /* Make sure that the caller remembered to use a drained section. This is
3618 * important to avoid graph changes between the recursive queuing here and
3619 * bdrv_reopen_multiple(). */
3620 assert(bs->quiesce_counter > 0);
3621
Jeff Codye971aa12012-09-20 15:13:19 -04003622 if (bs_queue == NULL) {
3623 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003624 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04003625 }
3626
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003627 if (!options) {
3628 options = qdict_new();
3629 }
3630
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003631 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003632 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003633 if (bs == bs_entry->state.bs) {
3634 break;
3635 }
3636 }
3637
Kevin Wolf28518102015-05-08 17:07:31 +02003638 /*
3639 * Precedence of options:
3640 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003641 * 2. Retained from explicitly set options of bs
3642 * 3. Inherited from parent node
3643 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02003644 */
3645
Kevin Wolf145f5982015-05-08 16:15:03 +02003646 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02003647 if (bs_entry || keep_old_opts) {
3648 old_options = qdict_clone_shallow(bs_entry ?
3649 bs_entry->state.explicit_options :
3650 bs->explicit_options);
3651 bdrv_join_options(bs, options, old_options);
3652 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003653 }
Kevin Wolf145f5982015-05-08 16:15:03 +02003654
3655 explicit_options = qdict_clone_shallow(options);
3656
Kevin Wolf28518102015-05-08 17:07:31 +02003657 /* Inherit from parent node */
3658 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003659 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003660 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02003661 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003662 } else {
3663 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02003664 }
3665
Alberto Garcia077e8e22019-03-12 18:48:44 +02003666 if (keep_old_opts) {
3667 /* Old values are used for options that aren't set yet */
3668 old_options = qdict_clone_shallow(bs->options);
3669 bdrv_join_options(bs, options, old_options);
3670 qobject_unref(old_options);
3671 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003672
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003673 /* We have the final set of options so let's update the flags */
3674 options_copy = qdict_clone_shallow(options);
3675 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3676 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3677 update_flags_from_options(&flags, opts);
3678 qemu_opts_del(opts);
3679 qobject_unref(options_copy);
3680
Kevin Wolffd452022017-08-03 17:02:59 +02003681 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02003682 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02003683 if (flags & BDRV_O_RDWR) {
3684 flags |= BDRV_O_ALLOW_RDWR;
3685 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02003686
Kevin Wolf1857c972017-09-14 14:53:46 +02003687 if (!bs_entry) {
3688 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003689 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02003690 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003691 qobject_unref(bs_entry->state.options);
3692 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02003693 }
3694
3695 bs_entry->state.bs = bs;
3696 bs_entry->state.options = options;
3697 bs_entry->state.explicit_options = explicit_options;
3698 bs_entry->state.flags = flags;
3699
Kevin Wolf30450252017-07-03 17:07:35 +02003700 /* This needs to be overwritten in bdrv_reopen_prepare() */
3701 bs_entry->state.perm = UINT64_MAX;
3702 bs_entry->state.shared_perm = 0;
3703
Alberto Garcia85466322019-03-12 18:48:45 +02003704 /*
3705 * If keep_old_opts is false then it means that unspecified
3706 * options must be reset to their original value. We don't allow
3707 * resetting 'backing' but we need to know if the option is
3708 * missing in order to decide if we have to return an error.
3709 */
3710 if (!keep_old_opts) {
3711 bs_entry->state.backing_missing =
3712 !qdict_haskey(options, "backing") &&
3713 !qdict_haskey(options, "backing.driver");
3714 }
3715
Kevin Wolf67251a32015-04-09 18:54:04 +02003716 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02003717 QDict *new_child_options = NULL;
3718 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003719
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003720 /* reopen can only change the options of block devices that were
3721 * implicitly created and inherited options. For other (referenced)
3722 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02003723 if (child->bs->inherits_from != bs) {
3724 continue;
3725 }
3726
Alberto Garcia85466322019-03-12 18:48:45 +02003727 /* Check if the options contain a child reference */
3728 if (qdict_haskey(options, child->name)) {
3729 const char *childref = qdict_get_try_str(options, child->name);
3730 /*
3731 * The current child must not be reopened if the child
3732 * reference is null or points to a different node.
3733 */
3734 if (g_strcmp0(childref, child->bs->node_name)) {
3735 continue;
3736 }
3737 /*
3738 * If the child reference points to the current child then
3739 * reopen it with its existing set of options (note that
3740 * it can still inherit new options from the parent).
3741 */
3742 child_keep_old = true;
3743 } else {
3744 /* Extract child options ("child-name.*") */
3745 char *child_key_dot = g_strdup_printf("%s.", child->name);
3746 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
3747 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
3748 g_free(child_key_dot);
3749 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003750
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003751 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02003752 child->klass, child->role, bs->drv->is_format,
3753 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04003754 }
3755
Jeff Codye971aa12012-09-20 15:13:19 -04003756 return bs_queue;
3757}
3758
Kevin Wolf28518102015-05-08 17:07:31 +02003759BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3760 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02003761 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02003762{
Max Reitz3cdc69d2020-05-13 13:05:18 +02003763 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
3764 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02003765}
3766
Jeff Codye971aa12012-09-20 15:13:19 -04003767/*
3768 * Reopen multiple BlockDriverStates atomically & transactionally.
3769 *
3770 * The queue passed in (bs_queue) must have been built up previous
3771 * via bdrv_reopen_queue().
3772 *
3773 * Reopens all BDS specified in the queue, with the appropriate
3774 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02003775 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04003776 * data cleaned up.
3777 *
3778 * If all devices prepare successfully, then the changes are committed
3779 * to all devices.
3780 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003781 * All affected nodes must be drained between bdrv_reopen_queue() and
3782 * bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003783 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02003784int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04003785{
3786 int ret = -1;
3787 BlockReopenQueueEntry *bs_entry, *next;
Jeff Codye971aa12012-09-20 15:13:19 -04003788
3789 assert(bs_queue != NULL);
3790
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003791 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01003792 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolfa4615ab2019-03-05 16:51:13 +01003793 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, errp)) {
Jeff Codye971aa12012-09-20 15:13:19 -04003794 goto cleanup;
3795 }
3796 bs_entry->prepared = true;
3797 }
3798
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003799 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01003800 BDRVReopenState *state = &bs_entry->state;
3801 ret = bdrv_check_perm(state->bs, bs_queue, state->perm,
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03003802 state->shared_perm, NULL, errp);
Kevin Wolf69b736e2019-03-05 17:18:22 +01003803 if (ret < 0) {
3804 goto cleanup_perm;
3805 }
Alberto Garciacb828c32019-03-12 18:48:47 +02003806 /* Check if new_backing_bs would accept the new permissions */
3807 if (state->replace_backing_bs && state->new_backing_bs) {
3808 uint64_t nperm, nshared;
3809 bdrv_child_perm(state->bs, state->new_backing_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02003810 NULL, bdrv_backing_role(state->bs),
Max Reitz25191e52020-05-13 13:05:33 +02003811 bs_queue, state->perm, state->shared_perm,
Alberto Garciacb828c32019-03-12 18:48:47 +02003812 &nperm, &nshared);
3813 ret = bdrv_check_update_perm(state->new_backing_bs, NULL,
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03003814 nperm, nshared, NULL, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02003815 if (ret < 0) {
3816 goto cleanup_perm;
3817 }
3818 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01003819 bs_entry->perms_checked = true;
3820 }
3821
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03003822 /*
3823 * If we reach this point, we have success and just need to apply the
3824 * changes.
3825 *
3826 * Reverse order is used to comfort qcow2 driver: on commit it need to write
3827 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
3828 * children are usually goes after parents in reopen-queue, so go from last
3829 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04003830 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03003831 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Jeff Codye971aa12012-09-20 15:13:19 -04003832 bdrv_reopen_commit(&bs_entry->state);
3833 }
3834
3835 ret = 0;
Kevin Wolf69b736e2019-03-05 17:18:22 +01003836cleanup_perm:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003837 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01003838 BDRVReopenState *state = &bs_entry->state;
Jeff Codye971aa12012-09-20 15:13:19 -04003839
Kevin Wolf69b736e2019-03-05 17:18:22 +01003840 if (!bs_entry->perms_checked) {
3841 continue;
3842 }
3843
3844 if (ret == 0) {
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03003845 uint64_t perm, shared;
3846
3847 bdrv_get_cumulative_perm(state->bs, &perm, &shared);
3848 assert(perm == state->perm);
3849 assert(shared == state->shared_perm);
3850
3851 bdrv_set_perm(state->bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01003852 } else {
3853 bdrv_abort_perm_update(state->bs);
Alberto Garciacb828c32019-03-12 18:48:47 +02003854 if (state->replace_backing_bs && state->new_backing_bs) {
3855 bdrv_abort_perm_update(state->new_backing_bs);
3856 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01003857 }
3858 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01003859
3860 if (ret == 0) {
3861 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
3862 BlockDriverState *bs = bs_entry->state.bs;
3863
3864 if (bs->drv->bdrv_reopen_commit_post)
3865 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
3866 }
3867 }
Jeff Codye971aa12012-09-20 15:13:19 -04003868cleanup:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003869 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Alberto Garcia1bab38e2018-06-29 14:37:01 +03003870 if (ret) {
3871 if (bs_entry->prepared) {
3872 bdrv_reopen_abort(&bs_entry->state);
3873 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003874 qobject_unref(bs_entry->state.explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003875 qobject_unref(bs_entry->state.options);
Jeff Codye971aa12012-09-20 15:13:19 -04003876 }
Alberto Garciacb828c32019-03-12 18:48:47 +02003877 if (bs_entry->state.new_backing_bs) {
3878 bdrv_unref(bs_entry->state.new_backing_bs);
3879 }
Jeff Codye971aa12012-09-20 15:13:19 -04003880 g_free(bs_entry);
3881 }
3882 g_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03003883
Jeff Codye971aa12012-09-20 15:13:19 -04003884 return ret;
3885}
3886
Alberto Garcia6e1000a2018-11-12 16:00:33 +02003887int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
3888 Error **errp)
3889{
3890 int ret;
3891 BlockReopenQueue *queue;
3892 QDict *opts = qdict_new();
3893
3894 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
3895
3896 bdrv_subtree_drained_begin(bs);
Alberto Garcia077e8e22019-03-12 18:48:44 +02003897 queue = bdrv_reopen_queue(NULL, bs, opts, true);
Alberto Garcia5019aec2019-03-12 18:48:50 +02003898 ret = bdrv_reopen_multiple(queue, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02003899 bdrv_subtree_drained_end(bs);
3900
3901 return ret;
3902}
3903
Kevin Wolf30450252017-07-03 17:07:35 +02003904static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3905 BdrvChild *c)
3906{
3907 BlockReopenQueueEntry *entry;
3908
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003909 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf30450252017-07-03 17:07:35 +02003910 BlockDriverState *bs = entry->state.bs;
3911 BdrvChild *child;
3912
3913 QLIST_FOREACH(child, &bs->children, next) {
3914 if (child == c) {
3915 return entry;
3916 }
3917 }
3918 }
3919
3920 return NULL;
3921}
3922
3923static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3924 uint64_t *perm, uint64_t *shared)
3925{
3926 BdrvChild *c;
3927 BlockReopenQueueEntry *parent;
3928 uint64_t cumulative_perms = 0;
3929 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3930
3931 QLIST_FOREACH(c, &bs->parents, next_parent) {
3932 parent = find_parent_in_reopen_queue(q, c);
3933 if (!parent) {
3934 cumulative_perms |= c->perm;
3935 cumulative_shared_perms &= c->shared_perm;
3936 } else {
3937 uint64_t nperm, nshared;
3938
Max Reitze5d8a402020-05-13 13:05:44 +02003939 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
Kevin Wolf30450252017-07-03 17:07:35 +02003940 parent->state.perm, parent->state.shared_perm,
3941 &nperm, &nshared);
3942
3943 cumulative_perms |= nperm;
3944 cumulative_shared_perms &= nshared;
3945 }
3946 }
3947 *perm = cumulative_perms;
3948 *shared = cumulative_shared_perms;
3949}
Jeff Codye971aa12012-09-20 15:13:19 -04003950
Kevin Wolf1de6b452020-03-06 15:14:13 +01003951static bool bdrv_reopen_can_attach(BlockDriverState *parent,
3952 BdrvChild *child,
3953 BlockDriverState *new_child,
3954 Error **errp)
3955{
3956 AioContext *parent_ctx = bdrv_get_aio_context(parent);
3957 AioContext *child_ctx = bdrv_get_aio_context(new_child);
3958 GSList *ignore;
3959 bool ret;
3960
3961 ignore = g_slist_prepend(NULL, child);
3962 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
3963 g_slist_free(ignore);
3964 if (ret) {
3965 return ret;
3966 }
3967
3968 ignore = g_slist_prepend(NULL, child);
3969 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
3970 g_slist_free(ignore);
3971 return ret;
3972}
3973
Jeff Codye971aa12012-09-20 15:13:19 -04003974/*
Alberto Garciacb828c32019-03-12 18:48:47 +02003975 * Take a BDRVReopenState and check if the value of 'backing' in the
3976 * reopen_state->options QDict is valid or not.
3977 *
3978 * If 'backing' is missing from the QDict then return 0.
3979 *
3980 * If 'backing' contains the node name of the backing file of
3981 * reopen_state->bs then return 0.
3982 *
3983 * If 'backing' contains a different node name (or is null) then check
3984 * whether the current backing file can be replaced with the new one.
3985 * If that's the case then reopen_state->replace_backing_bs is set to
3986 * true and reopen_state->new_backing_bs contains a pointer to the new
3987 * backing BlockDriverState (or NULL).
3988 *
3989 * Return 0 on success, otherwise return < 0 and set @errp.
3990 */
3991static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
3992 Error **errp)
3993{
3994 BlockDriverState *bs = reopen_state->bs;
Max Reitz1d42f482019-06-12 17:24:39 +02003995 BlockDriverState *overlay_bs, *below_bs, *new_backing_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02003996 QObject *value;
3997 const char *str;
3998
3999 value = qdict_get(reopen_state->options, "backing");
4000 if (value == NULL) {
4001 return 0;
4002 }
4003
4004 switch (qobject_type(value)) {
4005 case QTYPE_QNULL:
4006 new_backing_bs = NULL;
4007 break;
4008 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004009 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciacb828c32019-03-12 18:48:47 +02004010 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
4011 if (new_backing_bs == NULL) {
4012 return -EINVAL;
4013 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
4014 error_setg(errp, "Making '%s' a backing file of '%s' "
4015 "would create a cycle", str, bs->node_name);
4016 return -EINVAL;
4017 }
4018 break;
4019 default:
4020 /* 'backing' does not allow any other data type */
4021 g_assert_not_reached();
4022 }
4023
4024 /*
Kevin Wolf1de6b452020-03-06 15:14:13 +01004025 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4026 * bdrv_reopen_commit() won't fail.
Alberto Garciacb828c32019-03-12 18:48:47 +02004027 */
4028 if (new_backing_bs) {
Kevin Wolf1de6b452020-03-06 15:14:13 +01004029 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004030 return -EINVAL;
4031 }
4032 }
4033
4034 /*
Max Reitz1d42f482019-06-12 17:24:39 +02004035 * Ensure that @bs can really handle backing files, because we are
4036 * about to give it one (or swap the existing one)
4037 */
4038 if (bs->drv->is_filter) {
4039 /* Filters always have a file or a backing child */
4040 if (!bs->backing) {
4041 error_setg(errp, "'%s' is a %s filter node that does not support a "
4042 "backing child", bs->node_name, bs->drv->format_name);
4043 return -EINVAL;
4044 }
4045 } else if (!bs->drv->supports_backing) {
4046 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
4047 "files", bs->drv->format_name, bs->node_name);
4048 return -EINVAL;
4049 }
4050
4051 /*
Alberto Garciacb828c32019-03-12 18:48:47 +02004052 * Find the "actual" backing file by skipping all links that point
4053 * to an implicit node, if any (e.g. a commit filter node).
Max Reitz1d42f482019-06-12 17:24:39 +02004054 * We cannot use any of the bdrv_skip_*() functions here because
4055 * those return the first explicit node, while we are looking for
4056 * its overlay here.
Alberto Garciacb828c32019-03-12 18:48:47 +02004057 */
4058 overlay_bs = bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004059 for (below_bs = bdrv_filter_or_cow_bs(overlay_bs);
4060 below_bs && below_bs->implicit;
4061 below_bs = bdrv_filter_or_cow_bs(overlay_bs))
4062 {
4063 overlay_bs = below_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004064 }
4065
4066 /* If we want to replace the backing file we need some extra checks */
Max Reitz1d42f482019-06-12 17:24:39 +02004067 if (new_backing_bs != bdrv_filter_or_cow_bs(overlay_bs)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004068 /* Check for implicit nodes between bs and its backing file */
4069 if (bs != overlay_bs) {
4070 error_setg(errp, "Cannot change backing link if '%s' has "
4071 "an implicit backing file", bs->node_name);
4072 return -EPERM;
4073 }
Max Reitz1d42f482019-06-12 17:24:39 +02004074 /*
4075 * Check if the backing link that we want to replace is frozen.
4076 * Note that
4077 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4078 * because we know that overlay_bs == bs, and that @bs
4079 * either is a filter that uses ->backing or a COW format BDS
4080 * with bs->drv->supports_backing == true.
4081 */
4082 if (bdrv_is_backing_chain_frozen(overlay_bs,
4083 child_bs(overlay_bs->backing), errp))
4084 {
Alberto Garciacb828c32019-03-12 18:48:47 +02004085 return -EPERM;
4086 }
4087 reopen_state->replace_backing_bs = true;
4088 if (new_backing_bs) {
4089 bdrv_ref(new_backing_bs);
4090 reopen_state->new_backing_bs = new_backing_bs;
4091 }
4092 }
4093
4094 return 0;
4095}
4096
4097/*
Jeff Codye971aa12012-09-20 15:13:19 -04004098 * Prepares a BlockDriverState for reopen. All changes are staged in the
4099 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4100 * the block driver layer .bdrv_reopen_prepare()
4101 *
4102 * bs is the BlockDriverState to reopen
4103 * flags are the new open flags
4104 * queue is the reopen queue
4105 *
4106 * Returns 0 on success, non-zero on error. On error errp will be set
4107 * as well.
4108 *
4109 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4110 * It is the responsibility of the caller to then call the abort() or
4111 * commit() for any other BDS that have been left in a prepare() state
4112 *
4113 */
4114int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
4115 Error **errp)
4116{
4117 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004118 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004119 Error *local_err = NULL;
4120 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004121 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004122 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004123 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004124 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004125 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004126
4127 assert(reopen_state != NULL);
4128 assert(reopen_state->bs->drv != NULL);
4129 drv = reopen_state->bs->drv;
4130
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004131 /* This function and each driver's bdrv_reopen_prepare() remove
4132 * entries from reopen_state->options as they are processed, so
4133 * we need to make a copy of the original QDict. */
4134 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4135
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004136 /* Process generic block layer options */
4137 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004138 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004139 ret = -EINVAL;
4140 goto error;
4141 }
4142
Alberto Garciae6d79c42018-11-12 16:00:47 +02004143 /* This was already called in bdrv_reopen_queue_child() so the flags
4144 * are up-to-date. This time we simply want to remove the options from
4145 * QemuOpts in order to indicate that they have been processed. */
4146 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004147 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004148 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004149
Alberto Garcia415bbca2018-10-03 13:23:13 +03004150 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004151 if (discard != NULL) {
4152 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4153 error_setg(errp, "Invalid discard option");
4154 ret = -EINVAL;
4155 goto error;
4156 }
4157 }
4158
Alberto Garcia543770b2018-09-06 12:37:09 +03004159 reopen_state->detect_zeroes =
4160 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4161 if (local_err) {
4162 error_propagate(errp, local_err);
4163 ret = -EINVAL;
4164 goto error;
4165 }
4166
Alberto Garcia57f9db92018-09-06 12:37:06 +03004167 /* All other options (including node-name and driver) must be unchanged.
4168 * Put them back into the QDict, so that they are checked at the end
4169 * of this function. */
4170 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004171
Jeff Cody3d8ce172017-04-07 16:55:30 -04004172 /* If we are to stay read-only, do not allow permission change
4173 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4174 * not set, or if the BDS still has copy_on_read enabled */
4175 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004176 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004177 if (local_err) {
4178 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004179 goto error;
4180 }
4181
Kevin Wolf30450252017-07-03 17:07:35 +02004182 /* Calculate required permissions after reopening */
4183 bdrv_reopen_perm(queue, reopen_state->bs,
4184 &reopen_state->perm, &reopen_state->shared_perm);
Jeff Codye971aa12012-09-20 15:13:19 -04004185
4186 ret = bdrv_flush(reopen_state->bs);
4187 if (ret) {
Eric Blake455b0fd2015-11-10 23:51:20 -07004188 error_setg_errno(errp, -ret, "Error flushing drive");
Jeff Codye971aa12012-09-20 15:13:19 -04004189 goto error;
4190 }
4191
4192 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004193 /*
4194 * If a driver-specific option is missing, it means that we
4195 * should reset it to its default value.
4196 * But not all options allow that, so we need to check it first.
4197 */
4198 ret = bdrv_reset_options_allowed(reopen_state->bs,
4199 reopen_state->options, errp);
4200 if (ret) {
4201 goto error;
4202 }
4203
Jeff Codye971aa12012-09-20 15:13:19 -04004204 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4205 if (ret) {
4206 if (local_err != NULL) {
4207 error_propagate(errp, local_err);
4208 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004209 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004210 error_setg(errp, "failed while preparing to reopen image '%s'",
4211 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004212 }
4213 goto error;
4214 }
4215 } else {
4216 /* It is currently mandatory to have a bdrv_reopen_prepare()
4217 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004218 error_setg(errp, "Block format '%s' used by node '%s' "
4219 "does not support reopening files", drv->format_name,
4220 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004221 ret = -1;
4222 goto error;
4223 }
4224
Max Reitz9ad08c42018-11-16 17:45:24 +01004225 drv_prepared = true;
4226
Alberto Garciabacd9b82019-03-12 18:48:46 +02004227 /*
4228 * We must provide the 'backing' option if the BDS has a backing
4229 * file or if the image file has a backing file name as part of
4230 * its metadata. Otherwise the 'backing' option can be omitted.
4231 */
4232 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004233 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004234 error_setg(errp, "backing is missing for '%s'",
4235 reopen_state->bs->node_name);
4236 ret = -EINVAL;
4237 goto error;
4238 }
4239
Alberto Garciacb828c32019-03-12 18:48:47 +02004240 /*
4241 * Allow changing the 'backing' option. The new value can be
4242 * either a reference to an existing node (using its node name)
4243 * or NULL to simply detach the current backing file.
4244 */
4245 ret = bdrv_reopen_parse_backing(reopen_state, errp);
4246 if (ret < 0) {
4247 goto error;
4248 }
4249 qdict_del(reopen_state->options, "backing");
4250
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004251 /* Options that are not handled are only okay if they are unchanged
4252 * compared to the old state. It is expected that some options are only
4253 * used for the initial open, but not reopen (e.g. filename) */
4254 if (qdict_size(reopen_state->options)) {
4255 const QDictEntry *entry = qdict_first(reopen_state->options);
4256
4257 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004258 QObject *new = entry->value;
4259 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004260
Alberto Garciadb905282018-09-06 12:37:05 +03004261 /* Allow child references (child_name=node_name) as long as they
4262 * point to the current child (i.e. everything stays the same). */
4263 if (qobject_type(new) == QTYPE_QSTRING) {
4264 BdrvChild *child;
4265 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4266 if (!strcmp(child->name, entry->key)) {
4267 break;
4268 }
4269 }
4270
4271 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004272 if (!strcmp(child->bs->node_name,
4273 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004274 continue; /* Found child with this name, skip option */
4275 }
4276 }
4277 }
4278
Max Reitz54fd1b02017-11-14 19:01:26 +01004279 /*
4280 * TODO: When using -drive to specify blockdev options, all values
4281 * will be strings; however, when using -blockdev, blockdev-add or
4282 * filenames using the json:{} pseudo-protocol, they will be
4283 * correctly typed.
4284 * In contrast, reopening options are (currently) always strings
4285 * (because you can only specify them through qemu-io; all other
4286 * callers do not specify any options).
4287 * Therefore, when using anything other than -drive to create a BDS,
4288 * this cannot detect non-string options as unchanged, because
4289 * qobject_is_equal() always returns false for objects of different
4290 * type. In the future, this should be remedied by correctly typing
4291 * all options. For now, this is not too big of an issue because
4292 * the user can simply omit options which cannot be changed anyway,
4293 * so they will stay unchanged.
4294 */
4295 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004296 error_setg(errp, "Cannot change the option '%s'", entry->key);
4297 ret = -EINVAL;
4298 goto error;
4299 }
4300 } while ((entry = qdict_next(reopen_state->options, entry)));
4301 }
4302
Jeff Codye971aa12012-09-20 15:13:19 -04004303 ret = 0;
4304
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004305 /* Restore the original reopen_state->options QDict */
4306 qobject_unref(reopen_state->options);
4307 reopen_state->options = qobject_ref(orig_reopen_opts);
4308
Jeff Codye971aa12012-09-20 15:13:19 -04004309error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004310 if (ret < 0 && drv_prepared) {
4311 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4312 * call drv->bdrv_reopen_abort() before signaling an error
4313 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4314 * when the respective bdrv_reopen_prepare() has failed) */
4315 if (drv->bdrv_reopen_abort) {
4316 drv->bdrv_reopen_abort(reopen_state);
4317 }
4318 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004319 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004320 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004321 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004322 return ret;
4323}
4324
4325/*
4326 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4327 * makes them final by swapping the staging BlockDriverState contents into
4328 * the active BlockDriverState contents.
4329 */
4330void bdrv_reopen_commit(BDRVReopenState *reopen_state)
4331{
4332 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004333 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004334 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004335
4336 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004337 bs = reopen_state->bs;
4338 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004339 assert(drv != NULL);
4340
4341 /* If there are any driver level actions to take */
4342 if (drv->bdrv_reopen_commit) {
4343 drv->bdrv_reopen_commit(reopen_state);
4344 }
4345
4346 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004347 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004348 qobject_unref(bs->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004349
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004350 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004351 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004352 bs->open_flags = reopen_state->flags;
4353 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
Alberto Garcia543770b2018-09-06 12:37:09 +03004354 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004355
Alberto Garciacb828c32019-03-12 18:48:47 +02004356 if (reopen_state->replace_backing_bs) {
4357 qdict_del(bs->explicit_options, "backing");
4358 qdict_del(bs->options, "backing");
4359 }
4360
Alberto Garcia50196d72018-09-06 12:37:03 +03004361 /* Remove child references from bs->options and bs->explicit_options.
4362 * Child options were already removed in bdrv_reopen_queue_child() */
4363 QLIST_FOREACH(child, &bs->children, next) {
4364 qdict_del(bs->explicit_options, child->name);
4365 qdict_del(bs->options, child->name);
4366 }
4367
Alberto Garciacb828c32019-03-12 18:48:47 +02004368 /*
4369 * Change the backing file if a new one was specified. We do this
4370 * after updating bs->options, so bdrv_refresh_filename() (called
4371 * from bdrv_set_backing_hd()) has the new values.
4372 */
4373 if (reopen_state->replace_backing_bs) {
Max Reitz1d42f482019-06-12 17:24:39 +02004374 BlockDriverState *old_backing_bs = child_bs(bs->backing);
Alberto Garciacb828c32019-03-12 18:48:47 +02004375 assert(!old_backing_bs || !old_backing_bs->implicit);
4376 /* Abort the permission update on the backing bs we're detaching */
4377 if (old_backing_bs) {
4378 bdrv_abort_perm_update(old_backing_bs);
4379 }
4380 bdrv_set_backing_hd(bs, reopen_state->new_backing_bs, &error_abort);
4381 }
4382
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004383 bdrv_refresh_limits(bs, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004384}
4385
4386/*
4387 * Abort the reopen, and delete and free the staged changes in
4388 * reopen_state
4389 */
4390void bdrv_reopen_abort(BDRVReopenState *reopen_state)
4391{
4392 BlockDriver *drv;
4393
4394 assert(reopen_state != NULL);
4395 drv = reopen_state->bs->drv;
4396 assert(drv != NULL);
4397
4398 if (drv->bdrv_reopen_abort) {
4399 drv->bdrv_reopen_abort(reopen_state);
4400 }
4401}
4402
4403
Max Reitz64dff522016-01-29 16:36:10 +01004404static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004405{
Max Reitz33384422014-06-20 21:57:33 +02004406 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004407 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004408
Max Reitz30f55fb2016-05-17 16:41:32 +02004409 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004410
Paolo Bonzinifc272912015-12-23 11:48:24 +01004411 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004412 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004413 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004414
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004415 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004416 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004417 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004418 bs->drv->bdrv_close(bs);
4419 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004420 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004421 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004422
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004423 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004424 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004425 }
4426
Alberto Garciadd4118c2019-05-13 16:46:17 +03004427 bs->backing = NULL;
4428 bs->file = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004429 g_free(bs->opaque);
4430 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004431 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004432 bs->backing_file[0] = '\0';
4433 bs->backing_format[0] = '\0';
4434 bs->total_sectors = 0;
4435 bs->encrypted = false;
4436 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004437 qobject_unref(bs->options);
4438 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004439 bs->options = NULL;
4440 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004441 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004442 bs->full_open_options = NULL;
4443
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004444 bdrv_release_named_dirty_bitmaps(bs);
4445 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4446
Max Reitz33384422014-06-20 21:57:33 +02004447 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4448 g_free(ban);
4449 }
4450 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004451 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004452
4453 /*
4454 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4455 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4456 * gets called.
4457 */
4458 if (bs->quiesce_counter) {
4459 bdrv_drain_all_end_quiesce(bs);
4460 }
bellardb3380822004-03-14 21:38:54 +00004461}
4462
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004463void bdrv_close_all(void)
4464{
Kevin Wolfb3b52992018-05-16 13:46:37 +02004465 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004466
Max Reitzca9bd242016-01-29 16:36:14 +01004467 /* Drop references from requests still in flight, such as canceled block
4468 * jobs whose AIO context has not been polled yet */
4469 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004470
Max Reitzca9bd242016-01-29 16:36:14 +01004471 blk_remove_all_bs();
4472 blockdev_close_all_bdrv_states();
4473
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004474 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004475}
4476
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004477static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004478{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004479 GQueue *queue;
4480 GHashTable *found;
4481 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004482
Max Reitzbd86fb92020-05-13 13:05:13 +02004483 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004484 return false;
4485 }
4486
Max Reitzec9f10f2018-06-13 20:18:15 +02004487 /* If the child @c belongs to the BDS @to, replacing the current
4488 * c->bs by @to would mean to create a loop.
4489 *
4490 * Such a case occurs when appending a BDS to a backing chain.
4491 * For instance, imagine the following chain:
4492 *
4493 * guest device -> node A -> further backing chain...
4494 *
4495 * Now we create a new BDS B which we want to put on top of this
4496 * chain, so we first attach A as its backing node:
4497 *
4498 * node B
4499 * |
4500 * v
4501 * guest device -> node A -> further backing chain...
4502 *
4503 * Finally we want to replace A by B. When doing that, we want to
4504 * replace all pointers to A by pointers to B -- except for the
4505 * pointer from B because (1) that would create a loop, and (2)
4506 * that pointer should simply stay intact:
4507 *
4508 * guest device -> node B
4509 * |
4510 * v
4511 * node A -> further backing chain...
4512 *
4513 * In general, when replacing a node A (c->bs) by a node B (@to),
4514 * if A is a child of B, that means we cannot replace A by B there
4515 * because that would create a loop. Silently detaching A from B
4516 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004517 * place there is the most sensible choice.
4518 *
4519 * We would also create a loop in any cases where @c is only
4520 * indirectly referenced by @to. Prevent this by returning false
4521 * if @c is found (by breadth-first search) anywhere in the whole
4522 * subtree of @to.
4523 */
4524
4525 ret = true;
4526 found = g_hash_table_new(NULL, NULL);
4527 g_hash_table_add(found, to);
4528 queue = g_queue_new();
4529 g_queue_push_tail(queue, to);
4530
4531 while (!g_queue_is_empty(queue)) {
4532 BlockDriverState *v = g_queue_pop_head(queue);
4533 BdrvChild *c2;
4534
4535 QLIST_FOREACH(c2, &v->children, next) {
4536 if (c2 == c) {
4537 ret = false;
4538 break;
4539 }
4540
4541 if (g_hash_table_contains(found, c2->bs)) {
4542 continue;
4543 }
4544
4545 g_queue_push_tail(queue, c2->bs);
4546 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004547 }
4548 }
4549
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004550 g_queue_free(queue);
4551 g_hash_table_destroy(found);
4552
4553 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004554}
4555
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004556/*
4557 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4558 * if it creates a parent-child relation loop or if parent is block-job.
4559 *
4560 * With auto_skip=false the error is returned if from has a parent which should
4561 * not be updated.
4562 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004563static int bdrv_replace_node_common(BlockDriverState *from,
4564 BlockDriverState *to,
4565 bool auto_skip, Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004566{
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004567 BdrvChild *c, *next;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004568 GSList *list = NULL, *p;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004569 uint64_t perm = 0, shared = BLK_PERM_ALL;
4570 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004571
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004572 /* Make sure that @from doesn't go away until we have successfully attached
4573 * all of its parents to @to. */
4574 bdrv_ref(from);
4575
Kevin Wolff871abd2019-05-21 19:00:25 +02004576 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01004577 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02004578 bdrv_drained_begin(from);
4579
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004580 /* Put all parents into @list and calculate their cumulative permissions */
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004581 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
Max Reitzec9f10f2018-06-13 20:18:15 +02004582 assert(c->bs == from);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004583 if (!should_update_child(c, to)) {
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004584 if (auto_skip) {
4585 continue;
4586 }
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004587 ret = -EINVAL;
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004588 error_setg(errp, "Should not change '%s' link to '%s'",
4589 c->name, from->node_name);
4590 goto out;
Kevin Wolf26de9432017-01-17 13:39:34 +01004591 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004592 if (c->frozen) {
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004593 ret = -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004594 error_setg(errp, "Cannot change '%s' link to '%s'",
4595 c->name, from->node_name);
4596 goto out;
4597 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004598 list = g_slist_prepend(list, c);
4599 perm |= c->perm;
4600 shared &= c->shared_perm;
4601 }
4602
4603 /* Check whether the required permissions can be granted on @to, ignoring
4604 * all BdrvChild in @list so that they can't block themselves. */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03004605 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004606 if (ret < 0) {
4607 bdrv_abort_perm_update(to);
4608 goto out;
4609 }
4610
4611 /* Now actually perform the change. We performed the permission check for
4612 * all elements of @list at once, so set the permissions all at once at the
4613 * very end. */
4614 for (p = list; p != NULL; p = p->next) {
4615 c = p->data;
Max Reitz9bd910e2016-06-10 20:57:46 +02004616
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004617 bdrv_ref(to);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004618 bdrv_replace_child_noperm(c, to);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004619 bdrv_unref(from);
4620 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004621
Vladimir Sementsov-Ogievskiy74ad9a32020-11-06 15:42:39 +03004622 bdrv_set_perm(to);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004623
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004624 ret = 0;
4625
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004626out:
4627 g_slist_free(list);
Kevin Wolff871abd2019-05-21 19:00:25 +02004628 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004629 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004630
4631 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004632}
4633
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004634int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
4635 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004636{
4637 return bdrv_replace_node_common(from, to, true, errp);
4638}
4639
Jeff Cody8802d1f2012-02-28 15:54:06 -05004640/*
4641 * Add new bs contents at the top of an image chain while the chain is
4642 * live, while keeping required fields on the top layer.
4643 *
4644 * This will modify the BlockDriverState fields, and swap contents
4645 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4646 *
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02004647 * bs_new must not be attached to a BlockBackend.
Jeff Codyf6801b82012-03-27 16:30:19 -04004648 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05004649 * This function does not create any image files.
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004650 *
4651 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
4652 * that's what the callers commonly need. bs_new will be referenced by the old
4653 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
4654 * reference of its own, it must call bdrv_ref().
Jeff Cody8802d1f2012-02-28 15:54:06 -05004655 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004656int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
4657 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05004658{
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004659 int ret = bdrv_set_backing_hd(bs_new, bs_top, errp);
4660 if (ret < 0) {
Kevin Wolfb2c28322017-02-20 12:46:42 +01004661 goto out;
4662 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004663
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004664 ret = bdrv_replace_node(bs_top, bs_new, errp);
4665 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004666 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
4667 goto out;
4668 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004669
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004670 ret = 0;
4671
Kevin Wolfb2c28322017-02-20 12:46:42 +01004672out:
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004673 /*
4674 * bs_new is now referenced by its new parents, we don't need the
4675 * additional reference any more.
4676 */
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004677 bdrv_unref(bs_new);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004678
4679 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05004680}
4681
Fam Zheng4f6fd342013-08-23 09:14:47 +08004682static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00004683{
Fam Zheng3718d8a2014-05-23 21:29:43 +08004684 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08004685 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02004686
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01004687 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01004688 if (bs->node_name[0] != '\0') {
4689 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
4690 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01004691 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
4692
Anton Kuchin30c321f2019-05-07 11:12:56 +03004693 bdrv_close(bs);
4694
Anthony Liguori7267c092011-08-20 22:09:37 -05004695 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00004696}
4697
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03004698BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *node_options,
4699 int flags, Error **errp)
4700{
4701 BlockDriverState *new_node_bs;
4702 Error *local_err = NULL;
4703
4704 new_node_bs = bdrv_open(NULL, NULL, node_options, flags, errp);
4705 if (new_node_bs == NULL) {
4706 error_prepend(errp, "Could not create node: ");
4707 return NULL;
4708 }
4709
4710 bdrv_drained_begin(bs);
4711 bdrv_replace_node(bs, new_node_bs, &local_err);
4712 bdrv_drained_end(bs);
4713
4714 if (local_err) {
4715 bdrv_unref(new_node_bs);
4716 error_propagate(errp, local_err);
4717 return NULL;
4718 }
4719
4720 return new_node_bs;
4721}
4722
aliguorie97fc192009-04-21 23:11:50 +00004723/*
4724 * Run consistency checks on an image
4725 *
Kevin Wolfe076f332010-06-29 11:43:13 +02004726 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02004727 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02004728 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00004729 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03004730int coroutine_fn bdrv_co_check(BlockDriverState *bs,
4731 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00004732{
Max Reitz908bcd52014-08-07 22:47:55 +02004733 if (bs->drv == NULL) {
4734 return -ENOMEDIUM;
4735 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01004736 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00004737 return -ENOTSUP;
4738 }
4739
Kevin Wolfe076f332010-06-29 11:43:13 +02004740 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01004741 return bs->drv->bdrv_co_check(bs, res, fix);
4742}
4743
Kevin Wolf756e6732010-01-12 12:55:17 +01004744/*
4745 * Return values:
4746 * 0 - success
4747 * -EINVAL - backing format specified, but no file
4748 * -ENOSPC - can't update the backing file because no space is left in the
4749 * image file header
4750 * -ENOTSUP - format driver doesn't support changing the backing file
4751 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05004752int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
4753 const char *backing_fmt, bool warn)
Kevin Wolf756e6732010-01-12 12:55:17 +01004754{
4755 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02004756 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01004757
Max Reitzd470ad42017-11-10 21:31:09 +01004758 if (!drv) {
4759 return -ENOMEDIUM;
4760 }
4761
Paolo Bonzini5f377792012-04-12 14:01:01 +02004762 /* Backing file format doesn't make sense without a backing file */
4763 if (backing_fmt && !backing_file) {
4764 return -EINVAL;
4765 }
4766
Eric Blakee54ee1b2020-07-06 15:39:53 -05004767 if (warn && backing_file && !backing_fmt) {
4768 warn_report("Deprecated use of backing file without explicit "
4769 "backing format, use of this image requires "
4770 "potentially unsafe format probing");
4771 }
4772
Kevin Wolf756e6732010-01-12 12:55:17 +01004773 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02004774 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01004775 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02004776 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01004777 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02004778
4779 if (ret == 0) {
4780 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
4781 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01004782 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
4783 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02004784 }
4785 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01004786}
4787
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004788/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004789 * Finds the first non-filter node above bs in the chain between
4790 * active and bs. The returned node is either an immediate parent of
4791 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004792 *
4793 * Returns NULL if bs is not found in active's image chain,
4794 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04004795 *
4796 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004797 */
4798BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
4799 BlockDriverState *bs)
4800{
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004801 bs = bdrv_skip_filters(bs);
4802 active = bdrv_skip_filters(active);
4803
4804 while (active) {
4805 BlockDriverState *next = bdrv_backing_chain_next(active);
4806 if (bs == next) {
4807 return active;
4808 }
4809 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004810 }
4811
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004812 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04004813}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004814
Jeff Cody4caf0fc2014-06-25 15:35:26 -04004815/* Given a BDS, searches for the base layer. */
4816BlockDriverState *bdrv_find_base(BlockDriverState *bs)
4817{
4818 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004819}
4820
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004821/*
Max Reitz7b99a262019-06-12 16:07:11 +02004822 * Return true if at least one of the COW (backing) and filter links
4823 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004824 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004825 */
4826bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
4827 Error **errp)
4828{
4829 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02004830 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004831
Max Reitz7b99a262019-06-12 16:07:11 +02004832 for (i = bs; i != base; i = child_bs(child)) {
4833 child = bdrv_filter_or_cow_child(i);
4834
4835 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004836 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02004837 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004838 return true;
4839 }
4840 }
4841
4842 return false;
4843}
4844
4845/*
Max Reitz7b99a262019-06-12 16:07:11 +02004846 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004847 * If any of the links is already frozen the operation is aborted and
4848 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004849 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004850 * Returns 0 on success. On failure returns < 0 and sets @errp.
4851 */
4852int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
4853 Error **errp)
4854{
4855 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02004856 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004857
4858 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
4859 return -EPERM;
4860 }
4861
Max Reitz7b99a262019-06-12 16:07:11 +02004862 for (i = bs; i != base; i = child_bs(child)) {
4863 child = bdrv_filter_or_cow_child(i);
4864 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02004865 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02004866 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02004867 return -EPERM;
4868 }
4869 }
4870
Max Reitz7b99a262019-06-12 16:07:11 +02004871 for (i = bs; i != base; i = child_bs(child)) {
4872 child = bdrv_filter_or_cow_child(i);
4873 if (child) {
4874 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004875 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004876 }
4877
4878 return 0;
4879}
4880
4881/*
Max Reitz7b99a262019-06-12 16:07:11 +02004882 * Unfreeze all COW (backing) and filter links between @bs and @base.
4883 * The caller must ensure that all links are frozen before using this
4884 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004885 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004886 */
4887void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
4888{
4889 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02004890 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004891
Max Reitz7b99a262019-06-12 16:07:11 +02004892 for (i = bs; i != base; i = child_bs(child)) {
4893 child = bdrv_filter_or_cow_child(i);
4894 if (child) {
4895 assert(child->frozen);
4896 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004897 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004898 }
4899}
4900
4901/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004902 * Drops images above 'base' up to and including 'top', and sets the image
4903 * above 'top' to have base as its backing file.
4904 *
4905 * Requires that the overlay to 'top' is opened r/w, so that the backing file
4906 * information in 'bs' can be properly updated.
4907 *
4908 * E.g., this will convert the following chain:
4909 * bottom <- base <- intermediate <- top <- active
4910 *
4911 * to
4912 *
4913 * bottom <- base <- active
4914 *
4915 * It is allowed for bottom==base, in which case it converts:
4916 *
4917 * base <- intermediate <- top <- active
4918 *
4919 * to
4920 *
4921 * base <- active
4922 *
Jeff Cody54e26902014-06-25 15:40:10 -04004923 * If backing_file_str is non-NULL, it will be used when modifying top's
4924 * overlay image metadata.
4925 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004926 * Error conditions:
4927 * if active == top, that is considered an error
4928 *
4929 */
Kevin Wolfbde70712017-06-27 20:36:18 +02004930int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
4931 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004932{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004933 BlockDriverState *explicit_top = top;
4934 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004935 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004936 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004937 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004938 g_autoptr(GSList) updated_children = NULL;
4939 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004940
Kevin Wolf6858eba2017-06-29 19:32:21 +02004941 bdrv_ref(top);
Max Reitz637d54a2019-07-22 15:33:43 +02004942 bdrv_subtree_drained_begin(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02004943
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004944 if (!top->drv || !base->drv) {
4945 goto exit;
4946 }
4947
Kevin Wolf5db15a52015-09-14 15:33:33 +02004948 /* Make sure that base is in the backing chain of top */
4949 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004950 goto exit;
4951 }
4952
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004953 /* If 'base' recursively inherits from 'top' then we should set
4954 * base->inherits_from to top->inherits_from after 'top' and all
4955 * other intermediate nodes have been dropped.
4956 * If 'top' is an implicit node (e.g. "commit_top") we should skip
4957 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004958 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004959 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
4960
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004961 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02004962 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
4963 * we've figured out how they should work. */
Max Reitzf30c66b2019-02-01 20:29:05 +01004964 if (!backing_file_str) {
4965 bdrv_refresh_filename(base);
4966 backing_file_str = base->filename;
4967 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02004968
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004969 QLIST_FOREACH(c, &top->parents, next_parent) {
4970 updated_children = g_slist_prepend(updated_children, c);
4971 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004972
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004973 bdrv_replace_node_common(top, base, false, &local_err);
4974 if (local_err) {
4975 error_report_err(local_err);
4976 goto exit;
4977 }
4978
4979 for (p = updated_children; p; p = p->next) {
4980 c = p->data;
4981
Max Reitzbd86fb92020-05-13 13:05:13 +02004982 if (c->klass->update_filename) {
4983 ret = c->klass->update_filename(c, base, backing_file_str,
4984 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02004985 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004986 /*
4987 * TODO: Actually, we want to rollback all previous iterations
4988 * of this loop, and (which is almost impossible) previous
4989 * bdrv_replace_node()...
4990 *
4991 * Note, that c->klass->update_filename may lead to permission
4992 * update, so it's a bad idea to call it inside permission
4993 * update transaction of bdrv_replace_node.
4994 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02004995 error_report_err(local_err);
4996 goto exit;
4997 }
4998 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004999 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005000
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005001 if (update_inherits_from) {
5002 base->inherits_from = explicit_top->inherits_from;
5003 }
5004
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005005 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005006exit:
Max Reitz637d54a2019-07-22 15:33:43 +02005007 bdrv_subtree_drained_end(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005008 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005009 return ret;
5010}
5011
bellard83f64092006-08-01 16:21:11 +00005012/**
Max Reitz081e4652019-06-12 18:14:13 +02005013 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5014 * sums the size of all data-bearing children. (This excludes backing
5015 * children.)
5016 */
5017static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5018{
5019 BdrvChild *child;
5020 int64_t child_size, sum = 0;
5021
5022 QLIST_FOREACH(child, &bs->children, next) {
5023 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5024 BDRV_CHILD_FILTERED))
5025 {
5026 child_size = bdrv_get_allocated_file_size(child->bs);
5027 if (child_size < 0) {
5028 return child_size;
5029 }
5030 sum += child_size;
5031 }
5032 }
5033
5034 return sum;
5035}
5036
5037/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005038 * Length of a allocated file in bytes. Sparse files are counted by actual
5039 * allocated space. Return < 0 if error or unknown.
5040 */
5041int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5042{
5043 BlockDriver *drv = bs->drv;
5044 if (!drv) {
5045 return -ENOMEDIUM;
5046 }
5047 if (drv->bdrv_get_allocated_file_size) {
5048 return drv->bdrv_get_allocated_file_size(bs);
5049 }
Max Reitz081e4652019-06-12 18:14:13 +02005050
5051 if (drv->bdrv_file_open) {
5052 /*
5053 * Protocol drivers default to -ENOTSUP (most of their data is
5054 * not stored in any of their children (if they even have any),
5055 * so there is no generic way to figure it out).
5056 */
5057 return -ENOTSUP;
5058 } else if (drv->is_filter) {
5059 /* Filter drivers default to the size of their filtered child */
5060 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5061 } else {
5062 /* Other drivers default to summing their children's sizes */
5063 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005064 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005065}
5066
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005067/*
5068 * bdrv_measure:
5069 * @drv: Format driver
5070 * @opts: Creation options for new image
5071 * @in_bs: Existing image containing data for new image (may be NULL)
5072 * @errp: Error object
5073 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5074 * or NULL on error
5075 *
5076 * Calculate file size required to create a new image.
5077 *
5078 * If @in_bs is given then space for allocated clusters and zero clusters
5079 * from that image are included in the calculation. If @opts contains a
5080 * backing file that is shared by @in_bs then backing clusters may be omitted
5081 * from the calculation.
5082 *
5083 * If @in_bs is NULL then the calculation includes no allocated clusters
5084 * unless a preallocation option is given in @opts.
5085 *
5086 * Note that @in_bs may use a different BlockDriver from @drv.
5087 *
5088 * If an error occurs the @errp pointer is set.
5089 */
5090BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5091 BlockDriverState *in_bs, Error **errp)
5092{
5093 if (!drv->bdrv_measure) {
5094 error_setg(errp, "Block driver '%s' does not support size measurement",
5095 drv->format_name);
5096 return NULL;
5097 }
5098
5099 return drv->bdrv_measure(opts, in_bs, errp);
5100}
5101
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005102/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005103 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005104 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005105int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005106{
5107 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005108
bellard83f64092006-08-01 16:21:11 +00005109 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005110 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005111
Kevin Wolfb94a2612013-10-29 12:18:58 +01005112 if (drv->has_variable_length) {
5113 int ret = refresh_total_sectors(bs, bs->total_sectors);
5114 if (ret < 0) {
5115 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005116 }
bellard83f64092006-08-01 16:21:11 +00005117 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005118 return bs->total_sectors;
5119}
5120
5121/**
5122 * Return length in bytes on success, -errno on error.
5123 * The length is always a multiple of BDRV_SECTOR_SIZE.
5124 */
5125int64_t bdrv_getlength(BlockDriverState *bs)
5126{
5127 int64_t ret = bdrv_nb_sectors(bs);
5128
Eric Blake122860b2020-11-05 09:51:22 -06005129 if (ret < 0) {
5130 return ret;
5131 }
5132 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5133 return -EFBIG;
5134 }
5135 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005136}
5137
bellard19cb3732006-08-19 11:45:59 +00005138/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005139void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005140{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005141 int64_t nb_sectors = bdrv_nb_sectors(bs);
5142
5143 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005144}
bellardcf989512004-02-16 21:56:36 +00005145
Eric Blake54115412016-06-23 16:37:26 -06005146bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005147{
5148 return bs->sg;
5149}
5150
Max Reitzae23f782019-06-12 22:57:15 +02005151/**
5152 * Return whether the given node supports compressed writes.
5153 */
5154bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5155{
5156 BlockDriverState *filtered;
5157
5158 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5159 return false;
5160 }
5161
5162 filtered = bdrv_filter_bs(bs);
5163 if (filtered) {
5164 /*
5165 * Filters can only forward compressed writes, so we have to
5166 * check the child.
5167 */
5168 return bdrv_supports_compressed_writes(filtered);
5169 }
5170
5171 return true;
5172}
5173
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005174const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005175{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005176 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005177}
5178
Stefan Hajnocziada42402014-08-27 12:08:55 +01005179static int qsort_strcmp(const void *a, const void *b)
5180{
Max Reitzceff5bd2016-10-12 22:49:05 +02005181 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005182}
5183
ths5fafdf22007-09-16 21:08:06 +00005184void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005185 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005186{
5187 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005188 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005189 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005190 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005191
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005192 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005193 if (drv->format_name) {
5194 bool found = false;
5195 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005196
5197 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5198 continue;
5199 }
5200
Jeff Codye855e4f2014-04-28 18:29:54 -04005201 while (formats && i && !found) {
5202 found = !strcmp(formats[--i], drv->format_name);
5203 }
5204
5205 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005206 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005207 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005208 }
5209 }
bellardea2384d2004-08-01 21:59:26 +00005210 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005211
Max Reitzeb0df692016-10-12 22:49:06 +02005212 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5213 const char *format_name = block_driver_modules[i].format_name;
5214
5215 if (format_name) {
5216 bool found = false;
5217 int j = count;
5218
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005219 if (use_bdrv_whitelist &&
5220 !bdrv_format_is_whitelisted(format_name, read_only)) {
5221 continue;
5222 }
5223
Max Reitzeb0df692016-10-12 22:49:06 +02005224 while (formats && j && !found) {
5225 found = !strcmp(formats[--j], format_name);
5226 }
5227
5228 if (!found) {
5229 formats = g_renew(const char *, formats, count + 1);
5230 formats[count++] = format_name;
5231 }
5232 }
5233 }
5234
Stefan Hajnocziada42402014-08-27 12:08:55 +01005235 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5236
5237 for (i = 0; i < count; i++) {
5238 it(opaque, formats[i]);
5239 }
5240
Jeff Codye855e4f2014-04-28 18:29:54 -04005241 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005242}
5243
Benoît Canetdc364f42014-01-23 21:31:32 +01005244/* This function is to find a node in the bs graph */
5245BlockDriverState *bdrv_find_node(const char *node_name)
5246{
5247 BlockDriverState *bs;
5248
5249 assert(node_name);
5250
5251 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5252 if (!strcmp(node_name, bs->node_name)) {
5253 return bs;
5254 }
5255 }
5256 return NULL;
5257}
5258
Benoît Canetc13163f2014-01-23 21:31:34 +01005259/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01005260BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5261 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01005262{
Eric Blake9812e712020-10-27 00:05:47 -05005263 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01005264 BlockDriverState *bs;
5265
5266 list = NULL;
5267 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01005268 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03005269 if (!info) {
5270 qapi_free_BlockDeviceInfoList(list);
5271 return NULL;
5272 }
Eric Blake9812e712020-10-27 00:05:47 -05005273 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01005274 }
5275
5276 return list;
5277}
5278
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005279typedef struct XDbgBlockGraphConstructor {
5280 XDbgBlockGraph *graph;
5281 GHashTable *graph_nodes;
5282} XDbgBlockGraphConstructor;
5283
5284static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5285{
5286 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5287
5288 gr->graph = g_new0(XDbgBlockGraph, 1);
5289 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5290
5291 return gr;
5292}
5293
5294static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5295{
5296 XDbgBlockGraph *graph = gr->graph;
5297
5298 g_hash_table_destroy(gr->graph_nodes);
5299 g_free(gr);
5300
5301 return graph;
5302}
5303
5304static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5305{
5306 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5307
5308 if (ret != 0) {
5309 return ret;
5310 }
5311
5312 /*
5313 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5314 * answer of g_hash_table_lookup.
5315 */
5316 ret = g_hash_table_size(gr->graph_nodes) + 1;
5317 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5318
5319 return ret;
5320}
5321
5322static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5323 XDbgBlockGraphNodeType type, const char *name)
5324{
5325 XDbgBlockGraphNode *n;
5326
5327 n = g_new0(XDbgBlockGraphNode, 1);
5328
5329 n->id = xdbg_graph_node_num(gr, node);
5330 n->type = type;
5331 n->name = g_strdup(name);
5332
Eric Blake9812e712020-10-27 00:05:47 -05005333 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005334}
5335
5336static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5337 const BdrvChild *child)
5338{
Max Reitzcdb1cec2019-11-08 13:34:52 +01005339 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005340 XDbgBlockGraphEdge *edge;
5341
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005342 edge = g_new0(XDbgBlockGraphEdge, 1);
5343
5344 edge->parent = xdbg_graph_node_num(gr, parent);
5345 edge->child = xdbg_graph_node_num(gr, child->bs);
5346 edge->name = g_strdup(child->name);
5347
Max Reitzcdb1cec2019-11-08 13:34:52 +01005348 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5349 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5350
5351 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005352 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005353 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01005354 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005355 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005356 }
5357 }
5358
Eric Blake9812e712020-10-27 00:05:47 -05005359 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005360}
5361
5362
5363XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5364{
5365 BlockBackend *blk;
5366 BlockJob *job;
5367 BlockDriverState *bs;
5368 BdrvChild *child;
5369 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5370
5371 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5372 char *allocated_name = NULL;
5373 const char *name = blk_name(blk);
5374
5375 if (!*name) {
5376 name = allocated_name = blk_get_attached_dev_id(blk);
5377 }
5378 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5379 name);
5380 g_free(allocated_name);
5381 if (blk_root(blk)) {
5382 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5383 }
5384 }
5385
5386 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5387 GSList *el;
5388
5389 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5390 job->job.id);
5391 for (el = job->nodes; el; el = el->next) {
5392 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5393 }
5394 }
5395
5396 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5397 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5398 bs->node_name);
5399 QLIST_FOREACH(child, &bs->children, next) {
5400 xdbg_graph_add_edge(gr, bs, child);
5401 }
5402 }
5403
5404 return xdbg_graph_finalize(gr);
5405}
5406
Benoît Canet12d3ba82014-01-23 21:31:35 +01005407BlockDriverState *bdrv_lookup_bs(const char *device,
5408 const char *node_name,
5409 Error **errp)
5410{
Markus Armbruster7f06d472014-10-07 13:59:12 +02005411 BlockBackend *blk;
5412 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005413
Benoît Canet12d3ba82014-01-23 21:31:35 +01005414 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02005415 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005416
Markus Armbruster7f06d472014-10-07 13:59:12 +02005417 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005418 bs = blk_bs(blk);
5419 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02005420 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02005421 }
5422
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005423 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005424 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005425 }
5426
Benoît Canetdd67fa52014-02-12 17:15:06 +01005427 if (node_name) {
5428 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005429
Benoît Canetdd67fa52014-02-12 17:15:06 +01005430 if (bs) {
5431 return bs;
5432 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005433 }
5434
Connor Kuehl785ec4b2021-03-05 09:19:28 -06005435 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01005436 device ? device : "",
5437 node_name ? node_name : "");
5438 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005439}
5440
Jeff Cody5a6684d2014-06-25 15:40:09 -04005441/* If 'base' is in the same chain as 'top', return true. Otherwise,
5442 * return false. If either argument is NULL, return false. */
5443bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5444{
5445 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005446 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04005447 }
5448
5449 return top != NULL;
5450}
5451
Fam Zheng04df7652014-10-31 11:32:54 +08005452BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5453{
5454 if (!bs) {
5455 return QTAILQ_FIRST(&graph_bdrv_states);
5456 }
5457 return QTAILQ_NEXT(bs, node_list);
5458}
5459
Kevin Wolf0f122642018-03-28 18:29:18 +02005460BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5461{
5462 if (!bs) {
5463 return QTAILQ_FIRST(&all_bdrv_states);
5464 }
5465 return QTAILQ_NEXT(bs, bs_list);
5466}
5467
Fam Zheng20a9e772014-10-31 11:32:55 +08005468const char *bdrv_get_node_name(const BlockDriverState *bs)
5469{
5470 return bs->node_name;
5471}
5472
Kevin Wolf1f0c4612016-03-22 18:38:44 +01005473const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005474{
5475 BdrvChild *c;
5476 const char *name;
5477
5478 /* If multiple parents have a name, just pick the first one. */
5479 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005480 if (c->klass->get_name) {
5481 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005482 if (name && *name) {
5483 return name;
5484 }
5485 }
5486 }
5487
5488 return NULL;
5489}
5490
Markus Armbruster7f06d472014-10-07 13:59:12 +02005491/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02005492const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005493{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005494 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00005495}
5496
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005497/* This can be used to identify nodes that might not have a device
5498 * name associated. Since node and device names live in the same
5499 * namespace, the result is unambiguous. The exception is if both are
5500 * absent, then this returns an empty (non-null) string. */
5501const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5502{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005503 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005504}
5505
Markus Armbrusterc8433282012-06-05 16:49:24 +02005506int bdrv_get_flags(BlockDriverState *bs)
5507{
5508 return bs->open_flags;
5509}
5510
Peter Lieven3ac21622013-06-28 12:47:42 +02005511int bdrv_has_zero_init_1(BlockDriverState *bs)
5512{
5513 return 1;
5514}
5515
Kevin Wolff2feebb2010-04-14 17:30:35 +02005516int bdrv_has_zero_init(BlockDriverState *bs)
5517{
Max Reitz93393e62019-06-12 17:03:38 +02005518 BlockDriverState *filtered;
5519
Max Reitzd470ad42017-11-10 21:31:09 +01005520 if (!bs->drv) {
5521 return 0;
5522 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005523
Paolo Bonzini11212d82013-09-04 19:00:27 +02005524 /* If BS is a copy on write image, it is initialized to
5525 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02005526 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02005527 return 0;
5528 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02005529 if (bs->drv->bdrv_has_zero_init) {
5530 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02005531 }
Max Reitz93393e62019-06-12 17:03:38 +02005532
5533 filtered = bdrv_filter_bs(bs);
5534 if (filtered) {
5535 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005536 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005537
Peter Lieven3ac21622013-06-28 12:47:42 +02005538 /* safe default */
5539 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02005540}
5541
Peter Lieven4ce78692013-10-24 12:06:54 +02005542bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
5543{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03005544 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02005545 return false;
5546 }
5547
Eric Blakee24d8132018-01-26 13:34:39 -06005548 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02005549}
5550
ths5fafdf22007-09-16 21:08:06 +00005551void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00005552 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00005553{
Kevin Wolf3574c602011-10-26 11:02:11 +02005554 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00005555}
5556
bellardfaea38e2006-08-05 21:31:00 +00005557int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5558{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005559 int ret;
bellardfaea38e2006-08-05 21:31:00 +00005560 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005561 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5562 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00005563 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005564 }
5565 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02005566 BlockDriverState *filtered = bdrv_filter_bs(bs);
5567 if (filtered) {
5568 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005569 }
bellardfaea38e2006-08-05 21:31:00 +00005570 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005571 }
bellardfaea38e2006-08-05 21:31:00 +00005572 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005573 ret = drv->bdrv_get_info(bs, bdi);
5574 if (ret < 0) {
5575 return ret;
5576 }
5577
5578 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
5579 return -EINVAL;
5580 }
5581
5582 return 0;
bellardfaea38e2006-08-05 21:31:00 +00005583}
5584
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005585ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
5586 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02005587{
5588 BlockDriver *drv = bs->drv;
5589 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005590 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02005591 }
5592 return NULL;
5593}
5594
Anton Nefedovd9245592019-09-23 15:17:37 +03005595BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
5596{
5597 BlockDriver *drv = bs->drv;
5598 if (!drv || !drv->bdrv_get_specific_stats) {
5599 return NULL;
5600 }
5601 return drv->bdrv_get_specific_stats(bs);
5602}
5603
Eric Blakea31939e2015-11-18 01:52:54 -07005604void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005605{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005606 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005607 return;
5608 }
5609
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005610 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005611}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005612
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005613static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01005614{
5615 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02005616 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005617 }
5618
5619 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005620 assert(bs->drv->bdrv_debug_remove_breakpoint);
5621 return bs;
5622 }
5623
5624 return NULL;
5625}
5626
5627int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
5628 const char *tag)
5629{
5630 bs = bdrv_find_debug_node(bs);
5631 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01005632 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
5633 }
5634
5635 return -ENOTSUP;
5636}
5637
Fam Zheng4cc70e92013-11-20 10:01:54 +08005638int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
5639{
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005640 bs = bdrv_find_debug_node(bs);
5641 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08005642 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
5643 }
5644
5645 return -ENOTSUP;
5646}
5647
Kevin Wolf41c695c2012-12-06 14:32:58 +01005648int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
5649{
Max Reitz938789e2014-03-10 23:44:08 +01005650 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02005651 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005652 }
5653
5654 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
5655 return bs->drv->bdrv_debug_resume(bs, tag);
5656 }
5657
5658 return -ENOTSUP;
5659}
5660
5661bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
5662{
5663 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02005664 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005665 }
5666
5667 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
5668 return bs->drv->bdrv_debug_is_suspended(bs, tag);
5669 }
5670
5671 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005672}
5673
Jeff Codyb1b1d782012-10-16 15:49:09 -04005674/* backing_file can either be relative, or absolute, or a protocol. If it is
5675 * relative, it must be relative to the chain. So, passing in bs->filename
5676 * from a BDS as backing_file should not be done, as that may be relative to
5677 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005678BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
5679 const char *backing_file)
5680{
Jeff Codyb1b1d782012-10-16 15:49:09 -04005681 char *filename_full = NULL;
5682 char *backing_file_full = NULL;
5683 char *filename_tmp = NULL;
5684 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02005685 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005686 BlockDriverState *curr_bs = NULL;
5687 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005688 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005689
5690 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005691 return NULL;
5692 }
5693
Jeff Codyb1b1d782012-10-16 15:49:09 -04005694 filename_full = g_malloc(PATH_MAX);
5695 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005696
5697 is_protocol = path_has_protocol(backing_file);
5698
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005699 /*
5700 * Being largely a legacy function, skip any filters here
5701 * (because filters do not have normal filenames, so they cannot
5702 * match anyway; and allowing json:{} filenames is a bit out of
5703 * scope).
5704 */
5705 for (curr_bs = bdrv_skip_filters(bs);
5706 bdrv_cow_child(curr_bs) != NULL;
5707 curr_bs = bs_below)
5708 {
5709 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005710
Max Reitz0b877d02018-08-01 20:34:11 +02005711 if (bdrv_backing_overridden(curr_bs)) {
5712 /*
5713 * If the backing file was overridden, we can only compare
5714 * directly against the backing node's filename.
5715 */
5716
5717 if (!filenames_refreshed) {
5718 /*
5719 * This will automatically refresh all of the
5720 * filenames in the rest of the backing chain, so we
5721 * only need to do this once.
5722 */
5723 bdrv_refresh_filename(bs_below);
5724 filenames_refreshed = true;
5725 }
5726
5727 if (strcmp(backing_file, bs_below->filename) == 0) {
5728 retval = bs_below;
5729 break;
5730 }
5731 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
5732 /*
5733 * If either of the filename paths is actually a protocol, then
5734 * compare unmodified paths; otherwise make paths relative.
5735 */
Max Reitz6b6833c2019-02-01 20:29:15 +01005736 char *backing_file_full_ret;
5737
Jeff Codyb1b1d782012-10-16 15:49:09 -04005738 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005739 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005740 break;
5741 }
Jeff Cody418661e2017-01-25 20:08:20 -05005742 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01005743 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
5744 NULL);
5745 if (backing_file_full_ret) {
5746 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
5747 g_free(backing_file_full_ret);
5748 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005749 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05005750 break;
5751 }
Jeff Cody418661e2017-01-25 20:08:20 -05005752 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005753 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04005754 /* If not an absolute filename path, make it relative to the current
5755 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01005756 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
5757 NULL);
5758 /* We are going to compare canonicalized absolute pathnames */
5759 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
5760 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005761 continue;
5762 }
Max Reitz2d9158c2019-02-01 20:29:17 +01005763 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005764
5765 /* We need to make sure the backing filename we are comparing against
5766 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01005767 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
5768 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
5769 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005770 continue;
5771 }
Max Reitz2d9158c2019-02-01 20:29:17 +01005772 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005773
5774 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005775 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005776 break;
5777 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005778 }
5779 }
5780
Jeff Codyb1b1d782012-10-16 15:49:09 -04005781 g_free(filename_full);
5782 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005783 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005784}
5785
bellardea2384d2004-08-01 21:59:26 +00005786void bdrv_init(void)
5787{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05005788 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00005789}
pbrookce1a14d2006-08-07 02:38:06 +00005790
Markus Armbrustereb852012009-10-27 18:41:44 +01005791void bdrv_init_with_whitelist(void)
5792{
5793 use_bdrv_whitelist = 1;
5794 bdrv_init();
5795}
5796
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005797int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06005798{
Kevin Wolf4417ab72017-05-04 18:52:37 +02005799 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005800 Error *local_err = NULL;
5801 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04005802 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005803
Kevin Wolf3456a8d2014-03-11 10:58:39 +01005804 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005805 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06005806 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01005807
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03005808 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01005809 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005810 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005811 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005812 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005813 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005814 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005815
Kevin Wolfdafe0962017-11-16 13:00:01 +01005816 /*
5817 * Update permissions, they may differ for inactive nodes.
5818 *
5819 * Note that the required permissions of inactive images are always a
5820 * subset of the permissions required after activating the image. This
5821 * allows us to just get the permissions upfront without restricting
5822 * drv->bdrv_invalidate_cache().
5823 *
5824 * It also means that in error cases, we don't have to try and revert to
5825 * the old permissions (which is an operation that could fail, too). We can
5826 * just keep the extended permissions for the next time that an activation
5827 * of the image is tried.
5828 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01005829 if (bs->open_flags & BDRV_O_INACTIVE) {
5830 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03005831 ret = bdrv_refresh_perms(bs, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01005832 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005833 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005834 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005835 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01005836
Kevin Wolf7bb49412019-12-17 15:06:38 +01005837 if (bs->drv->bdrv_co_invalidate_cache) {
5838 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
5839 if (local_err) {
5840 bs->open_flags |= BDRV_O_INACTIVE;
5841 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005842 return -EINVAL;
Kevin Wolf7bb49412019-12-17 15:06:38 +01005843 }
5844 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04005845
Kevin Wolf7bb49412019-12-17 15:06:38 +01005846 FOR_EACH_DIRTY_BITMAP(bs, bm) {
5847 bdrv_dirty_bitmap_skip_store(bm, false);
5848 }
5849
5850 ret = refresh_total_sectors(bs, bs->total_sectors);
5851 if (ret < 0) {
5852 bs->open_flags |= BDRV_O_INACTIVE;
5853 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005854 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01005855 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005856 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02005857
5858 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005859 if (parent->klass->activate) {
5860 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02005861 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01005862 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02005863 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005864 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02005865 }
5866 }
5867 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005868
5869 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06005870}
5871
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005872void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06005873{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01005874 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02005875 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06005876
Kevin Wolf88be7b42016-05-20 18:49:07 +02005877 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005878 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005879 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005880
5881 aio_context_acquire(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005882 ret = bdrv_invalidate_cache(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005883 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005884 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01005885 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005886 return;
5887 }
Anthony Liguori0f154232011-11-14 15:09:45 -06005888 }
5889}
5890
Kevin Wolf9e372712018-11-23 15:11:14 +01005891static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
5892{
5893 BdrvChild *parent;
5894
5895 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005896 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01005897 BlockDriverState *parent_bs = parent->opaque;
5898 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
5899 return true;
5900 }
5901 }
5902 }
5903
5904 return false;
5905}
5906
5907static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005908{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02005909 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005910 int ret;
5911
Max Reitzd470ad42017-11-10 21:31:09 +01005912 if (!bs->drv) {
5913 return -ENOMEDIUM;
5914 }
5915
Kevin Wolf9e372712018-11-23 15:11:14 +01005916 /* Make sure that we don't inactivate a child before its parent.
5917 * It will be covered by recursion from the yet active parent. */
5918 if (bdrv_has_bds_parent(bs, true)) {
5919 return 0;
5920 }
5921
5922 assert(!(bs->open_flags & BDRV_O_INACTIVE));
5923
5924 /* Inactivate this node */
5925 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005926 ret = bs->drv->bdrv_inactivate(bs);
5927 if (ret < 0) {
5928 return ret;
5929 }
5930 }
5931
Kevin Wolf9e372712018-11-23 15:11:14 +01005932 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005933 if (parent->klass->inactivate) {
5934 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01005935 if (ret < 0) {
5936 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02005937 }
5938 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005939 }
Kevin Wolf38701b62017-05-04 18:52:39 +02005940
Kevin Wolf9e372712018-11-23 15:11:14 +01005941 bs->open_flags |= BDRV_O_INACTIVE;
5942
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03005943 /*
5944 * Update permissions, they may differ for inactive nodes.
5945 * We only tried to loosen restrictions, so errors are not fatal, ignore
5946 * them.
5947 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03005948 bdrv_refresh_perms(bs, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01005949
5950 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02005951 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01005952 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02005953 if (ret < 0) {
5954 return ret;
5955 }
5956 }
5957
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005958 return 0;
5959}
5960
5961int bdrv_inactivate_all(void)
5962{
Max Reitz79720af2016-03-16 19:54:44 +01005963 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02005964 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005965 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005966 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005967
Kevin Wolf88be7b42016-05-20 18:49:07 +02005968 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005969 AioContext *aio_context = bdrv_get_aio_context(bs);
5970
5971 if (!g_slist_find(aio_ctxs, aio_context)) {
5972 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
5973 aio_context_acquire(aio_context);
5974 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005975 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005976
Kevin Wolf9e372712018-11-23 15:11:14 +01005977 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5978 /* Nodes with BDS parents are covered by recursion from the last
5979 * parent that gets inactivated. Don't inactivate them a second
5980 * time if that has already happened. */
5981 if (bdrv_has_bds_parent(bs, false)) {
5982 continue;
5983 }
5984 ret = bdrv_inactivate_recurse(bs);
5985 if (ret < 0) {
5986 bdrv_next_cleanup(&it);
5987 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005988 }
5989 }
5990
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005991out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005992 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
5993 AioContext *aio_context = ctx->data;
5994 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005995 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005996 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005997
5998 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005999}
6000
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006001/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006002/* removable device support */
6003
6004/**
6005 * Return TRUE if the media is present
6006 */
Max Reitze031f752015-10-19 17:53:11 +02006007bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006008{
6009 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006010 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006011
Max Reitze031f752015-10-19 17:53:11 +02006012 if (!drv) {
6013 return false;
6014 }
Max Reitz28d7a782015-10-19 17:53:13 +02006015 if (drv->bdrv_is_inserted) {
6016 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006017 }
Max Reitz28d7a782015-10-19 17:53:13 +02006018 QLIST_FOREACH(child, &bs->children, next) {
6019 if (!bdrv_is_inserted(child->bs)) {
6020 return false;
6021 }
6022 }
6023 return true;
bellard19cb3732006-08-19 11:45:59 +00006024}
6025
6026/**
bellard19cb3732006-08-19 11:45:59 +00006027 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6028 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006029void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006030{
6031 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00006032
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006033 if (drv && drv->bdrv_eject) {
6034 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006035 }
bellard19cb3732006-08-19 11:45:59 +00006036}
6037
bellard19cb3732006-08-19 11:45:59 +00006038/**
6039 * Lock or unlock the media (if it is locked, the user won't be able
6040 * to eject it manually).
6041 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006042void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006043{
6044 BlockDriver *drv = bs->drv;
6045
Markus Armbruster025e8492011-09-06 18:58:47 +02006046 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006047
Markus Armbruster025e8492011-09-06 18:58:47 +02006048 if (drv && drv->bdrv_lock_medium) {
6049 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006050 }
6051}
ths985a03b2007-12-24 16:10:43 +00006052
Fam Zheng9fcb0252013-08-23 09:14:46 +08006053/* Get a reference to bs */
6054void bdrv_ref(BlockDriverState *bs)
6055{
6056 bs->refcnt++;
6057}
6058
6059/* Release a previously grabbed reference to bs.
6060 * If after releasing, reference count is zero, the BlockDriverState is
6061 * deleted. */
6062void bdrv_unref(BlockDriverState *bs)
6063{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006064 if (!bs) {
6065 return;
6066 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006067 assert(bs->refcnt > 0);
6068 if (--bs->refcnt == 0) {
6069 bdrv_delete(bs);
6070 }
6071}
6072
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006073struct BdrvOpBlocker {
6074 Error *reason;
6075 QLIST_ENTRY(BdrvOpBlocker) list;
6076};
6077
6078bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6079{
6080 BdrvOpBlocker *blocker;
6081 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6082 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6083 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006084 error_propagate_prepend(errp, error_copy(blocker->reason),
6085 "Node '%s' is busy: ",
6086 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006087 return true;
6088 }
6089 return false;
6090}
6091
6092void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6093{
6094 BdrvOpBlocker *blocker;
6095 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6096
Markus Armbruster5839e532014-08-19 10:31:08 +02006097 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006098 blocker->reason = reason;
6099 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6100}
6101
6102void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6103{
6104 BdrvOpBlocker *blocker, *next;
6105 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6106 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6107 if (blocker->reason == reason) {
6108 QLIST_REMOVE(blocker, list);
6109 g_free(blocker);
6110 }
6111 }
6112}
6113
6114void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6115{
6116 int i;
6117 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6118 bdrv_op_block(bs, i, reason);
6119 }
6120}
6121
6122void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6123{
6124 int i;
6125 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6126 bdrv_op_unblock(bs, i, reason);
6127 }
6128}
6129
6130bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6131{
6132 int i;
6133
6134 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6135 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6136 return false;
6137 }
6138 }
6139 return true;
6140}
6141
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006142void bdrv_img_create(const char *filename, const char *fmt,
6143 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006144 char *options, uint64_t img_size, int flags, bool quiet,
6145 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006146{
Chunyan Liu83d05212014-06-05 17:20:51 +08006147 QemuOptsList *create_opts = NULL;
6148 QemuOpts *opts = NULL;
6149 const char *backing_fmt, *backing_file;
6150 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006151 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006152 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006153 int ret = 0;
6154
6155 /* Find driver and parse its options */
6156 drv = bdrv_find_format(fmt);
6157 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006158 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006159 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006160 }
6161
Max Reitzb65a5e12015-02-05 13:58:12 -05006162 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006163 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006164 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006165 }
6166
Max Reitzc6149722014-12-02 18:32:45 +01006167 if (!drv->create_opts) {
6168 error_setg(errp, "Format driver '%s' does not support image creation",
6169 drv->format_name);
6170 return;
6171 }
6172
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006173 if (!proto_drv->create_opts) {
6174 error_setg(errp, "Protocol driver '%s' does not support image creation",
6175 proto_drv->format_name);
6176 return;
6177 }
6178
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006179 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006180 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006181 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006182
Chunyan Liu83d05212014-06-05 17:20:51 +08006183 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006184
6185 /* Parse -o options */
6186 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02006187 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006188 goto out;
6189 }
6190 }
6191
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006192 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6193 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6194 } else if (img_size != UINT64_C(-1)) {
6195 error_setg(errp, "The image size must be specified only once");
6196 goto out;
6197 }
6198
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006199 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02006200 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02006201 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006202 error_setg(errp, "Backing file not supported for file format '%s'",
6203 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006204 goto out;
6205 }
6206 }
6207
6208 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02006209 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006210 error_setg(errp, "Backing file format not supported for file "
6211 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006212 goto out;
6213 }
6214 }
6215
Chunyan Liu83d05212014-06-05 17:20:51 +08006216 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6217 if (backing_file) {
6218 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006219 error_setg(errp, "Error: Trying to create an image with the "
6220 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01006221 goto out;
6222 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05006223 if (backing_file[0] == '\0') {
6224 error_setg(errp, "Expected backing file name, got empty string");
6225 goto out;
6226 }
Jes Sorensen792da932010-12-16 13:52:17 +01006227 }
6228
Chunyan Liu83d05212014-06-05 17:20:51 +08006229 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006230
John Snow6e6e55f2017-07-17 20:34:22 -04006231 /* The size for the image must always be specified, unless we have a backing
6232 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05006233 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04006234 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6235 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01006236 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04006237 int back_flags;
6238 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02006239
Max Reitz645ae7d2019-02-01 20:29:14 +01006240 full_backing =
6241 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6242 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04006243 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006244 goto out;
6245 }
Max Reitz645ae7d2019-02-01 20:29:14 +01006246 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04006247
6248 /* backing files always opened read-only */
6249 back_flags = flags;
6250 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6251
Fam Zhengcc954f02017-12-15 16:04:45 +08006252 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04006253 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04006254 qdict_put_str(backing_options, "driver", backing_fmt);
6255 }
Fam Zhengcc954f02017-12-15 16:04:45 +08006256 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04006257
6258 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6259 &local_err);
6260 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05006261 if (!bs) {
6262 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04006263 goto out;
6264 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05006265 if (!backing_fmt) {
6266 warn_report("Deprecated use of backing file without explicit "
6267 "backing format (detected format of %s)",
6268 bs->drv->format_name);
6269 if (bs->drv != &bdrv_raw) {
6270 /*
6271 * A probe of raw deserves the most attention:
6272 * leaving the backing format out of the image
6273 * will ensure bs->probed is set (ensuring we
6274 * don't accidentally commit into the backing
6275 * file), and allow more spots to warn the users
6276 * to fix their toolchain when opening this image
6277 * later. For other images, we can safely record
6278 * the format that we probed.
6279 */
6280 backing_fmt = bs->drv->format_name;
6281 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
6282 NULL);
6283 }
6284 }
John Snow6e6e55f2017-07-17 20:34:22 -04006285 if (size == -1) {
6286 /* Opened BS, have no size */
6287 size = bdrv_getlength(bs);
6288 if (size < 0) {
6289 error_setg_errno(errp, -size, "Could not get size of '%s'",
6290 backing_file);
6291 bdrv_unref(bs);
6292 goto out;
6293 }
6294 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6295 }
6296 bdrv_unref(bs);
6297 }
Eric Blaked9f059a2020-07-06 15:39:54 -05006298 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6299 } else if (backing_file && !backing_fmt) {
6300 warn_report("Deprecated use of unopened backing file without "
6301 "explicit backing format, use of this image requires "
6302 "potentially unsafe format probing");
6303 }
John Snow6e6e55f2017-07-17 20:34:22 -04006304
6305 if (size == -1) {
6306 error_setg(errp, "Image creation needs a size parameter");
6307 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006308 }
6309
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006310 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02006311 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08006312 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006313 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05006314 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006315 }
Chunyan Liu83d05212014-06-05 17:20:51 +08006316
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006317 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08006318
Max Reitzcc84d902013-09-06 17:14:26 +02006319 if (ret == -EFBIG) {
6320 /* This is generally a better message than whatever the driver would
6321 * deliver (especially because of the cluster_size_hint), since that
6322 * is most probably not much different from "image too large". */
6323 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08006324 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02006325 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006326 }
Max Reitzcc84d902013-09-06 17:14:26 +02006327 error_setg(errp, "The image size is too large for file format '%s'"
6328 "%s", fmt, cluster_size_hint);
6329 error_free(local_err);
6330 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006331 }
6332
6333out:
Chunyan Liu83d05212014-06-05 17:20:51 +08006334 qemu_opts_del(opts);
6335 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03006336 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006337}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006338
6339AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6340{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00006341 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006342}
6343
Kevin Wolfe336fd42020-10-05 17:58:53 +02006344AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6345{
6346 Coroutine *self = qemu_coroutine_self();
6347 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6348 AioContext *new_ctx;
6349
6350 /*
6351 * Increase bs->in_flight to ensure that this operation is completed before
6352 * moving the node to a different AioContext. Read new_ctx only afterwards.
6353 */
6354 bdrv_inc_in_flight(bs);
6355
6356 new_ctx = bdrv_get_aio_context(bs);
6357 aio_co_reschedule_self(new_ctx);
6358 return old_ctx;
6359}
6360
6361void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6362{
6363 aio_co_reschedule_self(old_ctx);
6364 bdrv_dec_in_flight(bs);
6365}
6366
Kevin Wolf18c6ac12020-10-05 17:58:54 +02006367void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6368{
6369 AioContext *ctx = bdrv_get_aio_context(bs);
6370
6371 /* In the main thread, bs->aio_context won't change concurrently */
6372 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6373
6374 /*
6375 * We're in coroutine context, so we already hold the lock of the main
6376 * loop AioContext. Don't lock it twice to avoid deadlocks.
6377 */
6378 assert(qemu_in_coroutine());
6379 if (ctx != qemu_get_aio_context()) {
6380 aio_context_acquire(ctx);
6381 }
6382}
6383
6384void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6385{
6386 AioContext *ctx = bdrv_get_aio_context(bs);
6387
6388 assert(qemu_in_coroutine());
6389 if (ctx != qemu_get_aio_context()) {
6390 aio_context_release(ctx);
6391 }
6392}
6393
Fam Zheng052a7572017-04-10 20:09:25 +08006394void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6395{
6396 aio_co_enter(bdrv_get_aio_context(bs), co);
6397}
6398
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006399static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6400{
6401 QLIST_REMOVE(ban, list);
6402 g_free(ban);
6403}
6404
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006405static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006406{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006407 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006408
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006409 assert(!bs->walking_aio_notifiers);
6410 bs->walking_aio_notifiers = true;
6411 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6412 if (baf->deleted) {
6413 bdrv_do_remove_aio_context_notifier(baf);
6414 } else {
6415 baf->detach_aio_context(baf->opaque);
6416 }
Max Reitz33384422014-06-20 21:57:33 +02006417 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006418 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6419 * remove remaining aio notifiers if we aren't called again.
6420 */
6421 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02006422
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006423 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006424 bs->drv->bdrv_detach_aio_context(bs);
6425 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006426
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006427 if (bs->quiesce_counter) {
6428 aio_enable_external(bs->aio_context);
6429 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006430 bs->aio_context = NULL;
6431}
6432
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006433static void bdrv_attach_aio_context(BlockDriverState *bs,
6434 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006435{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006436 BdrvAioNotifier *ban, *ban_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006437
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006438 if (bs->quiesce_counter) {
6439 aio_disable_external(new_context);
6440 }
6441
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006442 bs->aio_context = new_context;
6443
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006444 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006445 bs->drv->bdrv_attach_aio_context(bs, new_context);
6446 }
Max Reitz33384422014-06-20 21:57:33 +02006447
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006448 assert(!bs->walking_aio_notifiers);
6449 bs->walking_aio_notifiers = true;
6450 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6451 if (ban->deleted) {
6452 bdrv_do_remove_aio_context_notifier(ban);
6453 } else {
6454 ban->attached_aio_context(new_context, ban->opaque);
6455 }
Max Reitz33384422014-06-20 21:57:33 +02006456 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006457 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006458}
6459
Kevin Wolf42a65f02019-05-07 18:31:38 +02006460/*
6461 * Changes the AioContext used for fd handlers, timers, and BHs by this
6462 * BlockDriverState and all its children and parents.
6463 *
Max Reitz43eaaae2019-07-22 15:30:54 +02006464 * Must be called from the main AioContext.
6465 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02006466 * The caller must own the AioContext lock for the old AioContext of bs, but it
6467 * must not own the AioContext lock for new_context (unless new_context is the
6468 * same as the current context of bs).
6469 *
6470 * @ignore will accumulate all visited BdrvChild object. The caller is
6471 * responsible for freeing the list afterwards.
6472 */
Kevin Wolf53a7d042019-05-06 19:17:59 +02006473void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6474 AioContext *new_context, GSList **ignore)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006475{
Max Reitze037c092019-07-19 11:26:14 +02006476 AioContext *old_context = bdrv_get_aio_context(bs);
Sergio Lopez722d8e72021-02-01 13:50:31 +01006477 GSList *children_to_process = NULL;
6478 GSList *parents_to_process = NULL;
6479 GSList *entry;
6480 BdrvChild *child, *parent;
Kevin Wolf0d837082019-05-06 19:17:58 +02006481
Max Reitz43eaaae2019-07-22 15:30:54 +02006482 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6483
Max Reitze037c092019-07-19 11:26:14 +02006484 if (old_context == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03006485 return;
6486 }
6487
Kevin Wolfd70d5952019-02-08 16:53:37 +01006488 bdrv_drained_begin(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02006489
6490 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006491 if (g_slist_find(*ignore, child)) {
6492 continue;
6493 }
6494 *ignore = g_slist_prepend(*ignore, child);
Sergio Lopez722d8e72021-02-01 13:50:31 +01006495 children_to_process = g_slist_prepend(children_to_process, child);
Kevin Wolf53a7d042019-05-06 19:17:59 +02006496 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01006497
6498 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6499 if (g_slist_find(*ignore, parent)) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006500 continue;
6501 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01006502 *ignore = g_slist_prepend(*ignore, parent);
6503 parents_to_process = g_slist_prepend(parents_to_process, parent);
Kevin Wolf0d837082019-05-06 19:17:58 +02006504 }
6505
Sergio Lopez722d8e72021-02-01 13:50:31 +01006506 for (entry = children_to_process;
6507 entry != NULL;
6508 entry = g_slist_next(entry)) {
6509 child = entry->data;
6510 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6511 }
6512 g_slist_free(children_to_process);
6513
6514 for (entry = parents_to_process;
6515 entry != NULL;
6516 entry = g_slist_next(entry)) {
6517 parent = entry->data;
6518 assert(parent->klass->set_aio_ctx);
6519 parent->klass->set_aio_ctx(parent, new_context, ignore);
6520 }
6521 g_slist_free(parents_to_process);
6522
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006523 bdrv_detach_aio_context(bs);
6524
Max Reitze037c092019-07-19 11:26:14 +02006525 /* Acquire the new context, if necessary */
Max Reitz43eaaae2019-07-22 15:30:54 +02006526 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006527 aio_context_acquire(new_context);
6528 }
6529
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006530 bdrv_attach_aio_context(bs, new_context);
Max Reitze037c092019-07-19 11:26:14 +02006531
6532 /*
6533 * If this function was recursively called from
6534 * bdrv_set_aio_context_ignore(), there may be nodes in the
6535 * subtree that have not yet been moved to the new AioContext.
6536 * Release the old one so bdrv_drained_end() can poll them.
6537 */
Max Reitz43eaaae2019-07-22 15:30:54 +02006538 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006539 aio_context_release(old_context);
6540 }
6541
Kevin Wolfd70d5952019-02-08 16:53:37 +01006542 bdrv_drained_end(bs);
Max Reitze037c092019-07-19 11:26:14 +02006543
Max Reitz43eaaae2019-07-22 15:30:54 +02006544 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006545 aio_context_acquire(old_context);
6546 }
Max Reitz43eaaae2019-07-22 15:30:54 +02006547 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006548 aio_context_release(new_context);
6549 }
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006550}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02006551
Kevin Wolf5d231842019-05-06 19:17:56 +02006552static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6553 GSList **ignore, Error **errp)
6554{
6555 if (g_slist_find(*ignore, c)) {
6556 return true;
6557 }
6558 *ignore = g_slist_prepend(*ignore, c);
6559
Max Reitzbd86fb92020-05-13 13:05:13 +02006560 /*
6561 * A BdrvChildClass that doesn't handle AioContext changes cannot
6562 * tolerate any AioContext changes
6563 */
6564 if (!c->klass->can_set_aio_ctx) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006565 char *user = bdrv_child_user_desc(c);
6566 error_setg(errp, "Changing iothreads is not supported by %s", user);
6567 g_free(user);
6568 return false;
6569 }
Max Reitzbd86fb92020-05-13 13:05:13 +02006570 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006571 assert(!errp || *errp);
6572 return false;
6573 }
6574 return true;
6575}
6576
6577bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6578 GSList **ignore, Error **errp)
6579{
6580 if (g_slist_find(*ignore, c)) {
6581 return true;
6582 }
6583 *ignore = g_slist_prepend(*ignore, c);
6584 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
6585}
6586
6587/* @ignore will accumulate all visited BdrvChild object. The caller is
6588 * responsible for freeing the list afterwards. */
6589bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6590 GSList **ignore, Error **errp)
6591{
6592 BdrvChild *c;
6593
6594 if (bdrv_get_aio_context(bs) == ctx) {
6595 return true;
6596 }
6597
6598 QLIST_FOREACH(c, &bs->parents, next_parent) {
6599 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
6600 return false;
6601 }
6602 }
6603 QLIST_FOREACH(c, &bs->children, next) {
6604 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
6605 return false;
6606 }
6607 }
6608
6609 return true;
6610}
6611
6612int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6613 BdrvChild *ignore_child, Error **errp)
6614{
6615 GSList *ignore;
6616 bool ret;
6617
6618 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6619 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
6620 g_slist_free(ignore);
6621
6622 if (!ret) {
6623 return -EPERM;
6624 }
6625
Kevin Wolf53a7d042019-05-06 19:17:59 +02006626 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6627 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
6628 g_slist_free(ignore);
6629
Kevin Wolf5d231842019-05-06 19:17:56 +02006630 return 0;
6631}
6632
6633int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6634 Error **errp)
6635{
6636 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
6637}
6638
Max Reitz33384422014-06-20 21:57:33 +02006639void bdrv_add_aio_context_notifier(BlockDriverState *bs,
6640 void (*attached_aio_context)(AioContext *new_context, void *opaque),
6641 void (*detach_aio_context)(void *opaque), void *opaque)
6642{
6643 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
6644 *ban = (BdrvAioNotifier){
6645 .attached_aio_context = attached_aio_context,
6646 .detach_aio_context = detach_aio_context,
6647 .opaque = opaque
6648 };
6649
6650 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
6651}
6652
6653void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
6654 void (*attached_aio_context)(AioContext *,
6655 void *),
6656 void (*detach_aio_context)(void *),
6657 void *opaque)
6658{
6659 BdrvAioNotifier *ban, *ban_next;
6660
6661 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
6662 if (ban->attached_aio_context == attached_aio_context &&
6663 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006664 ban->opaque == opaque &&
6665 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02006666 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006667 if (bs->walking_aio_notifiers) {
6668 ban->deleted = true;
6669 } else {
6670 bdrv_do_remove_aio_context_notifier(ban);
6671 }
Max Reitz33384422014-06-20 21:57:33 +02006672 return;
6673 }
6674 }
6675
6676 abort();
6677}
6678
Max Reitz77485432014-10-27 11:12:50 +01006679int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02006680 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02006681 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02006682 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02006683{
Max Reitzd470ad42017-11-10 21:31:09 +01006684 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02006685 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01006686 return -ENOMEDIUM;
6687 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006688 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02006689 error_setg(errp, "Block driver '%s' does not support option amendment",
6690 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02006691 return -ENOTSUP;
6692 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02006693 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
6694 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02006695}
Benoît Canetf6186f42013-10-02 14:33:48 +02006696
Max Reitz5d69b5a2020-02-18 11:34:41 +01006697/*
6698 * This function checks whether the given @to_replace is allowed to be
6699 * replaced by a node that always shows the same data as @bs. This is
6700 * used for example to verify whether the mirror job can replace
6701 * @to_replace by the target mirrored from @bs.
6702 * To be replaceable, @bs and @to_replace may either be guaranteed to
6703 * always show the same data (because they are only connected through
6704 * filters), or some driver may allow replacing one of its children
6705 * because it can guarantee that this child's data is not visible at
6706 * all (for example, for dissenting quorum children that have no other
6707 * parents).
6708 */
6709bool bdrv_recurse_can_replace(BlockDriverState *bs,
6710 BlockDriverState *to_replace)
6711{
Max Reitz93393e62019-06-12 17:03:38 +02006712 BlockDriverState *filtered;
6713
Max Reitz5d69b5a2020-02-18 11:34:41 +01006714 if (!bs || !bs->drv) {
6715 return false;
6716 }
6717
6718 if (bs == to_replace) {
6719 return true;
6720 }
6721
6722 /* See what the driver can do */
6723 if (bs->drv->bdrv_recurse_can_replace) {
6724 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
6725 }
6726
6727 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02006728 filtered = bdrv_filter_bs(bs);
6729 if (filtered) {
6730 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01006731 }
6732
6733 /* Safe default */
6734 return false;
6735}
6736
Max Reitz810803a2020-02-18 11:34:44 +01006737/*
6738 * Check whether the given @node_name can be replaced by a node that
6739 * has the same data as @parent_bs. If so, return @node_name's BDS;
6740 * NULL otherwise.
6741 *
6742 * @node_name must be a (recursive) *child of @parent_bs (or this
6743 * function will return NULL).
6744 *
6745 * The result (whether the node can be replaced or not) is only valid
6746 * for as long as no graph or permission changes occur.
6747 */
Wen Congyange12f3782015-07-17 10:12:22 +08006748BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
6749 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02006750{
6751 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006752 AioContext *aio_context;
6753
Benoît Canet09158f02014-06-27 18:25:25 +02006754 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006755 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02006756 return NULL;
6757 }
6758
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006759 aio_context = bdrv_get_aio_context(to_replace_bs);
6760 aio_context_acquire(aio_context);
6761
Benoît Canet09158f02014-06-27 18:25:25 +02006762 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006763 to_replace_bs = NULL;
6764 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02006765 }
6766
6767 /* We don't want arbitrary node of the BDS chain to be replaced only the top
6768 * most non filter in order to prevent data corruption.
6769 * Another benefit is that this tests exclude backing files which are
6770 * blocked by the backing blockers.
6771 */
Max Reitz810803a2020-02-18 11:34:44 +01006772 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
6773 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
6774 "because it cannot be guaranteed that doing so would not "
6775 "lead to an abrupt change of visible data",
6776 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006777 to_replace_bs = NULL;
6778 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02006779 }
6780
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006781out:
6782 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02006783 return to_replace_bs;
6784}
Ming Lei448ad912014-07-04 18:04:33 +08006785
Max Reitz97e2f022019-02-01 20:29:27 +01006786/**
6787 * Iterates through the list of runtime option keys that are said to
6788 * be "strong" for a BDS. An option is called "strong" if it changes
6789 * a BDS's data. For example, the null block driver's "size" and
6790 * "read-zeroes" options are strong, but its "latency-ns" option is
6791 * not.
6792 *
6793 * If a key returned by this function ends with a dot, all options
6794 * starting with that prefix are strong.
6795 */
6796static const char *const *strong_options(BlockDriverState *bs,
6797 const char *const *curopt)
6798{
6799 static const char *const global_options[] = {
6800 "driver", "filename", NULL
6801 };
6802
6803 if (!curopt) {
6804 return &global_options[0];
6805 }
6806
6807 curopt++;
6808 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
6809 curopt = bs->drv->strong_runtime_opts;
6810 }
6811
6812 return (curopt && *curopt) ? curopt : NULL;
6813}
6814
6815/**
6816 * Copies all strong runtime options from bs->options to the given
6817 * QDict. The set of strong option keys is determined by invoking
6818 * strong_options().
6819 *
6820 * Returns true iff any strong option was present in bs->options (and
6821 * thus copied to the target QDict) with the exception of "filename"
6822 * and "driver". The caller is expected to use this value to decide
6823 * whether the existence of strong options prevents the generation of
6824 * a plain filename.
6825 */
6826static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
6827{
6828 bool found_any = false;
6829 const char *const *option_name = NULL;
6830
6831 if (!bs->drv) {
6832 return false;
6833 }
6834
6835 while ((option_name = strong_options(bs, option_name))) {
6836 bool option_given = false;
6837
6838 assert(strlen(*option_name) > 0);
6839 if ((*option_name)[strlen(*option_name) - 1] != '.') {
6840 QObject *entry = qdict_get(bs->options, *option_name);
6841 if (!entry) {
6842 continue;
6843 }
6844
6845 qdict_put_obj(d, *option_name, qobject_ref(entry));
6846 option_given = true;
6847 } else {
6848 const QDictEntry *entry;
6849 for (entry = qdict_first(bs->options); entry;
6850 entry = qdict_next(bs->options, entry))
6851 {
6852 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
6853 qdict_put_obj(d, qdict_entry_key(entry),
6854 qobject_ref(qdict_entry_value(entry)));
6855 option_given = true;
6856 }
6857 }
6858 }
6859
6860 /* While "driver" and "filename" need to be included in a JSON filename,
6861 * their existence does not prohibit generation of a plain filename. */
6862 if (!found_any && option_given &&
6863 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
6864 {
6865 found_any = true;
6866 }
6867 }
6868
Max Reitz62a01a272019-02-01 20:29:34 +01006869 if (!qdict_haskey(d, "driver")) {
6870 /* Drivers created with bdrv_new_open_driver() may not have a
6871 * @driver option. Add it here. */
6872 qdict_put_str(d, "driver", bs->drv->format_name);
6873 }
6874
Max Reitz97e2f022019-02-01 20:29:27 +01006875 return found_any;
6876}
6877
Max Reitz90993622019-02-01 20:29:09 +01006878/* Note: This function may return false positives; it may return true
6879 * even if opening the backing file specified by bs's image header
6880 * would result in exactly bs->backing. */
Max Reitz0b877d02018-08-01 20:34:11 +02006881bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01006882{
6883 if (bs->backing) {
6884 return strcmp(bs->auto_backing_file,
6885 bs->backing->bs->filename);
6886 } else {
6887 /* No backing BDS, so if the image header reports any backing
6888 * file, it must have been suppressed */
6889 return bs->auto_backing_file[0] != '\0';
6890 }
6891}
6892
Max Reitz91af7012014-07-18 20:24:56 +02006893/* Updates the following BDS fields:
6894 * - exact_filename: A filename which may be used for opening a block device
6895 * which (mostly) equals the given BDS (even without any
6896 * other options; so reading and writing must return the same
6897 * results, but caching etc. may be different)
6898 * - full_open_options: Options which, when given when opening a block device
6899 * (without a filename), result in a BDS (mostly)
6900 * equalling the given one
6901 * - filename: If exact_filename is set, it is copied here. Otherwise,
6902 * full_open_options is converted to a JSON object, prefixed with
6903 * "json:" (for use through the JSON pseudo protocol) and put here.
6904 */
6905void bdrv_refresh_filename(BlockDriverState *bs)
6906{
6907 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01006908 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02006909 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02006910 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01006911 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01006912 bool generate_json_filename; /* Whether our default implementation should
6913 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02006914
6915 if (!drv) {
6916 return;
6917 }
6918
Max Reitze24518e2019-02-01 20:29:06 +01006919 /* This BDS's file name may depend on any of its children's file names, so
6920 * refresh those first */
6921 QLIST_FOREACH(child, &bs->children, next) {
6922 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02006923 }
6924
Max Reitzbb808d52019-02-01 20:29:07 +01006925 if (bs->implicit) {
6926 /* For implicit nodes, just copy everything from the single child */
6927 child = QLIST_FIRST(&bs->children);
6928 assert(QLIST_NEXT(child, next) == NULL);
6929
6930 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
6931 child->bs->exact_filename);
6932 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
6933
Pan Nengyuancb895612020-01-16 16:56:00 +08006934 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01006935 bs->full_open_options = qobject_ref(child->bs->full_open_options);
6936
6937 return;
6938 }
6939
Max Reitz90993622019-02-01 20:29:09 +01006940 backing_overridden = bdrv_backing_overridden(bs);
6941
6942 if (bs->open_flags & BDRV_O_NO_IO) {
6943 /* Without I/O, the backing file does not change anything.
6944 * Therefore, in such a case (primarily qemu-img), we can
6945 * pretend the backing file has not been overridden even if
6946 * it technically has been. */
6947 backing_overridden = false;
6948 }
6949
Max Reitz97e2f022019-02-01 20:29:27 +01006950 /* Gather the options QDict */
6951 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01006952 generate_json_filename = append_strong_runtime_options(opts, bs);
6953 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01006954
6955 if (drv->bdrv_gather_child_options) {
6956 /* Some block drivers may not want to present all of their children's
6957 * options, or name them differently from BdrvChild.name */
6958 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
6959 } else {
6960 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02006961 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01006962 /* We can skip the backing BDS if it has not been overridden */
6963 continue;
6964 }
6965
6966 qdict_put(opts, child->name,
6967 qobject_ref(child->bs->full_open_options));
6968 }
6969
6970 if (backing_overridden && !bs->backing) {
6971 /* Force no backing file */
6972 qdict_put_null(opts, "backing");
6973 }
6974 }
6975
6976 qobject_unref(bs->full_open_options);
6977 bs->full_open_options = opts;
6978
Max Reitz52f72d62019-06-12 17:43:03 +02006979 primary_child_bs = bdrv_primary_bs(bs);
6980
Max Reitz998b3a12019-02-01 20:29:28 +01006981 if (drv->bdrv_refresh_filename) {
6982 /* Obsolete information is of no use here, so drop the old file name
6983 * information before refreshing it */
6984 bs->exact_filename[0] = '\0';
6985
6986 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02006987 } else if (primary_child_bs) {
6988 /*
6989 * Try to reconstruct valid information from the underlying
6990 * file -- this only works for format nodes (filter nodes
6991 * cannot be probed and as such must be selected by the user
6992 * either through an options dict, or through a special
6993 * filename which the filter driver must construct in its
6994 * .bdrv_refresh_filename() implementation).
6995 */
Max Reitz998b3a12019-02-01 20:29:28 +01006996
6997 bs->exact_filename[0] = '\0';
6998
Max Reitzfb695c72019-02-01 20:29:29 +01006999 /*
7000 * We can use the underlying file's filename if:
7001 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007002 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007003 * - the file is a protocol BDS, and
7004 * - opening that file (as this BDS's format) will automatically create
7005 * the BDS tree we have right now, that is:
7006 * - the user did not significantly change this BDS's behavior with
7007 * some explicit (strong) options
7008 * - no non-file child of this BDS has been overridden by the user
7009 * Both of these conditions are represented by generate_json_filename.
7010 */
Max Reitz52f72d62019-06-12 17:43:03 +02007011 if (primary_child_bs->exact_filename[0] &&
7012 primary_child_bs->drv->bdrv_file_open &&
7013 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007014 {
Max Reitz52f72d62019-06-12 17:43:03 +02007015 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007016 }
7017 }
7018
Max Reitz91af7012014-07-18 20:24:56 +02007019 if (bs->exact_filename[0]) {
7020 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007021 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007022 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007023 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007024 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007025 /* Give user a hint if we truncated things. */
7026 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7027 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007028 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007029 }
7030}
Wen Congyange06018a2016-05-10 15:36:37 +08007031
Max Reitz1e89d0f2019-02-01 20:29:18 +01007032char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7033{
7034 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007035 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007036
7037 if (!drv) {
7038 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7039 return NULL;
7040 }
7041
7042 if (drv->bdrv_dirname) {
7043 return drv->bdrv_dirname(bs, errp);
7044 }
7045
Max Reitz52f72d62019-06-12 17:43:03 +02007046 child_bs = bdrv_primary_bs(bs);
7047 if (child_bs) {
7048 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007049 }
7050
7051 bdrv_refresh_filename(bs);
7052 if (bs->exact_filename[0] != '\0') {
7053 return path_combine(bs->exact_filename, "");
7054 }
7055
7056 error_setg(errp, "Cannot generate a base directory for %s nodes",
7057 drv->format_name);
7058 return NULL;
7059}
7060
Wen Congyange06018a2016-05-10 15:36:37 +08007061/*
7062 * Hot add/remove a BDS's child. So the user can take a child offline when
7063 * it is broken and take a new child online
7064 */
7065void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7066 Error **errp)
7067{
7068
7069 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7070 error_setg(errp, "The node %s does not support adding a child",
7071 bdrv_get_device_or_node_name(parent_bs));
7072 return;
7073 }
7074
7075 if (!QLIST_EMPTY(&child_bs->parents)) {
7076 error_setg(errp, "The node %s already has a parent",
7077 child_bs->node_name);
7078 return;
7079 }
7080
7081 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7082}
7083
7084void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7085{
7086 BdrvChild *tmp;
7087
7088 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7089 error_setg(errp, "The node %s does not support removing a child",
7090 bdrv_get_device_or_node_name(parent_bs));
7091 return;
7092 }
7093
7094 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7095 if (tmp == child) {
7096 break;
7097 }
7098 }
7099
7100 if (!tmp) {
7101 error_setg(errp, "The node %s does not have a child named %s",
7102 bdrv_get_device_or_node_name(parent_bs),
7103 bdrv_get_device_or_node_name(child->bs));
7104 return;
7105 }
7106
7107 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7108}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007109
7110int bdrv_make_empty(BdrvChild *c, Error **errp)
7111{
7112 BlockDriver *drv = c->bs->drv;
7113 int ret;
7114
7115 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7116
7117 if (!drv->bdrv_make_empty) {
7118 error_setg(errp, "%s does not support emptying nodes",
7119 drv->format_name);
7120 return -ENOTSUP;
7121 }
7122
7123 ret = drv->bdrv_make_empty(c->bs);
7124 if (ret < 0) {
7125 error_setg_errno(errp, -ret, "Failed to empty %s",
7126 c->bs->filename);
7127 return ret;
7128 }
7129
7130 return 0;
7131}
Max Reitz9a6fc882019-05-31 15:23:11 +02007132
7133/*
7134 * Return the child that @bs acts as an overlay for, and from which data may be
7135 * copied in COW or COR operations. Usually this is the backing file.
7136 */
7137BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7138{
7139 if (!bs || !bs->drv) {
7140 return NULL;
7141 }
7142
7143 if (bs->drv->is_filter) {
7144 return NULL;
7145 }
7146
7147 if (!bs->backing) {
7148 return NULL;
7149 }
7150
7151 assert(bs->backing->role & BDRV_CHILD_COW);
7152 return bs->backing;
7153}
7154
7155/*
7156 * If @bs acts as a filter for exactly one of its children, return
7157 * that child.
7158 */
7159BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7160{
7161 BdrvChild *c;
7162
7163 if (!bs || !bs->drv) {
7164 return NULL;
7165 }
7166
7167 if (!bs->drv->is_filter) {
7168 return NULL;
7169 }
7170
7171 /* Only one of @backing or @file may be used */
7172 assert(!(bs->backing && bs->file));
7173
7174 c = bs->backing ?: bs->file;
7175 if (!c) {
7176 return NULL;
7177 }
7178
7179 assert(c->role & BDRV_CHILD_FILTERED);
7180 return c;
7181}
7182
7183/*
7184 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7185 * whichever is non-NULL.
7186 *
7187 * Return NULL if both are NULL.
7188 */
7189BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7190{
7191 BdrvChild *cow_child = bdrv_cow_child(bs);
7192 BdrvChild *filter_child = bdrv_filter_child(bs);
7193
7194 /* Filter nodes cannot have COW backing files */
7195 assert(!(cow_child && filter_child));
7196
7197 return cow_child ?: filter_child;
7198}
7199
7200/*
7201 * Return the primary child of this node: For filters, that is the
7202 * filtered child. For other nodes, that is usually the child storing
7203 * metadata.
7204 * (A generally more helpful description is that this is (usually) the
7205 * child that has the same filename as @bs.)
7206 *
7207 * Drivers do not necessarily have a primary child; for example quorum
7208 * does not.
7209 */
7210BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7211{
7212 BdrvChild *c, *found = NULL;
7213
7214 QLIST_FOREACH(c, &bs->children, next) {
7215 if (c->role & BDRV_CHILD_PRIMARY) {
7216 assert(!found);
7217 found = c;
7218 }
7219 }
7220
7221 return found;
7222}
Max Reitzd38d7eb2019-06-12 15:06:37 +02007223
7224static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7225 bool stop_on_explicit_filter)
7226{
7227 BdrvChild *c;
7228
7229 if (!bs) {
7230 return NULL;
7231 }
7232
7233 while (!(stop_on_explicit_filter && !bs->implicit)) {
7234 c = bdrv_filter_child(bs);
7235 if (!c) {
7236 /*
7237 * A filter that is embedded in a working block graph must
7238 * have a child. Assert this here so this function does
7239 * not return a filter node that is not expected by the
7240 * caller.
7241 */
7242 assert(!bs->drv || !bs->drv->is_filter);
7243 break;
7244 }
7245 bs = c->bs;
7246 }
7247 /*
7248 * Note that this treats nodes with bs->drv == NULL as not being
7249 * filters (bs->drv == NULL should be replaced by something else
7250 * anyway).
7251 * The advantage of this behavior is that this function will thus
7252 * always return a non-NULL value (given a non-NULL @bs).
7253 */
7254
7255 return bs;
7256}
7257
7258/*
7259 * Return the first BDS that has not been added implicitly or that
7260 * does not have a filtered child down the chain starting from @bs
7261 * (including @bs itself).
7262 */
7263BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7264{
7265 return bdrv_do_skip_filters(bs, true);
7266}
7267
7268/*
7269 * Return the first BDS that does not have a filtered child down the
7270 * chain starting from @bs (including @bs itself).
7271 */
7272BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7273{
7274 return bdrv_do_skip_filters(bs, false);
7275}
7276
7277/*
7278 * For a backing chain, return the first non-filter backing image of
7279 * the first non-filter image.
7280 */
7281BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7282{
7283 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
7284}