blob: 8f177504d4966ff882bc6c710de2a7e635938f6f [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)) {
220 QString *fat_filename;
221
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 "./" */
228 fat_filename = qstring_from_str("./");
229 qstring_append(fat_filename, filename);
230
231 assert(!path_has_protocol(qstring_get_str(fat_filename)));
232
233 qdict_put(options, "filename", fat_filename);
234 } else {
235 /* If no protocol prefix was detected, we can use the shortened
236 * filename as-is */
237 qdict_put_str(options, "filename", filename);
238 }
239 }
240}
241
242
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200243/* Returns whether the image file is opened as read-only. Note that this can
244 * return false and writing to the image file is still not possible because the
245 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400246bool bdrv_is_read_only(BlockDriverState *bs)
247{
248 return bs->read_only;
249}
250
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200251int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
252 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400253{
Jeff Codye2b82472017-04-07 16:55:26 -0400254 /* Do not set read_only if copy_on_read is enabled */
255 if (bs->copy_on_read && read_only) {
256 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
257 bdrv_get_device_or_node_name(bs));
258 return -EINVAL;
259 }
260
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400261 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200262 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
263 !ignore_allow_rdw)
264 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400265 error_setg(errp, "Node '%s' is read only",
266 bdrv_get_device_or_node_name(bs));
267 return -EPERM;
268 }
269
Jeff Cody45803a02017-04-07 16:55:29 -0400270 return 0;
271}
272
Kevin Wolfeaa24102018-10-12 11:27:41 +0200273/*
274 * Called by a driver that can only provide a read-only image.
275 *
276 * Returns 0 if the node is already read-only or it could switch the node to
277 * read-only because BDRV_O_AUTO_RDONLY is set.
278 *
279 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
280 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
281 * is not NULL, it is used as the error message for the Error object.
282 */
283int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
284 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400285{
286 int ret = 0;
287
Kevin Wolfeaa24102018-10-12 11:27:41 +0200288 if (!(bs->open_flags & BDRV_O_RDWR)) {
289 return 0;
290 }
291 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
292 goto fail;
293 }
294
295 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400296 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200297 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400298 }
299
Kevin Wolfeaa24102018-10-12 11:27:41 +0200300 bs->read_only = true;
301 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200302
Jeff Codye2b82472017-04-07 16:55:26 -0400303 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200304
305fail:
306 error_setg(errp, "%s", errmsg ?: "Image is read-only");
307 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400308}
309
Max Reitz645ae7d2019-02-01 20:29:14 +0100310/*
311 * If @backing is empty, this function returns NULL without setting
312 * @errp. In all other cases, NULL will only be returned with @errp
313 * set.
314 *
315 * Therefore, a return value of NULL without @errp set means that
316 * there is no backing file; if @errp is set, there is one but its
317 * absolute filename cannot be generated.
318 */
319char *bdrv_get_full_backing_filename_from_filename(const char *backed,
320 const char *backing,
321 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100322{
Max Reitz645ae7d2019-02-01 20:29:14 +0100323 if (backing[0] == '\0') {
324 return NULL;
325 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
326 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100327 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
328 error_setg(errp, "Cannot use relative backing file names for '%s'",
329 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100330 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100331 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100332 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100333 }
334}
335
Max Reitz9f4793d2019-02-01 20:29:16 +0100336/*
337 * If @filename is empty or NULL, this function returns NULL without
338 * setting @errp. In all other cases, NULL will only be returned with
339 * @errp set.
340 */
341static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
342 const char *filename, Error **errp)
343{
Max Reitz8df68612019-02-01 20:29:23 +0100344 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100345
Max Reitz8df68612019-02-01 20:29:23 +0100346 if (!filename || filename[0] == '\0') {
347 return NULL;
348 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
349 return g_strdup(filename);
350 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100351
Max Reitz8df68612019-02-01 20:29:23 +0100352 dir = bdrv_dirname(relative_to, errp);
353 if (!dir) {
354 return NULL;
355 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100356
Max Reitz8df68612019-02-01 20:29:23 +0100357 full_name = g_strconcat(dir, filename, NULL);
358 g_free(dir);
359 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100360}
361
Max Reitz6b6833c2019-02-01 20:29:15 +0100362char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200363{
Max Reitz9f4793d2019-02-01 20:29:16 +0100364 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200365}
366
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100367void bdrv_register(BlockDriver *bdrv)
368{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100369 assert(bdrv->format_name);
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100370 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000371}
bellardb3380822004-03-14 21:38:54 +0000372
Markus Armbrustere4e99862014-10-07 13:59:03 +0200373BlockDriverState *bdrv_new(void)
374{
375 BlockDriverState *bs;
376 int i;
377
Markus Armbruster5839e532014-08-19 10:31:08 +0200378 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800379 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800380 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
381 QLIST_INIT(&bs->op_blockers[i]);
382 }
Stefan Hajnoczid616b222013-06-24 17:13:10 +0200383 notifier_with_return_list_init(&bs->before_write_notifiers);
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200384 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200385 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800386 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200387 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200388
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300389 qemu_co_queue_init(&bs->flush_queue);
390
Kevin Wolf0f122642018-03-28 18:29:18 +0200391 for (i = 0; i < bdrv_drain_all_count; i++) {
392 bdrv_drained_begin(bs);
393 }
394
Max Reitz2c1d04e2016-01-29 16:36:11 +0100395 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
396
bellardb3380822004-03-14 21:38:54 +0000397 return bs;
398}
399
Marc Mari88d88792016-08-12 09:27:03 -0400400static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000401{
402 BlockDriver *drv1;
Marc Mari88d88792016-08-12 09:27:03 -0400403
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100404 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
405 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000406 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100407 }
bellardea2384d2004-08-01 21:59:26 +0000408 }
Marc Mari88d88792016-08-12 09:27:03 -0400409
bellardea2384d2004-08-01 21:59:26 +0000410 return NULL;
411}
412
Marc Mari88d88792016-08-12 09:27:03 -0400413BlockDriver *bdrv_find_format(const char *format_name)
414{
415 BlockDriver *drv1;
416 int i;
417
418 drv1 = bdrv_do_find_format(format_name);
419 if (drv1) {
420 return drv1;
421 }
422
423 /* The driver isn't registered, maybe we need to load a module */
424 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
425 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
426 block_module_load_one(block_driver_modules[i].library_name);
427 break;
428 }
429 }
430
431 return bdrv_do_find_format(format_name);
432}
433
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300434static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100435{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800436 static const char *whitelist_rw[] = {
437 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200438 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800439 };
440 static const char *whitelist_ro[] = {
441 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200442 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100443 };
444 const char **p;
445
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800446 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100447 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800448 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100449
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800450 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300451 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100452 return 1;
453 }
454 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800455 if (read_only) {
456 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300457 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800458 return 1;
459 }
460 }
461 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100462 return 0;
463}
464
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300465int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
466{
467 return bdrv_format_is_whitelisted(drv->format_name, read_only);
468}
469
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000470bool bdrv_uses_whitelist(void)
471{
472 return use_bdrv_whitelist;
473}
474
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800475typedef struct CreateCo {
476 BlockDriver *drv;
477 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800478 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800479 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200480 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800481} CreateCo;
482
483static void coroutine_fn bdrv_create_co_entry(void *opaque)
484{
Max Reitzcc84d902013-09-06 17:14:26 +0200485 Error *local_err = NULL;
486 int ret;
487
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800488 CreateCo *cco = opaque;
489 assert(cco->drv);
490
Maxim Levitskyb92902d2020-03-26 03:12:17 +0200491 ret = cco->drv->bdrv_co_create_opts(cco->drv,
492 cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300493 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200494 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800495}
496
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200497int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800498 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000499{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800500 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200501
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800502 Coroutine *co;
503 CreateCo cco = {
504 .drv = drv,
505 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800506 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800507 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200508 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800509 };
510
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100511 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200512 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300513 ret = -ENOTSUP;
514 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800515 }
516
517 if (qemu_in_coroutine()) {
518 /* Fast-path if already in coroutine context */
519 bdrv_create_co_entry(&cco);
520 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200521 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
522 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800523 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200524 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800525 }
526 }
527
528 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200529 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100530 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200531 error_propagate(errp, cco.err);
532 } else {
533 error_setg_errno(errp, -ret, "Could not create image");
534 }
535 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800536
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300537out:
538 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800539 return ret;
bellardea2384d2004-08-01 21:59:26 +0000540}
541
Max Reitzfd171462020-01-22 17:45:29 +0100542/**
543 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
544 * least the given @minimum_size.
545 *
546 * On success, return @blk's actual length.
547 * Otherwise, return -errno.
548 */
549static int64_t create_file_fallback_truncate(BlockBackend *blk,
550 int64_t minimum_size, Error **errp)
551{
552 Error *local_err = NULL;
553 int64_t size;
554 int ret;
555
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200556 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
557 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100558 if (ret < 0 && ret != -ENOTSUP) {
559 error_propagate(errp, local_err);
560 return ret;
561 }
562
563 size = blk_getlength(blk);
564 if (size < 0) {
565 error_free(local_err);
566 error_setg_errno(errp, -size,
567 "Failed to inquire the new image file's length");
568 return size;
569 }
570
571 if (size < minimum_size) {
572 /* Need to grow the image, but we failed to do that */
573 error_propagate(errp, local_err);
574 return -ENOTSUP;
575 }
576
577 error_free(local_err);
578 local_err = NULL;
579
580 return size;
581}
582
583/**
584 * Helper function for bdrv_create_file_fallback(): Zero the first
585 * sector to remove any potentially pre-existing image header.
586 */
587static int create_file_fallback_zero_first_sector(BlockBackend *blk,
588 int64_t current_size,
589 Error **errp)
590{
591 int64_t bytes_to_clear;
592 int ret;
593
594 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
595 if (bytes_to_clear) {
596 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
597 if (ret < 0) {
598 error_setg_errno(errp, -ret,
599 "Failed to clear the new image's first sector");
600 return ret;
601 }
602 }
603
604 return 0;
605}
606
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200607/**
608 * Simple implementation of bdrv_co_create_opts for protocol drivers
609 * which only support creation via opening a file
610 * (usually existing raw storage device)
611 */
612int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
613 const char *filename,
614 QemuOpts *opts,
615 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100616{
617 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100618 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100619 int64_t size = 0;
620 char *buf = NULL;
621 PreallocMode prealloc;
622 Error *local_err = NULL;
623 int ret;
624
625 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
626 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
627 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
628 PREALLOC_MODE_OFF, &local_err);
629 g_free(buf);
630 if (local_err) {
631 error_propagate(errp, local_err);
632 return -EINVAL;
633 }
634
635 if (prealloc != PREALLOC_MODE_OFF) {
636 error_setg(errp, "Unsupported preallocation mode '%s'",
637 PreallocMode_str(prealloc));
638 return -ENOTSUP;
639 }
640
Max Reitzeeea1fa2020-02-25 16:56:18 +0100641 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100642 qdict_put_str(options, "driver", drv->format_name);
643
644 blk = blk_new_open(filename, NULL, options,
645 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
646 if (!blk) {
647 error_prepend(errp, "Protocol driver '%s' does not support image "
648 "creation, and opening the image failed: ",
649 drv->format_name);
650 return -EINVAL;
651 }
652
653 size = create_file_fallback_truncate(blk, size, errp);
654 if (size < 0) {
655 ret = size;
656 goto out;
657 }
658
659 ret = create_file_fallback_zero_first_sector(blk, size, errp);
660 if (ret < 0) {
661 goto out;
662 }
663
664 ret = 0;
665out:
666 blk_unref(blk);
667 return ret;
668}
669
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800670int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200671{
672 BlockDriver *drv;
673
Max Reitzb65a5e12015-02-05 13:58:12 -0500674 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200675 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000676 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200677 }
678
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200679 return bdrv_create(drv, filename, opts, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200680}
681
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300682int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
683{
684 Error *local_err = NULL;
685 int ret;
686
687 assert(bs != NULL);
688
689 if (!bs->drv) {
690 error_setg(errp, "Block node '%s' is not opened", bs->filename);
691 return -ENOMEDIUM;
692 }
693
694 if (!bs->drv->bdrv_co_delete_file) {
695 error_setg(errp, "Driver '%s' does not support image deletion",
696 bs->drv->format_name);
697 return -ENOTSUP;
698 }
699
700 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
701 if (ret < 0) {
702 error_propagate(errp, local_err);
703 }
704
705 return ret;
706}
707
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100708/**
709 * Try to get @bs's logical and physical block size.
710 * On success, store them in @bsz struct and return 0.
711 * On failure return -errno.
712 * @bs must not be empty.
713 */
714int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
715{
716 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200717 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100718
719 if (drv && drv->bdrv_probe_blocksizes) {
720 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200721 } else if (filtered) {
722 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100723 }
724
725 return -ENOTSUP;
726}
727
728/**
729 * Try to get @bs's geometry (cyls, heads, sectors).
730 * On success, store them in @geo struct and return 0.
731 * On failure return -errno.
732 * @bs must not be empty.
733 */
734int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
735{
736 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200737 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100738
739 if (drv && drv->bdrv_probe_geometry) {
740 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200741 } else if (filtered) {
742 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100743 }
744
745 return -ENOTSUP;
746}
747
Jim Meyeringeba25052012-05-28 09:27:54 +0200748/*
749 * Create a uniquely-named empty temporary file.
750 * Return 0 upon success, otherwise a negative errno value.
751 */
752int get_tmp_filename(char *filename, int size)
753{
bellardd5249392004-08-03 21:14:23 +0000754#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000755 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200756 /* GetTempFileName requires that its output buffer (4th param)
757 have length MAX_PATH or greater. */
758 assert(size >= MAX_PATH);
759 return (GetTempPath(MAX_PATH, temp_dir)
760 && GetTempFileName(temp_dir, "qem", 0, filename)
761 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000762#else
bellardea2384d2004-08-01 21:59:26 +0000763 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000764 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000765 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530766 if (!tmpdir) {
767 tmpdir = "/var/tmp";
768 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200769 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
770 return -EOVERFLOW;
771 }
bellardea2384d2004-08-01 21:59:26 +0000772 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800773 if (fd < 0) {
774 return -errno;
775 }
776 if (close(fd) != 0) {
777 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200778 return -errno;
779 }
780 return 0;
bellardd5249392004-08-03 21:14:23 +0000781#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200782}
bellardea2384d2004-08-01 21:59:26 +0000783
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200784/*
785 * Detect host devices. By convention, /dev/cdrom[N] is always
786 * recognized as a host CDROM.
787 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200788static BlockDriver *find_hdev_driver(const char *filename)
789{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200790 int score_max = 0, score;
791 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200792
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100793 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200794 if (d->bdrv_probe_device) {
795 score = d->bdrv_probe_device(filename);
796 if (score > score_max) {
797 score_max = score;
798 drv = d;
799 }
800 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200801 }
802
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200803 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200804}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200805
Marc Mari88d88792016-08-12 09:27:03 -0400806static BlockDriver *bdrv_do_find_protocol(const char *protocol)
807{
808 BlockDriver *drv1;
809
810 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
811 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
812 return drv1;
813 }
814 }
815
816 return NULL;
817}
818
Kevin Wolf98289622013-07-10 15:47:39 +0200819BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500820 bool allow_protocol_prefix,
821 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200822{
823 BlockDriver *drv1;
824 char protocol[128];
825 int len;
826 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400827 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200828
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200829 /* TODO Drivers without bdrv_file_open must be specified explicitly */
830
Christoph Hellwig39508e72010-06-23 12:25:17 +0200831 /*
832 * XXX(hch): we really should not let host device detection
833 * override an explicit protocol specification, but moving this
834 * later breaks access to device names with colons in them.
835 * Thanks to the brain-dead persistent naming schemes on udev-
836 * based Linux systems those actually are quite common.
837 */
838 drv1 = find_hdev_driver(filename);
839 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200840 return drv1;
841 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200842
Kevin Wolf98289622013-07-10 15:47:39 +0200843 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100844 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200845 }
Kevin Wolf98289622013-07-10 15:47:39 +0200846
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000847 p = strchr(filename, ':');
848 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200849 len = p - filename;
850 if (len > sizeof(protocol) - 1)
851 len = sizeof(protocol) - 1;
852 memcpy(protocol, filename, len);
853 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400854
855 drv1 = bdrv_do_find_protocol(protocol);
856 if (drv1) {
857 return drv1;
858 }
859
860 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
861 if (block_driver_modules[i].protocol_name &&
862 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
863 block_module_load_one(block_driver_modules[i].library_name);
864 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200865 }
866 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500867
Marc Mari88d88792016-08-12 09:27:03 -0400868 drv1 = bdrv_do_find_protocol(protocol);
869 if (!drv1) {
870 error_setg(errp, "Unknown protocol '%s'", protocol);
871 }
872 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200873}
874
Markus Armbrusterc6684242014-11-20 16:27:10 +0100875/*
876 * Guess image format by probing its contents.
877 * This is not a good idea when your image is raw (CVE-2008-2004), but
878 * we do it anyway for backward compatibility.
879 *
880 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100881 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
882 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100883 * @filename is its filename.
884 *
885 * For all block drivers, call the bdrv_probe() method to get its
886 * probing score.
887 * Return the first block driver with the highest probing score.
888 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100889BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
890 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100891{
892 int score_max = 0, score;
893 BlockDriver *drv = NULL, *d;
894
895 QLIST_FOREACH(d, &bdrv_drivers, list) {
896 if (d->bdrv_probe) {
897 score = d->bdrv_probe(buf, buf_size, filename);
898 if (score > score_max) {
899 score_max = score;
900 drv = d;
901 }
902 }
903 }
904
905 return drv;
906}
907
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100908static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200909 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000910{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100911 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100912 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100913 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700914
Kevin Wolf08a00552010-06-01 18:37:31 +0200915 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100916 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100917 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200918 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700919 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700920
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100921 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000922 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200923 error_setg_errno(errp, -ret, "Could not read image for determining its "
924 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +0200925 *pdrv = NULL;
926 return ret;
bellard83f64092006-08-01 16:21:11 +0000927 }
928
Markus Armbrusterc6684242014-11-20 16:27:10 +0100929 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +0200930 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200931 error_setg(errp, "Could not determine image format: No compatible "
932 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +0200933 ret = -ENOENT;
934 }
935 *pdrv = drv;
936 return ret;
bellardea2384d2004-08-01 21:59:26 +0000937}
938
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100939/**
940 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +0200941 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100942 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +0200943int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100944{
945 BlockDriver *drv = bs->drv;
946
Max Reitzd470ad42017-11-10 21:31:09 +0100947 if (!drv) {
948 return -ENOMEDIUM;
949 }
950
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700951 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +0300952 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700953 return 0;
954
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100955 /* query actual device if possible, otherwise just trust the hint */
956 if (drv->bdrv_getlength) {
957 int64_t length = drv->bdrv_getlength(bs);
958 if (length < 0) {
959 return length;
960 }
Fam Zheng7e382002013-11-06 19:48:06 +0800961 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100962 }
963
964 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +0300965
966 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
967 return -EFBIG;
968 }
969
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100970 return 0;
971}
972
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100973/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +0100974 * Combines a QDict of new block driver @options with any missing options taken
975 * from @old_options, so that leaving out an option defaults to its old value.
976 */
977static void bdrv_join_options(BlockDriverState *bs, QDict *options,
978 QDict *old_options)
979{
980 if (bs->drv && bs->drv->bdrv_join_options) {
981 bs->drv->bdrv_join_options(options, old_options);
982 } else {
983 qdict_join(options, old_options, false);
984 }
985}
986
Alberto Garcia543770b2018-09-06 12:37:09 +0300987static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
988 int open_flags,
989 Error **errp)
990{
991 Error *local_err = NULL;
992 char *value = qemu_opt_get_del(opts, "detect-zeroes");
993 BlockdevDetectZeroesOptions detect_zeroes =
994 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
995 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
996 g_free(value);
997 if (local_err) {
998 error_propagate(errp, local_err);
999 return detect_zeroes;
1000 }
1001
1002 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1003 !(open_flags & BDRV_O_UNMAP))
1004 {
1005 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1006 "without setting discard operation to unmap");
1007 }
1008
1009 return detect_zeroes;
1010}
1011
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001012/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001013 * Set open flags for aio engine
1014 *
1015 * Return 0 on success, -1 if the engine specified is invalid
1016 */
1017int bdrv_parse_aio(const char *mode, int *flags)
1018{
1019 if (!strcmp(mode, "threads")) {
1020 /* do nothing, default */
1021 } else if (!strcmp(mode, "native")) {
1022 *flags |= BDRV_O_NATIVE_AIO;
1023#ifdef CONFIG_LINUX_IO_URING
1024 } else if (!strcmp(mode, "io_uring")) {
1025 *flags |= BDRV_O_IO_URING;
1026#endif
1027 } else {
1028 return -1;
1029 }
1030
1031 return 0;
1032}
1033
1034/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001035 * Set open flags for a given discard mode
1036 *
1037 * Return 0 on success, -1 if the discard mode was invalid.
1038 */
1039int bdrv_parse_discard_flags(const char *mode, int *flags)
1040{
1041 *flags &= ~BDRV_O_UNMAP;
1042
1043 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1044 /* do nothing */
1045 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1046 *flags |= BDRV_O_UNMAP;
1047 } else {
1048 return -1;
1049 }
1050
1051 return 0;
1052}
1053
1054/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001055 * Set open flags for a given cache mode
1056 *
1057 * Return 0 on success, -1 if the cache mode was invalid.
1058 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001059int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001060{
1061 *flags &= ~BDRV_O_CACHE_MASK;
1062
1063 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001064 *writethrough = false;
1065 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001066 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001067 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001068 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001069 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001070 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001071 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001072 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001073 *flags |= BDRV_O_NO_FLUSH;
1074 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001075 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001076 } else {
1077 return -1;
1078 }
1079
1080 return 0;
1081}
1082
Kevin Wolfb5411552017-01-17 15:56:16 +01001083static char *bdrv_child_get_parent_desc(BdrvChild *c)
1084{
1085 BlockDriverState *parent = c->opaque;
1086 return g_strdup(bdrv_get_device_or_node_name(parent));
1087}
1088
Kevin Wolf20018e12016-05-23 18:46:59 +02001089static void bdrv_child_cb_drained_begin(BdrvChild *child)
1090{
1091 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001092 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +02001093}
1094
Kevin Wolf89bd0302018-03-22 14:11:20 +01001095static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1096{
1097 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001098 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001099}
1100
Max Reitze037c092019-07-19 11:26:14 +02001101static void bdrv_child_cb_drained_end(BdrvChild *child,
1102 int *drained_end_counter)
Kevin Wolf20018e12016-05-23 18:46:59 +02001103{
1104 BlockDriverState *bs = child->opaque;
Max Reitze037c092019-07-19 11:26:14 +02001105 bdrv_drained_end_no_poll(bs, drained_end_counter);
Kevin Wolf20018e12016-05-23 18:46:59 +02001106}
1107
Kevin Wolf38701b62017-05-04 18:52:39 +02001108static int bdrv_child_cb_inactivate(BdrvChild *child)
1109{
1110 BlockDriverState *bs = child->opaque;
1111 assert(bs->open_flags & BDRV_O_INACTIVE);
1112 return 0;
1113}
1114
Kevin Wolf5d231842019-05-06 19:17:56 +02001115static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1116 GSList **ignore, Error **errp)
1117{
1118 BlockDriverState *bs = child->opaque;
1119 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1120}
1121
Kevin Wolf53a7d042019-05-06 19:17:59 +02001122static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1123 GSList **ignore)
1124{
1125 BlockDriverState *bs = child->opaque;
1126 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1127}
1128
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001129/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001130 * Returns the options and flags that a temporary snapshot should get, based on
1131 * the originally requested flags (the originally requested image will have
1132 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001133 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001134static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1135 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001136{
Kevin Wolf73176be2016-03-07 13:02:15 +01001137 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1138
1139 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001140 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1141 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001142
Kevin Wolf3f486862019-04-04 17:04:43 +02001143 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001144 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001145 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001146
Kevin Wolf41869042016-06-16 12:59:30 +02001147 /* aio=native doesn't work for cache.direct=off, so disable it for the
1148 * temporary snapshot */
1149 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001150}
1151
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001152static void bdrv_backing_attach(BdrvChild *c)
1153{
1154 BlockDriverState *parent = c->opaque;
1155 BlockDriverState *backing_hd = c->bs;
1156
1157 assert(!parent->backing_blocker);
1158 error_setg(&parent->backing_blocker,
1159 "node is used as backing hd of '%s'",
1160 bdrv_get_device_or_node_name(parent));
1161
Max Reitzf30c66b2019-02-01 20:29:05 +01001162 bdrv_refresh_filename(backing_hd);
1163
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001164 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001165
1166 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1167 /* Otherwise we won't be able to commit or stream */
1168 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1169 parent->backing_blocker);
1170 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1171 parent->backing_blocker);
1172 /*
1173 * We do backup in 3 ways:
1174 * 1. drive backup
1175 * The target bs is new opened, and the source is top BDS
1176 * 2. blockdev backup
1177 * Both the source and the target are top BDSes.
1178 * 3. internal backup(used for block replication)
1179 * Both the source and the target are backing file
1180 *
1181 * In case 1 and 2, neither the source nor the target is the backing file.
1182 * In case 3, we will block the top BDS, so there is only one block job
1183 * for the top BDS and its backing chain.
1184 */
1185 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1186 parent->backing_blocker);
1187 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1188 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001189}
Kevin Wolfd736f112017-12-18 16:05:48 +01001190
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001191static void bdrv_backing_detach(BdrvChild *c)
1192{
1193 BlockDriverState *parent = c->opaque;
1194
1195 assert(parent->backing_blocker);
1196 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1197 error_free(parent->backing_blocker);
1198 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001199}
Kevin Wolfd736f112017-12-18 16:05:48 +01001200
Kevin Wolf6858eba2017-06-29 19:32:21 +02001201static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1202 const char *filename, Error **errp)
1203{
1204 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001205 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001206 int ret;
1207
Alberto Garciae94d3db2018-11-12 16:00:34 +02001208 if (read_only) {
1209 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001210 if (ret < 0) {
1211 return ret;
1212 }
1213 }
1214
Kevin Wolf6858eba2017-06-29 19:32:21 +02001215 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001216 base->drv ? base->drv->format_name : "",
1217 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001218 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001219 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001220 }
1221
Alberto Garciae94d3db2018-11-12 16:00:34 +02001222 if (read_only) {
1223 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001224 }
1225
Kevin Wolf6858eba2017-06-29 19:32:21 +02001226 return ret;
1227}
1228
Max Reitzfae8bd32020-05-13 13:05:20 +02001229/*
1230 * Returns the options and flags that a generic child of a BDS should
1231 * get, based on the given options and flags for the parent BDS.
1232 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001233static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1234 int *child_flags, QDict *child_options,
1235 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001236{
1237 int flags = parent_flags;
1238
1239 /*
1240 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1241 * Generally, the question to answer is: Should this child be
1242 * format-probed by default?
1243 */
1244
1245 /*
1246 * Pure and non-filtered data children of non-format nodes should
1247 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1248 * set). This only affects a very limited set of drivers (namely
1249 * quorum and blkverify when this comment was written).
1250 * Force-clear BDRV_O_PROTOCOL then.
1251 */
1252 if (!parent_is_format &&
1253 (role & BDRV_CHILD_DATA) &&
1254 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1255 {
1256 flags &= ~BDRV_O_PROTOCOL;
1257 }
1258
1259 /*
1260 * All children of format nodes (except for COW children) and all
1261 * metadata children in general should never be format-probed.
1262 * Force-set BDRV_O_PROTOCOL then.
1263 */
1264 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1265 (role & BDRV_CHILD_METADATA))
1266 {
1267 flags |= BDRV_O_PROTOCOL;
1268 }
1269
1270 /*
1271 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1272 * the parent.
1273 */
1274 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1275 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1276 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1277
1278 if (role & BDRV_CHILD_COW) {
1279 /* backing files are opened read-only by default */
1280 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1281 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1282 } else {
1283 /* Inherit the read-only option from the parent if it's not set */
1284 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1285 qdict_copy_default(child_options, parent_options,
1286 BDRV_OPT_AUTO_READ_ONLY);
1287 }
1288
1289 /*
1290 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1291 * can default to enable it on lower layers regardless of the
1292 * parent option.
1293 */
1294 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1295
1296 /* Clear flags that only apply to the top layer */
1297 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1298
1299 if (role & BDRV_CHILD_METADATA) {
1300 flags &= ~BDRV_O_NO_IO;
1301 }
1302 if (role & BDRV_CHILD_COW) {
1303 flags &= ~BDRV_O_TEMPORARY;
1304 }
1305
1306 *child_flags = flags;
1307}
1308
Max Reitzca2f1232020-05-13 13:05:22 +02001309static void bdrv_child_cb_attach(BdrvChild *child)
1310{
1311 BlockDriverState *bs = child->opaque;
1312
1313 if (child->role & BDRV_CHILD_COW) {
1314 bdrv_backing_attach(child);
1315 }
1316
1317 bdrv_apply_subtree_drain(child, bs);
1318}
1319
Max Reitz48e08282020-05-13 13:05:23 +02001320static void bdrv_child_cb_detach(BdrvChild *child)
1321{
1322 BlockDriverState *bs = child->opaque;
1323
1324 if (child->role & BDRV_CHILD_COW) {
1325 bdrv_backing_detach(child);
1326 }
1327
1328 bdrv_unapply_subtree_drain(child, bs);
1329}
1330
Max Reitz43483552020-05-13 13:05:24 +02001331static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1332 const char *filename, Error **errp)
1333{
1334 if (c->role & BDRV_CHILD_COW) {
1335 return bdrv_backing_update_filename(c, base, filename, errp);
1336 }
1337 return 0;
1338}
1339
1340const BdrvChildClass child_of_bds = {
1341 .parent_is_bds = true,
1342 .get_parent_desc = bdrv_child_get_parent_desc,
1343 .inherit_options = bdrv_inherited_options,
1344 .drained_begin = bdrv_child_cb_drained_begin,
1345 .drained_poll = bdrv_child_cb_drained_poll,
1346 .drained_end = bdrv_child_cb_drained_end,
1347 .attach = bdrv_child_cb_attach,
1348 .detach = bdrv_child_cb_detach,
1349 .inactivate = bdrv_child_cb_inactivate,
1350 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1351 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1352 .update_filename = bdrv_child_cb_update_filename,
1353};
1354
Kevin Wolf7b272452012-11-12 17:05:39 +01001355static int bdrv_open_flags(BlockDriverState *bs, int flags)
1356{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001357 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001358
1359 /*
1360 * Clear flags that are internal to the block layer before opening the
1361 * image.
1362 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001363 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001364
Kevin Wolf7b272452012-11-12 17:05:39 +01001365 return open_flags;
1366}
1367
Kevin Wolf91a097e2015-05-08 17:49:53 +02001368static void update_flags_from_options(int *flags, QemuOpts *opts)
1369{
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001370 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001371
Alberto Garcia57f9db92018-09-06 12:37:06 +03001372 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001373 *flags |= BDRV_O_NO_FLUSH;
1374 }
1375
Alberto Garcia57f9db92018-09-06 12:37:06 +03001376 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001377 *flags |= BDRV_O_NOCACHE;
1378 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001379
Alberto Garcia57f9db92018-09-06 12:37:06 +03001380 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001381 *flags |= BDRV_O_RDWR;
1382 }
1383
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001384 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1385 *flags |= BDRV_O_AUTO_RDONLY;
1386 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001387}
1388
1389static void update_options_from_flags(QDict *options, int flags)
1390{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001391 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001392 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001393 }
1394 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001395 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1396 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001397 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001398 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001399 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001400 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001401 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1402 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1403 flags & BDRV_O_AUTO_RDONLY);
1404 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001405}
1406
Kevin Wolf636ea372014-01-24 14:11:52 +01001407static void bdrv_assign_node_name(BlockDriverState *bs,
1408 const char *node_name,
1409 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001410{
Jeff Cody15489c72015-10-12 19:36:50 -04001411 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001412
Jeff Cody15489c72015-10-12 19:36:50 -04001413 if (!node_name) {
1414 node_name = gen_node_name = id_generate(ID_BLOCK);
1415 } else if (!id_wellformed(node_name)) {
1416 /*
1417 * Check for empty string or invalid characters, but not if it is
1418 * generated (generated names use characters not available to the user)
1419 */
Kevin Wolf9aebf3b2014-09-25 09:54:02 +02001420 error_setg(errp, "Invalid node name");
Kevin Wolf636ea372014-01-24 14:11:52 +01001421 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001422 }
1423
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001424 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001425 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001426 error_setg(errp, "node-name=%s is conflicting with a device id",
1427 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001428 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001429 }
1430
Benoît Canet6913c0c2014-01-23 21:31:33 +01001431 /* takes care of avoiding duplicates node names */
1432 if (bdrv_find_node(node_name)) {
1433 error_setg(errp, "Duplicate node name");
Jeff Cody15489c72015-10-12 19:36:50 -04001434 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001435 }
1436
Kevin Wolf824808d2018-07-04 13:28:29 +02001437 /* Make sure that the node name isn't truncated */
1438 if (strlen(node_name) >= sizeof(bs->node_name)) {
1439 error_setg(errp, "Node name too long");
1440 goto out;
1441 }
1442
Benoît Canet6913c0c2014-01-23 21:31:33 +01001443 /* copy node name into the bs and insert it into the graph list */
1444 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1445 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001446out:
1447 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001448}
1449
Kevin Wolf01a56502017-01-18 15:51:56 +01001450static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1451 const char *node_name, QDict *options,
1452 int open_flags, Error **errp)
1453{
1454 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001455 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001456
1457 bdrv_assign_node_name(bs, node_name, &local_err);
1458 if (local_err) {
1459 error_propagate(errp, local_err);
1460 return -EINVAL;
1461 }
1462
1463 bs->drv = drv;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001464 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Kevin Wolf01a56502017-01-18 15:51:56 +01001465 bs->opaque = g_malloc0(drv->instance_size);
1466
1467 if (drv->bdrv_file_open) {
1468 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1469 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001470 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001471 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001472 } else {
1473 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001474 }
1475
1476 if (ret < 0) {
1477 if (local_err) {
1478 error_propagate(errp, local_err);
1479 } else if (bs->filename[0]) {
1480 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1481 } else {
1482 error_setg_errno(errp, -ret, "Could not open image");
1483 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001484 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001485 }
1486
1487 ret = refresh_total_sectors(bs, bs->total_sectors);
1488 if (ret < 0) {
1489 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001490 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001491 }
1492
1493 bdrv_refresh_limits(bs, &local_err);
1494 if (local_err) {
1495 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001496 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001497 }
1498
1499 assert(bdrv_opt_mem_align(bs) != 0);
1500 assert(bdrv_min_mem_align(bs) != 0);
1501 assert(is_power_of_2(bs->bl.request_alignment));
1502
Kevin Wolf0f122642018-03-28 18:29:18 +02001503 for (i = 0; i < bs->quiesce_counter; i++) {
1504 if (drv->bdrv_co_drain_begin) {
1505 drv->bdrv_co_drain_begin(bs);
1506 }
1507 }
1508
Kevin Wolf01a56502017-01-18 15:51:56 +01001509 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001510open_failed:
1511 bs->drv = NULL;
1512 if (bs->file != NULL) {
1513 bdrv_unref_child(bs, bs->file);
1514 bs->file = NULL;
1515 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001516 g_free(bs->opaque);
1517 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001518 return ret;
1519}
1520
Kevin Wolf680c7f92017-01-18 17:16:41 +01001521BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1522 int flags, Error **errp)
1523{
1524 BlockDriverState *bs;
1525 int ret;
1526
1527 bs = bdrv_new();
1528 bs->open_flags = flags;
1529 bs->explicit_options = qdict_new();
1530 bs->options = qdict_new();
1531 bs->opaque = NULL;
1532
1533 update_options_from_flags(bs->options, flags);
1534
1535 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1536 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001537 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001538 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001539 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001540 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001541 bdrv_unref(bs);
1542 return NULL;
1543 }
1544
1545 return bs;
1546}
1547
Kevin Wolfc5f30142016-10-06 11:33:17 +02001548QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001549 .name = "bdrv_common",
1550 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1551 .desc = {
1552 {
1553 .name = "node-name",
1554 .type = QEMU_OPT_STRING,
1555 .help = "Node name of the block device node",
1556 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001557 {
1558 .name = "driver",
1559 .type = QEMU_OPT_STRING,
1560 .help = "Block driver to use for the node",
1561 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001562 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001563 .name = BDRV_OPT_CACHE_DIRECT,
1564 .type = QEMU_OPT_BOOL,
1565 .help = "Bypass software writeback cache on the host",
1566 },
1567 {
1568 .name = BDRV_OPT_CACHE_NO_FLUSH,
1569 .type = QEMU_OPT_BOOL,
1570 .help = "Ignore flush requests",
1571 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001572 {
1573 .name = BDRV_OPT_READ_ONLY,
1574 .type = QEMU_OPT_BOOL,
1575 .help = "Node is opened in read-only mode",
1576 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001577 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001578 .name = BDRV_OPT_AUTO_READ_ONLY,
1579 .type = QEMU_OPT_BOOL,
1580 .help = "Node can become read-only if opening read-write fails",
1581 },
1582 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001583 .name = "detect-zeroes",
1584 .type = QEMU_OPT_STRING,
1585 .help = "try to optimize zero writes (off, on, unmap)",
1586 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001587 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001588 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001589 .type = QEMU_OPT_STRING,
1590 .help = "discard operation (ignore/off, unmap/on)",
1591 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001592 {
1593 .name = BDRV_OPT_FORCE_SHARE,
1594 .type = QEMU_OPT_BOOL,
1595 .help = "always accept other writers (default: off)",
1596 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001597 { /* end of list */ }
1598 },
1599};
1600
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001601QemuOptsList bdrv_create_opts_simple = {
1602 .name = "simple-create-opts",
1603 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001604 .desc = {
1605 {
1606 .name = BLOCK_OPT_SIZE,
1607 .type = QEMU_OPT_SIZE,
1608 .help = "Virtual disk size"
1609 },
1610 {
1611 .name = BLOCK_OPT_PREALLOC,
1612 .type = QEMU_OPT_STRING,
1613 .help = "Preallocation mode (allowed values: off)"
1614 },
1615 { /* end of list */ }
1616 }
1617};
1618
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001619/*
Kevin Wolf57915332010-04-14 15:24:50 +02001620 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001621 *
1622 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001623 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001624static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001625 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001626{
1627 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001628 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001629 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001630 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001631 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001632 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001633 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001634 Error *local_err = NULL;
Kevin Wolf57915332010-04-14 15:24:50 +02001635
Paolo Bonzini64058752012-05-08 16:51:49 +02001636 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001637 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001638
Kevin Wolf62392eb2015-04-24 16:38:02 +02001639 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001640 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001641 ret = -EINVAL;
1642 goto fail_opts;
1643 }
1644
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001645 update_flags_from_options(&bs->open_flags, opts);
1646
Kevin Wolf62392eb2015-04-24 16:38:02 +02001647 driver_name = qemu_opt_get(opts, "driver");
1648 drv = bdrv_find_format(driver_name);
1649 assert(drv != NULL);
1650
Fam Zheng5a9347c2017-05-03 00:35:37 +08001651 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1652
1653 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1654 error_setg(errp,
1655 BDRV_OPT_FORCE_SHARE
1656 "=on can only be used with read-only images");
1657 ret = -EINVAL;
1658 goto fail_opts;
1659 }
1660
Kevin Wolf45673672013-04-22 17:48:40 +02001661 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001662 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001663 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001664 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001665 /*
1666 * Caution: while qdict_get_try_str() is fine, getting
1667 * non-string types would require more care. When @options
1668 * come from -blockdev or blockdev_add, its members are typed
1669 * according to the QAPI schema, but when they come from
1670 * -drive, they're all QString.
1671 */
Kevin Wolf45673672013-04-22 17:48:40 +02001672 filename = qdict_get_try_str(options, "filename");
1673 }
1674
Max Reitz4a008242017-04-13 18:06:24 +02001675 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001676 error_setg(errp, "The '%s' block driver requires a file name",
1677 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001678 ret = -EINVAL;
1679 goto fail_opts;
1680 }
1681
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001682 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1683 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001684
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001685 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001686
1687 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001688 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1689 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1690 } else {
1691 ret = -ENOTSUP;
1692 }
1693 if (ret < 0) {
1694 error_setg(errp,
1695 !bs->read_only && bdrv_is_whitelisted(drv, true)
1696 ? "Driver '%s' can only be used for read-only devices"
1697 : "Driver '%s' is not whitelisted",
1698 drv->format_name);
1699 goto fail_opts;
1700 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001701 }
Kevin Wolf57915332010-04-14 15:24:50 +02001702
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001703 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001704 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001705
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001706 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001707 if (!bs->read_only) {
1708 bdrv_enable_copy_on_read(bs);
1709 } else {
1710 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001711 ret = -EINVAL;
1712 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001713 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001714 }
1715
Alberto Garcia415bbca2018-10-03 13:23:13 +03001716 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001717 if (discard != NULL) {
1718 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1719 error_setg(errp, "Invalid discard option");
1720 ret = -EINVAL;
1721 goto fail_opts;
1722 }
1723 }
1724
Alberto Garcia543770b2018-09-06 12:37:09 +03001725 bs->detect_zeroes =
1726 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1727 if (local_err) {
1728 error_propagate(errp, local_err);
1729 ret = -EINVAL;
1730 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001731 }
1732
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001733 if (filename != NULL) {
1734 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1735 } else {
1736 bs->filename[0] = '\0';
1737 }
Max Reitz91af7012014-07-18 20:24:56 +02001738 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001739
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001740 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001741 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001742 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001743
Kevin Wolf01a56502017-01-18 15:51:56 +01001744 assert(!drv->bdrv_file_open || file == NULL);
1745 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001746 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001747 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001748 }
1749
Kevin Wolf18edf282015-04-07 17:12:56 +02001750 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001751 return 0;
1752
Kevin Wolf18edf282015-04-07 17:12:56 +02001753fail_opts:
1754 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001755 return ret;
1756}
1757
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001758static QDict *parse_json_filename(const char *filename, Error **errp)
1759{
1760 QObject *options_obj;
1761 QDict *options;
1762 int ret;
1763
1764 ret = strstart(filename, "json:", &filename);
1765 assert(ret);
1766
Markus Armbruster5577fff2017-02-28 22:26:59 +01001767 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001768 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001769 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001770 return NULL;
1771 }
1772
Max Reitz7dc847e2018-02-24 16:40:29 +01001773 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001774 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001775 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001776 error_setg(errp, "Invalid JSON object given");
1777 return NULL;
1778 }
1779
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001780 qdict_flatten(options);
1781
1782 return options;
1783}
1784
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001785static void parse_json_protocol(QDict *options, const char **pfilename,
1786 Error **errp)
1787{
1788 QDict *json_options;
1789 Error *local_err = NULL;
1790
1791 /* Parse json: pseudo-protocol */
1792 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1793 return;
1794 }
1795
1796 json_options = parse_json_filename(*pfilename, &local_err);
1797 if (local_err) {
1798 error_propagate(errp, local_err);
1799 return;
1800 }
1801
1802 /* Options given in the filename have lower priority than options
1803 * specified directly */
1804 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001805 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001806 *pfilename = NULL;
1807}
1808
Kevin Wolf57915332010-04-14 15:24:50 +02001809/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001810 * Fills in default options for opening images and converts the legacy
1811 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001812 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1813 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001814 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001815static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001816 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001817{
1818 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001819 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001820 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001821 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001822 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001823
Markus Armbruster129c7d12017-03-30 19:43:12 +02001824 /*
1825 * Caution: while qdict_get_try_str() is fine, getting non-string
1826 * types would require more care. When @options come from
1827 * -blockdev or blockdev_add, its members are typed according to
1828 * the QAPI schema, but when they come from -drive, they're all
1829 * QString.
1830 */
Max Reitz53a29512015-03-19 14:53:16 -04001831 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001832 if (drvname) {
1833 drv = bdrv_find_format(drvname);
1834 if (!drv) {
1835 error_setg(errp, "Unknown driver '%s'", drvname);
1836 return -ENOENT;
1837 }
1838 /* If the user has explicitly specified the driver, this choice should
1839 * override the BDRV_O_PROTOCOL flag */
1840 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001841 }
1842
1843 if (protocol) {
1844 *flags |= BDRV_O_PROTOCOL;
1845 } else {
1846 *flags &= ~BDRV_O_PROTOCOL;
1847 }
1848
Kevin Wolf91a097e2015-05-08 17:49:53 +02001849 /* Translate cache options from flags into options */
1850 update_options_from_flags(*options, *flags);
1851
Kevin Wolff54120f2014-05-26 11:09:59 +02001852 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001853 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001854 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001855 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001856 parse_filename = true;
1857 } else {
1858 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1859 "the same time");
1860 return -EINVAL;
1861 }
1862 }
1863
1864 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001865 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001866 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001867
Max Reitz053e1572015-08-26 19:47:51 +02001868 if (!drvname && protocol) {
1869 if (filename) {
1870 drv = bdrv_find_protocol(filename, parse_filename, errp);
1871 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001872 return -EINVAL;
1873 }
Max Reitz053e1572015-08-26 19:47:51 +02001874
1875 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001876 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001877 } else {
1878 error_setg(errp, "Must specify either driver or file");
1879 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001880 }
1881 }
1882
Kevin Wolf17b005f2014-05-27 10:50:29 +02001883 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001884
1885 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001886 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001887 drv->bdrv_parse_filename(filename, *options, &local_err);
1888 if (local_err) {
1889 error_propagate(errp, local_err);
1890 return -EINVAL;
1891 }
1892
1893 if (!drv->bdrv_needs_filename) {
1894 qdict_del(*options, "filename");
1895 }
1896 }
1897
1898 return 0;
1899}
1900
Kevin Wolf3121fb42017-09-14 14:42:12 +02001901static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1902 uint64_t perm, uint64_t shared,
Max Reitz9eab1542019-05-22 19:03:50 +02001903 GSList *ignore_children,
1904 bool *tighten_restrictions, Error **errp);
Fam Zhengc1cef672017-03-14 10:30:50 +08001905static void bdrv_child_abort_perm_update(BdrvChild *c);
1906static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1907
Kevin Wolf148eb132017-09-14 14:32:04 +02001908typedef struct BlockReopenQueueEntry {
1909 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01001910 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02001911 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001912 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02001913} BlockReopenQueueEntry;
1914
1915/*
1916 * Return the flags that @bs will have after the reopens in @q have
1917 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1918 * return the current flags.
1919 */
1920static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1921{
1922 BlockReopenQueueEntry *entry;
1923
1924 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001925 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02001926 if (entry->state.bs == bs) {
1927 return entry->state.flags;
1928 }
1929 }
1930 }
1931
1932 return bs->open_flags;
1933}
1934
1935/* Returns whether the image file can be written to after the reopen queue @q
1936 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02001937static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1938 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02001939{
1940 int flags = bdrv_reopen_get_flags(q, bs);
1941
1942 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1943}
1944
Max Reitzcc022142018-06-06 21:37:00 +02001945/*
1946 * Return whether the BDS can be written to. This is not necessarily
1947 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1948 * be written to but do not count as read-only images.
1949 */
1950bool bdrv_is_writable(BlockDriverState *bs)
1951{
1952 return bdrv_is_writable_after_reopen(bs, NULL);
1953}
1954
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001955static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02001956 BdrvChild *c, BdrvChildRole role,
1957 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001958 uint64_t parent_perm, uint64_t parent_shared,
1959 uint64_t *nperm, uint64_t *nshared)
1960{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03001961 assert(bs->drv && bs->drv->bdrv_child_perm);
Max Reitze5d8a402020-05-13 13:05:44 +02001962 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03001963 parent_perm, parent_shared,
1964 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001965 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001966 if (child_bs && child_bs->force_share) {
1967 *nshared = BLK_PERM_ALL;
1968 }
1969}
1970
Kevin Wolf33a610c2016-12-15 13:04:20 +01001971/*
1972 * Check whether permissions on this node can be changed in a way that
1973 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1974 * permissions of all its parents. This involves checking whether all necessary
1975 * permission changes to child nodes can be performed.
1976 *
Max Reitz9eab1542019-05-22 19:03:50 +02001977 * Will set *tighten_restrictions to true if and only if new permissions have to
1978 * be taken or currently shared permissions are to be unshared. Otherwise,
1979 * errors are not fatal as long as the caller accepts that the restrictions
1980 * remain tighter than they need to be. The caller still has to abort the
1981 * transaction.
1982 * @tighten_restrictions cannot be used together with @q: When reopening, we may
1983 * encounter fatal errors even though no restrictions are to be tightened. For
1984 * example, changing a node from RW to RO will fail if the WRITE permission is
1985 * to be kept.
1986 *
Kevin Wolf33a610c2016-12-15 13:04:20 +01001987 * A call to this function must always be followed by a call to bdrv_set_perm()
1988 * or bdrv_abort_perm_update().
1989 */
Kevin Wolf3121fb42017-09-14 14:42:12 +02001990static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1991 uint64_t cumulative_perms,
Kevin Wolf46181122017-03-06 15:00:13 +01001992 uint64_t cumulative_shared_perms,
Max Reitz9eab1542019-05-22 19:03:50 +02001993 GSList *ignore_children,
1994 bool *tighten_restrictions, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01001995{
1996 BlockDriver *drv = bs->drv;
1997 BdrvChild *c;
1998 int ret;
1999
Max Reitz9eab1542019-05-22 19:03:50 +02002000 assert(!q || !tighten_restrictions);
2001
2002 if (tighten_restrictions) {
2003 uint64_t current_perms, current_shared;
2004 uint64_t added_perms, removed_shared_perms;
2005
2006 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2007
2008 added_perms = cumulative_perms & ~current_perms;
2009 removed_shared_perms = current_shared & ~cumulative_shared_perms;
2010
2011 *tighten_restrictions = added_perms || removed_shared_perms;
2012 }
2013
Kevin Wolf33a610c2016-12-15 13:04:20 +01002014 /* Write permissions never work with read-only images */
2015 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002016 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002017 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002018 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2019 error_setg(errp, "Block node is read-only");
2020 } else {
2021 uint64_t current_perms, current_shared;
2022 bdrv_get_cumulative_perm(bs, &current_perms, &current_shared);
2023 if (current_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
2024 error_setg(errp, "Cannot make block node read-only, there is "
2025 "a writer on it");
2026 } else {
2027 error_setg(errp, "Cannot make block node read-only and create "
2028 "a writer on it");
2029 }
2030 }
2031
Kevin Wolf33a610c2016-12-15 13:04:20 +01002032 return -EPERM;
2033 }
2034
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002035 /*
2036 * Unaligned requests will automatically be aligned to bl.request_alignment
2037 * and without RESIZE we can't extend requests to write to space beyond the
2038 * end of the image, so it's required that the image size is aligned.
2039 */
2040 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2041 !(cumulative_perms & BLK_PERM_RESIZE))
2042 {
2043 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2044 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2045 "Image size is not a multiple of request "
2046 "alignment");
2047 return -EPERM;
2048 }
2049 }
2050
Kevin Wolf33a610c2016-12-15 13:04:20 +01002051 /* Check this node */
2052 if (!drv) {
2053 return 0;
2054 }
2055
2056 if (drv->bdrv_check_perm) {
2057 return drv->bdrv_check_perm(bs, cumulative_perms,
2058 cumulative_shared_perms, errp);
2059 }
2060
Kevin Wolf78e421c2016-12-20 23:25:12 +01002061 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002062 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002063 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002064 return 0;
2065 }
2066
2067 /* Check all children */
2068 QLIST_FOREACH(c, &bs->children, next) {
2069 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002070 bool child_tighten_restr;
2071
Max Reitze5d8a402020-05-13 13:05:44 +02002072 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002073 cumulative_perms, cumulative_shared_perms,
2074 &cur_perm, &cur_shared);
Max Reitz9eab1542019-05-22 19:03:50 +02002075 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared, ignore_children,
2076 tighten_restrictions ? &child_tighten_restr
2077 : NULL,
2078 errp);
2079 if (tighten_restrictions) {
2080 *tighten_restrictions |= child_tighten_restr;
2081 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002082 if (ret < 0) {
2083 return ret;
2084 }
2085 }
2086
2087 return 0;
2088}
2089
2090/*
2091 * Notifies drivers that after a previous bdrv_check_perm() call, the
2092 * permission update is not performed and any preparations made for it (e.g.
2093 * taken file locks) need to be undone.
2094 *
2095 * This function recursively notifies all child nodes.
2096 */
2097static void bdrv_abort_perm_update(BlockDriverState *bs)
2098{
2099 BlockDriver *drv = bs->drv;
2100 BdrvChild *c;
2101
2102 if (!drv) {
2103 return;
2104 }
2105
2106 if (drv->bdrv_abort_perm_update) {
2107 drv->bdrv_abort_perm_update(bs);
2108 }
2109
2110 QLIST_FOREACH(c, &bs->children, next) {
2111 bdrv_child_abort_perm_update(c);
2112 }
2113}
2114
2115static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
2116 uint64_t cumulative_shared_perms)
2117{
2118 BlockDriver *drv = bs->drv;
2119 BdrvChild *c;
2120
2121 if (!drv) {
2122 return;
2123 }
2124
2125 /* Update this node */
2126 if (drv->bdrv_set_perm) {
2127 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2128 }
2129
Kevin Wolf78e421c2016-12-20 23:25:12 +01002130 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002131 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002132 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002133 return;
2134 }
2135
2136 /* Update all children */
2137 QLIST_FOREACH(c, &bs->children, next) {
2138 uint64_t cur_perm, cur_shared;
Max Reitze5d8a402020-05-13 13:05:44 +02002139 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002140 cumulative_perms, cumulative_shared_perms,
2141 &cur_perm, &cur_shared);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002142 bdrv_child_set_perm(c, cur_perm, cur_shared);
2143 }
2144}
2145
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002146void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2147 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002148{
2149 BdrvChild *c;
2150 uint64_t cumulative_perms = 0;
2151 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2152
2153 QLIST_FOREACH(c, &bs->parents, next_parent) {
2154 cumulative_perms |= c->perm;
2155 cumulative_shared_perms &= c->shared_perm;
2156 }
2157
2158 *perm = cumulative_perms;
2159 *shared_perm = cumulative_shared_perms;
2160}
2161
Kevin Wolfd0833192017-01-16 18:26:20 +01002162static char *bdrv_child_user_desc(BdrvChild *c)
2163{
Max Reitzbd86fb92020-05-13 13:05:13 +02002164 if (c->klass->get_parent_desc) {
2165 return c->klass->get_parent_desc(c);
Kevin Wolfd0833192017-01-16 18:26:20 +01002166 }
2167
2168 return g_strdup("another user");
2169}
2170
Fam Zheng51761962017-05-03 00:35:36 +08002171char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002172{
2173 struct perm_name {
2174 uint64_t perm;
2175 const char *name;
2176 } permissions[] = {
2177 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2178 { BLK_PERM_WRITE, "write" },
2179 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2180 { BLK_PERM_RESIZE, "resize" },
2181 { BLK_PERM_GRAPH_MOD, "change children" },
2182 { 0, NULL }
2183 };
2184
Alberto Garciae2a74232020-01-10 18:15:18 +01002185 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002186 struct perm_name *p;
2187
2188 for (p = permissions; p->name; p++) {
2189 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002190 if (result->len > 0) {
2191 g_string_append(result, ", ");
2192 }
2193 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002194 }
2195 }
2196
Alberto Garciae2a74232020-01-10 18:15:18 +01002197 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002198}
2199
Kevin Wolf33a610c2016-12-15 13:04:20 +01002200/*
2201 * Checks whether a new reference to @bs can be added if the new user requires
Kevin Wolf46181122017-03-06 15:00:13 +01002202 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
2203 * set, the BdrvChild objects in this list are ignored in the calculations;
2204 * this allows checking permission updates for an existing reference.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002205 *
Max Reitz9eab1542019-05-22 19:03:50 +02002206 * See bdrv_check_perm() for the semantics of @tighten_restrictions.
2207 *
Kevin Wolf33a610c2016-12-15 13:04:20 +01002208 * Needs to be followed by a call to either bdrv_set_perm() or
2209 * bdrv_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02002210static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
2211 uint64_t new_used_perm,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002212 uint64_t new_shared_perm,
Max Reitz9eab1542019-05-22 19:03:50 +02002213 GSList *ignore_children,
2214 bool *tighten_restrictions,
2215 Error **errp)
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002216{
2217 BdrvChild *c;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002218 uint64_t cumulative_perms = new_used_perm;
2219 uint64_t cumulative_shared_perms = new_shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002220
Max Reitz9eab1542019-05-22 19:03:50 +02002221 assert(!q || !tighten_restrictions);
2222
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002223 /* There is no reason why anyone couldn't tolerate write_unchanged */
2224 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
2225
2226 QLIST_FOREACH(c, &bs->parents, next_parent) {
Kevin Wolf46181122017-03-06 15:00:13 +01002227 if (g_slist_find(ignore_children, c)) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002228 continue;
2229 }
2230
Kevin Wolfd0833192017-01-16 18:26:20 +01002231 if ((new_used_perm & c->shared_perm) != new_used_perm) {
2232 char *user = bdrv_child_user_desc(c);
2233 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002234
2235 if (tighten_restrictions) {
2236 *tighten_restrictions = true;
2237 }
2238
Kevin Wolfd0833192017-01-16 18:26:20 +01002239 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
2240 "allow '%s' on %s",
2241 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2242 g_free(user);
2243 g_free(perm_names);
2244 return -EPERM;
2245 }
2246
2247 if ((c->perm & new_shared_perm) != c->perm) {
2248 char *user = bdrv_child_user_desc(c);
2249 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
Max Reitz9eab1542019-05-22 19:03:50 +02002250
2251 if (tighten_restrictions) {
2252 *tighten_restrictions = true;
2253 }
2254
Kevin Wolfd0833192017-01-16 18:26:20 +01002255 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
2256 "'%s' on %s",
2257 user, c->name, perm_names, bdrv_get_node_name(c->bs));
2258 g_free(user);
2259 g_free(perm_names);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002260 return -EPERM;
2261 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002262
2263 cumulative_perms |= c->perm;
2264 cumulative_shared_perms &= c->shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002265 }
2266
Kevin Wolf3121fb42017-09-14 14:42:12 +02002267 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
Max Reitz9eab1542019-05-22 19:03:50 +02002268 ignore_children, tighten_restrictions, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002269}
2270
2271/* Needs to be followed by a call to either bdrv_child_set_perm() or
2272 * bdrv_child_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02002273static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
2274 uint64_t perm, uint64_t shared,
Max Reitz9eab1542019-05-22 19:03:50 +02002275 GSList *ignore_children,
2276 bool *tighten_restrictions, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002277{
Kevin Wolf46181122017-03-06 15:00:13 +01002278 int ret;
2279
2280 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
Max Reitz9eab1542019-05-22 19:03:50 +02002281 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children,
2282 tighten_restrictions, errp);
Kevin Wolf46181122017-03-06 15:00:13 +01002283 g_slist_free(ignore_children);
2284
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002285 if (ret < 0) {
2286 return ret;
2287 }
2288
2289 if (!c->has_backup_perm) {
2290 c->has_backup_perm = true;
2291 c->backup_perm = c->perm;
2292 c->backup_shared_perm = c->shared_perm;
2293 }
2294 /*
2295 * Note: it's OK if c->has_backup_perm was already set, as we can find the
2296 * same child twice during check_perm procedure
2297 */
2298
2299 c->perm = perm;
2300 c->shared_perm = shared;
2301
2302 return 0;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002303}
2304
Fam Zhengc1cef672017-03-14 10:30:50 +08002305static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002306{
2307 uint64_t cumulative_perms, cumulative_shared_perms;
2308
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002309 c->has_backup_perm = false;
2310
Kevin Wolf33a610c2016-12-15 13:04:20 +01002311 c->perm = perm;
2312 c->shared_perm = shared;
2313
2314 bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
2315 &cumulative_shared_perms);
2316 bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
2317}
2318
Fam Zhengc1cef672017-03-14 10:30:50 +08002319static void bdrv_child_abort_perm_update(BdrvChild *c)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002320{
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002321 if (c->has_backup_perm) {
2322 c->perm = c->backup_perm;
2323 c->shared_perm = c->backup_shared_perm;
2324 c->has_backup_perm = false;
2325 }
2326
Kevin Wolf33a610c2016-12-15 13:04:20 +01002327 bdrv_abort_perm_update(c->bs);
2328}
2329
2330int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2331 Error **errp)
2332{
Max Reitz10467792019-05-22 19:03:51 +02002333 Error *local_err = NULL;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002334 int ret;
Max Reitz10467792019-05-22 19:03:51 +02002335 bool tighten_restrictions;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002336
Max Reitz10467792019-05-22 19:03:51 +02002337 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL,
2338 &tighten_restrictions, &local_err);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002339 if (ret < 0) {
2340 bdrv_child_abort_perm_update(c);
Max Reitz10467792019-05-22 19:03:51 +02002341 if (tighten_restrictions) {
2342 error_propagate(errp, local_err);
2343 } else {
2344 /*
2345 * Our caller may intend to only loosen restrictions and
2346 * does not expect this function to fail. Errors are not
2347 * fatal in such a case, so we can just hide them from our
2348 * caller.
2349 */
2350 error_free(local_err);
2351 ret = 0;
2352 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002353 return ret;
2354 }
2355
2356 bdrv_child_set_perm(c, perm, shared);
2357
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002358 return 0;
2359}
2360
Max Reitzc1087f12019-05-22 19:03:46 +02002361int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2362{
2363 uint64_t parent_perms, parent_shared;
2364 uint64_t perms, shared;
2365
2366 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002367 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002368 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002369
2370 return bdrv_child_try_set_perm(c, perms, shared, errp);
2371}
2372
Max Reitz87278af2020-05-13 13:05:40 +02002373/*
2374 * Default implementation for .bdrv_child_perm() for block filters:
2375 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2376 * filtered child.
2377 */
2378static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002379 BdrvChildRole role,
2380 BlockReopenQueue *reopen_queue,
2381 uint64_t perm, uint64_t shared,
2382 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002383{
Kevin Wolfe444fa82019-08-02 15:59:41 +02002384 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2385 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002386}
2387
Max Reitz70082db2020-05-13 13:05:26 +02002388static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002389 BdrvChildRole role,
2390 BlockReopenQueue *reopen_queue,
2391 uint64_t perm, uint64_t shared,
2392 uint64_t *nperm, uint64_t *nshared)
2393{
Max Reitze5d8a402020-05-13 13:05:44 +02002394 assert(role & BDRV_CHILD_COW);
Max Reitz70082db2020-05-13 13:05:26 +02002395
2396 /*
2397 * We want consistent read from backing files if the parent needs it.
2398 * No other operations are performed on backing files.
2399 */
2400 perm &= BLK_PERM_CONSISTENT_READ;
2401
2402 /*
2403 * If the parent can deal with changing data, we're okay with a
2404 * writable and resizable backing file.
2405 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2406 */
2407 if (shared & BLK_PERM_WRITE) {
2408 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2409 } else {
2410 shared = 0;
2411 }
2412
2413 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2414 BLK_PERM_WRITE_UNCHANGED;
2415
2416 if (bs->open_flags & BDRV_O_INACTIVE) {
2417 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2418 }
2419
2420 *nperm = perm;
2421 *nshared = shared;
2422}
2423
Max Reitz6f838a42020-05-13 13:05:27 +02002424static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002425 BdrvChildRole role,
2426 BlockReopenQueue *reopen_queue,
2427 uint64_t perm, uint64_t shared,
2428 uint64_t *nperm, uint64_t *nshared)
2429{
2430 int flags;
2431
Max Reitze5d8a402020-05-13 13:05:44 +02002432 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002433
2434 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2435
2436 /*
2437 * Apart from the modifications below, the same permissions are
2438 * forwarded and left alone as for filters
2439 */
Max Reitze5d8a402020-05-13 13:05:44 +02002440 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002441 perm, shared, &perm, &shared);
2442
Max Reitzf8890542020-05-13 13:05:28 +02002443 if (role & BDRV_CHILD_METADATA) {
2444 /* Format drivers may touch metadata even if the guest doesn't write */
2445 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2446 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2447 }
2448
2449 /*
2450 * bs->file always needs to be consistent because of the
2451 * metadata. We can never allow other users to resize or write
2452 * to it.
2453 */
2454 if (!(flags & BDRV_O_NO_IO)) {
2455 perm |= BLK_PERM_CONSISTENT_READ;
2456 }
2457 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002458 }
2459
Max Reitzf8890542020-05-13 13:05:28 +02002460 if (role & BDRV_CHILD_DATA) {
2461 /*
2462 * Technically, everything in this block is a subset of the
2463 * BDRV_CHILD_METADATA path taken above, and so this could
2464 * be an "else if" branch. However, that is not obvious, and
2465 * this function is not performance critical, therefore we let
2466 * this be an independent "if".
2467 */
2468
2469 /*
2470 * We cannot allow other users to resize the file because the
2471 * format driver might have some assumptions about the size
2472 * (e.g. because it is stored in metadata, or because the file
2473 * is split into fixed-size data files).
2474 */
2475 shared &= ~BLK_PERM_RESIZE;
2476
2477 /*
2478 * WRITE_UNCHANGED often cannot be performed as such on the
2479 * data file. For example, the qcow2 driver may still need to
2480 * write copied clusters on copy-on-read.
2481 */
2482 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2483 perm |= BLK_PERM_WRITE;
2484 }
2485
2486 /*
2487 * If the data file is written to, the format driver may
2488 * expect to be able to resize it by writing beyond the EOF.
2489 */
2490 if (perm & BLK_PERM_WRITE) {
2491 perm |= BLK_PERM_RESIZE;
2492 }
Max Reitz6f838a42020-05-13 13:05:27 +02002493 }
Max Reitz6f838a42020-05-13 13:05:27 +02002494
2495 if (bs->open_flags & BDRV_O_INACTIVE) {
2496 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2497 }
2498
2499 *nperm = perm;
2500 *nshared = shared;
2501}
2502
Max Reitz2519f542020-05-13 13:05:29 +02002503void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002504 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002505 uint64_t perm, uint64_t shared,
2506 uint64_t *nperm, uint64_t *nshared)
2507{
Max Reitz2519f542020-05-13 13:05:29 +02002508 if (role & BDRV_CHILD_FILTERED) {
2509 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2510 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002511 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002512 perm, shared, nperm, nshared);
2513 } else if (role & BDRV_CHILD_COW) {
2514 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002515 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002516 perm, shared, nperm, nshared);
2517 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002518 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002519 perm, shared, nperm, nshared);
2520 } else {
2521 g_assert_not_reached();
2522 }
2523}
2524
Max Reitz7b1d9c42019-11-08 13:34:51 +01002525uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2526{
2527 static const uint64_t permissions[] = {
2528 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2529 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2530 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2531 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2532 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2533 };
2534
2535 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2536 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2537
2538 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2539
2540 return permissions[qapi_perm];
2541}
2542
Kevin Wolf8ee03992017-03-06 13:45:28 +01002543static void bdrv_replace_child_noperm(BdrvChild *child,
2544 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002545{
2546 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002547 int new_bs_quiesce_counter;
2548 int drain_saldo;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002549
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002550 assert(!child->frozen);
2551
Fam Zhengbb2614e2017-04-07 14:54:10 +08002552 if (old_bs && new_bs) {
2553 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2554 }
Max Reitzdebc2922019-07-22 15:33:44 +02002555
2556 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2557 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2558
2559 /*
2560 * If the new child node is drained but the old one was not, flush
2561 * all outstanding requests to the old child node.
2562 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002563 while (drain_saldo > 0 && child->klass->drained_begin) {
Max Reitzdebc2922019-07-22 15:33:44 +02002564 bdrv_parent_drained_begin_single(child, true);
2565 drain_saldo--;
2566 }
2567
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002568 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002569 /* Detach first so that the recursive drain sections coming from @child
2570 * are already gone and we only end the drain sections that came from
2571 * elsewhere. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002572 if (child->klass->detach) {
2573 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002574 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002575 QLIST_REMOVE(child, next_parent);
2576 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002577
2578 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002579
2580 if (new_bs) {
2581 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzdebc2922019-07-22 15:33:44 +02002582
2583 /*
2584 * Detaching the old node may have led to the new node's
2585 * quiesce_counter having been decreased. Not a problem, we
2586 * just need to recognize this here and then invoke
2587 * drained_end appropriately more often.
2588 */
2589 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2590 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002591
Kevin Wolfd736f112017-12-18 16:05:48 +01002592 /* Attach only after starting new drained sections, so that recursive
2593 * drain sections coming from @child don't get an extra .drained_begin
2594 * callback. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002595 if (child->klass->attach) {
2596 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002597 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002598 }
Max Reitzdebc2922019-07-22 15:33:44 +02002599
2600 /*
2601 * If the old child node was drained but the new one is not, allow
2602 * requests to come in only after the new node has been attached.
2603 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002604 while (drain_saldo < 0 && child->klass->drained_end) {
Max Reitzdebc2922019-07-22 15:33:44 +02002605 bdrv_parent_drained_end_single(child);
2606 drain_saldo++;
2607 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002608}
2609
Kevin Wolf466787f2017-03-08 14:44:07 +01002610/*
2611 * Updates @child to change its reference to point to @new_bs, including
zhaolichange3a6e0d2020-09-17 15:50:20 +08002612 * checking and applying the necessary permission updates both to the old node
Kevin Wolf466787f2017-03-08 14:44:07 +01002613 * and to @new_bs.
2614 *
2615 * NULL is passed as @new_bs for removing the reference before freeing @child.
2616 *
2617 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2618 * function uses bdrv_set_perm() to update the permissions according to the new
2619 * reference that @new_bs gets.
Max Reitz7b99a262019-06-12 16:07:11 +02002620 *
2621 * Callers must ensure that child->frozen is false.
Kevin Wolf466787f2017-03-08 14:44:07 +01002622 */
2623static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolf8ee03992017-03-06 13:45:28 +01002624{
2625 BlockDriverState *old_bs = child->bs;
2626 uint64_t perm, shared_perm;
2627
Max Reitz7b99a262019-06-12 16:07:11 +02002628 /* Asserts that child->frozen == false */
Kevin Wolf8aecf1d2017-08-03 17:02:57 +02002629 bdrv_replace_child_noperm(child, new_bs);
2630
Max Reitz87ace5f2019-05-22 19:03:49 +02002631 /*
2632 * Start with the new node's permissions. If @new_bs is a (direct
2633 * or indirect) child of @old_bs, we must complete the permission
2634 * update on @new_bs before we loosen the restrictions on @old_bs.
2635 * Otherwise, bdrv_check_perm() on @old_bs would re-initiate
2636 * updating the permissions of @new_bs, and thus not purely loosen
2637 * restrictions.
2638 */
2639 if (new_bs) {
2640 bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2641 bdrv_set_perm(new_bs, perm, shared_perm);
2642 }
2643
Kevin Wolf8ee03992017-03-06 13:45:28 +01002644 if (old_bs) {
2645 /* Update permissions for old node. This is guaranteed to succeed
2646 * because we're just taking a parent away, so we're loosening
2647 * restrictions. */
Max Reitz10467792019-05-22 19:03:51 +02002648 bool tighten_restrictions;
2649 int ret;
2650
Kevin Wolf8ee03992017-03-06 13:45:28 +01002651 bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
Max Reitz10467792019-05-22 19:03:51 +02002652 ret = bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL,
2653 &tighten_restrictions, NULL);
2654 assert(tighten_restrictions == false);
2655 if (ret < 0) {
2656 /* We only tried to loosen restrictions, so errors are not fatal */
2657 bdrv_abort_perm_update(old_bs);
2658 } else {
2659 bdrv_set_perm(old_bs, perm, shared_perm);
2660 }
Kevin Wolfad943dc2019-04-24 18:04:42 +02002661
2662 /* When the parent requiring a non-default AioContext is removed, the
2663 * node moves back to the main AioContext */
2664 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
Kevin Wolf8ee03992017-03-06 13:45:28 +01002665 }
Kevin Wolff54120f2014-05-26 11:09:59 +02002666}
2667
Alberto Garciab441dc72019-05-13 16:46:18 +03002668/*
2669 * This function steals the reference to child_bs from the caller.
2670 * That reference is later dropped by bdrv_root_unref_child().
2671 *
2672 * On failure NULL is returned, errp is set and the reference to
2673 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002674 *
2675 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2676 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03002677 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002678BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2679 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002680 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002681 BdrvChildRole child_role,
Kevin Wolf132ada82019-04-24 17:41:46 +02002682 AioContext *ctx,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002683 uint64_t perm, uint64_t shared_perm,
2684 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02002685{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002686 BdrvChild *child;
Kevin Wolf132ada82019-04-24 17:41:46 +02002687 Error *local_err = NULL;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002688 int ret;
2689
Max Reitz9eab1542019-05-22 19:03:50 +02002690 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, NULL,
2691 errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002692 if (ret < 0) {
Kevin Wolf33a610c2016-12-15 13:04:20 +01002693 bdrv_abort_perm_update(child_bs);
Alberto Garciab441dc72019-05-13 16:46:18 +03002694 bdrv_unref(child_bs);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002695 return NULL;
2696 }
2697
2698 child = g_new(BdrvChild, 1);
Kevin Wolfdf581792015-06-15 11:53:47 +02002699 *child = (BdrvChild) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002700 .bs = NULL,
2701 .name = g_strdup(child_name),
Max Reitzbd86fb92020-05-13 13:05:13 +02002702 .klass = child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002703 .role = child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002704 .perm = perm,
2705 .shared_perm = shared_perm,
2706 .opaque = opaque,
Kevin Wolfdf581792015-06-15 11:53:47 +02002707 };
2708
Kevin Wolf132ada82019-04-24 17:41:46 +02002709 /* If the AioContexts don't match, first try to move the subtree of
2710 * child_bs into the AioContext of the new parent. If this doesn't work,
2711 * try moving the parent into the AioContext of child_bs instead. */
2712 if (bdrv_get_aio_context(child_bs) != ctx) {
2713 ret = bdrv_try_set_aio_context(child_bs, ctx, &local_err);
Max Reitzbd86fb92020-05-13 13:05:13 +02002714 if (ret < 0 && child_class->can_set_aio_ctx) {
Philippe Mathieu-Daudé0beab812020-02-18 10:43:52 +01002715 GSList *ignore = g_slist_prepend(NULL, child);
Kevin Wolf132ada82019-04-24 17:41:46 +02002716 ctx = bdrv_get_aio_context(child_bs);
Max Reitzbd86fb92020-05-13 13:05:13 +02002717 if (child_class->can_set_aio_ctx(child, ctx, &ignore, NULL)) {
Kevin Wolf132ada82019-04-24 17:41:46 +02002718 error_free(local_err);
2719 ret = 0;
2720 g_slist_free(ignore);
Philippe Mathieu-Daudé0beab812020-02-18 10:43:52 +01002721 ignore = g_slist_prepend(NULL, child);
Max Reitzbd86fb92020-05-13 13:05:13 +02002722 child_class->set_aio_ctx(child, ctx, &ignore);
Kevin Wolf132ada82019-04-24 17:41:46 +02002723 }
2724 g_slist_free(ignore);
2725 }
2726 if (ret < 0) {
2727 error_propagate(errp, local_err);
2728 g_free(child);
2729 bdrv_abort_perm_update(child_bs);
Vladimir Sementsov-Ogievskiy7a26df22020-03-24 18:59:21 +03002730 bdrv_unref(child_bs);
Kevin Wolf132ada82019-04-24 17:41:46 +02002731 return NULL;
2732 }
2733 }
2734
Kevin Wolf33a610c2016-12-15 13:04:20 +01002735 /* This performs the matching bdrv_set_perm() for the above check. */
Kevin Wolf466787f2017-03-08 14:44:07 +01002736 bdrv_replace_child(child, child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002737
2738 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02002739}
2740
Alberto Garciab441dc72019-05-13 16:46:18 +03002741/*
2742 * This function transfers the reference to child_bs from the caller
2743 * to parent_bs. That reference is later dropped by parent_bs on
2744 * bdrv_close() or if someone calls bdrv_unref_child().
2745 *
2746 * On failure NULL is returned, errp is set and the reference to
2747 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002748 *
2749 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2750 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03002751 */
Wen Congyang98292c62016-05-10 15:36:38 +08002752BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2753 BlockDriverState *child_bs,
2754 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002755 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002756 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002757 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002758{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002759 BdrvChild *child;
Kevin Wolff68c5982016-12-20 15:51:12 +01002760 uint64_t perm, shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002761
Kevin Wolff68c5982016-12-20 15:51:12 +01002762 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2763
2764 assert(parent_bs->drv);
Max Reitze5d8a402020-05-13 13:05:44 +02002765 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002766 perm, shared_perm, &perm, &shared_perm);
Kevin Wolff68c5982016-12-20 15:51:12 +01002767
Max Reitzbd86fb92020-05-13 13:05:13 +02002768 child = bdrv_root_attach_child(child_bs, child_name, child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002769 child_role, bdrv_get_aio_context(parent_bs),
Kevin Wolff68c5982016-12-20 15:51:12 +01002770 perm, shared_perm, parent_bs, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002771 if (child == NULL) {
2772 return NULL;
2773 }
2774
Kevin Wolff21d96d2016-03-08 13:47:46 +01002775 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2776 return child;
2777}
2778
Kevin Wolf3f09bfb2015-09-15 11:58:23 +02002779static void bdrv_detach_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002780{
Stefan Hajnoczi195ed8c2020-02-14 17:17:10 +00002781 QLIST_SAFE_REMOVE(child, next);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002782
Kevin Wolf466787f2017-03-08 14:44:07 +01002783 bdrv_replace_child(child, NULL);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002784
Kevin Wolf260fecf2015-04-27 13:46:22 +02002785 g_free(child->name);
Kevin Wolf33a60402015-06-15 13:51:04 +02002786 g_free(child);
2787}
2788
Max Reitz7b99a262019-06-12 16:07:11 +02002789/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002790void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002791{
Kevin Wolf779020c2015-10-13 14:09:44 +02002792 BlockDriverState *child_bs;
2793
Kevin Wolff21d96d2016-03-08 13:47:46 +01002794 child_bs = child->bs;
2795 bdrv_detach_child(child);
2796 bdrv_unref(child_bs);
2797}
2798
Max Reitz3cf746b2019-07-03 19:28:07 +02002799/**
2800 * Clear all inherits_from pointers from children and grandchildren of
2801 * @root that point to @root, where necessary.
2802 */
2803static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002804{
Max Reitz3cf746b2019-07-03 19:28:07 +02002805 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02002806
Max Reitz3cf746b2019-07-03 19:28:07 +02002807 if (child->bs->inherits_from == root) {
2808 /*
2809 * Remove inherits_from only when the last reference between root and
2810 * child->bs goes away.
2811 */
2812 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002813 if (c != child && c->bs == child->bs) {
2814 break;
2815 }
2816 }
2817 if (c == NULL) {
2818 child->bs->inherits_from = NULL;
2819 }
Kevin Wolf33a60402015-06-15 13:51:04 +02002820 }
2821
Max Reitz3cf746b2019-07-03 19:28:07 +02002822 QLIST_FOREACH(c, &child->bs->children, next) {
2823 bdrv_unset_inherits_from(root, c);
2824 }
2825}
2826
Max Reitz7b99a262019-06-12 16:07:11 +02002827/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02002828void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2829{
2830 if (child == NULL) {
2831 return;
2832 }
2833
2834 bdrv_unset_inherits_from(parent, child);
Kevin Wolff21d96d2016-03-08 13:47:46 +01002835 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02002836}
2837
Kevin Wolf5c8cab42016-02-24 15:13:35 +01002838
2839static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2840{
2841 BdrvChild *c;
2842 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02002843 if (c->klass->change_media) {
2844 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01002845 }
2846 }
2847}
2848
Alberto Garcia0065c452018-10-31 18:16:37 +02002849/* Return true if you can reach parent going through child->inherits_from
2850 * recursively. If parent or child are NULL, return false */
2851static bool bdrv_inherits_from_recursive(BlockDriverState *child,
2852 BlockDriverState *parent)
2853{
2854 while (child && child != parent) {
2855 child = child->inherits_from;
2856 }
2857
2858 return child != NULL;
2859}
2860
Kevin Wolf5db15a52015-09-14 15:33:33 +02002861/*
Max Reitz25191e52020-05-13 13:05:33 +02002862 * Return the BdrvChildRole for @bs's backing child. bs->backing is
2863 * mostly used for COW backing children (role = COW), but also for
2864 * filtered children (role = FILTERED | PRIMARY).
2865 */
2866static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
2867{
2868 if (bs->drv && bs->drv->is_filter) {
2869 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
2870 } else {
2871 return BDRV_CHILD_COW;
2872 }
2873}
2874
2875/*
Max Reitz9ee413c2019-06-12 18:42:34 +02002876 * Sets the bs->backing link of a BDS. A new reference is created; callers
Kevin Wolf5db15a52015-09-14 15:33:33 +02002877 * which don't need their own reference any more must call bdrv_unref().
2878 */
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002879void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2880 Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08002881{
Alberto Garcia0065c452018-10-31 18:16:37 +02002882 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
2883 bdrv_inherits_from_recursive(backing_hd, bs);
2884
Max Reitz9ee413c2019-06-12 18:42:34 +02002885 if (bdrv_is_backing_chain_frozen(bs, child_bs(bs->backing), errp)) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002886 return;
2887 }
2888
Kevin Wolf5db15a52015-09-14 15:33:33 +02002889 if (backing_hd) {
2890 bdrv_ref(backing_hd);
2891 }
Fam Zheng8d24cce2014-05-23 21:29:45 +08002892
Kevin Wolf760e0062015-06-17 14:55:21 +02002893 if (bs->backing) {
Max Reitz7b99a262019-06-12 16:07:11 +02002894 /* Cannot be frozen, we checked that above */
Kevin Wolf5db15a52015-09-14 15:33:33 +02002895 bdrv_unref_child(bs, bs->backing);
Vladimir Sementsov-Ogievskiy6e579632020-03-16 09:06:30 +03002896 bs->backing = NULL;
Fam Zheng826b6ca2014-05-23 21:29:47 +08002897 }
2898
Fam Zheng8d24cce2014-05-23 21:29:45 +08002899 if (!backing_hd) {
2900 goto out;
2901 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002902
Max Reitz25191e52020-05-13 13:05:33 +02002903 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_of_bds,
2904 bdrv_backing_role(bs), errp);
Alberto Garcia0065c452018-10-31 18:16:37 +02002905 /* If backing_hd was already part of bs's backing chain, and
2906 * inherits_from pointed recursively to bs then let's update it to
2907 * point directly to bs (else it will become NULL). */
Alberto Garciab441dc72019-05-13 16:46:18 +03002908 if (bs->backing && update_inherits_from) {
Alberto Garcia0065c452018-10-31 18:16:37 +02002909 backing_hd->inherits_from = bs;
2910 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08002911
Fam Zheng8d24cce2014-05-23 21:29:45 +08002912out:
Kevin Wolf3baca892014-07-16 17:48:16 +02002913 bdrv_refresh_limits(bs, NULL);
Fam Zheng8d24cce2014-05-23 21:29:45 +08002914}
2915
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002916/*
2917 * Opens the backing file for a BlockDriverState if not yet open
2918 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002919 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2920 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2921 * itself, all options starting with "${bdref_key}." are considered part of the
2922 * BlockdevRef.
2923 *
2924 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002925 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002926int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2927 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02002928{
Max Reitz6b6833c2019-02-01 20:29:15 +01002929 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002930 char *bdref_key_dot;
2931 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02002932 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01002933 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08002934 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002935 QDict *options;
2936 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002937 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002938
Kevin Wolf760e0062015-06-17 14:55:21 +02002939 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002940 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002941 }
2942
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002943 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002944 if (parent_options == NULL) {
2945 tmp_parent_options = qdict_new();
2946 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002947 }
2948
Paolo Bonzini9156df12012-10-18 16:49:17 +02002949 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002950
2951 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2952 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2953 g_free(bdref_key_dot);
2954
Markus Armbruster129c7d12017-03-30 19:43:12 +02002955 /*
2956 * Caution: while qdict_get_try_str() is fine, getting non-string
2957 * types would require more care. When @parent_options come from
2958 * -blockdev or blockdev_add, its members are typed according to
2959 * the QAPI schema, but when they come from -drive, they're all
2960 * QString.
2961 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002962 reference = qdict_get_try_str(parent_options, bdref_key);
2963 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01002964 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02002965 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002966 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002967 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08002968 } else {
Max Reitz998c2012019-02-01 20:29:08 +01002969 if (qdict_size(options) == 0) {
2970 /* If the user specifies options that do not modify the
2971 * backing file's behavior, we might still consider it the
2972 * implicit backing file. But it's easier this way, and
2973 * just specifying some of the backing BDS's options is
2974 * only possible with -drive anyway (otherwise the QAPI
2975 * schema forces the user to specify everything). */
2976 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
2977 }
2978
Max Reitz6b6833c2019-02-01 20:29:15 +01002979 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01002980 if (local_err) {
2981 ret = -EINVAL;
2982 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002983 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01002984 goto free_exit;
2985 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02002986 }
2987
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002988 if (!bs->drv || !bs->drv->supports_backing) {
2989 ret = -EINVAL;
2990 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002991 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002992 goto free_exit;
2993 }
2994
Peter Krempa6bff5972017-10-12 16:14:10 +02002995 if (!reference &&
2996 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002997 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02002998 }
2999
Max Reitz6b6833c2019-02-01 20:29:15 +01003000 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003001 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003002 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003003 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003004 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003005 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003006 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003007 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003008
Max Reitz998c2012019-02-01 20:29:08 +01003009 if (implicit_backing) {
3010 bdrv_refresh_filename(backing_hd);
3011 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3012 backing_hd->filename);
3013 }
3014
Kevin Wolf5db15a52015-09-14 15:33:33 +02003015 /* Hook up the backing file link; drop our reference, bs owns the
3016 * backing_hd reference now */
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003017 bdrv_set_backing_hd(bs, backing_hd, &local_err);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003018 bdrv_unref(backing_hd);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003019 if (local_err) {
Fam Zheng8cd1a3e2017-03-17 09:56:30 +08003020 error_propagate(errp, local_err);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003021 ret = -EINVAL;
3022 goto free_exit;
3023 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003024
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003025 qdict_del(parent_options, bdref_key);
3026
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003027free_exit:
3028 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003029 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003030 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003031}
3032
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003033static BlockDriverState *
3034bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003035 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003036 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003037{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003038 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003039 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003040 char *bdref_key_dot;
3041 const char *reference;
3042
Max Reitzbd86fb92020-05-13 13:05:13 +02003043 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003044
Max Reitzda557aa2013-12-20 19:28:11 +01003045 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3046 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3047 g_free(bdref_key_dot);
3048
Markus Armbruster129c7d12017-03-30 19:43:12 +02003049 /*
3050 * Caution: while qdict_get_try_str() is fine, getting non-string
3051 * types would require more care. When @options come from
3052 * -blockdev or blockdev_add, its members are typed according to
3053 * the QAPI schema, but when they come from -drive, they're all
3054 * QString.
3055 */
Max Reitzda557aa2013-12-20 19:28:11 +01003056 reference = qdict_get_try_str(options, bdref_key);
3057 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003058 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003059 error_setg(errp, "A block device must be specified for \"%s\"",
3060 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003061 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003062 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003063 goto done;
3064 }
3065
Max Reitz5b363932016-05-17 16:41:31 +02003066 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003067 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003068 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003069 goto done;
3070 }
3071
Max Reitzda557aa2013-12-20 19:28:11 +01003072done:
3073 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003074 return bs;
3075}
3076
3077/*
3078 * Opens a disk image whose options are given as BlockdevRef in another block
3079 * device's options.
3080 *
3081 * If allow_none is true, no image will be opened if filename is false and no
3082 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3083 *
3084 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3085 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3086 * itself, all options starting with "${bdref_key}." are considered part of the
3087 * BlockdevRef.
3088 *
3089 * The BlockdevRef will be removed from the options QDict.
3090 */
3091BdrvChild *bdrv_open_child(const char *filename,
3092 QDict *options, const char *bdref_key,
3093 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003094 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003095 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003096 bool allow_none, Error **errp)
3097{
3098 BlockDriverState *bs;
3099
Max Reitzbd86fb92020-05-13 13:05:13 +02003100 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003101 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003102 if (bs == NULL) {
3103 return NULL;
3104 }
3105
Max Reitz258b7762020-05-13 13:05:15 +02003106 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3107 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003108}
3109
Max Reitzbd86fb92020-05-13 13:05:13 +02003110/*
3111 * TODO Future callers may need to specify parent/child_class in order for
3112 * option inheritance to work. Existing callers use it for the root node.
3113 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003114BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3115{
3116 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003117 QObject *obj = NULL;
3118 QDict *qdict = NULL;
3119 const char *reference = NULL;
3120 Visitor *v = NULL;
3121
3122 if (ref->type == QTYPE_QSTRING) {
3123 reference = ref->u.reference;
3124 } else {
3125 BlockdevOptions *options = &ref->u.definition;
3126 assert(ref->type == QTYPE_QDICT);
3127
3128 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003129 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003130 visit_complete(v, &obj);
3131
Max Reitz7dc847e2018-02-24 16:40:29 +01003132 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003133 qdict_flatten(qdict);
3134
3135 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3136 * compatibility with other callers) rather than what we want as the
3137 * real defaults. Apply the defaults here instead. */
3138 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3139 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3140 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003141 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3142
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003143 }
3144
Max Reitz272c02e2020-05-13 13:05:17 +02003145 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003146 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003147 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003148 visit_free(v);
3149 return bs;
3150}
3151
Max Reitz66836182016-05-17 16:41:27 +02003152static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3153 int flags,
3154 QDict *snapshot_options,
3155 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003156{
3157 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003158 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003159 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003160 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003161 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003162 Error *local_err = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003163 int ret;
3164
3165 /* if snapshot, we create a temporary backing file and open it
3166 instead of opening 'filename' directly */
3167
3168 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003169 total_size = bdrv_getlength(bs);
3170 if (total_size < 0) {
3171 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003172 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003173 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003174
3175 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003176 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003177 if (ret < 0) {
3178 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003179 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003180 }
3181
Max Reitzef810432014-12-02 18:32:42 +01003182 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003183 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003184 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003185 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003186 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003187 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003188 error_prepend(errp, "Could not create temporary overlay '%s': ",
3189 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003190 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003191 }
3192
Kevin Wolf73176be2016-03-07 13:02:15 +01003193 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003194 qdict_put_str(snapshot_options, "file.driver", "file");
3195 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3196 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003197
Max Reitz5b363932016-05-17 16:41:31 +02003198 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003199 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003200 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003201 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003202 }
3203
Eric Blakeff6ed712017-04-27 16:58:18 -05003204 /* bdrv_append() consumes a strong reference to bs_snapshot
3205 * (i.e. it will call bdrv_unref() on it) even on error, so in
3206 * order to be able to return one, we have to increase
3207 * bs_snapshot's refcount here */
Max Reitz66836182016-05-17 16:41:27 +02003208 bdrv_ref(bs_snapshot);
Kevin Wolfb2c28322017-02-20 12:46:42 +01003209 bdrv_append(bs_snapshot, bs, &local_err);
3210 if (local_err) {
3211 error_propagate(errp, local_err);
Eric Blakeff6ed712017-04-27 16:58:18 -05003212 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003213 goto out;
3214 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003215
3216out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003217 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003218 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05003219 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003220}
3221
Max Reitzda557aa2013-12-20 19:28:11 +01003222/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003223 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003224 *
3225 * options is a QDict of options to pass to the block drivers, or NULL for an
3226 * empty set of options. The reference to the QDict belongs to the block layer
3227 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003228 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003229 *
3230 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3231 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003232 *
3233 * The reference parameter may be used to specify an existing block device which
3234 * should be opened. If specified, neither options nor a filename may be given,
3235 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003236 */
Max Reitz5b363932016-05-17 16:41:31 +02003237static BlockDriverState *bdrv_open_inherit(const char *filename,
3238 const char *reference,
3239 QDict *options, int flags,
3240 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003241 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003242 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003243 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003244{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003245 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003246 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003247 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003248 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003249 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003250 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003251 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003252 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003253 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003254 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003255
Max Reitzbd86fb92020-05-13 13:05:13 +02003256 assert(!child_class || !flags);
3257 assert(!child_class == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01003258
Max Reitzddf56362014-02-18 18:33:06 +01003259 if (reference) {
3260 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003261 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003262
Max Reitzddf56362014-02-18 18:33:06 +01003263 if (filename || options_non_empty) {
3264 error_setg(errp, "Cannot reference an existing block device with "
3265 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003266 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003267 }
3268
3269 bs = bdrv_lookup_bs(reference, reference, errp);
3270 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003271 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003272 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003273
Max Reitzddf56362014-02-18 18:33:06 +01003274 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003275 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003276 }
3277
Max Reitz5b363932016-05-17 16:41:31 +02003278 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003279
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003280 /* NULL means an empty set of options */
3281 if (options == NULL) {
3282 options = qdict_new();
3283 }
3284
Kevin Wolf145f5982015-05-08 16:15:03 +02003285 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003286 parse_json_protocol(options, &filename, &local_err);
3287 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003288 goto fail;
3289 }
3290
Kevin Wolf145f5982015-05-08 16:15:03 +02003291 bs->explicit_options = qdict_clone_shallow(options);
3292
Max Reitzbd86fb92020-05-13 13:05:13 +02003293 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003294 bool parent_is_format;
3295
3296 if (parent->drv) {
3297 parent_is_format = parent->drv->is_format;
3298 } else {
3299 /*
3300 * parent->drv is not set yet because this node is opened for
3301 * (potential) format probing. That means that @parent is going
3302 * to be a format node.
3303 */
3304 parent_is_format = true;
3305 }
3306
Kevin Wolfbddcec32015-04-09 18:47:50 +02003307 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003308 child_class->inherit_options(child_role, parent_is_format,
3309 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003310 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003311 }
3312
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003313 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003314 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003315 goto fail;
3316 }
3317
Markus Armbruster129c7d12017-03-30 19:43:12 +02003318 /*
3319 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3320 * Caution: getting a boolean member of @options requires care.
3321 * When @options come from -blockdev or blockdev_add, members are
3322 * typed according to the QAPI schema, but when they come from
3323 * -drive, they're all QString.
3324 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003325 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3326 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3327 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3328 } else {
3329 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003330 }
3331
3332 if (flags & BDRV_O_SNAPSHOT) {
3333 snapshot_options = qdict_new();
3334 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3335 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003336 /* Let bdrv_backing_options() override "read-only" */
3337 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003338 bdrv_inherited_options(BDRV_CHILD_COW, true,
3339 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003340 }
3341
Kevin Wolf62392eb2015-04-24 16:38:02 +02003342 bs->open_flags = flags;
3343 bs->options = options;
3344 options = qdict_clone_shallow(options);
3345
Kevin Wolf76c591b2014-06-04 14:19:44 +02003346 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003347 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003348 drvname = qdict_get_try_str(options, "driver");
3349 if (drvname) {
3350 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003351 if (!drv) {
3352 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003353 goto fail;
3354 }
3355 }
3356
3357 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003358
Markus Armbruster129c7d12017-03-30 19:43:12 +02003359 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003360 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003361 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3362 (backing && *backing == '\0'))
3363 {
Max Reitz4f7be282018-02-24 16:40:33 +01003364 if (backing) {
3365 warn_report("Use of \"backing\": \"\" is deprecated; "
3366 "use \"backing\": null instead");
3367 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003368 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003369 qdict_del(bs->explicit_options, "backing");
3370 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003371 qdict_del(options, "backing");
3372 }
3373
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003374 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003375 * probing, the block drivers will do their own bdrv_open_child() for the
3376 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003377 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003378 BlockDriverState *file_bs;
3379
3380 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003381 &child_of_bds, BDRV_CHILD_IMAGE,
3382 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003383 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003384 goto fail;
3385 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003386 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003387 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3388 * looking at the header to guess the image format. This works even
3389 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003390 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003391 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003392 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003393 if (local_err) {
3394 goto fail;
3395 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003396
Eric Blake46f5ac22017-04-27 16:58:17 -05003397 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003398 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003399 }
3400
Kevin Wolf76c591b2014-06-04 14:19:44 +02003401 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003402 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003403 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003404 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003405 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003406 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003407 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003408 /*
3409 * This option update would logically belong in bdrv_fill_options(),
3410 * but we first need to open bs->file for the probing to work, while
3411 * opening bs->file already requires the (mostly) final set of options
3412 * so that cache mode etc. can be inherited.
3413 *
3414 * Adding the driver later is somewhat ugly, but it's not an option
3415 * that would ever be inherited, so it's correct. We just need to make
3416 * sure to update both bs->options (which has the full effective
3417 * options for bs) and options (which has file.* already removed).
3418 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003419 qdict_put_str(bs->options, "driver", drv->format_name);
3420 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003421 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003422 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003423 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003424 }
3425
Max Reitz53a29512015-03-19 14:53:16 -04003426 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3427 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3428 /* file must be NULL if a protocol BDS is about to be created
3429 * (the inverse results in an error message from bdrv_open_common()) */
3430 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3431
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003432 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003433 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003434 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003435 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01003436 }
3437
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003438 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003439 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01003440 file = NULL;
3441 }
3442
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003443 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02003444 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003445 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003446 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003447 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003448 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003449 }
3450
Alberto Garcia50196d72018-09-06 12:37:03 +03003451 /* Remove all children options and references
3452 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03003453 QLIST_FOREACH(child, &bs->children, next) {
3454 char *child_key_dot;
3455 child_key_dot = g_strdup_printf("%s.", child->name);
3456 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3457 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03003458 qdict_del(bs->explicit_options, child->name);
3459 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03003460 g_free(child_key_dot);
3461 }
3462
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003463 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01003464 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003465 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01003466 if (flags & BDRV_O_PROTOCOL) {
3467 error_setg(errp, "Block protocol '%s' doesn't support the option "
3468 "'%s'", drv->format_name, entry->key);
3469 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01003470 error_setg(errp,
3471 "Block format '%s' does not support the option '%s'",
3472 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01003473 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003474
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003475 goto close_and_fail;
3476 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003477
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01003478 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003479
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003480 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03003481 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003482
3483 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3484 * temporary snapshot afterwards. */
3485 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02003486 BlockDriverState *snapshot_bs;
3487 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3488 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01003489 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003490 if (local_err) {
3491 goto close_and_fail;
3492 }
Max Reitz5b363932016-05-17 16:41:31 +02003493 /* We are not going to return bs but the overlay on top of it
3494 * (snapshot_bs); thus, we have to drop the strong reference to bs
3495 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3496 * though, because the overlay still has a reference to it. */
3497 bdrv_unref(bs);
3498 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02003499 }
3500
Max Reitz5b363932016-05-17 16:41:31 +02003501 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003502
Kevin Wolf8bfea152014-04-11 19:16:36 +02003503fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003504 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003505 qobject_unref(snapshot_options);
3506 qobject_unref(bs->explicit_options);
3507 qobject_unref(bs->options);
3508 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003509 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03003510 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003511 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003512 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003513 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003514
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003515close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02003516 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003517 qobject_unref(snapshot_options);
3518 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003519 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003520 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003521}
3522
Max Reitz5b363932016-05-17 16:41:31 +02003523BlockDriverState *bdrv_open(const char *filename, const char *reference,
3524 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02003525{
Max Reitz5b363932016-05-17 16:41:31 +02003526 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02003527 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003528}
3529
Alberto Garciafaf116b2019-03-12 18:48:49 +02003530/* Return true if the NULL-terminated @list contains @str */
3531static bool is_str_in_list(const char *str, const char *const *list)
3532{
3533 if (str && list) {
3534 int i;
3535 for (i = 0; list[i] != NULL; i++) {
3536 if (!strcmp(str, list[i])) {
3537 return true;
3538 }
3539 }
3540 }
3541 return false;
3542}
3543
3544/*
3545 * Check that every option set in @bs->options is also set in
3546 * @new_opts.
3547 *
3548 * Options listed in the common_options list and in
3549 * @bs->drv->mutable_opts are skipped.
3550 *
3551 * Return 0 on success, otherwise return -EINVAL and set @errp.
3552 */
3553static int bdrv_reset_options_allowed(BlockDriverState *bs,
3554 const QDict *new_opts, Error **errp)
3555{
3556 const QDictEntry *e;
3557 /* These options are common to all block drivers and are handled
3558 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3559 const char *const common_options[] = {
3560 "node-name", "discard", "cache.direct", "cache.no-flush",
3561 "read-only", "auto-read-only", "detect-zeroes", NULL
3562 };
3563
3564 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3565 if (!qdict_haskey(new_opts, e->key) &&
3566 !is_str_in_list(e->key, common_options) &&
3567 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3568 error_setg(errp, "Option '%s' cannot be reset "
3569 "to its default value", e->key);
3570 return -EINVAL;
3571 }
3572 }
3573
3574 return 0;
3575}
3576
Jeff Codye971aa12012-09-20 15:13:19 -04003577/*
Alberto Garciacb828c32019-03-12 18:48:47 +02003578 * Returns true if @child can be reached recursively from @bs
3579 */
3580static bool bdrv_recurse_has_child(BlockDriverState *bs,
3581 BlockDriverState *child)
3582{
3583 BdrvChild *c;
3584
3585 if (bs == child) {
3586 return true;
3587 }
3588
3589 QLIST_FOREACH(c, &bs->children, next) {
3590 if (bdrv_recurse_has_child(c->bs, child)) {
3591 return true;
3592 }
3593 }
3594
3595 return false;
3596}
3597
3598/*
Jeff Codye971aa12012-09-20 15:13:19 -04003599 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3600 * reopen of multiple devices.
3601 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003602 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04003603 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3604 * be created and initialized. This newly created BlockReopenQueue should be
3605 * passed back in for subsequent calls that are intended to be of the same
3606 * atomic 'set'.
3607 *
3608 * bs is the BlockDriverState to add to the reopen queue.
3609 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003610 * options contains the changed options for the associated bs
3611 * (the BlockReopenQueue takes ownership)
3612 *
Jeff Codye971aa12012-09-20 15:13:19 -04003613 * flags contains the open flags for the associated bs
3614 *
3615 * returns a pointer to bs_queue, which is either the newly allocated
3616 * bs_queue, or the existing bs_queue being used.
3617 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003618 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003619 */
Kevin Wolf28518102015-05-08 17:07:31 +02003620static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3621 BlockDriverState *bs,
3622 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003623 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02003624 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02003625 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02003626 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02003627 int parent_flags,
3628 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04003629{
3630 assert(bs != NULL);
3631
3632 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02003633 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003634 QDict *old_options, *explicit_options, *options_copy;
3635 int flags;
3636 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003637
Kevin Wolf1a63a902017-12-06 20:24:44 +01003638 /* Make sure that the caller remembered to use a drained section. This is
3639 * important to avoid graph changes between the recursive queuing here and
3640 * bdrv_reopen_multiple(). */
3641 assert(bs->quiesce_counter > 0);
3642
Jeff Codye971aa12012-09-20 15:13:19 -04003643 if (bs_queue == NULL) {
3644 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003645 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04003646 }
3647
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003648 if (!options) {
3649 options = qdict_new();
3650 }
3651
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003652 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003653 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003654 if (bs == bs_entry->state.bs) {
3655 break;
3656 }
3657 }
3658
Kevin Wolf28518102015-05-08 17:07:31 +02003659 /*
3660 * Precedence of options:
3661 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003662 * 2. Retained from explicitly set options of bs
3663 * 3. Inherited from parent node
3664 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02003665 */
3666
Kevin Wolf145f5982015-05-08 16:15:03 +02003667 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02003668 if (bs_entry || keep_old_opts) {
3669 old_options = qdict_clone_shallow(bs_entry ?
3670 bs_entry->state.explicit_options :
3671 bs->explicit_options);
3672 bdrv_join_options(bs, options, old_options);
3673 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003674 }
Kevin Wolf145f5982015-05-08 16:15:03 +02003675
3676 explicit_options = qdict_clone_shallow(options);
3677
Kevin Wolf28518102015-05-08 17:07:31 +02003678 /* Inherit from parent node */
3679 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003680 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003681 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02003682 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003683 } else {
3684 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02003685 }
3686
Alberto Garcia077e8e22019-03-12 18:48:44 +02003687 if (keep_old_opts) {
3688 /* Old values are used for options that aren't set yet */
3689 old_options = qdict_clone_shallow(bs->options);
3690 bdrv_join_options(bs, options, old_options);
3691 qobject_unref(old_options);
3692 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003693
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003694 /* We have the final set of options so let's update the flags */
3695 options_copy = qdict_clone_shallow(options);
3696 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3697 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3698 update_flags_from_options(&flags, opts);
3699 qemu_opts_del(opts);
3700 qobject_unref(options_copy);
3701
Kevin Wolffd452022017-08-03 17:02:59 +02003702 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02003703 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02003704 if (flags & BDRV_O_RDWR) {
3705 flags |= BDRV_O_ALLOW_RDWR;
3706 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02003707
Kevin Wolf1857c972017-09-14 14:53:46 +02003708 if (!bs_entry) {
3709 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003710 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02003711 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003712 qobject_unref(bs_entry->state.options);
3713 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02003714 }
3715
3716 bs_entry->state.bs = bs;
3717 bs_entry->state.options = options;
3718 bs_entry->state.explicit_options = explicit_options;
3719 bs_entry->state.flags = flags;
3720
Kevin Wolf30450252017-07-03 17:07:35 +02003721 /* This needs to be overwritten in bdrv_reopen_prepare() */
3722 bs_entry->state.perm = UINT64_MAX;
3723 bs_entry->state.shared_perm = 0;
3724
Alberto Garcia85466322019-03-12 18:48:45 +02003725 /*
3726 * If keep_old_opts is false then it means that unspecified
3727 * options must be reset to their original value. We don't allow
3728 * resetting 'backing' but we need to know if the option is
3729 * missing in order to decide if we have to return an error.
3730 */
3731 if (!keep_old_opts) {
3732 bs_entry->state.backing_missing =
3733 !qdict_haskey(options, "backing") &&
3734 !qdict_haskey(options, "backing.driver");
3735 }
3736
Kevin Wolf67251a32015-04-09 18:54:04 +02003737 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02003738 QDict *new_child_options = NULL;
3739 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003740
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003741 /* reopen can only change the options of block devices that were
3742 * implicitly created and inherited options. For other (referenced)
3743 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02003744 if (child->bs->inherits_from != bs) {
3745 continue;
3746 }
3747
Alberto Garcia85466322019-03-12 18:48:45 +02003748 /* Check if the options contain a child reference */
3749 if (qdict_haskey(options, child->name)) {
3750 const char *childref = qdict_get_try_str(options, child->name);
3751 /*
3752 * The current child must not be reopened if the child
3753 * reference is null or points to a different node.
3754 */
3755 if (g_strcmp0(childref, child->bs->node_name)) {
3756 continue;
3757 }
3758 /*
3759 * If the child reference points to the current child then
3760 * reopen it with its existing set of options (note that
3761 * it can still inherit new options from the parent).
3762 */
3763 child_keep_old = true;
3764 } else {
3765 /* Extract child options ("child-name.*") */
3766 char *child_key_dot = g_strdup_printf("%s.", child->name);
3767 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
3768 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
3769 g_free(child_key_dot);
3770 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003771
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003772 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02003773 child->klass, child->role, bs->drv->is_format,
3774 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04003775 }
3776
Jeff Codye971aa12012-09-20 15:13:19 -04003777 return bs_queue;
3778}
3779
Kevin Wolf28518102015-05-08 17:07:31 +02003780BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3781 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02003782 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02003783{
Max Reitz3cdc69d2020-05-13 13:05:18 +02003784 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
3785 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02003786}
3787
Jeff Codye971aa12012-09-20 15:13:19 -04003788/*
3789 * Reopen multiple BlockDriverStates atomically & transactionally.
3790 *
3791 * The queue passed in (bs_queue) must have been built up previous
3792 * via bdrv_reopen_queue().
3793 *
3794 * Reopens all BDS specified in the queue, with the appropriate
3795 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02003796 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04003797 * data cleaned up.
3798 *
3799 * If all devices prepare successfully, then the changes are committed
3800 * to all devices.
3801 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003802 * All affected nodes must be drained between bdrv_reopen_queue() and
3803 * bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003804 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02003805int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04003806{
3807 int ret = -1;
3808 BlockReopenQueueEntry *bs_entry, *next;
Jeff Codye971aa12012-09-20 15:13:19 -04003809
3810 assert(bs_queue != NULL);
3811
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003812 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01003813 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolfa4615ab2019-03-05 16:51:13 +01003814 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, errp)) {
Jeff Codye971aa12012-09-20 15:13:19 -04003815 goto cleanup;
3816 }
3817 bs_entry->prepared = true;
3818 }
3819
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003820 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01003821 BDRVReopenState *state = &bs_entry->state;
3822 ret = bdrv_check_perm(state->bs, bs_queue, state->perm,
Max Reitz9eab1542019-05-22 19:03:50 +02003823 state->shared_perm, NULL, NULL, errp);
Kevin Wolf69b736e2019-03-05 17:18:22 +01003824 if (ret < 0) {
3825 goto cleanup_perm;
3826 }
Alberto Garciacb828c32019-03-12 18:48:47 +02003827 /* Check if new_backing_bs would accept the new permissions */
3828 if (state->replace_backing_bs && state->new_backing_bs) {
3829 uint64_t nperm, nshared;
3830 bdrv_child_perm(state->bs, state->new_backing_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02003831 NULL, bdrv_backing_role(state->bs),
Max Reitz25191e52020-05-13 13:05:33 +02003832 bs_queue, state->perm, state->shared_perm,
Alberto Garciacb828c32019-03-12 18:48:47 +02003833 &nperm, &nshared);
3834 ret = bdrv_check_update_perm(state->new_backing_bs, NULL,
Max Reitz9eab1542019-05-22 19:03:50 +02003835 nperm, nshared, NULL, NULL, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02003836 if (ret < 0) {
3837 goto cleanup_perm;
3838 }
3839 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01003840 bs_entry->perms_checked = true;
3841 }
3842
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03003843 /*
3844 * If we reach this point, we have success and just need to apply the
3845 * changes.
3846 *
3847 * Reverse order is used to comfort qcow2 driver: on commit it need to write
3848 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
3849 * children are usually goes after parents in reopen-queue, so go from last
3850 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04003851 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03003852 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Jeff Codye971aa12012-09-20 15:13:19 -04003853 bdrv_reopen_commit(&bs_entry->state);
3854 }
3855
3856 ret = 0;
Kevin Wolf69b736e2019-03-05 17:18:22 +01003857cleanup_perm:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003858 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01003859 BDRVReopenState *state = &bs_entry->state;
Jeff Codye971aa12012-09-20 15:13:19 -04003860
Kevin Wolf69b736e2019-03-05 17:18:22 +01003861 if (!bs_entry->perms_checked) {
3862 continue;
3863 }
3864
3865 if (ret == 0) {
3866 bdrv_set_perm(state->bs, state->perm, state->shared_perm);
3867 } else {
3868 bdrv_abort_perm_update(state->bs);
Alberto Garciacb828c32019-03-12 18:48:47 +02003869 if (state->replace_backing_bs && state->new_backing_bs) {
3870 bdrv_abort_perm_update(state->new_backing_bs);
3871 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01003872 }
3873 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01003874
3875 if (ret == 0) {
3876 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
3877 BlockDriverState *bs = bs_entry->state.bs;
3878
3879 if (bs->drv->bdrv_reopen_commit_post)
3880 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
3881 }
3882 }
Jeff Codye971aa12012-09-20 15:13:19 -04003883cleanup:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003884 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Alberto Garcia1bab38e2018-06-29 14:37:01 +03003885 if (ret) {
3886 if (bs_entry->prepared) {
3887 bdrv_reopen_abort(&bs_entry->state);
3888 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003889 qobject_unref(bs_entry->state.explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003890 qobject_unref(bs_entry->state.options);
Jeff Codye971aa12012-09-20 15:13:19 -04003891 }
Alberto Garciacb828c32019-03-12 18:48:47 +02003892 if (bs_entry->state.new_backing_bs) {
3893 bdrv_unref(bs_entry->state.new_backing_bs);
3894 }
Jeff Codye971aa12012-09-20 15:13:19 -04003895 g_free(bs_entry);
3896 }
3897 g_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03003898
Jeff Codye971aa12012-09-20 15:13:19 -04003899 return ret;
3900}
3901
Alberto Garcia6e1000a2018-11-12 16:00:33 +02003902int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
3903 Error **errp)
3904{
3905 int ret;
3906 BlockReopenQueue *queue;
3907 QDict *opts = qdict_new();
3908
3909 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
3910
3911 bdrv_subtree_drained_begin(bs);
Alberto Garcia077e8e22019-03-12 18:48:44 +02003912 queue = bdrv_reopen_queue(NULL, bs, opts, true);
Alberto Garcia5019aec2019-03-12 18:48:50 +02003913 ret = bdrv_reopen_multiple(queue, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02003914 bdrv_subtree_drained_end(bs);
3915
3916 return ret;
3917}
3918
Kevin Wolf30450252017-07-03 17:07:35 +02003919static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3920 BdrvChild *c)
3921{
3922 BlockReopenQueueEntry *entry;
3923
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003924 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf30450252017-07-03 17:07:35 +02003925 BlockDriverState *bs = entry->state.bs;
3926 BdrvChild *child;
3927
3928 QLIST_FOREACH(child, &bs->children, next) {
3929 if (child == c) {
3930 return entry;
3931 }
3932 }
3933 }
3934
3935 return NULL;
3936}
3937
3938static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3939 uint64_t *perm, uint64_t *shared)
3940{
3941 BdrvChild *c;
3942 BlockReopenQueueEntry *parent;
3943 uint64_t cumulative_perms = 0;
3944 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3945
3946 QLIST_FOREACH(c, &bs->parents, next_parent) {
3947 parent = find_parent_in_reopen_queue(q, c);
3948 if (!parent) {
3949 cumulative_perms |= c->perm;
3950 cumulative_shared_perms &= c->shared_perm;
3951 } else {
3952 uint64_t nperm, nshared;
3953
Max Reitze5d8a402020-05-13 13:05:44 +02003954 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
Kevin Wolf30450252017-07-03 17:07:35 +02003955 parent->state.perm, parent->state.shared_perm,
3956 &nperm, &nshared);
3957
3958 cumulative_perms |= nperm;
3959 cumulative_shared_perms &= nshared;
3960 }
3961 }
3962 *perm = cumulative_perms;
3963 *shared = cumulative_shared_perms;
3964}
Jeff Codye971aa12012-09-20 15:13:19 -04003965
Kevin Wolf1de6b452020-03-06 15:14:13 +01003966static bool bdrv_reopen_can_attach(BlockDriverState *parent,
3967 BdrvChild *child,
3968 BlockDriverState *new_child,
3969 Error **errp)
3970{
3971 AioContext *parent_ctx = bdrv_get_aio_context(parent);
3972 AioContext *child_ctx = bdrv_get_aio_context(new_child);
3973 GSList *ignore;
3974 bool ret;
3975
3976 ignore = g_slist_prepend(NULL, child);
3977 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
3978 g_slist_free(ignore);
3979 if (ret) {
3980 return ret;
3981 }
3982
3983 ignore = g_slist_prepend(NULL, child);
3984 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
3985 g_slist_free(ignore);
3986 return ret;
3987}
3988
Jeff Codye971aa12012-09-20 15:13:19 -04003989/*
Alberto Garciacb828c32019-03-12 18:48:47 +02003990 * Take a BDRVReopenState and check if the value of 'backing' in the
3991 * reopen_state->options QDict is valid or not.
3992 *
3993 * If 'backing' is missing from the QDict then return 0.
3994 *
3995 * If 'backing' contains the node name of the backing file of
3996 * reopen_state->bs then return 0.
3997 *
3998 * If 'backing' contains a different node name (or is null) then check
3999 * whether the current backing file can be replaced with the new one.
4000 * If that's the case then reopen_state->replace_backing_bs is set to
4001 * true and reopen_state->new_backing_bs contains a pointer to the new
4002 * backing BlockDriverState (or NULL).
4003 *
4004 * Return 0 on success, otherwise return < 0 and set @errp.
4005 */
4006static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
4007 Error **errp)
4008{
4009 BlockDriverState *bs = reopen_state->bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004010 BlockDriverState *overlay_bs, *below_bs, *new_backing_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004011 QObject *value;
4012 const char *str;
4013
4014 value = qdict_get(reopen_state->options, "backing");
4015 if (value == NULL) {
4016 return 0;
4017 }
4018
4019 switch (qobject_type(value)) {
4020 case QTYPE_QNULL:
4021 new_backing_bs = NULL;
4022 break;
4023 case QTYPE_QSTRING:
4024 str = qobject_get_try_str(value);
4025 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
4026 if (new_backing_bs == NULL) {
4027 return -EINVAL;
4028 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
4029 error_setg(errp, "Making '%s' a backing file of '%s' "
4030 "would create a cycle", str, bs->node_name);
4031 return -EINVAL;
4032 }
4033 break;
4034 default:
4035 /* 'backing' does not allow any other data type */
4036 g_assert_not_reached();
4037 }
4038
4039 /*
Kevin Wolf1de6b452020-03-06 15:14:13 +01004040 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4041 * bdrv_reopen_commit() won't fail.
Alberto Garciacb828c32019-03-12 18:48:47 +02004042 */
4043 if (new_backing_bs) {
Kevin Wolf1de6b452020-03-06 15:14:13 +01004044 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004045 return -EINVAL;
4046 }
4047 }
4048
4049 /*
Max Reitz1d42f482019-06-12 17:24:39 +02004050 * Ensure that @bs can really handle backing files, because we are
4051 * about to give it one (or swap the existing one)
4052 */
4053 if (bs->drv->is_filter) {
4054 /* Filters always have a file or a backing child */
4055 if (!bs->backing) {
4056 error_setg(errp, "'%s' is a %s filter node that does not support a "
4057 "backing child", bs->node_name, bs->drv->format_name);
4058 return -EINVAL;
4059 }
4060 } else if (!bs->drv->supports_backing) {
4061 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
4062 "files", bs->drv->format_name, bs->node_name);
4063 return -EINVAL;
4064 }
4065
4066 /*
Alberto Garciacb828c32019-03-12 18:48:47 +02004067 * Find the "actual" backing file by skipping all links that point
4068 * to an implicit node, if any (e.g. a commit filter node).
Max Reitz1d42f482019-06-12 17:24:39 +02004069 * We cannot use any of the bdrv_skip_*() functions here because
4070 * those return the first explicit node, while we are looking for
4071 * its overlay here.
Alberto Garciacb828c32019-03-12 18:48:47 +02004072 */
4073 overlay_bs = bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004074 for (below_bs = bdrv_filter_or_cow_bs(overlay_bs);
4075 below_bs && below_bs->implicit;
4076 below_bs = bdrv_filter_or_cow_bs(overlay_bs))
4077 {
4078 overlay_bs = below_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004079 }
4080
4081 /* If we want to replace the backing file we need some extra checks */
Max Reitz1d42f482019-06-12 17:24:39 +02004082 if (new_backing_bs != bdrv_filter_or_cow_bs(overlay_bs)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004083 /* Check for implicit nodes between bs and its backing file */
4084 if (bs != overlay_bs) {
4085 error_setg(errp, "Cannot change backing link if '%s' has "
4086 "an implicit backing file", bs->node_name);
4087 return -EPERM;
4088 }
Max Reitz1d42f482019-06-12 17:24:39 +02004089 /*
4090 * Check if the backing link that we want to replace is frozen.
4091 * Note that
4092 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4093 * because we know that overlay_bs == bs, and that @bs
4094 * either is a filter that uses ->backing or a COW format BDS
4095 * with bs->drv->supports_backing == true.
4096 */
4097 if (bdrv_is_backing_chain_frozen(overlay_bs,
4098 child_bs(overlay_bs->backing), errp))
4099 {
Alberto Garciacb828c32019-03-12 18:48:47 +02004100 return -EPERM;
4101 }
4102 reopen_state->replace_backing_bs = true;
4103 if (new_backing_bs) {
4104 bdrv_ref(new_backing_bs);
4105 reopen_state->new_backing_bs = new_backing_bs;
4106 }
4107 }
4108
4109 return 0;
4110}
4111
4112/*
Jeff Codye971aa12012-09-20 15:13:19 -04004113 * Prepares a BlockDriverState for reopen. All changes are staged in the
4114 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4115 * the block driver layer .bdrv_reopen_prepare()
4116 *
4117 * bs is the BlockDriverState to reopen
4118 * flags are the new open flags
4119 * queue is the reopen queue
4120 *
4121 * Returns 0 on success, non-zero on error. On error errp will be set
4122 * as well.
4123 *
4124 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4125 * It is the responsibility of the caller to then call the abort() or
4126 * commit() for any other BDS that have been left in a prepare() state
4127 *
4128 */
4129int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
4130 Error **errp)
4131{
4132 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004133 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004134 Error *local_err = NULL;
4135 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004136 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004137 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004138 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004139 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004140 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004141
4142 assert(reopen_state != NULL);
4143 assert(reopen_state->bs->drv != NULL);
4144 drv = reopen_state->bs->drv;
4145
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004146 /* This function and each driver's bdrv_reopen_prepare() remove
4147 * entries from reopen_state->options as they are processed, so
4148 * we need to make a copy of the original QDict. */
4149 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4150
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004151 /* Process generic block layer options */
4152 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004153 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004154 ret = -EINVAL;
4155 goto error;
4156 }
4157
Alberto Garciae6d79c42018-11-12 16:00:47 +02004158 /* This was already called in bdrv_reopen_queue_child() so the flags
4159 * are up-to-date. This time we simply want to remove the options from
4160 * QemuOpts in order to indicate that they have been processed. */
4161 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004162 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004163 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004164
Alberto Garcia415bbca2018-10-03 13:23:13 +03004165 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004166 if (discard != NULL) {
4167 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4168 error_setg(errp, "Invalid discard option");
4169 ret = -EINVAL;
4170 goto error;
4171 }
4172 }
4173
Alberto Garcia543770b2018-09-06 12:37:09 +03004174 reopen_state->detect_zeroes =
4175 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4176 if (local_err) {
4177 error_propagate(errp, local_err);
4178 ret = -EINVAL;
4179 goto error;
4180 }
4181
Alberto Garcia57f9db92018-09-06 12:37:06 +03004182 /* All other options (including node-name and driver) must be unchanged.
4183 * Put them back into the QDict, so that they are checked at the end
4184 * of this function. */
4185 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004186
Jeff Cody3d8ce172017-04-07 16:55:30 -04004187 /* If we are to stay read-only, do not allow permission change
4188 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4189 * not set, or if the BDS still has copy_on_read enabled */
4190 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004191 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004192 if (local_err) {
4193 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004194 goto error;
4195 }
4196
Kevin Wolf30450252017-07-03 17:07:35 +02004197 /* Calculate required permissions after reopening */
4198 bdrv_reopen_perm(queue, reopen_state->bs,
4199 &reopen_state->perm, &reopen_state->shared_perm);
Jeff Codye971aa12012-09-20 15:13:19 -04004200
4201 ret = bdrv_flush(reopen_state->bs);
4202 if (ret) {
Eric Blake455b0fd2015-11-10 23:51:20 -07004203 error_setg_errno(errp, -ret, "Error flushing drive");
Jeff Codye971aa12012-09-20 15:13:19 -04004204 goto error;
4205 }
4206
4207 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004208 /*
4209 * If a driver-specific option is missing, it means that we
4210 * should reset it to its default value.
4211 * But not all options allow that, so we need to check it first.
4212 */
4213 ret = bdrv_reset_options_allowed(reopen_state->bs,
4214 reopen_state->options, errp);
4215 if (ret) {
4216 goto error;
4217 }
4218
Jeff Codye971aa12012-09-20 15:13:19 -04004219 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4220 if (ret) {
4221 if (local_err != NULL) {
4222 error_propagate(errp, local_err);
4223 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004224 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004225 error_setg(errp, "failed while preparing to reopen image '%s'",
4226 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004227 }
4228 goto error;
4229 }
4230 } else {
4231 /* It is currently mandatory to have a bdrv_reopen_prepare()
4232 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004233 error_setg(errp, "Block format '%s' used by node '%s' "
4234 "does not support reopening files", drv->format_name,
4235 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004236 ret = -1;
4237 goto error;
4238 }
4239
Max Reitz9ad08c42018-11-16 17:45:24 +01004240 drv_prepared = true;
4241
Alberto Garciabacd9b82019-03-12 18:48:46 +02004242 /*
4243 * We must provide the 'backing' option if the BDS has a backing
4244 * file or if the image file has a backing file name as part of
4245 * its metadata. Otherwise the 'backing' option can be omitted.
4246 */
4247 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004248 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004249 error_setg(errp, "backing is missing for '%s'",
4250 reopen_state->bs->node_name);
4251 ret = -EINVAL;
4252 goto error;
4253 }
4254
Alberto Garciacb828c32019-03-12 18:48:47 +02004255 /*
4256 * Allow changing the 'backing' option. The new value can be
4257 * either a reference to an existing node (using its node name)
4258 * or NULL to simply detach the current backing file.
4259 */
4260 ret = bdrv_reopen_parse_backing(reopen_state, errp);
4261 if (ret < 0) {
4262 goto error;
4263 }
4264 qdict_del(reopen_state->options, "backing");
4265
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004266 /* Options that are not handled are only okay if they are unchanged
4267 * compared to the old state. It is expected that some options are only
4268 * used for the initial open, but not reopen (e.g. filename) */
4269 if (qdict_size(reopen_state->options)) {
4270 const QDictEntry *entry = qdict_first(reopen_state->options);
4271
4272 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004273 QObject *new = entry->value;
4274 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004275
Alberto Garciadb905282018-09-06 12:37:05 +03004276 /* Allow child references (child_name=node_name) as long as they
4277 * point to the current child (i.e. everything stays the same). */
4278 if (qobject_type(new) == QTYPE_QSTRING) {
4279 BdrvChild *child;
4280 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4281 if (!strcmp(child->name, entry->key)) {
4282 break;
4283 }
4284 }
4285
4286 if (child) {
4287 const char *str = qobject_get_try_str(new);
4288 if (!strcmp(child->bs->node_name, str)) {
4289 continue; /* Found child with this name, skip option */
4290 }
4291 }
4292 }
4293
Max Reitz54fd1b02017-11-14 19:01:26 +01004294 /*
4295 * TODO: When using -drive to specify blockdev options, all values
4296 * will be strings; however, when using -blockdev, blockdev-add or
4297 * filenames using the json:{} pseudo-protocol, they will be
4298 * correctly typed.
4299 * In contrast, reopening options are (currently) always strings
4300 * (because you can only specify them through qemu-io; all other
4301 * callers do not specify any options).
4302 * Therefore, when using anything other than -drive to create a BDS,
4303 * this cannot detect non-string options as unchanged, because
4304 * qobject_is_equal() always returns false for objects of different
4305 * type. In the future, this should be remedied by correctly typing
4306 * all options. For now, this is not too big of an issue because
4307 * the user can simply omit options which cannot be changed anyway,
4308 * so they will stay unchanged.
4309 */
4310 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004311 error_setg(errp, "Cannot change the option '%s'", entry->key);
4312 ret = -EINVAL;
4313 goto error;
4314 }
4315 } while ((entry = qdict_next(reopen_state->options, entry)));
4316 }
4317
Jeff Codye971aa12012-09-20 15:13:19 -04004318 ret = 0;
4319
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004320 /* Restore the original reopen_state->options QDict */
4321 qobject_unref(reopen_state->options);
4322 reopen_state->options = qobject_ref(orig_reopen_opts);
4323
Jeff Codye971aa12012-09-20 15:13:19 -04004324error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004325 if (ret < 0 && drv_prepared) {
4326 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4327 * call drv->bdrv_reopen_abort() before signaling an error
4328 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4329 * when the respective bdrv_reopen_prepare() has failed) */
4330 if (drv->bdrv_reopen_abort) {
4331 drv->bdrv_reopen_abort(reopen_state);
4332 }
4333 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004334 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004335 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004336 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004337 return ret;
4338}
4339
4340/*
4341 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4342 * makes them final by swapping the staging BlockDriverState contents into
4343 * the active BlockDriverState contents.
4344 */
4345void bdrv_reopen_commit(BDRVReopenState *reopen_state)
4346{
4347 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004348 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004349 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004350
4351 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004352 bs = reopen_state->bs;
4353 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004354 assert(drv != NULL);
4355
4356 /* If there are any driver level actions to take */
4357 if (drv->bdrv_reopen_commit) {
4358 drv->bdrv_reopen_commit(reopen_state);
4359 }
4360
4361 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004362 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004363 qobject_unref(bs->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004364
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004365 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004366 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004367 bs->open_flags = reopen_state->flags;
4368 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
Alberto Garcia543770b2018-09-06 12:37:09 +03004369 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004370
Alberto Garciacb828c32019-03-12 18:48:47 +02004371 if (reopen_state->replace_backing_bs) {
4372 qdict_del(bs->explicit_options, "backing");
4373 qdict_del(bs->options, "backing");
4374 }
4375
Alberto Garcia50196d72018-09-06 12:37:03 +03004376 /* Remove child references from bs->options and bs->explicit_options.
4377 * Child options were already removed in bdrv_reopen_queue_child() */
4378 QLIST_FOREACH(child, &bs->children, next) {
4379 qdict_del(bs->explicit_options, child->name);
4380 qdict_del(bs->options, child->name);
4381 }
4382
Alberto Garciacb828c32019-03-12 18:48:47 +02004383 /*
4384 * Change the backing file if a new one was specified. We do this
4385 * after updating bs->options, so bdrv_refresh_filename() (called
4386 * from bdrv_set_backing_hd()) has the new values.
4387 */
4388 if (reopen_state->replace_backing_bs) {
Max Reitz1d42f482019-06-12 17:24:39 +02004389 BlockDriverState *old_backing_bs = child_bs(bs->backing);
Alberto Garciacb828c32019-03-12 18:48:47 +02004390 assert(!old_backing_bs || !old_backing_bs->implicit);
4391 /* Abort the permission update on the backing bs we're detaching */
4392 if (old_backing_bs) {
4393 bdrv_abort_perm_update(old_backing_bs);
4394 }
4395 bdrv_set_backing_hd(bs, reopen_state->new_backing_bs, &error_abort);
4396 }
4397
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004398 bdrv_refresh_limits(bs, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004399}
4400
4401/*
4402 * Abort the reopen, and delete and free the staged changes in
4403 * reopen_state
4404 */
4405void bdrv_reopen_abort(BDRVReopenState *reopen_state)
4406{
4407 BlockDriver *drv;
4408
4409 assert(reopen_state != NULL);
4410 drv = reopen_state->bs->drv;
4411 assert(drv != NULL);
4412
4413 if (drv->bdrv_reopen_abort) {
4414 drv->bdrv_reopen_abort(reopen_state);
4415 }
4416}
4417
4418
Max Reitz64dff522016-01-29 16:36:10 +01004419static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004420{
Max Reitz33384422014-06-20 21:57:33 +02004421 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004422 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004423
Max Reitz30f55fb2016-05-17 16:41:32 +02004424 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004425
Paolo Bonzinifc272912015-12-23 11:48:24 +01004426 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004427 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004428 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004429
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004430 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004431 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004432 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004433 bs->drv->bdrv_close(bs);
4434 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004435 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004436 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004437
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004438 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004439 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004440 }
4441
Alberto Garciadd4118c2019-05-13 16:46:17 +03004442 bs->backing = NULL;
4443 bs->file = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004444 g_free(bs->opaque);
4445 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004446 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004447 bs->backing_file[0] = '\0';
4448 bs->backing_format[0] = '\0';
4449 bs->total_sectors = 0;
4450 bs->encrypted = false;
4451 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004452 qobject_unref(bs->options);
4453 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004454 bs->options = NULL;
4455 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004456 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004457 bs->full_open_options = NULL;
4458
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004459 bdrv_release_named_dirty_bitmaps(bs);
4460 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4461
Max Reitz33384422014-06-20 21:57:33 +02004462 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4463 g_free(ban);
4464 }
4465 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004466 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004467
4468 /*
4469 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4470 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4471 * gets called.
4472 */
4473 if (bs->quiesce_counter) {
4474 bdrv_drain_all_end_quiesce(bs);
4475 }
bellardb3380822004-03-14 21:38:54 +00004476}
4477
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004478void bdrv_close_all(void)
4479{
Kevin Wolfb3b52992018-05-16 13:46:37 +02004480 assert(job_next(NULL) == NULL);
Kevin Wolfbc4ee652020-09-24 17:27:03 +02004481 blk_exp_close_all();
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004482
Max Reitzca9bd242016-01-29 16:36:14 +01004483 /* Drop references from requests still in flight, such as canceled block
4484 * jobs whose AIO context has not been polled yet */
4485 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004486
Max Reitzca9bd242016-01-29 16:36:14 +01004487 blk_remove_all_bs();
4488 blockdev_close_all_bdrv_states();
4489
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004490 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004491}
4492
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004493static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004494{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004495 GQueue *queue;
4496 GHashTable *found;
4497 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004498
Max Reitzbd86fb92020-05-13 13:05:13 +02004499 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004500 return false;
4501 }
4502
Max Reitzec9f10f2018-06-13 20:18:15 +02004503 /* If the child @c belongs to the BDS @to, replacing the current
4504 * c->bs by @to would mean to create a loop.
4505 *
4506 * Such a case occurs when appending a BDS to a backing chain.
4507 * For instance, imagine the following chain:
4508 *
4509 * guest device -> node A -> further backing chain...
4510 *
4511 * Now we create a new BDS B which we want to put on top of this
4512 * chain, so we first attach A as its backing node:
4513 *
4514 * node B
4515 * |
4516 * v
4517 * guest device -> node A -> further backing chain...
4518 *
4519 * Finally we want to replace A by B. When doing that, we want to
4520 * replace all pointers to A by pointers to B -- except for the
4521 * pointer from B because (1) that would create a loop, and (2)
4522 * that pointer should simply stay intact:
4523 *
4524 * guest device -> node B
4525 * |
4526 * v
4527 * node A -> further backing chain...
4528 *
4529 * In general, when replacing a node A (c->bs) by a node B (@to),
4530 * if A is a child of B, that means we cannot replace A by B there
4531 * because that would create a loop. Silently detaching A from B
4532 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004533 * place there is the most sensible choice.
4534 *
4535 * We would also create a loop in any cases where @c is only
4536 * indirectly referenced by @to. Prevent this by returning false
4537 * if @c is found (by breadth-first search) anywhere in the whole
4538 * subtree of @to.
4539 */
4540
4541 ret = true;
4542 found = g_hash_table_new(NULL, NULL);
4543 g_hash_table_add(found, to);
4544 queue = g_queue_new();
4545 g_queue_push_tail(queue, to);
4546
4547 while (!g_queue_is_empty(queue)) {
4548 BlockDriverState *v = g_queue_pop_head(queue);
4549 BdrvChild *c2;
4550
4551 QLIST_FOREACH(c2, &v->children, next) {
4552 if (c2 == c) {
4553 ret = false;
4554 break;
4555 }
4556
4557 if (g_hash_table_contains(found, c2->bs)) {
4558 continue;
4559 }
4560
4561 g_queue_push_tail(queue, c2->bs);
4562 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004563 }
4564 }
4565
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004566 g_queue_free(queue);
4567 g_hash_table_destroy(found);
4568
4569 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004570}
4571
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004572/*
4573 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4574 * if it creates a parent-child relation loop or if parent is block-job.
4575 *
4576 * With auto_skip=false the error is returned if from has a parent which should
4577 * not be updated.
4578 */
4579static void bdrv_replace_node_common(BlockDriverState *from,
4580 BlockDriverState *to,
4581 bool auto_skip, Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004582{
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004583 BdrvChild *c, *next;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004584 GSList *list = NULL, *p;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004585 uint64_t perm = 0, shared = BLK_PERM_ALL;
4586 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004587
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004588 /* Make sure that @from doesn't go away until we have successfully attached
4589 * all of its parents to @to. */
4590 bdrv_ref(from);
4591
Kevin Wolff871abd2019-05-21 19:00:25 +02004592 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01004593 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02004594 bdrv_drained_begin(from);
4595
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004596 /* Put all parents into @list and calculate their cumulative permissions */
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004597 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
Max Reitzec9f10f2018-06-13 20:18:15 +02004598 assert(c->bs == from);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004599 if (!should_update_child(c, to)) {
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004600 if (auto_skip) {
4601 continue;
4602 }
4603 error_setg(errp, "Should not change '%s' link to '%s'",
4604 c->name, from->node_name);
4605 goto out;
Kevin Wolf26de9432017-01-17 13:39:34 +01004606 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004607 if (c->frozen) {
4608 error_setg(errp, "Cannot change '%s' link to '%s'",
4609 c->name, from->node_name);
4610 goto out;
4611 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004612 list = g_slist_prepend(list, c);
4613 perm |= c->perm;
4614 shared &= c->shared_perm;
4615 }
4616
4617 /* Check whether the required permissions can be granted on @to, ignoring
4618 * all BdrvChild in @list so that they can't block themselves. */
Max Reitz9eab1542019-05-22 19:03:50 +02004619 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, NULL, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004620 if (ret < 0) {
4621 bdrv_abort_perm_update(to);
4622 goto out;
4623 }
4624
4625 /* Now actually perform the change. We performed the permission check for
4626 * all elements of @list at once, so set the permissions all at once at the
4627 * very end. */
4628 for (p = list; p != NULL; p = p->next) {
4629 c = p->data;
Max Reitz9bd910e2016-06-10 20:57:46 +02004630
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004631 bdrv_ref(to);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004632 bdrv_replace_child_noperm(c, to);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004633 bdrv_unref(from);
4634 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004635
Vladimir Sementsov-Ogievskiyb503de62019-08-24 13:07:40 +03004636 bdrv_get_cumulative_perm(to, &perm, &shared);
4637 bdrv_set_perm(to, perm, shared);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004638
4639out:
4640 g_slist_free(list);
Kevin Wolff871abd2019-05-21 19:00:25 +02004641 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004642 bdrv_unref(from);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004643}
4644
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004645void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
4646 Error **errp)
4647{
4648 return bdrv_replace_node_common(from, to, true, errp);
4649}
4650
Jeff Cody8802d1f2012-02-28 15:54:06 -05004651/*
4652 * Add new bs contents at the top of an image chain while the chain is
4653 * live, while keeping required fields on the top layer.
4654 *
4655 * This will modify the BlockDriverState fields, and swap contents
4656 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4657 *
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02004658 * bs_new must not be attached to a BlockBackend.
Jeff Codyf6801b82012-03-27 16:30:19 -04004659 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05004660 * This function does not create any image files.
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004661 *
4662 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
4663 * that's what the callers commonly need. bs_new will be referenced by the old
4664 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
4665 * reference of its own, it must call bdrv_ref().
Jeff Cody8802d1f2012-02-28 15:54:06 -05004666 */
Kevin Wolfb2c28322017-02-20 12:46:42 +01004667void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
4668 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05004669{
Kevin Wolfb2c28322017-02-20 12:46:42 +01004670 Error *local_err = NULL;
4671
Kevin Wolfb2c28322017-02-20 12:46:42 +01004672 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
4673 if (local_err) {
4674 error_propagate(errp, local_err);
4675 goto out;
4676 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004677
Kevin Wolf5fe31c22017-03-06 16:20:51 +01004678 bdrv_replace_node(bs_top, bs_new, &local_err);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004679 if (local_err) {
4680 error_propagate(errp, local_err);
4681 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
4682 goto out;
4683 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004684
4685 /* bs_new is now referenced by its new parents, we don't need the
4686 * additional reference any more. */
Kevin Wolfb2c28322017-02-20 12:46:42 +01004687out:
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004688 bdrv_unref(bs_new);
Jeff Cody8802d1f2012-02-28 15:54:06 -05004689}
4690
Fam Zheng4f6fd342013-08-23 09:14:47 +08004691static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00004692{
Fam Zheng3718d8a2014-05-23 21:29:43 +08004693 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08004694 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02004695
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01004696 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01004697 if (bs->node_name[0] != '\0') {
4698 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
4699 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01004700 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
4701
Anton Kuchin30c321f2019-05-07 11:12:56 +03004702 bdrv_close(bs);
4703
Anthony Liguori7267c092011-08-20 22:09:37 -05004704 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00004705}
4706
aliguorie97fc192009-04-21 23:11:50 +00004707/*
4708 * Run consistency checks on an image
4709 *
Kevin Wolfe076f332010-06-29 11:43:13 +02004710 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02004711 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02004712 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00004713 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03004714int coroutine_fn bdrv_co_check(BlockDriverState *bs,
4715 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00004716{
Max Reitz908bcd52014-08-07 22:47:55 +02004717 if (bs->drv == NULL) {
4718 return -ENOMEDIUM;
4719 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01004720 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00004721 return -ENOTSUP;
4722 }
4723
Kevin Wolfe076f332010-06-29 11:43:13 +02004724 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01004725 return bs->drv->bdrv_co_check(bs, res, fix);
4726}
4727
Kevin Wolf756e6732010-01-12 12:55:17 +01004728/*
4729 * Return values:
4730 * 0 - success
4731 * -EINVAL - backing format specified, but no file
4732 * -ENOSPC - can't update the backing file because no space is left in the
4733 * image file header
4734 * -ENOTSUP - format driver doesn't support changing the backing file
4735 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05004736int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
4737 const char *backing_fmt, bool warn)
Kevin Wolf756e6732010-01-12 12:55:17 +01004738{
4739 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02004740 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01004741
Max Reitzd470ad42017-11-10 21:31:09 +01004742 if (!drv) {
4743 return -ENOMEDIUM;
4744 }
4745
Paolo Bonzini5f377792012-04-12 14:01:01 +02004746 /* Backing file format doesn't make sense without a backing file */
4747 if (backing_fmt && !backing_file) {
4748 return -EINVAL;
4749 }
4750
Eric Blakee54ee1b2020-07-06 15:39:53 -05004751 if (warn && backing_file && !backing_fmt) {
4752 warn_report("Deprecated use of backing file without explicit "
4753 "backing format, use of this image requires "
4754 "potentially unsafe format probing");
4755 }
4756
Kevin Wolf756e6732010-01-12 12:55:17 +01004757 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02004758 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01004759 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02004760 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01004761 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02004762
4763 if (ret == 0) {
4764 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
4765 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01004766 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
4767 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02004768 }
4769 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01004770}
4771
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004772/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004773 * Finds the first non-filter node above bs in the chain between
4774 * active and bs. The returned node is either an immediate parent of
4775 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004776 *
4777 * Returns NULL if bs is not found in active's image chain,
4778 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04004779 *
4780 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004781 */
4782BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
4783 BlockDriverState *bs)
4784{
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004785 bs = bdrv_skip_filters(bs);
4786 active = bdrv_skip_filters(active);
4787
4788 while (active) {
4789 BlockDriverState *next = bdrv_backing_chain_next(active);
4790 if (bs == next) {
4791 return active;
4792 }
4793 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004794 }
4795
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004796 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04004797}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004798
Jeff Cody4caf0fc2014-06-25 15:35:26 -04004799/* Given a BDS, searches for the base layer. */
4800BlockDriverState *bdrv_find_base(BlockDriverState *bs)
4801{
4802 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004803}
4804
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004805/*
Max Reitz7b99a262019-06-12 16:07:11 +02004806 * Return true if at least one of the COW (backing) and filter links
4807 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004808 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004809 */
4810bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
4811 Error **errp)
4812{
4813 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02004814 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004815
Max Reitz7b99a262019-06-12 16:07:11 +02004816 for (i = bs; i != base; i = child_bs(child)) {
4817 child = bdrv_filter_or_cow_child(i);
4818
4819 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004820 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02004821 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004822 return true;
4823 }
4824 }
4825
4826 return false;
4827}
4828
4829/*
Max Reitz7b99a262019-06-12 16:07:11 +02004830 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004831 * If any of the links is already frozen the operation is aborted and
4832 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004833 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004834 * Returns 0 on success. On failure returns < 0 and sets @errp.
4835 */
4836int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
4837 Error **errp)
4838{
4839 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02004840 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004841
4842 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
4843 return -EPERM;
4844 }
4845
Max Reitz7b99a262019-06-12 16:07:11 +02004846 for (i = bs; i != base; i = child_bs(child)) {
4847 child = bdrv_filter_or_cow_child(i);
4848 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02004849 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02004850 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02004851 return -EPERM;
4852 }
4853 }
4854
Max Reitz7b99a262019-06-12 16:07:11 +02004855 for (i = bs; i != base; i = child_bs(child)) {
4856 child = bdrv_filter_or_cow_child(i);
4857 if (child) {
4858 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004859 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004860 }
4861
4862 return 0;
4863}
4864
4865/*
Max Reitz7b99a262019-06-12 16:07:11 +02004866 * Unfreeze all COW (backing) and filter links between @bs and @base.
4867 * The caller must ensure that all links are frozen before using this
4868 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004869 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004870 */
4871void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
4872{
4873 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02004874 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004875
Max Reitz7b99a262019-06-12 16:07:11 +02004876 for (i = bs; i != base; i = child_bs(child)) {
4877 child = bdrv_filter_or_cow_child(i);
4878 if (child) {
4879 assert(child->frozen);
4880 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02004881 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02004882 }
4883}
4884
4885/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004886 * Drops images above 'base' up to and including 'top', and sets the image
4887 * above 'top' to have base as its backing file.
4888 *
4889 * Requires that the overlay to 'top' is opened r/w, so that the backing file
4890 * information in 'bs' can be properly updated.
4891 *
4892 * E.g., this will convert the following chain:
4893 * bottom <- base <- intermediate <- top <- active
4894 *
4895 * to
4896 *
4897 * bottom <- base <- active
4898 *
4899 * It is allowed for bottom==base, in which case it converts:
4900 *
4901 * base <- intermediate <- top <- active
4902 *
4903 * to
4904 *
4905 * base <- active
4906 *
Jeff Cody54e26902014-06-25 15:40:10 -04004907 * If backing_file_str is non-NULL, it will be used when modifying top's
4908 * overlay image metadata.
4909 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004910 * Error conditions:
4911 * if active == top, that is considered an error
4912 *
4913 */
Kevin Wolfbde70712017-06-27 20:36:18 +02004914int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
4915 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004916{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004917 BlockDriverState *explicit_top = top;
4918 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004919 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004920 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004921 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004922 g_autoptr(GSList) updated_children = NULL;
4923 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004924
Kevin Wolf6858eba2017-06-29 19:32:21 +02004925 bdrv_ref(top);
Max Reitz637d54a2019-07-22 15:33:43 +02004926 bdrv_subtree_drained_begin(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02004927
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004928 if (!top->drv || !base->drv) {
4929 goto exit;
4930 }
4931
Kevin Wolf5db15a52015-09-14 15:33:33 +02004932 /* Make sure that base is in the backing chain of top */
4933 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004934 goto exit;
4935 }
4936
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004937 /* If 'base' recursively inherits from 'top' then we should set
4938 * base->inherits_from to top->inherits_from after 'top' and all
4939 * other intermediate nodes have been dropped.
4940 * If 'top' is an implicit node (e.g. "commit_top") we should skip
4941 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02004942 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004943 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
4944
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004945 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02004946 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
4947 * we've figured out how they should work. */
Max Reitzf30c66b2019-02-01 20:29:05 +01004948 if (!backing_file_str) {
4949 bdrv_refresh_filename(base);
4950 backing_file_str = base->filename;
4951 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02004952
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004953 QLIST_FOREACH(c, &top->parents, next_parent) {
4954 updated_children = g_slist_prepend(updated_children, c);
4955 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004956
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004957 bdrv_replace_node_common(top, base, false, &local_err);
4958 if (local_err) {
4959 error_report_err(local_err);
4960 goto exit;
4961 }
4962
4963 for (p = updated_children; p; p = p->next) {
4964 c = p->data;
4965
Max Reitzbd86fb92020-05-13 13:05:13 +02004966 if (c->klass->update_filename) {
4967 ret = c->klass->update_filename(c, base, backing_file_str,
4968 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02004969 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03004970 /*
4971 * TODO: Actually, we want to rollback all previous iterations
4972 * of this loop, and (which is almost impossible) previous
4973 * bdrv_replace_node()...
4974 *
4975 * Note, that c->klass->update_filename may lead to permission
4976 * update, so it's a bad idea to call it inside permission
4977 * update transaction of bdrv_replace_node.
4978 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02004979 error_report_err(local_err);
4980 goto exit;
4981 }
4982 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004983 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004984
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004985 if (update_inherits_from) {
4986 base->inherits_from = explicit_top->inherits_from;
4987 }
4988
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004989 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004990exit:
Max Reitz637d54a2019-07-22 15:33:43 +02004991 bdrv_subtree_drained_end(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02004992 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004993 return ret;
4994}
4995
bellard83f64092006-08-01 16:21:11 +00004996/**
Max Reitz081e4652019-06-12 18:14:13 +02004997 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
4998 * sums the size of all data-bearing children. (This excludes backing
4999 * children.)
5000 */
5001static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5002{
5003 BdrvChild *child;
5004 int64_t child_size, sum = 0;
5005
5006 QLIST_FOREACH(child, &bs->children, next) {
5007 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5008 BDRV_CHILD_FILTERED))
5009 {
5010 child_size = bdrv_get_allocated_file_size(child->bs);
5011 if (child_size < 0) {
5012 return child_size;
5013 }
5014 sum += child_size;
5015 }
5016 }
5017
5018 return sum;
5019}
5020
5021/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005022 * Length of a allocated file in bytes. Sparse files are counted by actual
5023 * allocated space. Return < 0 if error or unknown.
5024 */
5025int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5026{
5027 BlockDriver *drv = bs->drv;
5028 if (!drv) {
5029 return -ENOMEDIUM;
5030 }
5031 if (drv->bdrv_get_allocated_file_size) {
5032 return drv->bdrv_get_allocated_file_size(bs);
5033 }
Max Reitz081e4652019-06-12 18:14:13 +02005034
5035 if (drv->bdrv_file_open) {
5036 /*
5037 * Protocol drivers default to -ENOTSUP (most of their data is
5038 * not stored in any of their children (if they even have any),
5039 * so there is no generic way to figure it out).
5040 */
5041 return -ENOTSUP;
5042 } else if (drv->is_filter) {
5043 /* Filter drivers default to the size of their filtered child */
5044 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5045 } else {
5046 /* Other drivers default to summing their children's sizes */
5047 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005048 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005049}
5050
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005051/*
5052 * bdrv_measure:
5053 * @drv: Format driver
5054 * @opts: Creation options for new image
5055 * @in_bs: Existing image containing data for new image (may be NULL)
5056 * @errp: Error object
5057 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5058 * or NULL on error
5059 *
5060 * Calculate file size required to create a new image.
5061 *
5062 * If @in_bs is given then space for allocated clusters and zero clusters
5063 * from that image are included in the calculation. If @opts contains a
5064 * backing file that is shared by @in_bs then backing clusters may be omitted
5065 * from the calculation.
5066 *
5067 * If @in_bs is NULL then the calculation includes no allocated clusters
5068 * unless a preallocation option is given in @opts.
5069 *
5070 * Note that @in_bs may use a different BlockDriver from @drv.
5071 *
5072 * If an error occurs the @errp pointer is set.
5073 */
5074BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5075 BlockDriverState *in_bs, Error **errp)
5076{
5077 if (!drv->bdrv_measure) {
5078 error_setg(errp, "Block driver '%s' does not support size measurement",
5079 drv->format_name);
5080 return NULL;
5081 }
5082
5083 return drv->bdrv_measure(opts, in_bs, errp);
5084}
5085
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005086/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005087 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005088 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005089int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005090{
5091 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005092
bellard83f64092006-08-01 16:21:11 +00005093 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005094 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005095
Kevin Wolfb94a2612013-10-29 12:18:58 +01005096 if (drv->has_variable_length) {
5097 int ret = refresh_total_sectors(bs, bs->total_sectors);
5098 if (ret < 0) {
5099 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005100 }
bellard83f64092006-08-01 16:21:11 +00005101 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005102 return bs->total_sectors;
5103}
5104
5105/**
5106 * Return length in bytes on success, -errno on error.
5107 * The length is always a multiple of BDRV_SECTOR_SIZE.
5108 */
5109int64_t bdrv_getlength(BlockDriverState *bs)
5110{
5111 int64_t ret = bdrv_nb_sectors(bs);
5112
Eric Blake122860b2020-11-05 09:51:22 -06005113 if (ret < 0) {
5114 return ret;
5115 }
5116 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5117 return -EFBIG;
5118 }
5119 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005120}
5121
bellard19cb3732006-08-19 11:45:59 +00005122/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005123void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005124{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005125 int64_t nb_sectors = bdrv_nb_sectors(bs);
5126
5127 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005128}
bellardcf989512004-02-16 21:56:36 +00005129
Eric Blake54115412016-06-23 16:37:26 -06005130bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005131{
5132 return bs->sg;
5133}
5134
Max Reitzae23f782019-06-12 22:57:15 +02005135/**
5136 * Return whether the given node supports compressed writes.
5137 */
5138bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5139{
5140 BlockDriverState *filtered;
5141
5142 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5143 return false;
5144 }
5145
5146 filtered = bdrv_filter_bs(bs);
5147 if (filtered) {
5148 /*
5149 * Filters can only forward compressed writes, so we have to
5150 * check the child.
5151 */
5152 return bdrv_supports_compressed_writes(filtered);
5153 }
5154
5155 return true;
5156}
5157
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005158const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005159{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005160 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005161}
5162
Stefan Hajnocziada42402014-08-27 12:08:55 +01005163static int qsort_strcmp(const void *a, const void *b)
5164{
Max Reitzceff5bd2016-10-12 22:49:05 +02005165 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005166}
5167
ths5fafdf22007-09-16 21:08:06 +00005168void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005169 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005170{
5171 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005172 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005173 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005174 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005175
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005176 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005177 if (drv->format_name) {
5178 bool found = false;
5179 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005180
5181 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5182 continue;
5183 }
5184
Jeff Codye855e4f2014-04-28 18:29:54 -04005185 while (formats && i && !found) {
5186 found = !strcmp(formats[--i], drv->format_name);
5187 }
5188
5189 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005190 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005191 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005192 }
5193 }
bellardea2384d2004-08-01 21:59:26 +00005194 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005195
Max Reitzeb0df692016-10-12 22:49:06 +02005196 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5197 const char *format_name = block_driver_modules[i].format_name;
5198
5199 if (format_name) {
5200 bool found = false;
5201 int j = count;
5202
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005203 if (use_bdrv_whitelist &&
5204 !bdrv_format_is_whitelisted(format_name, read_only)) {
5205 continue;
5206 }
5207
Max Reitzeb0df692016-10-12 22:49:06 +02005208 while (formats && j && !found) {
5209 found = !strcmp(formats[--j], format_name);
5210 }
5211
5212 if (!found) {
5213 formats = g_renew(const char *, formats, count + 1);
5214 formats[count++] = format_name;
5215 }
5216 }
5217 }
5218
Stefan Hajnocziada42402014-08-27 12:08:55 +01005219 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5220
5221 for (i = 0; i < count; i++) {
5222 it(opaque, formats[i]);
5223 }
5224
Jeff Codye855e4f2014-04-28 18:29:54 -04005225 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005226}
5227
Benoît Canetdc364f42014-01-23 21:31:32 +01005228/* This function is to find a node in the bs graph */
5229BlockDriverState *bdrv_find_node(const char *node_name)
5230{
5231 BlockDriverState *bs;
5232
5233 assert(node_name);
5234
5235 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5236 if (!strcmp(node_name, bs->node_name)) {
5237 return bs;
5238 }
5239 }
5240 return NULL;
5241}
5242
Benoît Canetc13163f2014-01-23 21:31:34 +01005243/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01005244BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5245 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01005246{
Eric Blake9812e712020-10-27 00:05:47 -05005247 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01005248 BlockDriverState *bs;
5249
5250 list = NULL;
5251 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01005252 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03005253 if (!info) {
5254 qapi_free_BlockDeviceInfoList(list);
5255 return NULL;
5256 }
Eric Blake9812e712020-10-27 00:05:47 -05005257 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01005258 }
5259
5260 return list;
5261}
5262
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005263typedef struct XDbgBlockGraphConstructor {
5264 XDbgBlockGraph *graph;
5265 GHashTable *graph_nodes;
5266} XDbgBlockGraphConstructor;
5267
5268static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5269{
5270 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5271
5272 gr->graph = g_new0(XDbgBlockGraph, 1);
5273 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5274
5275 return gr;
5276}
5277
5278static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5279{
5280 XDbgBlockGraph *graph = gr->graph;
5281
5282 g_hash_table_destroy(gr->graph_nodes);
5283 g_free(gr);
5284
5285 return graph;
5286}
5287
5288static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5289{
5290 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5291
5292 if (ret != 0) {
5293 return ret;
5294 }
5295
5296 /*
5297 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5298 * answer of g_hash_table_lookup.
5299 */
5300 ret = g_hash_table_size(gr->graph_nodes) + 1;
5301 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5302
5303 return ret;
5304}
5305
5306static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5307 XDbgBlockGraphNodeType type, const char *name)
5308{
5309 XDbgBlockGraphNode *n;
5310
5311 n = g_new0(XDbgBlockGraphNode, 1);
5312
5313 n->id = xdbg_graph_node_num(gr, node);
5314 n->type = type;
5315 n->name = g_strdup(name);
5316
Eric Blake9812e712020-10-27 00:05:47 -05005317 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005318}
5319
5320static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5321 const BdrvChild *child)
5322{
Max Reitzcdb1cec2019-11-08 13:34:52 +01005323 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005324 XDbgBlockGraphEdge *edge;
5325
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005326 edge = g_new0(XDbgBlockGraphEdge, 1);
5327
5328 edge->parent = xdbg_graph_node_num(gr, parent);
5329 edge->child = xdbg_graph_node_num(gr, child->bs);
5330 edge->name = g_strdup(child->name);
5331
Max Reitzcdb1cec2019-11-08 13:34:52 +01005332 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5333 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5334
5335 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005336 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005337 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01005338 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005339 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005340 }
5341 }
5342
Eric Blake9812e712020-10-27 00:05:47 -05005343 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005344}
5345
5346
5347XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5348{
5349 BlockBackend *blk;
5350 BlockJob *job;
5351 BlockDriverState *bs;
5352 BdrvChild *child;
5353 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5354
5355 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5356 char *allocated_name = NULL;
5357 const char *name = blk_name(blk);
5358
5359 if (!*name) {
5360 name = allocated_name = blk_get_attached_dev_id(blk);
5361 }
5362 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5363 name);
5364 g_free(allocated_name);
5365 if (blk_root(blk)) {
5366 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5367 }
5368 }
5369
5370 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5371 GSList *el;
5372
5373 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5374 job->job.id);
5375 for (el = job->nodes; el; el = el->next) {
5376 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5377 }
5378 }
5379
5380 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5381 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5382 bs->node_name);
5383 QLIST_FOREACH(child, &bs->children, next) {
5384 xdbg_graph_add_edge(gr, bs, child);
5385 }
5386 }
5387
5388 return xdbg_graph_finalize(gr);
5389}
5390
Benoît Canet12d3ba82014-01-23 21:31:35 +01005391BlockDriverState *bdrv_lookup_bs(const char *device,
5392 const char *node_name,
5393 Error **errp)
5394{
Markus Armbruster7f06d472014-10-07 13:59:12 +02005395 BlockBackend *blk;
5396 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005397
Benoît Canet12d3ba82014-01-23 21:31:35 +01005398 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02005399 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005400
Markus Armbruster7f06d472014-10-07 13:59:12 +02005401 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005402 bs = blk_bs(blk);
5403 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02005404 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02005405 }
5406
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005407 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005408 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005409 }
5410
Benoît Canetdd67fa52014-02-12 17:15:06 +01005411 if (node_name) {
5412 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005413
Benoît Canetdd67fa52014-02-12 17:15:06 +01005414 if (bs) {
5415 return bs;
5416 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005417 }
5418
Benoît Canetdd67fa52014-02-12 17:15:06 +01005419 error_setg(errp, "Cannot find device=%s nor node_name=%s",
5420 device ? device : "",
5421 node_name ? node_name : "");
5422 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005423}
5424
Jeff Cody5a6684d2014-06-25 15:40:09 -04005425/* If 'base' is in the same chain as 'top', return true. Otherwise,
5426 * return false. If either argument is NULL, return false. */
5427bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5428{
5429 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005430 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04005431 }
5432
5433 return top != NULL;
5434}
5435
Fam Zheng04df7652014-10-31 11:32:54 +08005436BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5437{
5438 if (!bs) {
5439 return QTAILQ_FIRST(&graph_bdrv_states);
5440 }
5441 return QTAILQ_NEXT(bs, node_list);
5442}
5443
Kevin Wolf0f122642018-03-28 18:29:18 +02005444BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5445{
5446 if (!bs) {
5447 return QTAILQ_FIRST(&all_bdrv_states);
5448 }
5449 return QTAILQ_NEXT(bs, bs_list);
5450}
5451
Fam Zheng20a9e772014-10-31 11:32:55 +08005452const char *bdrv_get_node_name(const BlockDriverState *bs)
5453{
5454 return bs->node_name;
5455}
5456
Kevin Wolf1f0c4612016-03-22 18:38:44 +01005457const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005458{
5459 BdrvChild *c;
5460 const char *name;
5461
5462 /* If multiple parents have a name, just pick the first one. */
5463 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005464 if (c->klass->get_name) {
5465 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005466 if (name && *name) {
5467 return name;
5468 }
5469 }
5470 }
5471
5472 return NULL;
5473}
5474
Markus Armbruster7f06d472014-10-07 13:59:12 +02005475/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02005476const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005477{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005478 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00005479}
5480
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005481/* This can be used to identify nodes that might not have a device
5482 * name associated. Since node and device names live in the same
5483 * namespace, the result is unambiguous. The exception is if both are
5484 * absent, then this returns an empty (non-null) string. */
5485const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5486{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005487 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005488}
5489
Markus Armbrusterc8433282012-06-05 16:49:24 +02005490int bdrv_get_flags(BlockDriverState *bs)
5491{
5492 return bs->open_flags;
5493}
5494
Peter Lieven3ac21622013-06-28 12:47:42 +02005495int bdrv_has_zero_init_1(BlockDriverState *bs)
5496{
5497 return 1;
5498}
5499
Kevin Wolff2feebb2010-04-14 17:30:35 +02005500int bdrv_has_zero_init(BlockDriverState *bs)
5501{
Max Reitz93393e62019-06-12 17:03:38 +02005502 BlockDriverState *filtered;
5503
Max Reitzd470ad42017-11-10 21:31:09 +01005504 if (!bs->drv) {
5505 return 0;
5506 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005507
Paolo Bonzini11212d82013-09-04 19:00:27 +02005508 /* If BS is a copy on write image, it is initialized to
5509 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02005510 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02005511 return 0;
5512 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02005513 if (bs->drv->bdrv_has_zero_init) {
5514 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02005515 }
Max Reitz93393e62019-06-12 17:03:38 +02005516
5517 filtered = bdrv_filter_bs(bs);
5518 if (filtered) {
5519 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005520 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005521
Peter Lieven3ac21622013-06-28 12:47:42 +02005522 /* safe default */
5523 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02005524}
5525
Peter Lieven4ce78692013-10-24 12:06:54 +02005526bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
5527{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03005528 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02005529 return false;
5530 }
5531
Eric Blakee24d8132018-01-26 13:34:39 -06005532 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02005533}
5534
ths5fafdf22007-09-16 21:08:06 +00005535void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00005536 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00005537{
Kevin Wolf3574c602011-10-26 11:02:11 +02005538 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00005539}
5540
bellardfaea38e2006-08-05 21:31:00 +00005541int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5542{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005543 int ret;
bellardfaea38e2006-08-05 21:31:00 +00005544 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005545 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5546 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00005547 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005548 }
5549 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02005550 BlockDriverState *filtered = bdrv_filter_bs(bs);
5551 if (filtered) {
5552 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005553 }
bellardfaea38e2006-08-05 21:31:00 +00005554 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005555 }
bellardfaea38e2006-08-05 21:31:00 +00005556 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005557 ret = drv->bdrv_get_info(bs, bdi);
5558 if (ret < 0) {
5559 return ret;
5560 }
5561
5562 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
5563 return -EINVAL;
5564 }
5565
5566 return 0;
bellardfaea38e2006-08-05 21:31:00 +00005567}
5568
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005569ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
5570 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02005571{
5572 BlockDriver *drv = bs->drv;
5573 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005574 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02005575 }
5576 return NULL;
5577}
5578
Anton Nefedovd9245592019-09-23 15:17:37 +03005579BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
5580{
5581 BlockDriver *drv = bs->drv;
5582 if (!drv || !drv->bdrv_get_specific_stats) {
5583 return NULL;
5584 }
5585 return drv->bdrv_get_specific_stats(bs);
5586}
5587
Eric Blakea31939e2015-11-18 01:52:54 -07005588void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005589{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005590 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005591 return;
5592 }
5593
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005594 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005595}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005596
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005597static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01005598{
5599 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02005600 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005601 }
5602
5603 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005604 assert(bs->drv->bdrv_debug_remove_breakpoint);
5605 return bs;
5606 }
5607
5608 return NULL;
5609}
5610
5611int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
5612 const char *tag)
5613{
5614 bs = bdrv_find_debug_node(bs);
5615 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01005616 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
5617 }
5618
5619 return -ENOTSUP;
5620}
5621
Fam Zheng4cc70e92013-11-20 10:01:54 +08005622int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
5623{
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005624 bs = bdrv_find_debug_node(bs);
5625 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08005626 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
5627 }
5628
5629 return -ENOTSUP;
5630}
5631
Kevin Wolf41c695c2012-12-06 14:32:58 +01005632int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
5633{
Max Reitz938789e2014-03-10 23:44:08 +01005634 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02005635 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005636 }
5637
5638 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
5639 return bs->drv->bdrv_debug_resume(bs, tag);
5640 }
5641
5642 return -ENOTSUP;
5643}
5644
5645bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
5646{
5647 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02005648 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005649 }
5650
5651 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
5652 return bs->drv->bdrv_debug_is_suspended(bs, tag);
5653 }
5654
5655 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005656}
5657
Jeff Codyb1b1d782012-10-16 15:49:09 -04005658/* backing_file can either be relative, or absolute, or a protocol. If it is
5659 * relative, it must be relative to the chain. So, passing in bs->filename
5660 * from a BDS as backing_file should not be done, as that may be relative to
5661 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005662BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
5663 const char *backing_file)
5664{
Jeff Codyb1b1d782012-10-16 15:49:09 -04005665 char *filename_full = NULL;
5666 char *backing_file_full = NULL;
5667 char *filename_tmp = NULL;
5668 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02005669 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005670 BlockDriverState *curr_bs = NULL;
5671 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005672 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005673
5674 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005675 return NULL;
5676 }
5677
Jeff Codyb1b1d782012-10-16 15:49:09 -04005678 filename_full = g_malloc(PATH_MAX);
5679 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005680
5681 is_protocol = path_has_protocol(backing_file);
5682
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005683 /*
5684 * Being largely a legacy function, skip any filters here
5685 * (because filters do not have normal filenames, so they cannot
5686 * match anyway; and allowing json:{} filenames is a bit out of
5687 * scope).
5688 */
5689 for (curr_bs = bdrv_skip_filters(bs);
5690 bdrv_cow_child(curr_bs) != NULL;
5691 curr_bs = bs_below)
5692 {
5693 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005694
Max Reitz0b877d02018-08-01 20:34:11 +02005695 if (bdrv_backing_overridden(curr_bs)) {
5696 /*
5697 * If the backing file was overridden, we can only compare
5698 * directly against the backing node's filename.
5699 */
5700
5701 if (!filenames_refreshed) {
5702 /*
5703 * This will automatically refresh all of the
5704 * filenames in the rest of the backing chain, so we
5705 * only need to do this once.
5706 */
5707 bdrv_refresh_filename(bs_below);
5708 filenames_refreshed = true;
5709 }
5710
5711 if (strcmp(backing_file, bs_below->filename) == 0) {
5712 retval = bs_below;
5713 break;
5714 }
5715 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
5716 /*
5717 * If either of the filename paths is actually a protocol, then
5718 * compare unmodified paths; otherwise make paths relative.
5719 */
Max Reitz6b6833c2019-02-01 20:29:15 +01005720 char *backing_file_full_ret;
5721
Jeff Codyb1b1d782012-10-16 15:49:09 -04005722 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005723 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005724 break;
5725 }
Jeff Cody418661e2017-01-25 20:08:20 -05005726 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01005727 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
5728 NULL);
5729 if (backing_file_full_ret) {
5730 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
5731 g_free(backing_file_full_ret);
5732 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005733 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05005734 break;
5735 }
Jeff Cody418661e2017-01-25 20:08:20 -05005736 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005737 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04005738 /* If not an absolute filename path, make it relative to the current
5739 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01005740 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
5741 NULL);
5742 /* We are going to compare canonicalized absolute pathnames */
5743 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
5744 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005745 continue;
5746 }
Max Reitz2d9158c2019-02-01 20:29:17 +01005747 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005748
5749 /* We need to make sure the backing filename we are comparing against
5750 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01005751 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
5752 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
5753 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005754 continue;
5755 }
Max Reitz2d9158c2019-02-01 20:29:17 +01005756 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005757
5758 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005759 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005760 break;
5761 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005762 }
5763 }
5764
Jeff Codyb1b1d782012-10-16 15:49:09 -04005765 g_free(filename_full);
5766 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04005767 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005768}
5769
bellardea2384d2004-08-01 21:59:26 +00005770void bdrv_init(void)
5771{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05005772 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00005773}
pbrookce1a14d2006-08-07 02:38:06 +00005774
Markus Armbrustereb852012009-10-27 18:41:44 +01005775void bdrv_init_with_whitelist(void)
5776{
5777 use_bdrv_whitelist = 1;
5778 bdrv_init();
5779}
5780
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005781int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06005782{
Kevin Wolf4417ab72017-05-04 18:52:37 +02005783 BdrvChild *child, *parent;
Kevin Wolf9c5e6592017-05-04 18:52:40 +02005784 uint64_t perm, shared_perm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005785 Error *local_err = NULL;
5786 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04005787 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005788
Kevin Wolf3456a8d2014-03-11 10:58:39 +01005789 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005790 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06005791 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01005792
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03005793 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01005794 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005795 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005796 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005797 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005798 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005799 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005800
Kevin Wolfdafe0962017-11-16 13:00:01 +01005801 /*
5802 * Update permissions, they may differ for inactive nodes.
5803 *
5804 * Note that the required permissions of inactive images are always a
5805 * subset of the permissions required after activating the image. This
5806 * allows us to just get the permissions upfront without restricting
5807 * drv->bdrv_invalidate_cache().
5808 *
5809 * It also means that in error cases, we don't have to try and revert to
5810 * the old permissions (which is an operation that could fail, too). We can
5811 * just keep the extended permissions for the next time that an activation
5812 * of the image is tried.
5813 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01005814 if (bs->open_flags & BDRV_O_INACTIVE) {
5815 bs->open_flags &= ~BDRV_O_INACTIVE;
5816 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
Markus Armbruster668f62e2020-07-07 18:06:02 +02005817 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, NULL, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01005818 if (ret < 0) {
Vladimir Sementsov-Ogievskiy6c5f7b32020-11-06 15:42:35 +03005819 bdrv_abort_perm_update(bs);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005820 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005821 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08005822 }
Kevin Wolf7bb49412019-12-17 15:06:38 +01005823 bdrv_set_perm(bs, perm, shared_perm);
Kevin Wolf3456a8d2014-03-11 10:58:39 +01005824
Kevin Wolf7bb49412019-12-17 15:06:38 +01005825 if (bs->drv->bdrv_co_invalidate_cache) {
5826 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
5827 if (local_err) {
5828 bs->open_flags |= BDRV_O_INACTIVE;
5829 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005830 return -EINVAL;
Kevin Wolf7bb49412019-12-17 15:06:38 +01005831 }
5832 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04005833
Kevin Wolf7bb49412019-12-17 15:06:38 +01005834 FOR_EACH_DIRTY_BITMAP(bs, bm) {
5835 bdrv_dirty_bitmap_skip_store(bm, false);
5836 }
5837
5838 ret = refresh_total_sectors(bs, bs->total_sectors);
5839 if (ret < 0) {
5840 bs->open_flags |= BDRV_O_INACTIVE;
5841 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005842 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01005843 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005844 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02005845
5846 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005847 if (parent->klass->activate) {
5848 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02005849 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01005850 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02005851 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005852 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02005853 }
5854 }
5855 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005856
5857 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06005858}
5859
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005860void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06005861{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01005862 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02005863 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06005864
Kevin Wolf88be7b42016-05-20 18:49:07 +02005865 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005866 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005867 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005868
5869 aio_context_acquire(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005870 ret = bdrv_invalidate_cache(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005871 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03005872 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01005873 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01005874 return;
5875 }
Anthony Liguori0f154232011-11-14 15:09:45 -06005876 }
5877}
5878
Kevin Wolf9e372712018-11-23 15:11:14 +01005879static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
5880{
5881 BdrvChild *parent;
5882
5883 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005884 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01005885 BlockDriverState *parent_bs = parent->opaque;
5886 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
5887 return true;
5888 }
5889 }
5890 }
5891
5892 return false;
5893}
5894
5895static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005896{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02005897 BdrvChild *child, *parent;
Max Reitz10467792019-05-22 19:03:51 +02005898 bool tighten_restrictions;
Kevin Wolf9e372712018-11-23 15:11:14 +01005899 uint64_t perm, shared_perm;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005900 int ret;
5901
Max Reitzd470ad42017-11-10 21:31:09 +01005902 if (!bs->drv) {
5903 return -ENOMEDIUM;
5904 }
5905
Kevin Wolf9e372712018-11-23 15:11:14 +01005906 /* Make sure that we don't inactivate a child before its parent.
5907 * It will be covered by recursion from the yet active parent. */
5908 if (bdrv_has_bds_parent(bs, true)) {
5909 return 0;
5910 }
5911
5912 assert(!(bs->open_flags & BDRV_O_INACTIVE));
5913
5914 /* Inactivate this node */
5915 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005916 ret = bs->drv->bdrv_inactivate(bs);
5917 if (ret < 0) {
5918 return ret;
5919 }
5920 }
5921
Kevin Wolf9e372712018-11-23 15:11:14 +01005922 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005923 if (parent->klass->inactivate) {
5924 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01005925 if (ret < 0) {
5926 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02005927 }
5928 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005929 }
Kevin Wolf38701b62017-05-04 18:52:39 +02005930
Kevin Wolf9e372712018-11-23 15:11:14 +01005931 bs->open_flags |= BDRV_O_INACTIVE;
5932
5933 /* Update permissions, they may differ for inactive nodes */
5934 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
Max Reitz10467792019-05-22 19:03:51 +02005935 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL,
5936 &tighten_restrictions, NULL);
5937 assert(tighten_restrictions == false);
5938 if (ret < 0) {
5939 /* We only tried to loosen restrictions, so errors are not fatal */
5940 bdrv_abort_perm_update(bs);
5941 } else {
5942 bdrv_set_perm(bs, perm, shared_perm);
5943 }
Kevin Wolf9e372712018-11-23 15:11:14 +01005944
5945
5946 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02005947 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01005948 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02005949 if (ret < 0) {
5950 return ret;
5951 }
5952 }
5953
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005954 return 0;
5955}
5956
5957int bdrv_inactivate_all(void)
5958{
Max Reitz79720af2016-03-16 19:54:44 +01005959 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02005960 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005961 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005962 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005963
Kevin Wolf88be7b42016-05-20 18:49:07 +02005964 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005965 AioContext *aio_context = bdrv_get_aio_context(bs);
5966
5967 if (!g_slist_find(aio_ctxs, aio_context)) {
5968 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
5969 aio_context_acquire(aio_context);
5970 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005971 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005972
Kevin Wolf9e372712018-11-23 15:11:14 +01005973 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5974 /* Nodes with BDS parents are covered by recursion from the last
5975 * parent that gets inactivated. Don't inactivate them a second
5976 * time if that has already happened. */
5977 if (bdrv_has_bds_parent(bs, false)) {
5978 continue;
5979 }
5980 ret = bdrv_inactivate_recurse(bs);
5981 if (ret < 0) {
5982 bdrv_next_cleanup(&it);
5983 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005984 }
5985 }
5986
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005987out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005988 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
5989 AioContext *aio_context = ctx->data;
5990 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005991 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00005992 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08005993
5994 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01005995}
5996
Kevin Wolff9f05dc2011-07-15 13:50:26 +02005997/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00005998/* removable device support */
5999
6000/**
6001 * Return TRUE if the media is present
6002 */
Max Reitze031f752015-10-19 17:53:11 +02006003bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006004{
6005 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006006 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006007
Max Reitze031f752015-10-19 17:53:11 +02006008 if (!drv) {
6009 return false;
6010 }
Max Reitz28d7a782015-10-19 17:53:13 +02006011 if (drv->bdrv_is_inserted) {
6012 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006013 }
Max Reitz28d7a782015-10-19 17:53:13 +02006014 QLIST_FOREACH(child, &bs->children, next) {
6015 if (!bdrv_is_inserted(child->bs)) {
6016 return false;
6017 }
6018 }
6019 return true;
bellard19cb3732006-08-19 11:45:59 +00006020}
6021
6022/**
bellard19cb3732006-08-19 11:45:59 +00006023 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6024 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006025void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006026{
6027 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00006028
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006029 if (drv && drv->bdrv_eject) {
6030 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006031 }
bellard19cb3732006-08-19 11:45:59 +00006032}
6033
bellard19cb3732006-08-19 11:45:59 +00006034/**
6035 * Lock or unlock the media (if it is locked, the user won't be able
6036 * to eject it manually).
6037 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006038void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006039{
6040 BlockDriver *drv = bs->drv;
6041
Markus Armbruster025e8492011-09-06 18:58:47 +02006042 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006043
Markus Armbruster025e8492011-09-06 18:58:47 +02006044 if (drv && drv->bdrv_lock_medium) {
6045 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006046 }
6047}
ths985a03b2007-12-24 16:10:43 +00006048
Fam Zheng9fcb0252013-08-23 09:14:46 +08006049/* Get a reference to bs */
6050void bdrv_ref(BlockDriverState *bs)
6051{
6052 bs->refcnt++;
6053}
6054
6055/* Release a previously grabbed reference to bs.
6056 * If after releasing, reference count is zero, the BlockDriverState is
6057 * deleted. */
6058void bdrv_unref(BlockDriverState *bs)
6059{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006060 if (!bs) {
6061 return;
6062 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006063 assert(bs->refcnt > 0);
6064 if (--bs->refcnt == 0) {
6065 bdrv_delete(bs);
6066 }
6067}
6068
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006069struct BdrvOpBlocker {
6070 Error *reason;
6071 QLIST_ENTRY(BdrvOpBlocker) list;
6072};
6073
6074bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6075{
6076 BdrvOpBlocker *blocker;
6077 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6078 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6079 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006080 error_propagate_prepend(errp, error_copy(blocker->reason),
6081 "Node '%s' is busy: ",
6082 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006083 return true;
6084 }
6085 return false;
6086}
6087
6088void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6089{
6090 BdrvOpBlocker *blocker;
6091 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6092
Markus Armbruster5839e532014-08-19 10:31:08 +02006093 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006094 blocker->reason = reason;
6095 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6096}
6097
6098void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6099{
6100 BdrvOpBlocker *blocker, *next;
6101 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6102 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6103 if (blocker->reason == reason) {
6104 QLIST_REMOVE(blocker, list);
6105 g_free(blocker);
6106 }
6107 }
6108}
6109
6110void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6111{
6112 int i;
6113 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6114 bdrv_op_block(bs, i, reason);
6115 }
6116}
6117
6118void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6119{
6120 int i;
6121 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6122 bdrv_op_unblock(bs, i, reason);
6123 }
6124}
6125
6126bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6127{
6128 int i;
6129
6130 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6131 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6132 return false;
6133 }
6134 }
6135 return true;
6136}
6137
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006138void bdrv_img_create(const char *filename, const char *fmt,
6139 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006140 char *options, uint64_t img_size, int flags, bool quiet,
6141 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006142{
Chunyan Liu83d05212014-06-05 17:20:51 +08006143 QemuOptsList *create_opts = NULL;
6144 QemuOpts *opts = NULL;
6145 const char *backing_fmt, *backing_file;
6146 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006147 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006148 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006149 int ret = 0;
6150
6151 /* Find driver and parse its options */
6152 drv = bdrv_find_format(fmt);
6153 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006154 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006155 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006156 }
6157
Max Reitzb65a5e12015-02-05 13:58:12 -05006158 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006159 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006160 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006161 }
6162
Max Reitzc6149722014-12-02 18:32:45 +01006163 if (!drv->create_opts) {
6164 error_setg(errp, "Format driver '%s' does not support image creation",
6165 drv->format_name);
6166 return;
6167 }
6168
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006169 if (!proto_drv->create_opts) {
6170 error_setg(errp, "Protocol driver '%s' does not support image creation",
6171 proto_drv->format_name);
6172 return;
6173 }
6174
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006175 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006176 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006177 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006178
Chunyan Liu83d05212014-06-05 17:20:51 +08006179 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006180
6181 /* Parse -o options */
6182 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02006183 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006184 goto out;
6185 }
6186 }
6187
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006188 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6189 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6190 } else if (img_size != UINT64_C(-1)) {
6191 error_setg(errp, "The image size must be specified only once");
6192 goto out;
6193 }
6194
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006195 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02006196 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02006197 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006198 error_setg(errp, "Backing file not supported for file format '%s'",
6199 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006200 goto out;
6201 }
6202 }
6203
6204 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02006205 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006206 error_setg(errp, "Backing file format not supported for file "
6207 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006208 goto out;
6209 }
6210 }
6211
Chunyan Liu83d05212014-06-05 17:20:51 +08006212 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6213 if (backing_file) {
6214 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006215 error_setg(errp, "Error: Trying to create an image with the "
6216 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01006217 goto out;
6218 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05006219 if (backing_file[0] == '\0') {
6220 error_setg(errp, "Expected backing file name, got empty string");
6221 goto out;
6222 }
Jes Sorensen792da932010-12-16 13:52:17 +01006223 }
6224
Chunyan Liu83d05212014-06-05 17:20:51 +08006225 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006226
John Snow6e6e55f2017-07-17 20:34:22 -04006227 /* The size for the image must always be specified, unless we have a backing
6228 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05006229 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04006230 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6231 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01006232 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04006233 int back_flags;
6234 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02006235
Max Reitz645ae7d2019-02-01 20:29:14 +01006236 full_backing =
6237 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6238 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04006239 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006240 goto out;
6241 }
Max Reitz645ae7d2019-02-01 20:29:14 +01006242 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04006243
6244 /* backing files always opened read-only */
6245 back_flags = flags;
6246 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
6247
Fam Zhengcc954f02017-12-15 16:04:45 +08006248 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04006249 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04006250 qdict_put_str(backing_options, "driver", backing_fmt);
6251 }
Fam Zhengcc954f02017-12-15 16:04:45 +08006252 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04006253
6254 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6255 &local_err);
6256 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05006257 if (!bs) {
6258 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04006259 goto out;
6260 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05006261 if (!backing_fmt) {
6262 warn_report("Deprecated use of backing file without explicit "
6263 "backing format (detected format of %s)",
6264 bs->drv->format_name);
6265 if (bs->drv != &bdrv_raw) {
6266 /*
6267 * A probe of raw deserves the most attention:
6268 * leaving the backing format out of the image
6269 * will ensure bs->probed is set (ensuring we
6270 * don't accidentally commit into the backing
6271 * file), and allow more spots to warn the users
6272 * to fix their toolchain when opening this image
6273 * later. For other images, we can safely record
6274 * the format that we probed.
6275 */
6276 backing_fmt = bs->drv->format_name;
6277 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
6278 NULL);
6279 }
6280 }
John Snow6e6e55f2017-07-17 20:34:22 -04006281 if (size == -1) {
6282 /* Opened BS, have no size */
6283 size = bdrv_getlength(bs);
6284 if (size < 0) {
6285 error_setg_errno(errp, -size, "Could not get size of '%s'",
6286 backing_file);
6287 bdrv_unref(bs);
6288 goto out;
6289 }
6290 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6291 }
6292 bdrv_unref(bs);
6293 }
Eric Blaked9f059a2020-07-06 15:39:54 -05006294 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6295 } else if (backing_file && !backing_fmt) {
6296 warn_report("Deprecated use of unopened backing file without "
6297 "explicit backing format, use of this image requires "
6298 "potentially unsafe format probing");
6299 }
John Snow6e6e55f2017-07-17 20:34:22 -04006300
6301 if (size == -1) {
6302 error_setg(errp, "Image creation needs a size parameter");
6303 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006304 }
6305
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006306 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02006307 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08006308 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006309 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05006310 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006311 }
Chunyan Liu83d05212014-06-05 17:20:51 +08006312
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006313 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08006314
Max Reitzcc84d902013-09-06 17:14:26 +02006315 if (ret == -EFBIG) {
6316 /* This is generally a better message than whatever the driver would
6317 * deliver (especially because of the cluster_size_hint), since that
6318 * is most probably not much different from "image too large". */
6319 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08006320 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02006321 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006322 }
Max Reitzcc84d902013-09-06 17:14:26 +02006323 error_setg(errp, "The image size is too large for file format '%s'"
6324 "%s", fmt, cluster_size_hint);
6325 error_free(local_err);
6326 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006327 }
6328
6329out:
Chunyan Liu83d05212014-06-05 17:20:51 +08006330 qemu_opts_del(opts);
6331 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03006332 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006333}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006334
6335AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6336{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00006337 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006338}
6339
Kevin Wolfe336fd42020-10-05 17:58:53 +02006340AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6341{
6342 Coroutine *self = qemu_coroutine_self();
6343 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6344 AioContext *new_ctx;
6345
6346 /*
6347 * Increase bs->in_flight to ensure that this operation is completed before
6348 * moving the node to a different AioContext. Read new_ctx only afterwards.
6349 */
6350 bdrv_inc_in_flight(bs);
6351
6352 new_ctx = bdrv_get_aio_context(bs);
6353 aio_co_reschedule_self(new_ctx);
6354 return old_ctx;
6355}
6356
6357void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6358{
6359 aio_co_reschedule_self(old_ctx);
6360 bdrv_dec_in_flight(bs);
6361}
6362
Kevin Wolf18c6ac12020-10-05 17:58:54 +02006363void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6364{
6365 AioContext *ctx = bdrv_get_aio_context(bs);
6366
6367 /* In the main thread, bs->aio_context won't change concurrently */
6368 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6369
6370 /*
6371 * We're in coroutine context, so we already hold the lock of the main
6372 * loop AioContext. Don't lock it twice to avoid deadlocks.
6373 */
6374 assert(qemu_in_coroutine());
6375 if (ctx != qemu_get_aio_context()) {
6376 aio_context_acquire(ctx);
6377 }
6378}
6379
6380void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6381{
6382 AioContext *ctx = bdrv_get_aio_context(bs);
6383
6384 assert(qemu_in_coroutine());
6385 if (ctx != qemu_get_aio_context()) {
6386 aio_context_release(ctx);
6387 }
6388}
6389
Fam Zheng052a7572017-04-10 20:09:25 +08006390void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6391{
6392 aio_co_enter(bdrv_get_aio_context(bs), co);
6393}
6394
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006395static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6396{
6397 QLIST_REMOVE(ban, list);
6398 g_free(ban);
6399}
6400
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006401static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006402{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006403 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006404
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006405 assert(!bs->walking_aio_notifiers);
6406 bs->walking_aio_notifiers = true;
6407 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6408 if (baf->deleted) {
6409 bdrv_do_remove_aio_context_notifier(baf);
6410 } else {
6411 baf->detach_aio_context(baf->opaque);
6412 }
Max Reitz33384422014-06-20 21:57:33 +02006413 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006414 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6415 * remove remaining aio notifiers if we aren't called again.
6416 */
6417 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02006418
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006419 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006420 bs->drv->bdrv_detach_aio_context(bs);
6421 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006422
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006423 if (bs->quiesce_counter) {
6424 aio_enable_external(bs->aio_context);
6425 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006426 bs->aio_context = NULL;
6427}
6428
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006429static void bdrv_attach_aio_context(BlockDriverState *bs,
6430 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006431{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006432 BdrvAioNotifier *ban, *ban_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006433
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006434 if (bs->quiesce_counter) {
6435 aio_disable_external(new_context);
6436 }
6437
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006438 bs->aio_context = new_context;
6439
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006440 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006441 bs->drv->bdrv_attach_aio_context(bs, new_context);
6442 }
Max Reitz33384422014-06-20 21:57:33 +02006443
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006444 assert(!bs->walking_aio_notifiers);
6445 bs->walking_aio_notifiers = true;
6446 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6447 if (ban->deleted) {
6448 bdrv_do_remove_aio_context_notifier(ban);
6449 } else {
6450 ban->attached_aio_context(new_context, ban->opaque);
6451 }
Max Reitz33384422014-06-20 21:57:33 +02006452 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006453 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006454}
6455
Kevin Wolf42a65f02019-05-07 18:31:38 +02006456/*
6457 * Changes the AioContext used for fd handlers, timers, and BHs by this
6458 * BlockDriverState and all its children and parents.
6459 *
Max Reitz43eaaae2019-07-22 15:30:54 +02006460 * Must be called from the main AioContext.
6461 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02006462 * The caller must own the AioContext lock for the old AioContext of bs, but it
6463 * must not own the AioContext lock for new_context (unless new_context is the
6464 * same as the current context of bs).
6465 *
6466 * @ignore will accumulate all visited BdrvChild object. The caller is
6467 * responsible for freeing the list afterwards.
6468 */
Kevin Wolf53a7d042019-05-06 19:17:59 +02006469void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6470 AioContext *new_context, GSList **ignore)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006471{
Max Reitze037c092019-07-19 11:26:14 +02006472 AioContext *old_context = bdrv_get_aio_context(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02006473 BdrvChild *child;
6474
Max Reitz43eaaae2019-07-22 15:30:54 +02006475 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6476
Max Reitze037c092019-07-19 11:26:14 +02006477 if (old_context == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03006478 return;
6479 }
6480
Kevin Wolfd70d5952019-02-08 16:53:37 +01006481 bdrv_drained_begin(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02006482
6483 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006484 if (g_slist_find(*ignore, child)) {
6485 continue;
6486 }
6487 *ignore = g_slist_prepend(*ignore, child);
6488 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6489 }
6490 QLIST_FOREACH(child, &bs->parents, next_parent) {
6491 if (g_slist_find(*ignore, child)) {
6492 continue;
6493 }
Max Reitzbd86fb92020-05-13 13:05:13 +02006494 assert(child->klass->set_aio_ctx);
Kevin Wolf42a65f02019-05-07 18:31:38 +02006495 *ignore = g_slist_prepend(*ignore, child);
Max Reitzbd86fb92020-05-13 13:05:13 +02006496 child->klass->set_aio_ctx(child, new_context, ignore);
Kevin Wolf0d837082019-05-06 19:17:58 +02006497 }
6498
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006499 bdrv_detach_aio_context(bs);
6500
Max Reitze037c092019-07-19 11:26:14 +02006501 /* Acquire the new context, if necessary */
Max Reitz43eaaae2019-07-22 15:30:54 +02006502 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006503 aio_context_acquire(new_context);
6504 }
6505
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006506 bdrv_attach_aio_context(bs, new_context);
Max Reitze037c092019-07-19 11:26:14 +02006507
6508 /*
6509 * If this function was recursively called from
6510 * bdrv_set_aio_context_ignore(), there may be nodes in the
6511 * subtree that have not yet been moved to the new AioContext.
6512 * Release the old one so bdrv_drained_end() can poll them.
6513 */
Max Reitz43eaaae2019-07-22 15:30:54 +02006514 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006515 aio_context_release(old_context);
6516 }
6517
Kevin Wolfd70d5952019-02-08 16:53:37 +01006518 bdrv_drained_end(bs);
Max Reitze037c092019-07-19 11:26:14 +02006519
Max Reitz43eaaae2019-07-22 15:30:54 +02006520 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006521 aio_context_acquire(old_context);
6522 }
Max Reitz43eaaae2019-07-22 15:30:54 +02006523 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006524 aio_context_release(new_context);
6525 }
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006526}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02006527
Kevin Wolf5d231842019-05-06 19:17:56 +02006528static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6529 GSList **ignore, Error **errp)
6530{
6531 if (g_slist_find(*ignore, c)) {
6532 return true;
6533 }
6534 *ignore = g_slist_prepend(*ignore, c);
6535
Max Reitzbd86fb92020-05-13 13:05:13 +02006536 /*
6537 * A BdrvChildClass that doesn't handle AioContext changes cannot
6538 * tolerate any AioContext changes
6539 */
6540 if (!c->klass->can_set_aio_ctx) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006541 char *user = bdrv_child_user_desc(c);
6542 error_setg(errp, "Changing iothreads is not supported by %s", user);
6543 g_free(user);
6544 return false;
6545 }
Max Reitzbd86fb92020-05-13 13:05:13 +02006546 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006547 assert(!errp || *errp);
6548 return false;
6549 }
6550 return true;
6551}
6552
6553bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6554 GSList **ignore, Error **errp)
6555{
6556 if (g_slist_find(*ignore, c)) {
6557 return true;
6558 }
6559 *ignore = g_slist_prepend(*ignore, c);
6560 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
6561}
6562
6563/* @ignore will accumulate all visited BdrvChild object. The caller is
6564 * responsible for freeing the list afterwards. */
6565bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6566 GSList **ignore, Error **errp)
6567{
6568 BdrvChild *c;
6569
6570 if (bdrv_get_aio_context(bs) == ctx) {
6571 return true;
6572 }
6573
6574 QLIST_FOREACH(c, &bs->parents, next_parent) {
6575 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
6576 return false;
6577 }
6578 }
6579 QLIST_FOREACH(c, &bs->children, next) {
6580 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
6581 return false;
6582 }
6583 }
6584
6585 return true;
6586}
6587
6588int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6589 BdrvChild *ignore_child, Error **errp)
6590{
6591 GSList *ignore;
6592 bool ret;
6593
6594 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6595 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
6596 g_slist_free(ignore);
6597
6598 if (!ret) {
6599 return -EPERM;
6600 }
6601
Kevin Wolf53a7d042019-05-06 19:17:59 +02006602 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6603 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
6604 g_slist_free(ignore);
6605
Kevin Wolf5d231842019-05-06 19:17:56 +02006606 return 0;
6607}
6608
6609int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6610 Error **errp)
6611{
6612 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
6613}
6614
Max Reitz33384422014-06-20 21:57:33 +02006615void bdrv_add_aio_context_notifier(BlockDriverState *bs,
6616 void (*attached_aio_context)(AioContext *new_context, void *opaque),
6617 void (*detach_aio_context)(void *opaque), void *opaque)
6618{
6619 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
6620 *ban = (BdrvAioNotifier){
6621 .attached_aio_context = attached_aio_context,
6622 .detach_aio_context = detach_aio_context,
6623 .opaque = opaque
6624 };
6625
6626 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
6627}
6628
6629void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
6630 void (*attached_aio_context)(AioContext *,
6631 void *),
6632 void (*detach_aio_context)(void *),
6633 void *opaque)
6634{
6635 BdrvAioNotifier *ban, *ban_next;
6636
6637 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
6638 if (ban->attached_aio_context == attached_aio_context &&
6639 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006640 ban->opaque == opaque &&
6641 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02006642 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006643 if (bs->walking_aio_notifiers) {
6644 ban->deleted = true;
6645 } else {
6646 bdrv_do_remove_aio_context_notifier(ban);
6647 }
Max Reitz33384422014-06-20 21:57:33 +02006648 return;
6649 }
6650 }
6651
6652 abort();
6653}
6654
Max Reitz77485432014-10-27 11:12:50 +01006655int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02006656 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02006657 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02006658 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02006659{
Max Reitzd470ad42017-11-10 21:31:09 +01006660 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02006661 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01006662 return -ENOMEDIUM;
6663 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006664 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02006665 error_setg(errp, "Block driver '%s' does not support option amendment",
6666 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02006667 return -ENOTSUP;
6668 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02006669 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
6670 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02006671}
Benoît Canetf6186f42013-10-02 14:33:48 +02006672
Max Reitz5d69b5a2020-02-18 11:34:41 +01006673/*
6674 * This function checks whether the given @to_replace is allowed to be
6675 * replaced by a node that always shows the same data as @bs. This is
6676 * used for example to verify whether the mirror job can replace
6677 * @to_replace by the target mirrored from @bs.
6678 * To be replaceable, @bs and @to_replace may either be guaranteed to
6679 * always show the same data (because they are only connected through
6680 * filters), or some driver may allow replacing one of its children
6681 * because it can guarantee that this child's data is not visible at
6682 * all (for example, for dissenting quorum children that have no other
6683 * parents).
6684 */
6685bool bdrv_recurse_can_replace(BlockDriverState *bs,
6686 BlockDriverState *to_replace)
6687{
Max Reitz93393e62019-06-12 17:03:38 +02006688 BlockDriverState *filtered;
6689
Max Reitz5d69b5a2020-02-18 11:34:41 +01006690 if (!bs || !bs->drv) {
6691 return false;
6692 }
6693
6694 if (bs == to_replace) {
6695 return true;
6696 }
6697
6698 /* See what the driver can do */
6699 if (bs->drv->bdrv_recurse_can_replace) {
6700 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
6701 }
6702
6703 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02006704 filtered = bdrv_filter_bs(bs);
6705 if (filtered) {
6706 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01006707 }
6708
6709 /* Safe default */
6710 return false;
6711}
6712
Max Reitz810803a2020-02-18 11:34:44 +01006713/*
6714 * Check whether the given @node_name can be replaced by a node that
6715 * has the same data as @parent_bs. If so, return @node_name's BDS;
6716 * NULL otherwise.
6717 *
6718 * @node_name must be a (recursive) *child of @parent_bs (or this
6719 * function will return NULL).
6720 *
6721 * The result (whether the node can be replaced or not) is only valid
6722 * for as long as no graph or permission changes occur.
6723 */
Wen Congyange12f3782015-07-17 10:12:22 +08006724BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
6725 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02006726{
6727 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006728 AioContext *aio_context;
6729
Benoît Canet09158f02014-06-27 18:25:25 +02006730 if (!to_replace_bs) {
6731 error_setg(errp, "Node name '%s' not found", node_name);
6732 return NULL;
6733 }
6734
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006735 aio_context = bdrv_get_aio_context(to_replace_bs);
6736 aio_context_acquire(aio_context);
6737
Benoît Canet09158f02014-06-27 18:25:25 +02006738 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006739 to_replace_bs = NULL;
6740 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02006741 }
6742
6743 /* We don't want arbitrary node of the BDS chain to be replaced only the top
6744 * most non filter in order to prevent data corruption.
6745 * Another benefit is that this tests exclude backing files which are
6746 * blocked by the backing blockers.
6747 */
Max Reitz810803a2020-02-18 11:34:44 +01006748 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
6749 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
6750 "because it cannot be guaranteed that doing so would not "
6751 "lead to an abrupt change of visible data",
6752 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006753 to_replace_bs = NULL;
6754 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02006755 }
6756
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01006757out:
6758 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02006759 return to_replace_bs;
6760}
Ming Lei448ad912014-07-04 18:04:33 +08006761
Max Reitz97e2f022019-02-01 20:29:27 +01006762/**
6763 * Iterates through the list of runtime option keys that are said to
6764 * be "strong" for a BDS. An option is called "strong" if it changes
6765 * a BDS's data. For example, the null block driver's "size" and
6766 * "read-zeroes" options are strong, but its "latency-ns" option is
6767 * not.
6768 *
6769 * If a key returned by this function ends with a dot, all options
6770 * starting with that prefix are strong.
6771 */
6772static const char *const *strong_options(BlockDriverState *bs,
6773 const char *const *curopt)
6774{
6775 static const char *const global_options[] = {
6776 "driver", "filename", NULL
6777 };
6778
6779 if (!curopt) {
6780 return &global_options[0];
6781 }
6782
6783 curopt++;
6784 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
6785 curopt = bs->drv->strong_runtime_opts;
6786 }
6787
6788 return (curopt && *curopt) ? curopt : NULL;
6789}
6790
6791/**
6792 * Copies all strong runtime options from bs->options to the given
6793 * QDict. The set of strong option keys is determined by invoking
6794 * strong_options().
6795 *
6796 * Returns true iff any strong option was present in bs->options (and
6797 * thus copied to the target QDict) with the exception of "filename"
6798 * and "driver". The caller is expected to use this value to decide
6799 * whether the existence of strong options prevents the generation of
6800 * a plain filename.
6801 */
6802static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
6803{
6804 bool found_any = false;
6805 const char *const *option_name = NULL;
6806
6807 if (!bs->drv) {
6808 return false;
6809 }
6810
6811 while ((option_name = strong_options(bs, option_name))) {
6812 bool option_given = false;
6813
6814 assert(strlen(*option_name) > 0);
6815 if ((*option_name)[strlen(*option_name) - 1] != '.') {
6816 QObject *entry = qdict_get(bs->options, *option_name);
6817 if (!entry) {
6818 continue;
6819 }
6820
6821 qdict_put_obj(d, *option_name, qobject_ref(entry));
6822 option_given = true;
6823 } else {
6824 const QDictEntry *entry;
6825 for (entry = qdict_first(bs->options); entry;
6826 entry = qdict_next(bs->options, entry))
6827 {
6828 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
6829 qdict_put_obj(d, qdict_entry_key(entry),
6830 qobject_ref(qdict_entry_value(entry)));
6831 option_given = true;
6832 }
6833 }
6834 }
6835
6836 /* While "driver" and "filename" need to be included in a JSON filename,
6837 * their existence does not prohibit generation of a plain filename. */
6838 if (!found_any && option_given &&
6839 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
6840 {
6841 found_any = true;
6842 }
6843 }
6844
Max Reitz62a01a272019-02-01 20:29:34 +01006845 if (!qdict_haskey(d, "driver")) {
6846 /* Drivers created with bdrv_new_open_driver() may not have a
6847 * @driver option. Add it here. */
6848 qdict_put_str(d, "driver", bs->drv->format_name);
6849 }
6850
Max Reitz97e2f022019-02-01 20:29:27 +01006851 return found_any;
6852}
6853
Max Reitz90993622019-02-01 20:29:09 +01006854/* Note: This function may return false positives; it may return true
6855 * even if opening the backing file specified by bs's image header
6856 * would result in exactly bs->backing. */
Max Reitz0b877d02018-08-01 20:34:11 +02006857bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01006858{
6859 if (bs->backing) {
6860 return strcmp(bs->auto_backing_file,
6861 bs->backing->bs->filename);
6862 } else {
6863 /* No backing BDS, so if the image header reports any backing
6864 * file, it must have been suppressed */
6865 return bs->auto_backing_file[0] != '\0';
6866 }
6867}
6868
Max Reitz91af7012014-07-18 20:24:56 +02006869/* Updates the following BDS fields:
6870 * - exact_filename: A filename which may be used for opening a block device
6871 * which (mostly) equals the given BDS (even without any
6872 * other options; so reading and writing must return the same
6873 * results, but caching etc. may be different)
6874 * - full_open_options: Options which, when given when opening a block device
6875 * (without a filename), result in a BDS (mostly)
6876 * equalling the given one
6877 * - filename: If exact_filename is set, it is copied here. Otherwise,
6878 * full_open_options is converted to a JSON object, prefixed with
6879 * "json:" (for use through the JSON pseudo protocol) and put here.
6880 */
6881void bdrv_refresh_filename(BlockDriverState *bs)
6882{
6883 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01006884 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02006885 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02006886 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01006887 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01006888 bool generate_json_filename; /* Whether our default implementation should
6889 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02006890
6891 if (!drv) {
6892 return;
6893 }
6894
Max Reitze24518e2019-02-01 20:29:06 +01006895 /* This BDS's file name may depend on any of its children's file names, so
6896 * refresh those first */
6897 QLIST_FOREACH(child, &bs->children, next) {
6898 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02006899 }
6900
Max Reitzbb808d52019-02-01 20:29:07 +01006901 if (bs->implicit) {
6902 /* For implicit nodes, just copy everything from the single child */
6903 child = QLIST_FIRST(&bs->children);
6904 assert(QLIST_NEXT(child, next) == NULL);
6905
6906 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
6907 child->bs->exact_filename);
6908 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
6909
Pan Nengyuancb895612020-01-16 16:56:00 +08006910 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01006911 bs->full_open_options = qobject_ref(child->bs->full_open_options);
6912
6913 return;
6914 }
6915
Max Reitz90993622019-02-01 20:29:09 +01006916 backing_overridden = bdrv_backing_overridden(bs);
6917
6918 if (bs->open_flags & BDRV_O_NO_IO) {
6919 /* Without I/O, the backing file does not change anything.
6920 * Therefore, in such a case (primarily qemu-img), we can
6921 * pretend the backing file has not been overridden even if
6922 * it technically has been. */
6923 backing_overridden = false;
6924 }
6925
Max Reitz97e2f022019-02-01 20:29:27 +01006926 /* Gather the options QDict */
6927 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01006928 generate_json_filename = append_strong_runtime_options(opts, bs);
6929 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01006930
6931 if (drv->bdrv_gather_child_options) {
6932 /* Some block drivers may not want to present all of their children's
6933 * options, or name them differently from BdrvChild.name */
6934 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
6935 } else {
6936 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02006937 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01006938 /* We can skip the backing BDS if it has not been overridden */
6939 continue;
6940 }
6941
6942 qdict_put(opts, child->name,
6943 qobject_ref(child->bs->full_open_options));
6944 }
6945
6946 if (backing_overridden && !bs->backing) {
6947 /* Force no backing file */
6948 qdict_put_null(opts, "backing");
6949 }
6950 }
6951
6952 qobject_unref(bs->full_open_options);
6953 bs->full_open_options = opts;
6954
Max Reitz52f72d62019-06-12 17:43:03 +02006955 primary_child_bs = bdrv_primary_bs(bs);
6956
Max Reitz998b3a12019-02-01 20:29:28 +01006957 if (drv->bdrv_refresh_filename) {
6958 /* Obsolete information is of no use here, so drop the old file name
6959 * information before refreshing it */
6960 bs->exact_filename[0] = '\0';
6961
6962 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02006963 } else if (primary_child_bs) {
6964 /*
6965 * Try to reconstruct valid information from the underlying
6966 * file -- this only works for format nodes (filter nodes
6967 * cannot be probed and as such must be selected by the user
6968 * either through an options dict, or through a special
6969 * filename which the filter driver must construct in its
6970 * .bdrv_refresh_filename() implementation).
6971 */
Max Reitz998b3a12019-02-01 20:29:28 +01006972
6973 bs->exact_filename[0] = '\0';
6974
Max Reitzfb695c72019-02-01 20:29:29 +01006975 /*
6976 * We can use the underlying file's filename if:
6977 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02006978 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01006979 * - the file is a protocol BDS, and
6980 * - opening that file (as this BDS's format) will automatically create
6981 * the BDS tree we have right now, that is:
6982 * - the user did not significantly change this BDS's behavior with
6983 * some explicit (strong) options
6984 * - no non-file child of this BDS has been overridden by the user
6985 * Both of these conditions are represented by generate_json_filename.
6986 */
Max Reitz52f72d62019-06-12 17:43:03 +02006987 if (primary_child_bs->exact_filename[0] &&
6988 primary_child_bs->drv->bdrv_file_open &&
6989 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01006990 {
Max Reitz52f72d62019-06-12 17:43:03 +02006991 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01006992 }
6993 }
6994
Max Reitz91af7012014-07-18 20:24:56 +02006995 if (bs->exact_filename[0]) {
6996 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01006997 } else {
Max Reitz91af7012014-07-18 20:24:56 +02006998 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05006999 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
7000 qstring_get_str(json)) >= sizeof(bs->filename)) {
7001 /* Give user a hint if we truncated things. */
7002 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7003 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02007004 qobject_unref(json);
Max Reitz91af7012014-07-18 20:24:56 +02007005 }
7006}
Wen Congyange06018a2016-05-10 15:36:37 +08007007
Max Reitz1e89d0f2019-02-01 20:29:18 +01007008char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7009{
7010 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007011 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007012
7013 if (!drv) {
7014 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7015 return NULL;
7016 }
7017
7018 if (drv->bdrv_dirname) {
7019 return drv->bdrv_dirname(bs, errp);
7020 }
7021
Max Reitz52f72d62019-06-12 17:43:03 +02007022 child_bs = bdrv_primary_bs(bs);
7023 if (child_bs) {
7024 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007025 }
7026
7027 bdrv_refresh_filename(bs);
7028 if (bs->exact_filename[0] != '\0') {
7029 return path_combine(bs->exact_filename, "");
7030 }
7031
7032 error_setg(errp, "Cannot generate a base directory for %s nodes",
7033 drv->format_name);
7034 return NULL;
7035}
7036
Wen Congyange06018a2016-05-10 15:36:37 +08007037/*
7038 * Hot add/remove a BDS's child. So the user can take a child offline when
7039 * it is broken and take a new child online
7040 */
7041void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7042 Error **errp)
7043{
7044
7045 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7046 error_setg(errp, "The node %s does not support adding a child",
7047 bdrv_get_device_or_node_name(parent_bs));
7048 return;
7049 }
7050
7051 if (!QLIST_EMPTY(&child_bs->parents)) {
7052 error_setg(errp, "The node %s already has a parent",
7053 child_bs->node_name);
7054 return;
7055 }
7056
7057 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7058}
7059
7060void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7061{
7062 BdrvChild *tmp;
7063
7064 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7065 error_setg(errp, "The node %s does not support removing a child",
7066 bdrv_get_device_or_node_name(parent_bs));
7067 return;
7068 }
7069
7070 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7071 if (tmp == child) {
7072 break;
7073 }
7074 }
7075
7076 if (!tmp) {
7077 error_setg(errp, "The node %s does not have a child named %s",
7078 bdrv_get_device_or_node_name(parent_bs),
7079 bdrv_get_device_or_node_name(child->bs));
7080 return;
7081 }
7082
7083 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7084}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007085
7086int bdrv_make_empty(BdrvChild *c, Error **errp)
7087{
7088 BlockDriver *drv = c->bs->drv;
7089 int ret;
7090
7091 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7092
7093 if (!drv->bdrv_make_empty) {
7094 error_setg(errp, "%s does not support emptying nodes",
7095 drv->format_name);
7096 return -ENOTSUP;
7097 }
7098
7099 ret = drv->bdrv_make_empty(c->bs);
7100 if (ret < 0) {
7101 error_setg_errno(errp, -ret, "Failed to empty %s",
7102 c->bs->filename);
7103 return ret;
7104 }
7105
7106 return 0;
7107}
Max Reitz9a6fc882019-05-31 15:23:11 +02007108
7109/*
7110 * Return the child that @bs acts as an overlay for, and from which data may be
7111 * copied in COW or COR operations. Usually this is the backing file.
7112 */
7113BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7114{
7115 if (!bs || !bs->drv) {
7116 return NULL;
7117 }
7118
7119 if (bs->drv->is_filter) {
7120 return NULL;
7121 }
7122
7123 if (!bs->backing) {
7124 return NULL;
7125 }
7126
7127 assert(bs->backing->role & BDRV_CHILD_COW);
7128 return bs->backing;
7129}
7130
7131/*
7132 * If @bs acts as a filter for exactly one of its children, return
7133 * that child.
7134 */
7135BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7136{
7137 BdrvChild *c;
7138
7139 if (!bs || !bs->drv) {
7140 return NULL;
7141 }
7142
7143 if (!bs->drv->is_filter) {
7144 return NULL;
7145 }
7146
7147 /* Only one of @backing or @file may be used */
7148 assert(!(bs->backing && bs->file));
7149
7150 c = bs->backing ?: bs->file;
7151 if (!c) {
7152 return NULL;
7153 }
7154
7155 assert(c->role & BDRV_CHILD_FILTERED);
7156 return c;
7157}
7158
7159/*
7160 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7161 * whichever is non-NULL.
7162 *
7163 * Return NULL if both are NULL.
7164 */
7165BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7166{
7167 BdrvChild *cow_child = bdrv_cow_child(bs);
7168 BdrvChild *filter_child = bdrv_filter_child(bs);
7169
7170 /* Filter nodes cannot have COW backing files */
7171 assert(!(cow_child && filter_child));
7172
7173 return cow_child ?: filter_child;
7174}
7175
7176/*
7177 * Return the primary child of this node: For filters, that is the
7178 * filtered child. For other nodes, that is usually the child storing
7179 * metadata.
7180 * (A generally more helpful description is that this is (usually) the
7181 * child that has the same filename as @bs.)
7182 *
7183 * Drivers do not necessarily have a primary child; for example quorum
7184 * does not.
7185 */
7186BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7187{
7188 BdrvChild *c, *found = NULL;
7189
7190 QLIST_FOREACH(c, &bs->children, next) {
7191 if (c->role & BDRV_CHILD_PRIMARY) {
7192 assert(!found);
7193 found = c;
7194 }
7195 }
7196
7197 return found;
7198}
Max Reitzd38d7eb2019-06-12 15:06:37 +02007199
7200static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7201 bool stop_on_explicit_filter)
7202{
7203 BdrvChild *c;
7204
7205 if (!bs) {
7206 return NULL;
7207 }
7208
7209 while (!(stop_on_explicit_filter && !bs->implicit)) {
7210 c = bdrv_filter_child(bs);
7211 if (!c) {
7212 /*
7213 * A filter that is embedded in a working block graph must
7214 * have a child. Assert this here so this function does
7215 * not return a filter node that is not expected by the
7216 * caller.
7217 */
7218 assert(!bs->drv || !bs->drv->is_filter);
7219 break;
7220 }
7221 bs = c->bs;
7222 }
7223 /*
7224 * Note that this treats nodes with bs->drv == NULL as not being
7225 * filters (bs->drv == NULL should be replaced by something else
7226 * anyway).
7227 * The advantage of this behavior is that this function will thus
7228 * always return a non-NULL value (given a non-NULL @bs).
7229 */
7230
7231 return bs;
7232}
7233
7234/*
7235 * Return the first BDS that has not been added implicitly or that
7236 * does not have a filtered child down the chain starting from @bs
7237 * (including @bs itself).
7238 */
7239BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7240{
7241 return bdrv_do_skip_filters(bs, true);
7242}
7243
7244/*
7245 * Return the first BDS that does not have a filtered child down the
7246 * chain starting from @bs (including @bs itself).
7247 */
7248BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7249{
7250 return bdrv_do_skip_filters(bs, false);
7251}
7252
7253/*
7254 * For a backing chain, return the first non-filter backing image of
7255 * the first non-filter image.
7256 */
7257BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7258{
7259 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
7260}