blob: 6c128007fdc2ec008812930bc24eaff9019c478a [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"
Kevin Wolfcd7fca92016-07-06 11:22:39 +020029#include "block/nbd.h"
Max Reitz609f45e2018-06-14 21:14:28 +020030#include "block/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010031#include "qemu/error-report.h"
Marc Mari88d88792016-08-12 09:27:03 -040032#include "module_block.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010033#include "qemu/module.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010034#include "qapi/error.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010035#include "qapi/qmp/qdict.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010036#include "qapi/qmp/qjson.h"
Max Reitze59a0cf2018-02-24 16:40:32 +010037#include "qapi/qmp/qnull.h"
Markus Armbrusterfc81fa12018-02-01 12:18:40 +010038#include "qapi/qmp/qstring.h"
Kevin Wolfe1d74bc2018-01-10 15:52:33 +010039#include "qapi/qobject-output-visitor.h"
40#include "qapi/qapi-visit-block-core.h"
Markus Armbrusterbfb197e2014-10-07 13:59:11 +020041#include "sysemu/block-backend.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010042#include "sysemu/sysemu.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010043#include "qemu/notify.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010044#include "qemu/option.h"
Daniel P. Berrange10817bf2015-09-01 14:48:02 +010045#include "qemu/coroutine.h"
Benoît Canetc13163f2014-01-23 21:31:34 +010046#include "block/qapi.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010047#include "qemu/timer.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020048#include "qemu/cutils.h"
49#include "qemu/id.h"
bellardfc01f7e2003-06-30 10:03:06 +000050
Juan Quintela71e72a12009-07-27 16:12:56 +020051#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000052#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000053#include <sys/queue.h>
blueswir1c5e97232009-03-07 20:06:23 +000054#ifndef __DragonFly__
bellard7674e7b2005-04-26 21:59:26 +000055#include <sys/disk.h>
56#endif
blueswir1c5e97232009-03-07 20:06:23 +000057#endif
bellard7674e7b2005-04-26 21:59:26 +000058
aliguori49dc7682009-03-08 16:26:59 +000059#ifdef _WIN32
60#include <windows.h>
61#endif
62
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010063#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
64
Benoît Canetdc364f42014-01-23 21:31:32 +010065static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
66 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
67
Max Reitz2c1d04e2016-01-29 16:36:11 +010068static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
69 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
70
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010071static QLIST_HEAD(, BlockDriver) bdrv_drivers =
72 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000073
Max Reitz5b363932016-05-17 16:41:31 +020074static BlockDriverState *bdrv_open_inherit(const char *filename,
75 const char *reference,
76 QDict *options, int flags,
77 BlockDriverState *parent,
78 const BdrvChildRole *child_role,
79 Error **errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +020080
Markus Armbrustereb852012009-10-27 18:41:44 +010081/* If non-zero, use only whitelisted block drivers */
82static int use_bdrv_whitelist;
83
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +000084#ifdef _WIN32
85static int is_windows_drive_prefix(const char *filename)
86{
87 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
88 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
89 filename[1] == ':');
90}
91
92int is_windows_drive(const char *filename)
93{
94 if (is_windows_drive_prefix(filename) &&
95 filename[2] == '\0')
96 return 1;
97 if (strstart(filename, "\\\\.\\", NULL) ||
98 strstart(filename, "//./", NULL))
99 return 1;
100 return 0;
101}
102#endif
103
Kevin Wolf339064d2013-11-28 10:23:32 +0100104size_t bdrv_opt_mem_align(BlockDriverState *bs)
105{
106 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300107 /* page size or 4k (hdd sector size) should be on the safe side */
108 return MAX(4096, getpagesize());
Kevin Wolf339064d2013-11-28 10:23:32 +0100109 }
110
111 return bs->bl.opt_mem_alignment;
112}
113
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300114size_t bdrv_min_mem_align(BlockDriverState *bs)
115{
116 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300117 /* page size or 4k (hdd sector size) should be on the safe side */
118 return MAX(4096, getpagesize());
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300119 }
120
121 return bs->bl.min_mem_alignment;
122}
123
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000124/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100125int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000126{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200127 const char *p;
128
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000129#ifdef _WIN32
130 if (is_windows_drive(path) ||
131 is_windows_drive_prefix(path)) {
132 return 0;
133 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200134 p = path + strcspn(path, ":/\\");
135#else
136 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000137#endif
138
Paolo Bonzini947995c2012-05-08 16:51:48 +0200139 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000140}
141
bellard83f64092006-08-01 16:21:11 +0000142int path_is_absolute(const char *path)
143{
bellard21664422007-01-07 18:22:37 +0000144#ifdef _WIN32
145 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200146 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000147 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200148 }
149 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000150#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200151 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000152#endif
bellard83f64092006-08-01 16:21:11 +0000153}
154
155/* if filename is absolute, just copy it to dest. Otherwise, build a
156 path to it by considering it is relative to base_path. URL are
157 supported. */
158void path_combine(char *dest, int dest_size,
159 const char *base_path,
160 const char *filename)
161{
162 const char *p, *p1;
163 int len;
164
165 if (dest_size <= 0)
166 return;
167 if (path_is_absolute(filename)) {
168 pstrcpy(dest, dest_size, filename);
169 } else {
Max Reitz0d54a6f2017-05-22 21:52:15 +0200170 const char *protocol_stripped = NULL;
171
172 if (path_has_protocol(base_path)) {
173 protocol_stripped = strchr(base_path, ':');
174 if (protocol_stripped) {
175 protocol_stripped++;
176 }
177 }
178 p = protocol_stripped ?: base_path;
179
bellard3b9f94e2007-01-07 17:27:07 +0000180 p1 = strrchr(base_path, '/');
181#ifdef _WIN32
182 {
183 const char *p2;
184 p2 = strrchr(base_path, '\\');
185 if (!p1 || p2 > p1)
186 p1 = p2;
187 }
188#endif
bellard83f64092006-08-01 16:21:11 +0000189 if (p1)
190 p1++;
191 else
192 p1 = base_path;
193 if (p1 > p)
194 p = p1;
195 len = p - base_path;
196 if (len > dest_size - 1)
197 len = dest_size - 1;
198 memcpy(dest, base_path, len);
199 dest[len] = '\0';
200 pstrcat(dest, dest_size, filename);
201 }
202}
203
Max Reitz03c320d2017-05-22 21:52:16 +0200204/*
205 * Helper function for bdrv_parse_filename() implementations to remove optional
206 * protocol prefixes (especially "file:") from a filename and for putting the
207 * stripped filename into the options QDict if there is such a prefix.
208 */
209void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
210 QDict *options)
211{
212 if (strstart(filename, prefix, &filename)) {
213 /* Stripping the explicit protocol prefix may result in a protocol
214 * prefix being (wrongly) detected (if the filename contains a colon) */
215 if (path_has_protocol(filename)) {
216 QString *fat_filename;
217
218 /* This means there is some colon before the first slash; therefore,
219 * this cannot be an absolute path */
220 assert(!path_is_absolute(filename));
221
222 /* And we can thus fix the protocol detection issue by prefixing it
223 * by "./" */
224 fat_filename = qstring_from_str("./");
225 qstring_append(fat_filename, filename);
226
227 assert(!path_has_protocol(qstring_get_str(fat_filename)));
228
229 qdict_put(options, "filename", fat_filename);
230 } else {
231 /* If no protocol prefix was detected, we can use the shortened
232 * filename as-is */
233 qdict_put_str(options, "filename", filename);
234 }
235 }
236}
237
238
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200239/* Returns whether the image file is opened as read-only. Note that this can
240 * return false and writing to the image file is still not possible because the
241 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400242bool bdrv_is_read_only(BlockDriverState *bs)
243{
244 return bs->read_only;
245}
246
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200247int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
248 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400249{
Jeff Codye2b82472017-04-07 16:55:26 -0400250 /* Do not set read_only if copy_on_read is enabled */
251 if (bs->copy_on_read && read_only) {
252 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
253 bdrv_get_device_or_node_name(bs));
254 return -EINVAL;
255 }
256
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400257 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200258 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
259 !ignore_allow_rdw)
260 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400261 error_setg(errp, "Node '%s' is read only",
262 bdrv_get_device_or_node_name(bs));
263 return -EPERM;
264 }
265
Jeff Cody45803a02017-04-07 16:55:29 -0400266 return 0;
267}
268
Kevin Wolf398e6ad2017-11-07 18:21:41 +0100269/* TODO Remove (deprecated since 2.11)
270 * Block drivers are not supposed to automatically change bs->read_only.
271 * Instead, they should just check whether they can provide what the user
272 * explicitly requested and error out if read-write is requested, but they can
273 * only provide read-only access. */
Jeff Cody45803a02017-04-07 16:55:29 -0400274int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp)
275{
276 int ret = 0;
277
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200278 ret = bdrv_can_set_read_only(bs, read_only, false, errp);
Jeff Cody45803a02017-04-07 16:55:29 -0400279 if (ret < 0) {
280 return ret;
281 }
282
Jeff Codyfe5241b2017-04-07 16:55:25 -0400283 bs->read_only = read_only;
Jeff Codye2b82472017-04-07 16:55:26 -0400284 return 0;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400285}
286
Max Reitz0a828552014-11-26 17:20:25 +0100287void bdrv_get_full_backing_filename_from_filename(const char *backed,
288 const char *backing,
Max Reitz9f074292014-11-26 17:20:26 +0100289 char *dest, size_t sz,
290 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100291{
Max Reitz9f074292014-11-26 17:20:26 +0100292 if (backing[0] == '\0' || path_has_protocol(backing) ||
293 path_is_absolute(backing))
294 {
Max Reitz0a828552014-11-26 17:20:25 +0100295 pstrcpy(dest, sz, backing);
Max Reitz9f074292014-11-26 17:20:26 +0100296 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
297 error_setg(errp, "Cannot use relative backing file names for '%s'",
298 backed);
Max Reitz0a828552014-11-26 17:20:25 +0100299 } else {
300 path_combine(dest, sz, backed, backing);
301 }
302}
303
Max Reitz9f074292014-11-26 17:20:26 +0100304void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
305 Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200306{
Max Reitz9f074292014-11-26 17:20:26 +0100307 char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
308
309 bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
310 dest, sz, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200311}
312
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100313void bdrv_register(BlockDriver *bdrv)
314{
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100315 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000316}
bellardb3380822004-03-14 21:38:54 +0000317
Markus Armbrustere4e99862014-10-07 13:59:03 +0200318BlockDriverState *bdrv_new(void)
319{
320 BlockDriverState *bs;
321 int i;
322
Markus Armbruster5839e532014-08-19 10:31:08 +0200323 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800324 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800325 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
326 QLIST_INIT(&bs->op_blockers[i]);
327 }
Stefan Hajnoczid616b222013-06-24 17:13:10 +0200328 notifier_with_return_list_init(&bs->before_write_notifiers);
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200329 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200330 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800331 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200332 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200333
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300334 qemu_co_queue_init(&bs->flush_queue);
335
Kevin Wolf0f122642018-03-28 18:29:18 +0200336 for (i = 0; i < bdrv_drain_all_count; i++) {
337 bdrv_drained_begin(bs);
338 }
339
Max Reitz2c1d04e2016-01-29 16:36:11 +0100340 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
341
bellardb3380822004-03-14 21:38:54 +0000342 return bs;
343}
344
Marc Mari88d88792016-08-12 09:27:03 -0400345static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000346{
347 BlockDriver *drv1;
Marc Mari88d88792016-08-12 09:27:03 -0400348
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100349 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
350 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000351 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100352 }
bellardea2384d2004-08-01 21:59:26 +0000353 }
Marc Mari88d88792016-08-12 09:27:03 -0400354
bellardea2384d2004-08-01 21:59:26 +0000355 return NULL;
356}
357
Marc Mari88d88792016-08-12 09:27:03 -0400358BlockDriver *bdrv_find_format(const char *format_name)
359{
360 BlockDriver *drv1;
361 int i;
362
363 drv1 = bdrv_do_find_format(format_name);
364 if (drv1) {
365 return drv1;
366 }
367
368 /* The driver isn't registered, maybe we need to load a module */
369 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
370 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
371 block_module_load_one(block_driver_modules[i].library_name);
372 break;
373 }
374 }
375
376 return bdrv_do_find_format(format_name);
377}
378
Kevin Wolfe8eb8632018-02-21 11:47:43 +0100379int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100380{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800381 static const char *whitelist_rw[] = {
382 CONFIG_BDRV_RW_WHITELIST
383 };
384 static const char *whitelist_ro[] = {
385 CONFIG_BDRV_RO_WHITELIST
Markus Armbrustereb852012009-10-27 18:41:44 +0100386 };
387 const char **p;
388
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800389 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100390 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800391 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100392
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800393 for (p = whitelist_rw; *p; p++) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100394 if (!strcmp(drv->format_name, *p)) {
395 return 1;
396 }
397 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800398 if (read_only) {
399 for (p = whitelist_ro; *p; p++) {
400 if (!strcmp(drv->format_name, *p)) {
401 return 1;
402 }
403 }
404 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100405 return 0;
406}
407
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000408bool bdrv_uses_whitelist(void)
409{
410 return use_bdrv_whitelist;
411}
412
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800413typedef struct CreateCo {
414 BlockDriver *drv;
415 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800416 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800417 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200418 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800419} CreateCo;
420
421static void coroutine_fn bdrv_create_co_entry(void *opaque)
422{
Max Reitzcc84d902013-09-06 17:14:26 +0200423 Error *local_err = NULL;
424 int ret;
425
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800426 CreateCo *cco = opaque;
427 assert(cco->drv);
428
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100429 ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300430 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200431 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800432}
433
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200434int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800435 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000436{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800437 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200438
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800439 Coroutine *co;
440 CreateCo cco = {
441 .drv = drv,
442 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800443 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800444 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200445 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800446 };
447
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100448 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200449 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300450 ret = -ENOTSUP;
451 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800452 }
453
454 if (qemu_in_coroutine()) {
455 /* Fast-path if already in coroutine context */
456 bdrv_create_co_entry(&cco);
457 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200458 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
459 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800460 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200461 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800462 }
463 }
464
465 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200466 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100467 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200468 error_propagate(errp, cco.err);
469 } else {
470 error_setg_errno(errp, -ret, "Could not create image");
471 }
472 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800473
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300474out:
475 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800476 return ret;
bellardea2384d2004-08-01 21:59:26 +0000477}
478
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800479int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200480{
481 BlockDriver *drv;
Max Reitzcc84d902013-09-06 17:14:26 +0200482 Error *local_err = NULL;
483 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200484
Max Reitzb65a5e12015-02-05 13:58:12 -0500485 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200486 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000487 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200488 }
489
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800490 ret = bdrv_create(drv, filename, opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300491 error_propagate(errp, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200492 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200493}
494
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100495/**
496 * Try to get @bs's logical and physical block size.
497 * On success, store them in @bsz struct and return 0.
498 * On failure return -errno.
499 * @bs must not be empty.
500 */
501int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
502{
503 BlockDriver *drv = bs->drv;
504
505 if (drv && drv->bdrv_probe_blocksizes) {
506 return drv->bdrv_probe_blocksizes(bs, bsz);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +0300507 } else if (drv && drv->is_filter && bs->file) {
508 return bdrv_probe_blocksizes(bs->file->bs, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100509 }
510
511 return -ENOTSUP;
512}
513
514/**
515 * Try to get @bs's geometry (cyls, heads, sectors).
516 * On success, store them in @geo struct and return 0.
517 * On failure return -errno.
518 * @bs must not be empty.
519 */
520int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
521{
522 BlockDriver *drv = bs->drv;
523
524 if (drv && drv->bdrv_probe_geometry) {
525 return drv->bdrv_probe_geometry(bs, geo);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +0300526 } else if (drv && drv->is_filter && bs->file) {
527 return bdrv_probe_geometry(bs->file->bs, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100528 }
529
530 return -ENOTSUP;
531}
532
Jim Meyeringeba25052012-05-28 09:27:54 +0200533/*
534 * Create a uniquely-named empty temporary file.
535 * Return 0 upon success, otherwise a negative errno value.
536 */
537int get_tmp_filename(char *filename, int size)
538{
bellardd5249392004-08-03 21:14:23 +0000539#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000540 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200541 /* GetTempFileName requires that its output buffer (4th param)
542 have length MAX_PATH or greater. */
543 assert(size >= MAX_PATH);
544 return (GetTempPath(MAX_PATH, temp_dir)
545 && GetTempFileName(temp_dir, "qem", 0, filename)
546 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000547#else
bellardea2384d2004-08-01 21:59:26 +0000548 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000549 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000550 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530551 if (!tmpdir) {
552 tmpdir = "/var/tmp";
553 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200554 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
555 return -EOVERFLOW;
556 }
bellardea2384d2004-08-01 21:59:26 +0000557 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800558 if (fd < 0) {
559 return -errno;
560 }
561 if (close(fd) != 0) {
562 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200563 return -errno;
564 }
565 return 0;
bellardd5249392004-08-03 21:14:23 +0000566#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200567}
bellardea2384d2004-08-01 21:59:26 +0000568
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200569/*
570 * Detect host devices. By convention, /dev/cdrom[N] is always
571 * recognized as a host CDROM.
572 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200573static BlockDriver *find_hdev_driver(const char *filename)
574{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200575 int score_max = 0, score;
576 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200577
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100578 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200579 if (d->bdrv_probe_device) {
580 score = d->bdrv_probe_device(filename);
581 if (score > score_max) {
582 score_max = score;
583 drv = d;
584 }
585 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200586 }
587
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200588 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200589}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200590
Marc Mari88d88792016-08-12 09:27:03 -0400591static BlockDriver *bdrv_do_find_protocol(const char *protocol)
592{
593 BlockDriver *drv1;
594
595 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
596 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
597 return drv1;
598 }
599 }
600
601 return NULL;
602}
603
Kevin Wolf98289622013-07-10 15:47:39 +0200604BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500605 bool allow_protocol_prefix,
606 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200607{
608 BlockDriver *drv1;
609 char protocol[128];
610 int len;
611 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400612 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200613
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200614 /* TODO Drivers without bdrv_file_open must be specified explicitly */
615
Christoph Hellwig39508e72010-06-23 12:25:17 +0200616 /*
617 * XXX(hch): we really should not let host device detection
618 * override an explicit protocol specification, but moving this
619 * later breaks access to device names with colons in them.
620 * Thanks to the brain-dead persistent naming schemes on udev-
621 * based Linux systems those actually are quite common.
622 */
623 drv1 = find_hdev_driver(filename);
624 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200625 return drv1;
626 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200627
Kevin Wolf98289622013-07-10 15:47:39 +0200628 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100629 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200630 }
Kevin Wolf98289622013-07-10 15:47:39 +0200631
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000632 p = strchr(filename, ':');
633 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200634 len = p - filename;
635 if (len > sizeof(protocol) - 1)
636 len = sizeof(protocol) - 1;
637 memcpy(protocol, filename, len);
638 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400639
640 drv1 = bdrv_do_find_protocol(protocol);
641 if (drv1) {
642 return drv1;
643 }
644
645 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
646 if (block_driver_modules[i].protocol_name &&
647 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
648 block_module_load_one(block_driver_modules[i].library_name);
649 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200650 }
651 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500652
Marc Mari88d88792016-08-12 09:27:03 -0400653 drv1 = bdrv_do_find_protocol(protocol);
654 if (!drv1) {
655 error_setg(errp, "Unknown protocol '%s'", protocol);
656 }
657 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200658}
659
Markus Armbrusterc6684242014-11-20 16:27:10 +0100660/*
661 * Guess image format by probing its contents.
662 * This is not a good idea when your image is raw (CVE-2008-2004), but
663 * we do it anyway for backward compatibility.
664 *
665 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100666 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
667 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100668 * @filename is its filename.
669 *
670 * For all block drivers, call the bdrv_probe() method to get its
671 * probing score.
672 * Return the first block driver with the highest probing score.
673 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100674BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
675 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100676{
677 int score_max = 0, score;
678 BlockDriver *drv = NULL, *d;
679
680 QLIST_FOREACH(d, &bdrv_drivers, list) {
681 if (d->bdrv_probe) {
682 score = d->bdrv_probe(buf, buf_size, filename);
683 if (score > score_max) {
684 score_max = score;
685 drv = d;
686 }
687 }
688 }
689
690 return drv;
691}
692
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100693static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200694 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000695{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100696 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100697 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100698 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700699
Kevin Wolf08a00552010-06-01 18:37:31 +0200700 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100701 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100702 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200703 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700704 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700705
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100706 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000707 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200708 error_setg_errno(errp, -ret, "Could not read image for determining its "
709 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +0200710 *pdrv = NULL;
711 return ret;
bellard83f64092006-08-01 16:21:11 +0000712 }
713
Markus Armbrusterc6684242014-11-20 16:27:10 +0100714 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +0200715 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200716 error_setg(errp, "Could not determine image format: No compatible "
717 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +0200718 ret = -ENOENT;
719 }
720 *pdrv = drv;
721 return ret;
bellardea2384d2004-08-01 21:59:26 +0000722}
723
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100724/**
725 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +0200726 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100727 */
728static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
729{
730 BlockDriver *drv = bs->drv;
731
Max Reitzd470ad42017-11-10 21:31:09 +0100732 if (!drv) {
733 return -ENOMEDIUM;
734 }
735
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700736 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +0300737 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700738 return 0;
739
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100740 /* query actual device if possible, otherwise just trust the hint */
741 if (drv->bdrv_getlength) {
742 int64_t length = drv->bdrv_getlength(bs);
743 if (length < 0) {
744 return length;
745 }
Fam Zheng7e382002013-11-06 19:48:06 +0800746 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100747 }
748
749 bs->total_sectors = hint;
750 return 0;
751}
752
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100753/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +0100754 * Combines a QDict of new block driver @options with any missing options taken
755 * from @old_options, so that leaving out an option defaults to its old value.
756 */
757static void bdrv_join_options(BlockDriverState *bs, QDict *options,
758 QDict *old_options)
759{
760 if (bs->drv && bs->drv->bdrv_join_options) {
761 bs->drv->bdrv_join_options(options, old_options);
762 } else {
763 qdict_join(options, old_options, false);
764 }
765}
766
767/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +0100768 * Set open flags for a given discard mode
769 *
770 * Return 0 on success, -1 if the discard mode was invalid.
771 */
772int bdrv_parse_discard_flags(const char *mode, int *flags)
773{
774 *flags &= ~BDRV_O_UNMAP;
775
776 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
777 /* do nothing */
778 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
779 *flags |= BDRV_O_UNMAP;
780 } else {
781 return -1;
782 }
783
784 return 0;
785}
786
787/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100788 * Set open flags for a given cache mode
789 *
790 * Return 0 on success, -1 if the cache mode was invalid.
791 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100792int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100793{
794 *flags &= ~BDRV_O_CACHE_MASK;
795
796 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100797 *writethrough = false;
798 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +0100799 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100800 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +0100801 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100802 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100803 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100804 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100805 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100806 *flags |= BDRV_O_NO_FLUSH;
807 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100808 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100809 } else {
810 return -1;
811 }
812
813 return 0;
814}
815
Kevin Wolfb5411552017-01-17 15:56:16 +0100816static char *bdrv_child_get_parent_desc(BdrvChild *c)
817{
818 BlockDriverState *parent = c->opaque;
819 return g_strdup(bdrv_get_device_or_node_name(parent));
820}
821
Kevin Wolf20018e12016-05-23 18:46:59 +0200822static void bdrv_child_cb_drained_begin(BdrvChild *child)
823{
824 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +0200825 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +0200826}
827
Kevin Wolf89bd0302018-03-22 14:11:20 +0100828static bool bdrv_child_cb_drained_poll(BdrvChild *child)
829{
830 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +0200831 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +0100832}
833
Kevin Wolf20018e12016-05-23 18:46:59 +0200834static void bdrv_child_cb_drained_end(BdrvChild *child)
835{
836 BlockDriverState *bs = child->opaque;
837 bdrv_drained_end(bs);
838}
839
Kevin Wolfd736f112017-12-18 16:05:48 +0100840static void bdrv_child_cb_attach(BdrvChild *child)
841{
842 BlockDriverState *bs = child->opaque;
843 bdrv_apply_subtree_drain(child, bs);
844}
845
846static void bdrv_child_cb_detach(BdrvChild *child)
847{
848 BlockDriverState *bs = child->opaque;
849 bdrv_unapply_subtree_drain(child, bs);
850}
851
Kevin Wolf38701b62017-05-04 18:52:39 +0200852static int bdrv_child_cb_inactivate(BdrvChild *child)
853{
854 BlockDriverState *bs = child->opaque;
855 assert(bs->open_flags & BDRV_O_INACTIVE);
856 return 0;
857}
858
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200859/*
Kevin Wolf73176be2016-03-07 13:02:15 +0100860 * Returns the options and flags that a temporary snapshot should get, based on
861 * the originally requested flags (the originally requested image will have
862 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +0200863 */
Kevin Wolf73176be2016-03-07 13:02:15 +0100864static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
865 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +0200866{
Kevin Wolf73176be2016-03-07 13:02:15 +0100867 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
868
869 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +0100870 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
871 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +0200872
Alberto Garciaf87a0e22016-09-15 17:53:02 +0300873 /* Copy the read-only option from the parent */
874 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
875
Kevin Wolf41869042016-06-16 12:59:30 +0200876 /* aio=native doesn't work for cache.direct=off, so disable it for the
877 * temporary snapshot */
878 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +0200879}
880
881/*
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200882 * Returns the options and flags that bs->file should get if a protocol driver
883 * is expected, based on the given options and flags for the parent BDS
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200884 */
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200885static void bdrv_inherited_options(int *child_flags, QDict *child_options,
886 int parent_flags, QDict *parent_options)
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200887{
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200888 int flags = parent_flags;
889
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200890 /* Enable protocol handling, disable format probing for bs->file */
891 flags |= BDRV_O_PROTOCOL;
892
Kevin Wolf91a097e2015-05-08 17:49:53 +0200893 /* If the cache mode isn't explicitly set, inherit direct and no-flush from
894 * the parent. */
895 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
896 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
Fam Zheng5a9347c2017-05-03 00:35:37 +0800897 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
Kevin Wolf91a097e2015-05-08 17:49:53 +0200898
Alberto Garciaf87a0e22016-09-15 17:53:02 +0300899 /* Inherit the read-only option from the parent if it's not set */
900 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
901
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200902 /* Our block drivers take care to send flushes and respect unmap policy,
Kevin Wolf91a097e2015-05-08 17:49:53 +0200903 * so we can default to enable both on lower layers regardless of the
904 * corresponding parent options. */
Kevin Wolf818584a2016-09-12 18:03:18 +0200905 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200906
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200907 /* Clear flags that only apply to the top layer */
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000908 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
909 BDRV_O_NO_IO);
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200910
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200911 *child_flags = flags;
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200912}
913
Kevin Wolff3930ed2015-04-08 13:43:47 +0200914const BdrvChildRole child_file = {
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +0200915 .parent_is_bds = true,
Kevin Wolfb5411552017-01-17 15:56:16 +0100916 .get_parent_desc = bdrv_child_get_parent_desc,
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200917 .inherit_options = bdrv_inherited_options,
Kevin Wolf20018e12016-05-23 18:46:59 +0200918 .drained_begin = bdrv_child_cb_drained_begin,
Kevin Wolf89bd0302018-03-22 14:11:20 +0100919 .drained_poll = bdrv_child_cb_drained_poll,
Kevin Wolf20018e12016-05-23 18:46:59 +0200920 .drained_end = bdrv_child_cb_drained_end,
Kevin Wolfd736f112017-12-18 16:05:48 +0100921 .attach = bdrv_child_cb_attach,
922 .detach = bdrv_child_cb_detach,
Kevin Wolf38701b62017-05-04 18:52:39 +0200923 .inactivate = bdrv_child_cb_inactivate,
Kevin Wolff3930ed2015-04-08 13:43:47 +0200924};
925
926/*
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200927 * Returns the options and flags that bs->file should get if the use of formats
928 * (and not only protocols) is permitted for it, based on the given options and
929 * flags for the parent BDS
Kevin Wolff3930ed2015-04-08 13:43:47 +0200930 */
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200931static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
932 int parent_flags, QDict *parent_options)
Kevin Wolff3930ed2015-04-08 13:43:47 +0200933{
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200934 child_file.inherit_options(child_flags, child_options,
935 parent_flags, parent_options);
936
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000937 *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
Kevin Wolff3930ed2015-04-08 13:43:47 +0200938}
939
940const BdrvChildRole child_format = {
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +0200941 .parent_is_bds = true,
Kevin Wolfb5411552017-01-17 15:56:16 +0100942 .get_parent_desc = bdrv_child_get_parent_desc,
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200943 .inherit_options = bdrv_inherited_fmt_options,
Kevin Wolf20018e12016-05-23 18:46:59 +0200944 .drained_begin = bdrv_child_cb_drained_begin,
Kevin Wolf89bd0302018-03-22 14:11:20 +0100945 .drained_poll = bdrv_child_cb_drained_poll,
Kevin Wolf20018e12016-05-23 18:46:59 +0200946 .drained_end = bdrv_child_cb_drained_end,
Kevin Wolfd736f112017-12-18 16:05:48 +0100947 .attach = bdrv_child_cb_attach,
948 .detach = bdrv_child_cb_detach,
Kevin Wolf38701b62017-05-04 18:52:39 +0200949 .inactivate = bdrv_child_cb_inactivate,
Kevin Wolff3930ed2015-04-08 13:43:47 +0200950};
951
Kevin Wolfdb95dbb2017-02-08 11:28:52 +0100952static void bdrv_backing_attach(BdrvChild *c)
953{
954 BlockDriverState *parent = c->opaque;
955 BlockDriverState *backing_hd = c->bs;
956
957 assert(!parent->backing_blocker);
958 error_setg(&parent->backing_blocker,
959 "node is used as backing hd of '%s'",
960 bdrv_get_device_or_node_name(parent));
961
962 parent->open_flags &= ~BDRV_O_NO_BACKING;
963 pstrcpy(parent->backing_file, sizeof(parent->backing_file),
964 backing_hd->filename);
965 pstrcpy(parent->backing_format, sizeof(parent->backing_format),
966 backing_hd->drv ? backing_hd->drv->format_name : "");
967
968 bdrv_op_block_all(backing_hd, parent->backing_blocker);
969 /* Otherwise we won't be able to commit or stream */
970 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
971 parent->backing_blocker);
972 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
973 parent->backing_blocker);
974 /*
975 * We do backup in 3 ways:
976 * 1. drive backup
977 * The target bs is new opened, and the source is top BDS
978 * 2. blockdev backup
979 * Both the source and the target are top BDSes.
980 * 3. internal backup(used for block replication)
981 * Both the source and the target are backing file
982 *
983 * In case 1 and 2, neither the source nor the target is the backing file.
984 * In case 3, we will block the top BDS, so there is only one block job
985 * for the top BDS and its backing chain.
986 */
987 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
988 parent->backing_blocker);
989 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
990 parent->backing_blocker);
Kevin Wolfd736f112017-12-18 16:05:48 +0100991
992 bdrv_child_cb_attach(c);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +0100993}
994
995static void bdrv_backing_detach(BdrvChild *c)
996{
997 BlockDriverState *parent = c->opaque;
998
999 assert(parent->backing_blocker);
1000 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1001 error_free(parent->backing_blocker);
1002 parent->backing_blocker = NULL;
Kevin Wolfd736f112017-12-18 16:05:48 +01001003
1004 bdrv_child_cb_detach(c);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001005}
1006
Kevin Wolf317fc442014-04-25 13:27:34 +02001007/*
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001008 * Returns the options and flags that bs->backing should get, based on the
1009 * given options and flags for the parent BDS
Kevin Wolf317fc442014-04-25 13:27:34 +02001010 */
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001011static void bdrv_backing_options(int *child_flags, QDict *child_options,
1012 int parent_flags, QDict *parent_options)
Kevin Wolf317fc442014-04-25 13:27:34 +02001013{
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001014 int flags = parent_flags;
1015
Kevin Wolfb8816a42016-03-04 14:52:32 +01001016 /* The cache mode is inherited unmodified for backing files; except WCE,
1017 * which is only applied on the top level (BlockBackend) */
Kevin Wolf91a097e2015-05-08 17:49:53 +02001018 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1019 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
Fam Zheng5a9347c2017-05-03 00:35:37 +08001020 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001021
Kevin Wolf317fc442014-04-25 13:27:34 +02001022 /* backing files always opened read-only */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001023 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1024 flags &= ~BDRV_O_COPY_ON_READ;
Kevin Wolf317fc442014-04-25 13:27:34 +02001025
1026 /* snapshot=on is handled on the top layer */
Kevin Wolf8bfea152014-04-11 19:16:36 +02001027 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
Kevin Wolf317fc442014-04-25 13:27:34 +02001028
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001029 *child_flags = flags;
Kevin Wolf317fc442014-04-25 13:27:34 +02001030}
1031
Kevin Wolf6858eba2017-06-29 19:32:21 +02001032static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1033 const char *filename, Error **errp)
1034{
1035 BlockDriverState *parent = c->opaque;
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001036 int orig_flags = bdrv_get_flags(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001037 int ret;
1038
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001039 if (!(orig_flags & BDRV_O_RDWR)) {
1040 ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp);
1041 if (ret < 0) {
1042 return ret;
1043 }
1044 }
1045
Kevin Wolf6858eba2017-06-29 19:32:21 +02001046 ret = bdrv_change_backing_file(parent, filename,
1047 base->drv ? base->drv->format_name : "");
1048 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001049 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001050 }
1051
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001052 if (!(orig_flags & BDRV_O_RDWR)) {
1053 bdrv_reopen(parent, orig_flags, NULL);
1054 }
1055
Kevin Wolf6858eba2017-06-29 19:32:21 +02001056 return ret;
1057}
1058
Kevin Wolf91ef3822016-12-20 16:23:46 +01001059const BdrvChildRole child_backing = {
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001060 .parent_is_bds = true,
Kevin Wolfb5411552017-01-17 15:56:16 +01001061 .get_parent_desc = bdrv_child_get_parent_desc,
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001062 .attach = bdrv_backing_attach,
1063 .detach = bdrv_backing_detach,
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001064 .inherit_options = bdrv_backing_options,
Kevin Wolf20018e12016-05-23 18:46:59 +02001065 .drained_begin = bdrv_child_cb_drained_begin,
Kevin Wolf89bd0302018-03-22 14:11:20 +01001066 .drained_poll = bdrv_child_cb_drained_poll,
Kevin Wolf20018e12016-05-23 18:46:59 +02001067 .drained_end = bdrv_child_cb_drained_end,
Kevin Wolf38701b62017-05-04 18:52:39 +02001068 .inactivate = bdrv_child_cb_inactivate,
Kevin Wolf6858eba2017-06-29 19:32:21 +02001069 .update_filename = bdrv_backing_update_filename,
Kevin Wolff3930ed2015-04-08 13:43:47 +02001070};
1071
Kevin Wolf7b272452012-11-12 17:05:39 +01001072static int bdrv_open_flags(BlockDriverState *bs, int flags)
1073{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001074 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001075
1076 /*
1077 * Clear flags that are internal to the block layer before opening the
1078 * image.
1079 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001080 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001081
1082 /*
1083 * Snapshots should be writable.
1084 */
Kevin Wolf8bfea152014-04-11 19:16:36 +02001085 if (flags & BDRV_O_TEMPORARY) {
Kevin Wolf7b272452012-11-12 17:05:39 +01001086 open_flags |= BDRV_O_RDWR;
1087 }
1088
1089 return open_flags;
1090}
1091
Kevin Wolf91a097e2015-05-08 17:49:53 +02001092static void update_flags_from_options(int *flags, QemuOpts *opts)
1093{
1094 *flags &= ~BDRV_O_CACHE_MASK;
1095
Kevin Wolf91a097e2015-05-08 17:49:53 +02001096 assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
1097 if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1098 *flags |= BDRV_O_NO_FLUSH;
1099 }
1100
1101 assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
1102 if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1103 *flags |= BDRV_O_NOCACHE;
1104 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001105
1106 *flags &= ~BDRV_O_RDWR;
1107
1108 assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
1109 if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
1110 *flags |= BDRV_O_RDWR;
1111 }
1112
Kevin Wolf91a097e2015-05-08 17:49:53 +02001113}
1114
1115static void update_options_from_flags(QDict *options, int flags)
1116{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001117 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001118 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001119 }
1120 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001121 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1122 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001123 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001124 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001125 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001126 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001127}
1128
Kevin Wolf636ea372014-01-24 14:11:52 +01001129static void bdrv_assign_node_name(BlockDriverState *bs,
1130 const char *node_name,
1131 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001132{
Jeff Cody15489c72015-10-12 19:36:50 -04001133 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001134
Jeff Cody15489c72015-10-12 19:36:50 -04001135 if (!node_name) {
1136 node_name = gen_node_name = id_generate(ID_BLOCK);
1137 } else if (!id_wellformed(node_name)) {
1138 /*
1139 * Check for empty string or invalid characters, but not if it is
1140 * generated (generated names use characters not available to the user)
1141 */
Kevin Wolf9aebf3b2014-09-25 09:54:02 +02001142 error_setg(errp, "Invalid node name");
Kevin Wolf636ea372014-01-24 14:11:52 +01001143 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001144 }
1145
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001146 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001147 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001148 error_setg(errp, "node-name=%s is conflicting with a device id",
1149 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001150 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001151 }
1152
Benoît Canet6913c0c2014-01-23 21:31:33 +01001153 /* takes care of avoiding duplicates node names */
1154 if (bdrv_find_node(node_name)) {
1155 error_setg(errp, "Duplicate node name");
Jeff Cody15489c72015-10-12 19:36:50 -04001156 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001157 }
1158
1159 /* copy node name into the bs and insert it into the graph list */
1160 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1161 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001162out:
1163 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001164}
1165
Kevin Wolf01a56502017-01-18 15:51:56 +01001166static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1167 const char *node_name, QDict *options,
1168 int open_flags, Error **errp)
1169{
1170 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001171 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001172
1173 bdrv_assign_node_name(bs, node_name, &local_err);
1174 if (local_err) {
1175 error_propagate(errp, local_err);
1176 return -EINVAL;
1177 }
1178
1179 bs->drv = drv;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001180 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Kevin Wolf01a56502017-01-18 15:51:56 +01001181 bs->opaque = g_malloc0(drv->instance_size);
1182
1183 if (drv->bdrv_file_open) {
1184 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1185 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001186 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001187 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001188 } else {
1189 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001190 }
1191
1192 if (ret < 0) {
1193 if (local_err) {
1194 error_propagate(errp, local_err);
1195 } else if (bs->filename[0]) {
1196 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1197 } else {
1198 error_setg_errno(errp, -ret, "Could not open image");
1199 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001200 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001201 }
1202
1203 ret = refresh_total_sectors(bs, bs->total_sectors);
1204 if (ret < 0) {
1205 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001206 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001207 }
1208
1209 bdrv_refresh_limits(bs, &local_err);
1210 if (local_err) {
1211 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001212 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001213 }
1214
1215 assert(bdrv_opt_mem_align(bs) != 0);
1216 assert(bdrv_min_mem_align(bs) != 0);
1217 assert(is_power_of_2(bs->bl.request_alignment));
1218
Kevin Wolf0f122642018-03-28 18:29:18 +02001219 for (i = 0; i < bs->quiesce_counter; i++) {
1220 if (drv->bdrv_co_drain_begin) {
1221 drv->bdrv_co_drain_begin(bs);
1222 }
1223 }
1224
Kevin Wolf01a56502017-01-18 15:51:56 +01001225 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001226open_failed:
1227 bs->drv = NULL;
1228 if (bs->file != NULL) {
1229 bdrv_unref_child(bs, bs->file);
1230 bs->file = NULL;
1231 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001232 g_free(bs->opaque);
1233 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001234 return ret;
1235}
1236
Kevin Wolf680c7f92017-01-18 17:16:41 +01001237BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1238 int flags, Error **errp)
1239{
1240 BlockDriverState *bs;
1241 int ret;
1242
1243 bs = bdrv_new();
1244 bs->open_flags = flags;
1245 bs->explicit_options = qdict_new();
1246 bs->options = qdict_new();
1247 bs->opaque = NULL;
1248
1249 update_options_from_flags(bs->options, flags);
1250
1251 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1252 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001253 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001254 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001255 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001256 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001257 bdrv_unref(bs);
1258 return NULL;
1259 }
1260
1261 return bs;
1262}
1263
Kevin Wolfc5f30142016-10-06 11:33:17 +02001264QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001265 .name = "bdrv_common",
1266 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1267 .desc = {
1268 {
1269 .name = "node-name",
1270 .type = QEMU_OPT_STRING,
1271 .help = "Node name of the block device node",
1272 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001273 {
1274 .name = "driver",
1275 .type = QEMU_OPT_STRING,
1276 .help = "Block driver to use for the node",
1277 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001278 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001279 .name = BDRV_OPT_CACHE_DIRECT,
1280 .type = QEMU_OPT_BOOL,
1281 .help = "Bypass software writeback cache on the host",
1282 },
1283 {
1284 .name = BDRV_OPT_CACHE_NO_FLUSH,
1285 .type = QEMU_OPT_BOOL,
1286 .help = "Ignore flush requests",
1287 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001288 {
1289 .name = BDRV_OPT_READ_ONLY,
1290 .type = QEMU_OPT_BOOL,
1291 .help = "Node is opened in read-only mode",
1292 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001293 {
1294 .name = "detect-zeroes",
1295 .type = QEMU_OPT_STRING,
1296 .help = "try to optimize zero writes (off, on, unmap)",
1297 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001298 {
1299 .name = "discard",
1300 .type = QEMU_OPT_STRING,
1301 .help = "discard operation (ignore/off, unmap/on)",
1302 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001303 {
1304 .name = BDRV_OPT_FORCE_SHARE,
1305 .type = QEMU_OPT_BOOL,
1306 .help = "always accept other writers (default: off)",
1307 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001308 { /* end of list */ }
1309 },
1310};
1311
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001312/*
Kevin Wolf57915332010-04-14 15:24:50 +02001313 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001314 *
1315 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001316 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001317static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001318 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001319{
1320 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001321 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001322 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001323 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001324 const char *discard;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001325 const char *detect_zeroes;
Kevin Wolf18edf282015-04-07 17:12:56 +02001326 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001327 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001328 Error *local_err = NULL;
Kevin Wolf57915332010-04-14 15:24:50 +02001329
Paolo Bonzini64058752012-05-08 16:51:49 +02001330 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001331 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001332
Kevin Wolf62392eb2015-04-24 16:38:02 +02001333 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1334 qemu_opts_absorb_qdict(opts, options, &local_err);
1335 if (local_err) {
1336 error_propagate(errp, local_err);
1337 ret = -EINVAL;
1338 goto fail_opts;
1339 }
1340
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001341 update_flags_from_options(&bs->open_flags, opts);
1342
Kevin Wolf62392eb2015-04-24 16:38:02 +02001343 driver_name = qemu_opt_get(opts, "driver");
1344 drv = bdrv_find_format(driver_name);
1345 assert(drv != NULL);
1346
Fam Zheng5a9347c2017-05-03 00:35:37 +08001347 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1348
1349 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1350 error_setg(errp,
1351 BDRV_OPT_FORCE_SHARE
1352 "=on can only be used with read-only images");
1353 ret = -EINVAL;
1354 goto fail_opts;
1355 }
1356
Kevin Wolf45673672013-04-22 17:48:40 +02001357 if (file != NULL) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001358 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001359 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001360 /*
1361 * Caution: while qdict_get_try_str() is fine, getting
1362 * non-string types would require more care. When @options
1363 * come from -blockdev or blockdev_add, its members are typed
1364 * according to the QAPI schema, but when they come from
1365 * -drive, they're all QString.
1366 */
Kevin Wolf45673672013-04-22 17:48:40 +02001367 filename = qdict_get_try_str(options, "filename");
1368 }
1369
Max Reitz4a008242017-04-13 18:06:24 +02001370 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001371 error_setg(errp, "The '%s' block driver requires a file name",
1372 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001373 ret = -EINVAL;
1374 goto fail_opts;
1375 }
1376
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001377 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1378 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001379
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001380 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001381
1382 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
Kevin Wolf8f94a6e2013-10-10 11:45:55 +02001383 error_setg(errp,
1384 !bs->read_only && bdrv_is_whitelisted(drv, true)
1385 ? "Driver '%s' can only be used for read-only devices"
1386 : "Driver '%s' is not whitelisted",
1387 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001388 ret = -ENOTSUP;
1389 goto fail_opts;
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001390 }
Kevin Wolf57915332010-04-14 15:24:50 +02001391
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001392 /* bdrv_new() and bdrv_close() make it so */
1393 assert(atomic_read(&bs->copy_on_read) == 0);
1394
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001395 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001396 if (!bs->read_only) {
1397 bdrv_enable_copy_on_read(bs);
1398 } else {
1399 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001400 ret = -EINVAL;
1401 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001402 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001403 }
1404
Kevin Wolf818584a2016-09-12 18:03:18 +02001405 discard = qemu_opt_get(opts, "discard");
1406 if (discard != NULL) {
1407 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1408 error_setg(errp, "Invalid discard option");
1409 ret = -EINVAL;
1410 goto fail_opts;
1411 }
1412 }
1413
Kevin Wolf692e01a2016-09-12 21:00:41 +02001414 detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1415 if (detect_zeroes) {
1416 BlockdevDetectZeroesOptions value =
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +02001417 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
Kevin Wolf692e01a2016-09-12 21:00:41 +02001418 detect_zeroes,
Kevin Wolf692e01a2016-09-12 21:00:41 +02001419 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1420 &local_err);
1421 if (local_err) {
1422 error_propagate(errp, local_err);
1423 ret = -EINVAL;
1424 goto fail_opts;
1425 }
1426
1427 if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1428 !(bs->open_flags & BDRV_O_UNMAP))
1429 {
1430 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1431 "without setting discard operation to unmap");
1432 ret = -EINVAL;
1433 goto fail_opts;
1434 }
1435
1436 bs->detect_zeroes = value;
1437 }
1438
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001439 if (filename != NULL) {
1440 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1441 } else {
1442 bs->filename[0] = '\0';
1443 }
Max Reitz91af7012014-07-18 20:24:56 +02001444 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001445
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001446 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001447 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001448 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001449
Kevin Wolf01a56502017-01-18 15:51:56 +01001450 assert(!drv->bdrv_file_open || file == NULL);
1451 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001452 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001453 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001454 }
1455
Kevin Wolf18edf282015-04-07 17:12:56 +02001456 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001457 return 0;
1458
Kevin Wolf18edf282015-04-07 17:12:56 +02001459fail_opts:
1460 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001461 return ret;
1462}
1463
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001464static QDict *parse_json_filename(const char *filename, Error **errp)
1465{
1466 QObject *options_obj;
1467 QDict *options;
1468 int ret;
1469
1470 ret = strstart(filename, "json:", &filename);
1471 assert(ret);
1472
Markus Armbruster5577fff2017-02-28 22:26:59 +01001473 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001474 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001475 /* Work around qobject_from_json() lossage TODO fix that */
1476 if (errp && !*errp) {
1477 error_setg(errp, "Could not parse the JSON options");
1478 return NULL;
1479 }
1480 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001481 return NULL;
1482 }
1483
Max Reitz7dc847e2018-02-24 16:40:29 +01001484 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001485 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001486 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001487 error_setg(errp, "Invalid JSON object given");
1488 return NULL;
1489 }
1490
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001491 qdict_flatten(options);
1492
1493 return options;
1494}
1495
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001496static void parse_json_protocol(QDict *options, const char **pfilename,
1497 Error **errp)
1498{
1499 QDict *json_options;
1500 Error *local_err = NULL;
1501
1502 /* Parse json: pseudo-protocol */
1503 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1504 return;
1505 }
1506
1507 json_options = parse_json_filename(*pfilename, &local_err);
1508 if (local_err) {
1509 error_propagate(errp, local_err);
1510 return;
1511 }
1512
1513 /* Options given in the filename have lower priority than options
1514 * specified directly */
1515 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001516 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001517 *pfilename = NULL;
1518}
1519
Kevin Wolf57915332010-04-14 15:24:50 +02001520/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001521 * Fills in default options for opening images and converts the legacy
1522 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001523 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1524 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001525 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001526static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001527 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001528{
1529 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001530 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001531 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001532 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001533 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001534
Markus Armbruster129c7d12017-03-30 19:43:12 +02001535 /*
1536 * Caution: while qdict_get_try_str() is fine, getting non-string
1537 * types would require more care. When @options come from
1538 * -blockdev or blockdev_add, its members are typed according to
1539 * the QAPI schema, but when they come from -drive, they're all
1540 * QString.
1541 */
Max Reitz53a29512015-03-19 14:53:16 -04001542 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001543 if (drvname) {
1544 drv = bdrv_find_format(drvname);
1545 if (!drv) {
1546 error_setg(errp, "Unknown driver '%s'", drvname);
1547 return -ENOENT;
1548 }
1549 /* If the user has explicitly specified the driver, this choice should
1550 * override the BDRV_O_PROTOCOL flag */
1551 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001552 }
1553
1554 if (protocol) {
1555 *flags |= BDRV_O_PROTOCOL;
1556 } else {
1557 *flags &= ~BDRV_O_PROTOCOL;
1558 }
1559
Kevin Wolf91a097e2015-05-08 17:49:53 +02001560 /* Translate cache options from flags into options */
1561 update_options_from_flags(*options, *flags);
1562
Kevin Wolff54120f2014-05-26 11:09:59 +02001563 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001564 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001565 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001566 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001567 parse_filename = true;
1568 } else {
1569 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1570 "the same time");
1571 return -EINVAL;
1572 }
1573 }
1574
1575 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001576 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001577 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001578
Max Reitz053e1572015-08-26 19:47:51 +02001579 if (!drvname && protocol) {
1580 if (filename) {
1581 drv = bdrv_find_protocol(filename, parse_filename, errp);
1582 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001583 return -EINVAL;
1584 }
Max Reitz053e1572015-08-26 19:47:51 +02001585
1586 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001587 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001588 } else {
1589 error_setg(errp, "Must specify either driver or file");
1590 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001591 }
1592 }
1593
Kevin Wolf17b005f2014-05-27 10:50:29 +02001594 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001595
1596 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001597 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001598 drv->bdrv_parse_filename(filename, *options, &local_err);
1599 if (local_err) {
1600 error_propagate(errp, local_err);
1601 return -EINVAL;
1602 }
1603
1604 if (!drv->bdrv_needs_filename) {
1605 qdict_del(*options, "filename");
1606 }
1607 }
1608
1609 return 0;
1610}
1611
Kevin Wolf3121fb42017-09-14 14:42:12 +02001612static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1613 uint64_t perm, uint64_t shared,
Fam Zhengc1cef672017-03-14 10:30:50 +08001614 GSList *ignore_children, Error **errp);
1615static void bdrv_child_abort_perm_update(BdrvChild *c);
1616static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1617
Kevin Wolf148eb132017-09-14 14:32:04 +02001618typedef struct BlockReopenQueueEntry {
1619 bool prepared;
1620 BDRVReopenState state;
1621 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1622} BlockReopenQueueEntry;
1623
1624/*
1625 * Return the flags that @bs will have after the reopens in @q have
1626 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1627 * return the current flags.
1628 */
1629static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1630{
1631 BlockReopenQueueEntry *entry;
1632
1633 if (q != NULL) {
1634 QSIMPLEQ_FOREACH(entry, q, entry) {
1635 if (entry->state.bs == bs) {
1636 return entry->state.flags;
1637 }
1638 }
1639 }
1640
1641 return bs->open_flags;
1642}
1643
1644/* Returns whether the image file can be written to after the reopen queue @q
1645 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02001646static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1647 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02001648{
1649 int flags = bdrv_reopen_get_flags(q, bs);
1650
1651 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1652}
1653
Max Reitzcc022142018-06-06 21:37:00 +02001654/*
1655 * Return whether the BDS can be written to. This is not necessarily
1656 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1657 * be written to but do not count as read-only images.
1658 */
1659bool bdrv_is_writable(BlockDriverState *bs)
1660{
1661 return bdrv_is_writable_after_reopen(bs, NULL);
1662}
1663
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001664static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001665 BdrvChild *c, const BdrvChildRole *role,
1666 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001667 uint64_t parent_perm, uint64_t parent_shared,
1668 uint64_t *nperm, uint64_t *nshared)
1669{
1670 if (bs->drv && bs->drv->bdrv_child_perm) {
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001671 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001672 parent_perm, parent_shared,
1673 nperm, nshared);
1674 }
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001675 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001676 if (child_bs && child_bs->force_share) {
1677 *nshared = BLK_PERM_ALL;
1678 }
1679}
1680
Kevin Wolf33a610c2016-12-15 13:04:20 +01001681/*
1682 * Check whether permissions on this node can be changed in a way that
1683 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1684 * permissions of all its parents. This involves checking whether all necessary
1685 * permission changes to child nodes can be performed.
1686 *
1687 * A call to this function must always be followed by a call to bdrv_set_perm()
1688 * or bdrv_abort_perm_update().
1689 */
Kevin Wolf3121fb42017-09-14 14:42:12 +02001690static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1691 uint64_t cumulative_perms,
Kevin Wolf46181122017-03-06 15:00:13 +01001692 uint64_t cumulative_shared_perms,
1693 GSList *ignore_children, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01001694{
1695 BlockDriver *drv = bs->drv;
1696 BdrvChild *c;
1697 int ret;
1698
1699 /* Write permissions never work with read-only images */
1700 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02001701 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01001702 {
1703 error_setg(errp, "Block node is read-only");
1704 return -EPERM;
1705 }
1706
1707 /* Check this node */
1708 if (!drv) {
1709 return 0;
1710 }
1711
1712 if (drv->bdrv_check_perm) {
1713 return drv->bdrv_check_perm(bs, cumulative_perms,
1714 cumulative_shared_perms, errp);
1715 }
1716
Kevin Wolf78e421c2016-12-20 23:25:12 +01001717 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01001718 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01001719 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01001720 return 0;
1721 }
1722
1723 /* Check all children */
1724 QLIST_FOREACH(c, &bs->children, next) {
1725 uint64_t cur_perm, cur_shared;
Kevin Wolf3121fb42017-09-14 14:42:12 +02001726 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001727 cumulative_perms, cumulative_shared_perms,
1728 &cur_perm, &cur_shared);
Kevin Wolf3121fb42017-09-14 14:42:12 +02001729 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
1730 ignore_children, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01001731 if (ret < 0) {
1732 return ret;
1733 }
1734 }
1735
1736 return 0;
1737}
1738
1739/*
1740 * Notifies drivers that after a previous bdrv_check_perm() call, the
1741 * permission update is not performed and any preparations made for it (e.g.
1742 * taken file locks) need to be undone.
1743 *
1744 * This function recursively notifies all child nodes.
1745 */
1746static void bdrv_abort_perm_update(BlockDriverState *bs)
1747{
1748 BlockDriver *drv = bs->drv;
1749 BdrvChild *c;
1750
1751 if (!drv) {
1752 return;
1753 }
1754
1755 if (drv->bdrv_abort_perm_update) {
1756 drv->bdrv_abort_perm_update(bs);
1757 }
1758
1759 QLIST_FOREACH(c, &bs->children, next) {
1760 bdrv_child_abort_perm_update(c);
1761 }
1762}
1763
1764static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1765 uint64_t cumulative_shared_perms)
1766{
1767 BlockDriver *drv = bs->drv;
1768 BdrvChild *c;
1769
1770 if (!drv) {
1771 return;
1772 }
1773
1774 /* Update this node */
1775 if (drv->bdrv_set_perm) {
1776 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
1777 }
1778
Kevin Wolf78e421c2016-12-20 23:25:12 +01001779 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01001780 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01001781 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01001782 return;
1783 }
1784
1785 /* Update all children */
1786 QLIST_FOREACH(c, &bs->children, next) {
1787 uint64_t cur_perm, cur_shared;
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001788 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001789 cumulative_perms, cumulative_shared_perms,
1790 &cur_perm, &cur_shared);
Kevin Wolf33a610c2016-12-15 13:04:20 +01001791 bdrv_child_set_perm(c, cur_perm, cur_shared);
1792 }
1793}
1794
1795static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
1796 uint64_t *shared_perm)
1797{
1798 BdrvChild *c;
1799 uint64_t cumulative_perms = 0;
1800 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
1801
1802 QLIST_FOREACH(c, &bs->parents, next_parent) {
1803 cumulative_perms |= c->perm;
1804 cumulative_shared_perms &= c->shared_perm;
1805 }
1806
1807 *perm = cumulative_perms;
1808 *shared_perm = cumulative_shared_perms;
1809}
1810
Kevin Wolfd0833192017-01-16 18:26:20 +01001811static char *bdrv_child_user_desc(BdrvChild *c)
1812{
1813 if (c->role->get_parent_desc) {
1814 return c->role->get_parent_desc(c);
1815 }
1816
1817 return g_strdup("another user");
1818}
1819
Fam Zheng51761962017-05-03 00:35:36 +08001820char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01001821{
1822 struct perm_name {
1823 uint64_t perm;
1824 const char *name;
1825 } permissions[] = {
1826 { BLK_PERM_CONSISTENT_READ, "consistent read" },
1827 { BLK_PERM_WRITE, "write" },
1828 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1829 { BLK_PERM_RESIZE, "resize" },
1830 { BLK_PERM_GRAPH_MOD, "change children" },
1831 { 0, NULL }
1832 };
1833
1834 char *result = g_strdup("");
1835 struct perm_name *p;
1836
1837 for (p = permissions; p->name; p++) {
1838 if (perm & p->perm) {
1839 char *old = result;
1840 result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1841 g_free(old);
1842 }
1843 }
1844
1845 return result;
1846}
1847
Kevin Wolf33a610c2016-12-15 13:04:20 +01001848/*
1849 * Checks whether a new reference to @bs can be added if the new user requires
Kevin Wolf46181122017-03-06 15:00:13 +01001850 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
1851 * set, the BdrvChild objects in this list are ignored in the calculations;
1852 * this allows checking permission updates for an existing reference.
Kevin Wolf33a610c2016-12-15 13:04:20 +01001853 *
1854 * Needs to be followed by a call to either bdrv_set_perm() or
1855 * bdrv_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02001856static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
1857 uint64_t new_used_perm,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001858 uint64_t new_shared_perm,
Kevin Wolf46181122017-03-06 15:00:13 +01001859 GSList *ignore_children, Error **errp)
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001860{
1861 BdrvChild *c;
Kevin Wolf33a610c2016-12-15 13:04:20 +01001862 uint64_t cumulative_perms = new_used_perm;
1863 uint64_t cumulative_shared_perms = new_shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001864
1865 /* There is no reason why anyone couldn't tolerate write_unchanged */
1866 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1867
1868 QLIST_FOREACH(c, &bs->parents, next_parent) {
Kevin Wolf46181122017-03-06 15:00:13 +01001869 if (g_slist_find(ignore_children, c)) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001870 continue;
1871 }
1872
Kevin Wolfd0833192017-01-16 18:26:20 +01001873 if ((new_used_perm & c->shared_perm) != new_used_perm) {
1874 char *user = bdrv_child_user_desc(c);
1875 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1876 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1877 "allow '%s' on %s",
1878 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1879 g_free(user);
1880 g_free(perm_names);
1881 return -EPERM;
1882 }
1883
1884 if ((c->perm & new_shared_perm) != c->perm) {
1885 char *user = bdrv_child_user_desc(c);
1886 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1887 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1888 "'%s' on %s",
1889 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1890 g_free(user);
1891 g_free(perm_names);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001892 return -EPERM;
1893 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01001894
1895 cumulative_perms |= c->perm;
1896 cumulative_shared_perms &= c->shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001897 }
1898
Kevin Wolf3121fb42017-09-14 14:42:12 +02001899 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
Kevin Wolf46181122017-03-06 15:00:13 +01001900 ignore_children, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01001901}
1902
1903/* Needs to be followed by a call to either bdrv_child_set_perm() or
1904 * bdrv_child_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02001905static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1906 uint64_t perm, uint64_t shared,
Fam Zhengc1cef672017-03-14 10:30:50 +08001907 GSList *ignore_children, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01001908{
Kevin Wolf46181122017-03-06 15:00:13 +01001909 int ret;
1910
1911 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
Kevin Wolf3121fb42017-09-14 14:42:12 +02001912 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
Kevin Wolf46181122017-03-06 15:00:13 +01001913 g_slist_free(ignore_children);
1914
1915 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01001916}
1917
Fam Zhengc1cef672017-03-14 10:30:50 +08001918static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
Kevin Wolf33a610c2016-12-15 13:04:20 +01001919{
1920 uint64_t cumulative_perms, cumulative_shared_perms;
1921
1922 c->perm = perm;
1923 c->shared_perm = shared;
1924
1925 bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
1926 &cumulative_shared_perms);
1927 bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
1928}
1929
Fam Zhengc1cef672017-03-14 10:30:50 +08001930static void bdrv_child_abort_perm_update(BdrvChild *c)
Kevin Wolf33a610c2016-12-15 13:04:20 +01001931{
1932 bdrv_abort_perm_update(c->bs);
1933}
1934
1935int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
1936 Error **errp)
1937{
1938 int ret;
1939
Kevin Wolf3121fb42017-09-14 14:42:12 +02001940 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01001941 if (ret < 0) {
1942 bdrv_child_abort_perm_update(c);
1943 return ret;
1944 }
1945
1946 bdrv_child_set_perm(c, perm, shared);
1947
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001948 return 0;
1949}
1950
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01001951#define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \
1952 | BLK_PERM_WRITE \
1953 | BLK_PERM_WRITE_UNCHANGED \
1954 | BLK_PERM_RESIZE)
1955#define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH)
1956
1957void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
1958 const BdrvChildRole *role,
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001959 BlockReopenQueue *reopen_queue,
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01001960 uint64_t perm, uint64_t shared,
1961 uint64_t *nperm, uint64_t *nshared)
1962{
1963 if (c == NULL) {
1964 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
1965 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
1966 return;
1967 }
1968
1969 *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
1970 (c->perm & DEFAULT_PERM_UNCHANGED);
1971 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
1972 (c->shared_perm & DEFAULT_PERM_UNCHANGED);
1973}
1974
Kevin Wolf6b1a0442016-12-19 15:21:48 +01001975void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
1976 const BdrvChildRole *role,
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001977 BlockReopenQueue *reopen_queue,
Kevin Wolf6b1a0442016-12-19 15:21:48 +01001978 uint64_t perm, uint64_t shared,
1979 uint64_t *nperm, uint64_t *nshared)
1980{
1981 bool backing = (role == &child_backing);
1982 assert(role == &child_backing || role == &child_file);
1983
1984 if (!backing) {
Kevin Wolf5fbfabd2017-11-30 17:38:43 +01001985 int flags = bdrv_reopen_get_flags(reopen_queue, bs);
1986
Kevin Wolf6b1a0442016-12-19 15:21:48 +01001987 /* Apart from the modifications below, the same permissions are
1988 * forwarded and left alone as for filters */
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001989 bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
1990 &perm, &shared);
Kevin Wolf6b1a0442016-12-19 15:21:48 +01001991
1992 /* Format drivers may touch metadata even if the guest doesn't write */
Max Reitzcc022142018-06-06 21:37:00 +02001993 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
Kevin Wolf6b1a0442016-12-19 15:21:48 +01001994 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
1995 }
1996
1997 /* bs->file always needs to be consistent because of the metadata. We
1998 * can never allow other users to resize or write to it. */
Kevin Wolf5fbfabd2017-11-30 17:38:43 +01001999 if (!(flags & BDRV_O_NO_IO)) {
2000 perm |= BLK_PERM_CONSISTENT_READ;
2001 }
Kevin Wolf6b1a0442016-12-19 15:21:48 +01002002 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2003 } else {
2004 /* We want consistent read from backing files if the parent needs it.
2005 * No other operations are performed on backing files. */
2006 perm &= BLK_PERM_CONSISTENT_READ;
2007
2008 /* If the parent can deal with changing data, we're okay with a
2009 * writable and resizable backing file. */
2010 /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
2011 if (shared & BLK_PERM_WRITE) {
2012 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2013 } else {
2014 shared = 0;
2015 }
2016
2017 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2018 BLK_PERM_WRITE_UNCHANGED;
2019 }
2020
Kevin Wolf9c5e6592017-05-04 18:52:40 +02002021 if (bs->open_flags & BDRV_O_INACTIVE) {
2022 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2023 }
2024
Kevin Wolf6b1a0442016-12-19 15:21:48 +01002025 *nperm = perm;
2026 *nshared = shared;
2027}
2028
Kevin Wolf8ee03992017-03-06 13:45:28 +01002029static void bdrv_replace_child_noperm(BdrvChild *child,
2030 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002031{
2032 BlockDriverState *old_bs = child->bs;
Kevin Wolf0152bf42017-12-07 13:03:13 +01002033 int i;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002034
Fam Zhengbb2614e2017-04-07 14:54:10 +08002035 if (old_bs && new_bs) {
2036 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2037 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002038 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002039 /* Detach first so that the recursive drain sections coming from @child
2040 * are already gone and we only end the drain sections that came from
2041 * elsewhere. */
2042 if (child->role->detach) {
2043 child->role->detach(child);
2044 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002045 if (old_bs->quiesce_counter && child->role->drained_end) {
Kevin Wolf0f122642018-03-28 18:29:18 +02002046 int num = old_bs->quiesce_counter;
2047 if (child->role->parent_is_bds) {
2048 num -= bdrv_drain_all_count;
2049 }
2050 assert(num >= 0);
2051 for (i = 0; i < num; i++) {
Kevin Wolf0152bf42017-12-07 13:03:13 +01002052 child->role->drained_end(child);
2053 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002054 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002055 QLIST_REMOVE(child, next_parent);
2056 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002057
2058 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002059
2060 if (new_bs) {
2061 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2062 if (new_bs->quiesce_counter && child->role->drained_begin) {
Kevin Wolf0f122642018-03-28 18:29:18 +02002063 int num = new_bs->quiesce_counter;
2064 if (child->role->parent_is_bds) {
2065 num -= bdrv_drain_all_count;
2066 }
2067 assert(num >= 0);
2068 for (i = 0; i < num; i++) {
Kevin Wolf0152bf42017-12-07 13:03:13 +01002069 child->role->drained_begin(child);
2070 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002071 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002072
Kevin Wolfd736f112017-12-18 16:05:48 +01002073 /* Attach only after starting new drained sections, so that recursive
2074 * drain sections coming from @child don't get an extra .drained_begin
2075 * callback. */
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002076 if (child->role->attach) {
2077 child->role->attach(child);
2078 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002079 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002080}
2081
Kevin Wolf466787f2017-03-08 14:44:07 +01002082/*
2083 * Updates @child to change its reference to point to @new_bs, including
2084 * checking and applying the necessary permisson updates both to the old node
2085 * and to @new_bs.
2086 *
2087 * NULL is passed as @new_bs for removing the reference before freeing @child.
2088 *
2089 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2090 * function uses bdrv_set_perm() to update the permissions according to the new
2091 * reference that @new_bs gets.
2092 */
2093static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolf8ee03992017-03-06 13:45:28 +01002094{
2095 BlockDriverState *old_bs = child->bs;
2096 uint64_t perm, shared_perm;
2097
Kevin Wolf8aecf1d2017-08-03 17:02:57 +02002098 bdrv_replace_child_noperm(child, new_bs);
2099
Kevin Wolf8ee03992017-03-06 13:45:28 +01002100 if (old_bs) {
2101 /* Update permissions for old node. This is guaranteed to succeed
2102 * because we're just taking a parent away, so we're loosening
2103 * restrictions. */
2104 bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
Kevin Wolf3121fb42017-09-14 14:42:12 +02002105 bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
Kevin Wolf8ee03992017-03-06 13:45:28 +01002106 bdrv_set_perm(old_bs, perm, shared_perm);
2107 }
2108
Kevin Wolf8ee03992017-03-06 13:45:28 +01002109 if (new_bs) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002110 bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
Kevin Wolff54120f2014-05-26 11:09:59 +02002111 bdrv_set_perm(new_bs, perm, shared_perm);
Kevin Wolff54120f2014-05-26 11:09:59 +02002112 }
2113}
2114
Kevin Wolff21d96d2016-03-08 13:47:46 +01002115BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2116 const char *child_name,
Kevin Wolf36fe1332016-05-17 14:51:55 +02002117 const BdrvChildRole *child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002118 uint64_t perm, uint64_t shared_perm,
2119 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02002120{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002121 BdrvChild *child;
2122 int ret;
2123
Kevin Wolf3121fb42017-09-14 14:42:12 +02002124 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002125 if (ret < 0) {
Kevin Wolf33a610c2016-12-15 13:04:20 +01002126 bdrv_abort_perm_update(child_bs);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002127 return NULL;
2128 }
2129
2130 child = g_new(BdrvChild, 1);
Kevin Wolfdf581792015-06-15 11:53:47 +02002131 *child = (BdrvChild) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002132 .bs = NULL,
2133 .name = g_strdup(child_name),
2134 .role = child_role,
2135 .perm = perm,
2136 .shared_perm = shared_perm,
2137 .opaque = opaque,
Kevin Wolfdf581792015-06-15 11:53:47 +02002138 };
2139
Kevin Wolf33a610c2016-12-15 13:04:20 +01002140 /* This performs the matching bdrv_set_perm() for the above check. */
Kevin Wolf466787f2017-03-08 14:44:07 +01002141 bdrv_replace_child(child, child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002142
2143 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02002144}
2145
Wen Congyang98292c62016-05-10 15:36:38 +08002146BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2147 BlockDriverState *child_bs,
2148 const char *child_name,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002149 const BdrvChildRole *child_role,
2150 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002151{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002152 BdrvChild *child;
Kevin Wolff68c5982016-12-20 15:51:12 +01002153 uint64_t perm, shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002154
Kevin Wolff68c5982016-12-20 15:51:12 +01002155 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2156
2157 assert(parent_bs->drv);
Fam Zhengbb2614e2017-04-07 14:54:10 +08002158 assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002159 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002160 perm, shared_perm, &perm, &shared_perm);
Kevin Wolff68c5982016-12-20 15:51:12 +01002161
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002162 child = bdrv_root_attach_child(child_bs, child_name, child_role,
Kevin Wolff68c5982016-12-20 15:51:12 +01002163 perm, shared_perm, parent_bs, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002164 if (child == NULL) {
2165 return NULL;
2166 }
2167
Kevin Wolff21d96d2016-03-08 13:47:46 +01002168 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2169 return child;
2170}
2171
Kevin Wolf3f09bfb2015-09-15 11:58:23 +02002172static void bdrv_detach_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002173{
Kevin Wolff21d96d2016-03-08 13:47:46 +01002174 if (child->next.le_prev) {
2175 QLIST_REMOVE(child, next);
2176 child->next.le_prev = NULL;
2177 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002178
Kevin Wolf466787f2017-03-08 14:44:07 +01002179 bdrv_replace_child(child, NULL);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002180
Kevin Wolf260fecf2015-04-27 13:46:22 +02002181 g_free(child->name);
Kevin Wolf33a60402015-06-15 13:51:04 +02002182 g_free(child);
2183}
2184
Kevin Wolff21d96d2016-03-08 13:47:46 +01002185void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002186{
Kevin Wolf779020c2015-10-13 14:09:44 +02002187 BlockDriverState *child_bs;
2188
Kevin Wolff21d96d2016-03-08 13:47:46 +01002189 child_bs = child->bs;
2190 bdrv_detach_child(child);
2191 bdrv_unref(child_bs);
2192}
2193
2194void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2195{
Kevin Wolf779020c2015-10-13 14:09:44 +02002196 if (child == NULL) {
2197 return;
2198 }
Kevin Wolf33a60402015-06-15 13:51:04 +02002199
2200 if (child->bs->inherits_from == parent) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002201 BdrvChild *c;
2202
2203 /* Remove inherits_from only when the last reference between parent and
2204 * child->bs goes away. */
2205 QLIST_FOREACH(c, &parent->children, next) {
2206 if (c != child && c->bs == child->bs) {
2207 break;
2208 }
2209 }
2210 if (c == NULL) {
2211 child->bs->inherits_from = NULL;
2212 }
Kevin Wolf33a60402015-06-15 13:51:04 +02002213 }
2214
Kevin Wolff21d96d2016-03-08 13:47:46 +01002215 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02002216}
2217
Kevin Wolf5c8cab42016-02-24 15:13:35 +01002218
2219static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2220{
2221 BdrvChild *c;
2222 QLIST_FOREACH(c, &bs->parents, next_parent) {
2223 if (c->role->change_media) {
2224 c->role->change_media(c, load);
2225 }
2226 }
2227}
2228
2229static void bdrv_parent_cb_resize(BlockDriverState *bs)
2230{
2231 BdrvChild *c;
2232 QLIST_FOREACH(c, &bs->parents, next_parent) {
2233 if (c->role->resize) {
2234 c->role->resize(c);
2235 }
2236 }
2237}
2238
Kevin Wolf5db15a52015-09-14 15:33:33 +02002239/*
2240 * Sets the backing file link of a BDS. A new reference is created; callers
2241 * which don't need their own reference any more must call bdrv_unref().
2242 */
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002243void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2244 Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08002245{
Kevin Wolf5db15a52015-09-14 15:33:33 +02002246 if (backing_hd) {
2247 bdrv_ref(backing_hd);
2248 }
Fam Zheng8d24cce2014-05-23 21:29:45 +08002249
Kevin Wolf760e0062015-06-17 14:55:21 +02002250 if (bs->backing) {
Kevin Wolf5db15a52015-09-14 15:33:33 +02002251 bdrv_unref_child(bs, bs->backing);
Fam Zheng826b6ca2014-05-23 21:29:47 +08002252 }
2253
Fam Zheng8d24cce2014-05-23 21:29:45 +08002254 if (!backing_hd) {
Kevin Wolf760e0062015-06-17 14:55:21 +02002255 bs->backing = NULL;
Fam Zheng8d24cce2014-05-23 21:29:45 +08002256 goto out;
2257 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002258
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002259 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002260 errp);
2261 if (!bs->backing) {
2262 bdrv_unref(backing_hd);
2263 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08002264
Kevin Wolf9e7e9402017-03-09 11:45:39 +01002265 bdrv_refresh_filename(bs);
2266
Fam Zheng8d24cce2014-05-23 21:29:45 +08002267out:
Kevin Wolf3baca892014-07-16 17:48:16 +02002268 bdrv_refresh_limits(bs, NULL);
Fam Zheng8d24cce2014-05-23 21:29:45 +08002269}
2270
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002271/*
2272 * Opens the backing file for a BlockDriverState if not yet open
2273 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002274 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2275 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2276 * itself, all options starting with "${bdref_key}." are considered part of the
2277 * BlockdevRef.
2278 *
2279 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002280 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002281int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2282 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02002283{
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002284 char *backing_filename = g_malloc0(PATH_MAX);
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002285 char *bdref_key_dot;
2286 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02002287 int ret = 0;
Fam Zheng8d24cce2014-05-23 21:29:45 +08002288 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002289 QDict *options;
2290 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002291 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002292
Kevin Wolf760e0062015-06-17 14:55:21 +02002293 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002294 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002295 }
2296
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002297 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002298 if (parent_options == NULL) {
2299 tmp_parent_options = qdict_new();
2300 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002301 }
2302
Paolo Bonzini9156df12012-10-18 16:49:17 +02002303 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002304
2305 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2306 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2307 g_free(bdref_key_dot);
2308
Markus Armbruster129c7d12017-03-30 19:43:12 +02002309 /*
2310 * Caution: while qdict_get_try_str() is fine, getting non-string
2311 * types would require more care. When @parent_options come from
2312 * -blockdev or blockdev_add, its members are typed according to
2313 * the QAPI schema, but when they come from -drive, they're all
2314 * QString.
2315 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002316 reference = qdict_get_try_str(parent_options, bdref_key);
2317 if (reference || qdict_haskey(options, "file.filename")) {
Kevin Wolf1cb6f502013-04-12 20:27:07 +02002318 backing_filename[0] = '\0';
2319 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002320 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002321 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08002322 } else {
Max Reitz9f074292014-11-26 17:20:26 +01002323 bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
2324 &local_err);
2325 if (local_err) {
2326 ret = -EINVAL;
2327 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002328 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01002329 goto free_exit;
2330 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02002331 }
2332
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002333 if (!bs->drv || !bs->drv->supports_backing) {
2334 ret = -EINVAL;
2335 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002336 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002337 goto free_exit;
2338 }
2339
Peter Krempa6bff5972017-10-12 16:14:10 +02002340 if (!reference &&
2341 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002342 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02002343 }
2344
Max Reitz5b363932016-05-17 16:41:31 +02002345 backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2346 reference, options, 0, bs, &child_backing,
2347 errp);
2348 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02002349 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01002350 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02002351 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002352 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002353 }
sochin.jiang5ce6bfe2017-06-26 19:04:24 +08002354 bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
Kevin Wolfdf581792015-06-15 11:53:47 +02002355
Kevin Wolf5db15a52015-09-14 15:33:33 +02002356 /* Hook up the backing file link; drop our reference, bs owns the
2357 * backing_hd reference now */
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002358 bdrv_set_backing_hd(bs, backing_hd, &local_err);
Kevin Wolf5db15a52015-09-14 15:33:33 +02002359 bdrv_unref(backing_hd);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002360 if (local_err) {
Fam Zheng8cd1a3e2017-03-17 09:56:30 +08002361 error_propagate(errp, local_err);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002362 ret = -EINVAL;
2363 goto free_exit;
2364 }
Peter Feinerd80ac652014-01-08 19:43:25 +00002365
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002366 qdict_del(parent_options, bdref_key);
2367
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002368free_exit:
2369 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002370 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002371 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002372}
2373
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01002374static BlockDriverState *
2375bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2376 BlockDriverState *parent, const BdrvChildRole *child_role,
2377 bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01002378{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01002379 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01002380 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01002381 char *bdref_key_dot;
2382 const char *reference;
2383
Kevin Wolfdf581792015-06-15 11:53:47 +02002384 assert(child_role != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01002385
Max Reitzda557aa2013-12-20 19:28:11 +01002386 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2387 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2388 g_free(bdref_key_dot);
2389
Markus Armbruster129c7d12017-03-30 19:43:12 +02002390 /*
2391 * Caution: while qdict_get_try_str() is fine, getting non-string
2392 * types would require more care. When @options come from
2393 * -blockdev or blockdev_add, its members are typed according to
2394 * the QAPI schema, but when they come from -drive, they're all
2395 * QString.
2396 */
Max Reitzda557aa2013-12-20 19:28:11 +01002397 reference = qdict_get_try_str(options, bdref_key);
2398 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002399 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01002400 error_setg(errp, "A block device must be specified for \"%s\"",
2401 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01002402 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002403 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01002404 goto done;
2405 }
2406
Max Reitz5b363932016-05-17 16:41:31 +02002407 bs = bdrv_open_inherit(filename, reference, image_options, 0,
2408 parent, child_role, errp);
2409 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02002410 goto done;
2411 }
2412
Max Reitzda557aa2013-12-20 19:28:11 +01002413done:
2414 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01002415 return bs;
2416}
2417
2418/*
2419 * Opens a disk image whose options are given as BlockdevRef in another block
2420 * device's options.
2421 *
2422 * If allow_none is true, no image will be opened if filename is false and no
2423 * BlockdevRef is given. NULL will be returned, but errp remains unset.
2424 *
2425 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2426 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2427 * itself, all options starting with "${bdref_key}." are considered part of the
2428 * BlockdevRef.
2429 *
2430 * The BlockdevRef will be removed from the options QDict.
2431 */
2432BdrvChild *bdrv_open_child(const char *filename,
2433 QDict *options, const char *bdref_key,
2434 BlockDriverState *parent,
2435 const BdrvChildRole *child_role,
2436 bool allow_none, Error **errp)
2437{
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002438 BdrvChild *c;
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01002439 BlockDriverState *bs;
2440
2441 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2442 allow_none, errp);
2443 if (bs == NULL) {
2444 return NULL;
2445 }
2446
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002447 c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2448 if (!c) {
2449 bdrv_unref(bs);
2450 return NULL;
2451 }
2452
2453 return c;
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002454}
2455
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01002456/* TODO Future callers may need to specify parent/child_role in order for
2457 * option inheritance to work. Existing callers use it for the root node. */
2458BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2459{
2460 BlockDriverState *bs = NULL;
2461 Error *local_err = NULL;
2462 QObject *obj = NULL;
2463 QDict *qdict = NULL;
2464 const char *reference = NULL;
2465 Visitor *v = NULL;
2466
2467 if (ref->type == QTYPE_QSTRING) {
2468 reference = ref->u.reference;
2469 } else {
2470 BlockdevOptions *options = &ref->u.definition;
2471 assert(ref->type == QTYPE_QDICT);
2472
2473 v = qobject_output_visitor_new(&obj);
2474 visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2475 if (local_err) {
2476 error_propagate(errp, local_err);
2477 goto fail;
2478 }
2479 visit_complete(v, &obj);
2480
Max Reitz7dc847e2018-02-24 16:40:29 +01002481 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01002482 qdict_flatten(qdict);
2483
2484 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2485 * compatibility with other callers) rather than what we want as the
2486 * real defaults. Apply the defaults here instead. */
2487 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2488 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2489 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
2490 }
2491
2492 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2493 obj = NULL;
2494
2495fail:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002496 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01002497 visit_free(v);
2498 return bs;
2499}
2500
Max Reitz66836182016-05-17 16:41:27 +02002501static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
2502 int flags,
2503 QDict *snapshot_options,
2504 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02002505{
2506 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002507 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02002508 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08002509 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05002510 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01002511 Error *local_err = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02002512 int ret;
2513
2514 /* if snapshot, we create a temporary backing file and open it
2515 instead of opening 'filename' directly */
2516
2517 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02002518 total_size = bdrv_getlength(bs);
2519 if (total_size < 0) {
2520 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002521 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02002522 }
Kevin Wolfb9988752014-04-03 12:09:34 +02002523
2524 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002525 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02002526 if (ret < 0) {
2527 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002528 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02002529 }
2530
Max Reitzef810432014-12-02 18:32:42 +01002531 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08002532 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01002533 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01002534 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08002535 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02002536 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01002537 error_prepend(errp, "Could not create temporary overlay '%s': ",
2538 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002539 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02002540 }
2541
Kevin Wolf73176be2016-03-07 13:02:15 +01002542 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05002543 qdict_put_str(snapshot_options, "file.driver", "file");
2544 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
2545 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02002546
Max Reitz5b363932016-05-17 16:41:31 +02002547 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01002548 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02002549 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002550 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02002551 }
2552
Eric Blakeff6ed712017-04-27 16:58:18 -05002553 /* bdrv_append() consumes a strong reference to bs_snapshot
2554 * (i.e. it will call bdrv_unref() on it) even on error, so in
2555 * order to be able to return one, we have to increase
2556 * bs_snapshot's refcount here */
Max Reitz66836182016-05-17 16:41:27 +02002557 bdrv_ref(bs_snapshot);
Kevin Wolfb2c28322017-02-20 12:46:42 +01002558 bdrv_append(bs_snapshot, bs, &local_err);
2559 if (local_err) {
2560 error_propagate(errp, local_err);
Eric Blakeff6ed712017-04-27 16:58:18 -05002561 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01002562 goto out;
2563 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002564
2565out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002566 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002567 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05002568 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02002569}
2570
Max Reitzda557aa2013-12-20 19:28:11 +01002571/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002572 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01002573 *
2574 * options is a QDict of options to pass to the block drivers, or NULL for an
2575 * empty set of options. The reference to the QDict belongs to the block layer
2576 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002577 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01002578 *
2579 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2580 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01002581 *
2582 * The reference parameter may be used to specify an existing block device which
2583 * should be opened. If specified, neither options nor a filename may be given,
2584 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002585 */
Max Reitz5b363932016-05-17 16:41:31 +02002586static BlockDriverState *bdrv_open_inherit(const char *filename,
2587 const char *reference,
2588 QDict *options, int flags,
2589 BlockDriverState *parent,
2590 const BdrvChildRole *child_role,
2591 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00002592{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002593 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002594 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02002595 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02002596 BlockDriver *drv = NULL;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02002597 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02002598 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002599 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01002600 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02002601 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00002602
Kevin Wolff3930ed2015-04-08 13:43:47 +02002603 assert(!child_role || !flags);
2604 assert(!child_role == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01002605
Max Reitzddf56362014-02-18 18:33:06 +01002606 if (reference) {
2607 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002608 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01002609
Max Reitzddf56362014-02-18 18:33:06 +01002610 if (filename || options_non_empty) {
2611 error_setg(errp, "Cannot reference an existing block device with "
2612 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02002613 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01002614 }
2615
2616 bs = bdrv_lookup_bs(reference, reference, errp);
2617 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02002618 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01002619 }
Kevin Wolf76b22322016-04-04 17:11:13 +02002620
Max Reitzddf56362014-02-18 18:33:06 +01002621 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02002622 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01002623 }
2624
Max Reitz5b363932016-05-17 16:41:31 +02002625 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01002626
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01002627 /* NULL means an empty set of options */
2628 if (options == NULL) {
2629 options = qdict_new();
2630 }
2631
Kevin Wolf145f5982015-05-08 16:15:03 +02002632 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002633 parse_json_protocol(options, &filename, &local_err);
2634 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002635 goto fail;
2636 }
2637
Kevin Wolf145f5982015-05-08 16:15:03 +02002638 bs->explicit_options = qdict_clone_shallow(options);
2639
Kevin Wolff3930ed2015-04-08 13:43:47 +02002640 if (child_role) {
Kevin Wolfbddcec32015-04-09 18:47:50 +02002641 bs->inherits_from = parent;
Kevin Wolf8e2160e2015-04-29 17:29:39 +02002642 child_role->inherit_options(&flags, options,
2643 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02002644 }
2645
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002646 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Kevin Wolf462f5bc2014-05-26 11:39:55 +02002647 if (local_err) {
2648 goto fail;
2649 }
2650
Markus Armbruster129c7d12017-03-30 19:43:12 +02002651 /*
2652 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2653 * Caution: getting a boolean member of @options requires care.
2654 * When @options come from -blockdev or blockdev_add, members are
2655 * typed according to the QAPI schema, but when they come from
2656 * -drive, they're all QString.
2657 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03002658 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2659 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2660 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2661 } else {
2662 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03002663 }
2664
2665 if (flags & BDRV_O_SNAPSHOT) {
2666 snapshot_options = qdict_new();
2667 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
2668 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03002669 /* Let bdrv_backing_options() override "read-only" */
2670 qdict_del(options, BDRV_OPT_READ_ONLY);
Alberto Garcia14499ea2016-09-15 17:53:00 +03002671 bdrv_backing_options(&flags, options, flags, options);
2672 }
2673
Kevin Wolf62392eb2015-04-24 16:38:02 +02002674 bs->open_flags = flags;
2675 bs->options = options;
2676 options = qdict_clone_shallow(options);
2677
Kevin Wolf76c591b2014-06-04 14:19:44 +02002678 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02002679 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02002680 drvname = qdict_get_try_str(options, "driver");
2681 if (drvname) {
2682 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02002683 if (!drv) {
2684 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02002685 goto fail;
2686 }
2687 }
2688
2689 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02002690
Markus Armbruster129c7d12017-03-30 19:43:12 +02002691 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02002692 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01002693 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
2694 (backing && *backing == '\0'))
2695 {
Max Reitz4f7be282018-02-24 16:40:33 +01002696 if (backing) {
2697 warn_report("Use of \"backing\": \"\" is deprecated; "
2698 "use \"backing\": null instead");
2699 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02002700 flags |= BDRV_O_NO_BACKING;
2701 qdict_del(options, "backing");
2702 }
2703
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002704 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002705 * probing, the block drivers will do their own bdrv_open_child() for the
2706 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02002707 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002708 BlockDriverState *file_bs;
2709
2710 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
2711 &child_file, true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02002712 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01002713 goto fail;
2714 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002715 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01002716 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2717 * looking at the header to guess the image format. This works even
2718 * in cases where a guest would not see a consistent state. */
2719 file = blk_new(0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01002720 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002721 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01002722 if (local_err) {
2723 goto fail;
2724 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002725
Eric Blake46f5ac22017-04-27 16:58:17 -05002726 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002727 }
Max Reitz5469a2a2014-02-18 18:33:10 +01002728 }
2729
Kevin Wolf76c591b2014-06-04 14:19:44 +02002730 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01002731 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02002732 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02002733 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02002734 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02002735 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01002736 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02002737 /*
2738 * This option update would logically belong in bdrv_fill_options(),
2739 * but we first need to open bs->file for the probing to work, while
2740 * opening bs->file already requires the (mostly) final set of options
2741 * so that cache mode etc. can be inherited.
2742 *
2743 * Adding the driver later is somewhat ugly, but it's not an option
2744 * that would ever be inherited, so it's correct. We just need to make
2745 * sure to update both bs->options (which has the full effective
2746 * options for bs) and options (which has file.* already removed).
2747 */
Eric Blake46f5ac22017-04-27 16:58:17 -05002748 qdict_put_str(bs->options, "driver", drv->format_name);
2749 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02002750 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02002751 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02002752 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01002753 }
2754
Max Reitz53a29512015-03-19 14:53:16 -04002755 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
2756 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
2757 /* file must be NULL if a protocol BDS is about to be created
2758 * (the inverse results in an error message from bdrv_open_common()) */
2759 assert(!(flags & BDRV_O_PROTOCOL) || !file);
2760
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002761 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01002762 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002763 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02002764 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01002765 }
2766
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002767 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002768 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01002769 file = NULL;
2770 }
2771
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002772 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02002773 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002774 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002775 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002776 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002777 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002778 }
2779
Max Reitz91af7012014-07-18 20:24:56 +02002780 bdrv_refresh_filename(bs);
2781
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002782 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01002783 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002784 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01002785 if (flags & BDRV_O_PROTOCOL) {
2786 error_setg(errp, "Block protocol '%s' doesn't support the option "
2787 "'%s'", drv->format_name, entry->key);
2788 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01002789 error_setg(errp,
2790 "Block format '%s' does not support the option '%s'",
2791 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01002792 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002793
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002794 goto close_and_fail;
2795 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002796
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01002797 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002798
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002799 qobject_unref(options);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02002800
2801 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2802 * temporary snapshot afterwards. */
2803 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02002804 BlockDriverState *snapshot_bs;
2805 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
2806 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01002807 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02002808 if (local_err) {
2809 goto close_and_fail;
2810 }
Max Reitz5b363932016-05-17 16:41:31 +02002811 /* We are not going to return bs but the overlay on top of it
2812 * (snapshot_bs); thus, we have to drop the strong reference to bs
2813 * (which we obtained by calling bdrv_new()). bs will not be deleted,
2814 * though, because the overlay still has a reference to it. */
2815 bdrv_unref(bs);
2816 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02002817 }
2818
Max Reitz5b363932016-05-17 16:41:31 +02002819 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002820
Kevin Wolf8bfea152014-04-11 19:16:36 +02002821fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002822 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002823 qobject_unref(snapshot_options);
2824 qobject_unref(bs->explicit_options);
2825 qobject_unref(bs->options);
2826 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01002827 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03002828 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02002829 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03002830 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02002831 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01002832
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002833close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02002834 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002835 qobject_unref(snapshot_options);
2836 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03002837 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02002838 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002839}
2840
Max Reitz5b363932016-05-17 16:41:31 +02002841BlockDriverState *bdrv_open(const char *filename, const char *reference,
2842 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02002843{
Max Reitz5b363932016-05-17 16:41:31 +02002844 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitzce343772015-08-26 19:47:50 +02002845 NULL, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02002846}
2847
Jeff Codye971aa12012-09-20 15:13:19 -04002848/*
2849 * Adds a BlockDriverState to a simple queue for an atomic, transactional
2850 * reopen of multiple devices.
2851 *
2852 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2853 * already performed, or alternatively may be NULL a new BlockReopenQueue will
2854 * be created and initialized. This newly created BlockReopenQueue should be
2855 * passed back in for subsequent calls that are intended to be of the same
2856 * atomic 'set'.
2857 *
2858 * bs is the BlockDriverState to add to the reopen queue.
2859 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02002860 * options contains the changed options for the associated bs
2861 * (the BlockReopenQueue takes ownership)
2862 *
Jeff Codye971aa12012-09-20 15:13:19 -04002863 * flags contains the open flags for the associated bs
2864 *
2865 * returns a pointer to bs_queue, which is either the newly allocated
2866 * bs_queue, or the existing bs_queue being used.
2867 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01002868 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04002869 */
Kevin Wolf28518102015-05-08 17:07:31 +02002870static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
2871 BlockDriverState *bs,
2872 QDict *options,
2873 int flags,
2874 const BdrvChildRole *role,
2875 QDict *parent_options,
2876 int parent_flags)
Jeff Codye971aa12012-09-20 15:13:19 -04002877{
2878 assert(bs != NULL);
2879
2880 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02002881 BdrvChild *child;
Kevin Wolf145f5982015-05-08 16:15:03 +02002882 QDict *old_options, *explicit_options;
Kevin Wolf67251a32015-04-09 18:54:04 +02002883
Kevin Wolf1a63a902017-12-06 20:24:44 +01002884 /* Make sure that the caller remembered to use a drained section. This is
2885 * important to avoid graph changes between the recursive queuing here and
2886 * bdrv_reopen_multiple(). */
2887 assert(bs->quiesce_counter > 0);
2888
Jeff Codye971aa12012-09-20 15:13:19 -04002889 if (bs_queue == NULL) {
2890 bs_queue = g_new0(BlockReopenQueue, 1);
2891 QSIMPLEQ_INIT(bs_queue);
2892 }
2893
Kevin Wolf4d2cb092015-04-10 17:50:50 +02002894 if (!options) {
2895 options = qdict_new();
2896 }
2897
Alberto Garcia5b7ba052016-09-15 17:53:03 +03002898 /* Check if this BlockDriverState is already in the queue */
2899 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2900 if (bs == bs_entry->state.bs) {
2901 break;
2902 }
2903 }
2904
Kevin Wolf28518102015-05-08 17:07:31 +02002905 /*
2906 * Precedence of options:
2907 * 1. Explicitly passed in options (highest)
Kevin Wolf91a097e2015-05-08 17:49:53 +02002908 * 2. Set in flags (only for top level)
Kevin Wolf145f5982015-05-08 16:15:03 +02002909 * 3. Retained from explicitly set options of bs
Kevin Wolf8e2160e2015-04-29 17:29:39 +02002910 * 4. Inherited from parent node
Kevin Wolf28518102015-05-08 17:07:31 +02002911 * 5. Retained from effective options of bs
2912 */
2913
Kevin Wolf91a097e2015-05-08 17:49:53 +02002914 if (!parent_options) {
2915 /*
2916 * Any setting represented by flags is always updated. If the
2917 * corresponding QDict option is set, it takes precedence. Otherwise
2918 * the flag is translated into a QDict option. The old setting of bs is
2919 * not considered.
2920 */
2921 update_options_from_flags(options, flags);
2922 }
2923
Kevin Wolf145f5982015-05-08 16:15:03 +02002924 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia5b7ba052016-09-15 17:53:03 +03002925 if (bs_entry) {
2926 old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
2927 } else {
2928 old_options = qdict_clone_shallow(bs->explicit_options);
2929 }
Kevin Wolf145f5982015-05-08 16:15:03 +02002930 bdrv_join_options(bs, options, old_options);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002931 qobject_unref(old_options);
Kevin Wolf145f5982015-05-08 16:15:03 +02002932
2933 explicit_options = qdict_clone_shallow(options);
2934
Kevin Wolf28518102015-05-08 17:07:31 +02002935 /* Inherit from parent node */
2936 if (parent_options) {
Fam Zheng1a529732018-03-13 22:20:02 +08002937 QemuOpts *opts;
2938 QDict *options_copy;
Kevin Wolf28518102015-05-08 17:07:31 +02002939 assert(!flags);
Kevin Wolf8e2160e2015-04-29 17:29:39 +02002940 role->inherit_options(&flags, options, parent_flags, parent_options);
Fam Zheng1a529732018-03-13 22:20:02 +08002941 options_copy = qdict_clone_shallow(options);
2942 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2943 qemu_opts_absorb_qdict(opts, options_copy, NULL);
2944 update_flags_from_options(&flags, opts);
2945 qemu_opts_del(opts);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002946 qobject_unref(options_copy);
Kevin Wolf28518102015-05-08 17:07:31 +02002947 }
2948
2949 /* Old values are used for options that aren't set yet */
Kevin Wolf4d2cb092015-04-10 17:50:50 +02002950 old_options = qdict_clone_shallow(bs->options);
Kevin Wolfcddff5b2015-11-16 16:43:27 +01002951 bdrv_join_options(bs, options, old_options);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002952 qobject_unref(old_options);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02002953
Kevin Wolffd452022017-08-03 17:02:59 +02002954 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02002955 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02002956 if (flags & BDRV_O_RDWR) {
2957 flags |= BDRV_O_ALLOW_RDWR;
2958 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02002959
Kevin Wolf1857c972017-09-14 14:53:46 +02002960 if (!bs_entry) {
2961 bs_entry = g_new0(BlockReopenQueueEntry, 1);
2962 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
2963 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002964 qobject_unref(bs_entry->state.options);
2965 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02002966 }
2967
2968 bs_entry->state.bs = bs;
2969 bs_entry->state.options = options;
2970 bs_entry->state.explicit_options = explicit_options;
2971 bs_entry->state.flags = flags;
2972
Kevin Wolf30450252017-07-03 17:07:35 +02002973 /* This needs to be overwritten in bdrv_reopen_prepare() */
2974 bs_entry->state.perm = UINT64_MAX;
2975 bs_entry->state.shared_perm = 0;
2976
Kevin Wolf67251a32015-04-09 18:54:04 +02002977 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02002978 QDict *new_child_options;
2979 char *child_key_dot;
Kevin Wolf67251a32015-04-09 18:54:04 +02002980
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02002981 /* reopen can only change the options of block devices that were
2982 * implicitly created and inherited options. For other (referenced)
2983 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02002984 if (child->bs->inherits_from != bs) {
2985 continue;
2986 }
2987
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02002988 child_key_dot = g_strdup_printf("%s.", child->name);
2989 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
2990 g_free(child_key_dot);
2991
Kevin Wolf28518102015-05-08 17:07:31 +02002992 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
2993 child->role, options, flags);
Jeff Codye971aa12012-09-20 15:13:19 -04002994 }
2995
Jeff Codye971aa12012-09-20 15:13:19 -04002996 return bs_queue;
2997}
2998
Kevin Wolf28518102015-05-08 17:07:31 +02002999BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3000 BlockDriverState *bs,
3001 QDict *options, int flags)
3002{
3003 return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
3004 NULL, NULL, 0);
3005}
3006
Jeff Codye971aa12012-09-20 15:13:19 -04003007/*
3008 * Reopen multiple BlockDriverStates atomically & transactionally.
3009 *
3010 * The queue passed in (bs_queue) must have been built up previous
3011 * via bdrv_reopen_queue().
3012 *
3013 * Reopens all BDS specified in the queue, with the appropriate
3014 * flags. All devices are prepared for reopen, and failure of any
3015 * device will cause all device changes to be abandonded, and intermediate
3016 * data cleaned up.
3017 *
3018 * If all devices prepare successfully, then the changes are committed
3019 * to all devices.
3020 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003021 * All affected nodes must be drained between bdrv_reopen_queue() and
3022 * bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003023 */
Paolo Bonzini720150f2016-10-27 12:49:02 +02003024int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04003025{
3026 int ret = -1;
3027 BlockReopenQueueEntry *bs_entry, *next;
3028 Error *local_err = NULL;
3029
3030 assert(bs_queue != NULL);
3031
Jeff Codye971aa12012-09-20 15:13:19 -04003032 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01003033 assert(bs_entry->state.bs->quiesce_counter > 0);
Jeff Codye971aa12012-09-20 15:13:19 -04003034 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
3035 error_propagate(errp, local_err);
3036 goto cleanup;
3037 }
3038 bs_entry->prepared = true;
3039 }
3040
3041 /* If we reach this point, we have success and just need to apply the
3042 * changes
3043 */
3044 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3045 bdrv_reopen_commit(&bs_entry->state);
3046 }
3047
3048 ret = 0;
3049
3050cleanup:
3051 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3052 if (ret && bs_entry->prepared) {
3053 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf145f5982015-05-08 16:15:03 +02003054 } else if (ret) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003055 qobject_unref(bs_entry->state.explicit_options);
Jeff Codye971aa12012-09-20 15:13:19 -04003056 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003057 qobject_unref(bs_entry->state.options);
Jeff Codye971aa12012-09-20 15:13:19 -04003058 g_free(bs_entry);
3059 }
3060 g_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03003061
Jeff Codye971aa12012-09-20 15:13:19 -04003062 return ret;
3063}
3064
3065
3066/* Reopen a single BlockDriverState with the specified flags. */
3067int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
3068{
3069 int ret = -1;
3070 Error *local_err = NULL;
Kevin Wolf1a63a902017-12-06 20:24:44 +01003071 BlockReopenQueue *queue;
Jeff Codye971aa12012-09-20 15:13:19 -04003072
Kevin Wolf1a63a902017-12-06 20:24:44 +01003073 bdrv_subtree_drained_begin(bs);
3074
3075 queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
Paolo Bonzini720150f2016-10-27 12:49:02 +02003076 ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04003077 if (local_err != NULL) {
3078 error_propagate(errp, local_err);
3079 }
Kevin Wolf1a63a902017-12-06 20:24:44 +01003080
3081 bdrv_subtree_drained_end(bs);
3082
Jeff Codye971aa12012-09-20 15:13:19 -04003083 return ret;
3084}
3085
Kevin Wolf30450252017-07-03 17:07:35 +02003086static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3087 BdrvChild *c)
3088{
3089 BlockReopenQueueEntry *entry;
3090
3091 QSIMPLEQ_FOREACH(entry, q, entry) {
3092 BlockDriverState *bs = entry->state.bs;
3093 BdrvChild *child;
3094
3095 QLIST_FOREACH(child, &bs->children, next) {
3096 if (child == c) {
3097 return entry;
3098 }
3099 }
3100 }
3101
3102 return NULL;
3103}
3104
3105static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3106 uint64_t *perm, uint64_t *shared)
3107{
3108 BdrvChild *c;
3109 BlockReopenQueueEntry *parent;
3110 uint64_t cumulative_perms = 0;
3111 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3112
3113 QLIST_FOREACH(c, &bs->parents, next_parent) {
3114 parent = find_parent_in_reopen_queue(q, c);
3115 if (!parent) {
3116 cumulative_perms |= c->perm;
3117 cumulative_shared_perms &= c->shared_perm;
3118 } else {
3119 uint64_t nperm, nshared;
3120
3121 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3122 parent->state.perm, parent->state.shared_perm,
3123 &nperm, &nshared);
3124
3125 cumulative_perms |= nperm;
3126 cumulative_shared_perms &= nshared;
3127 }
3128 }
3129 *perm = cumulative_perms;
3130 *shared = cumulative_shared_perms;
3131}
Jeff Codye971aa12012-09-20 15:13:19 -04003132
3133/*
3134 * Prepares a BlockDriverState for reopen. All changes are staged in the
3135 * 'opaque' field of the BDRVReopenState, which is used and allocated by
3136 * the block driver layer .bdrv_reopen_prepare()
3137 *
3138 * bs is the BlockDriverState to reopen
3139 * flags are the new open flags
3140 * queue is the reopen queue
3141 *
3142 * Returns 0 on success, non-zero on error. On error errp will be set
3143 * as well.
3144 *
3145 * On failure, bdrv_reopen_abort() will be called to clean up any data.
3146 * It is the responsibility of the caller to then call the abort() or
3147 * commit() for any other BDS that have been left in a prepare() state
3148 *
3149 */
3150int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3151 Error **errp)
3152{
3153 int ret = -1;
3154 Error *local_err = NULL;
3155 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003156 QemuOpts *opts;
3157 const char *value;
Jeff Cody3d8ce172017-04-07 16:55:30 -04003158 bool read_only;
Jeff Codye971aa12012-09-20 15:13:19 -04003159
3160 assert(reopen_state != NULL);
3161 assert(reopen_state->bs->drv != NULL);
3162 drv = reopen_state->bs->drv;
3163
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003164 /* Process generic block layer options */
3165 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3166 qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3167 if (local_err) {
3168 error_propagate(errp, local_err);
3169 ret = -EINVAL;
3170 goto error;
3171 }
3172
Kevin Wolf91a097e2015-05-08 17:49:53 +02003173 update_flags_from_options(&reopen_state->flags, opts);
3174
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003175 /* node-name and driver must be unchanged. Put them back into the QDict, so
3176 * that they are checked at the end of this function. */
3177 value = qemu_opt_get(opts, "node-name");
3178 if (value) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003179 qdict_put_str(reopen_state->options, "node-name", value);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003180 }
3181
3182 value = qemu_opt_get(opts, "driver");
3183 if (value) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003184 qdict_put_str(reopen_state->options, "driver", value);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003185 }
3186
Jeff Cody3d8ce172017-04-07 16:55:30 -04003187 /* If we are to stay read-only, do not allow permission change
3188 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
3189 * not set, or if the BDS still has copy_on_read enabled */
3190 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02003191 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04003192 if (local_err) {
3193 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04003194 goto error;
3195 }
3196
Kevin Wolf30450252017-07-03 17:07:35 +02003197 /* Calculate required permissions after reopening */
3198 bdrv_reopen_perm(queue, reopen_state->bs,
3199 &reopen_state->perm, &reopen_state->shared_perm);
Jeff Codye971aa12012-09-20 15:13:19 -04003200
3201 ret = bdrv_flush(reopen_state->bs);
3202 if (ret) {
Eric Blake455b0fd2015-11-10 23:51:20 -07003203 error_setg_errno(errp, -ret, "Error flushing drive");
Jeff Codye971aa12012-09-20 15:13:19 -04003204 goto error;
3205 }
3206
3207 if (drv->bdrv_reopen_prepare) {
3208 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3209 if (ret) {
3210 if (local_err != NULL) {
3211 error_propagate(errp, local_err);
3212 } else {
Luiz Capitulinod8b68952013-06-10 11:29:27 -04003213 error_setg(errp, "failed while preparing to reopen image '%s'",
3214 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04003215 }
3216 goto error;
3217 }
3218 } else {
3219 /* It is currently mandatory to have a bdrv_reopen_prepare()
3220 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03003221 error_setg(errp, "Block format '%s' used by node '%s' "
3222 "does not support reopening files", drv->format_name,
3223 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04003224 ret = -1;
3225 goto error;
3226 }
3227
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003228 /* Options that are not handled are only okay if they are unchanged
3229 * compared to the old state. It is expected that some options are only
3230 * used for the initial open, but not reopen (e.g. filename) */
3231 if (qdict_size(reopen_state->options)) {
3232 const QDictEntry *entry = qdict_first(reopen_state->options);
3233
3234 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01003235 QObject *new = entry->value;
3236 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003237
Max Reitz54fd1b02017-11-14 19:01:26 +01003238 /*
3239 * TODO: When using -drive to specify blockdev options, all values
3240 * will be strings; however, when using -blockdev, blockdev-add or
3241 * filenames using the json:{} pseudo-protocol, they will be
3242 * correctly typed.
3243 * In contrast, reopening options are (currently) always strings
3244 * (because you can only specify them through qemu-io; all other
3245 * callers do not specify any options).
3246 * Therefore, when using anything other than -drive to create a BDS,
3247 * this cannot detect non-string options as unchanged, because
3248 * qobject_is_equal() always returns false for objects of different
3249 * type. In the future, this should be remedied by correctly typing
3250 * all options. For now, this is not too big of an issue because
3251 * the user can simply omit options which cannot be changed anyway,
3252 * so they will stay unchanged.
3253 */
3254 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003255 error_setg(errp, "Cannot change the option '%s'", entry->key);
3256 ret = -EINVAL;
3257 goto error;
3258 }
3259 } while ((entry = qdict_next(reopen_state->options, entry)));
3260 }
3261
Kevin Wolf30450252017-07-03 17:07:35 +02003262 ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
3263 reopen_state->shared_perm, NULL, errp);
3264 if (ret < 0) {
3265 goto error;
3266 }
3267
Jeff Codye971aa12012-09-20 15:13:19 -04003268 ret = 0;
3269
3270error:
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003271 qemu_opts_del(opts);
Jeff Codye971aa12012-09-20 15:13:19 -04003272 return ret;
3273}
3274
3275/*
3276 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3277 * makes them final by swapping the staging BlockDriverState contents into
3278 * the active BlockDriverState contents.
3279 */
3280void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3281{
3282 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03003283 BlockDriverState *bs;
Vladimir Sementsov-Ogievskiycb9ff6c2017-06-28 15:05:13 +03003284 bool old_can_write, new_can_write;
Jeff Codye971aa12012-09-20 15:13:19 -04003285
3286 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03003287 bs = reopen_state->bs;
3288 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04003289 assert(drv != NULL);
3290
Vladimir Sementsov-Ogievskiycb9ff6c2017-06-28 15:05:13 +03003291 old_can_write =
3292 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3293
Jeff Codye971aa12012-09-20 15:13:19 -04003294 /* If there are any driver level actions to take */
3295 if (drv->bdrv_reopen_commit) {
3296 drv->bdrv_reopen_commit(reopen_state);
3297 }
3298
3299 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003300 qobject_unref(bs->explicit_options);
Kevin Wolf145f5982015-05-08 16:15:03 +02003301
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03003302 bs->explicit_options = reopen_state->explicit_options;
3303 bs->open_flags = reopen_state->flags;
3304 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf355ef4a2013-12-11 20:14:09 +01003305
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03003306 bdrv_refresh_limits(bs, NULL);
Vladimir Sementsov-Ogievskiycb9ff6c2017-06-28 15:05:13 +03003307
Kevin Wolf30450252017-07-03 17:07:35 +02003308 bdrv_set_perm(reopen_state->bs, reopen_state->perm,
3309 reopen_state->shared_perm);
3310
Vladimir Sementsov-Ogievskiycb9ff6c2017-06-28 15:05:13 +03003311 new_can_write =
3312 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3313 if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3314 Error *local_err = NULL;
3315 if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3316 /* This is not fatal, bitmaps just left read-only, so all following
3317 * writes will fail. User can remove read-only bitmaps to unblock
3318 * writes.
3319 */
3320 error_reportf_err(local_err,
3321 "%s: Failed to make dirty bitmaps writable: ",
3322 bdrv_get_node_name(bs));
3323 }
3324 }
Jeff Codye971aa12012-09-20 15:13:19 -04003325}
3326
3327/*
3328 * Abort the reopen, and delete and free the staged changes in
3329 * reopen_state
3330 */
3331void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3332{
3333 BlockDriver *drv;
3334
3335 assert(reopen_state != NULL);
3336 drv = reopen_state->bs->drv;
3337 assert(drv != NULL);
3338
3339 if (drv->bdrv_reopen_abort) {
3340 drv->bdrv_reopen_abort(reopen_state);
3341 }
Kevin Wolf145f5982015-05-08 16:15:03 +02003342
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003343 qobject_unref(reopen_state->explicit_options);
Kevin Wolf30450252017-07-03 17:07:35 +02003344
3345 bdrv_abort_perm_update(reopen_state->bs);
Jeff Codye971aa12012-09-20 15:13:19 -04003346}
3347
3348
Max Reitz64dff522016-01-29 16:36:10 +01003349static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00003350{
Max Reitz33384422014-06-20 21:57:33 +02003351 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02003352 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02003353
Max Reitzca9bd242016-01-29 16:36:14 +01003354 assert(!bs->job);
Max Reitz30f55fb2016-05-17 16:41:32 +02003355 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03003356
Paolo Bonzinifc272912015-12-23 11:48:24 +01003357 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02003358 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08003359 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01003360
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02003361 if (bs->drv) {
Kevin Wolf9a7dedb2015-06-16 10:58:20 +02003362 bs->drv->bdrv_close(bs);
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003363 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00003364 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08003365
Alberto Garcia50a3efb2017-11-06 16:53:45 +02003366 bdrv_set_backing_hd(bs, NULL, &error_abort);
3367
3368 if (bs->file != NULL) {
3369 bdrv_unref_child(bs, bs->file);
3370 bs->file = NULL;
3371 }
3372
3373 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
3374 /* TODO Remove bdrv_unref() from drivers' close function and use
3375 * bdrv_unref_child() here */
3376 if (child->bs->inherits_from == bs) {
3377 child->bs->inherits_from = NULL;
3378 }
3379 bdrv_detach_child(child);
3380 }
3381
3382 g_free(bs->opaque);
3383 bs->opaque = NULL;
3384 atomic_set(&bs->copy_on_read, 0);
3385 bs->backing_file[0] = '\0';
3386 bs->backing_format[0] = '\0';
3387 bs->total_sectors = 0;
3388 bs->encrypted = false;
3389 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003390 qobject_unref(bs->options);
3391 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02003392 bs->options = NULL;
3393 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003394 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02003395 bs->full_open_options = NULL;
3396
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03003397 bdrv_release_named_dirty_bitmaps(bs);
3398 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3399
Max Reitz33384422014-06-20 21:57:33 +02003400 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
3401 g_free(ban);
3402 }
3403 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01003404 bdrv_drained_end(bs);
bellardb3380822004-03-14 21:38:54 +00003405}
3406
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09003407void bdrv_close_all(void)
3408{
Kevin Wolfb3b52992018-05-16 13:46:37 +02003409 assert(job_next(NULL) == NULL);
Kevin Wolfcd7fca92016-07-06 11:22:39 +02003410 nbd_export_close_all();
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09003411
Max Reitzca9bd242016-01-29 16:36:14 +01003412 /* Drop references from requests still in flight, such as canceled block
3413 * jobs whose AIO context has not been polled yet */
3414 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02003415
Max Reitzca9bd242016-01-29 16:36:14 +01003416 blk_remove_all_bs();
3417 blockdev_close_all_bdrv_states();
3418
Kevin Wolfa1a2af02016-04-08 18:26:37 +02003419 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09003420}
3421
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003422static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003423{
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003424 BdrvChild *to_c;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003425
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003426 if (c->role->stay_at_node) {
3427 return false;
3428 }
3429
3430 if (c->role == &child_backing) {
3431 /* If @from is a backing file of @to, ignore the child to avoid
3432 * creating a loop. We only want to change the pointer of other
3433 * parents. */
3434 QLIST_FOREACH(to_c, &to->children, next) {
3435 if (to_c == c) {
3436 break;
3437 }
3438 }
3439 if (to_c) {
3440 return false;
3441 }
3442 }
3443
3444 return true;
3445}
3446
Kevin Wolf5fe31c22017-03-06 16:20:51 +01003447void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
3448 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003449{
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003450 BdrvChild *c, *next;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003451 GSList *list = NULL, *p;
3452 uint64_t old_perm, old_shared;
3453 uint64_t perm = 0, shared = BLK_PERM_ALL;
3454 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003455
Kevin Wolf5fe31c22017-03-06 16:20:51 +01003456 assert(!atomic_read(&from->in_flight));
3457 assert(!atomic_read(&to->in_flight));
3458
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003459 /* Make sure that @from doesn't go away until we have successfully attached
3460 * all of its parents to @to. */
3461 bdrv_ref(from);
3462
3463 /* Put all parents into @list and calculate their cumulative permissions */
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003464 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003465 if (!should_update_child(c, to)) {
Kevin Wolf26de9432017-01-17 13:39:34 +01003466 continue;
3467 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003468 list = g_slist_prepend(list, c);
3469 perm |= c->perm;
3470 shared &= c->shared_perm;
3471 }
3472
3473 /* Check whether the required permissions can be granted on @to, ignoring
3474 * all BdrvChild in @list so that they can't block themselves. */
Kevin Wolf3121fb42017-09-14 14:42:12 +02003475 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003476 if (ret < 0) {
3477 bdrv_abort_perm_update(to);
3478 goto out;
3479 }
3480
3481 /* Now actually perform the change. We performed the permission check for
3482 * all elements of @list at once, so set the permissions all at once at the
3483 * very end. */
3484 for (p = list; p != NULL; p = p->next) {
3485 c = p->data;
Max Reitz9bd910e2016-06-10 20:57:46 +02003486
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003487 bdrv_ref(to);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003488 bdrv_replace_child_noperm(c, to);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003489 bdrv_unref(from);
3490 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003491
3492 bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3493 bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3494
3495out:
3496 g_slist_free(list);
3497 bdrv_unref(from);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003498}
3499
Jeff Cody8802d1f2012-02-28 15:54:06 -05003500/*
3501 * Add new bs contents at the top of an image chain while the chain is
3502 * live, while keeping required fields on the top layer.
3503 *
3504 * This will modify the BlockDriverState fields, and swap contents
3505 * between bs_new and bs_top. Both bs_new and bs_top are modified.
3506 *
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02003507 * bs_new must not be attached to a BlockBackend.
Jeff Codyf6801b82012-03-27 16:30:19 -04003508 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05003509 * This function does not create any image files.
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003510 *
3511 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3512 * that's what the callers commonly need. bs_new will be referenced by the old
3513 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3514 * reference of its own, it must call bdrv_ref().
Jeff Cody8802d1f2012-02-28 15:54:06 -05003515 */
Kevin Wolfb2c28322017-02-20 12:46:42 +01003516void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3517 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05003518{
Kevin Wolfb2c28322017-02-20 12:46:42 +01003519 Error *local_err = NULL;
3520
Kevin Wolfb2c28322017-02-20 12:46:42 +01003521 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3522 if (local_err) {
3523 error_propagate(errp, local_err);
3524 goto out;
3525 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003526
Kevin Wolf5fe31c22017-03-06 16:20:51 +01003527 bdrv_replace_node(bs_top, bs_new, &local_err);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003528 if (local_err) {
3529 error_propagate(errp, local_err);
3530 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3531 goto out;
3532 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003533
3534 /* bs_new is now referenced by its new parents, we don't need the
3535 * additional reference any more. */
Kevin Wolfb2c28322017-02-20 12:46:42 +01003536out:
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003537 bdrv_unref(bs_new);
Jeff Cody8802d1f2012-02-28 15:54:06 -05003538}
3539
Fam Zheng4f6fd342013-08-23 09:14:47 +08003540static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00003541{
Paolo Bonzini3e914652012-03-30 13:17:11 +02003542 assert(!bs->job);
Fam Zheng3718d8a2014-05-23 21:29:43 +08003543 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08003544 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02003545
Stefan Hajnoczie1b5c522013-06-27 15:32:26 +02003546 bdrv_close(bs);
3547
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01003548 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01003549 if (bs->node_name[0] != '\0') {
3550 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
3551 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01003552 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
3553
Anthony Liguori7267c092011-08-20 22:09:37 -05003554 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00003555}
3556
aliguorie97fc192009-04-21 23:11:50 +00003557/*
3558 * Run consistency checks on an image
3559 *
Kevin Wolfe076f332010-06-29 11:43:13 +02003560 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02003561 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02003562 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00003563 */
Paolo Bonzini2fd61632018-03-01 17:36:19 +01003564static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
3565 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00003566{
Max Reitz908bcd52014-08-07 22:47:55 +02003567 if (bs->drv == NULL) {
3568 return -ENOMEDIUM;
3569 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01003570 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00003571 return -ENOTSUP;
3572 }
3573
Kevin Wolfe076f332010-06-29 11:43:13 +02003574 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01003575 return bs->drv->bdrv_co_check(bs, res, fix);
3576}
3577
3578typedef struct CheckCo {
3579 BlockDriverState *bs;
3580 BdrvCheckResult *res;
3581 BdrvCheckMode fix;
3582 int ret;
3583} CheckCo;
3584
3585static void bdrv_check_co_entry(void *opaque)
3586{
3587 CheckCo *cco = opaque;
3588 cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
3589}
3590
3591int bdrv_check(BlockDriverState *bs,
3592 BdrvCheckResult *res, BdrvCheckMode fix)
3593{
3594 Coroutine *co;
3595 CheckCo cco = {
3596 .bs = bs,
3597 .res = res,
3598 .ret = -EINPROGRESS,
3599 .fix = fix,
3600 };
3601
3602 if (qemu_in_coroutine()) {
3603 /* Fast-path if already in coroutine context */
3604 bdrv_check_co_entry(&cco);
3605 } else {
3606 co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
3607 qemu_coroutine_enter(co);
3608 BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
3609 }
3610
3611 return cco.ret;
aliguorie97fc192009-04-21 23:11:50 +00003612}
3613
Kevin Wolf756e6732010-01-12 12:55:17 +01003614/*
3615 * Return values:
3616 * 0 - success
3617 * -EINVAL - backing format specified, but no file
3618 * -ENOSPC - can't update the backing file because no space is left in the
3619 * image file header
3620 * -ENOTSUP - format driver doesn't support changing the backing file
3621 */
3622int bdrv_change_backing_file(BlockDriverState *bs,
3623 const char *backing_file, const char *backing_fmt)
3624{
3625 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02003626 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01003627
Max Reitzd470ad42017-11-10 21:31:09 +01003628 if (!drv) {
3629 return -ENOMEDIUM;
3630 }
3631
Paolo Bonzini5f377792012-04-12 14:01:01 +02003632 /* Backing file format doesn't make sense without a backing file */
3633 if (backing_fmt && !backing_file) {
3634 return -EINVAL;
3635 }
3636
Kevin Wolf756e6732010-01-12 12:55:17 +01003637 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02003638 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01003639 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02003640 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01003641 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02003642
3643 if (ret == 0) {
3644 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3645 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3646 }
3647 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01003648}
3649
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003650/*
3651 * Finds the image layer in the chain that has 'bs' as its backing file.
3652 *
3653 * active is the current topmost image.
3654 *
3655 * Returns NULL if bs is not found in active's image chain,
3656 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04003657 *
3658 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003659 */
3660BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
3661 BlockDriverState *bs)
3662{
Kevin Wolf760e0062015-06-17 14:55:21 +02003663 while (active && bs != backing_bs(active)) {
3664 active = backing_bs(active);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003665 }
3666
Jeff Cody4caf0fc2014-06-25 15:35:26 -04003667 return active;
3668}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003669
Jeff Cody4caf0fc2014-06-25 15:35:26 -04003670/* Given a BDS, searches for the base layer. */
3671BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3672{
3673 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003674}
3675
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003676/*
3677 * Drops images above 'base' up to and including 'top', and sets the image
3678 * above 'top' to have base as its backing file.
3679 *
3680 * Requires that the overlay to 'top' is opened r/w, so that the backing file
3681 * information in 'bs' can be properly updated.
3682 *
3683 * E.g., this will convert the following chain:
3684 * bottom <- base <- intermediate <- top <- active
3685 *
3686 * to
3687 *
3688 * bottom <- base <- active
3689 *
3690 * It is allowed for bottom==base, in which case it converts:
3691 *
3692 * base <- intermediate <- top <- active
3693 *
3694 * to
3695 *
3696 * base <- active
3697 *
Jeff Cody54e26902014-06-25 15:40:10 -04003698 * If backing_file_str is non-NULL, it will be used when modifying top's
3699 * overlay image metadata.
3700 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003701 * Error conditions:
3702 * if active == top, that is considered an error
3703 *
3704 */
Kevin Wolfbde70712017-06-27 20:36:18 +02003705int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3706 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003707{
Kevin Wolf61f09ce2017-09-19 16:22:54 +02003708 BdrvChild *c, *next;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003709 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003710 int ret = -EIO;
3711
Kevin Wolf6858eba2017-06-29 19:32:21 +02003712 bdrv_ref(top);
3713
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003714 if (!top->drv || !base->drv) {
3715 goto exit;
3716 }
3717
Kevin Wolf5db15a52015-09-14 15:33:33 +02003718 /* Make sure that base is in the backing chain of top */
3719 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003720 goto exit;
3721 }
3722
3723 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02003724 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3725 * we've figured out how they should work. */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02003726 backing_file_str = backing_file_str ? backing_file_str : base->filename;
3727
3728 QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
3729 /* Check whether we are allowed to switch c from top to base */
3730 GSList *ignore_children = g_slist_prepend(NULL, c);
3731 bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
3732 ignore_children, &local_err);
Fam Zheng2c860e72018-03-15 11:51:57 +08003733 g_slist_free(ignore_children);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02003734 if (local_err) {
3735 ret = -EPERM;
3736 error_report_err(local_err);
Kevin Wolf6858eba2017-06-29 19:32:21 +02003737 goto exit;
3738 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003739
Kevin Wolf61f09ce2017-09-19 16:22:54 +02003740 /* If so, update the backing file path in the image file */
3741 if (c->role->update_filename) {
3742 ret = c->role->update_filename(c, base, backing_file_str,
3743 &local_err);
3744 if (ret < 0) {
3745 bdrv_abort_perm_update(base);
3746 error_report_err(local_err);
3747 goto exit;
3748 }
3749 }
3750
3751 /* Do the actual switch in the in-memory graph.
3752 * Completes bdrv_check_update_perm() transaction internally. */
3753 bdrv_ref(base);
3754 bdrv_replace_child(c, base);
3755 bdrv_unref(top);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003756 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003757
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003758 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003759exit:
Kevin Wolf6858eba2017-06-29 19:32:21 +02003760 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003761 return ret;
3762}
3763
bellard83f64092006-08-01 16:21:11 +00003764/**
bellard83f64092006-08-01 16:21:11 +00003765 * Truncate file to 'offset' bytes (needed only for file protocols)
3766 */
Max Reitz7ea37c32017-06-13 22:20:53 +02003767int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc,
3768 Error **errp)
bellard83f64092006-08-01 16:21:11 +00003769{
Kevin Wolf52cdbc52017-02-16 18:39:03 +01003770 BlockDriverState *bs = child->bs;
bellard83f64092006-08-01 16:21:11 +00003771 BlockDriver *drv = bs->drv;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01003772 int ret;
Kevin Wolfc8f6d582017-02-17 14:52:00 +01003773
Max Reitz362b3782017-04-11 17:52:26 +02003774 assert(child->perm & BLK_PERM_RESIZE);
Kevin Wolfc8f6d582017-02-17 14:52:00 +01003775
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03003776 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
Max Reitzed3d2ec2017-03-28 22:51:27 +02003777 if (!drv) {
3778 error_setg(errp, "No medium inserted");
bellard19cb3732006-08-19 11:45:59 +00003779 return -ENOMEDIUM;
Max Reitzed3d2ec2017-03-28 22:51:27 +02003780 }
Kevin Wolfcd8b7aa2018-02-07 17:58:47 +01003781 if (offset < 0) {
3782 error_setg(errp, "Image size cannot be negative");
3783 return -EINVAL;
3784 }
3785
Max Reitzed3d2ec2017-03-28 22:51:27 +02003786 if (!drv->bdrv_truncate) {
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03003787 if (bs->file && drv->is_filter) {
3788 return bdrv_truncate(bs->file, offset, prealloc, errp);
3789 }
Max Reitzed3d2ec2017-03-28 22:51:27 +02003790 error_setg(errp, "Image format driver does not support resize");
bellard83f64092006-08-01 16:21:11 +00003791 return -ENOTSUP;
Max Reitzed3d2ec2017-03-28 22:51:27 +02003792 }
3793 if (bs->read_only) {
3794 error_setg(errp, "Image is read-only");
Naphtali Sprei59f26892009-10-26 16:25:16 +02003795 return -EACCES;
Max Reitzed3d2ec2017-03-28 22:51:27 +02003796 }
Jeff Cody9c75e162014-06-25 16:55:30 -04003797
Denis V. Lunev504c2052017-04-05 18:18:25 +03003798 assert(!(bs->open_flags & BDRV_O_INACTIVE));
3799
Max Reitz7ea37c32017-06-13 22:20:53 +02003800 ret = drv->bdrv_truncate(bs, offset, prealloc, errp);
Eric Blake1b6cc572017-09-25 09:55:11 -05003801 if (ret < 0) {
3802 return ret;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01003803 }
Eric Blake1b6cc572017-09-25 09:55:11 -05003804 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
3805 if (ret < 0) {
3806 error_setg_errno(errp, -ret, "Could not refresh total sector count");
3807 } else {
3808 offset = bs->total_sectors * BDRV_SECTOR_SIZE;
3809 }
3810 bdrv_dirty_bitmap_truncate(bs, offset);
3811 bdrv_parent_cb_resize(bs);
3812 atomic_inc(&bs->write_gen);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01003813 return ret;
bellard83f64092006-08-01 16:21:11 +00003814}
3815
3816/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08003817 * Length of a allocated file in bytes. Sparse files are counted by actual
3818 * allocated space. Return < 0 if error or unknown.
3819 */
3820int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
3821{
3822 BlockDriver *drv = bs->drv;
3823 if (!drv) {
3824 return -ENOMEDIUM;
3825 }
3826 if (drv->bdrv_get_allocated_file_size) {
3827 return drv->bdrv_get_allocated_file_size(bs);
3828 }
3829 if (bs->file) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003830 return bdrv_get_allocated_file_size(bs->file->bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08003831 }
3832 return -ENOTSUP;
3833}
3834
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01003835/*
3836 * bdrv_measure:
3837 * @drv: Format driver
3838 * @opts: Creation options for new image
3839 * @in_bs: Existing image containing data for new image (may be NULL)
3840 * @errp: Error object
3841 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
3842 * or NULL on error
3843 *
3844 * Calculate file size required to create a new image.
3845 *
3846 * If @in_bs is given then space for allocated clusters and zero clusters
3847 * from that image are included in the calculation. If @opts contains a
3848 * backing file that is shared by @in_bs then backing clusters may be omitted
3849 * from the calculation.
3850 *
3851 * If @in_bs is NULL then the calculation includes no allocated clusters
3852 * unless a preallocation option is given in @opts.
3853 *
3854 * Note that @in_bs may use a different BlockDriver from @drv.
3855 *
3856 * If an error occurs the @errp pointer is set.
3857 */
3858BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
3859 BlockDriverState *in_bs, Error **errp)
3860{
3861 if (!drv->bdrv_measure) {
3862 error_setg(errp, "Block driver '%s' does not support size measurement",
3863 drv->format_name);
3864 return NULL;
3865 }
3866
3867 return drv->bdrv_measure(opts, in_bs, errp);
3868}
3869
Fam Zheng4a1d5e12011-07-12 19:56:39 +08003870/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02003871 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00003872 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02003873int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00003874{
3875 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02003876
bellard83f64092006-08-01 16:21:11 +00003877 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00003878 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01003879
Kevin Wolfb94a2612013-10-29 12:18:58 +01003880 if (drv->has_variable_length) {
3881 int ret = refresh_total_sectors(bs, bs->total_sectors);
3882 if (ret < 0) {
3883 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01003884 }
bellard83f64092006-08-01 16:21:11 +00003885 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02003886 return bs->total_sectors;
3887}
3888
3889/**
3890 * Return length in bytes on success, -errno on error.
3891 * The length is always a multiple of BDRV_SECTOR_SIZE.
3892 */
3893int64_t bdrv_getlength(BlockDriverState *bs)
3894{
3895 int64_t ret = bdrv_nb_sectors(bs);
3896
Fam Zheng4a9c9ea2015-05-15 16:36:05 +08003897 ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02003898 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00003899}
3900
bellard19cb3732006-08-19 11:45:59 +00003901/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00003902void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00003903{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02003904 int64_t nb_sectors = bdrv_nb_sectors(bs);
3905
3906 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00003907}
bellardcf989512004-02-16 21:56:36 +00003908
Eric Blake54115412016-06-23 16:37:26 -06003909bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00003910{
3911 return bs->sg;
3912}
3913
Eric Blake54115412016-06-23 16:37:26 -06003914bool bdrv_is_encrypted(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00003915{
Kevin Wolf760e0062015-06-17 14:55:21 +02003916 if (bs->backing && bs->backing->bs->encrypted) {
Eric Blake54115412016-06-23 16:37:26 -06003917 return true;
Kevin Wolf760e0062015-06-17 14:55:21 +02003918 }
bellardea2384d2004-08-01 21:59:26 +00003919 return bs->encrypted;
3920}
3921
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02003922const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00003923{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02003924 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00003925}
3926
Stefan Hajnocziada42402014-08-27 12:08:55 +01003927static int qsort_strcmp(const void *a, const void *b)
3928{
Max Reitzceff5bd2016-10-12 22:49:05 +02003929 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01003930}
3931
ths5fafdf22007-09-16 21:08:06 +00003932void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
bellardea2384d2004-08-01 21:59:26 +00003933 void *opaque)
3934{
3935 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04003936 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01003937 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04003938 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00003939
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01003940 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04003941 if (drv->format_name) {
3942 bool found = false;
3943 int i = count;
3944 while (formats && i && !found) {
3945 found = !strcmp(formats[--i], drv->format_name);
3946 }
3947
3948 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02003949 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04003950 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04003951 }
3952 }
bellardea2384d2004-08-01 21:59:26 +00003953 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01003954
Max Reitzeb0df692016-10-12 22:49:06 +02003955 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
3956 const char *format_name = block_driver_modules[i].format_name;
3957
3958 if (format_name) {
3959 bool found = false;
3960 int j = count;
3961
3962 while (formats && j && !found) {
3963 found = !strcmp(formats[--j], format_name);
3964 }
3965
3966 if (!found) {
3967 formats = g_renew(const char *, formats, count + 1);
3968 formats[count++] = format_name;
3969 }
3970 }
3971 }
3972
Stefan Hajnocziada42402014-08-27 12:08:55 +01003973 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
3974
3975 for (i = 0; i < count; i++) {
3976 it(opaque, formats[i]);
3977 }
3978
Jeff Codye855e4f2014-04-28 18:29:54 -04003979 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00003980}
3981
Benoît Canetdc364f42014-01-23 21:31:32 +01003982/* This function is to find a node in the bs graph */
3983BlockDriverState *bdrv_find_node(const char *node_name)
3984{
3985 BlockDriverState *bs;
3986
3987 assert(node_name);
3988
3989 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3990 if (!strcmp(node_name, bs->node_name)) {
3991 return bs;
3992 }
3993 }
3994 return NULL;
3995}
3996
Benoît Canetc13163f2014-01-23 21:31:34 +01003997/* Put this QMP function here so it can access the static graph_bdrv_states. */
Alberto Garciad5a8ee62015-04-17 14:52:43 +03003998BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01003999{
4000 BlockDeviceInfoList *list, *entry;
4001 BlockDriverState *bs;
4002
4003 list = NULL;
4004 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Kevin Wolfc83f9fb2016-03-03 11:37:48 +01004005 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03004006 if (!info) {
4007 qapi_free_BlockDeviceInfoList(list);
4008 return NULL;
4009 }
Benoît Canetc13163f2014-01-23 21:31:34 +01004010 entry = g_malloc0(sizeof(*entry));
Alberto Garciad5a8ee62015-04-17 14:52:43 +03004011 entry->value = info;
Benoît Canetc13163f2014-01-23 21:31:34 +01004012 entry->next = list;
4013 list = entry;
4014 }
4015
4016 return list;
4017}
4018
Benoît Canet12d3ba82014-01-23 21:31:35 +01004019BlockDriverState *bdrv_lookup_bs(const char *device,
4020 const char *node_name,
4021 Error **errp)
4022{
Markus Armbruster7f06d472014-10-07 13:59:12 +02004023 BlockBackend *blk;
4024 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01004025
Benoît Canet12d3ba82014-01-23 21:31:35 +01004026 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02004027 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01004028
Markus Armbruster7f06d472014-10-07 13:59:12 +02004029 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02004030 bs = blk_bs(blk);
4031 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02004032 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02004033 }
4034
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02004035 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01004036 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01004037 }
4038
Benoît Canetdd67fa52014-02-12 17:15:06 +01004039 if (node_name) {
4040 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01004041
Benoît Canetdd67fa52014-02-12 17:15:06 +01004042 if (bs) {
4043 return bs;
4044 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01004045 }
4046
Benoît Canetdd67fa52014-02-12 17:15:06 +01004047 error_setg(errp, "Cannot find device=%s nor node_name=%s",
4048 device ? device : "",
4049 node_name ? node_name : "");
4050 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01004051}
4052
Jeff Cody5a6684d2014-06-25 15:40:09 -04004053/* If 'base' is in the same chain as 'top', return true. Otherwise,
4054 * return false. If either argument is NULL, return false. */
4055bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
4056{
4057 while (top && top != base) {
Kevin Wolf760e0062015-06-17 14:55:21 +02004058 top = backing_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04004059 }
4060
4061 return top != NULL;
4062}
4063
Fam Zheng04df7652014-10-31 11:32:54 +08004064BlockDriverState *bdrv_next_node(BlockDriverState *bs)
4065{
4066 if (!bs) {
4067 return QTAILQ_FIRST(&graph_bdrv_states);
4068 }
4069 return QTAILQ_NEXT(bs, node_list);
4070}
4071
Kevin Wolf0f122642018-03-28 18:29:18 +02004072BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
4073{
4074 if (!bs) {
4075 return QTAILQ_FIRST(&all_bdrv_states);
4076 }
4077 return QTAILQ_NEXT(bs, bs_list);
4078}
4079
Fam Zheng20a9e772014-10-31 11:32:55 +08004080const char *bdrv_get_node_name(const BlockDriverState *bs)
4081{
4082 return bs->node_name;
4083}
4084
Kevin Wolf1f0c4612016-03-22 18:38:44 +01004085const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01004086{
4087 BdrvChild *c;
4088 const char *name;
4089
4090 /* If multiple parents have a name, just pick the first one. */
4091 QLIST_FOREACH(c, &bs->parents, next_parent) {
4092 if (c->role->get_name) {
4093 name = c->role->get_name(c);
4094 if (name && *name) {
4095 return name;
4096 }
4097 }
4098 }
4099
4100 return NULL;
4101}
4102
Markus Armbruster7f06d472014-10-07 13:59:12 +02004103/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02004104const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00004105{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01004106 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00004107}
4108
Alberto Garcia9b2aa842015-04-08 12:29:18 +03004109/* This can be used to identify nodes that might not have a device
4110 * name associated. Since node and device names live in the same
4111 * namespace, the result is unambiguous. The exception is if both are
4112 * absent, then this returns an empty (non-null) string. */
4113const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
4114{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01004115 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03004116}
4117
Markus Armbrusterc8433282012-06-05 16:49:24 +02004118int bdrv_get_flags(BlockDriverState *bs)
4119{
4120 return bs->open_flags;
4121}
4122
Peter Lieven3ac21622013-06-28 12:47:42 +02004123int bdrv_has_zero_init_1(BlockDriverState *bs)
4124{
4125 return 1;
4126}
4127
Kevin Wolff2feebb2010-04-14 17:30:35 +02004128int bdrv_has_zero_init(BlockDriverState *bs)
4129{
Max Reitzd470ad42017-11-10 21:31:09 +01004130 if (!bs->drv) {
4131 return 0;
4132 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02004133
Paolo Bonzini11212d82013-09-04 19:00:27 +02004134 /* If BS is a copy on write image, it is initialized to
4135 the contents of the base image, which may not be zeroes. */
Kevin Wolf760e0062015-06-17 14:55:21 +02004136 if (bs->backing) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02004137 return 0;
4138 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02004139 if (bs->drv->bdrv_has_zero_init) {
4140 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02004141 }
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03004142 if (bs->file && bs->drv->is_filter) {
4143 return bdrv_has_zero_init(bs->file->bs);
4144 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02004145
Peter Lieven3ac21622013-06-28 12:47:42 +02004146 /* safe default */
4147 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02004148}
4149
Peter Lieven4ce78692013-10-24 12:06:54 +02004150bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
4151{
4152 BlockDriverInfo bdi;
4153
Kevin Wolf760e0062015-06-17 14:55:21 +02004154 if (bs->backing) {
Peter Lieven4ce78692013-10-24 12:06:54 +02004155 return false;
4156 }
4157
4158 if (bdrv_get_info(bs, &bdi) == 0) {
4159 return bdi.unallocated_blocks_are_zero;
4160 }
4161
4162 return false;
4163}
4164
4165bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
4166{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03004167 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02004168 return false;
4169 }
4170
Eric Blakee24d8132018-01-26 13:34:39 -06004171 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02004172}
4173
aliguori045df332009-03-05 23:00:48 +00004174const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
4175{
Kevin Wolf760e0062015-06-17 14:55:21 +02004176 if (bs->backing && bs->backing->bs->encrypted)
aliguori045df332009-03-05 23:00:48 +00004177 return bs->backing_file;
4178 else if (bs->encrypted)
4179 return bs->filename;
4180 else
4181 return NULL;
4182}
4183
ths5fafdf22007-09-16 21:08:06 +00004184void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00004185 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00004186{
Kevin Wolf3574c602011-10-26 11:02:11 +02004187 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00004188}
4189
bellardfaea38e2006-08-05 21:31:00 +00004190int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4191{
4192 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03004193 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
4194 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00004195 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03004196 }
4197 if (!drv->bdrv_get_info) {
4198 if (bs->file && drv->is_filter) {
4199 return bdrv_get_info(bs->file->bs, bdi);
4200 }
bellardfaea38e2006-08-05 21:31:00 +00004201 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03004202 }
bellardfaea38e2006-08-05 21:31:00 +00004203 memset(bdi, 0, sizeof(*bdi));
4204 return drv->bdrv_get_info(bs, bdi);
4205}
4206
Max Reitzeae041f2013-10-09 10:46:16 +02004207ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4208{
4209 BlockDriver *drv = bs->drv;
4210 if (drv && drv->bdrv_get_specific_info) {
4211 return drv->bdrv_get_specific_info(bs);
4212 }
4213 return NULL;
4214}
4215
Eric Blakea31939e2015-11-18 01:52:54 -07004216void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01004217{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02004218 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01004219 return;
4220 }
4221
Kevin Wolfbf736fe2013-06-05 15:17:55 +02004222 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01004223}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01004224
Kevin Wolf41c695c2012-12-06 14:32:58 +01004225int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4226 const char *tag)
4227{
4228 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004229 bs = bs->file ? bs->file->bs : NULL;
Kevin Wolf41c695c2012-12-06 14:32:58 +01004230 }
4231
4232 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4233 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4234 }
4235
4236 return -ENOTSUP;
4237}
4238
Fam Zheng4cc70e92013-11-20 10:01:54 +08004239int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
4240{
4241 while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004242 bs = bs->file ? bs->file->bs : NULL;
Fam Zheng4cc70e92013-11-20 10:01:54 +08004243 }
4244
4245 if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4246 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4247 }
4248
4249 return -ENOTSUP;
4250}
4251
Kevin Wolf41c695c2012-12-06 14:32:58 +01004252int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4253{
Max Reitz938789e2014-03-10 23:44:08 +01004254 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004255 bs = bs->file ? bs->file->bs : NULL;
Kevin Wolf41c695c2012-12-06 14:32:58 +01004256 }
4257
4258 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4259 return bs->drv->bdrv_debug_resume(bs, tag);
4260 }
4261
4262 return -ENOTSUP;
4263}
4264
4265bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
4266{
4267 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004268 bs = bs->file ? bs->file->bs : NULL;
Kevin Wolf41c695c2012-12-06 14:32:58 +01004269 }
4270
4271 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4272 return bs->drv->bdrv_debug_is_suspended(bs, tag);
4273 }
4274
4275 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01004276}
4277
Jeff Codyb1b1d782012-10-16 15:49:09 -04004278/* backing_file can either be relative, or absolute, or a protocol. If it is
4279 * relative, it must be relative to the chain. So, passing in bs->filename
4280 * from a BDS as backing_file should not be done, as that may be relative to
4281 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004282BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4283 const char *backing_file)
4284{
Jeff Codyb1b1d782012-10-16 15:49:09 -04004285 char *filename_full = NULL;
4286 char *backing_file_full = NULL;
4287 char *filename_tmp = NULL;
4288 int is_protocol = 0;
4289 BlockDriverState *curr_bs = NULL;
4290 BlockDriverState *retval = NULL;
Jeff Cody418661e2017-01-25 20:08:20 -05004291 Error *local_error = NULL;
Jeff Codyb1b1d782012-10-16 15:49:09 -04004292
4293 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004294 return NULL;
4295 }
4296
Jeff Codyb1b1d782012-10-16 15:49:09 -04004297 filename_full = g_malloc(PATH_MAX);
4298 backing_file_full = g_malloc(PATH_MAX);
4299 filename_tmp = g_malloc(PATH_MAX);
4300
4301 is_protocol = path_has_protocol(backing_file);
4302
Kevin Wolf760e0062015-06-17 14:55:21 +02004303 for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
Jeff Codyb1b1d782012-10-16 15:49:09 -04004304
4305 /* If either of the filename paths is actually a protocol, then
4306 * compare unmodified paths; otherwise make paths relative */
4307 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4308 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Kevin Wolf760e0062015-06-17 14:55:21 +02004309 retval = curr_bs->backing->bs;
Jeff Codyb1b1d782012-10-16 15:49:09 -04004310 break;
4311 }
Jeff Cody418661e2017-01-25 20:08:20 -05004312 /* Also check against the full backing filename for the image */
4313 bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4314 &local_error);
4315 if (local_error == NULL) {
4316 if (strcmp(backing_file, backing_file_full) == 0) {
4317 retval = curr_bs->backing->bs;
4318 break;
4319 }
4320 } else {
4321 error_free(local_error);
4322 local_error = NULL;
4323 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004324 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04004325 /* If not an absolute filename path, make it relative to the current
4326 * image's filename path */
4327 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4328 backing_file);
4329
4330 /* We are going to compare absolute pathnames */
4331 if (!realpath(filename_tmp, filename_full)) {
4332 continue;
4333 }
4334
4335 /* We need to make sure the backing filename we are comparing against
4336 * is relative to the current image filename (or absolute) */
4337 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4338 curr_bs->backing_file);
4339
4340 if (!realpath(filename_tmp, backing_file_full)) {
4341 continue;
4342 }
4343
4344 if (strcmp(backing_file_full, filename_full) == 0) {
Kevin Wolf760e0062015-06-17 14:55:21 +02004345 retval = curr_bs->backing->bs;
Jeff Codyb1b1d782012-10-16 15:49:09 -04004346 break;
4347 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004348 }
4349 }
4350
Jeff Codyb1b1d782012-10-16 15:49:09 -04004351 g_free(filename_full);
4352 g_free(backing_file_full);
4353 g_free(filename_tmp);
4354 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004355}
4356
bellardea2384d2004-08-01 21:59:26 +00004357void bdrv_init(void)
4358{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05004359 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00004360}
pbrookce1a14d2006-08-07 02:38:06 +00004361
Markus Armbrustereb852012009-10-27 18:41:44 +01004362void bdrv_init_with_whitelist(void)
4363{
4364 use_bdrv_whitelist = 1;
4365 bdrv_init();
4366}
4367
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004368static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
4369 Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06004370{
Kevin Wolf4417ab72017-05-04 18:52:37 +02004371 BdrvChild *child, *parent;
Kevin Wolf9c5e6592017-05-04 18:52:40 +02004372 uint64_t perm, shared_perm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004373 Error *local_err = NULL;
4374 int ret;
4375
Kevin Wolf3456a8d2014-03-11 10:58:39 +01004376 if (!bs->drv) {
4377 return;
Anthony Liguori0f154232011-11-14 15:09:45 -06004378 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01004379
Kevin Wolf04c01a52016-01-13 15:56:06 +01004380 if (!(bs->open_flags & BDRV_O_INACTIVE)) {
Alexey Kardashevskiy7ea2d262014-10-09 13:50:46 +11004381 return;
4382 }
Alexey Kardashevskiy7ea2d262014-10-09 13:50:46 +11004383
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03004384 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004385 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08004386 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08004387 error_propagate(errp, local_err);
4388 return;
4389 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004390 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08004391
Kevin Wolfdafe0962017-11-16 13:00:01 +01004392 /*
4393 * Update permissions, they may differ for inactive nodes.
4394 *
4395 * Note that the required permissions of inactive images are always a
4396 * subset of the permissions required after activating the image. This
4397 * allows us to just get the permissions upfront without restricting
4398 * drv->bdrv_invalidate_cache().
4399 *
4400 * It also means that in error cases, we don't have to try and revert to
4401 * the old permissions (which is an operation that could fail, too). We can
4402 * just keep the extended permissions for the next time that an activation
4403 * of the image is tried.
4404 */
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03004405 bs->open_flags &= ~BDRV_O_INACTIVE;
Kevin Wolfdafe0962017-11-16 13:00:01 +01004406 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4407 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4408 if (ret < 0) {
4409 bs->open_flags |= BDRV_O_INACTIVE;
4410 error_propagate(errp, local_err);
4411 return;
4412 }
4413 bdrv_set_perm(bs, perm, shared_perm);
4414
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004415 if (bs->drv->bdrv_co_invalidate_cache) {
4416 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08004417 if (local_err) {
4418 bs->open_flags |= BDRV_O_INACTIVE;
4419 error_propagate(errp, local_err);
4420 return;
4421 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01004422 }
4423
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004424 ret = refresh_total_sectors(bs, bs->total_sectors);
4425 if (ret < 0) {
Kevin Wolf04c01a52016-01-13 15:56:06 +01004426 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004427 error_setg_errno(errp, -ret, "Could not refresh total sector count");
4428 return;
4429 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02004430
4431 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4432 if (parent->role->activate) {
4433 parent->role->activate(parent, &local_err);
4434 if (local_err) {
4435 error_propagate(errp, local_err);
4436 return;
4437 }
4438 }
4439 }
Anthony Liguori0f154232011-11-14 15:09:45 -06004440}
4441
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004442typedef struct InvalidateCacheCo {
4443 BlockDriverState *bs;
4444 Error **errp;
4445 bool done;
4446} InvalidateCacheCo;
4447
4448static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
4449{
4450 InvalidateCacheCo *ico = opaque;
4451 bdrv_co_invalidate_cache(ico->bs, ico->errp);
4452 ico->done = true;
4453}
4454
4455void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4456{
4457 Coroutine *co;
4458 InvalidateCacheCo ico = {
4459 .bs = bs,
4460 .done = false,
4461 .errp = errp
4462 };
4463
4464 if (qemu_in_coroutine()) {
4465 /* Fast-path if already in coroutine context */
4466 bdrv_invalidate_cache_co_entry(&ico);
4467 } else {
4468 co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
4469 qemu_coroutine_enter(co);
4470 BDRV_POLL_WHILE(bs, !ico.done);
4471 }
4472}
4473
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004474void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06004475{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01004476 BlockDriverState *bs;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004477 Error *local_err = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02004478 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06004479
Kevin Wolf88be7b42016-05-20 18:49:07 +02004480 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004481 AioContext *aio_context = bdrv_get_aio_context(bs);
4482
4483 aio_context_acquire(aio_context);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004484 bdrv_invalidate_cache(bs, &local_err);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004485 aio_context_release(aio_context);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004486 if (local_err) {
4487 error_propagate(errp, local_err);
Max Reitz5e003f12017-11-10 18:25:45 +01004488 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004489 return;
4490 }
Anthony Liguori0f154232011-11-14 15:09:45 -06004491 }
4492}
4493
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004494static int bdrv_inactivate_recurse(BlockDriverState *bs,
4495 bool setting_flag)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004496{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02004497 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004498 int ret;
4499
Max Reitzd470ad42017-11-10 21:31:09 +01004500 if (!bs->drv) {
4501 return -ENOMEDIUM;
4502 }
4503
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004504 if (!setting_flag && bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004505 ret = bs->drv->bdrv_inactivate(bs);
4506 if (ret < 0) {
4507 return ret;
4508 }
4509 }
4510
Stefan Hajnoczi7d5b5262017-08-23 21:42:42 +08004511 if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) {
Kevin Wolf9c5e6592017-05-04 18:52:40 +02004512 uint64_t perm, shared_perm;
4513
Kevin Wolfcfa1a572017-05-04 18:52:38 +02004514 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4515 if (parent->role->inactivate) {
4516 ret = parent->role->inactivate(parent);
4517 if (ret < 0) {
Kevin Wolfcfa1a572017-05-04 18:52:38 +02004518 return ret;
4519 }
4520 }
4521 }
Kevin Wolf9c5e6592017-05-04 18:52:40 +02004522
Stefan Hajnoczi7d5b5262017-08-23 21:42:42 +08004523 bs->open_flags |= BDRV_O_INACTIVE;
4524
Kevin Wolf9c5e6592017-05-04 18:52:40 +02004525 /* Update permissions, they may differ for inactive nodes */
4526 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
Kevin Wolf3121fb42017-09-14 14:42:12 +02004527 bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
Kevin Wolf9c5e6592017-05-04 18:52:40 +02004528 bdrv_set_perm(bs, perm, shared_perm);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004529 }
Kevin Wolf38701b62017-05-04 18:52:39 +02004530
4531 QLIST_FOREACH(child, &bs->children, next) {
4532 ret = bdrv_inactivate_recurse(child->bs, setting_flag);
4533 if (ret < 0) {
4534 return ret;
4535 }
4536 }
4537
Vladimir Sementsov-Ogievskiy615b5dc2017-06-28 15:05:30 +03004538 /* At this point persistent bitmaps should be already stored by the format
4539 * driver */
4540 bdrv_release_persistent_dirty_bitmaps(bs);
4541
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004542 return 0;
4543}
4544
4545int bdrv_inactivate_all(void)
4546{
Max Reitz79720af2016-03-16 19:54:44 +01004547 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02004548 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004549 int ret = 0;
4550 int pass;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00004551 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004552
Kevin Wolf88be7b42016-05-20 18:49:07 +02004553 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00004554 AioContext *aio_context = bdrv_get_aio_context(bs);
4555
4556 if (!g_slist_find(aio_ctxs, aio_context)) {
4557 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4558 aio_context_acquire(aio_context);
4559 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004560 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004561
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004562 /* We do two passes of inactivation. The first pass calls to drivers'
4563 * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
4564 * the second pass sets the BDRV_O_INACTIVE flag so that no further write
4565 * is allowed. */
4566 for (pass = 0; pass < 2; pass++) {
Kevin Wolf88be7b42016-05-20 18:49:07 +02004567 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004568 ret = bdrv_inactivate_recurse(bs, pass);
4569 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01004570 bdrv_next_cleanup(&it);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004571 goto out;
4572 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004573 }
4574 }
4575
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004576out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00004577 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4578 AioContext *aio_context = ctx->data;
4579 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004580 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00004581 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004582
4583 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004584}
4585
Kevin Wolff9f05dc2011-07-15 13:50:26 +02004586/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00004587/* removable device support */
4588
4589/**
4590 * Return TRUE if the media is present
4591 */
Max Reitze031f752015-10-19 17:53:11 +02004592bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00004593{
4594 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02004595 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02004596
Max Reitze031f752015-10-19 17:53:11 +02004597 if (!drv) {
4598 return false;
4599 }
Max Reitz28d7a782015-10-19 17:53:13 +02004600 if (drv->bdrv_is_inserted) {
4601 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02004602 }
Max Reitz28d7a782015-10-19 17:53:13 +02004603 QLIST_FOREACH(child, &bs->children, next) {
4604 if (!bdrv_is_inserted(child->bs)) {
4605 return false;
4606 }
4607 }
4608 return true;
bellard19cb3732006-08-19 11:45:59 +00004609}
4610
4611/**
bellard19cb3732006-08-19 11:45:59 +00004612 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4613 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02004614void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00004615{
4616 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00004617
Markus Armbruster822e1cd2011-07-20 18:23:42 +02004618 if (drv && drv->bdrv_eject) {
4619 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00004620 }
bellard19cb3732006-08-19 11:45:59 +00004621}
4622
bellard19cb3732006-08-19 11:45:59 +00004623/**
4624 * Lock or unlock the media (if it is locked, the user won't be able
4625 * to eject it manually).
4626 */
Markus Armbruster025e8492011-09-06 18:58:47 +02004627void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00004628{
4629 BlockDriver *drv = bs->drv;
4630
Markus Armbruster025e8492011-09-06 18:58:47 +02004631 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01004632
Markus Armbruster025e8492011-09-06 18:58:47 +02004633 if (drv && drv->bdrv_lock_medium) {
4634 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00004635 }
4636}
ths985a03b2007-12-24 16:10:43 +00004637
Fam Zheng9fcb0252013-08-23 09:14:46 +08004638/* Get a reference to bs */
4639void bdrv_ref(BlockDriverState *bs)
4640{
4641 bs->refcnt++;
4642}
4643
4644/* Release a previously grabbed reference to bs.
4645 * If after releasing, reference count is zero, the BlockDriverState is
4646 * deleted. */
4647void bdrv_unref(BlockDriverState *bs)
4648{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04004649 if (!bs) {
4650 return;
4651 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08004652 assert(bs->refcnt > 0);
4653 if (--bs->refcnt == 0) {
4654 bdrv_delete(bs);
4655 }
4656}
4657
Fam Zhengfbe40ff2014-05-23 21:29:42 +08004658struct BdrvOpBlocker {
4659 Error *reason;
4660 QLIST_ENTRY(BdrvOpBlocker) list;
4661};
4662
4663bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4664{
4665 BdrvOpBlocker *blocker;
4666 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4667 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4668 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Eduardo Habkost57ef3f12017-06-08 10:39:03 -03004669 error_propagate(errp, error_copy(blocker->reason));
4670 error_prepend(errp, "Node '%s' is busy: ",
4671 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08004672 return true;
4673 }
4674 return false;
4675}
4676
4677void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4678{
4679 BdrvOpBlocker *blocker;
4680 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4681
Markus Armbruster5839e532014-08-19 10:31:08 +02004682 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08004683 blocker->reason = reason;
4684 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4685}
4686
4687void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4688{
4689 BdrvOpBlocker *blocker, *next;
4690 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4691 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4692 if (blocker->reason == reason) {
4693 QLIST_REMOVE(blocker, list);
4694 g_free(blocker);
4695 }
4696 }
4697}
4698
4699void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4700{
4701 int i;
4702 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4703 bdrv_op_block(bs, i, reason);
4704 }
4705}
4706
4707void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4708{
4709 int i;
4710 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4711 bdrv_op_unblock(bs, i, reason);
4712 }
4713}
4714
4715bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4716{
4717 int i;
4718
4719 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4720 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4721 return false;
4722 }
4723 }
4724 return true;
4725}
4726
Luiz Capitulinod92ada22012-11-30 10:52:09 -02004727void bdrv_img_create(const char *filename, const char *fmt,
4728 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08004729 char *options, uint64_t img_size, int flags, bool quiet,
4730 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004731{
Chunyan Liu83d05212014-06-05 17:20:51 +08004732 QemuOptsList *create_opts = NULL;
4733 QemuOpts *opts = NULL;
4734 const char *backing_fmt, *backing_file;
4735 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004736 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02004737 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004738 int ret = 0;
4739
4740 /* Find driver and parse its options */
4741 drv = bdrv_find_format(fmt);
4742 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02004743 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02004744 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004745 }
4746
Max Reitzb65a5e12015-02-05 13:58:12 -05004747 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004748 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02004749 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004750 }
4751
Max Reitzc6149722014-12-02 18:32:45 +01004752 if (!drv->create_opts) {
4753 error_setg(errp, "Format driver '%s' does not support image creation",
4754 drv->format_name);
4755 return;
4756 }
4757
4758 if (!proto_drv->create_opts) {
4759 error_setg(errp, "Protocol driver '%s' does not support image creation",
4760 proto_drv->format_name);
4761 return;
4762 }
4763
Chunyan Liuc282e1f2014-06-05 17:21:11 +08004764 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4765 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004766
4767 /* Create parameter list with default values */
Chunyan Liu83d05212014-06-05 17:20:51 +08004768 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01004769 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004770
4771 /* Parse -o options */
4772 if (options) {
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01004773 qemu_opts_do_parse(opts, options, NULL, &local_err);
4774 if (local_err) {
4775 error_report_err(local_err);
4776 local_err = NULL;
Chunyan Liu83d05212014-06-05 17:20:51 +08004777 error_setg(errp, "Invalid options for file format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004778 goto out;
4779 }
4780 }
4781
4782 if (base_filename) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01004783 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
Markus Armbruster6be41942015-02-12 17:49:02 +01004784 if (local_err) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02004785 error_setg(errp, "Backing file not supported for file format '%s'",
4786 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004787 goto out;
4788 }
4789 }
4790
4791 if (base_fmt) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01004792 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
Markus Armbruster6be41942015-02-12 17:49:02 +01004793 if (local_err) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02004794 error_setg(errp, "Backing file format not supported for file "
4795 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004796 goto out;
4797 }
4798 }
4799
Chunyan Liu83d05212014-06-05 17:20:51 +08004800 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
4801 if (backing_file) {
4802 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02004803 error_setg(errp, "Error: Trying to create an image with the "
4804 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01004805 goto out;
4806 }
4807 }
4808
Chunyan Liu83d05212014-06-05 17:20:51 +08004809 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004810
John Snow6e6e55f2017-07-17 20:34:22 -04004811 /* The size for the image must always be specified, unless we have a backing
4812 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05004813 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04004814 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
4815 BlockDriverState *bs;
4816 char *full_backing = g_new0(char, PATH_MAX);
4817 int back_flags;
4818 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02004819
John Snow6e6e55f2017-07-17 20:34:22 -04004820 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
4821 full_backing, PATH_MAX,
4822 &local_err);
4823 if (local_err) {
Max Reitz29168012014-11-26 17:20:27 +01004824 g_free(full_backing);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004825 goto out;
4826 }
John Snow6e6e55f2017-07-17 20:34:22 -04004827
4828 /* backing files always opened read-only */
4829 back_flags = flags;
4830 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4831
Fam Zhengcc954f02017-12-15 16:04:45 +08004832 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04004833 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04004834 qdict_put_str(backing_options, "driver", backing_fmt);
4835 }
Fam Zhengcc954f02017-12-15 16:04:45 +08004836 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04004837
4838 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
4839 &local_err);
4840 g_free(full_backing);
4841 if (!bs && size != -1) {
4842 /* Couldn't open BS, but we have a size, so it's nonfatal */
4843 warn_reportf_err(local_err,
4844 "Could not verify backing image. "
4845 "This may become an error in future versions.\n");
4846 local_err = NULL;
4847 } else if (!bs) {
4848 /* Couldn't open bs, do not have size */
4849 error_append_hint(&local_err,
4850 "Could not open backing image to determine size.\n");
4851 goto out;
4852 } else {
4853 if (size == -1) {
4854 /* Opened BS, have no size */
4855 size = bdrv_getlength(bs);
4856 if (size < 0) {
4857 error_setg_errno(errp, -size, "Could not get size of '%s'",
4858 backing_file);
4859 bdrv_unref(bs);
4860 goto out;
4861 }
4862 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
4863 }
4864 bdrv_unref(bs);
4865 }
4866 } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
4867
4868 if (size == -1) {
4869 error_setg(errp, "Image creation needs a size parameter");
4870 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004871 }
4872
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01004873 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02004874 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08004875 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01004876 puts("");
4877 }
Chunyan Liu83d05212014-06-05 17:20:51 +08004878
Chunyan Liuc282e1f2014-06-05 17:21:11 +08004879 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08004880
Max Reitzcc84d902013-09-06 17:14:26 +02004881 if (ret == -EFBIG) {
4882 /* This is generally a better message than whatever the driver would
4883 * deliver (especially because of the cluster_size_hint), since that
4884 * is most probably not much different from "image too large". */
4885 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08004886 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02004887 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004888 }
Max Reitzcc84d902013-09-06 17:14:26 +02004889 error_setg(errp, "The image size is too large for file format '%s'"
4890 "%s", fmt, cluster_size_hint);
4891 error_free(local_err);
4892 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004893 }
4894
4895out:
Chunyan Liu83d05212014-06-05 17:20:51 +08004896 qemu_opts_del(opts);
4897 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004898 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004899}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01004900
4901AioContext *bdrv_get_aio_context(BlockDriverState *bs)
4902{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00004903 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004904}
4905
Stefan Hajnoczi7719f3c2018-02-16 16:50:12 +00004906AioWait *bdrv_get_aio_wait(BlockDriverState *bs)
4907{
4908 return bs ? &bs->wait : NULL;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004909}
4910
Fam Zheng052a7572017-04-10 20:09:25 +08004911void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4912{
4913 aio_co_enter(bdrv_get_aio_context(bs), co);
4914}
4915
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01004916static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4917{
4918 QLIST_REMOVE(ban, list);
4919 g_free(ban);
4920}
4921
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004922void bdrv_detach_aio_context(BlockDriverState *bs)
4923{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01004924 BdrvAioNotifier *baf, *baf_tmp;
Max Reitzb97511c2016-05-17 13:38:04 +02004925 BdrvChild *child;
Max Reitz33384422014-06-20 21:57:33 +02004926
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004927 if (!bs->drv) {
4928 return;
4929 }
4930
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01004931 assert(!bs->walking_aio_notifiers);
4932 bs->walking_aio_notifiers = true;
4933 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
4934 if (baf->deleted) {
4935 bdrv_do_remove_aio_context_notifier(baf);
4936 } else {
4937 baf->detach_aio_context(baf->opaque);
4938 }
Max Reitz33384422014-06-20 21:57:33 +02004939 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01004940 /* Never mind iterating again to check for ->deleted. bdrv_close() will
4941 * remove remaining aio notifiers if we aren't called again.
4942 */
4943 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02004944
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004945 if (bs->drv->bdrv_detach_aio_context) {
4946 bs->drv->bdrv_detach_aio_context(bs);
4947 }
Max Reitzb97511c2016-05-17 13:38:04 +02004948 QLIST_FOREACH(child, &bs->children, next) {
4949 bdrv_detach_aio_context(child->bs);
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004950 }
4951
4952 bs->aio_context = NULL;
4953}
4954
4955void bdrv_attach_aio_context(BlockDriverState *bs,
4956 AioContext *new_context)
4957{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01004958 BdrvAioNotifier *ban, *ban_tmp;
Max Reitzb97511c2016-05-17 13:38:04 +02004959 BdrvChild *child;
Max Reitz33384422014-06-20 21:57:33 +02004960
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004961 if (!bs->drv) {
4962 return;
4963 }
4964
4965 bs->aio_context = new_context;
4966
Max Reitzb97511c2016-05-17 13:38:04 +02004967 QLIST_FOREACH(child, &bs->children, next) {
4968 bdrv_attach_aio_context(child->bs, new_context);
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004969 }
4970 if (bs->drv->bdrv_attach_aio_context) {
4971 bs->drv->bdrv_attach_aio_context(bs, new_context);
4972 }
Max Reitz33384422014-06-20 21:57:33 +02004973
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01004974 assert(!bs->walking_aio_notifiers);
4975 bs->walking_aio_notifiers = true;
4976 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
4977 if (ban->deleted) {
4978 bdrv_do_remove_aio_context_notifier(ban);
4979 } else {
4980 ban->attached_aio_context(new_context, ban->opaque);
4981 }
Max Reitz33384422014-06-20 21:57:33 +02004982 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01004983 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004984}
4985
4986void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
4987{
Fam Zhengaabf5912017-04-05 14:44:24 +08004988 AioContext *ctx = bdrv_get_aio_context(bs);
Paolo Bonzinic2b64282017-03-14 12:11:57 +01004989
Fam Zhengaabf5912017-04-05 14:44:24 +08004990 aio_disable_external(ctx);
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02004991 bdrv_parent_drained_begin(bs, NULL, false);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004992 bdrv_drain(bs); /* ensure there are no in-flight requests */
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004993
Paolo Bonzinic2b64282017-03-14 12:11:57 +01004994 while (aio_poll(ctx, false)) {
4995 /* wait for all bottom halves to execute */
4996 }
4997
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02004998 bdrv_detach_aio_context(bs);
4999
5000 /* This function executes in the old AioContext so acquire the new one in
5001 * case it runs in a different thread.
5002 */
5003 aio_context_acquire(new_context);
5004 bdrv_attach_aio_context(bs, new_context);
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02005005 bdrv_parent_drained_end(bs, NULL, false);
Fam Zhengaabf5912017-04-05 14:44:24 +08005006 aio_enable_external(ctx);
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005007 aio_context_release(new_context);
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01005008}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02005009
Max Reitz33384422014-06-20 21:57:33 +02005010void bdrv_add_aio_context_notifier(BlockDriverState *bs,
5011 void (*attached_aio_context)(AioContext *new_context, void *opaque),
5012 void (*detach_aio_context)(void *opaque), void *opaque)
5013{
5014 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
5015 *ban = (BdrvAioNotifier){
5016 .attached_aio_context = attached_aio_context,
5017 .detach_aio_context = detach_aio_context,
5018 .opaque = opaque
5019 };
5020
5021 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
5022}
5023
5024void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
5025 void (*attached_aio_context)(AioContext *,
5026 void *),
5027 void (*detach_aio_context)(void *),
5028 void *opaque)
5029{
5030 BdrvAioNotifier *ban, *ban_next;
5031
5032 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5033 if (ban->attached_aio_context == attached_aio_context &&
5034 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005035 ban->opaque == opaque &&
5036 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02005037 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005038 if (bs->walking_aio_notifiers) {
5039 ban->deleted = true;
5040 } else {
5041 bdrv_do_remove_aio_context_notifier(ban);
5042 }
Max Reitz33384422014-06-20 21:57:33 +02005043 return;
5044 }
5045 }
5046
5047 abort();
5048}
5049
Max Reitz77485432014-10-27 11:12:50 +01005050int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02005051 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5052 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02005053{
Max Reitzd470ad42017-11-10 21:31:09 +01005054 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02005055 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01005056 return -ENOMEDIUM;
5057 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08005058 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02005059 error_setg(errp, "Block driver '%s' does not support option amendment",
5060 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02005061 return -ENOTSUP;
5062 }
Max Reitzd1402b52018-05-09 23:00:18 +02005063 return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02005064}
Benoît Canetf6186f42013-10-02 14:33:48 +02005065
Benoît Canetb5042a32014-03-03 19:11:34 +01005066/* This function will be called by the bdrv_recurse_is_first_non_filter method
5067 * of block filter and by bdrv_is_first_non_filter.
5068 * It is used to test if the given bs is the candidate or recurse more in the
5069 * node graph.
Benoît Canet212a5a82014-01-23 21:31:36 +01005070 */
Benoît Canet212a5a82014-01-23 21:31:36 +01005071bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5072 BlockDriverState *candidate)
Benoît Canetf6186f42013-10-02 14:33:48 +02005073{
Benoît Canetb5042a32014-03-03 19:11:34 +01005074 /* return false if basic checks fails */
5075 if (!bs || !bs->drv) {
5076 return false;
5077 }
5078
5079 /* the code reached a non block filter driver -> check if the bs is
5080 * the same as the candidate. It's the recursion termination condition.
5081 */
5082 if (!bs->drv->is_filter) {
5083 return bs == candidate;
5084 }
5085 /* Down this path the driver is a block filter driver */
5086
5087 /* If the block filter recursion method is defined use it to recurse down
5088 * the node graph.
5089 */
5090 if (bs->drv->bdrv_recurse_is_first_non_filter) {
Benoît Canet212a5a82014-01-23 21:31:36 +01005091 return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5092 }
5093
Benoît Canetb5042a32014-03-03 19:11:34 +01005094 /* the driver is a block filter but don't allow to recurse -> return false
5095 */
5096 return false;
Benoît Canet212a5a82014-01-23 21:31:36 +01005097}
5098
5099/* This function checks if the candidate is the first non filter bs down it's
5100 * bs chain. Since we don't have pointers to parents it explore all bs chains
5101 * from the top. Some filters can choose not to pass down the recursion.
5102 */
5103bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5104{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01005105 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02005106 BdrvNextIterator it;
Benoît Canet212a5a82014-01-23 21:31:36 +01005107
5108 /* walk down the bs forest recursively */
Kevin Wolf88be7b42016-05-20 18:49:07 +02005109 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Benoît Canet212a5a82014-01-23 21:31:36 +01005110 bool perm;
5111
Benoît Canetb5042a32014-03-03 19:11:34 +01005112 /* try to recurse in this top level bs */
Kevin Wolfe6dc8a12014-02-04 11:45:31 +01005113 perm = bdrv_recurse_is_first_non_filter(bs, candidate);
Benoît Canet212a5a82014-01-23 21:31:36 +01005114
5115 /* candidate is the first non filter */
5116 if (perm) {
Max Reitz5e003f12017-11-10 18:25:45 +01005117 bdrv_next_cleanup(&it);
Benoît Canet212a5a82014-01-23 21:31:36 +01005118 return true;
5119 }
5120 }
5121
5122 return false;
Benoît Canetf6186f42013-10-02 14:33:48 +02005123}
Benoît Canet09158f02014-06-27 18:25:25 +02005124
Wen Congyange12f3782015-07-17 10:12:22 +08005125BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5126 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02005127{
5128 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005129 AioContext *aio_context;
5130
Benoît Canet09158f02014-06-27 18:25:25 +02005131 if (!to_replace_bs) {
5132 error_setg(errp, "Node name '%s' not found", node_name);
5133 return NULL;
5134 }
5135
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005136 aio_context = bdrv_get_aio_context(to_replace_bs);
5137 aio_context_acquire(aio_context);
5138
Benoît Canet09158f02014-06-27 18:25:25 +02005139 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005140 to_replace_bs = NULL;
5141 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02005142 }
5143
5144 /* We don't want arbitrary node of the BDS chain to be replaced only the top
5145 * most non filter in order to prevent data corruption.
5146 * Another benefit is that this tests exclude backing files which are
5147 * blocked by the backing blockers.
5148 */
Wen Congyange12f3782015-07-17 10:12:22 +08005149 if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
Benoît Canet09158f02014-06-27 18:25:25 +02005150 error_setg(errp, "Only top most non filter can be replaced");
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005151 to_replace_bs = NULL;
5152 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02005153 }
5154
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005155out:
5156 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02005157 return to_replace_bs;
5158}
Ming Lei448ad912014-07-04 18:04:33 +08005159
Max Reitz91af7012014-07-18 20:24:56 +02005160static bool append_open_options(QDict *d, BlockDriverState *bs)
5161{
5162 const QDictEntry *entry;
Kevin Wolf9e700c12015-04-24 15:20:28 +02005163 QemuOptDesc *desc;
Kevin Wolf260fecf2015-04-27 13:46:22 +02005164 BdrvChild *child;
Max Reitz91af7012014-07-18 20:24:56 +02005165 bool found_any = false;
Kevin Wolf260fecf2015-04-27 13:46:22 +02005166 const char *p;
Max Reitz91af7012014-07-18 20:24:56 +02005167
5168 for (entry = qdict_first(bs->options); entry;
5169 entry = qdict_next(bs->options, entry))
5170 {
Kevin Wolf260fecf2015-04-27 13:46:22 +02005171 /* Exclude options for children */
5172 QLIST_FOREACH(child, &bs->children, next) {
5173 if (strstart(qdict_entry_key(entry), child->name, &p)
5174 && (!*p || *p == '.'))
5175 {
5176 break;
5177 }
5178 }
5179 if (child) {
Kevin Wolf9e700c12015-04-24 15:20:28 +02005180 continue;
Max Reitz91af7012014-07-18 20:24:56 +02005181 }
Kevin Wolf9e700c12015-04-24 15:20:28 +02005182
5183 /* And exclude all non-driver-specific options */
5184 for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
5185 if (!strcmp(qdict_entry_key(entry), desc->name)) {
5186 break;
5187 }
5188 }
5189 if (desc->name) {
5190 continue;
5191 }
5192
Marc-André Lureauf5a74a52018-04-19 17:01:44 +02005193 qdict_put_obj(d, qdict_entry_key(entry),
5194 qobject_ref(qdict_entry_value(entry)));
Kevin Wolf9e700c12015-04-24 15:20:28 +02005195 found_any = true;
Max Reitz91af7012014-07-18 20:24:56 +02005196 }
5197
5198 return found_any;
5199}
5200
5201/* Updates the following BDS fields:
5202 * - exact_filename: A filename which may be used for opening a block device
5203 * which (mostly) equals the given BDS (even without any
5204 * other options; so reading and writing must return the same
5205 * results, but caching etc. may be different)
5206 * - full_open_options: Options which, when given when opening a block device
5207 * (without a filename), result in a BDS (mostly)
5208 * equalling the given one
5209 * - filename: If exact_filename is set, it is copied here. Otherwise,
5210 * full_open_options is converted to a JSON object, prefixed with
5211 * "json:" (for use through the JSON pseudo protocol) and put here.
5212 */
5213void bdrv_refresh_filename(BlockDriverState *bs)
5214{
5215 BlockDriver *drv = bs->drv;
5216 QDict *opts;
5217
5218 if (!drv) {
5219 return;
5220 }
5221
5222 /* This BDS's file name will most probably depend on its file's name, so
5223 * refresh that first */
5224 if (bs->file) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02005225 bdrv_refresh_filename(bs->file->bs);
Max Reitz91af7012014-07-18 20:24:56 +02005226 }
5227
5228 if (drv->bdrv_refresh_filename) {
5229 /* Obsolete information is of no use here, so drop the old file name
5230 * information before refreshing it */
5231 bs->exact_filename[0] = '\0';
5232 if (bs->full_open_options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005233 qobject_unref(bs->full_open_options);
Max Reitz91af7012014-07-18 20:24:56 +02005234 bs->full_open_options = NULL;
5235 }
5236
Kevin Wolf4cdd01d2015-04-27 13:50:54 +02005237 opts = qdict_new();
5238 append_open_options(opts, bs);
5239 drv->bdrv_refresh_filename(bs, opts);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005240 qobject_unref(opts);
Max Reitz91af7012014-07-18 20:24:56 +02005241 } else if (bs->file) {
5242 /* Try to reconstruct valid information from the underlying file */
5243 bool has_open_options;
5244
5245 bs->exact_filename[0] = '\0';
5246 if (bs->full_open_options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005247 qobject_unref(bs->full_open_options);
Max Reitz91af7012014-07-18 20:24:56 +02005248 bs->full_open_options = NULL;
5249 }
5250
5251 opts = qdict_new();
5252 has_open_options = append_open_options(opts, bs);
5253
5254 /* If no specific options have been given for this BDS, the filename of
5255 * the underlying file should suffice for this one as well */
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02005256 if (bs->file->bs->exact_filename[0] && !has_open_options) {
5257 strcpy(bs->exact_filename, bs->file->bs->exact_filename);
Max Reitz91af7012014-07-18 20:24:56 +02005258 }
5259 /* Reconstructing the full options QDict is simple for most format block
5260 * drivers, as long as the full options are known for the underlying
5261 * file BDS. The full options QDict of that file BDS should somehow
5262 * contain a representation of the filename, therefore the following
5263 * suffices without querying the (exact_)filename of this BDS. */
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02005264 if (bs->file->bs->full_open_options) {
Eric Blake46f5ac22017-04-27 16:58:17 -05005265 qdict_put_str(opts, "driver", drv->format_name);
Marc-André Lureauf5a74a52018-04-19 17:01:44 +02005266 qdict_put(opts, "file",
5267 qobject_ref(bs->file->bs->full_open_options));
Max Reitz91af7012014-07-18 20:24:56 +02005268
5269 bs->full_open_options = opts;
5270 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005271 qobject_unref(opts);
Max Reitz91af7012014-07-18 20:24:56 +02005272 }
5273 } else if (!bs->full_open_options && qdict_size(bs->options)) {
5274 /* There is no underlying file BDS (at least referenced by BDS.file),
5275 * so the full options QDict should be equal to the options given
5276 * specifically for this block device when it was opened (plus the
5277 * driver specification).
5278 * Because those options don't change, there is no need to update
5279 * full_open_options when it's already set. */
5280
5281 opts = qdict_new();
5282 append_open_options(opts, bs);
Eric Blake46f5ac22017-04-27 16:58:17 -05005283 qdict_put_str(opts, "driver", drv->format_name);
Max Reitz91af7012014-07-18 20:24:56 +02005284
5285 if (bs->exact_filename[0]) {
5286 /* This may not work for all block protocol drivers (some may
5287 * require this filename to be parsed), but we have to find some
5288 * default solution here, so just include it. If some block driver
5289 * does not support pure options without any filename at all or
5290 * needs some special format of the options QDict, it needs to
5291 * implement the driver-specific bdrv_refresh_filename() function.
5292 */
Eric Blake46f5ac22017-04-27 16:58:17 -05005293 qdict_put_str(opts, "filename", bs->exact_filename);
Max Reitz91af7012014-07-18 20:24:56 +02005294 }
5295
5296 bs->full_open_options = opts;
5297 }
5298
5299 if (bs->exact_filename[0]) {
5300 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
5301 } else if (bs->full_open_options) {
5302 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
5303 snprintf(bs->filename, sizeof(bs->filename), "json:%s",
5304 qstring_get_str(json));
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005305 qobject_unref(json);
Max Reitz91af7012014-07-18 20:24:56 +02005306 }
5307}
Wen Congyange06018a2016-05-10 15:36:37 +08005308
5309/*
5310 * Hot add/remove a BDS's child. So the user can take a child offline when
5311 * it is broken and take a new child online
5312 */
5313void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5314 Error **errp)
5315{
5316
5317 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5318 error_setg(errp, "The node %s does not support adding a child",
5319 bdrv_get_device_or_node_name(parent_bs));
5320 return;
5321 }
5322
5323 if (!QLIST_EMPTY(&child_bs->parents)) {
5324 error_setg(errp, "The node %s already has a parent",
5325 child_bs->node_name);
5326 return;
5327 }
5328
5329 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5330}
5331
5332void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5333{
5334 BdrvChild *tmp;
5335
5336 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5337 error_setg(errp, "The node %s does not support removing a child",
5338 bdrv_get_device_or_node_name(parent_bs));
5339 return;
5340 }
5341
5342 QLIST_FOREACH(tmp, &parent_bs->children, next) {
5343 if (tmp == child) {
5344 break;
5345 }
5346 }
5347
5348 if (!tmp) {
5349 error_setg(errp, "The node %s does not have a child named %s",
5350 bdrv_get_device_or_node_name(parent_bs),
5351 bdrv_get_device_or_node_name(child->bs));
5352 return;
5353 }
5354
5355 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5356}
Vladimir Sementsov-Ogievskiy67b792f2017-06-28 15:05:21 +03005357
5358bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
5359 uint32_t granularity, Error **errp)
5360{
5361 BlockDriver *drv = bs->drv;
5362
5363 if (!drv) {
5364 error_setg_errno(errp, ENOMEDIUM,
5365 "Can't store persistent bitmaps to %s",
5366 bdrv_get_device_or_node_name(bs));
5367 return false;
5368 }
5369
5370 if (!drv->bdrv_can_store_new_dirty_bitmap) {
5371 error_setg_errno(errp, ENOTSUP,
5372 "Can't store persistent bitmaps to %s",
5373 bdrv_get_device_or_node_name(bs));
5374 return false;
5375 }
5376
5377 return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
5378}