blob: 27b2c3ba157a24c0de0c5523c8a00c6e210798aa [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
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100709/**
710 * Try to get @bs's logical and physical block size.
711 * On success, store them in @bsz struct and return 0.
712 * On failure return -errno.
713 * @bs must not be empty.
714 */
715int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
716{
717 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200718 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100719
720 if (drv && drv->bdrv_probe_blocksizes) {
721 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200722 } else if (filtered) {
723 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100724 }
725
726 return -ENOTSUP;
727}
728
729/**
730 * Try to get @bs's geometry (cyls, heads, sectors).
731 * On success, store them in @geo struct and return 0.
732 * On failure return -errno.
733 * @bs must not be empty.
734 */
735int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
736{
737 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200738 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100739
740 if (drv && drv->bdrv_probe_geometry) {
741 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200742 } else if (filtered) {
743 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100744 }
745
746 return -ENOTSUP;
747}
748
Jim Meyeringeba25052012-05-28 09:27:54 +0200749/*
750 * Create a uniquely-named empty temporary file.
751 * Return 0 upon success, otherwise a negative errno value.
752 */
753int get_tmp_filename(char *filename, int size)
754{
bellardd5249392004-08-03 21:14:23 +0000755#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000756 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200757 /* GetTempFileName requires that its output buffer (4th param)
758 have length MAX_PATH or greater. */
759 assert(size >= MAX_PATH);
760 return (GetTempPath(MAX_PATH, temp_dir)
761 && GetTempFileName(temp_dir, "qem", 0, filename)
762 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000763#else
bellardea2384d2004-08-01 21:59:26 +0000764 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000765 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000766 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530767 if (!tmpdir) {
768 tmpdir = "/var/tmp";
769 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200770 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
771 return -EOVERFLOW;
772 }
bellardea2384d2004-08-01 21:59:26 +0000773 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800774 if (fd < 0) {
775 return -errno;
776 }
777 if (close(fd) != 0) {
778 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200779 return -errno;
780 }
781 return 0;
bellardd5249392004-08-03 21:14:23 +0000782#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200783}
bellardea2384d2004-08-01 21:59:26 +0000784
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200785/*
786 * Detect host devices. By convention, /dev/cdrom[N] is always
787 * recognized as a host CDROM.
788 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200789static BlockDriver *find_hdev_driver(const char *filename)
790{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200791 int score_max = 0, score;
792 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200793
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100794 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200795 if (d->bdrv_probe_device) {
796 score = d->bdrv_probe_device(filename);
797 if (score > score_max) {
798 score_max = score;
799 drv = d;
800 }
801 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200802 }
803
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200804 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200805}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200806
Marc Mari88d88792016-08-12 09:27:03 -0400807static BlockDriver *bdrv_do_find_protocol(const char *protocol)
808{
809 BlockDriver *drv1;
810
811 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
812 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
813 return drv1;
814 }
815 }
816
817 return NULL;
818}
819
Kevin Wolf98289622013-07-10 15:47:39 +0200820BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500821 bool allow_protocol_prefix,
822 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200823{
824 BlockDriver *drv1;
825 char protocol[128];
826 int len;
827 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400828 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200829
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200830 /* TODO Drivers without bdrv_file_open must be specified explicitly */
831
Christoph Hellwig39508e72010-06-23 12:25:17 +0200832 /*
833 * XXX(hch): we really should not let host device detection
834 * override an explicit protocol specification, but moving this
835 * later breaks access to device names with colons in them.
836 * Thanks to the brain-dead persistent naming schemes on udev-
837 * based Linux systems those actually are quite common.
838 */
839 drv1 = find_hdev_driver(filename);
840 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200841 return drv1;
842 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200843
Kevin Wolf98289622013-07-10 15:47:39 +0200844 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100845 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200846 }
Kevin Wolf98289622013-07-10 15:47:39 +0200847
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000848 p = strchr(filename, ':');
849 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200850 len = p - filename;
851 if (len > sizeof(protocol) - 1)
852 len = sizeof(protocol) - 1;
853 memcpy(protocol, filename, len);
854 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400855
856 drv1 = bdrv_do_find_protocol(protocol);
857 if (drv1) {
858 return drv1;
859 }
860
861 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
862 if (block_driver_modules[i].protocol_name &&
863 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
864 block_module_load_one(block_driver_modules[i].library_name);
865 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200866 }
867 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500868
Marc Mari88d88792016-08-12 09:27:03 -0400869 drv1 = bdrv_do_find_protocol(protocol);
870 if (!drv1) {
871 error_setg(errp, "Unknown protocol '%s'", protocol);
872 }
873 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200874}
875
Markus Armbrusterc6684242014-11-20 16:27:10 +0100876/*
877 * Guess image format by probing its contents.
878 * This is not a good idea when your image is raw (CVE-2008-2004), but
879 * we do it anyway for backward compatibility.
880 *
881 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100882 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
883 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100884 * @filename is its filename.
885 *
886 * For all block drivers, call the bdrv_probe() method to get its
887 * probing score.
888 * Return the first block driver with the highest probing score.
889 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100890BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
891 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100892{
893 int score_max = 0, score;
894 BlockDriver *drv = NULL, *d;
895
896 QLIST_FOREACH(d, &bdrv_drivers, list) {
897 if (d->bdrv_probe) {
898 score = d->bdrv_probe(buf, buf_size, filename);
899 if (score > score_max) {
900 score_max = score;
901 drv = d;
902 }
903 }
904 }
905
906 return drv;
907}
908
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100909static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200910 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000911{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100912 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100913 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100914 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700915
Kevin Wolf08a00552010-06-01 18:37:31 +0200916 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100917 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100918 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200919 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700920 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700921
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100922 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000923 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200924 error_setg_errno(errp, -ret, "Could not read image for determining its "
925 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +0200926 *pdrv = NULL;
927 return ret;
bellard83f64092006-08-01 16:21:11 +0000928 }
929
Markus Armbrusterc6684242014-11-20 16:27:10 +0100930 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +0200931 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200932 error_setg(errp, "Could not determine image format: No compatible "
933 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +0200934 ret = -ENOENT;
935 }
936 *pdrv = drv;
937 return ret;
bellardea2384d2004-08-01 21:59:26 +0000938}
939
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100940/**
941 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +0200942 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100943 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +0200944int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100945{
946 BlockDriver *drv = bs->drv;
947
Max Reitzd470ad42017-11-10 21:31:09 +0100948 if (!drv) {
949 return -ENOMEDIUM;
950 }
951
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700952 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +0300953 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700954 return 0;
955
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100956 /* query actual device if possible, otherwise just trust the hint */
957 if (drv->bdrv_getlength) {
958 int64_t length = drv->bdrv_getlength(bs);
959 if (length < 0) {
960 return length;
961 }
Fam Zheng7e382002013-11-06 19:48:06 +0800962 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100963 }
964
965 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +0300966
967 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
968 return -EFBIG;
969 }
970
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100971 return 0;
972}
973
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100974/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +0100975 * Combines a QDict of new block driver @options with any missing options taken
976 * from @old_options, so that leaving out an option defaults to its old value.
977 */
978static void bdrv_join_options(BlockDriverState *bs, QDict *options,
979 QDict *old_options)
980{
981 if (bs->drv && bs->drv->bdrv_join_options) {
982 bs->drv->bdrv_join_options(options, old_options);
983 } else {
984 qdict_join(options, old_options, false);
985 }
986}
987
Alberto Garcia543770b2018-09-06 12:37:09 +0300988static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
989 int open_flags,
990 Error **errp)
991{
992 Error *local_err = NULL;
993 char *value = qemu_opt_get_del(opts, "detect-zeroes");
994 BlockdevDetectZeroesOptions detect_zeroes =
995 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
996 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
997 g_free(value);
998 if (local_err) {
999 error_propagate(errp, local_err);
1000 return detect_zeroes;
1001 }
1002
1003 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1004 !(open_flags & BDRV_O_UNMAP))
1005 {
1006 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1007 "without setting discard operation to unmap");
1008 }
1009
1010 return detect_zeroes;
1011}
1012
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001013/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001014 * Set open flags for aio engine
1015 *
1016 * Return 0 on success, -1 if the engine specified is invalid
1017 */
1018int bdrv_parse_aio(const char *mode, int *flags)
1019{
1020 if (!strcmp(mode, "threads")) {
1021 /* do nothing, default */
1022 } else if (!strcmp(mode, "native")) {
1023 *flags |= BDRV_O_NATIVE_AIO;
1024#ifdef CONFIG_LINUX_IO_URING
1025 } else if (!strcmp(mode, "io_uring")) {
1026 *flags |= BDRV_O_IO_URING;
1027#endif
1028 } else {
1029 return -1;
1030 }
1031
1032 return 0;
1033}
1034
1035/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001036 * Set open flags for a given discard mode
1037 *
1038 * Return 0 on success, -1 if the discard mode was invalid.
1039 */
1040int bdrv_parse_discard_flags(const char *mode, int *flags)
1041{
1042 *flags &= ~BDRV_O_UNMAP;
1043
1044 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1045 /* do nothing */
1046 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1047 *flags |= BDRV_O_UNMAP;
1048 } else {
1049 return -1;
1050 }
1051
1052 return 0;
1053}
1054
1055/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001056 * Set open flags for a given cache mode
1057 *
1058 * Return 0 on success, -1 if the cache mode was invalid.
1059 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001060int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001061{
1062 *flags &= ~BDRV_O_CACHE_MASK;
1063
1064 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001065 *writethrough = false;
1066 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001067 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001068 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001069 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001070 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001071 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001072 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001073 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001074 *flags |= BDRV_O_NO_FLUSH;
1075 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001076 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001077 } else {
1078 return -1;
1079 }
1080
1081 return 0;
1082}
1083
Kevin Wolfb5411552017-01-17 15:56:16 +01001084static char *bdrv_child_get_parent_desc(BdrvChild *c)
1085{
1086 BlockDriverState *parent = c->opaque;
1087 return g_strdup(bdrv_get_device_or_node_name(parent));
1088}
1089
Kevin Wolf20018e12016-05-23 18:46:59 +02001090static void bdrv_child_cb_drained_begin(BdrvChild *child)
1091{
1092 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001093 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +02001094}
1095
Kevin Wolf89bd0302018-03-22 14:11:20 +01001096static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1097{
1098 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001099 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001100}
1101
Max Reitze037c092019-07-19 11:26:14 +02001102static void bdrv_child_cb_drained_end(BdrvChild *child,
1103 int *drained_end_counter)
Kevin Wolf20018e12016-05-23 18:46:59 +02001104{
1105 BlockDriverState *bs = child->opaque;
Max Reitze037c092019-07-19 11:26:14 +02001106 bdrv_drained_end_no_poll(bs, drained_end_counter);
Kevin Wolf20018e12016-05-23 18:46:59 +02001107}
1108
Kevin Wolf38701b62017-05-04 18:52:39 +02001109static int bdrv_child_cb_inactivate(BdrvChild *child)
1110{
1111 BlockDriverState *bs = child->opaque;
1112 assert(bs->open_flags & BDRV_O_INACTIVE);
1113 return 0;
1114}
1115
Kevin Wolf5d231842019-05-06 19:17:56 +02001116static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1117 GSList **ignore, Error **errp)
1118{
1119 BlockDriverState *bs = child->opaque;
1120 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1121}
1122
Kevin Wolf53a7d042019-05-06 19:17:59 +02001123static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1124 GSList **ignore)
1125{
1126 BlockDriverState *bs = child->opaque;
1127 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1128}
1129
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001130/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001131 * Returns the options and flags that a temporary snapshot should get, based on
1132 * the originally requested flags (the originally requested image will have
1133 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001134 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001135static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1136 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001137{
Kevin Wolf73176be2016-03-07 13:02:15 +01001138 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1139
1140 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001141 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1142 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001143
Kevin Wolf3f486862019-04-04 17:04:43 +02001144 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001145 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001146 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001147
Kevin Wolf41869042016-06-16 12:59:30 +02001148 /* aio=native doesn't work for cache.direct=off, so disable it for the
1149 * temporary snapshot */
1150 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001151}
1152
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001153static void bdrv_backing_attach(BdrvChild *c)
1154{
1155 BlockDriverState *parent = c->opaque;
1156 BlockDriverState *backing_hd = c->bs;
1157
1158 assert(!parent->backing_blocker);
1159 error_setg(&parent->backing_blocker,
1160 "node is used as backing hd of '%s'",
1161 bdrv_get_device_or_node_name(parent));
1162
Max Reitzf30c66b2019-02-01 20:29:05 +01001163 bdrv_refresh_filename(backing_hd);
1164
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001165 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001166
1167 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1168 /* Otherwise we won't be able to commit or stream */
1169 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1170 parent->backing_blocker);
1171 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1172 parent->backing_blocker);
1173 /*
1174 * We do backup in 3 ways:
1175 * 1. drive backup
1176 * The target bs is new opened, and the source is top BDS
1177 * 2. blockdev backup
1178 * Both the source and the target are top BDSes.
1179 * 3. internal backup(used for block replication)
1180 * Both the source and the target are backing file
1181 *
1182 * In case 1 and 2, neither the source nor the target is the backing file.
1183 * In case 3, we will block the top BDS, so there is only one block job
1184 * for the top BDS and its backing chain.
1185 */
1186 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1187 parent->backing_blocker);
1188 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1189 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001190}
Kevin Wolfd736f112017-12-18 16:05:48 +01001191
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001192static void bdrv_backing_detach(BdrvChild *c)
1193{
1194 BlockDriverState *parent = c->opaque;
1195
1196 assert(parent->backing_blocker);
1197 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1198 error_free(parent->backing_blocker);
1199 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001200}
Kevin Wolfd736f112017-12-18 16:05:48 +01001201
Kevin Wolf6858eba2017-06-29 19:32:21 +02001202static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1203 const char *filename, Error **errp)
1204{
1205 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001206 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001207 int ret;
1208
Alberto Garciae94d3db2018-11-12 16:00:34 +02001209 if (read_only) {
1210 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001211 if (ret < 0) {
1212 return ret;
1213 }
1214 }
1215
Kevin Wolf6858eba2017-06-29 19:32:21 +02001216 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001217 base->drv ? base->drv->format_name : "",
1218 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001219 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001220 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001221 }
1222
Alberto Garciae94d3db2018-11-12 16:00:34 +02001223 if (read_only) {
1224 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001225 }
1226
Kevin Wolf6858eba2017-06-29 19:32:21 +02001227 return ret;
1228}
1229
Max Reitzfae8bd32020-05-13 13:05:20 +02001230/*
1231 * Returns the options and flags that a generic child of a BDS should
1232 * get, based on the given options and flags for the parent BDS.
1233 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001234static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1235 int *child_flags, QDict *child_options,
1236 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001237{
1238 int flags = parent_flags;
1239
1240 /*
1241 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1242 * Generally, the question to answer is: Should this child be
1243 * format-probed by default?
1244 */
1245
1246 /*
1247 * Pure and non-filtered data children of non-format nodes should
1248 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1249 * set). This only affects a very limited set of drivers (namely
1250 * quorum and blkverify when this comment was written).
1251 * Force-clear BDRV_O_PROTOCOL then.
1252 */
1253 if (!parent_is_format &&
1254 (role & BDRV_CHILD_DATA) &&
1255 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1256 {
1257 flags &= ~BDRV_O_PROTOCOL;
1258 }
1259
1260 /*
1261 * All children of format nodes (except for COW children) and all
1262 * metadata children in general should never be format-probed.
1263 * Force-set BDRV_O_PROTOCOL then.
1264 */
1265 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1266 (role & BDRV_CHILD_METADATA))
1267 {
1268 flags |= BDRV_O_PROTOCOL;
1269 }
1270
1271 /*
1272 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1273 * the parent.
1274 */
1275 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1276 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1277 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1278
1279 if (role & BDRV_CHILD_COW) {
1280 /* backing files are opened read-only by default */
1281 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1282 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1283 } else {
1284 /* Inherit the read-only option from the parent if it's not set */
1285 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1286 qdict_copy_default(child_options, parent_options,
1287 BDRV_OPT_AUTO_READ_ONLY);
1288 }
1289
1290 /*
1291 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1292 * can default to enable it on lower layers regardless of the
1293 * parent option.
1294 */
1295 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1296
1297 /* Clear flags that only apply to the top layer */
1298 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1299
1300 if (role & BDRV_CHILD_METADATA) {
1301 flags &= ~BDRV_O_NO_IO;
1302 }
1303 if (role & BDRV_CHILD_COW) {
1304 flags &= ~BDRV_O_TEMPORARY;
1305 }
1306
1307 *child_flags = flags;
1308}
1309
Max Reitzca2f1232020-05-13 13:05:22 +02001310static void bdrv_child_cb_attach(BdrvChild *child)
1311{
1312 BlockDriverState *bs = child->opaque;
1313
1314 if (child->role & BDRV_CHILD_COW) {
1315 bdrv_backing_attach(child);
1316 }
1317
1318 bdrv_apply_subtree_drain(child, bs);
1319}
1320
Max Reitz48e08282020-05-13 13:05:23 +02001321static void bdrv_child_cb_detach(BdrvChild *child)
1322{
1323 BlockDriverState *bs = child->opaque;
1324
1325 if (child->role & BDRV_CHILD_COW) {
1326 bdrv_backing_detach(child);
1327 }
1328
1329 bdrv_unapply_subtree_drain(child, bs);
1330}
1331
Max Reitz43483552020-05-13 13:05:24 +02001332static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1333 const char *filename, Error **errp)
1334{
1335 if (c->role & BDRV_CHILD_COW) {
1336 return bdrv_backing_update_filename(c, base, filename, errp);
1337 }
1338 return 0;
1339}
1340
1341const BdrvChildClass child_of_bds = {
1342 .parent_is_bds = true,
1343 .get_parent_desc = bdrv_child_get_parent_desc,
1344 .inherit_options = bdrv_inherited_options,
1345 .drained_begin = bdrv_child_cb_drained_begin,
1346 .drained_poll = bdrv_child_cb_drained_poll,
1347 .drained_end = bdrv_child_cb_drained_end,
1348 .attach = bdrv_child_cb_attach,
1349 .detach = bdrv_child_cb_detach,
1350 .inactivate = bdrv_child_cb_inactivate,
1351 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1352 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1353 .update_filename = bdrv_child_cb_update_filename,
1354};
1355
Kevin Wolf7b272452012-11-12 17:05:39 +01001356static int bdrv_open_flags(BlockDriverState *bs, int flags)
1357{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001358 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001359
1360 /*
1361 * Clear flags that are internal to the block layer before opening the
1362 * image.
1363 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001364 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001365
Kevin Wolf7b272452012-11-12 17:05:39 +01001366 return open_flags;
1367}
1368
Kevin Wolf91a097e2015-05-08 17:49:53 +02001369static void update_flags_from_options(int *flags, QemuOpts *opts)
1370{
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001371 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001372
Alberto Garcia57f9db92018-09-06 12:37:06 +03001373 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001374 *flags |= BDRV_O_NO_FLUSH;
1375 }
1376
Alberto Garcia57f9db92018-09-06 12:37:06 +03001377 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001378 *flags |= BDRV_O_NOCACHE;
1379 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001380
Alberto Garcia57f9db92018-09-06 12:37:06 +03001381 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001382 *flags |= BDRV_O_RDWR;
1383 }
1384
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001385 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1386 *flags |= BDRV_O_AUTO_RDONLY;
1387 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001388}
1389
1390static void update_options_from_flags(QDict *options, int flags)
1391{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001392 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001393 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001394 }
1395 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001396 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1397 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001398 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001399 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001400 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001401 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001402 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1403 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1404 flags & BDRV_O_AUTO_RDONLY);
1405 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001406}
1407
Kevin Wolf636ea372014-01-24 14:11:52 +01001408static void bdrv_assign_node_name(BlockDriverState *bs,
1409 const char *node_name,
1410 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001411{
Jeff Cody15489c72015-10-12 19:36:50 -04001412 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001413
Jeff Cody15489c72015-10-12 19:36:50 -04001414 if (!node_name) {
1415 node_name = gen_node_name = id_generate(ID_BLOCK);
1416 } else if (!id_wellformed(node_name)) {
1417 /*
1418 * Check for empty string or invalid characters, but not if it is
1419 * generated (generated names use characters not available to the user)
1420 */
Kevin Wolf9aebf3b2014-09-25 09:54:02 +02001421 error_setg(errp, "Invalid node name");
Kevin Wolf636ea372014-01-24 14:11:52 +01001422 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001423 }
1424
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001425 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001426 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001427 error_setg(errp, "node-name=%s is conflicting with a device id",
1428 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001429 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001430 }
1431
Benoît Canet6913c0c2014-01-23 21:31:33 +01001432 /* takes care of avoiding duplicates node names */
1433 if (bdrv_find_node(node_name)) {
1434 error_setg(errp, "Duplicate node name");
Jeff Cody15489c72015-10-12 19:36:50 -04001435 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001436 }
1437
Kevin Wolf824808d2018-07-04 13:28:29 +02001438 /* Make sure that the node name isn't truncated */
1439 if (strlen(node_name) >= sizeof(bs->node_name)) {
1440 error_setg(errp, "Node name too long");
1441 goto out;
1442 }
1443
Benoît Canet6913c0c2014-01-23 21:31:33 +01001444 /* copy node name into the bs and insert it into the graph list */
1445 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1446 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001447out:
1448 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001449}
1450
Kevin Wolf01a56502017-01-18 15:51:56 +01001451static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1452 const char *node_name, QDict *options,
1453 int open_flags, Error **errp)
1454{
1455 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001456 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001457
1458 bdrv_assign_node_name(bs, node_name, &local_err);
1459 if (local_err) {
1460 error_propagate(errp, local_err);
1461 return -EINVAL;
1462 }
1463
1464 bs->drv = drv;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001465 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Kevin Wolf01a56502017-01-18 15:51:56 +01001466 bs->opaque = g_malloc0(drv->instance_size);
1467
1468 if (drv->bdrv_file_open) {
1469 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1470 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001471 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001472 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001473 } else {
1474 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001475 }
1476
1477 if (ret < 0) {
1478 if (local_err) {
1479 error_propagate(errp, local_err);
1480 } else if (bs->filename[0]) {
1481 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1482 } else {
1483 error_setg_errno(errp, -ret, "Could not open image");
1484 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001485 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001486 }
1487
1488 ret = refresh_total_sectors(bs, bs->total_sectors);
1489 if (ret < 0) {
1490 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001491 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001492 }
1493
1494 bdrv_refresh_limits(bs, &local_err);
1495 if (local_err) {
1496 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001497 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001498 }
1499
1500 assert(bdrv_opt_mem_align(bs) != 0);
1501 assert(bdrv_min_mem_align(bs) != 0);
1502 assert(is_power_of_2(bs->bl.request_alignment));
1503
Kevin Wolf0f122642018-03-28 18:29:18 +02001504 for (i = 0; i < bs->quiesce_counter; i++) {
1505 if (drv->bdrv_co_drain_begin) {
1506 drv->bdrv_co_drain_begin(bs);
1507 }
1508 }
1509
Kevin Wolf01a56502017-01-18 15:51:56 +01001510 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001511open_failed:
1512 bs->drv = NULL;
1513 if (bs->file != NULL) {
1514 bdrv_unref_child(bs, bs->file);
1515 bs->file = NULL;
1516 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001517 g_free(bs->opaque);
1518 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001519 return ret;
1520}
1521
Kevin Wolf680c7f92017-01-18 17:16:41 +01001522BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1523 int flags, Error **errp)
1524{
1525 BlockDriverState *bs;
1526 int ret;
1527
1528 bs = bdrv_new();
1529 bs->open_flags = flags;
1530 bs->explicit_options = qdict_new();
1531 bs->options = qdict_new();
1532 bs->opaque = NULL;
1533
1534 update_options_from_flags(bs->options, flags);
1535
1536 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1537 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001538 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001539 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001540 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001541 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001542 bdrv_unref(bs);
1543 return NULL;
1544 }
1545
1546 return bs;
1547}
1548
Kevin Wolfc5f30142016-10-06 11:33:17 +02001549QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001550 .name = "bdrv_common",
1551 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1552 .desc = {
1553 {
1554 .name = "node-name",
1555 .type = QEMU_OPT_STRING,
1556 .help = "Node name of the block device node",
1557 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001558 {
1559 .name = "driver",
1560 .type = QEMU_OPT_STRING,
1561 .help = "Block driver to use for the node",
1562 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001563 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001564 .name = BDRV_OPT_CACHE_DIRECT,
1565 .type = QEMU_OPT_BOOL,
1566 .help = "Bypass software writeback cache on the host",
1567 },
1568 {
1569 .name = BDRV_OPT_CACHE_NO_FLUSH,
1570 .type = QEMU_OPT_BOOL,
1571 .help = "Ignore flush requests",
1572 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001573 {
1574 .name = BDRV_OPT_READ_ONLY,
1575 .type = QEMU_OPT_BOOL,
1576 .help = "Node is opened in read-only mode",
1577 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001578 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001579 .name = BDRV_OPT_AUTO_READ_ONLY,
1580 .type = QEMU_OPT_BOOL,
1581 .help = "Node can become read-only if opening read-write fails",
1582 },
1583 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001584 .name = "detect-zeroes",
1585 .type = QEMU_OPT_STRING,
1586 .help = "try to optimize zero writes (off, on, unmap)",
1587 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001588 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001589 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001590 .type = QEMU_OPT_STRING,
1591 .help = "discard operation (ignore/off, unmap/on)",
1592 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001593 {
1594 .name = BDRV_OPT_FORCE_SHARE,
1595 .type = QEMU_OPT_BOOL,
1596 .help = "always accept other writers (default: off)",
1597 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001598 { /* end of list */ }
1599 },
1600};
1601
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001602QemuOptsList bdrv_create_opts_simple = {
1603 .name = "simple-create-opts",
1604 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001605 .desc = {
1606 {
1607 .name = BLOCK_OPT_SIZE,
1608 .type = QEMU_OPT_SIZE,
1609 .help = "Virtual disk size"
1610 },
1611 {
1612 .name = BLOCK_OPT_PREALLOC,
1613 .type = QEMU_OPT_STRING,
1614 .help = "Preallocation mode (allowed values: off)"
1615 },
1616 { /* end of list */ }
1617 }
1618};
1619
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001620/*
Kevin Wolf57915332010-04-14 15:24:50 +02001621 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001622 *
1623 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001624 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001625static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001626 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001627{
1628 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001629 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001630 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001631 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001632 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001633 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001634 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001635 Error *local_err = NULL;
Kevin Wolf57915332010-04-14 15:24:50 +02001636
Paolo Bonzini64058752012-05-08 16:51:49 +02001637 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001638 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001639
Kevin Wolf62392eb2015-04-24 16:38:02 +02001640 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001641 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001642 ret = -EINVAL;
1643 goto fail_opts;
1644 }
1645
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001646 update_flags_from_options(&bs->open_flags, opts);
1647
Kevin Wolf62392eb2015-04-24 16:38:02 +02001648 driver_name = qemu_opt_get(opts, "driver");
1649 drv = bdrv_find_format(driver_name);
1650 assert(drv != NULL);
1651
Fam Zheng5a9347c2017-05-03 00:35:37 +08001652 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1653
1654 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1655 error_setg(errp,
1656 BDRV_OPT_FORCE_SHARE
1657 "=on can only be used with read-only images");
1658 ret = -EINVAL;
1659 goto fail_opts;
1660 }
1661
Kevin Wolf45673672013-04-22 17:48:40 +02001662 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001663 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001664 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001665 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001666 /*
1667 * Caution: while qdict_get_try_str() is fine, getting
1668 * non-string types would require more care. When @options
1669 * come from -blockdev or blockdev_add, its members are typed
1670 * according to the QAPI schema, but when they come from
1671 * -drive, they're all QString.
1672 */
Kevin Wolf45673672013-04-22 17:48:40 +02001673 filename = qdict_get_try_str(options, "filename");
1674 }
1675
Max Reitz4a008242017-04-13 18:06:24 +02001676 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001677 error_setg(errp, "The '%s' block driver requires a file name",
1678 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001679 ret = -EINVAL;
1680 goto fail_opts;
1681 }
1682
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001683 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1684 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001685
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001686 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001687
1688 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001689 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1690 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1691 } else {
1692 ret = -ENOTSUP;
1693 }
1694 if (ret < 0) {
1695 error_setg(errp,
1696 !bs->read_only && bdrv_is_whitelisted(drv, true)
1697 ? "Driver '%s' can only be used for read-only devices"
1698 : "Driver '%s' is not whitelisted",
1699 drv->format_name);
1700 goto fail_opts;
1701 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001702 }
Kevin Wolf57915332010-04-14 15:24:50 +02001703
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001704 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001705 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001706
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001707 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001708 if (!bs->read_only) {
1709 bdrv_enable_copy_on_read(bs);
1710 } else {
1711 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001712 ret = -EINVAL;
1713 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001714 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001715 }
1716
Alberto Garcia415bbca2018-10-03 13:23:13 +03001717 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001718 if (discard != NULL) {
1719 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1720 error_setg(errp, "Invalid discard option");
1721 ret = -EINVAL;
1722 goto fail_opts;
1723 }
1724 }
1725
Alberto Garcia543770b2018-09-06 12:37:09 +03001726 bs->detect_zeroes =
1727 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1728 if (local_err) {
1729 error_propagate(errp, local_err);
1730 ret = -EINVAL;
1731 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001732 }
1733
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001734 if (filename != NULL) {
1735 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1736 } else {
1737 bs->filename[0] = '\0';
1738 }
Max Reitz91af7012014-07-18 20:24:56 +02001739 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001740
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001741 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001742 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001743 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001744
Kevin Wolf01a56502017-01-18 15:51:56 +01001745 assert(!drv->bdrv_file_open || file == NULL);
1746 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001747 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001748 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001749 }
1750
Kevin Wolf18edf282015-04-07 17:12:56 +02001751 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001752 return 0;
1753
Kevin Wolf18edf282015-04-07 17:12:56 +02001754fail_opts:
1755 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001756 return ret;
1757}
1758
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001759static QDict *parse_json_filename(const char *filename, Error **errp)
1760{
1761 QObject *options_obj;
1762 QDict *options;
1763 int ret;
1764
1765 ret = strstart(filename, "json:", &filename);
1766 assert(ret);
1767
Markus Armbruster5577fff2017-02-28 22:26:59 +01001768 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001769 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001770 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001771 return NULL;
1772 }
1773
Max Reitz7dc847e2018-02-24 16:40:29 +01001774 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001775 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001776 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001777 error_setg(errp, "Invalid JSON object given");
1778 return NULL;
1779 }
1780
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001781 qdict_flatten(options);
1782
1783 return options;
1784}
1785
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001786static void parse_json_protocol(QDict *options, const char **pfilename,
1787 Error **errp)
1788{
1789 QDict *json_options;
1790 Error *local_err = NULL;
1791
1792 /* Parse json: pseudo-protocol */
1793 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1794 return;
1795 }
1796
1797 json_options = parse_json_filename(*pfilename, &local_err);
1798 if (local_err) {
1799 error_propagate(errp, local_err);
1800 return;
1801 }
1802
1803 /* Options given in the filename have lower priority than options
1804 * specified directly */
1805 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001806 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001807 *pfilename = NULL;
1808}
1809
Kevin Wolf57915332010-04-14 15:24:50 +02001810/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001811 * Fills in default options for opening images and converts the legacy
1812 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001813 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1814 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001815 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001816static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001817 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001818{
1819 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001820 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001821 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001822 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001823 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001824
Markus Armbruster129c7d12017-03-30 19:43:12 +02001825 /*
1826 * Caution: while qdict_get_try_str() is fine, getting non-string
1827 * types would require more care. When @options come from
1828 * -blockdev or blockdev_add, its members are typed according to
1829 * the QAPI schema, but when they come from -drive, they're all
1830 * QString.
1831 */
Max Reitz53a29512015-03-19 14:53:16 -04001832 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001833 if (drvname) {
1834 drv = bdrv_find_format(drvname);
1835 if (!drv) {
1836 error_setg(errp, "Unknown driver '%s'", drvname);
1837 return -ENOENT;
1838 }
1839 /* If the user has explicitly specified the driver, this choice should
1840 * override the BDRV_O_PROTOCOL flag */
1841 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001842 }
1843
1844 if (protocol) {
1845 *flags |= BDRV_O_PROTOCOL;
1846 } else {
1847 *flags &= ~BDRV_O_PROTOCOL;
1848 }
1849
Kevin Wolf91a097e2015-05-08 17:49:53 +02001850 /* Translate cache options from flags into options */
1851 update_options_from_flags(*options, *flags);
1852
Kevin Wolff54120f2014-05-26 11:09:59 +02001853 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001854 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001855 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001856 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001857 parse_filename = true;
1858 } else {
1859 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1860 "the same time");
1861 return -EINVAL;
1862 }
1863 }
1864
1865 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001866 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001867 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001868
Max Reitz053e1572015-08-26 19:47:51 +02001869 if (!drvname && protocol) {
1870 if (filename) {
1871 drv = bdrv_find_protocol(filename, parse_filename, errp);
1872 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001873 return -EINVAL;
1874 }
Max Reitz053e1572015-08-26 19:47:51 +02001875
1876 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001877 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001878 } else {
1879 error_setg(errp, "Must specify either driver or file");
1880 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001881 }
1882 }
1883
Kevin Wolf17b005f2014-05-27 10:50:29 +02001884 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001885
1886 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001887 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001888 drv->bdrv_parse_filename(filename, *options, &local_err);
1889 if (local_err) {
1890 error_propagate(errp, local_err);
1891 return -EINVAL;
1892 }
1893
1894 if (!drv->bdrv_needs_filename) {
1895 qdict_del(*options, "filename");
1896 }
1897 }
1898
1899 return 0;
1900}
1901
Kevin Wolf3121fb42017-09-14 14:42:12 +02001902static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1903 uint64_t perm, uint64_t shared,
Max Reitz9eab1542019-05-22 19:03:50 +02001904 GSList *ignore_children,
1905 bool *tighten_restrictions, Error **errp);
Fam Zhengc1cef672017-03-14 10:30:50 +08001906static void bdrv_child_abort_perm_update(BdrvChild *c);
1907static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1908
Kevin Wolf148eb132017-09-14 14:32:04 +02001909typedef struct BlockReopenQueueEntry {
1910 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01001911 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02001912 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001913 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02001914} BlockReopenQueueEntry;
1915
1916/*
1917 * Return the flags that @bs will have after the reopens in @q have
1918 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1919 * return the current flags.
1920 */
1921static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1922{
1923 BlockReopenQueueEntry *entry;
1924
1925 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001926 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02001927 if (entry->state.bs == bs) {
1928 return entry->state.flags;
1929 }
1930 }
1931 }
1932
1933 return bs->open_flags;
1934}
1935
1936/* Returns whether the image file can be written to after the reopen queue @q
1937 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02001938static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1939 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02001940{
1941 int flags = bdrv_reopen_get_flags(q, bs);
1942
1943 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1944}
1945
Max Reitzcc022142018-06-06 21:37:00 +02001946/*
1947 * Return whether the BDS can be written to. This is not necessarily
1948 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1949 * be written to but do not count as read-only images.
1950 */
1951bool bdrv_is_writable(BlockDriverState *bs)
1952{
1953 return bdrv_is_writable_after_reopen(bs, NULL);
1954}
1955
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001956static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02001957 BdrvChild *c, BdrvChildRole role,
1958 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001959 uint64_t parent_perm, uint64_t parent_shared,
1960 uint64_t *nperm, uint64_t *nshared)
1961{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03001962 assert(bs->drv && bs->drv->bdrv_child_perm);
Max Reitze5d8a402020-05-13 13:05:44 +02001963 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03001964 parent_perm, parent_shared,
1965 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001966 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001967 if (child_bs && child_bs->force_share) {
1968 *nshared = BLK_PERM_ALL;
1969 }
1970}
1971
Kevin Wolf33a610c2016-12-15 13:04:20 +01001972/*
1973 * Check whether permissions on this node can be changed in a way that
1974 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1975 * permissions of all its parents. This involves checking whether all necessary
1976 * permission changes to child nodes can be performed.
1977 *
Max Reitz9eab1542019-05-22 19:03:50 +02001978 * Will set *tighten_restrictions to true if and only if new permissions have to
1979 * be taken or currently shared permissions are to be unshared. Otherwise,
1980 * errors are not fatal as long as the caller accepts that the restrictions
1981 * remain tighter than they need to be. The caller still has to abort the
1982 * transaction.
1983 * @tighten_restrictions cannot be used together with @q: When reopening, we may
1984 * encounter fatal errors even though no restrictions are to be tightened. For
1985 * example, changing a node from RW to RO will fail if the WRITE permission is
1986 * to be kept.
1987 *
Kevin Wolf33a610c2016-12-15 13:04:20 +01001988 * A call to this function must always be followed by a call to bdrv_set_perm()
1989 * or bdrv_abort_perm_update().
1990 */
Kevin Wolf3121fb42017-09-14 14:42:12 +02001991static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1992 uint64_t cumulative_perms,
Kevin Wolf46181122017-03-06 15:00:13 +01001993 uint64_t cumulative_shared_perms,
Max Reitz9eab1542019-05-22 19:03:50 +02001994 GSList *ignore_children,
1995 bool *tighten_restrictions, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01001996{
1997 BlockDriver *drv = bs->drv;
1998 BdrvChild *c;
1999 int ret;
2000
Max Reitz9eab1542019-05-22 19:03:50 +02002001 assert(!q || !tighten_restrictions);
2002
2003 if (tighten_restrictions) {
2004 uint64_t current_perms, current_shared;
2005 uint64_t added_perms, removed_shared_perms;
2006
2007 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2008
2009 added_perms = cumulative_perms & ~current_perms;
2010 removed_shared_perms = current_shared & ~cumulative_shared_perms;
2011
2012 *tighten_restrictions = added_perms || removed_shared_perms;
2013 }
2014
Kevin Wolf33a610c2016-12-15 13:04:20 +01002015 /* Write permissions never work with read-only images */
2016 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002017 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002018 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002019 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2020 error_setg(errp, "Block node is read-only");
2021 } else {
2022 uint64_t current_perms, current_shared;
2023 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2024 if (current_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
2025 error_setg(errp, "Cannot make block node read-only, there is "
2026 "a writer on it");
2027 } else {
2028 error_setg(errp, "Cannot make block node read-only and create "
2029 "a writer on it");
2030 }
2031 }
2032
Kevin Wolf33a610c2016-12-15 13:04:20 +01002033 return -EPERM;
2034 }
2035
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002036 /*
2037 * Unaligned requests will automatically be aligned to bl.request_alignment
2038 * and without RESIZE we can't extend requests to write to space beyond the
2039 * end of the image, so it's required that the image size is aligned.
2040 */
2041 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2042 !(cumulative_perms & BLK_PERM_RESIZE))
2043 {
2044 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2045 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2046 "Image size is not a multiple of request "
2047 "alignment");
2048 return -EPERM;
2049 }
2050 }
2051
Kevin Wolf33a610c2016-12-15 13:04:20 +01002052 /* Check this node */
2053 if (!drv) {
2054 return 0;
2055 }
2056
2057 if (drv->bdrv_check_perm) {
2058 return drv->bdrv_check_perm(bs, cumulative_perms,
2059 cumulative_shared_perms, errp);
2060 }
2061
Kevin Wolf78e421c2016-12-20 23:25:12 +01002062 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002063 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002064 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002065 return 0;
2066 }
2067
2068 /* Check all children */
2069 QLIST_FOREACH(c, &bs->children, next) {
2070 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002071 bool child_tighten_restr;
2072
Max Reitze5d8a402020-05-13 13:05:44 +02002073 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002074 cumulative_perms, cumulative_shared_perms,
2075 &cur_perm, &cur_shared);
Max Reitz9eab1542019-05-22 19:03:50 +02002076 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared, ignore_children,
2077 tighten_restrictions ? &child_tighten_restr
2078 : NULL,
2079 errp);
2080 if (tighten_restrictions) {
2081 *tighten_restrictions |= child_tighten_restr;
2082 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002083 if (ret < 0) {
2084 return ret;
2085 }
2086 }
2087
2088 return 0;
2089}
2090
2091/*
2092 * Notifies drivers that after a previous bdrv_check_perm() call, the
2093 * permission update is not performed and any preparations made for it (e.g.
2094 * taken file locks) need to be undone.
2095 *
2096 * This function recursively notifies all child nodes.
2097 */
2098static void bdrv_abort_perm_update(BlockDriverState *bs)
2099{
2100 BlockDriver *drv = bs->drv;
2101 BdrvChild *c;
2102
2103 if (!drv) {
2104 return;
2105 }
2106
2107 if (drv->bdrv_abort_perm_update) {
2108 drv->bdrv_abort_perm_update(bs);
2109 }
2110
2111 QLIST_FOREACH(c, &bs->children, next) {
2112 bdrv_child_abort_perm_update(c);
2113 }
2114}
2115
2116static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
2117 uint64_t cumulative_shared_perms)
2118{
2119 BlockDriver *drv = bs->drv;
2120 BdrvChild *c;
2121
2122 if (!drv) {
2123 return;
2124 }
2125
2126 /* Update this node */
2127 if (drv->bdrv_set_perm) {
2128 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2129 }
2130
Kevin Wolf78e421c2016-12-20 23:25:12 +01002131 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002132 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002133 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002134 return;
2135 }
2136
2137 /* Update all children */
2138 QLIST_FOREACH(c, &bs->children, next) {
2139 uint64_t cur_perm, cur_shared;
Max Reitze5d8a402020-05-13 13:05:44 +02002140 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002141 cumulative_perms, cumulative_shared_perms,
2142 &cur_perm, &cur_shared);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002143 bdrv_child_set_perm(c, cur_perm, cur_shared);
2144 }
2145}
2146
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002147void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2148 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002149{
2150 BdrvChild *c;
2151 uint64_t cumulative_perms = 0;
2152 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2153
2154 QLIST_FOREACH(c, &bs->parents, next_parent) {
2155 cumulative_perms |= c->perm;
2156 cumulative_shared_perms &= c->shared_perm;
2157 }
2158
2159 *perm = cumulative_perms;
2160 *shared_perm = cumulative_shared_perms;
2161}
2162
Kevin Wolfd0833192017-01-16 18:26:20 +01002163static char *bdrv_child_user_desc(BdrvChild *c)
2164{
Max Reitzbd86fb92020-05-13 13:05:13 +02002165 if (c->klass->get_parent_desc) {
2166 return c->klass->get_parent_desc(c);
Kevin Wolfd0833192017-01-16 18:26:20 +01002167 }
2168
2169 return g_strdup("another user");
2170}
2171
Fam Zheng51761962017-05-03 00:35:36 +08002172char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002173{
2174 struct perm_name {
2175 uint64_t perm;
2176 const char *name;
2177 } permissions[] = {
2178 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2179 { BLK_PERM_WRITE, "write" },
2180 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2181 { BLK_PERM_RESIZE, "resize" },
2182 { BLK_PERM_GRAPH_MOD, "change children" },
2183 { 0, NULL }
2184 };
2185
Alberto Garciae2a74232020-01-10 18:15:18 +01002186 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002187 struct perm_name *p;
2188
2189 for (p = permissions; p->name; p++) {
2190 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002191 if (result->len > 0) {
2192 g_string_append(result, ", ");
2193 }
2194 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002195 }
2196 }
2197
Alberto Garciae2a74232020-01-10 18:15:18 +01002198 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002199}
2200
Kevin Wolf33a610c2016-12-15 13:04:20 +01002201/*
2202 * Checks whether a new reference to @bs can be added if the new user requires
Kevin Wolf46181122017-03-06 15:00:13 +01002203 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
2204 * set, the BdrvChild objects in this list are ignored in the calculations;
2205 * this allows checking permission updates for an existing reference.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002206 *
Max Reitz9eab1542019-05-22 19:03:50 +02002207 * See bdrv_check_perm() for the semantics of @tighten_restrictions.
2208 *
Kevin Wolf33a610c2016-12-15 13:04:20 +01002209 * Needs to be followed by a call to either bdrv_set_perm() or
2210 * bdrv_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02002211static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
2212 uint64_t new_used_perm,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002213 uint64_t new_shared_perm,
Max Reitz9eab1542019-05-22 19:03:50 +02002214 GSList *ignore_children,
2215 bool *tighten_restrictions,
2216 Error **errp)
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002217{
2218 BdrvChild *c;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002219 uint64_t cumulative_perms = new_used_perm;
2220 uint64_t cumulative_shared_perms = new_shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002221
Max Reitz9eab1542019-05-22 19:03:50 +02002222 assert(!q || !tighten_restrictions);
2223
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002224 /* There is no reason why anyone couldn't tolerate write_unchanged */
2225 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
2226
2227 QLIST_FOREACH(c, &bs->parents, next_parent) {
Kevin Wolf46181122017-03-06 15:00:13 +01002228 if (g_slist_find(ignore_children, c)) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002229 continue;
2230 }
2231
Kevin Wolfd0833192017-01-16 18:26:20 +01002232 if ((new_used_perm & c->shared_perm) != new_used_perm) {
2233 char *user = bdrv_child_user_desc(c);
2234 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002235
2236 if (tighten_restrictions) {
2237 *tighten_restrictions = true;
2238 }
2239
Kevin Wolfd0833192017-01-16 18:26:20 +01002240 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2241 "allow '%s' on %s",
2242 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2243 g_free(user);
2244 g_free(perm_names);
2245 return -EPERM;
2246 }
2247
2248 if ((c->perm & new_shared_perm) != c->perm) {
2249 char *user = bdrv_child_user_desc(c);
2250 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002251
2252 if (tighten_restrictions) {
2253 *tighten_restrictions = true;
2254 }
2255
Kevin Wolfd0833192017-01-16 18:26:20 +01002256 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
2257 "'%s' on %s",
2258 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2259 g_free(user);
2260 g_free(perm_names);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002261 return -EPERM;
2262 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002263
2264 cumulative_perms |= c->perm;
2265 cumulative_shared_perms &= c->shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002266 }
2267
Kevin Wolf3121fb42017-09-14 14:42:12 +02002268 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
Max Reitz9eab1542019-05-22 19:03:50 +02002269 ignore_children, tighten_restrictions, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002270}
2271
2272/* Needs to be followed by a call to either bdrv_child_set_perm() or
2273 * bdrv_child_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02002274static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
2275 uint64_t perm, uint64_t shared,
Max Reitz9eab1542019-05-22 19:03:50 +02002276 GSList *ignore_children,
2277 bool *tighten_restrictions, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002278{
Kevin Wolf46181122017-03-06 15:00:13 +01002279 int ret;
2280
2281 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
Max Reitz9eab1542019-05-22 19:03:50 +02002282 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children,
2283 tighten_restrictions, errp);
Kevin Wolf46181122017-03-06 15:00:13 +01002284 g_slist_free(ignore_children);
2285
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002286 if (ret < 0) {
2287 return ret;
2288 }
2289
2290 if (!c->has_backup_perm) {
2291 c->has_backup_perm = true;
2292 c->backup_perm = c->perm;
2293 c->backup_shared_perm = c->shared_perm;
2294 }
2295 /*
2296 * Note: it's OK if c->has_backup_perm was already set, as we can find the
2297 * same child twice during check_perm procedure
2298 */
2299
2300 c->perm = perm;
2301 c->shared_perm = shared;
2302
2303 return 0;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002304}
2305
Fam Zhengc1cef672017-03-14 10:30:50 +08002306static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002307{
2308 uint64_t cumulative_perms, cumulative_shared_perms;
2309
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002310 c->has_backup_perm = false;
2311
Kevin Wolf33a610c2016-12-15 13:04:20 +01002312 c->perm = perm;
2313 c->shared_perm = shared;
2314
2315 bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
2316 &cumulative_shared_perms);
2317 bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
2318}
2319
Fam Zhengc1cef672017-03-14 10:30:50 +08002320static void bdrv_child_abort_perm_update(BdrvChild *c)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002321{
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002322 if (c->has_backup_perm) {
2323 c->perm = c->backup_perm;
2324 c->shared_perm = c->backup_shared_perm;
2325 c->has_backup_perm = false;
2326 }
2327
Kevin Wolf33a610c2016-12-15 13:04:20 +01002328 bdrv_abort_perm_update(c->bs);
2329}
2330
2331int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2332 Error **errp)
2333{
Max Reitz10467792019-05-22 19:03:51 +02002334 Error *local_err = NULL;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002335 int ret;
Max Reitz10467792019-05-22 19:03:51 +02002336 bool tighten_restrictions;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002337
Max Reitz10467792019-05-22 19:03:51 +02002338 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL,
2339 &tighten_restrictions, &local_err);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002340 if (ret < 0) {
2341 bdrv_child_abort_perm_update(c);
Max Reitz10467792019-05-22 19:03:51 +02002342 if (tighten_restrictions) {
2343 error_propagate(errp, local_err);
2344 } else {
2345 /*
2346 * Our caller may intend to only loosen restrictions and
2347 * does not expect this function to fail. Errors are not
2348 * fatal in such a case, so we can just hide them from our
2349 * caller.
2350 */
2351 error_free(local_err);
2352 ret = 0;
2353 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002354 return ret;
2355 }
2356
2357 bdrv_child_set_perm(c, perm, shared);
2358
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002359 return 0;
2360}
2361
Max Reitzc1087f12019-05-22 19:03:46 +02002362int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2363{
2364 uint64_t parent_perms, parent_shared;
2365 uint64_t perms, shared;
2366
2367 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002368 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002369 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002370
2371 return bdrv_child_try_set_perm(c, perms, shared, errp);
2372}
2373
Max Reitz87278af2020-05-13 13:05:40 +02002374/*
2375 * Default implementation for .bdrv_child_perm() for block filters:
2376 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2377 * filtered child.
2378 */
2379static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002380 BdrvChildRole role,
2381 BlockReopenQueue *reopen_queue,
2382 uint64_t perm, uint64_t shared,
2383 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002384{
Kevin Wolfe444fa82019-08-02 15:59:41 +02002385 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2386 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002387}
2388
Max Reitz70082db2020-05-13 13:05:26 +02002389static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002390 BdrvChildRole role,
2391 BlockReopenQueue *reopen_queue,
2392 uint64_t perm, uint64_t shared,
2393 uint64_t *nperm, uint64_t *nshared)
2394{
Max Reitze5d8a402020-05-13 13:05:44 +02002395 assert(role & BDRV_CHILD_COW);
Max Reitz70082db2020-05-13 13:05:26 +02002396
2397 /*
2398 * We want consistent read from backing files if the parent needs it.
2399 * No other operations are performed on backing files.
2400 */
2401 perm &= BLK_PERM_CONSISTENT_READ;
2402
2403 /*
2404 * If the parent can deal with changing data, we're okay with a
2405 * writable and resizable backing file.
2406 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2407 */
2408 if (shared & BLK_PERM_WRITE) {
2409 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2410 } else {
2411 shared = 0;
2412 }
2413
2414 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2415 BLK_PERM_WRITE_UNCHANGED;
2416
2417 if (bs->open_flags & BDRV_O_INACTIVE) {
2418 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2419 }
2420
2421 *nperm = perm;
2422 *nshared = shared;
2423}
2424
Max Reitz6f838a42020-05-13 13:05:27 +02002425static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002426 BdrvChildRole role,
2427 BlockReopenQueue *reopen_queue,
2428 uint64_t perm, uint64_t shared,
2429 uint64_t *nperm, uint64_t *nshared)
2430{
2431 int flags;
2432
Max Reitze5d8a402020-05-13 13:05:44 +02002433 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002434
2435 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2436
2437 /*
2438 * Apart from the modifications below, the same permissions are
2439 * forwarded and left alone as for filters
2440 */
Max Reitze5d8a402020-05-13 13:05:44 +02002441 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002442 perm, shared, &perm, &shared);
2443
Max Reitzf8890542020-05-13 13:05:28 +02002444 if (role & BDRV_CHILD_METADATA) {
2445 /* Format drivers may touch metadata even if the guest doesn't write */
2446 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2447 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2448 }
2449
2450 /*
2451 * bs->file always needs to be consistent because of the
2452 * metadata. We can never allow other users to resize or write
2453 * to it.
2454 */
2455 if (!(flags & BDRV_O_NO_IO)) {
2456 perm |= BLK_PERM_CONSISTENT_READ;
2457 }
2458 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002459 }
2460
Max Reitzf8890542020-05-13 13:05:28 +02002461 if (role & BDRV_CHILD_DATA) {
2462 /*
2463 * Technically, everything in this block is a subset of the
2464 * BDRV_CHILD_METADATA path taken above, and so this could
2465 * be an "else if" branch. However, that is not obvious, and
2466 * this function is not performance critical, therefore we let
2467 * this be an independent "if".
2468 */
2469
2470 /*
2471 * We cannot allow other users to resize the file because the
2472 * format driver might have some assumptions about the size
2473 * (e.g. because it is stored in metadata, or because the file
2474 * is split into fixed-size data files).
2475 */
2476 shared &= ~BLK_PERM_RESIZE;
2477
2478 /*
2479 * WRITE_UNCHANGED often cannot be performed as such on the
2480 * data file. For example, the qcow2 driver may still need to
2481 * write copied clusters on copy-on-read.
2482 */
2483 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2484 perm |= BLK_PERM_WRITE;
2485 }
2486
2487 /*
2488 * If the data file is written to, the format driver may
2489 * expect to be able to resize it by writing beyond the EOF.
2490 */
2491 if (perm & BLK_PERM_WRITE) {
2492 perm |= BLK_PERM_RESIZE;
2493 }
Max Reitz6f838a42020-05-13 13:05:27 +02002494 }
Max Reitz6f838a42020-05-13 13:05:27 +02002495
2496 if (bs->open_flags & BDRV_O_INACTIVE) {
2497 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2498 }
2499
2500 *nperm = perm;
2501 *nshared = shared;
2502}
2503
Max Reitz2519f542020-05-13 13:05:29 +02002504void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002505 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002506 uint64_t perm, uint64_t shared,
2507 uint64_t *nperm, uint64_t *nshared)
2508{
Max Reitz2519f542020-05-13 13:05:29 +02002509 if (role & BDRV_CHILD_FILTERED) {
2510 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2511 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002512 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002513 perm, shared, nperm, nshared);
2514 } else if (role & BDRV_CHILD_COW) {
2515 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002516 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002517 perm, shared, nperm, nshared);
2518 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002519 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002520 perm, shared, nperm, nshared);
2521 } else {
2522 g_assert_not_reached();
2523 }
2524}
2525
Max Reitz7b1d9c42019-11-08 13:34:51 +01002526uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2527{
2528 static const uint64_t permissions[] = {
2529 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2530 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2531 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2532 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2533 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2534 };
2535
2536 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2537 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2538
2539 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2540
2541 return permissions[qapi_perm];
2542}
2543
Kevin Wolf8ee03992017-03-06 13:45:28 +01002544static void bdrv_replace_child_noperm(BdrvChild *child,
2545 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002546{
2547 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002548 int new_bs_quiesce_counter;
2549 int drain_saldo;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002550
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002551 assert(!child->frozen);
2552
Fam Zhengbb2614e2017-04-07 14:54:10 +08002553 if (old_bs && new_bs) {
2554 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2555 }
Max Reitzdebc2922019-07-22 15:33:44 +02002556
2557 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2558 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2559
2560 /*
2561 * If the new child node is drained but the old one was not, flush
2562 * all outstanding requests to the old child node.
2563 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002564 while (drain_saldo > 0 && child->klass->drained_begin) {
Max Reitzdebc2922019-07-22 15:33:44 +02002565 bdrv_parent_drained_begin_single(child, true);
2566 drain_saldo--;
2567 }
2568
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002569 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002570 /* Detach first so that the recursive drain sections coming from @child
2571 * are already gone and we only end the drain sections that came from
2572 * elsewhere. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002573 if (child->klass->detach) {
2574 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002575 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002576 QLIST_REMOVE(child, next_parent);
2577 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002578
2579 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002580
2581 if (new_bs) {
2582 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzdebc2922019-07-22 15:33:44 +02002583
2584 /*
2585 * Detaching the old node may have led to the new node's
2586 * quiesce_counter having been decreased. Not a problem, we
2587 * just need to recognize this here and then invoke
2588 * drained_end appropriately more often.
2589 */
2590 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2591 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002592
Kevin Wolfd736f112017-12-18 16:05:48 +01002593 /* Attach only after starting new drained sections, so that recursive
2594 * drain sections coming from @child don't get an extra .drained_begin
2595 * callback. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002596 if (child->klass->attach) {
2597 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002598 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002599 }
Max Reitzdebc2922019-07-22 15:33:44 +02002600
2601 /*
2602 * If the old child node was drained but the new one is not, allow
2603 * requests to come in only after the new node has been attached.
2604 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002605 while (drain_saldo < 0 && child->klass->drained_end) {
Max Reitzdebc2922019-07-22 15:33:44 +02002606 bdrv_parent_drained_end_single(child);
2607 drain_saldo++;
2608 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002609}
2610
Kevin Wolf466787f2017-03-08 14:44:07 +01002611/*
2612 * Updates @child to change its reference to point to @new_bs, including
zhaolichange3a6e0d2020-09-17 15:50:20 +08002613 * checking and applying the necessary permission updates both to the old node
Kevin Wolf466787f2017-03-08 14:44:07 +01002614 * and to @new_bs.
2615 *
2616 * NULL is passed as @new_bs for removing the reference before freeing @child.
2617 *
2618 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2619 * function uses bdrv_set_perm() to update the permissions according to the new
2620 * reference that @new_bs gets.
Max Reitz7b99a262019-06-12 16:07:11 +02002621 *
2622 * Callers must ensure that child->frozen is false.
Kevin Wolf466787f2017-03-08 14:44:07 +01002623 */
2624static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolf8ee03992017-03-06 13:45:28 +01002625{
2626 BlockDriverState *old_bs = child->bs;
2627 uint64_t perm, shared_perm;
2628
Max Reitz7b99a262019-06-12 16:07:11 +02002629 /* Asserts that child->frozen == false */
Kevin Wolf8aecf1d2017-08-03 17:02:57 +02002630 bdrv_replace_child_noperm(child, new_bs);
2631
Max Reitz87ace5f2019-05-22 19:03:49 +02002632 /*
2633 * Start with the new node's permissions. If @new_bs is a (direct
2634 * or indirect) child of @old_bs, we must complete the permission
2635 * update on @new_bs before we loosen the restrictions on @old_bs.
2636 * Otherwise, bdrv_check_perm() on @old_bs would re-initiate
2637 * updating the permissions of @new_bs, and thus not purely loosen
2638 * restrictions.
2639 */
2640 if (new_bs) {
2641 bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2642 bdrv_set_perm(new_bs, perm, shared_perm);
2643 }
2644
Kevin Wolf8ee03992017-03-06 13:45:28 +01002645 if (old_bs) {
2646 /* Update permissions for old node. This is guaranteed to succeed
2647 * because we're just taking a parent away, so we're loosening
2648 * restrictions. */
Max Reitz10467792019-05-22 19:03:51 +02002649 bool tighten_restrictions;
2650 int ret;
2651
Kevin Wolf8ee03992017-03-06 13:45:28 +01002652 bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
Max Reitz10467792019-05-22 19:03:51 +02002653 ret = bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL,
2654 &tighten_restrictions, NULL);
2655 assert(tighten_restrictions == false);
2656 if (ret < 0) {
2657 /* We only tried to loosen restrictions, so errors are not fatal */
2658 bdrv_abort_perm_update(old_bs);
2659 } else {
2660 bdrv_set_perm(old_bs, perm, shared_perm);
2661 }
Kevin Wolfad943dc2019-04-24 18:04:42 +02002662
2663 /* When the parent requiring a non-default AioContext is removed, the
2664 * node moves back to the main AioContext */
2665 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
Kevin Wolf8ee03992017-03-06 13:45:28 +01002666 }
Kevin Wolff54120f2014-05-26 11:09:59 +02002667}
2668
Alberto Garciab441dc72019-05-13 16:46:18 +03002669/*
2670 * This function steals the reference to child_bs from the caller.
2671 * That reference is later dropped by bdrv_root_unref_child().
2672 *
2673 * On failure NULL is returned, errp is set and the reference to
2674 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002675 *
2676 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2677 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03002678 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002679BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2680 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002681 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002682 BdrvChildRole child_role,
Kevin Wolf132ada82019-04-24 17:41:46 +02002683 AioContext *ctx,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002684 uint64_t perm, uint64_t shared_perm,
2685 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02002686{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002687 BdrvChild *child;
Kevin Wolf132ada82019-04-24 17:41:46 +02002688 Error *local_err = NULL;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002689 int ret;
2690
Max Reitz9eab1542019-05-22 19:03:50 +02002691 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, NULL,
2692 errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002693 if (ret < 0) {
Kevin Wolf33a610c2016-12-15 13:04:20 +01002694 bdrv_abort_perm_update(child_bs);
Alberto Garciab441dc72019-05-13 16:46:18 +03002695 bdrv_unref(child_bs);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002696 return NULL;
2697 }
2698
2699 child = g_new(BdrvChild, 1);
Kevin Wolfdf581792015-06-15 11:53:47 +02002700 *child = (BdrvChild) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002701 .bs = NULL,
2702 .name = g_strdup(child_name),
Max Reitzbd86fb92020-05-13 13:05:13 +02002703 .klass = child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002704 .role = child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002705 .perm = perm,
2706 .shared_perm = shared_perm,
2707 .opaque = opaque,
Kevin Wolfdf581792015-06-15 11:53:47 +02002708 };
2709
Kevin Wolf132ada82019-04-24 17:41:46 +02002710 /* If the AioContexts don't match, first try to move the subtree of
2711 * child_bs into the AioContext of the new parent. If this doesn't work,
2712 * try moving the parent into the AioContext of child_bs instead. */
2713 if (bdrv_get_aio_context(child_bs) != ctx) {
2714 ret = bdrv_try_set_aio_context(child_bs, ctx, &local_err);
Max Reitzbd86fb92020-05-13 13:05:13 +02002715 if (ret < 0 && child_class->can_set_aio_ctx) {
Philippe Mathieu-Daudé0beab812020-02-18 10:43:52 +01002716 GSList *ignore = g_slist_prepend(NULL, child);
Kevin Wolf132ada82019-04-24 17:41:46 +02002717 ctx = bdrv_get_aio_context(child_bs);
Max Reitzbd86fb92020-05-13 13:05:13 +02002718 if (child_class->can_set_aio_ctx(child, ctx, &ignore, NULL)) {
Kevin Wolf132ada82019-04-24 17:41:46 +02002719 error_free(local_err);
2720 ret = 0;
2721 g_slist_free(ignore);
Philippe Mathieu-Daudé0beab812020-02-18 10:43:52 +01002722 ignore = g_slist_prepend(NULL, child);
Max Reitzbd86fb92020-05-13 13:05:13 +02002723 child_class->set_aio_ctx(child, ctx, &ignore);
Kevin Wolf132ada82019-04-24 17:41:46 +02002724 }
2725 g_slist_free(ignore);
2726 }
2727 if (ret < 0) {
2728 error_propagate(errp, local_err);
2729 g_free(child);
2730 bdrv_abort_perm_update(child_bs);
Vladimir Sementsov-Ogievskiy7a26df22020-03-24 18:59:21 +03002731 bdrv_unref(child_bs);
Kevin Wolf132ada82019-04-24 17:41:46 +02002732 return NULL;
2733 }
2734 }
2735
Kevin Wolf33a610c2016-12-15 13:04:20 +01002736 /* This performs the matching bdrv_set_perm() for the above check. */
Kevin Wolf466787f2017-03-08 14:44:07 +01002737 bdrv_replace_child(child, child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002738
2739 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02002740}
2741
Alberto Garciab441dc72019-05-13 16:46:18 +03002742/*
2743 * This function transfers the reference to child_bs from the caller
2744 * to parent_bs. That reference is later dropped by parent_bs on
2745 * bdrv_close() or if someone calls bdrv_unref_child().
2746 *
2747 * On failure NULL is returned, errp is set and the reference to
2748 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002749 *
2750 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2751 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03002752 */
Wen Congyang98292c62016-05-10 15:36:38 +08002753BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2754 BlockDriverState *child_bs,
2755 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002756 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002757 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002758 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002759{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002760 BdrvChild *child;
Kevin Wolff68c5982016-12-20 15:51:12 +01002761 uint64_t perm, shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002762
Kevin Wolff68c5982016-12-20 15:51:12 +01002763 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2764
2765 assert(parent_bs->drv);
Max Reitze5d8a402020-05-13 13:05:44 +02002766 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002767 perm, shared_perm, &perm, &shared_perm);
Kevin Wolff68c5982016-12-20 15:51:12 +01002768
Max Reitzbd86fb92020-05-13 13:05:13 +02002769 child = bdrv_root_attach_child(child_bs, child_name, child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002770 child_role, bdrv_get_aio_context(parent_bs),
Kevin Wolff68c5982016-12-20 15:51:12 +01002771 perm, shared_perm, parent_bs, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002772 if (child == NULL) {
2773 return NULL;
2774 }
2775
Kevin Wolff21d96d2016-03-08 13:47:46 +01002776 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2777 return child;
2778}
2779
Kevin Wolf3f09bfb2015-09-15 11:58:23 +02002780static void bdrv_detach_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002781{
Stefan Hajnoczi195ed8c2020-02-14 17:17:10 +00002782 QLIST_SAFE_REMOVE(child, next);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002783
Kevin Wolf466787f2017-03-08 14:44:07 +01002784 bdrv_replace_child(child, NULL);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002785
Kevin Wolf260fecf2015-04-27 13:46:22 +02002786 g_free(child->name);
Kevin Wolf33a60402015-06-15 13:51:04 +02002787 g_free(child);
2788}
2789
Max Reitz7b99a262019-06-12 16:07:11 +02002790/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002791void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002792{
Kevin Wolf779020c2015-10-13 14:09:44 +02002793 BlockDriverState *child_bs;
2794
Kevin Wolff21d96d2016-03-08 13:47:46 +01002795 child_bs = child->bs;
2796 bdrv_detach_child(child);
2797 bdrv_unref(child_bs);
2798}
2799
Max Reitz3cf746b2019-07-03 19:28:07 +02002800/**
2801 * Clear all inherits_from pointers from children and grandchildren of
2802 * @root that point to @root, where necessary.
2803 */
2804static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002805{
Max Reitz3cf746b2019-07-03 19:28:07 +02002806 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02002807
Max Reitz3cf746b2019-07-03 19:28:07 +02002808 if (child->bs->inherits_from == root) {
2809 /*
2810 * Remove inherits_from only when the last reference between root and
2811 * child->bs goes away.
2812 */
2813 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002814 if (c != child && c->bs == child->bs) {
2815 break;
2816 }
2817 }
2818 if (c == NULL) {
2819 child->bs->inherits_from = NULL;
2820 }
Kevin Wolf33a60402015-06-15 13:51:04 +02002821 }
2822
Max Reitz3cf746b2019-07-03 19:28:07 +02002823 QLIST_FOREACH(c, &child->bs->children, next) {
2824 bdrv_unset_inherits_from(root, c);
2825 }
2826}
2827
Max Reitz7b99a262019-06-12 16:07:11 +02002828/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02002829void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2830{
2831 if (child == NULL) {
2832 return;
2833 }
2834
2835 bdrv_unset_inherits_from(parent, child);
Kevin Wolff21d96d2016-03-08 13:47:46 +01002836 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02002837}
2838
Kevin Wolf5c8cab42016-02-24 15:13:35 +01002839
2840static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2841{
2842 BdrvChild *c;
2843 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02002844 if (c->klass->change_media) {
2845 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01002846 }
2847 }
2848}
2849
Alberto Garcia0065c452018-10-31 18:16:37 +02002850/* Return true if you can reach parent going through child->inherits_from
2851 * recursively. If parent or child are NULL, return false */
2852static bool bdrv_inherits_from_recursive(BlockDriverState *child,
2853 BlockDriverState *parent)
2854{
2855 while (child && child != parent) {
2856 child = child->inherits_from;
2857 }
2858
2859 return child != NULL;
2860}
2861
Kevin Wolf5db15a52015-09-14 15:33:33 +02002862/*
Max Reitz25191e52020-05-13 13:05:33 +02002863 * Return the BdrvChildRole for @bs's backing child. bs->backing is
2864 * mostly used for COW backing children (role = COW), but also for
2865 * filtered children (role = FILTERED | PRIMARY).
2866 */
2867static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
2868{
2869 if (bs->drv && bs->drv->is_filter) {
2870 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
2871 } else {
2872 return BDRV_CHILD_COW;
2873 }
2874}
2875
2876/*
Max Reitz9ee413c2019-06-12 18:42:34 +02002877 * Sets the bs->backing link of a BDS. A new reference is created; callers
Kevin Wolf5db15a52015-09-14 15:33:33 +02002878 * which don't need their own reference any more must call bdrv_unref().
2879 */
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002880void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2881 Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08002882{
Alberto Garcia0065c452018-10-31 18:16:37 +02002883 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
2884 bdrv_inherits_from_recursive(backing_hd, bs);
2885
Max Reitz9ee413c2019-06-12 18:42:34 +02002886 if (bdrv_is_backing_chain_frozen(bs, child_bs(bs->backing), errp)) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002887 return;
2888 }
2889
Kevin Wolf5db15a52015-09-14 15:33:33 +02002890 if (backing_hd) {
2891 bdrv_ref(backing_hd);
2892 }
Fam Zheng8d24cce2014-05-23 21:29:45 +08002893
Kevin Wolf760e0062015-06-17 14:55:21 +02002894 if (bs->backing) {
Max Reitz7b99a262019-06-12 16:07:11 +02002895 /* Cannot be frozen, we checked that above */
Kevin Wolf5db15a52015-09-14 15:33:33 +02002896 bdrv_unref_child(bs, bs->backing);
Vladimir Sementsov-Ogievskiy6e579632020-03-16 09:06:30 +03002897 bs->backing = NULL;
Fam Zheng826b6ca2014-05-23 21:29:47 +08002898 }
2899
Fam Zheng8d24cce2014-05-23 21:29:45 +08002900 if (!backing_hd) {
2901 goto out;
2902 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002903
Max Reitz25191e52020-05-13 13:05:33 +02002904 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_of_bds,
2905 bdrv_backing_role(bs), errp);
Alberto Garcia0065c452018-10-31 18:16:37 +02002906 /* If backing_hd was already part of bs's backing chain, and
2907 * inherits_from pointed recursively to bs then let's update it to
2908 * point directly to bs (else it will become NULL). */
Alberto Garciab441dc72019-05-13 16:46:18 +03002909 if (bs->backing && update_inherits_from) {
Alberto Garcia0065c452018-10-31 18:16:37 +02002910 backing_hd->inherits_from = bs;
2911 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08002912
Fam Zheng8d24cce2014-05-23 21:29:45 +08002913out:
Kevin Wolf3baca892014-07-16 17:48:16 +02002914 bdrv_refresh_limits(bs, NULL);
Fam Zheng8d24cce2014-05-23 21:29:45 +08002915}
2916
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002917/*
2918 * Opens the backing file for a BlockDriverState if not yet open
2919 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002920 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2921 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2922 * itself, all options starting with "${bdref_key}." are considered part of the
2923 * BlockdevRef.
2924 *
2925 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002926 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002927int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2928 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02002929{
Max Reitz6b6833c2019-02-01 20:29:15 +01002930 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002931 char *bdref_key_dot;
2932 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02002933 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01002934 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08002935 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002936 QDict *options;
2937 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002938 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002939
Kevin Wolf760e0062015-06-17 14:55:21 +02002940 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002941 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002942 }
2943
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002944 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002945 if (parent_options == NULL) {
2946 tmp_parent_options = qdict_new();
2947 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002948 }
2949
Paolo Bonzini9156df12012-10-18 16:49:17 +02002950 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002951
2952 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2953 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2954 g_free(bdref_key_dot);
2955
Markus Armbruster129c7d12017-03-30 19:43:12 +02002956 /*
2957 * Caution: while qdict_get_try_str() is fine, getting non-string
2958 * types would require more care. When @parent_options come from
2959 * -blockdev or blockdev_add, its members are typed according to
2960 * the QAPI schema, but when they come from -drive, they're all
2961 * QString.
2962 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002963 reference = qdict_get_try_str(parent_options, bdref_key);
2964 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01002965 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02002966 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002967 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002968 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08002969 } else {
Max Reitz998c2012019-02-01 20:29:08 +01002970 if (qdict_size(options) == 0) {
2971 /* If the user specifies options that do not modify the
2972 * backing file's behavior, we might still consider it the
2973 * implicit backing file. But it's easier this way, and
2974 * just specifying some of the backing BDS's options is
2975 * only possible with -drive anyway (otherwise the QAPI
2976 * schema forces the user to specify everything). */
2977 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
2978 }
2979
Max Reitz6b6833c2019-02-01 20:29:15 +01002980 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01002981 if (local_err) {
2982 ret = -EINVAL;
2983 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002984 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01002985 goto free_exit;
2986 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02002987 }
2988
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002989 if (!bs->drv || !bs->drv->supports_backing) {
2990 ret = -EINVAL;
2991 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002992 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002993 goto free_exit;
2994 }
2995
Peter Krempa6bff5972017-10-12 16:14:10 +02002996 if (!reference &&
2997 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002998 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02002999 }
3000
Max Reitz6b6833c2019-02-01 20:29:15 +01003001 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003002 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003003 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003004 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003005 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003006 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003007 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003008 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003009
Max Reitz998c2012019-02-01 20:29:08 +01003010 if (implicit_backing) {
3011 bdrv_refresh_filename(backing_hd);
3012 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3013 backing_hd->filename);
3014 }
3015
Kevin Wolf5db15a52015-09-14 15:33:33 +02003016 /* Hook up the backing file link; drop our reference, bs owns the
3017 * backing_hd reference now */
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003018 bdrv_set_backing_hd(bs, backing_hd, &local_err);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003019 bdrv_unref(backing_hd);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003020 if (local_err) {
Fam Zheng8cd1a3e2017-03-17 09:56:30 +08003021 error_propagate(errp, local_err);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003022 ret = -EINVAL;
3023 goto free_exit;
3024 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003025
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003026 qdict_del(parent_options, bdref_key);
3027
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003028free_exit:
3029 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003030 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003031 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003032}
3033
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003034static BlockDriverState *
3035bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003036 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003037 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003038{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003039 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003040 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003041 char *bdref_key_dot;
3042 const char *reference;
3043
Max Reitzbd86fb92020-05-13 13:05:13 +02003044 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003045
Max Reitzda557aa2013-12-20 19:28:11 +01003046 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3047 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3048 g_free(bdref_key_dot);
3049
Markus Armbruster129c7d12017-03-30 19:43:12 +02003050 /*
3051 * Caution: while qdict_get_try_str() is fine, getting non-string
3052 * types would require more care. When @options come from
3053 * -blockdev or blockdev_add, its members are typed according to
3054 * the QAPI schema, but when they come from -drive, they're all
3055 * QString.
3056 */
Max Reitzda557aa2013-12-20 19:28:11 +01003057 reference = qdict_get_try_str(options, bdref_key);
3058 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003059 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003060 error_setg(errp, "A block device must be specified for \"%s\"",
3061 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003062 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003063 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003064 goto done;
3065 }
3066
Max Reitz5b363932016-05-17 16:41:31 +02003067 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003068 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003069 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003070 goto done;
3071 }
3072
Max Reitzda557aa2013-12-20 19:28:11 +01003073done:
3074 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003075 return bs;
3076}
3077
3078/*
3079 * Opens a disk image whose options are given as BlockdevRef in another block
3080 * device's options.
3081 *
3082 * If allow_none is true, no image will be opened if filename is false and no
3083 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3084 *
3085 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3086 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3087 * itself, all options starting with "${bdref_key}." are considered part of the
3088 * BlockdevRef.
3089 *
3090 * The BlockdevRef will be removed from the options QDict.
3091 */
3092BdrvChild *bdrv_open_child(const char *filename,
3093 QDict *options, const char *bdref_key,
3094 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003095 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003096 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003097 bool allow_none, Error **errp)
3098{
3099 BlockDriverState *bs;
3100
Max Reitzbd86fb92020-05-13 13:05:13 +02003101 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003102 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003103 if (bs == NULL) {
3104 return NULL;
3105 }
3106
Max Reitz258b7762020-05-13 13:05:15 +02003107 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3108 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003109}
3110
Max Reitzbd86fb92020-05-13 13:05:13 +02003111/*
3112 * TODO Future callers may need to specify parent/child_class in order for
3113 * option inheritance to work. Existing callers use it for the root node.
3114 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003115BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3116{
3117 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003118 QObject *obj = NULL;
3119 QDict *qdict = NULL;
3120 const char *reference = NULL;
3121 Visitor *v = NULL;
3122
3123 if (ref->type == QTYPE_QSTRING) {
3124 reference = ref->u.reference;
3125 } else {
3126 BlockdevOptions *options = &ref->u.definition;
3127 assert(ref->type == QTYPE_QDICT);
3128
3129 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003130 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003131 visit_complete(v, &obj);
3132
Max Reitz7dc847e2018-02-24 16:40:29 +01003133 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003134 qdict_flatten(qdict);
3135
3136 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3137 * compatibility with other callers) rather than what we want as the
3138 * real defaults. Apply the defaults here instead. */
3139 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3140 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3141 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003142 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3143
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003144 }
3145
Max Reitz272c02e2020-05-13 13:05:17 +02003146 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003147 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003148 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003149 visit_free(v);
3150 return bs;
3151}
3152
Max Reitz66836182016-05-17 16:41:27 +02003153static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3154 int flags,
3155 QDict *snapshot_options,
3156 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003157{
3158 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003159 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003160 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003161 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003162 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003163 Error *local_err = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003164 int ret;
3165
3166 /* if snapshot, we create a temporary backing file and open it
3167 instead of opening 'filename' directly */
3168
3169 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003170 total_size = bdrv_getlength(bs);
3171 if (total_size < 0) {
3172 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003173 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003174 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003175
3176 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003177 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003178 if (ret < 0) {
3179 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003180 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003181 }
3182
Max Reitzef810432014-12-02 18:32:42 +01003183 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003184 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003185 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003186 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003187 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003188 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003189 error_prepend(errp, "Could not create temporary overlay '%s': ",
3190 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003191 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003192 }
3193
Kevin Wolf73176be2016-03-07 13:02:15 +01003194 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003195 qdict_put_str(snapshot_options, "file.driver", "file");
3196 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3197 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003198
Max Reitz5b363932016-05-17 16:41:31 +02003199 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003200 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003201 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003202 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003203 }
3204
Eric Blakeff6ed712017-04-27 16:58:18 -05003205 /* bdrv_append() consumes a strong reference to bs_snapshot
3206 * (i.e. it will call bdrv_unref() on it) even on error, so in
3207 * order to be able to return one, we have to increase
3208 * bs_snapshot's refcount here */
Max Reitz66836182016-05-17 16:41:27 +02003209 bdrv_ref(bs_snapshot);
Kevin Wolfb2c28322017-02-20 12:46:42 +01003210 bdrv_append(bs_snapshot, bs, &local_err);
3211 if (local_err) {
3212 error_propagate(errp, local_err);
Eric Blakeff6ed712017-04-27 16:58:18 -05003213 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003214 goto out;
3215 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003216
3217out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003218 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003219 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05003220 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003221}
3222
Max Reitzda557aa2013-12-20 19:28:11 +01003223/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003224 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003225 *
3226 * options is a QDict of options to pass to the block drivers, or NULL for an
3227 * empty set of options. The reference to the QDict belongs to the block layer
3228 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003229 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003230 *
3231 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3232 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003233 *
3234 * The reference parameter may be used to specify an existing block device which
3235 * should be opened. If specified, neither options nor a filename may be given,
3236 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003237 */
Max Reitz5b363932016-05-17 16:41:31 +02003238static BlockDriverState *bdrv_open_inherit(const char *filename,
3239 const char *reference,
3240 QDict *options, int flags,
3241 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003242 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003243 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003244 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003245{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003246 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003247 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003248 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003249 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003250 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003251 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003252 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003253 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003254 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003255 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003256
Max Reitzbd86fb92020-05-13 13:05:13 +02003257 assert(!child_class || !flags);
3258 assert(!child_class == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01003259
Max Reitzddf56362014-02-18 18:33:06 +01003260 if (reference) {
3261 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003262 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003263
Max Reitzddf56362014-02-18 18:33:06 +01003264 if (filename || options_non_empty) {
3265 error_setg(errp, "Cannot reference an existing block device with "
3266 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003267 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003268 }
3269
3270 bs = bdrv_lookup_bs(reference, reference, errp);
3271 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003272 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003273 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003274
Max Reitzddf56362014-02-18 18:33:06 +01003275 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003276 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003277 }
3278
Max Reitz5b363932016-05-17 16:41:31 +02003279 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003280
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003281 /* NULL means an empty set of options */
3282 if (options == NULL) {
3283 options = qdict_new();
3284 }
3285
Kevin Wolf145f5982015-05-08 16:15:03 +02003286 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003287 parse_json_protocol(options, &filename, &local_err);
3288 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003289 goto fail;
3290 }
3291
Kevin Wolf145f5982015-05-08 16:15:03 +02003292 bs->explicit_options = qdict_clone_shallow(options);
3293
Max Reitzbd86fb92020-05-13 13:05:13 +02003294 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003295 bool parent_is_format;
3296
3297 if (parent->drv) {
3298 parent_is_format = parent->drv->is_format;
3299 } else {
3300 /*
3301 * parent->drv is not set yet because this node is opened for
3302 * (potential) format probing. That means that @parent is going
3303 * to be a format node.
3304 */
3305 parent_is_format = true;
3306 }
3307
Kevin Wolfbddcec32015-04-09 18:47:50 +02003308 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003309 child_class->inherit_options(child_role, parent_is_format,
3310 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003311 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003312 }
3313
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003314 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003315 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003316 goto fail;
3317 }
3318
Markus Armbruster129c7d12017-03-30 19:43:12 +02003319 /*
3320 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3321 * Caution: getting a boolean member of @options requires care.
3322 * When @options come from -blockdev or blockdev_add, members are
3323 * typed according to the QAPI schema, but when they come from
3324 * -drive, they're all QString.
3325 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003326 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3327 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3328 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3329 } else {
3330 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003331 }
3332
3333 if (flags & BDRV_O_SNAPSHOT) {
3334 snapshot_options = qdict_new();
3335 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3336 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003337 /* Let bdrv_backing_options() override "read-only" */
3338 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003339 bdrv_inherited_options(BDRV_CHILD_COW, true,
3340 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003341 }
3342
Kevin Wolf62392eb2015-04-24 16:38:02 +02003343 bs->open_flags = flags;
3344 bs->options = options;
3345 options = qdict_clone_shallow(options);
3346
Kevin Wolf76c591b2014-06-04 14:19:44 +02003347 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003348 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003349 drvname = qdict_get_try_str(options, "driver");
3350 if (drvname) {
3351 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003352 if (!drv) {
3353 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003354 goto fail;
3355 }
3356 }
3357
3358 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003359
Markus Armbruster129c7d12017-03-30 19:43:12 +02003360 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003361 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003362 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3363 (backing && *backing == '\0'))
3364 {
Max Reitz4f7be282018-02-24 16:40:33 +01003365 if (backing) {
3366 warn_report("Use of \"backing\": \"\" is deprecated; "
3367 "use \"backing\": null instead");
3368 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003369 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003370 qdict_del(bs->explicit_options, "backing");
3371 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003372 qdict_del(options, "backing");
3373 }
3374
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003375 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003376 * probing, the block drivers will do their own bdrv_open_child() for the
3377 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003378 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003379 BlockDriverState *file_bs;
3380
3381 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003382 &child_of_bds, BDRV_CHILD_IMAGE,
3383 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003384 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003385 goto fail;
3386 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003387 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003388 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3389 * looking at the header to guess the image format. This works even
3390 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003391 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003392 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003393 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003394 if (local_err) {
3395 goto fail;
3396 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003397
Eric Blake46f5ac22017-04-27 16:58:17 -05003398 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003399 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003400 }
3401
Kevin Wolf76c591b2014-06-04 14:19:44 +02003402 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003403 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003404 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003405 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003406 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003407 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003408 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003409 /*
3410 * This option update would logically belong in bdrv_fill_options(),
3411 * but we first need to open bs->file for the probing to work, while
3412 * opening bs->file already requires the (mostly) final set of options
3413 * so that cache mode etc. can be inherited.
3414 *
3415 * Adding the driver later is somewhat ugly, but it's not an option
3416 * that would ever be inherited, so it's correct. We just need to make
3417 * sure to update both bs->options (which has the full effective
3418 * options for bs) and options (which has file.* already removed).
3419 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003420 qdict_put_str(bs->options, "driver", drv->format_name);
3421 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003422 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003423 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003424 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003425 }
3426
Max Reitz53a29512015-03-19 14:53:16 -04003427 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3428 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3429 /* file must be NULL if a protocol BDS is about to be created
3430 * (the inverse results in an error message from bdrv_open_common()) */
3431 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3432
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003433 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003434 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003435 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003436 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01003437 }
3438
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003439 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003440 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01003441 file = NULL;
3442 }
3443
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003444 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02003445 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003446 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003447 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003448 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003449 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003450 }
3451
Alberto Garcia50196d72018-09-06 12:37:03 +03003452 /* Remove all children options and references
3453 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03003454 QLIST_FOREACH(child, &bs->children, next) {
3455 char *child_key_dot;
3456 child_key_dot = g_strdup_printf("%s.", child->name);
3457 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3458 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03003459 qdict_del(bs->explicit_options, child->name);
3460 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03003461 g_free(child_key_dot);
3462 }
3463
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003464 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01003465 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003466 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01003467 if (flags & BDRV_O_PROTOCOL) {
3468 error_setg(errp, "Block protocol '%s' doesn't support the option "
3469 "'%s'", drv->format_name, entry->key);
3470 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01003471 error_setg(errp,
3472 "Block format '%s' does not support the option '%s'",
3473 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01003474 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003475
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003476 goto close_and_fail;
3477 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003478
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01003479 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003480
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003481 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03003482 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003483
3484 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3485 * temporary snapshot afterwards. */
3486 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02003487 BlockDriverState *snapshot_bs;
3488 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3489 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01003490 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003491 if (local_err) {
3492 goto close_and_fail;
3493 }
Max Reitz5b363932016-05-17 16:41:31 +02003494 /* We are not going to return bs but the overlay on top of it
3495 * (snapshot_bs); thus, we have to drop the strong reference to bs
3496 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3497 * though, because the overlay still has a reference to it. */
3498 bdrv_unref(bs);
3499 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02003500 }
3501
Max Reitz5b363932016-05-17 16:41:31 +02003502 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003503
Kevin Wolf8bfea152014-04-11 19:16:36 +02003504fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003505 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003506 qobject_unref(snapshot_options);
3507 qobject_unref(bs->explicit_options);
3508 qobject_unref(bs->options);
3509 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003510 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03003511 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003512 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003513 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003514 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003515
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003516close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02003517 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003518 qobject_unref(snapshot_options);
3519 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003520 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003521 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003522}
3523
Max Reitz5b363932016-05-17 16:41:31 +02003524BlockDriverState *bdrv_open(const char *filename, const char *reference,
3525 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02003526{
Max Reitz5b363932016-05-17 16:41:31 +02003527 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02003528 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003529}
3530
Alberto Garciafaf116b2019-03-12 18:48:49 +02003531/* Return true if the NULL-terminated @list contains @str */
3532static bool is_str_in_list(const char *str, const char *const *list)
3533{
3534 if (str && list) {
3535 int i;
3536 for (i = 0; list[i] != NULL; i++) {
3537 if (!strcmp(str, list[i])) {
3538 return true;
3539 }
3540 }
3541 }
3542 return false;
3543}
3544
3545/*
3546 * Check that every option set in @bs->options is also set in
3547 * @new_opts.
3548 *
3549 * Options listed in the common_options list and in
3550 * @bs->drv->mutable_opts are skipped.
3551 *
3552 * Return 0 on success, otherwise return -EINVAL and set @errp.
3553 */
3554static int bdrv_reset_options_allowed(BlockDriverState *bs,
3555 const QDict *new_opts, Error **errp)
3556{
3557 const QDictEntry *e;
3558 /* These options are common to all block drivers and are handled
3559 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3560 const char *const common_options[] = {
3561 "node-name", "discard", "cache.direct", "cache.no-flush",
3562 "read-only", "auto-read-only", "detect-zeroes", NULL
3563 };
3564
3565 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3566 if (!qdict_haskey(new_opts, e->key) &&
3567 !is_str_in_list(e->key, common_options) &&
3568 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3569 error_setg(errp, "Option '%s' cannot be reset "
3570 "to its default value", e->key);
3571 return -EINVAL;
3572 }
3573 }
3574
3575 return 0;
3576}
3577
Jeff Codye971aa12012-09-20 15:13:19 -04003578/*
Alberto Garciacb828c32019-03-12 18:48:47 +02003579 * Returns true if @child can be reached recursively from @bs
3580 */
3581static bool bdrv_recurse_has_child(BlockDriverState *bs,
3582 BlockDriverState *child)
3583{
3584 BdrvChild *c;
3585
3586 if (bs == child) {
3587 return true;
3588 }
3589
3590 QLIST_FOREACH(c, &bs->children, next) {
3591 if (bdrv_recurse_has_child(c->bs, child)) {
3592 return true;
3593 }
3594 }
3595
3596 return false;
3597}
3598
3599/*
Jeff Codye971aa12012-09-20 15:13:19 -04003600 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3601 * reopen of multiple devices.
3602 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003603 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04003604 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3605 * be created and initialized. This newly created BlockReopenQueue should be
3606 * passed back in for subsequent calls that are intended to be of the same
3607 * atomic 'set'.
3608 *
3609 * bs is the BlockDriverState to add to the reopen queue.
3610 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003611 * options contains the changed options for the associated bs
3612 * (the BlockReopenQueue takes ownership)
3613 *
Jeff Codye971aa12012-09-20 15:13:19 -04003614 * flags contains the open flags for the associated bs
3615 *
3616 * returns a pointer to bs_queue, which is either the newly allocated
3617 * bs_queue, or the existing bs_queue being used.
3618 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003619 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003620 */
Kevin Wolf28518102015-05-08 17:07:31 +02003621static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3622 BlockDriverState *bs,
3623 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003624 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02003625 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02003626 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02003627 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02003628 int parent_flags,
3629 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04003630{
3631 assert(bs != NULL);
3632
3633 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02003634 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003635 QDict *old_options, *explicit_options, *options_copy;
3636 int flags;
3637 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003638
Kevin Wolf1a63a902017-12-06 20:24:44 +01003639 /* Make sure that the caller remembered to use a drained section. This is
3640 * important to avoid graph changes between the recursive queuing here and
3641 * bdrv_reopen_multiple(). */
3642 assert(bs->quiesce_counter > 0);
3643
Jeff Codye971aa12012-09-20 15:13:19 -04003644 if (bs_queue == NULL) {
3645 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003646 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04003647 }
3648
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003649 if (!options) {
3650 options = qdict_new();
3651 }
3652
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003653 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003654 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003655 if (bs == bs_entry->state.bs) {
3656 break;
3657 }
3658 }
3659
Kevin Wolf28518102015-05-08 17:07:31 +02003660 /*
3661 * Precedence of options:
3662 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003663 * 2. Retained from explicitly set options of bs
3664 * 3. Inherited from parent node
3665 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02003666 */
3667
Kevin Wolf145f5982015-05-08 16:15:03 +02003668 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02003669 if (bs_entry || keep_old_opts) {
3670 old_options = qdict_clone_shallow(bs_entry ?
3671 bs_entry->state.explicit_options :
3672 bs->explicit_options);
3673 bdrv_join_options(bs, options, old_options);
3674 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003675 }
Kevin Wolf145f5982015-05-08 16:15:03 +02003676
3677 explicit_options = qdict_clone_shallow(options);
3678
Kevin Wolf28518102015-05-08 17:07:31 +02003679 /* Inherit from parent node */
3680 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003681 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003682 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02003683 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003684 } else {
3685 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02003686 }
3687
Alberto Garcia077e8e22019-03-12 18:48:44 +02003688 if (keep_old_opts) {
3689 /* Old values are used for options that aren't set yet */
3690 old_options = qdict_clone_shallow(bs->options);
3691 bdrv_join_options(bs, options, old_options);
3692 qobject_unref(old_options);
3693 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003694
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003695 /* We have the final set of options so let's update the flags */
3696 options_copy = qdict_clone_shallow(options);
3697 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3698 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3699 update_flags_from_options(&flags, opts);
3700 qemu_opts_del(opts);
3701 qobject_unref(options_copy);
3702
Kevin Wolffd452022017-08-03 17:02:59 +02003703 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02003704 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02003705 if (flags & BDRV_O_RDWR) {
3706 flags |= BDRV_O_ALLOW_RDWR;
3707 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02003708
Kevin Wolf1857c972017-09-14 14:53:46 +02003709 if (!bs_entry) {
3710 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003711 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02003712 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003713 qobject_unref(bs_entry->state.options);
3714 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02003715 }
3716
3717 bs_entry->state.bs = bs;
3718 bs_entry->state.options = options;
3719 bs_entry->state.explicit_options = explicit_options;
3720 bs_entry->state.flags = flags;
3721
Kevin Wolf30450252017-07-03 17:07:35 +02003722 /* This needs to be overwritten in bdrv_reopen_prepare() */
3723 bs_entry->state.perm = UINT64_MAX;
3724 bs_entry->state.shared_perm = 0;
3725
Alberto Garcia85466322019-03-12 18:48:45 +02003726 /*
3727 * If keep_old_opts is false then it means that unspecified
3728 * options must be reset to their original value. We don't allow
3729 * resetting 'backing' but we need to know if the option is
3730 * missing in order to decide if we have to return an error.
3731 */
3732 if (!keep_old_opts) {
3733 bs_entry->state.backing_missing =
3734 !qdict_haskey(options, "backing") &&
3735 !qdict_haskey(options, "backing.driver");
3736 }
3737
Kevin Wolf67251a32015-04-09 18:54:04 +02003738 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02003739 QDict *new_child_options = NULL;
3740 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003741
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003742 /* reopen can only change the options of block devices that were
3743 * implicitly created and inherited options. For other (referenced)
3744 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02003745 if (child->bs->inherits_from != bs) {
3746 continue;
3747 }
3748
Alberto Garcia85466322019-03-12 18:48:45 +02003749 /* Check if the options contain a child reference */
3750 if (qdict_haskey(options, child->name)) {
3751 const char *childref = qdict_get_try_str(options, child->name);
3752 /*
3753 * The current child must not be reopened if the child
3754 * reference is null or points to a different node.
3755 */
3756 if (g_strcmp0(childref, child->bs->node_name)) {
3757 continue;
3758 }
3759 /*
3760 * If the child reference points to the current child then
3761 * reopen it with its existing set of options (note that
3762 * it can still inherit new options from the parent).
3763 */
3764 child_keep_old = true;
3765 } else {
3766 /* Extract child options ("child-name.*") */
3767 char *child_key_dot = g_strdup_printf("%s.", child->name);
3768 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
3769 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
3770 g_free(child_key_dot);
3771 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003772
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003773 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02003774 child->klass, child->role, bs->drv->is_format,
3775 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04003776 }
3777
Jeff Codye971aa12012-09-20 15:13:19 -04003778 return bs_queue;
3779}
3780
Kevin Wolf28518102015-05-08 17:07:31 +02003781BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3782 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02003783 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02003784{
Max Reitz3cdc69d2020-05-13 13:05:18 +02003785 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
3786 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02003787}
3788
Jeff Codye971aa12012-09-20 15:13:19 -04003789/*
3790 * Reopen multiple BlockDriverStates atomically & transactionally.
3791 *
3792 * The queue passed in (bs_queue) must have been built up previous
3793 * via bdrv_reopen_queue().
3794 *
3795 * Reopens all BDS specified in the queue, with the appropriate
3796 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02003797 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04003798 * data cleaned up.
3799 *
3800 * If all devices prepare successfully, then the changes are committed
3801 * to all devices.
3802 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003803 * All affected nodes must be drained between bdrv_reopen_queue() and
3804 * bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003805 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02003806int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04003807{
3808 int ret = -1;
3809 BlockReopenQueueEntry *bs_entry, *next;
Jeff Codye971aa12012-09-20 15:13:19 -04003810
3811 assert(bs_queue != NULL);
3812
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003813 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01003814 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolfa4615ab2019-03-05 16:51:13 +01003815 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, errp)) {
Jeff Codye971aa12012-09-20 15:13:19 -04003816 goto cleanup;
3817 }
3818 bs_entry->prepared = true;
3819 }
3820
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003821 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01003822 BDRVReopenState *state = &bs_entry->state;
3823 ret = bdrv_check_perm(state->bs, bs_queue, state->perm,
Max Reitz9eab1542019-05-22 19:03:50 +02003824 state->shared_perm, NULL, NULL, errp);
Kevin Wolf69b736e2019-03-05 17:18:22 +01003825 if (ret < 0) {
3826 goto cleanup_perm;
3827 }
Alberto Garciacb828c32019-03-12 18:48:47 +02003828 /* Check if new_backing_bs would accept the new permissions */
3829 if (state->replace_backing_bs && state->new_backing_bs) {
3830 uint64_t nperm, nshared;
3831 bdrv_child_perm(state->bs, state->new_backing_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02003832 NULL, bdrv_backing_role(state->bs),
Max Reitz25191e52020-05-13 13:05:33 +02003833 bs_queue, state->perm, state->shared_perm,
Alberto Garciacb828c32019-03-12 18:48:47 +02003834 &nperm, &nshared);
3835 ret = bdrv_check_update_perm(state->new_backing_bs, NULL,
Max Reitz9eab1542019-05-22 19:03:50 +02003836 nperm, nshared, NULL, NULL, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02003837 if (ret < 0) {
3838 goto cleanup_perm;
3839 }
3840 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01003841 bs_entry->perms_checked = true;
3842 }
3843
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03003844 /*
3845 * If we reach this point, we have success and just need to apply the
3846 * changes.
3847 *
3848 * Reverse order is used to comfort qcow2 driver: on commit it need to write
3849 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
3850 * children are usually goes after parents in reopen-queue, so go from last
3851 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04003852 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03003853 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Jeff Codye971aa12012-09-20 15:13:19 -04003854 bdrv_reopen_commit(&bs_entry->state);
3855 }
3856
3857 ret = 0;
Kevin Wolf69b736e2019-03-05 17:18:22 +01003858cleanup_perm:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003859 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01003860 BDRVReopenState *state = &bs_entry->state;
Jeff Codye971aa12012-09-20 15:13:19 -04003861
Kevin Wolf69b736e2019-03-05 17:18:22 +01003862 if (!bs_entry->perms_checked) {
3863 continue;
3864 }
3865
3866 if (ret == 0) {
3867 bdrv_set_perm(state->bs, state->perm, state->shared_perm);
3868 } else {
3869 bdrv_abort_perm_update(state->bs);
Alberto Garciacb828c32019-03-12 18:48:47 +02003870 if (state->replace_backing_bs && state->new_backing_bs) {
3871 bdrv_abort_perm_update(state->new_backing_bs);
3872 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01003873 }
3874 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01003875
3876 if (ret == 0) {
3877 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
3878 BlockDriverState *bs = bs_entry->state.bs;
3879
3880 if (bs->drv->bdrv_reopen_commit_post)
3881 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
3882 }
3883 }
Jeff Codye971aa12012-09-20 15:13:19 -04003884cleanup:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003885 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Alberto Garcia1bab38e2018-06-29 14:37:01 +03003886 if (ret) {
3887 if (bs_entry->prepared) {
3888 bdrv_reopen_abort(&bs_entry->state);
3889 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003890 qobject_unref(bs_entry->state.explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003891 qobject_unref(bs_entry->state.options);
Jeff Codye971aa12012-09-20 15:13:19 -04003892 }
Alberto Garciacb828c32019-03-12 18:48:47 +02003893 if (bs_entry->state.new_backing_bs) {
3894 bdrv_unref(bs_entry->state.new_backing_bs);
3895 }
Jeff Codye971aa12012-09-20 15:13:19 -04003896 g_free(bs_entry);
3897 }
3898 g_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03003899
Jeff Codye971aa12012-09-20 15:13:19 -04003900 return ret;
3901}
3902
Alberto Garcia6e1000a2018-11-12 16:00:33 +02003903int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
3904 Error **errp)
3905{
3906 int ret;
3907 BlockReopenQueue *queue;
3908 QDict *opts = qdict_new();
3909
3910 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
3911
3912 bdrv_subtree_drained_begin(bs);
Alberto Garcia077e8e22019-03-12 18:48:44 +02003913 queue = bdrv_reopen_queue(NULL, bs, opts, true);
Alberto Garcia5019aec2019-03-12 18:48:50 +02003914 ret = bdrv_reopen_multiple(queue, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02003915 bdrv_subtree_drained_end(bs);
3916
3917 return ret;
3918}
3919
Kevin Wolf30450252017-07-03 17:07:35 +02003920static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3921 BdrvChild *c)
3922{
3923 BlockReopenQueueEntry *entry;
3924
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003925 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf30450252017-07-03 17:07:35 +02003926 BlockDriverState *bs = entry->state.bs;
3927 BdrvChild *child;
3928
3929 QLIST_FOREACH(child, &bs->children, next) {
3930 if (child == c) {
3931 return entry;
3932 }
3933 }
3934 }
3935
3936 return NULL;
3937}
3938
3939static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3940 uint64_t *perm, uint64_t *shared)
3941{
3942 BdrvChild *c;
3943 BlockReopenQueueEntry *parent;
3944 uint64_t cumulative_perms = 0;
3945 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3946
3947 QLIST_FOREACH(c, &bs->parents, next_parent) {
3948 parent = find_parent_in_reopen_queue(q, c);
3949 if (!parent) {
3950 cumulative_perms |= c->perm;
3951 cumulative_shared_perms &= c->shared_perm;
3952 } else {
3953 uint64_t nperm, nshared;
3954
Max Reitze5d8a402020-05-13 13:05:44 +02003955 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
Kevin Wolf30450252017-07-03 17:07:35 +02003956 parent->state.perm, parent->state.shared_perm,
3957 &nperm, &nshared);
3958
3959 cumulative_perms |= nperm;
3960 cumulative_shared_perms &= nshared;
3961 }
3962 }
3963 *perm = cumulative_perms;
3964 *shared = cumulative_shared_perms;
3965}
Jeff Codye971aa12012-09-20 15:13:19 -04003966
Kevin Wolf1de6b452020-03-06 15:14:13 +01003967static bool bdrv_reopen_can_attach(BlockDriverState *parent,
3968 BdrvChild *child,
3969 BlockDriverState *new_child,
3970 Error **errp)
3971{
3972 AioContext *parent_ctx = bdrv_get_aio_context(parent);
3973 AioContext *child_ctx = bdrv_get_aio_context(new_child);
3974 GSList *ignore;
3975 bool ret;
3976
3977 ignore = g_slist_prepend(NULL, child);
3978 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
3979 g_slist_free(ignore);
3980 if (ret) {
3981 return ret;
3982 }
3983
3984 ignore = g_slist_prepend(NULL, child);
3985 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
3986 g_slist_free(ignore);
3987 return ret;
3988}
3989
Jeff Codye971aa12012-09-20 15:13:19 -04003990/*
Alberto Garciacb828c32019-03-12 18:48:47 +02003991 * Take a BDRVReopenState and check if the value of 'backing' in the
3992 * reopen_state->options QDict is valid or not.
3993 *
3994 * If 'backing' is missing from the QDict then return 0.
3995 *
3996 * If 'backing' contains the node name of the backing file of
3997 * reopen_state->bs then return 0.
3998 *
3999 * If 'backing' contains a different node name (or is null) then check
4000 * whether the current backing file can be replaced with the new one.
4001 * If that's the case then reopen_state->replace_backing_bs is set to
4002 * true and reopen_state->new_backing_bs contains a pointer to the new
4003 * backing BlockDriverState (or NULL).
4004 *
4005 * Return 0 on success, otherwise return < 0 and set @errp.
4006 */
4007static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
4008 Error **errp)
4009{
4010 BlockDriverState *bs = reopen_state->bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004011 BlockDriverState *overlay_bs, *below_bs, *new_backing_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004012 QObject *value;
4013 const char *str;
4014
4015 value = qdict_get(reopen_state->options, "backing");
4016 if (value == NULL) {
4017 return 0;
4018 }
4019
4020 switch (qobject_type(value)) {
4021 case QTYPE_QNULL:
4022 new_backing_bs = NULL;
4023 break;
4024 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004025 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciacb828c32019-03-12 18:48:47 +02004026 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
4027 if (new_backing_bs == NULL) {
4028 return -EINVAL;
4029 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
4030 error_setg(errp, "Making '%s' a backing file of '%s' "
4031 "would create a cycle", str, bs->node_name);
4032 return -EINVAL;
4033 }
4034 break;
4035 default:
4036 /* 'backing' does not allow any other data type */
4037 g_assert_not_reached();
4038 }
4039
4040 /*
Kevin Wolf1de6b452020-03-06 15:14:13 +01004041 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4042 * bdrv_reopen_commit() won't fail.
Alberto Garciacb828c32019-03-12 18:48:47 +02004043 */
4044 if (new_backing_bs) {
Kevin Wolf1de6b452020-03-06 15:14:13 +01004045 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004046 return -EINVAL;
4047 }
4048 }
4049
4050 /*
Max Reitz1d42f482019-06-12 17:24:39 +02004051 * Ensure that @bs can really handle backing files, because we are
4052 * about to give it one (or swap the existing one)
4053 */
4054 if (bs->drv->is_filter) {
4055 /* Filters always have a file or a backing child */
4056 if (!bs->backing) {
4057 error_setg(errp, "'%s' is a %s filter node that does not support a "
4058 "backing child", bs->node_name, bs->drv->format_name);
4059 return -EINVAL;
4060 }
4061 } else if (!bs->drv->supports_backing) {
4062 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
4063 "files", bs->drv->format_name, bs->node_name);
4064 return -EINVAL;
4065 }
4066
4067 /*
Alberto Garciacb828c32019-03-12 18:48:47 +02004068 * Find the "actual" backing file by skipping all links that point
4069 * to an implicit node, if any (e.g. a commit filter node).
Max Reitz1d42f482019-06-12 17:24:39 +02004070 * We cannot use any of the bdrv_skip_*() functions here because
4071 * those return the first explicit node, while we are looking for
4072 * its overlay here.
Alberto Garciacb828c32019-03-12 18:48:47 +02004073 */
4074 overlay_bs = bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004075 for (below_bs = bdrv_filter_or_cow_bs(overlay_bs);
4076 below_bs && below_bs->implicit;
4077 below_bs = bdrv_filter_or_cow_bs(overlay_bs))
4078 {
4079 overlay_bs = below_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004080 }
4081
4082 /* If we want to replace the backing file we need some extra checks */
Max Reitz1d42f482019-06-12 17:24:39 +02004083 if (new_backing_bs != bdrv_filter_or_cow_bs(overlay_bs)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004084 /* Check for implicit nodes between bs and its backing file */
4085 if (bs != overlay_bs) {
4086 error_setg(errp, "Cannot change backing link if '%s' has "
4087 "an implicit backing file", bs->node_name);
4088 return -EPERM;
4089 }
Max Reitz1d42f482019-06-12 17:24:39 +02004090 /*
4091 * Check if the backing link that we want to replace is frozen.
4092 * Note that
4093 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4094 * because we know that overlay_bs == bs, and that @bs
4095 * either is a filter that uses ->backing or a COW format BDS
4096 * with bs->drv->supports_backing == true.
4097 */
4098 if (bdrv_is_backing_chain_frozen(overlay_bs,
4099 child_bs(overlay_bs->backing), errp))
4100 {
Alberto Garciacb828c32019-03-12 18:48:47 +02004101 return -EPERM;
4102 }
4103 reopen_state->replace_backing_bs = true;
4104 if (new_backing_bs) {
4105 bdrv_ref(new_backing_bs);
4106 reopen_state->new_backing_bs = new_backing_bs;
4107 }
4108 }
4109
4110 return 0;
4111}
4112
4113/*
Jeff Codye971aa12012-09-20 15:13:19 -04004114 * Prepares a BlockDriverState for reopen. All changes are staged in the
4115 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4116 * the block driver layer .bdrv_reopen_prepare()
4117 *
4118 * bs is the BlockDriverState to reopen
4119 * flags are the new open flags
4120 * queue is the reopen queue
4121 *
4122 * Returns 0 on success, non-zero on error. On error errp will be set
4123 * as well.
4124 *
4125 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4126 * It is the responsibility of the caller to then call the abort() or
4127 * commit() for any other BDS that have been left in a prepare() state
4128 *
4129 */
4130int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
4131 Error **errp)
4132{
4133 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004134 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004135 Error *local_err = NULL;
4136 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004137 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004138 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004139 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004140 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004141 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004142
4143 assert(reopen_state != NULL);
4144 assert(reopen_state->bs->drv != NULL);
4145 drv = reopen_state->bs->drv;
4146
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004147 /* This function and each driver's bdrv_reopen_prepare() remove
4148 * entries from reopen_state->options as they are processed, so
4149 * we need to make a copy of the original QDict. */
4150 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4151
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004152 /* Process generic block layer options */
4153 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004154 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004155 ret = -EINVAL;
4156 goto error;
4157 }
4158
Alberto Garciae6d79c42018-11-12 16:00:47 +02004159 /* This was already called in bdrv_reopen_queue_child() so the flags
4160 * are up-to-date. This time we simply want to remove the options from
4161 * QemuOpts in order to indicate that they have been processed. */
4162 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004163 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004164 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004165
Alberto Garcia415bbca2018-10-03 13:23:13 +03004166 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004167 if (discard != NULL) {
4168 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4169 error_setg(errp, "Invalid discard option");
4170 ret = -EINVAL;
4171 goto error;
4172 }
4173 }
4174
Alberto Garcia543770b2018-09-06 12:37:09 +03004175 reopen_state->detect_zeroes =
4176 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4177 if (local_err) {
4178 error_propagate(errp, local_err);
4179 ret = -EINVAL;
4180 goto error;
4181 }
4182
Alberto Garcia57f9db92018-09-06 12:37:06 +03004183 /* All other options (including node-name and driver) must be unchanged.
4184 * Put them back into the QDict, so that they are checked at the end
4185 * of this function. */
4186 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004187
Jeff Cody3d8ce172017-04-07 16:55:30 -04004188 /* If we are to stay read-only, do not allow permission change
4189 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4190 * not set, or if the BDS still has copy_on_read enabled */
4191 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004192 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004193 if (local_err) {
4194 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004195 goto error;
4196 }
4197
Kevin Wolf30450252017-07-03 17:07:35 +02004198 /* Calculate required permissions after reopening */
4199 bdrv_reopen_perm(queue, reopen_state->bs,
4200 &reopen_state->perm, &reopen_state->shared_perm);
Jeff Codye971aa12012-09-20 15:13:19 -04004201
4202 ret = bdrv_flush(reopen_state->bs);
4203 if (ret) {
Eric Blake455b0fd2015-11-10 23:51:20 -07004204 error_setg_errno(errp, -ret, "Error flushing drive");
Jeff Codye971aa12012-09-20 15:13:19 -04004205 goto error;
4206 }
4207
4208 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004209 /*
4210 * If a driver-specific option is missing, it means that we
4211 * should reset it to its default value.
4212 * But not all options allow that, so we need to check it first.
4213 */
4214 ret = bdrv_reset_options_allowed(reopen_state->bs,
4215 reopen_state->options, errp);
4216 if (ret) {
4217 goto error;
4218 }
4219
Jeff Codye971aa12012-09-20 15:13:19 -04004220 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4221 if (ret) {
4222 if (local_err != NULL) {
4223 error_propagate(errp, local_err);
4224 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004225 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004226 error_setg(errp, "failed while preparing to reopen image '%s'",
4227 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004228 }
4229 goto error;
4230 }
4231 } else {
4232 /* It is currently mandatory to have a bdrv_reopen_prepare()
4233 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004234 error_setg(errp, "Block format '%s' used by node '%s' "
4235 "does not support reopening files", drv->format_name,
4236 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004237 ret = -1;
4238 goto error;
4239 }
4240
Max Reitz9ad08c42018-11-16 17:45:24 +01004241 drv_prepared = true;
4242
Alberto Garciabacd9b82019-03-12 18:48:46 +02004243 /*
4244 * We must provide the 'backing' option if the BDS has a backing
4245 * file or if the image file has a backing file name as part of
4246 * its metadata. Otherwise the 'backing' option can be omitted.
4247 */
4248 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004249 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004250 error_setg(errp, "backing is missing for '%s'",
4251 reopen_state->bs->node_name);
4252 ret = -EINVAL;
4253 goto error;
4254 }
4255
Alberto Garciacb828c32019-03-12 18:48:47 +02004256 /*
4257 * Allow changing the 'backing' option. The new value can be
4258 * either a reference to an existing node (using its node name)
4259 * or NULL to simply detach the current backing file.
4260 */
4261 ret = bdrv_reopen_parse_backing(reopen_state, errp);
4262 if (ret < 0) {
4263 goto error;
4264 }
4265 qdict_del(reopen_state->options, "backing");
4266
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004267 /* Options that are not handled are only okay if they are unchanged
4268 * compared to the old state. It is expected that some options are only
4269 * used for the initial open, but not reopen (e.g. filename) */
4270 if (qdict_size(reopen_state->options)) {
4271 const QDictEntry *entry = qdict_first(reopen_state->options);
4272
4273 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004274 QObject *new = entry->value;
4275 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004276
Alberto Garciadb905282018-09-06 12:37:05 +03004277 /* Allow child references (child_name=node_name) as long as they
4278 * point to the current child (i.e. everything stays the same). */
4279 if (qobject_type(new) == QTYPE_QSTRING) {
4280 BdrvChild *child;
4281 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4282 if (!strcmp(child->name, entry->key)) {
4283 break;
4284 }
4285 }
4286
4287 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004288 if (!strcmp(child->bs->node_name,
4289 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004290 continue; /* Found child with this name, skip option */
4291 }
4292 }
4293 }
4294
Max Reitz54fd1b02017-11-14 19:01:26 +01004295 /*
4296 * TODO: When using -drive to specify blockdev options, all values
4297 * will be strings; however, when using -blockdev, blockdev-add or
4298 * filenames using the json:{} pseudo-protocol, they will be
4299 * correctly typed.
4300 * In contrast, reopening options are (currently) always strings
4301 * (because you can only specify them through qemu-io; all other
4302 * callers do not specify any options).
4303 * Therefore, when using anything other than -drive to create a BDS,
4304 * this cannot detect non-string options as unchanged, because
4305 * qobject_is_equal() always returns false for objects of different
4306 * type. In the future, this should be remedied by correctly typing
4307 * all options. For now, this is not too big of an issue because
4308 * the user can simply omit options which cannot be changed anyway,
4309 * so they will stay unchanged.
4310 */
4311 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004312 error_setg(errp, "Cannot change the option '%s'", entry->key);
4313 ret = -EINVAL;
4314 goto error;
4315 }
4316 } while ((entry = qdict_next(reopen_state->options, entry)));
4317 }
4318
Jeff Codye971aa12012-09-20 15:13:19 -04004319 ret = 0;
4320
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004321 /* Restore the original reopen_state->options QDict */
4322 qobject_unref(reopen_state->options);
4323 reopen_state->options = qobject_ref(orig_reopen_opts);
4324
Jeff Codye971aa12012-09-20 15:13:19 -04004325error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004326 if (ret < 0 && drv_prepared) {
4327 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4328 * call drv->bdrv_reopen_abort() before signaling an error
4329 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4330 * when the respective bdrv_reopen_prepare() has failed) */
4331 if (drv->bdrv_reopen_abort) {
4332 drv->bdrv_reopen_abort(reopen_state);
4333 }
4334 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004335 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004336 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004337 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004338 return ret;
4339}
4340
4341/*
4342 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4343 * makes them final by swapping the staging BlockDriverState contents into
4344 * the active BlockDriverState contents.
4345 */
4346void bdrv_reopen_commit(BDRVReopenState *reopen_state)
4347{
4348 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004349 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004350 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004351
4352 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004353 bs = reopen_state->bs;
4354 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004355 assert(drv != NULL);
4356
4357 /* If there are any driver level actions to take */
4358 if (drv->bdrv_reopen_commit) {
4359 drv->bdrv_reopen_commit(reopen_state);
4360 }
4361
4362 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004363 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004364 qobject_unref(bs->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004365
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004366 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004367 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004368 bs->open_flags = reopen_state->flags;
4369 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
Alberto Garcia543770b2018-09-06 12:37:09 +03004370 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004371
Alberto Garciacb828c32019-03-12 18:48:47 +02004372 if (reopen_state->replace_backing_bs) {
4373 qdict_del(bs->explicit_options, "backing");
4374 qdict_del(bs->options, "backing");
4375 }
4376
Alberto Garcia50196d72018-09-06 12:37:03 +03004377 /* Remove child references from bs->options and bs->explicit_options.
4378 * Child options were already removed in bdrv_reopen_queue_child() */
4379 QLIST_FOREACH(child, &bs->children, next) {
4380 qdict_del(bs->explicit_options, child->name);
4381 qdict_del(bs->options, child->name);
4382 }
4383
Alberto Garciacb828c32019-03-12 18:48:47 +02004384 /*
4385 * Change the backing file if a new one was specified. We do this
4386 * after updating bs->options, so bdrv_refresh_filename() (called
4387 * from bdrv_set_backing_hd()) has the new values.
4388 */
4389 if (reopen_state->replace_backing_bs) {
Max Reitz1d42f482019-06-12 17:24:39 +02004390 BlockDriverState *old_backing_bs = child_bs(bs->backing);
Alberto Garciacb828c32019-03-12 18:48:47 +02004391 assert(!old_backing_bs || !old_backing_bs->implicit);
4392 /* Abort the permission update on the backing bs we're detaching */
4393 if (old_backing_bs) {
4394 bdrv_abort_perm_update(old_backing_bs);
4395 }
4396 bdrv_set_backing_hd(bs, reopen_state->new_backing_bs, &error_abort);
4397 }
4398
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004399 bdrv_refresh_limits(bs, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004400}
4401
4402/*
4403 * Abort the reopen, and delete and free the staged changes in
4404 * reopen_state
4405 */
4406void bdrv_reopen_abort(BDRVReopenState *reopen_state)
4407{
4408 BlockDriver *drv;
4409
4410 assert(reopen_state != NULL);
4411 drv = reopen_state->bs->drv;
4412 assert(drv != NULL);
4413
4414 if (drv->bdrv_reopen_abort) {
4415 drv->bdrv_reopen_abort(reopen_state);
4416 }
4417}
4418
4419
Max Reitz64dff522016-01-29 16:36:10 +01004420static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004421{
Max Reitz33384422014-06-20 21:57:33 +02004422 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004423 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004424
Max Reitz30f55fb2016-05-17 16:41:32 +02004425 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004426
Paolo Bonzinifc272912015-12-23 11:48:24 +01004427 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004428 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004429 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004430
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004431 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004432 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004433 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004434 bs->drv->bdrv_close(bs);
4435 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004436 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004437 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004438
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004439 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004440 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004441 }
4442
Alberto Garciadd4118c2019-05-13 16:46:17 +03004443 bs->backing = NULL;
4444 bs->file = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004445 g_free(bs->opaque);
4446 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004447 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004448 bs->backing_file[0] = '\0';
4449 bs->backing_format[0] = '\0';
4450 bs->total_sectors = 0;
4451 bs->encrypted = false;
4452 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004453 qobject_unref(bs->options);
4454 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004455 bs->options = NULL;
4456 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004457 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004458 bs->full_open_options = NULL;
4459
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004460 bdrv_release_named_dirty_bitmaps(bs);
4461 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4462
Max Reitz33384422014-06-20 21:57:33 +02004463 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4464 g_free(ban);
4465 }
4466 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004467 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004468
4469 /*
4470 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4471 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4472 * gets called.
4473 */
4474 if (bs->quiesce_counter) {
4475 bdrv_drain_all_end_quiesce(bs);
4476 }
bellardb3380822004-03-14 21:38:54 +00004477}
4478
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004479void bdrv_close_all(void)
4480{
Kevin Wolfb3b52992018-05-16 13:46:37 +02004481 assert(job_next(NULL) == NULL);
Kevin Wolfbc4ee652020-09-24 17:27:03 +02004482 blk_exp_close_all();
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004483
Max Reitzca9bd242016-01-29 16:36:14 +01004484 /* Drop references from requests still in flight, such as canceled block
4485 * jobs whose AIO context has not been polled yet */
4486 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004487
Max Reitzca9bd242016-01-29 16:36:14 +01004488 blk_remove_all_bs();
4489 blockdev_close_all_bdrv_states();
4490
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004491 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004492}
4493
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004494static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004495{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004496 GQueue *queue;
4497 GHashTable *found;
4498 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004499
Max Reitzbd86fb92020-05-13 13:05:13 +02004500 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004501 return false;
4502 }
4503
Max Reitzec9f10f2018-06-13 20:18:15 +02004504 /* If the child @c belongs to the BDS @to, replacing the current
4505 * c->bs by @to would mean to create a loop.
4506 *
4507 * Such a case occurs when appending a BDS to a backing chain.
4508 * For instance, imagine the following chain:
4509 *
4510 * guest device -> node A -> further backing chain...
4511 *
4512 * Now we create a new BDS B which we want to put on top of this
4513 * chain, so we first attach A as its backing node:
4514 *
4515 * node B
4516 * |
4517 * v
4518 * guest device -> node A -> further backing chain...
4519 *
4520 * Finally we want to replace A by B. When doing that, we want to
4521 * replace all pointers to A by pointers to B -- except for the
4522 * pointer from B because (1) that would create a loop, and (2)
4523 * that pointer should simply stay intact:
4524 *
4525 * guest device -> node B
4526 * |
4527 * v
4528 * node A -> further backing chain...
4529 *
4530 * In general, when replacing a node A (c->bs) by a node B (@to),
4531 * if A is a child of B, that means we cannot replace A by B there
4532 * because that would create a loop. Silently detaching A from B
4533 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004534 * place there is the most sensible choice.
4535 *
4536 * We would also create a loop in any cases where @c is only
4537 * indirectly referenced by @to. Prevent this by returning false
4538 * if @c is found (by breadth-first search) anywhere in the whole
4539 * subtree of @to.
4540 */
4541
4542 ret = true;
4543 found = g_hash_table_new(NULL, NULL);
4544 g_hash_table_add(found, to);
4545 queue = g_queue_new();
4546 g_queue_push_tail(queue, to);
4547
4548 while (!g_queue_is_empty(queue)) {
4549 BlockDriverState *v = g_queue_pop_head(queue);
4550 BdrvChild *c2;
4551
4552 QLIST_FOREACH(c2, &v->children, next) {
4553 if (c2 == c) {
4554 ret = false;
4555 break;
4556 }
4557
4558 if (g_hash_table_contains(found, c2->bs)) {
4559 continue;
4560 }
4561
4562 g_queue_push_tail(queue, c2->bs);
4563 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004564 }
4565 }
4566
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004567 g_queue_free(queue);
4568 g_hash_table_destroy(found);
4569
4570 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004571}
4572
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004573/*
4574 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4575 * if it creates a parent-child relation loop or if parent is block-job.
4576 *
4577 * With auto_skip=false the error is returned if from has a parent which should
4578 * not be updated.
4579 */
4580static void bdrv_replace_node_common(BlockDriverState *from,
4581 BlockDriverState *to,
4582 bool auto_skip, Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004583{
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004584 BdrvChild *c, *next;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004585 GSList *list = NULL, *p;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004586 uint64_t perm = 0, shared = BLK_PERM_ALL;
4587 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004588
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004589 /* Make sure that @from doesn't go away until we have successfully attached
4590 * all of its parents to @to. */
4591 bdrv_ref(from);
4592
Kevin Wolff871abd2019-05-21 19:00:25 +02004593 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01004594 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02004595 bdrv_drained_begin(from);
4596
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004597 /* Put all parents into @list and calculate their cumulative permissions */
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004598 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
Max Reitzec9f10f2018-06-13 20:18:15 +02004599 assert(c->bs == from);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004600 if (!should_update_child(c, to)) {
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004601 if (auto_skip) {
4602 continue;
4603 }
4604 error_setg(errp, "Should not change '%s' link to '%s'",
4605 c->name, from->node_name);
4606 goto out;
Kevin Wolf26de9432017-01-17 13:39:34 +01004607 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004608 if (c->frozen) {
4609 error_setg(errp, "Cannot change '%s' link to '%s'",
4610 c->name, from->node_name);
4611 goto out;
4612 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004613 list = g_slist_prepend(list, c);
4614 perm |= c->perm;
4615 shared &= c->shared_perm;
4616 }
4617
4618 /* Check whether the required permissions can be granted on @to, ignoring
4619 * all BdrvChild in @list so that they can't block themselves. */
Max Reitz9eab1542019-05-22 19:03:50 +02004620 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, NULL, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004621 if (ret < 0) {
4622 bdrv_abort_perm_update(to);
4623 goto out;
4624 }
4625
4626 /* Now actually perform the change. We performed the permission check for
4627 * all elements of @list at once, so set the permissions all at once at the
4628 * very end. */
4629 for (p = list; p != NULL; p = p->next) {
4630 c = p->data;
Max Reitz9bd910e2016-06-10 20:57:46 +02004631
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004632 bdrv_ref(to);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004633 bdrv_replace_child_noperm(c, to);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004634 bdrv_unref(from);
4635 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004636
Vladimir Sementsov-Ogievskiyb503de62019-08-24 13:07:40 +03004637 bdrv_get_cumulative_perm(to, &perm, &shared);
4638 bdrv_set_perm(to, perm, shared);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004639
4640out:
4641 g_slist_free(list);
Kevin Wolff871abd2019-05-21 19:00:25 +02004642 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004643 bdrv_unref(from);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004644}
4645
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004646void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
4647 Error **errp)
4648{
4649 return bdrv_replace_node_common(from, to, true, errp);
4650}
4651
Jeff Cody8802d1f2012-02-28 15:54:06 -05004652/*
4653 * Add new bs contents at the top of an image chain while the chain is
4654 * live, while keeping required fields on the top layer.
4655 *
4656 * This will modify the BlockDriverState fields, and swap contents
4657 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4658 *
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02004659 * bs_new must not be attached to a BlockBackend.
Jeff Codyf6801b82012-03-27 16:30:19 -04004660 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05004661 * This function does not create any image files.
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004662 *
4663 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
4664 * that's what the callers commonly need. bs_new will be referenced by the old
4665 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
4666 * reference of its own, it must call bdrv_ref().
Jeff Cody8802d1f2012-02-28 15:54:06 -05004667 */
Kevin Wolfb2c28322017-02-20 12:46:42 +01004668void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
4669 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05004670{
Kevin Wolfb2c28322017-02-20 12:46:42 +01004671 Error *local_err = NULL;
4672
Kevin Wolfb2c28322017-02-20 12:46:42 +01004673 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
4674 if (local_err) {
4675 error_propagate(errp, local_err);
4676 goto out;
4677 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004678
Kevin Wolf5fe31c22017-03-06 16:20:51 +01004679 bdrv_replace_node(bs_top, bs_new, &local_err);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004680 if (local_err) {
4681 error_propagate(errp, local_err);
4682 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
4683 goto out;
4684 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004685
4686 /* bs_new is now referenced by its new parents, we don't need the
4687 * additional reference any more. */
Kevin Wolfb2c28322017-02-20 12:46:42 +01004688out:
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004689 bdrv_unref(bs_new);
Jeff Cody8802d1f2012-02-28 15:54:06 -05004690}
4691
Fam Zheng4f6fd342013-08-23 09:14:47 +08004692static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00004693{
Fam Zheng3718d8a2014-05-23 21:29:43 +08004694 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08004695 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02004696
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01004697 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01004698 if (bs->node_name[0] != '\0') {
4699 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
4700 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01004701 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
4702
Anton Kuchin30c321f2019-05-07 11:12:56 +03004703 bdrv_close(bs);
4704
Anthony Liguori7267c092011-08-20 22:09:37 -05004705 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00004706}
4707
aliguorie97fc192009-04-21 23:11:50 +00004708/*
4709 * Run consistency checks on an image
4710 *
Kevin Wolfe076f332010-06-29 11:43:13 +02004711 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02004712 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02004713 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00004714 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03004715int coroutine_fn bdrv_co_check(BlockDriverState *bs,
4716 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00004717{
Max Reitz908bcd52014-08-07 22:47:55 +02004718 if (bs->drv == NULL) {
4719 return -ENOMEDIUM;
4720 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01004721 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00004722 return -ENOTSUP;
4723 }
4724
Kevin Wolfe076f332010-06-29 11:43:13 +02004725 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01004726 return bs->drv->bdrv_co_check(bs, res, fix);
4727}
4728
Kevin Wolf756e6732010-01-12 12:55:17 +01004729/*
4730 * Return values:
4731 * 0 - success
4732 * -EINVAL - backing format specified, but no file
4733 * -ENOSPC - can't update the backing file because no space is left in the
4734 * image file header
4735 * -ENOTSUP - format driver doesn't support changing the backing file
4736 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05004737int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
4738 const char *backing_fmt, bool warn)
Kevin Wolf756e6732010-01-12 12:55:17 +01004739{
4740 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02004741 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01004742
Max Reitzd470ad42017-11-10 21:31:09 +01004743 if (!drv) {
4744 return -ENOMEDIUM;
4745 }
4746
Paolo Bonzini5f377792012-04-12 14:01:01 +02004747 /* Backing file format doesn't make sense without a backing file */
4748 if (backing_fmt && !backing_file) {
4749 return -EINVAL;
4750 }
4751
Eric Blakee54ee1b2020-07-06 15:39:53 -05004752 if (warn && backing_file && !backing_fmt) {
4753 warn_report("Deprecated use of backing file without explicit "
4754 "backing format, use of this image requires "
4755 "potentially unsafe format probing");
4756 }
4757
Kevin Wolf756e6732010-01-12 12:55:17 +01004758 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02004759 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01004760 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02004761 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01004762 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02004763
4764 if (ret == 0) {
4765 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
4766 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01004767 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
4768 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02004769 }
4770 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01004771}
4772
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004773/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004774 * Finds the first non-filter node above bs in the chain between
4775 * active and bs. The returned node is either an immediate parent of
4776 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004777 *
4778 * Returns NULL if bs is not found in active's image chain,
4779 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04004780 *
4781 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004782 */
4783BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
4784 BlockDriverState *bs)
4785{
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004786 bs = bdrv_skip_filters(bs);
4787 active = bdrv_skip_filters(active);
4788
4789 while (active) {
4790 BlockDriverState *next = bdrv_backing_chain_next(active);
4791 if (bs == next) {
4792 return active;
4793 }
4794 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004795 }
4796
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004797 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04004798}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004799
Jeff Cody4caf0fc2014-06-25 15:35:26 -04004800/* Given a BDS, searches for the base layer. */
4801BlockDriverState *bdrv_find_base(BlockDriverState *bs)
4802{
4803 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004804}
4805
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004806/*
Max Reitz7b99a262019-06-12 16:07:11 +02004807 * Return true if at least one of the COW (backing) and filter links
4808 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004809 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004810 */
4811bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
4812 Error **errp)
4813{
4814 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02004815 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004816
Max Reitz7b99a262019-06-12 16:07:11 +02004817 for (i = bs; i != base; i = child_bs(child)) {
4818 child = bdrv_filter_or_cow_child(i);
4819
4820 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004821 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02004822 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004823 return true;
4824 }
4825 }
4826
4827 return false;
4828}
4829
4830/*
Max Reitz7b99a262019-06-12 16:07:11 +02004831 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004832 * If any of the links is already frozen the operation is aborted and
4833 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004834 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004835 * Returns 0 on success. On failure returns < 0 and sets @errp.
4836 */
4837int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
4838 Error **errp)
4839{
4840 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02004841 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004842
4843 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
4844 return -EPERM;
4845 }
4846
Max Reitz7b99a262019-06-12 16:07:11 +02004847 for (i = bs; i != base; i = child_bs(child)) {
4848 child = bdrv_filter_or_cow_child(i);
4849 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02004850 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02004851 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02004852 return -EPERM;
4853 }
4854 }
4855
Max Reitz7b99a262019-06-12 16:07:11 +02004856 for (i = bs; i != base; i = child_bs(child)) {
4857 child = bdrv_filter_or_cow_child(i);
4858 if (child) {
4859 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004860 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004861 }
4862
4863 return 0;
4864}
4865
4866/*
Max Reitz7b99a262019-06-12 16:07:11 +02004867 * Unfreeze all COW (backing) and filter links between @bs and @base.
4868 * The caller must ensure that all links are frozen before using this
4869 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004870 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004871 */
4872void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
4873{
4874 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02004875 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004876
Max Reitz7b99a262019-06-12 16:07:11 +02004877 for (i = bs; i != base; i = child_bs(child)) {
4878 child = bdrv_filter_or_cow_child(i);
4879 if (child) {
4880 assert(child->frozen);
4881 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004882 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004883 }
4884}
4885
4886/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004887 * Drops images above 'base' up to and including 'top', and sets the image
4888 * above 'top' to have base as its backing file.
4889 *
4890 * Requires that the overlay to 'top' is opened r/w, so that the backing file
4891 * information in 'bs' can be properly updated.
4892 *
4893 * E.g., this will convert the following chain:
4894 * bottom <- base <- intermediate <- top <- active
4895 *
4896 * to
4897 *
4898 * bottom <- base <- active
4899 *
4900 * It is allowed for bottom==base, in which case it converts:
4901 *
4902 * base <- intermediate <- top <- active
4903 *
4904 * to
4905 *
4906 * base <- active
4907 *
Jeff Cody54e26902014-06-25 15:40:10 -04004908 * If backing_file_str is non-NULL, it will be used when modifying top's
4909 * overlay image metadata.
4910 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004911 * Error conditions:
4912 * if active == top, that is considered an error
4913 *
4914 */
Kevin Wolfbde70712017-06-27 20:36:18 +02004915int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
4916 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004917{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004918 BlockDriverState *explicit_top = top;
4919 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004920 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004921 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004922 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004923 g_autoptr(GSList) updated_children = NULL;
4924 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004925
Kevin Wolf6858eba2017-06-29 19:32:21 +02004926 bdrv_ref(top);
Max Reitz637d54a2019-07-22 15:33:43 +02004927 bdrv_subtree_drained_begin(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02004928
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004929 if (!top->drv || !base->drv) {
4930 goto exit;
4931 }
4932
Kevin Wolf5db15a52015-09-14 15:33:33 +02004933 /* Make sure that base is in the backing chain of top */
4934 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004935 goto exit;
4936 }
4937
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004938 /* If 'base' recursively inherits from 'top' then we should set
4939 * base->inherits_from to top->inherits_from after 'top' and all
4940 * other intermediate nodes have been dropped.
4941 * If 'top' is an implicit node (e.g. "commit_top") we should skip
4942 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004943 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004944 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
4945
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004946 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02004947 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
4948 * we've figured out how they should work. */
Max Reitzf30c66b2019-02-01 20:29:05 +01004949 if (!backing_file_str) {
4950 bdrv_refresh_filename(base);
4951 backing_file_str = base->filename;
4952 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02004953
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004954 QLIST_FOREACH(c, &top->parents, next_parent) {
4955 updated_children = g_slist_prepend(updated_children, c);
4956 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004957
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004958 bdrv_replace_node_common(top, base, false, &local_err);
4959 if (local_err) {
4960 error_report_err(local_err);
4961 goto exit;
4962 }
4963
4964 for (p = updated_children; p; p = p->next) {
4965 c = p->data;
4966
Max Reitzbd86fb92020-05-13 13:05:13 +02004967 if (c->klass->update_filename) {
4968 ret = c->klass->update_filename(c, base, backing_file_str,
4969 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02004970 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004971 /*
4972 * TODO: Actually, we want to rollback all previous iterations
4973 * of this loop, and (which is almost impossible) previous
4974 * bdrv_replace_node()...
4975 *
4976 * Note, that c->klass->update_filename may lead to permission
4977 * update, so it's a bad idea to call it inside permission
4978 * update transaction of bdrv_replace_node.
4979 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02004980 error_report_err(local_err);
4981 goto exit;
4982 }
4983 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004984 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004985
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004986 if (update_inherits_from) {
4987 base->inherits_from = explicit_top->inherits_from;
4988 }
4989
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004990 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004991exit:
Max Reitz637d54a2019-07-22 15:33:43 +02004992 bdrv_subtree_drained_end(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02004993 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004994 return ret;
4995}
4996
bellard83f64092006-08-01 16:21:11 +00004997/**
Max Reitz081e4652019-06-12 18:14:13 +02004998 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
4999 * sums the size of all data-bearing children. (This excludes backing
5000 * children.)
5001 */
5002static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5003{
5004 BdrvChild *child;
5005 int64_t child_size, sum = 0;
5006
5007 QLIST_FOREACH(child, &bs->children, next) {
5008 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5009 BDRV_CHILD_FILTERED))
5010 {
5011 child_size = bdrv_get_allocated_file_size(child->bs);
5012 if (child_size < 0) {
5013 return child_size;
5014 }
5015 sum += child_size;
5016 }
5017 }
5018
5019 return sum;
5020}
5021
5022/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005023 * Length of a allocated file in bytes. Sparse files are counted by actual
5024 * allocated space. Return < 0 if error or unknown.
5025 */
5026int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5027{
5028 BlockDriver *drv = bs->drv;
5029 if (!drv) {
5030 return -ENOMEDIUM;
5031 }
5032 if (drv->bdrv_get_allocated_file_size) {
5033 return drv->bdrv_get_allocated_file_size(bs);
5034 }
Max Reitz081e4652019-06-12 18:14:13 +02005035
5036 if (drv->bdrv_file_open) {
5037 /*
5038 * Protocol drivers default to -ENOTSUP (most of their data is
5039 * not stored in any of their children (if they even have any),
5040 * so there is no generic way to figure it out).
5041 */
5042 return -ENOTSUP;
5043 } else if (drv->is_filter) {
5044 /* Filter drivers default to the size of their filtered child */
5045 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5046 } else {
5047 /* Other drivers default to summing their children's sizes */
5048 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005049 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005050}
5051
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005052/*
5053 * bdrv_measure:
5054 * @drv: Format driver
5055 * @opts: Creation options for new image
5056 * @in_bs: Existing image containing data for new image (may be NULL)
5057 * @errp: Error object
5058 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5059 * or NULL on error
5060 *
5061 * Calculate file size required to create a new image.
5062 *
5063 * If @in_bs is given then space for allocated clusters and zero clusters
5064 * from that image are included in the calculation. If @opts contains a
5065 * backing file that is shared by @in_bs then backing clusters may be omitted
5066 * from the calculation.
5067 *
5068 * If @in_bs is NULL then the calculation includes no allocated clusters
5069 * unless a preallocation option is given in @opts.
5070 *
5071 * Note that @in_bs may use a different BlockDriver from @drv.
5072 *
5073 * If an error occurs the @errp pointer is set.
5074 */
5075BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5076 BlockDriverState *in_bs, Error **errp)
5077{
5078 if (!drv->bdrv_measure) {
5079 error_setg(errp, "Block driver '%s' does not support size measurement",
5080 drv->format_name);
5081 return NULL;
5082 }
5083
5084 return drv->bdrv_measure(opts, in_bs, errp);
5085}
5086
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005087/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005088 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005089 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005090int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005091{
5092 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005093
bellard83f64092006-08-01 16:21:11 +00005094 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005095 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005096
Kevin Wolfb94a2612013-10-29 12:18:58 +01005097 if (drv->has_variable_length) {
5098 int ret = refresh_total_sectors(bs, bs->total_sectors);
5099 if (ret < 0) {
5100 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005101 }
bellard83f64092006-08-01 16:21:11 +00005102 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005103 return bs->total_sectors;
5104}
5105
5106/**
5107 * Return length in bytes on success, -errno on error.
5108 * The length is always a multiple of BDRV_SECTOR_SIZE.
5109 */
5110int64_t bdrv_getlength(BlockDriverState *bs)
5111{
5112 int64_t ret = bdrv_nb_sectors(bs);
5113
Eric Blake122860b2020-11-05 09:51:22 -06005114 if (ret < 0) {
5115 return ret;
5116 }
5117 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5118 return -EFBIG;
5119 }
5120 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005121}
5122
bellard19cb3732006-08-19 11:45:59 +00005123/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005124void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005125{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005126 int64_t nb_sectors = bdrv_nb_sectors(bs);
5127
5128 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005129}
bellardcf989512004-02-16 21:56:36 +00005130
Eric Blake54115412016-06-23 16:37:26 -06005131bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005132{
5133 return bs->sg;
5134}
5135
Max Reitzae23f782019-06-12 22:57:15 +02005136/**
5137 * Return whether the given node supports compressed writes.
5138 */
5139bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5140{
5141 BlockDriverState *filtered;
5142
5143 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5144 return false;
5145 }
5146
5147 filtered = bdrv_filter_bs(bs);
5148 if (filtered) {
5149 /*
5150 * Filters can only forward compressed writes, so we have to
5151 * check the child.
5152 */
5153 return bdrv_supports_compressed_writes(filtered);
5154 }
5155
5156 return true;
5157}
5158
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005159const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005160{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005161 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005162}
5163
Stefan Hajnocziada42402014-08-27 12:08:55 +01005164static int qsort_strcmp(const void *a, const void *b)
5165{
Max Reitzceff5bd2016-10-12 22:49:05 +02005166 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005167}
5168
ths5fafdf22007-09-16 21:08:06 +00005169void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005170 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005171{
5172 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005173 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005174 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005175 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005176
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005177 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005178 if (drv->format_name) {
5179 bool found = false;
5180 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005181
5182 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5183 continue;
5184 }
5185
Jeff Codye855e4f2014-04-28 18:29:54 -04005186 while (formats && i && !found) {
5187 found = !strcmp(formats[--i], drv->format_name);
5188 }
5189
5190 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005191 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005192 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005193 }
5194 }
bellardea2384d2004-08-01 21:59:26 +00005195 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005196
Max Reitzeb0df692016-10-12 22:49:06 +02005197 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5198 const char *format_name = block_driver_modules[i].format_name;
5199
5200 if (format_name) {
5201 bool found = false;
5202 int j = count;
5203
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005204 if (use_bdrv_whitelist &&
5205 !bdrv_format_is_whitelisted(format_name, read_only)) {
5206 continue;
5207 }
5208
Max Reitzeb0df692016-10-12 22:49:06 +02005209 while (formats && j && !found) {
5210 found = !strcmp(formats[--j], format_name);
5211 }
5212
5213 if (!found) {
5214 formats = g_renew(const char *, formats, count + 1);
5215 formats[count++] = format_name;
5216 }
5217 }
5218 }
5219
Stefan Hajnocziada42402014-08-27 12:08:55 +01005220 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5221
5222 for (i = 0; i < count; i++) {
5223 it(opaque, formats[i]);
5224 }
5225
Jeff Codye855e4f2014-04-28 18:29:54 -04005226 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005227}
5228
Benoît Canetdc364f42014-01-23 21:31:32 +01005229/* This function is to find a node in the bs graph */
5230BlockDriverState *bdrv_find_node(const char *node_name)
5231{
5232 BlockDriverState *bs;
5233
5234 assert(node_name);
5235
5236 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5237 if (!strcmp(node_name, bs->node_name)) {
5238 return bs;
5239 }
5240 }
5241 return NULL;
5242}
5243
Benoît Canetc13163f2014-01-23 21:31:34 +01005244/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01005245BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5246 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01005247{
Eric Blake9812e712020-10-27 00:05:47 -05005248 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01005249 BlockDriverState *bs;
5250
5251 list = NULL;
5252 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01005253 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03005254 if (!info) {
5255 qapi_free_BlockDeviceInfoList(list);
5256 return NULL;
5257 }
Eric Blake9812e712020-10-27 00:05:47 -05005258 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01005259 }
5260
5261 return list;
5262}
5263
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005264typedef struct XDbgBlockGraphConstructor {
5265 XDbgBlockGraph *graph;
5266 GHashTable *graph_nodes;
5267} XDbgBlockGraphConstructor;
5268
5269static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5270{
5271 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5272
5273 gr->graph = g_new0(XDbgBlockGraph, 1);
5274 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5275
5276 return gr;
5277}
5278
5279static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5280{
5281 XDbgBlockGraph *graph = gr->graph;
5282
5283 g_hash_table_destroy(gr->graph_nodes);
5284 g_free(gr);
5285
5286 return graph;
5287}
5288
5289static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5290{
5291 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5292
5293 if (ret != 0) {
5294 return ret;
5295 }
5296
5297 /*
5298 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5299 * answer of g_hash_table_lookup.
5300 */
5301 ret = g_hash_table_size(gr->graph_nodes) + 1;
5302 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5303
5304 return ret;
5305}
5306
5307static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5308 XDbgBlockGraphNodeType type, const char *name)
5309{
5310 XDbgBlockGraphNode *n;
5311
5312 n = g_new0(XDbgBlockGraphNode, 1);
5313
5314 n->id = xdbg_graph_node_num(gr, node);
5315 n->type = type;
5316 n->name = g_strdup(name);
5317
Eric Blake9812e712020-10-27 00:05:47 -05005318 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005319}
5320
5321static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5322 const BdrvChild *child)
5323{
Max Reitzcdb1cec2019-11-08 13:34:52 +01005324 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005325 XDbgBlockGraphEdge *edge;
5326
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005327 edge = g_new0(XDbgBlockGraphEdge, 1);
5328
5329 edge->parent = xdbg_graph_node_num(gr, parent);
5330 edge->child = xdbg_graph_node_num(gr, child->bs);
5331 edge->name = g_strdup(child->name);
5332
Max Reitzcdb1cec2019-11-08 13:34:52 +01005333 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5334 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5335
5336 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005337 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005338 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01005339 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005340 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005341 }
5342 }
5343
Eric Blake9812e712020-10-27 00:05:47 -05005344 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005345}
5346
5347
5348XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5349{
5350 BlockBackend *blk;
5351 BlockJob *job;
5352 BlockDriverState *bs;
5353 BdrvChild *child;
5354 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5355
5356 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5357 char *allocated_name = NULL;
5358 const char *name = blk_name(blk);
5359
5360 if (!*name) {
5361 name = allocated_name = blk_get_attached_dev_id(blk);
5362 }
5363 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5364 name);
5365 g_free(allocated_name);
5366 if (blk_root(blk)) {
5367 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5368 }
5369 }
5370
5371 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5372 GSList *el;
5373
5374 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5375 job->job.id);
5376 for (el = job->nodes; el; el = el->next) {
5377 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5378 }
5379 }
5380
5381 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5382 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5383 bs->node_name);
5384 QLIST_FOREACH(child, &bs->children, next) {
5385 xdbg_graph_add_edge(gr, bs, child);
5386 }
5387 }
5388
5389 return xdbg_graph_finalize(gr);
5390}
5391
Benoît Canet12d3ba82014-01-23 21:31:35 +01005392BlockDriverState *bdrv_lookup_bs(const char *device,
5393 const char *node_name,
5394 Error **errp)
5395{
Markus Armbruster7f06d472014-10-07 13:59:12 +02005396 BlockBackend *blk;
5397 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005398
Benoît Canet12d3ba82014-01-23 21:31:35 +01005399 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02005400 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005401
Markus Armbruster7f06d472014-10-07 13:59:12 +02005402 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005403 bs = blk_bs(blk);
5404 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02005405 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02005406 }
5407
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005408 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005409 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005410 }
5411
Benoît Canetdd67fa52014-02-12 17:15:06 +01005412 if (node_name) {
5413 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005414
Benoît Canetdd67fa52014-02-12 17:15:06 +01005415 if (bs) {
5416 return bs;
5417 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005418 }
5419
Benoît Canetdd67fa52014-02-12 17:15:06 +01005420 error_setg(errp, "Cannot find device=%s nor node_name=%s",
5421 device ? device : "",
5422 node_name ? node_name : "");
5423 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005424}
5425
Jeff Cody5a6684d2014-06-25 15:40:09 -04005426/* If 'base' is in the same chain as 'top', return true. Otherwise,
5427 * return false. If either argument is NULL, return false. */
5428bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5429{
5430 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005431 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04005432 }
5433
5434 return top != NULL;
5435}
5436
Fam Zheng04df7652014-10-31 11:32:54 +08005437BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5438{
5439 if (!bs) {
5440 return QTAILQ_FIRST(&graph_bdrv_states);
5441 }
5442 return QTAILQ_NEXT(bs, node_list);
5443}
5444
Kevin Wolf0f122642018-03-28 18:29:18 +02005445BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5446{
5447 if (!bs) {
5448 return QTAILQ_FIRST(&all_bdrv_states);
5449 }
5450 return QTAILQ_NEXT(bs, bs_list);
5451}
5452
Fam Zheng20a9e772014-10-31 11:32:55 +08005453const char *bdrv_get_node_name(const BlockDriverState *bs)
5454{
5455 return bs->node_name;
5456}
5457
Kevin Wolf1f0c4612016-03-22 18:38:44 +01005458const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005459{
5460 BdrvChild *c;
5461 const char *name;
5462
5463 /* If multiple parents have a name, just pick the first one. */
5464 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005465 if (c->klass->get_name) {
5466 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005467 if (name && *name) {
5468 return name;
5469 }
5470 }
5471 }
5472
5473 return NULL;
5474}
5475
Markus Armbruster7f06d472014-10-07 13:59:12 +02005476/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02005477const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005478{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005479 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00005480}
5481
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005482/* This can be used to identify nodes that might not have a device
5483 * name associated. Since node and device names live in the same
5484 * namespace, the result is unambiguous. The exception is if both are
5485 * absent, then this returns an empty (non-null) string. */
5486const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5487{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005488 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005489}
5490
Markus Armbrusterc8433282012-06-05 16:49:24 +02005491int bdrv_get_flags(BlockDriverState *bs)
5492{
5493 return bs->open_flags;
5494}
5495
Peter Lieven3ac21622013-06-28 12:47:42 +02005496int bdrv_has_zero_init_1(BlockDriverState *bs)
5497{
5498 return 1;
5499}
5500
Kevin Wolff2feebb2010-04-14 17:30:35 +02005501int bdrv_has_zero_init(BlockDriverState *bs)
5502{
Max Reitz93393e62019-06-12 17:03:38 +02005503 BlockDriverState *filtered;
5504
Max Reitzd470ad42017-11-10 21:31:09 +01005505 if (!bs->drv) {
5506 return 0;
5507 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005508
Paolo Bonzini11212d82013-09-04 19:00:27 +02005509 /* If BS is a copy on write image, it is initialized to
5510 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02005511 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02005512 return 0;
5513 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02005514 if (bs->drv->bdrv_has_zero_init) {
5515 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02005516 }
Max Reitz93393e62019-06-12 17:03:38 +02005517
5518 filtered = bdrv_filter_bs(bs);
5519 if (filtered) {
5520 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005521 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005522
Peter Lieven3ac21622013-06-28 12:47:42 +02005523 /* safe default */
5524 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02005525}
5526
Peter Lieven4ce78692013-10-24 12:06:54 +02005527bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
5528{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03005529 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02005530 return false;
5531 }
5532
Eric Blakee24d8132018-01-26 13:34:39 -06005533 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02005534}
5535
ths5fafdf22007-09-16 21:08:06 +00005536void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00005537 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00005538{
Kevin Wolf3574c602011-10-26 11:02:11 +02005539 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00005540}
5541
bellardfaea38e2006-08-05 21:31:00 +00005542int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5543{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005544 int ret;
bellardfaea38e2006-08-05 21:31:00 +00005545 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005546 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5547 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00005548 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005549 }
5550 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02005551 BlockDriverState *filtered = bdrv_filter_bs(bs);
5552 if (filtered) {
5553 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005554 }
bellardfaea38e2006-08-05 21:31:00 +00005555 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005556 }
bellardfaea38e2006-08-05 21:31:00 +00005557 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005558 ret = drv->bdrv_get_info(bs, bdi);
5559 if (ret < 0) {
5560 return ret;
5561 }
5562
5563 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
5564 return -EINVAL;
5565 }
5566
5567 return 0;
bellardfaea38e2006-08-05 21:31:00 +00005568}
5569
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005570ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
5571 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02005572{
5573 BlockDriver *drv = bs->drv;
5574 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005575 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02005576 }
5577 return NULL;
5578}
5579
Anton Nefedovd9245592019-09-23 15:17:37 +03005580BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
5581{
5582 BlockDriver *drv = bs->drv;
5583 if (!drv || !drv->bdrv_get_specific_stats) {
5584 return NULL;
5585 }
5586 return drv->bdrv_get_specific_stats(bs);
5587}
5588
Eric Blakea31939e2015-11-18 01:52:54 -07005589void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005590{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005591 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005592 return;
5593 }
5594
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005595 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005596}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005597
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005598static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01005599{
5600 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02005601 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005602 }
5603
5604 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005605 assert(bs->drv->bdrv_debug_remove_breakpoint);
5606 return bs;
5607 }
5608
5609 return NULL;
5610}
5611
5612int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
5613 const char *tag)
5614{
5615 bs = bdrv_find_debug_node(bs);
5616 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01005617 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
5618 }
5619
5620 return -ENOTSUP;
5621}
5622
Fam Zheng4cc70e92013-11-20 10:01:54 +08005623int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
5624{
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005625 bs = bdrv_find_debug_node(bs);
5626 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08005627 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
5628 }
5629
5630 return -ENOTSUP;
5631}
5632
Kevin Wolf41c695c2012-12-06 14:32:58 +01005633int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
5634{
Max Reitz938789e2014-03-10 23:44:08 +01005635 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02005636 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005637 }
5638
5639 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
5640 return bs->drv->bdrv_debug_resume(bs, tag);
5641 }
5642
5643 return -ENOTSUP;
5644}
5645
5646bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
5647{
5648 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02005649 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005650 }
5651
5652 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
5653 return bs->drv->bdrv_debug_is_suspended(bs, tag);
5654 }
5655
5656 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005657}
5658
Jeff Codyb1b1d782012-10-16 15:49:09 -04005659/* backing_file can either be relative, or absolute, or a protocol. If it is
5660 * relative, it must be relative to the chain. So, passing in bs->filename
5661 * from a BDS as backing_file should not be done, as that may be relative to
5662 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005663BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
5664 const char *backing_file)
5665{
Jeff Codyb1b1d782012-10-16 15:49:09 -04005666 char *filename_full = NULL;
5667 char *backing_file_full = NULL;
5668 char *filename_tmp = NULL;
5669 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02005670 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005671 BlockDriverState *curr_bs = NULL;
5672 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005673 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005674
5675 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005676 return NULL;
5677 }
5678
Jeff Codyb1b1d782012-10-16 15:49:09 -04005679 filename_full = g_malloc(PATH_MAX);
5680 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005681
5682 is_protocol = path_has_protocol(backing_file);
5683
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005684 /*
5685 * Being largely a legacy function, skip any filters here
5686 * (because filters do not have normal filenames, so they cannot
5687 * match anyway; and allowing json:{} filenames is a bit out of
5688 * scope).
5689 */
5690 for (curr_bs = bdrv_skip_filters(bs);
5691 bdrv_cow_child(curr_bs) != NULL;
5692 curr_bs = bs_below)
5693 {
5694 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005695
Max Reitz0b877d02018-08-01 20:34:11 +02005696 if (bdrv_backing_overridden(curr_bs)) {
5697 /*
5698 * If the backing file was overridden, we can only compare
5699 * directly against the backing node's filename.
5700 */
5701
5702 if (!filenames_refreshed) {
5703 /*
5704 * This will automatically refresh all of the
5705 * filenames in the rest of the backing chain, so we
5706 * only need to do this once.
5707 */
5708 bdrv_refresh_filename(bs_below);
5709 filenames_refreshed = true;
5710 }
5711
5712 if (strcmp(backing_file, bs_below->filename) == 0) {
5713 retval = bs_below;
5714 break;
5715 }
5716 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
5717 /*
5718 * If either of the filename paths is actually a protocol, then
5719 * compare unmodified paths; otherwise make paths relative.
5720 */
Max Reitz6b6833c2019-02-01 20:29:15 +01005721 char *backing_file_full_ret;
5722
Jeff Codyb1b1d782012-10-16 15:49:09 -04005723 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005724 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005725 break;
5726 }
Jeff Cody418661e2017-01-25 20:08:20 -05005727 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01005728 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
5729 NULL);
5730 if (backing_file_full_ret) {
5731 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
5732 g_free(backing_file_full_ret);
5733 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005734 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05005735 break;
5736 }
Jeff Cody418661e2017-01-25 20:08:20 -05005737 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005738 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04005739 /* If not an absolute filename path, make it relative to the current
5740 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01005741 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
5742 NULL);
5743 /* We are going to compare canonicalized absolute pathnames */
5744 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
5745 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005746 continue;
5747 }
Max Reitz2d9158c2019-02-01 20:29:17 +01005748 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005749
5750 /* We need to make sure the backing filename we are comparing against
5751 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01005752 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
5753 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
5754 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005755 continue;
5756 }
Max Reitz2d9158c2019-02-01 20:29:17 +01005757 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005758
5759 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005760 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005761 break;
5762 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005763 }
5764 }
5765
Jeff Codyb1b1d782012-10-16 15:49:09 -04005766 g_free(filename_full);
5767 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005768 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005769}
5770
bellardea2384d2004-08-01 21:59:26 +00005771void bdrv_init(void)
5772{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05005773 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00005774}
pbrookce1a14d2006-08-07 02:38:06 +00005775
Markus Armbrustereb852012009-10-27 18:41:44 +01005776void bdrv_init_with_whitelist(void)
5777{
5778 use_bdrv_whitelist = 1;
5779 bdrv_init();
5780}
5781
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005782int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06005783{
Kevin Wolf4417ab72017-05-04 18:52:37 +02005784 BdrvChild *child, *parent;
Kevin Wolf9c5e6592017-05-04 18:52:40 +02005785 uint64_t perm, shared_perm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005786 Error *local_err = NULL;
5787 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04005788 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005789
Kevin Wolf3456a8d2014-03-11 10:58:39 +01005790 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005791 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06005792 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01005793
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03005794 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01005795 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005796 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005797 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005798 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005799 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005800 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005801
Kevin Wolfdafe0962017-11-16 13:00:01 +01005802 /*
5803 * Update permissions, they may differ for inactive nodes.
5804 *
5805 * Note that the required permissions of inactive images are always a
5806 * subset of the permissions required after activating the image. This
5807 * allows us to just get the permissions upfront without restricting
5808 * drv->bdrv_invalidate_cache().
5809 *
5810 * It also means that in error cases, we don't have to try and revert to
5811 * the old permissions (which is an operation that could fail, too). We can
5812 * just keep the extended permissions for the next time that an activation
5813 * of the image is tried.
5814 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01005815 if (bs->open_flags & BDRV_O_INACTIVE) {
5816 bs->open_flags &= ~BDRV_O_INACTIVE;
5817 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
Markus Armbruster668f62e2020-07-07 18:06:02 +02005818 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, NULL, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01005819 if (ret < 0) {
Vladimir Sementsov-Ogievskiy6c5f7b32020-11-06 15:42:35 +03005820 bdrv_abort_perm_update(bs);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005821 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005822 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005823 }
Kevin Wolf7bb49412019-12-17 15:06:38 +01005824 bdrv_set_perm(bs, perm, shared_perm);
Kevin Wolf3456a8d2014-03-11 10:58:39 +01005825
Kevin Wolf7bb49412019-12-17 15:06:38 +01005826 if (bs->drv->bdrv_co_invalidate_cache) {
5827 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
5828 if (local_err) {
5829 bs->open_flags |= BDRV_O_INACTIVE;
5830 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005831 return -EINVAL;
Kevin Wolf7bb49412019-12-17 15:06:38 +01005832 }
5833 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04005834
Kevin Wolf7bb49412019-12-17 15:06:38 +01005835 FOR_EACH_DIRTY_BITMAP(bs, bm) {
5836 bdrv_dirty_bitmap_skip_store(bm, false);
5837 }
5838
5839 ret = refresh_total_sectors(bs, bs->total_sectors);
5840 if (ret < 0) {
5841 bs->open_flags |= BDRV_O_INACTIVE;
5842 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005843 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01005844 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005845 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02005846
5847 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005848 if (parent->klass->activate) {
5849 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02005850 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01005851 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02005852 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005853 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02005854 }
5855 }
5856 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005857
5858 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06005859}
5860
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005861void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06005862{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01005863 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02005864 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06005865
Kevin Wolf88be7b42016-05-20 18:49:07 +02005866 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005867 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005868 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005869
5870 aio_context_acquire(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005871 ret = bdrv_invalidate_cache(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005872 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005873 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01005874 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005875 return;
5876 }
Anthony Liguori0f154232011-11-14 15:09:45 -06005877 }
5878}
5879
Kevin Wolf9e372712018-11-23 15:11:14 +01005880static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
5881{
5882 BdrvChild *parent;
5883
5884 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005885 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01005886 BlockDriverState *parent_bs = parent->opaque;
5887 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
5888 return true;
5889 }
5890 }
5891 }
5892
5893 return false;
5894}
5895
5896static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005897{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02005898 BdrvChild *child, *parent;
Max Reitz10467792019-05-22 19:03:51 +02005899 bool tighten_restrictions;
Kevin Wolf9e372712018-11-23 15:11:14 +01005900 uint64_t perm, shared_perm;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005901 int ret;
5902
Max Reitzd470ad42017-11-10 21:31:09 +01005903 if (!bs->drv) {
5904 return -ENOMEDIUM;
5905 }
5906
Kevin Wolf9e372712018-11-23 15:11:14 +01005907 /* Make sure that we don't inactivate a child before its parent.
5908 * It will be covered by recursion from the yet active parent. */
5909 if (bdrv_has_bds_parent(bs, true)) {
5910 return 0;
5911 }
5912
5913 assert(!(bs->open_flags & BDRV_O_INACTIVE));
5914
5915 /* Inactivate this node */
5916 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005917 ret = bs->drv->bdrv_inactivate(bs);
5918 if (ret < 0) {
5919 return ret;
5920 }
5921 }
5922
Kevin Wolf9e372712018-11-23 15:11:14 +01005923 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005924 if (parent->klass->inactivate) {
5925 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01005926 if (ret < 0) {
5927 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02005928 }
5929 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005930 }
Kevin Wolf38701b62017-05-04 18:52:39 +02005931
Kevin Wolf9e372712018-11-23 15:11:14 +01005932 bs->open_flags |= BDRV_O_INACTIVE;
5933
5934 /* Update permissions, they may differ for inactive nodes */
5935 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
Max Reitz10467792019-05-22 19:03:51 +02005936 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL,
5937 &tighten_restrictions, NULL);
5938 assert(tighten_restrictions == false);
5939 if (ret < 0) {
5940 /* We only tried to loosen restrictions, so errors are not fatal */
5941 bdrv_abort_perm_update(bs);
5942 } else {
5943 bdrv_set_perm(bs, perm, shared_perm);
5944 }
Kevin Wolf9e372712018-11-23 15:11:14 +01005945
5946
5947 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02005948 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01005949 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02005950 if (ret < 0) {
5951 return ret;
5952 }
5953 }
5954
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005955 return 0;
5956}
5957
5958int bdrv_inactivate_all(void)
5959{
Max Reitz79720af2016-03-16 19:54:44 +01005960 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02005961 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005962 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005963 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005964
Kevin Wolf88be7b42016-05-20 18:49:07 +02005965 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005966 AioContext *aio_context = bdrv_get_aio_context(bs);
5967
5968 if (!g_slist_find(aio_ctxs, aio_context)) {
5969 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
5970 aio_context_acquire(aio_context);
5971 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005972 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005973
Kevin Wolf9e372712018-11-23 15:11:14 +01005974 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5975 /* Nodes with BDS parents are covered by recursion from the last
5976 * parent that gets inactivated. Don't inactivate them a second
5977 * time if that has already happened. */
5978 if (bdrv_has_bds_parent(bs, false)) {
5979 continue;
5980 }
5981 ret = bdrv_inactivate_recurse(bs);
5982 if (ret < 0) {
5983 bdrv_next_cleanup(&it);
5984 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005985 }
5986 }
5987
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005988out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005989 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
5990 AioContext *aio_context = ctx->data;
5991 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005992 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005993 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005994
5995 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005996}
5997
Kevin Wolff9f05dc2011-07-15 13:50:26 +02005998/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00005999/* removable device support */
6000
6001/**
6002 * Return TRUE if the media is present
6003 */
Max Reitze031f752015-10-19 17:53:11 +02006004bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006005{
6006 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006007 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006008
Max Reitze031f752015-10-19 17:53:11 +02006009 if (!drv) {
6010 return false;
6011 }
Max Reitz28d7a782015-10-19 17:53:13 +02006012 if (drv->bdrv_is_inserted) {
6013 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006014 }
Max Reitz28d7a782015-10-19 17:53:13 +02006015 QLIST_FOREACH(child, &bs->children, next) {
6016 if (!bdrv_is_inserted(child->bs)) {
6017 return false;
6018 }
6019 }
6020 return true;
bellard19cb3732006-08-19 11:45:59 +00006021}
6022
6023/**
bellard19cb3732006-08-19 11:45:59 +00006024 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6025 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006026void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006027{
6028 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00006029
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006030 if (drv && drv->bdrv_eject) {
6031 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006032 }
bellard19cb3732006-08-19 11:45:59 +00006033}
6034
bellard19cb3732006-08-19 11:45:59 +00006035/**
6036 * Lock or unlock the media (if it is locked, the user won't be able
6037 * to eject it manually).
6038 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006039void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006040{
6041 BlockDriver *drv = bs->drv;
6042
Markus Armbruster025e8492011-09-06 18:58:47 +02006043 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006044
Markus Armbruster025e8492011-09-06 18:58:47 +02006045 if (drv && drv->bdrv_lock_medium) {
6046 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006047 }
6048}
ths985a03b2007-12-24 16:10:43 +00006049
Fam Zheng9fcb0252013-08-23 09:14:46 +08006050/* Get a reference to bs */
6051void bdrv_ref(BlockDriverState *bs)
6052{
6053 bs->refcnt++;
6054}
6055
6056/* Release a previously grabbed reference to bs.
6057 * If after releasing, reference count is zero, the BlockDriverState is
6058 * deleted. */
6059void bdrv_unref(BlockDriverState *bs)
6060{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006061 if (!bs) {
6062 return;
6063 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006064 assert(bs->refcnt > 0);
6065 if (--bs->refcnt == 0) {
6066 bdrv_delete(bs);
6067 }
6068}
6069
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006070struct BdrvOpBlocker {
6071 Error *reason;
6072 QLIST_ENTRY(BdrvOpBlocker) list;
6073};
6074
6075bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6076{
6077 BdrvOpBlocker *blocker;
6078 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6079 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6080 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006081 error_propagate_prepend(errp, error_copy(blocker->reason),
6082 "Node '%s' is busy: ",
6083 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006084 return true;
6085 }
6086 return false;
6087}
6088
6089void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6090{
6091 BdrvOpBlocker *blocker;
6092 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6093
Markus Armbruster5839e532014-08-19 10:31:08 +02006094 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006095 blocker->reason = reason;
6096 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6097}
6098
6099void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6100{
6101 BdrvOpBlocker *blocker, *next;
6102 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6103 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6104 if (blocker->reason == reason) {
6105 QLIST_REMOVE(blocker, list);
6106 g_free(blocker);
6107 }
6108 }
6109}
6110
6111void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6112{
6113 int i;
6114 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6115 bdrv_op_block(bs, i, reason);
6116 }
6117}
6118
6119void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6120{
6121 int i;
6122 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6123 bdrv_op_unblock(bs, i, reason);
6124 }
6125}
6126
6127bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6128{
6129 int i;
6130
6131 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6132 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6133 return false;
6134 }
6135 }
6136 return true;
6137}
6138
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006139void bdrv_img_create(const char *filename, const char *fmt,
6140 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006141 char *options, uint64_t img_size, int flags, bool quiet,
6142 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006143{
Chunyan Liu83d05212014-06-05 17:20:51 +08006144 QemuOptsList *create_opts = NULL;
6145 QemuOpts *opts = NULL;
6146 const char *backing_fmt, *backing_file;
6147 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006148 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006149 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006150 int ret = 0;
6151
6152 /* Find driver and parse its options */
6153 drv = bdrv_find_format(fmt);
6154 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006155 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006156 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006157 }
6158
Max Reitzb65a5e12015-02-05 13:58:12 -05006159 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006160 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006161 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006162 }
6163
Max Reitzc6149722014-12-02 18:32:45 +01006164 if (!drv->create_opts) {
6165 error_setg(errp, "Format driver '%s' does not support image creation",
6166 drv->format_name);
6167 return;
6168 }
6169
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006170 if (!proto_drv->create_opts) {
6171 error_setg(errp, "Protocol driver '%s' does not support image creation",
6172 proto_drv->format_name);
6173 return;
6174 }
6175
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006176 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006177 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006178 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006179
Chunyan Liu83d05212014-06-05 17:20:51 +08006180 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006181
6182 /* Parse -o options */
6183 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02006184 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006185 goto out;
6186 }
6187 }
6188
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006189 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6190 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6191 } else if (img_size != UINT64_C(-1)) {
6192 error_setg(errp, "The image size must be specified only once");
6193 goto out;
6194 }
6195
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006196 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02006197 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02006198 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006199 error_setg(errp, "Backing file not supported for file format '%s'",
6200 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006201 goto out;
6202 }
6203 }
6204
6205 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02006206 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006207 error_setg(errp, "Backing file format not supported for file "
6208 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006209 goto out;
6210 }
6211 }
6212
Chunyan Liu83d05212014-06-05 17:20:51 +08006213 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6214 if (backing_file) {
6215 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006216 error_setg(errp, "Error: Trying to create an image with the "
6217 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01006218 goto out;
6219 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05006220 if (backing_file[0] == '\0') {
6221 error_setg(errp, "Expected backing file name, got empty string");
6222 goto out;
6223 }
Jes Sorensen792da932010-12-16 13:52:17 +01006224 }
6225
Chunyan Liu83d05212014-06-05 17:20:51 +08006226 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006227
John Snow6e6e55f2017-07-17 20:34:22 -04006228 /* The size for the image must always be specified, unless we have a backing
6229 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05006230 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04006231 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6232 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01006233 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04006234 int back_flags;
6235 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02006236
Max Reitz645ae7d2019-02-01 20:29:14 +01006237 full_backing =
6238 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6239 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04006240 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006241 goto out;
6242 }
Max Reitz645ae7d2019-02-01 20:29:14 +01006243 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04006244
6245 /* backing files always opened read-only */
6246 back_flags = flags;
6247 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6248
Fam Zhengcc954f02017-12-15 16:04:45 +08006249 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04006250 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04006251 qdict_put_str(backing_options, "driver", backing_fmt);
6252 }
Fam Zhengcc954f02017-12-15 16:04:45 +08006253 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04006254
6255 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6256 &local_err);
6257 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05006258 if (!bs) {
6259 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04006260 goto out;
6261 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05006262 if (!backing_fmt) {
6263 warn_report("Deprecated use of backing file without explicit "
6264 "backing format (detected format of %s)",
6265 bs->drv->format_name);
6266 if (bs->drv != &bdrv_raw) {
6267 /*
6268 * A probe of raw deserves the most attention:
6269 * leaving the backing format out of the image
6270 * will ensure bs->probed is set (ensuring we
6271 * don't accidentally commit into the backing
6272 * file), and allow more spots to warn the users
6273 * to fix their toolchain when opening this image
6274 * later. For other images, we can safely record
6275 * the format that we probed.
6276 */
6277 backing_fmt = bs->drv->format_name;
6278 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
6279 NULL);
6280 }
6281 }
John Snow6e6e55f2017-07-17 20:34:22 -04006282 if (size == -1) {
6283 /* Opened BS, have no size */
6284 size = bdrv_getlength(bs);
6285 if (size < 0) {
6286 error_setg_errno(errp, -size, "Could not get size of '%s'",
6287 backing_file);
6288 bdrv_unref(bs);
6289 goto out;
6290 }
6291 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6292 }
6293 bdrv_unref(bs);
6294 }
Eric Blaked9f059a2020-07-06 15:39:54 -05006295 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6296 } else if (backing_file && !backing_fmt) {
6297 warn_report("Deprecated use of unopened backing file without "
6298 "explicit backing format, use of this image requires "
6299 "potentially unsafe format probing");
6300 }
John Snow6e6e55f2017-07-17 20:34:22 -04006301
6302 if (size == -1) {
6303 error_setg(errp, "Image creation needs a size parameter");
6304 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006305 }
6306
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006307 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02006308 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08006309 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006310 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05006311 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006312 }
Chunyan Liu83d05212014-06-05 17:20:51 +08006313
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006314 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08006315
Max Reitzcc84d902013-09-06 17:14:26 +02006316 if (ret == -EFBIG) {
6317 /* This is generally a better message than whatever the driver would
6318 * deliver (especially because of the cluster_size_hint), since that
6319 * is most probably not much different from "image too large". */
6320 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08006321 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02006322 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006323 }
Max Reitzcc84d902013-09-06 17:14:26 +02006324 error_setg(errp, "The image size is too large for file format '%s'"
6325 "%s", fmt, cluster_size_hint);
6326 error_free(local_err);
6327 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006328 }
6329
6330out:
Chunyan Liu83d05212014-06-05 17:20:51 +08006331 qemu_opts_del(opts);
6332 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03006333 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006334}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006335
6336AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6337{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00006338 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006339}
6340
Kevin Wolfe336fd42020-10-05 17:58:53 +02006341AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6342{
6343 Coroutine *self = qemu_coroutine_self();
6344 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6345 AioContext *new_ctx;
6346
6347 /*
6348 * Increase bs->in_flight to ensure that this operation is completed before
6349 * moving the node to a different AioContext. Read new_ctx only afterwards.
6350 */
6351 bdrv_inc_in_flight(bs);
6352
6353 new_ctx = bdrv_get_aio_context(bs);
6354 aio_co_reschedule_self(new_ctx);
6355 return old_ctx;
6356}
6357
6358void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6359{
6360 aio_co_reschedule_self(old_ctx);
6361 bdrv_dec_in_flight(bs);
6362}
6363
Kevin Wolf18c6ac12020-10-05 17:58:54 +02006364void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6365{
6366 AioContext *ctx = bdrv_get_aio_context(bs);
6367
6368 /* In the main thread, bs->aio_context won't change concurrently */
6369 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6370
6371 /*
6372 * We're in coroutine context, so we already hold the lock of the main
6373 * loop AioContext. Don't lock it twice to avoid deadlocks.
6374 */
6375 assert(qemu_in_coroutine());
6376 if (ctx != qemu_get_aio_context()) {
6377 aio_context_acquire(ctx);
6378 }
6379}
6380
6381void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6382{
6383 AioContext *ctx = bdrv_get_aio_context(bs);
6384
6385 assert(qemu_in_coroutine());
6386 if (ctx != qemu_get_aio_context()) {
6387 aio_context_release(ctx);
6388 }
6389}
6390
Fam Zheng052a7572017-04-10 20:09:25 +08006391void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6392{
6393 aio_co_enter(bdrv_get_aio_context(bs), co);
6394}
6395
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006396static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6397{
6398 QLIST_REMOVE(ban, list);
6399 g_free(ban);
6400}
6401
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006402static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006403{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006404 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006405
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006406 assert(!bs->walking_aio_notifiers);
6407 bs->walking_aio_notifiers = true;
6408 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6409 if (baf->deleted) {
6410 bdrv_do_remove_aio_context_notifier(baf);
6411 } else {
6412 baf->detach_aio_context(baf->opaque);
6413 }
Max Reitz33384422014-06-20 21:57:33 +02006414 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006415 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6416 * remove remaining aio notifiers if we aren't called again.
6417 */
6418 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02006419
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006420 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006421 bs->drv->bdrv_detach_aio_context(bs);
6422 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006423
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006424 if (bs->quiesce_counter) {
6425 aio_enable_external(bs->aio_context);
6426 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006427 bs->aio_context = NULL;
6428}
6429
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006430static void bdrv_attach_aio_context(BlockDriverState *bs,
6431 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006432{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006433 BdrvAioNotifier *ban, *ban_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006434
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006435 if (bs->quiesce_counter) {
6436 aio_disable_external(new_context);
6437 }
6438
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006439 bs->aio_context = new_context;
6440
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006441 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006442 bs->drv->bdrv_attach_aio_context(bs, new_context);
6443 }
Max Reitz33384422014-06-20 21:57:33 +02006444
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006445 assert(!bs->walking_aio_notifiers);
6446 bs->walking_aio_notifiers = true;
6447 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6448 if (ban->deleted) {
6449 bdrv_do_remove_aio_context_notifier(ban);
6450 } else {
6451 ban->attached_aio_context(new_context, ban->opaque);
6452 }
Max Reitz33384422014-06-20 21:57:33 +02006453 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006454 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006455}
6456
Kevin Wolf42a65f02019-05-07 18:31:38 +02006457/*
6458 * Changes the AioContext used for fd handlers, timers, and BHs by this
6459 * BlockDriverState and all its children and parents.
6460 *
Max Reitz43eaaae2019-07-22 15:30:54 +02006461 * Must be called from the main AioContext.
6462 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02006463 * The caller must own the AioContext lock for the old AioContext of bs, but it
6464 * must not own the AioContext lock for new_context (unless new_context is the
6465 * same as the current context of bs).
6466 *
6467 * @ignore will accumulate all visited BdrvChild object. The caller is
6468 * responsible for freeing the list afterwards.
6469 */
Kevin Wolf53a7d042019-05-06 19:17:59 +02006470void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6471 AioContext *new_context, GSList **ignore)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006472{
Max Reitze037c092019-07-19 11:26:14 +02006473 AioContext *old_context = bdrv_get_aio_context(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02006474 BdrvChild *child;
6475
Max Reitz43eaaae2019-07-22 15:30:54 +02006476 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6477
Max Reitze037c092019-07-19 11:26:14 +02006478 if (old_context == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03006479 return;
6480 }
6481
Kevin Wolfd70d5952019-02-08 16:53:37 +01006482 bdrv_drained_begin(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02006483
6484 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006485 if (g_slist_find(*ignore, child)) {
6486 continue;
6487 }
6488 *ignore = g_slist_prepend(*ignore, child);
6489 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6490 }
6491 QLIST_FOREACH(child, &bs->parents, next_parent) {
6492 if (g_slist_find(*ignore, child)) {
6493 continue;
6494 }
Max Reitzbd86fb92020-05-13 13:05:13 +02006495 assert(child->klass->set_aio_ctx);
Kevin Wolf42a65f02019-05-07 18:31:38 +02006496 *ignore = g_slist_prepend(*ignore, child);
Max Reitzbd86fb92020-05-13 13:05:13 +02006497 child->klass->set_aio_ctx(child, new_context, ignore);
Kevin Wolf0d837082019-05-06 19:17:58 +02006498 }
6499
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006500 bdrv_detach_aio_context(bs);
6501
Max Reitze037c092019-07-19 11:26:14 +02006502 /* Acquire the new context, if necessary */
Max Reitz43eaaae2019-07-22 15:30:54 +02006503 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006504 aio_context_acquire(new_context);
6505 }
6506
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006507 bdrv_attach_aio_context(bs, new_context);
Max Reitze037c092019-07-19 11:26:14 +02006508
6509 /*
6510 * If this function was recursively called from
6511 * bdrv_set_aio_context_ignore(), there may be nodes in the
6512 * subtree that have not yet been moved to the new AioContext.
6513 * Release the old one so bdrv_drained_end() can poll them.
6514 */
Max Reitz43eaaae2019-07-22 15:30:54 +02006515 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006516 aio_context_release(old_context);
6517 }
6518
Kevin Wolfd70d5952019-02-08 16:53:37 +01006519 bdrv_drained_end(bs);
Max Reitze037c092019-07-19 11:26:14 +02006520
Max Reitz43eaaae2019-07-22 15:30:54 +02006521 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006522 aio_context_acquire(old_context);
6523 }
Max Reitz43eaaae2019-07-22 15:30:54 +02006524 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006525 aio_context_release(new_context);
6526 }
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006527}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02006528
Kevin Wolf5d231842019-05-06 19:17:56 +02006529static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6530 GSList **ignore, Error **errp)
6531{
6532 if (g_slist_find(*ignore, c)) {
6533 return true;
6534 }
6535 *ignore = g_slist_prepend(*ignore, c);
6536
Max Reitzbd86fb92020-05-13 13:05:13 +02006537 /*
6538 * A BdrvChildClass that doesn't handle AioContext changes cannot
6539 * tolerate any AioContext changes
6540 */
6541 if (!c->klass->can_set_aio_ctx) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006542 char *user = bdrv_child_user_desc(c);
6543 error_setg(errp, "Changing iothreads is not supported by %s", user);
6544 g_free(user);
6545 return false;
6546 }
Max Reitzbd86fb92020-05-13 13:05:13 +02006547 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006548 assert(!errp || *errp);
6549 return false;
6550 }
6551 return true;
6552}
6553
6554bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6555 GSList **ignore, Error **errp)
6556{
6557 if (g_slist_find(*ignore, c)) {
6558 return true;
6559 }
6560 *ignore = g_slist_prepend(*ignore, c);
6561 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
6562}
6563
6564/* @ignore will accumulate all visited BdrvChild object. The caller is
6565 * responsible for freeing the list afterwards. */
6566bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6567 GSList **ignore, Error **errp)
6568{
6569 BdrvChild *c;
6570
6571 if (bdrv_get_aio_context(bs) == ctx) {
6572 return true;
6573 }
6574
6575 QLIST_FOREACH(c, &bs->parents, next_parent) {
6576 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
6577 return false;
6578 }
6579 }
6580 QLIST_FOREACH(c, &bs->children, next) {
6581 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
6582 return false;
6583 }
6584 }
6585
6586 return true;
6587}
6588
6589int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6590 BdrvChild *ignore_child, Error **errp)
6591{
6592 GSList *ignore;
6593 bool ret;
6594
6595 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6596 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
6597 g_slist_free(ignore);
6598
6599 if (!ret) {
6600 return -EPERM;
6601 }
6602
Kevin Wolf53a7d042019-05-06 19:17:59 +02006603 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6604 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
6605 g_slist_free(ignore);
6606
Kevin Wolf5d231842019-05-06 19:17:56 +02006607 return 0;
6608}
6609
6610int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6611 Error **errp)
6612{
6613 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
6614}
6615
Max Reitz33384422014-06-20 21:57:33 +02006616void bdrv_add_aio_context_notifier(BlockDriverState *bs,
6617 void (*attached_aio_context)(AioContext *new_context, void *opaque),
6618 void (*detach_aio_context)(void *opaque), void *opaque)
6619{
6620 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
6621 *ban = (BdrvAioNotifier){
6622 .attached_aio_context = attached_aio_context,
6623 .detach_aio_context = detach_aio_context,
6624 .opaque = opaque
6625 };
6626
6627 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
6628}
6629
6630void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
6631 void (*attached_aio_context)(AioContext *,
6632 void *),
6633 void (*detach_aio_context)(void *),
6634 void *opaque)
6635{
6636 BdrvAioNotifier *ban, *ban_next;
6637
6638 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
6639 if (ban->attached_aio_context == attached_aio_context &&
6640 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006641 ban->opaque == opaque &&
6642 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02006643 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006644 if (bs->walking_aio_notifiers) {
6645 ban->deleted = true;
6646 } else {
6647 bdrv_do_remove_aio_context_notifier(ban);
6648 }
Max Reitz33384422014-06-20 21:57:33 +02006649 return;
6650 }
6651 }
6652
6653 abort();
6654}
6655
Max Reitz77485432014-10-27 11:12:50 +01006656int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02006657 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02006658 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02006659 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02006660{
Max Reitzd470ad42017-11-10 21:31:09 +01006661 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02006662 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01006663 return -ENOMEDIUM;
6664 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006665 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02006666 error_setg(errp, "Block driver '%s' does not support option amendment",
6667 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02006668 return -ENOTSUP;
6669 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02006670 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
6671 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02006672}
Benoît Canetf6186f42013-10-02 14:33:48 +02006673
Max Reitz5d69b5a2020-02-18 11:34:41 +01006674/*
6675 * This function checks whether the given @to_replace is allowed to be
6676 * replaced by a node that always shows the same data as @bs. This is
6677 * used for example to verify whether the mirror job can replace
6678 * @to_replace by the target mirrored from @bs.
6679 * To be replaceable, @bs and @to_replace may either be guaranteed to
6680 * always show the same data (because they are only connected through
6681 * filters), or some driver may allow replacing one of its children
6682 * because it can guarantee that this child's data is not visible at
6683 * all (for example, for dissenting quorum children that have no other
6684 * parents).
6685 */
6686bool bdrv_recurse_can_replace(BlockDriverState *bs,
6687 BlockDriverState *to_replace)
6688{
Max Reitz93393e62019-06-12 17:03:38 +02006689 BlockDriverState *filtered;
6690
Max Reitz5d69b5a2020-02-18 11:34:41 +01006691 if (!bs || !bs->drv) {
6692 return false;
6693 }
6694
6695 if (bs == to_replace) {
6696 return true;
6697 }
6698
6699 /* See what the driver can do */
6700 if (bs->drv->bdrv_recurse_can_replace) {
6701 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
6702 }
6703
6704 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02006705 filtered = bdrv_filter_bs(bs);
6706 if (filtered) {
6707 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01006708 }
6709
6710 /* Safe default */
6711 return false;
6712}
6713
Max Reitz810803a2020-02-18 11:34:44 +01006714/*
6715 * Check whether the given @node_name can be replaced by a node that
6716 * has the same data as @parent_bs. If so, return @node_name's BDS;
6717 * NULL otherwise.
6718 *
6719 * @node_name must be a (recursive) *child of @parent_bs (or this
6720 * function will return NULL).
6721 *
6722 * The result (whether the node can be replaced or not) is only valid
6723 * for as long as no graph or permission changes occur.
6724 */
Wen Congyange12f3782015-07-17 10:12:22 +08006725BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
6726 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02006727{
6728 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006729 AioContext *aio_context;
6730
Benoît Canet09158f02014-06-27 18:25:25 +02006731 if (!to_replace_bs) {
6732 error_setg(errp, "Node name '%s' not found", node_name);
6733 return NULL;
6734 }
6735
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006736 aio_context = bdrv_get_aio_context(to_replace_bs);
6737 aio_context_acquire(aio_context);
6738
Benoît Canet09158f02014-06-27 18:25:25 +02006739 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006740 to_replace_bs = NULL;
6741 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02006742 }
6743
6744 /* We don't want arbitrary node of the BDS chain to be replaced only the top
6745 * most non filter in order to prevent data corruption.
6746 * Another benefit is that this tests exclude backing files which are
6747 * blocked by the backing blockers.
6748 */
Max Reitz810803a2020-02-18 11:34:44 +01006749 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
6750 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
6751 "because it cannot be guaranteed that doing so would not "
6752 "lead to an abrupt change of visible data",
6753 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006754 to_replace_bs = NULL;
6755 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02006756 }
6757
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006758out:
6759 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02006760 return to_replace_bs;
6761}
Ming Lei448ad912014-07-04 18:04:33 +08006762
Max Reitz97e2f022019-02-01 20:29:27 +01006763/**
6764 * Iterates through the list of runtime option keys that are said to
6765 * be "strong" for a BDS. An option is called "strong" if it changes
6766 * a BDS's data. For example, the null block driver's "size" and
6767 * "read-zeroes" options are strong, but its "latency-ns" option is
6768 * not.
6769 *
6770 * If a key returned by this function ends with a dot, all options
6771 * starting with that prefix are strong.
6772 */
6773static const char *const *strong_options(BlockDriverState *bs,
6774 const char *const *curopt)
6775{
6776 static const char *const global_options[] = {
6777 "driver", "filename", NULL
6778 };
6779
6780 if (!curopt) {
6781 return &global_options[0];
6782 }
6783
6784 curopt++;
6785 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
6786 curopt = bs->drv->strong_runtime_opts;
6787 }
6788
6789 return (curopt && *curopt) ? curopt : NULL;
6790}
6791
6792/**
6793 * Copies all strong runtime options from bs->options to the given
6794 * QDict. The set of strong option keys is determined by invoking
6795 * strong_options().
6796 *
6797 * Returns true iff any strong option was present in bs->options (and
6798 * thus copied to the target QDict) with the exception of "filename"
6799 * and "driver". The caller is expected to use this value to decide
6800 * whether the existence of strong options prevents the generation of
6801 * a plain filename.
6802 */
6803static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
6804{
6805 bool found_any = false;
6806 const char *const *option_name = NULL;
6807
6808 if (!bs->drv) {
6809 return false;
6810 }
6811
6812 while ((option_name = strong_options(bs, option_name))) {
6813 bool option_given = false;
6814
6815 assert(strlen(*option_name) > 0);
6816 if ((*option_name)[strlen(*option_name) - 1] != '.') {
6817 QObject *entry = qdict_get(bs->options, *option_name);
6818 if (!entry) {
6819 continue;
6820 }
6821
6822 qdict_put_obj(d, *option_name, qobject_ref(entry));
6823 option_given = true;
6824 } else {
6825 const QDictEntry *entry;
6826 for (entry = qdict_first(bs->options); entry;
6827 entry = qdict_next(bs->options, entry))
6828 {
6829 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
6830 qdict_put_obj(d, qdict_entry_key(entry),
6831 qobject_ref(qdict_entry_value(entry)));
6832 option_given = true;
6833 }
6834 }
6835 }
6836
6837 /* While "driver" and "filename" need to be included in a JSON filename,
6838 * their existence does not prohibit generation of a plain filename. */
6839 if (!found_any && option_given &&
6840 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
6841 {
6842 found_any = true;
6843 }
6844 }
6845
Max Reitz62a01a272019-02-01 20:29:34 +01006846 if (!qdict_haskey(d, "driver")) {
6847 /* Drivers created with bdrv_new_open_driver() may not have a
6848 * @driver option. Add it here. */
6849 qdict_put_str(d, "driver", bs->drv->format_name);
6850 }
6851
Max Reitz97e2f022019-02-01 20:29:27 +01006852 return found_any;
6853}
6854
Max Reitz90993622019-02-01 20:29:09 +01006855/* Note: This function may return false positives; it may return true
6856 * even if opening the backing file specified by bs's image header
6857 * would result in exactly bs->backing. */
Max Reitz0b877d02018-08-01 20:34:11 +02006858bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01006859{
6860 if (bs->backing) {
6861 return strcmp(bs->auto_backing_file,
6862 bs->backing->bs->filename);
6863 } else {
6864 /* No backing BDS, so if the image header reports any backing
6865 * file, it must have been suppressed */
6866 return bs->auto_backing_file[0] != '\0';
6867 }
6868}
6869
Max Reitz91af7012014-07-18 20:24:56 +02006870/* Updates the following BDS fields:
6871 * - exact_filename: A filename which may be used for opening a block device
6872 * which (mostly) equals the given BDS (even without any
6873 * other options; so reading and writing must return the same
6874 * results, but caching etc. may be different)
6875 * - full_open_options: Options which, when given when opening a block device
6876 * (without a filename), result in a BDS (mostly)
6877 * equalling the given one
6878 * - filename: If exact_filename is set, it is copied here. Otherwise,
6879 * full_open_options is converted to a JSON object, prefixed with
6880 * "json:" (for use through the JSON pseudo protocol) and put here.
6881 */
6882void bdrv_refresh_filename(BlockDriverState *bs)
6883{
6884 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01006885 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02006886 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02006887 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01006888 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01006889 bool generate_json_filename; /* Whether our default implementation should
6890 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02006891
6892 if (!drv) {
6893 return;
6894 }
6895
Max Reitze24518e2019-02-01 20:29:06 +01006896 /* This BDS's file name may depend on any of its children's file names, so
6897 * refresh those first */
6898 QLIST_FOREACH(child, &bs->children, next) {
6899 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02006900 }
6901
Max Reitzbb808d52019-02-01 20:29:07 +01006902 if (bs->implicit) {
6903 /* For implicit nodes, just copy everything from the single child */
6904 child = QLIST_FIRST(&bs->children);
6905 assert(QLIST_NEXT(child, next) == NULL);
6906
6907 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
6908 child->bs->exact_filename);
6909 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
6910
Pan Nengyuancb895612020-01-16 16:56:00 +08006911 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01006912 bs->full_open_options = qobject_ref(child->bs->full_open_options);
6913
6914 return;
6915 }
6916
Max Reitz90993622019-02-01 20:29:09 +01006917 backing_overridden = bdrv_backing_overridden(bs);
6918
6919 if (bs->open_flags & BDRV_O_NO_IO) {
6920 /* Without I/O, the backing file does not change anything.
6921 * Therefore, in such a case (primarily qemu-img), we can
6922 * pretend the backing file has not been overridden even if
6923 * it technically has been. */
6924 backing_overridden = false;
6925 }
6926
Max Reitz97e2f022019-02-01 20:29:27 +01006927 /* Gather the options QDict */
6928 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01006929 generate_json_filename = append_strong_runtime_options(opts, bs);
6930 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01006931
6932 if (drv->bdrv_gather_child_options) {
6933 /* Some block drivers may not want to present all of their children's
6934 * options, or name them differently from BdrvChild.name */
6935 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
6936 } else {
6937 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02006938 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01006939 /* We can skip the backing BDS if it has not been overridden */
6940 continue;
6941 }
6942
6943 qdict_put(opts, child->name,
6944 qobject_ref(child->bs->full_open_options));
6945 }
6946
6947 if (backing_overridden && !bs->backing) {
6948 /* Force no backing file */
6949 qdict_put_null(opts, "backing");
6950 }
6951 }
6952
6953 qobject_unref(bs->full_open_options);
6954 bs->full_open_options = opts;
6955
Max Reitz52f72d62019-06-12 17:43:03 +02006956 primary_child_bs = bdrv_primary_bs(bs);
6957
Max Reitz998b3a12019-02-01 20:29:28 +01006958 if (drv->bdrv_refresh_filename) {
6959 /* Obsolete information is of no use here, so drop the old file name
6960 * information before refreshing it */
6961 bs->exact_filename[0] = '\0';
6962
6963 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02006964 } else if (primary_child_bs) {
6965 /*
6966 * Try to reconstruct valid information from the underlying
6967 * file -- this only works for format nodes (filter nodes
6968 * cannot be probed and as such must be selected by the user
6969 * either through an options dict, or through a special
6970 * filename which the filter driver must construct in its
6971 * .bdrv_refresh_filename() implementation).
6972 */
Max Reitz998b3a12019-02-01 20:29:28 +01006973
6974 bs->exact_filename[0] = '\0';
6975
Max Reitzfb695c72019-02-01 20:29:29 +01006976 /*
6977 * We can use the underlying file's filename if:
6978 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02006979 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01006980 * - the file is a protocol BDS, and
6981 * - opening that file (as this BDS's format) will automatically create
6982 * the BDS tree we have right now, that is:
6983 * - the user did not significantly change this BDS's behavior with
6984 * some explicit (strong) options
6985 * - no non-file child of this BDS has been overridden by the user
6986 * Both of these conditions are represented by generate_json_filename.
6987 */
Max Reitz52f72d62019-06-12 17:43:03 +02006988 if (primary_child_bs->exact_filename[0] &&
6989 primary_child_bs->drv->bdrv_file_open &&
6990 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01006991 {
Max Reitz52f72d62019-06-12 17:43:03 +02006992 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01006993 }
6994 }
6995
Max Reitz91af7012014-07-18 20:24:56 +02006996 if (bs->exact_filename[0]) {
6997 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01006998 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01006999 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007000 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007001 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007002 /* Give user a hint if we truncated things. */
7003 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7004 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007005 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007006 }
7007}
Wen Congyange06018a2016-05-10 15:36:37 +08007008
Max Reitz1e89d0f2019-02-01 20:29:18 +01007009char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7010{
7011 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007012 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007013
7014 if (!drv) {
7015 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7016 return NULL;
7017 }
7018
7019 if (drv->bdrv_dirname) {
7020 return drv->bdrv_dirname(bs, errp);
7021 }
7022
Max Reitz52f72d62019-06-12 17:43:03 +02007023 child_bs = bdrv_primary_bs(bs);
7024 if (child_bs) {
7025 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007026 }
7027
7028 bdrv_refresh_filename(bs);
7029 if (bs->exact_filename[0] != '\0') {
7030 return path_combine(bs->exact_filename, "");
7031 }
7032
7033 error_setg(errp, "Cannot generate a base directory for %s nodes",
7034 drv->format_name);
7035 return NULL;
7036}
7037
Wen Congyange06018a2016-05-10 15:36:37 +08007038/*
7039 * Hot add/remove a BDS's child. So the user can take a child offline when
7040 * it is broken and take a new child online
7041 */
7042void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7043 Error **errp)
7044{
7045
7046 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7047 error_setg(errp, "The node %s does not support adding a child",
7048 bdrv_get_device_or_node_name(parent_bs));
7049 return;
7050 }
7051
7052 if (!QLIST_EMPTY(&child_bs->parents)) {
7053 error_setg(errp, "The node %s already has a parent",
7054 child_bs->node_name);
7055 return;
7056 }
7057
7058 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7059}
7060
7061void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7062{
7063 BdrvChild *tmp;
7064
7065 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7066 error_setg(errp, "The node %s does not support removing a child",
7067 bdrv_get_device_or_node_name(parent_bs));
7068 return;
7069 }
7070
7071 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7072 if (tmp == child) {
7073 break;
7074 }
7075 }
7076
7077 if (!tmp) {
7078 error_setg(errp, "The node %s does not have a child named %s",
7079 bdrv_get_device_or_node_name(parent_bs),
7080 bdrv_get_device_or_node_name(child->bs));
7081 return;
7082 }
7083
7084 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7085}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007086
7087int bdrv_make_empty(BdrvChild *c, Error **errp)
7088{
7089 BlockDriver *drv = c->bs->drv;
7090 int ret;
7091
7092 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7093
7094 if (!drv->bdrv_make_empty) {
7095 error_setg(errp, "%s does not support emptying nodes",
7096 drv->format_name);
7097 return -ENOTSUP;
7098 }
7099
7100 ret = drv->bdrv_make_empty(c->bs);
7101 if (ret < 0) {
7102 error_setg_errno(errp, -ret, "Failed to empty %s",
7103 c->bs->filename);
7104 return ret;
7105 }
7106
7107 return 0;
7108}
Max Reitz9a6fc882019-05-31 15:23:11 +02007109
7110/*
7111 * Return the child that @bs acts as an overlay for, and from which data may be
7112 * copied in COW or COR operations. Usually this is the backing file.
7113 */
7114BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7115{
7116 if (!bs || !bs->drv) {
7117 return NULL;
7118 }
7119
7120 if (bs->drv->is_filter) {
7121 return NULL;
7122 }
7123
7124 if (!bs->backing) {
7125 return NULL;
7126 }
7127
7128 assert(bs->backing->role & BDRV_CHILD_COW);
7129 return bs->backing;
7130}
7131
7132/*
7133 * If @bs acts as a filter for exactly one of its children, return
7134 * that child.
7135 */
7136BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7137{
7138 BdrvChild *c;
7139
7140 if (!bs || !bs->drv) {
7141 return NULL;
7142 }
7143
7144 if (!bs->drv->is_filter) {
7145 return NULL;
7146 }
7147
7148 /* Only one of @backing or @file may be used */
7149 assert(!(bs->backing && bs->file));
7150
7151 c = bs->backing ?: bs->file;
7152 if (!c) {
7153 return NULL;
7154 }
7155
7156 assert(c->role & BDRV_CHILD_FILTERED);
7157 return c;
7158}
7159
7160/*
7161 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7162 * whichever is non-NULL.
7163 *
7164 * Return NULL if both are NULL.
7165 */
7166BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7167{
7168 BdrvChild *cow_child = bdrv_cow_child(bs);
7169 BdrvChild *filter_child = bdrv_filter_child(bs);
7170
7171 /* Filter nodes cannot have COW backing files */
7172 assert(!(cow_child && filter_child));
7173
7174 return cow_child ?: filter_child;
7175}
7176
7177/*
7178 * Return the primary child of this node: For filters, that is the
7179 * filtered child. For other nodes, that is usually the child storing
7180 * metadata.
7181 * (A generally more helpful description is that this is (usually) the
7182 * child that has the same filename as @bs.)
7183 *
7184 * Drivers do not necessarily have a primary child; for example quorum
7185 * does not.
7186 */
7187BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7188{
7189 BdrvChild *c, *found = NULL;
7190
7191 QLIST_FOREACH(c, &bs->children, next) {
7192 if (c->role & BDRV_CHILD_PRIMARY) {
7193 assert(!found);
7194 found = c;
7195 }
7196 }
7197
7198 return found;
7199}
Max Reitzd38d7eb2019-06-12 15:06:37 +02007200
7201static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7202 bool stop_on_explicit_filter)
7203{
7204 BdrvChild *c;
7205
7206 if (!bs) {
7207 return NULL;
7208 }
7209
7210 while (!(stop_on_explicit_filter && !bs->implicit)) {
7211 c = bdrv_filter_child(bs);
7212 if (!c) {
7213 /*
7214 * A filter that is embedded in a working block graph must
7215 * have a child. Assert this here so this function does
7216 * not return a filter node that is not expected by the
7217 * caller.
7218 */
7219 assert(!bs->drv || !bs->drv->is_filter);
7220 break;
7221 }
7222 bs = c->bs;
7223 }
7224 /*
7225 * Note that this treats nodes with bs->drv == NULL as not being
7226 * filters (bs->drv == NULL should be replaced by something else
7227 * anyway).
7228 * The advantage of this behavior is that this function will thus
7229 * always return a non-NULL value (given a non-NULL @bs).
7230 */
7231
7232 return bs;
7233}
7234
7235/*
7236 * Return the first BDS that has not been added implicitly or that
7237 * does not have a filtered child down the chain starting from @bs
7238 * (including @bs itself).
7239 */
7240BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7241{
7242 return bdrv_do_skip_filters(bs, true);
7243}
7244
7245/*
7246 * Return the first BDS that does not have a filtered child down the
7247 * chain starting from @bs (including @bs itself).
7248 */
7249BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7250{
7251 return bdrv_do_skip_filters(bs, false);
7252}
7253
7254/*
7255 * For a backing chain, return the first non-filter backing image of
7256 * the first non-filter image.
7257 */
7258BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7259{
7260 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
7261}