]>
Commit | Line | Data |
---|---|---|
fc01f7e7 FB |
1 | /* |
2 | * QEMU System Emulator block driver | |
5fafdf24 | 3 | * |
fc01f7e7 | 4 | * Copyright (c) 2003 Fabrice Bellard |
c20555e1 | 5 | * Copyright (c) 2020 Virtuozzo International GmbH. |
5fafdf24 | 6 | * |
fc01f7e7 FB |
7 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
8 | * of this software and associated documentation files (the "Software"), to deal | |
9 | * in the Software without restriction, including without limitation the rights | |
10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
11 | * copies of the Software, and to permit persons to whom the Software is | |
12 | * furnished to do so, subject to the following conditions: | |
13 | * | |
14 | * The above copyright notice and this permission notice shall be included in | |
15 | * all copies or substantial portions of the Software. | |
16 | * | |
17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
23 | * THE SOFTWARE. | |
24 | */ | |
e688df6b | 25 | |
d38ea87a | 26 | #include "qemu/osdep.h" |
0ab8ed18 | 27 | #include "block/trace.h" |
737e150e PB |
28 | #include "block/block_int.h" |
29 | #include "block/blockjob.h" | |
0c9b70d5 | 30 | #include "block/fuse.h" |
cd7fca95 | 31 | #include "block/nbd.h" |
609f45ea | 32 | #include "block/qdict.h" |
d49b6836 | 33 | #include "qemu/error-report.h" |
5e5733e5 | 34 | #include "block/module_block.h" |
db725815 | 35 | #include "qemu/main-loop.h" |
1de7afc9 | 36 | #include "qemu/module.h" |
e688df6b | 37 | #include "qapi/error.h" |
452fcdbc | 38 | #include "qapi/qmp/qdict.h" |
7b1b5d19 | 39 | #include "qapi/qmp/qjson.h" |
e59a0cf1 | 40 | #include "qapi/qmp/qnull.h" |
fc81fa1e | 41 | #include "qapi/qmp/qstring.h" |
e1d74bc6 KW |
42 | #include "qapi/qobject-output-visitor.h" |
43 | #include "qapi/qapi-visit-block-core.h" | |
bfb197e0 | 44 | #include "sysemu/block-backend.h" |
1de7afc9 | 45 | #include "qemu/notify.h" |
922a01a0 | 46 | #include "qemu/option.h" |
10817bf0 | 47 | #include "qemu/coroutine.h" |
c13163fb | 48 | #include "block/qapi.h" |
1de7afc9 | 49 | #include "qemu/timer.h" |
f348b6d1 VB |
50 | #include "qemu/cutils.h" |
51 | #include "qemu/id.h" | |
0bc329fb HR |
52 | #include "qemu/range.h" |
53 | #include "qemu/rcu.h" | |
21c2283e | 54 | #include "block/coroutines.h" |
fc01f7e7 | 55 | |
71e72a19 | 56 | #ifdef CONFIG_BSD |
7674e7bf | 57 | #include <sys/ioctl.h> |
72cf2d4f | 58 | #include <sys/queue.h> |
feccdcee | 59 | #if defined(HAVE_SYS_DISK_H) |
7674e7bf FB |
60 | #include <sys/disk.h> |
61 | #endif | |
c5e97233 | 62 | #endif |
7674e7bf | 63 | |
49dc768d AL |
64 | #ifdef _WIN32 |
65 | #include <windows.h> | |
66 | #endif | |
67 | ||
1c9805a3 SH |
68 | #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ |
69 | ||
dc364f4c BC |
70 | static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = |
71 | QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); | |
72 | ||
2c1d04e0 HR |
73 | static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states = |
74 | QTAILQ_HEAD_INITIALIZER(all_bdrv_states); | |
75 | ||
8a22f02a SH |
76 | static QLIST_HEAD(, BlockDriver) bdrv_drivers = |
77 | QLIST_HEAD_INITIALIZER(bdrv_drivers); | |
ea2384d3 | 78 | |
5b363937 HR |
79 | static BlockDriverState *bdrv_open_inherit(const char *filename, |
80 | const char *reference, | |
81 | QDict *options, int flags, | |
82 | BlockDriverState *parent, | |
bd86fb99 | 83 | const BdrvChildClass *child_class, |
272c02ea | 84 | BdrvChildRole child_role, |
5b363937 | 85 | Error **errp); |
f3930ed0 | 86 | |
bfb8aa6d KW |
87 | static bool bdrv_recurse_has_child(BlockDriverState *bs, |
88 | BlockDriverState *child); | |
89 | ||
b0a9f6fe | 90 | static void bdrv_child_free(BdrvChild *child); |
be64bbb0 | 91 | static void bdrv_replace_child_noperm(BdrvChild **child, |
b0a9f6fe HR |
92 | BlockDriverState *new_bs, |
93 | bool free_empty_child); | |
e9238278 VSO |
94 | static void bdrv_remove_file_or_backing_child(BlockDriverState *bs, |
95 | BdrvChild *child, | |
96 | Transaction *tran); | |
160333e1 VSO |
97 | static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs, |
98 | Transaction *tran); | |
0978623e | 99 | |
72373e40 VSO |
100 | static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, |
101 | BlockReopenQueue *queue, | |
ecd30d2d | 102 | Transaction *change_child_tran, Error **errp); |
53e96d1e VSO |
103 | static void bdrv_reopen_commit(BDRVReopenState *reopen_state); |
104 | static void bdrv_reopen_abort(BDRVReopenState *reopen_state); | |
105 | ||
fa8fc1d0 EGE |
106 | static bool bdrv_backing_overridden(BlockDriverState *bs); |
107 | ||
eb852011 MA |
108 | /* If non-zero, use only whitelisted block drivers */ |
109 | static int use_bdrv_whitelist; | |
110 | ||
9e0b22f4 SH |
111 | #ifdef _WIN32 |
112 | static int is_windows_drive_prefix(const char *filename) | |
113 | { | |
114 | return (((filename[0] >= 'a' && filename[0] <= 'z') || | |
115 | (filename[0] >= 'A' && filename[0] <= 'Z')) && | |
116 | filename[1] == ':'); | |
117 | } | |
118 | ||
119 | int is_windows_drive(const char *filename) | |
120 | { | |
121 | if (is_windows_drive_prefix(filename) && | |
122 | filename[2] == '\0') | |
123 | return 1; | |
124 | if (strstart(filename, "\\\\.\\", NULL) || | |
125 | strstart(filename, "//./", NULL)) | |
126 | return 1; | |
127 | return 0; | |
128 | } | |
129 | #endif | |
130 | ||
339064d5 KW |
131 | size_t bdrv_opt_mem_align(BlockDriverState *bs) |
132 | { | |
133 | if (!bs || !bs->drv) { | |
459b4e66 | 134 | /* page size or 4k (hdd sector size) should be on the safe side */ |
038adc2f | 135 | return MAX(4096, qemu_real_host_page_size); |
339064d5 KW |
136 | } |
137 | ||
138 | return bs->bl.opt_mem_alignment; | |
139 | } | |
140 | ||
4196d2f0 DL |
141 | size_t bdrv_min_mem_align(BlockDriverState *bs) |
142 | { | |
143 | if (!bs || !bs->drv) { | |
459b4e66 | 144 | /* page size or 4k (hdd sector size) should be on the safe side */ |
038adc2f | 145 | return MAX(4096, qemu_real_host_page_size); |
4196d2f0 DL |
146 | } |
147 | ||
148 | return bs->bl.min_mem_alignment; | |
149 | } | |
150 | ||
9e0b22f4 | 151 | /* check if the path starts with "<protocol>:" */ |
5c98415b | 152 | int path_has_protocol(const char *path) |
9e0b22f4 | 153 | { |
947995c0 PB |
154 | const char *p; |
155 | ||
9e0b22f4 SH |
156 | #ifdef _WIN32 |
157 | if (is_windows_drive(path) || | |
158 | is_windows_drive_prefix(path)) { | |
159 | return 0; | |
160 | } | |
947995c0 PB |
161 | p = path + strcspn(path, ":/\\"); |
162 | #else | |
163 | p = path + strcspn(path, ":/"); | |
9e0b22f4 SH |
164 | #endif |
165 | ||
947995c0 | 166 | return *p == ':'; |
9e0b22f4 SH |
167 | } |
168 | ||
83f64091 | 169 | int path_is_absolute(const char *path) |
3b0d4f61 | 170 | { |
21664424 FB |
171 | #ifdef _WIN32 |
172 | /* specific case for names like: "\\.\d:" */ | |
f53f4da9 | 173 | if (is_windows_drive(path) || is_windows_drive_prefix(path)) { |
21664424 | 174 | return 1; |
f53f4da9 PB |
175 | } |
176 | return (*path == '/' || *path == '\\'); | |
3b9f94e1 | 177 | #else |
f53f4da9 | 178 | return (*path == '/'); |
3b9f94e1 | 179 | #endif |
3b0d4f61 FB |
180 | } |
181 | ||
009b03aa | 182 | /* if filename is absolute, just return its duplicate. Otherwise, build a |
83f64091 FB |
183 | path to it by considering it is relative to base_path. URL are |
184 | supported. */ | |
009b03aa | 185 | char *path_combine(const char *base_path, const char *filename) |
3b0d4f61 | 186 | { |
009b03aa | 187 | const char *protocol_stripped = NULL; |
83f64091 | 188 | const char *p, *p1; |
009b03aa | 189 | char *result; |
83f64091 FB |
190 | int len; |
191 | ||
83f64091 | 192 | if (path_is_absolute(filename)) { |
009b03aa HR |
193 | return g_strdup(filename); |
194 | } | |
0d54a6fe | 195 | |
009b03aa HR |
196 | if (path_has_protocol(base_path)) { |
197 | protocol_stripped = strchr(base_path, ':'); | |
198 | if (protocol_stripped) { | |
199 | protocol_stripped++; | |
0d54a6fe | 200 | } |
009b03aa HR |
201 | } |
202 | p = protocol_stripped ?: base_path; | |
0d54a6fe | 203 | |
009b03aa | 204 | p1 = strrchr(base_path, '/'); |
3b9f94e1 | 205 | #ifdef _WIN32 |
009b03aa HR |
206 | { |
207 | const char *p2; | |
208 | p2 = strrchr(base_path, '\\'); | |
209 | if (!p1 || p2 > p1) { | |
210 | p1 = p2; | |
3b9f94e1 | 211 | } |
009b03aa | 212 | } |
3b9f94e1 | 213 | #endif |
009b03aa HR |
214 | if (p1) { |
215 | p1++; | |
216 | } else { | |
217 | p1 = base_path; | |
218 | } | |
219 | if (p1 > p) { | |
220 | p = p1; | |
3b0d4f61 | 221 | } |
009b03aa HR |
222 | len = p - base_path; |
223 | ||
224 | result = g_malloc(len + strlen(filename) + 1); | |
225 | memcpy(result, base_path, len); | |
226 | strcpy(result + len, filename); | |
227 | ||
228 | return result; | |
229 | } | |
230 | ||
03c320d8 HR |
231 | /* |
232 | * Helper function for bdrv_parse_filename() implementations to remove optional | |
233 | * protocol prefixes (especially "file:") from a filename and for putting the | |
234 | * stripped filename into the options QDict if there is such a prefix. | |
235 | */ | |
236 | void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, | |
237 | QDict *options) | |
238 | { | |
239 | if (strstart(filename, prefix, &filename)) { | |
240 | /* Stripping the explicit protocol prefix may result in a protocol | |
241 | * prefix being (wrongly) detected (if the filename contains a colon) */ | |
242 | if (path_has_protocol(filename)) { | |
18cf67c5 | 243 | GString *fat_filename; |
03c320d8 HR |
244 | |
245 | /* This means there is some colon before the first slash; therefore, | |
246 | * this cannot be an absolute path */ | |
247 | assert(!path_is_absolute(filename)); | |
248 | ||
249 | /* And we can thus fix the protocol detection issue by prefixing it | |
250 | * by "./" */ | |
18cf67c5 MA |
251 | fat_filename = g_string_new("./"); |
252 | g_string_append(fat_filename, filename); | |
03c320d8 | 253 | |
18cf67c5 | 254 | assert(!path_has_protocol(fat_filename->str)); |
03c320d8 | 255 | |
18cf67c5 MA |
256 | qdict_put(options, "filename", |
257 | qstring_from_gstring(fat_filename)); | |
03c320d8 HR |
258 | } else { |
259 | /* If no protocol prefix was detected, we can use the shortened | |
260 | * filename as-is */ | |
261 | qdict_put_str(options, "filename", filename); | |
262 | } | |
263 | } | |
264 | } | |
265 | ||
266 | ||
9c5e6594 KW |
267 | /* Returns whether the image file is opened as read-only. Note that this can |
268 | * return false and writing to the image file is still not possible because the | |
269 | * image is inactivated. */ | |
93ed524e JC |
270 | bool bdrv_is_read_only(BlockDriverState *bs) |
271 | { | |
975da073 | 272 | return !(bs->open_flags & BDRV_O_RDWR); |
93ed524e JC |
273 | } |
274 | ||
54a32bfe KW |
275 | int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, |
276 | bool ignore_allow_rdw, Error **errp) | |
fe5241bf | 277 | { |
e2b8247a JC |
278 | /* Do not set read_only if copy_on_read is enabled */ |
279 | if (bs->copy_on_read && read_only) { | |
280 | error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", | |
281 | bdrv_get_device_or_node_name(bs)); | |
282 | return -EINVAL; | |
283 | } | |
284 | ||
d6fcdf06 | 285 | /* Do not clear read_only if it is prohibited */ |
54a32bfe KW |
286 | if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && |
287 | !ignore_allow_rdw) | |
288 | { | |
d6fcdf06 JC |
289 | error_setg(errp, "Node '%s' is read only", |
290 | bdrv_get_device_or_node_name(bs)); | |
291 | return -EPERM; | |
292 | } | |
293 | ||
45803a03 JC |
294 | return 0; |
295 | } | |
296 | ||
eaa2410f KW |
297 | /* |
298 | * Called by a driver that can only provide a read-only image. | |
299 | * | |
300 | * Returns 0 if the node is already read-only or it could switch the node to | |
301 | * read-only because BDRV_O_AUTO_RDONLY is set. | |
302 | * | |
303 | * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set | |
304 | * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg | |
305 | * is not NULL, it is used as the error message for the Error object. | |
306 | */ | |
307 | int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg, | |
308 | Error **errp) | |
45803a03 JC |
309 | { |
310 | int ret = 0; | |
311 | ||
eaa2410f KW |
312 | if (!(bs->open_flags & BDRV_O_RDWR)) { |
313 | return 0; | |
314 | } | |
315 | if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) { | |
316 | goto fail; | |
45803a03 JC |
317 | } |
318 | ||
eaa2410f KW |
319 | ret = bdrv_can_set_read_only(bs, true, false, NULL); |
320 | if (ret < 0) { | |
321 | goto fail; | |
eeae6a59 KW |
322 | } |
323 | ||
eaa2410f KW |
324 | bs->open_flags &= ~BDRV_O_RDWR; |
325 | ||
e2b8247a | 326 | return 0; |
eaa2410f KW |
327 | |
328 | fail: | |
329 | error_setg(errp, "%s", errmsg ?: "Image is read-only"); | |
330 | return -EACCES; | |
fe5241bf JC |
331 | } |
332 | ||
645ae7d8 HR |
333 | /* |
334 | * If @backing is empty, this function returns NULL without setting | |
335 | * @errp. In all other cases, NULL will only be returned with @errp | |
336 | * set. | |
337 | * | |
338 | * Therefore, a return value of NULL without @errp set means that | |
339 | * there is no backing file; if @errp is set, there is one but its | |
340 | * absolute filename cannot be generated. | |
341 | */ | |
342 | char *bdrv_get_full_backing_filename_from_filename(const char *backed, | |
343 | const char *backing, | |
344 | Error **errp) | |
dc5a1371 | 345 | { |
645ae7d8 HR |
346 | if (backing[0] == '\0') { |
347 | return NULL; | |
348 | } else if (path_has_protocol(backing) || path_is_absolute(backing)) { | |
349 | return g_strdup(backing); | |
9f07429e HR |
350 | } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { |
351 | error_setg(errp, "Cannot use relative backing file names for '%s'", | |
352 | backed); | |
645ae7d8 | 353 | return NULL; |
dc5a1371 | 354 | } else { |
645ae7d8 | 355 | return path_combine(backed, backing); |
dc5a1371 PB |
356 | } |
357 | } | |
358 | ||
9f4793d8 HR |
359 | /* |
360 | * If @filename is empty or NULL, this function returns NULL without | |
361 | * setting @errp. In all other cases, NULL will only be returned with | |
362 | * @errp set. | |
363 | */ | |
364 | static char *bdrv_make_absolute_filename(BlockDriverState *relative_to, | |
365 | const char *filename, Error **errp) | |
0a82855a | 366 | { |
8df68616 | 367 | char *dir, *full_name; |
9f4793d8 | 368 | |
8df68616 HR |
369 | if (!filename || filename[0] == '\0') { |
370 | return NULL; | |
371 | } else if (path_has_protocol(filename) || path_is_absolute(filename)) { | |
372 | return g_strdup(filename); | |
373 | } | |
9f07429e | 374 | |
8df68616 HR |
375 | dir = bdrv_dirname(relative_to, errp); |
376 | if (!dir) { | |
377 | return NULL; | |
378 | } | |
f30c66ba | 379 | |
8df68616 HR |
380 | full_name = g_strconcat(dir, filename, NULL); |
381 | g_free(dir); | |
382 | return full_name; | |
9f4793d8 HR |
383 | } |
384 | ||
385 | char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp) | |
386 | { | |
387 | return bdrv_make_absolute_filename(bs, bs->backing_file, errp); | |
0a82855a HR |
388 | } |
389 | ||
0eb7217e SH |
390 | void bdrv_register(BlockDriver *bdrv) |
391 | { | |
a15f08dc | 392 | assert(bdrv->format_name); |
8a22f02a | 393 | QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); |
ea2384d3 | 394 | } |
b338082b | 395 | |
e4e9986b MA |
396 | BlockDriverState *bdrv_new(void) |
397 | { | |
398 | BlockDriverState *bs; | |
399 | int i; | |
400 | ||
5839e53b | 401 | bs = g_new0(BlockDriverState, 1); |
e4654d2d | 402 | QLIST_INIT(&bs->dirty_bitmaps); |
fbe40ff7 FZ |
403 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
404 | QLIST_INIT(&bs->op_blockers[i]); | |
405 | } | |
3783fa3d | 406 | qemu_co_mutex_init(&bs->reqs_lock); |
2119882c | 407 | qemu_mutex_init(&bs->dirty_bitmap_mutex); |
9fcb0251 | 408 | bs->refcnt = 1; |
dcd04228 | 409 | bs->aio_context = qemu_get_aio_context(); |
d7d512f6 | 410 | |
3ff2f67a EY |
411 | qemu_co_queue_init(&bs->flush_queue); |
412 | ||
0bc329fb HR |
413 | qemu_co_mutex_init(&bs->bsc_modify_lock); |
414 | bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1); | |
415 | ||
0f12264e KW |
416 | for (i = 0; i < bdrv_drain_all_count; i++) { |
417 | bdrv_drained_begin(bs); | |
418 | } | |
419 | ||
2c1d04e0 HR |
420 | QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); |
421 | ||
b338082b FB |
422 | return bs; |
423 | } | |
424 | ||
88d88798 | 425 | static BlockDriver *bdrv_do_find_format(const char *format_name) |
ea2384d3 FB |
426 | { |
427 | BlockDriver *drv1; | |
88d88798 | 428 | |
8a22f02a SH |
429 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
430 | if (!strcmp(drv1->format_name, format_name)) { | |
ea2384d3 | 431 | return drv1; |
8a22f02a | 432 | } |
ea2384d3 | 433 | } |
88d88798 | 434 | |
ea2384d3 FB |
435 | return NULL; |
436 | } | |
437 | ||
88d88798 MM |
438 | BlockDriver *bdrv_find_format(const char *format_name) |
439 | { | |
440 | BlockDriver *drv1; | |
441 | int i; | |
442 | ||
443 | drv1 = bdrv_do_find_format(format_name); | |
444 | if (drv1) { | |
445 | return drv1; | |
446 | } | |
447 | ||
448 | /* The driver isn't registered, maybe we need to load a module */ | |
449 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { | |
450 | if (!strcmp(block_driver_modules[i].format_name, format_name)) { | |
451 | block_module_load_one(block_driver_modules[i].library_name); | |
452 | break; | |
453 | } | |
454 | } | |
455 | ||
456 | return bdrv_do_find_format(format_name); | |
457 | } | |
458 | ||
9ac404c5 | 459 | static int bdrv_format_is_whitelisted(const char *format_name, bool read_only) |
eb852011 | 460 | { |
b64ec4e4 FZ |
461 | static const char *whitelist_rw[] = { |
462 | CONFIG_BDRV_RW_WHITELIST | |
859aef02 | 463 | NULL |
b64ec4e4 FZ |
464 | }; |
465 | static const char *whitelist_ro[] = { | |
466 | CONFIG_BDRV_RO_WHITELIST | |
859aef02 | 467 | NULL |
eb852011 MA |
468 | }; |
469 | const char **p; | |
470 | ||
b64ec4e4 | 471 | if (!whitelist_rw[0] && !whitelist_ro[0]) { |
eb852011 | 472 | return 1; /* no whitelist, anything goes */ |
b64ec4e4 | 473 | } |
eb852011 | 474 | |
b64ec4e4 | 475 | for (p = whitelist_rw; *p; p++) { |
9ac404c5 | 476 | if (!strcmp(format_name, *p)) { |
eb852011 MA |
477 | return 1; |
478 | } | |
479 | } | |
b64ec4e4 FZ |
480 | if (read_only) { |
481 | for (p = whitelist_ro; *p; p++) { | |
9ac404c5 | 482 | if (!strcmp(format_name, *p)) { |
b64ec4e4 FZ |
483 | return 1; |
484 | } | |
485 | } | |
486 | } | |
eb852011 MA |
487 | return 0; |
488 | } | |
489 | ||
9ac404c5 AS |
490 | int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) |
491 | { | |
492 | return bdrv_format_is_whitelisted(drv->format_name, read_only); | |
493 | } | |
494 | ||
e6ff69bf DB |
495 | bool bdrv_uses_whitelist(void) |
496 | { | |
497 | return use_bdrv_whitelist; | |
498 | } | |
499 | ||
5b7e1542 ZYW |
500 | typedef struct CreateCo { |
501 | BlockDriver *drv; | |
502 | char *filename; | |
83d0521a | 503 | QemuOpts *opts; |
5b7e1542 | 504 | int ret; |
cc84d90f | 505 | Error *err; |
5b7e1542 ZYW |
506 | } CreateCo; |
507 | ||
508 | static void coroutine_fn bdrv_create_co_entry(void *opaque) | |
509 | { | |
cc84d90f HR |
510 | Error *local_err = NULL; |
511 | int ret; | |
512 | ||
5b7e1542 ZYW |
513 | CreateCo *cco = opaque; |
514 | assert(cco->drv); | |
515 | ||
b92902df ML |
516 | ret = cco->drv->bdrv_co_create_opts(cco->drv, |
517 | cco->filename, cco->opts, &local_err); | |
621ff94d | 518 | error_propagate(&cco->err, local_err); |
cc84d90f | 519 | cco->ret = ret; |
5b7e1542 ZYW |
520 | } |
521 | ||
0e7e1989 | 522 | int bdrv_create(BlockDriver *drv, const char* filename, |
83d0521a | 523 | QemuOpts *opts, Error **errp) |
ea2384d3 | 524 | { |
5b7e1542 ZYW |
525 | int ret; |
526 | ||
527 | Coroutine *co; | |
528 | CreateCo cco = { | |
529 | .drv = drv, | |
530 | .filename = g_strdup(filename), | |
83d0521a | 531 | .opts = opts, |
5b7e1542 | 532 | .ret = NOT_DONE, |
cc84d90f | 533 | .err = NULL, |
5b7e1542 ZYW |
534 | }; |
535 | ||
efc75e2a | 536 | if (!drv->bdrv_co_create_opts) { |
cc84d90f | 537 | error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); |
80168bff LC |
538 | ret = -ENOTSUP; |
539 | goto out; | |
5b7e1542 ZYW |
540 | } |
541 | ||
542 | if (qemu_in_coroutine()) { | |
543 | /* Fast-path if already in coroutine context */ | |
544 | bdrv_create_co_entry(&cco); | |
545 | } else { | |
0b8b8753 PB |
546 | co = qemu_coroutine_create(bdrv_create_co_entry, &cco); |
547 | qemu_coroutine_enter(co); | |
5b7e1542 | 548 | while (cco.ret == NOT_DONE) { |
b47ec2c4 | 549 | aio_poll(qemu_get_aio_context(), true); |
5b7e1542 ZYW |
550 | } |
551 | } | |
552 | ||
553 | ret = cco.ret; | |
cc84d90f | 554 | if (ret < 0) { |
84d18f06 | 555 | if (cco.err) { |
cc84d90f HR |
556 | error_propagate(errp, cco.err); |
557 | } else { | |
558 | error_setg_errno(errp, -ret, "Could not create image"); | |
559 | } | |
560 | } | |
0e7e1989 | 561 | |
80168bff LC |
562 | out: |
563 | g_free(cco.filename); | |
5b7e1542 | 564 | return ret; |
ea2384d3 FB |
565 | } |
566 | ||
fd17146c HR |
567 | /** |
568 | * Helper function for bdrv_create_file_fallback(): Resize @blk to at | |
569 | * least the given @minimum_size. | |
570 | * | |
571 | * On success, return @blk's actual length. | |
572 | * Otherwise, return -errno. | |
573 | */ | |
574 | static int64_t create_file_fallback_truncate(BlockBackend *blk, | |
575 | int64_t minimum_size, Error **errp) | |
84a12e66 | 576 | { |
cc84d90f | 577 | Error *local_err = NULL; |
fd17146c | 578 | int64_t size; |
cc84d90f | 579 | int ret; |
84a12e66 | 580 | |
8c6242b6 KW |
581 | ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0, |
582 | &local_err); | |
fd17146c HR |
583 | if (ret < 0 && ret != -ENOTSUP) { |
584 | error_propagate(errp, local_err); | |
585 | return ret; | |
586 | } | |
587 | ||
588 | size = blk_getlength(blk); | |
589 | if (size < 0) { | |
590 | error_free(local_err); | |
591 | error_setg_errno(errp, -size, | |
592 | "Failed to inquire the new image file's length"); | |
593 | return size; | |
594 | } | |
595 | ||
596 | if (size < minimum_size) { | |
597 | /* Need to grow the image, but we failed to do that */ | |
598 | error_propagate(errp, local_err); | |
599 | return -ENOTSUP; | |
600 | } | |
601 | ||
602 | error_free(local_err); | |
603 | local_err = NULL; | |
604 | ||
605 | return size; | |
606 | } | |
607 | ||
608 | /** | |
609 | * Helper function for bdrv_create_file_fallback(): Zero the first | |
610 | * sector to remove any potentially pre-existing image header. | |
611 | */ | |
612 | static int create_file_fallback_zero_first_sector(BlockBackend *blk, | |
613 | int64_t current_size, | |
614 | Error **errp) | |
615 | { | |
616 | int64_t bytes_to_clear; | |
617 | int ret; | |
618 | ||
619 | bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE); | |
620 | if (bytes_to_clear) { | |
621 | ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP); | |
622 | if (ret < 0) { | |
623 | error_setg_errno(errp, -ret, | |
624 | "Failed to clear the new image's first sector"); | |
625 | return ret; | |
626 | } | |
627 | } | |
628 | ||
629 | return 0; | |
630 | } | |
631 | ||
5a5e7f8c ML |
632 | /** |
633 | * Simple implementation of bdrv_co_create_opts for protocol drivers | |
634 | * which only support creation via opening a file | |
635 | * (usually existing raw storage device) | |
636 | */ | |
637 | int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv, | |
638 | const char *filename, | |
639 | QemuOpts *opts, | |
640 | Error **errp) | |
fd17146c HR |
641 | { |
642 | BlockBackend *blk; | |
eeea1faa | 643 | QDict *options; |
fd17146c HR |
644 | int64_t size = 0; |
645 | char *buf = NULL; | |
646 | PreallocMode prealloc; | |
647 | Error *local_err = NULL; | |
648 | int ret; | |
649 | ||
650 | size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); | |
651 | buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); | |
652 | prealloc = qapi_enum_parse(&PreallocMode_lookup, buf, | |
653 | PREALLOC_MODE_OFF, &local_err); | |
654 | g_free(buf); | |
655 | if (local_err) { | |
656 | error_propagate(errp, local_err); | |
657 | return -EINVAL; | |
658 | } | |
659 | ||
660 | if (prealloc != PREALLOC_MODE_OFF) { | |
661 | error_setg(errp, "Unsupported preallocation mode '%s'", | |
662 | PreallocMode_str(prealloc)); | |
663 | return -ENOTSUP; | |
664 | } | |
665 | ||
eeea1faa | 666 | options = qdict_new(); |
fd17146c HR |
667 | qdict_put_str(options, "driver", drv->format_name); |
668 | ||
669 | blk = blk_new_open(filename, NULL, options, | |
670 | BDRV_O_RDWR | BDRV_O_RESIZE, errp); | |
671 | if (!blk) { | |
672 | error_prepend(errp, "Protocol driver '%s' does not support image " | |
673 | "creation, and opening the image failed: ", | |
674 | drv->format_name); | |
675 | return -EINVAL; | |
676 | } | |
677 | ||
678 | size = create_file_fallback_truncate(blk, size, errp); | |
679 | if (size < 0) { | |
680 | ret = size; | |
681 | goto out; | |
682 | } | |
683 | ||
684 | ret = create_file_fallback_zero_first_sector(blk, size, errp); | |
685 | if (ret < 0) { | |
686 | goto out; | |
687 | } | |
688 | ||
689 | ret = 0; | |
690 | out: | |
691 | blk_unref(blk); | |
692 | return ret; | |
693 | } | |
694 | ||
695 | int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) | |
696 | { | |
729222af | 697 | QemuOpts *protocol_opts; |
fd17146c | 698 | BlockDriver *drv; |
729222af SG |
699 | QDict *qdict; |
700 | int ret; | |
fd17146c | 701 | |
b65a5e12 | 702 | drv = bdrv_find_protocol(filename, true, errp); |
84a12e66 | 703 | if (drv == NULL) { |
16905d71 | 704 | return -ENOENT; |
84a12e66 CH |
705 | } |
706 | ||
729222af SG |
707 | if (!drv->create_opts) { |
708 | error_setg(errp, "Driver '%s' does not support image creation", | |
709 | drv->format_name); | |
710 | return -ENOTSUP; | |
711 | } | |
712 | ||
713 | /* | |
714 | * 'opts' contains a QemuOptsList with a combination of format and protocol | |
715 | * default values. | |
716 | * | |
717 | * The format properly removes its options, but the default values remain | |
718 | * in 'opts->list'. So if the protocol has options with the same name | |
719 | * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values | |
720 | * of the format, since for overlapping options, the format wins. | |
721 | * | |
722 | * To avoid this issue, lets convert QemuOpts to QDict, in this way we take | |
723 | * only the set options, and then convert it back to QemuOpts, using the | |
724 | * create_opts of the protocol. So the new QemuOpts, will contain only the | |
725 | * protocol defaults. | |
726 | */ | |
727 | qdict = qemu_opts_to_qdict(opts, NULL); | |
728 | protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp); | |
729 | if (protocol_opts == NULL) { | |
730 | ret = -EINVAL; | |
731 | goto out; | |
732 | } | |
733 | ||
734 | ret = bdrv_create(drv, filename, protocol_opts, errp); | |
735 | out: | |
736 | qemu_opts_del(protocol_opts); | |
737 | qobject_unref(qdict); | |
738 | return ret; | |
84a12e66 CH |
739 | } |
740 | ||
e1d7f8bb DHB |
741 | int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp) |
742 | { | |
743 | Error *local_err = NULL; | |
744 | int ret; | |
745 | ||
746 | assert(bs != NULL); | |
747 | ||
748 | if (!bs->drv) { | |
749 | error_setg(errp, "Block node '%s' is not opened", bs->filename); | |
750 | return -ENOMEDIUM; | |
751 | } | |
752 | ||
753 | if (!bs->drv->bdrv_co_delete_file) { | |
754 | error_setg(errp, "Driver '%s' does not support image deletion", | |
755 | bs->drv->format_name); | |
756 | return -ENOTSUP; | |
757 | } | |
758 | ||
759 | ret = bs->drv->bdrv_co_delete_file(bs, &local_err); | |
760 | if (ret < 0) { | |
761 | error_propagate(errp, local_err); | |
762 | } | |
763 | ||
764 | return ret; | |
765 | } | |
766 | ||
a890f08e ML |
767 | void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs) |
768 | { | |
769 | Error *local_err = NULL; | |
770 | int ret; | |
771 | ||
772 | if (!bs) { | |
773 | return; | |
774 | } | |
775 | ||
776 | ret = bdrv_co_delete_file(bs, &local_err); | |
777 | /* | |
778 | * ENOTSUP will happen if the block driver doesn't support | |
779 | * the 'bdrv_co_delete_file' interface. This is a predictable | |
780 | * scenario and shouldn't be reported back to the user. | |
781 | */ | |
782 | if (ret == -ENOTSUP) { | |
783 | error_free(local_err); | |
784 | } else if (ret < 0) { | |
785 | error_report_err(local_err); | |
786 | } | |
787 | } | |
788 | ||
892b7de8 ET |
789 | /** |
790 | * Try to get @bs's logical and physical block size. | |
791 | * On success, store them in @bsz struct and return 0. | |
792 | * On failure return -errno. | |
793 | * @bs must not be empty. | |
794 | */ | |
795 | int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) | |
796 | { | |
797 | BlockDriver *drv = bs->drv; | |
93393e69 | 798 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
892b7de8 ET |
799 | |
800 | if (drv && drv->bdrv_probe_blocksizes) { | |
801 | return drv->bdrv_probe_blocksizes(bs, bsz); | |
93393e69 HR |
802 | } else if (filtered) { |
803 | return bdrv_probe_blocksizes(filtered, bsz); | |
892b7de8 ET |
804 | } |
805 | ||
806 | return -ENOTSUP; | |
807 | } | |
808 | ||
809 | /** | |
810 | * Try to get @bs's geometry (cyls, heads, sectors). | |
811 | * On success, store them in @geo struct and return 0. | |
812 | * On failure return -errno. | |
813 | * @bs must not be empty. | |
814 | */ | |
815 | int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) | |
816 | { | |
817 | BlockDriver *drv = bs->drv; | |
93393e69 | 818 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
892b7de8 ET |
819 | |
820 | if (drv && drv->bdrv_probe_geometry) { | |
821 | return drv->bdrv_probe_geometry(bs, geo); | |
93393e69 HR |
822 | } else if (filtered) { |
823 | return bdrv_probe_geometry(filtered, geo); | |
892b7de8 ET |
824 | } |
825 | ||
826 | return -ENOTSUP; | |
827 | } | |
828 | ||
eba25057 JM |
829 | /* |
830 | * Create a uniquely-named empty temporary file. | |
831 | * Return 0 upon success, otherwise a negative errno value. | |
832 | */ | |
833 | int get_tmp_filename(char *filename, int size) | |
d5249393 | 834 | { |
eba25057 | 835 | #ifdef _WIN32 |
3b9f94e1 | 836 | char temp_dir[MAX_PATH]; |
eba25057 JM |
837 | /* GetTempFileName requires that its output buffer (4th param) |
838 | have length MAX_PATH or greater. */ | |
839 | assert(size >= MAX_PATH); | |
840 | return (GetTempPath(MAX_PATH, temp_dir) | |
841 | && GetTempFileName(temp_dir, "qem", 0, filename) | |
842 | ? 0 : -GetLastError()); | |
d5249393 | 843 | #else |
67b915a5 | 844 | int fd; |
7ccfb2eb | 845 | const char *tmpdir; |
0badc1ee | 846 | tmpdir = getenv("TMPDIR"); |
69bef793 AS |
847 | if (!tmpdir) { |
848 | tmpdir = "/var/tmp"; | |
849 | } | |
eba25057 JM |
850 | if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { |
851 | return -EOVERFLOW; | |
852 | } | |
ea2384d3 | 853 | fd = mkstemp(filename); |
fe235a06 DH |
854 | if (fd < 0) { |
855 | return -errno; | |
856 | } | |
857 | if (close(fd) != 0) { | |
858 | unlink(filename); | |
eba25057 JM |
859 | return -errno; |
860 | } | |
861 | return 0; | |
d5249393 | 862 | #endif |
eba25057 | 863 | } |
fc01f7e7 | 864 | |
84a12e66 CH |
865 | /* |
866 | * Detect host devices. By convention, /dev/cdrom[N] is always | |
867 | * recognized as a host CDROM. | |
868 | */ | |
869 | static BlockDriver *find_hdev_driver(const char *filename) | |
870 | { | |
871 | int score_max = 0, score; | |
872 | BlockDriver *drv = NULL, *d; | |
873 | ||
874 | QLIST_FOREACH(d, &bdrv_drivers, list) { | |
875 | if (d->bdrv_probe_device) { | |
876 | score = d->bdrv_probe_device(filename); | |
877 | if (score > score_max) { | |
878 | score_max = score; | |
879 | drv = d; | |
880 | } | |
881 | } | |
882 | } | |
883 | ||
884 | return drv; | |
885 | } | |
886 | ||
88d88798 MM |
887 | static BlockDriver *bdrv_do_find_protocol(const char *protocol) |
888 | { | |
889 | BlockDriver *drv1; | |
890 | ||
891 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { | |
892 | if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { | |
893 | return drv1; | |
894 | } | |
895 | } | |
896 | ||
897 | return NULL; | |
898 | } | |
899 | ||
98289620 | 900 | BlockDriver *bdrv_find_protocol(const char *filename, |
b65a5e12 HR |
901 | bool allow_protocol_prefix, |
902 | Error **errp) | |
83f64091 FB |
903 | { |
904 | BlockDriver *drv1; | |
905 | char protocol[128]; | |
1cec71e3 | 906 | int len; |
83f64091 | 907 | const char *p; |
88d88798 | 908 | int i; |
19cb3738 | 909 | |
66f82cee KW |
910 | /* TODO Drivers without bdrv_file_open must be specified explicitly */ |
911 | ||
39508e7a CH |
912 | /* |
913 | * XXX(hch): we really should not let host device detection | |
914 | * override an explicit protocol specification, but moving this | |
915 | * later breaks access to device names with colons in them. | |
916 | * Thanks to the brain-dead persistent naming schemes on udev- | |
917 | * based Linux systems those actually are quite common. | |
918 | */ | |
919 | drv1 = find_hdev_driver(filename); | |
920 | if (drv1) { | |
921 | return drv1; | |
922 | } | |
923 | ||
98289620 | 924 | if (!path_has_protocol(filename) || !allow_protocol_prefix) { |
ef810437 | 925 | return &bdrv_file; |
84a12e66 | 926 | } |
98289620 | 927 | |
9e0b22f4 SH |
928 | p = strchr(filename, ':'); |
929 | assert(p != NULL); | |
1cec71e3 AL |
930 | len = p - filename; |
931 | if (len > sizeof(protocol) - 1) | |
932 | len = sizeof(protocol) - 1; | |
933 | memcpy(protocol, filename, len); | |
934 | protocol[len] = '\0'; | |
88d88798 MM |
935 | |
936 | drv1 = bdrv_do_find_protocol(protocol); | |
937 | if (drv1) { | |
938 | return drv1; | |
939 | } | |
940 | ||
941 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { | |
942 | if (block_driver_modules[i].protocol_name && | |
943 | !strcmp(block_driver_modules[i].protocol_name, protocol)) { | |
944 | block_module_load_one(block_driver_modules[i].library_name); | |
945 | break; | |
8a22f02a | 946 | } |
83f64091 | 947 | } |
b65a5e12 | 948 | |
88d88798 MM |
949 | drv1 = bdrv_do_find_protocol(protocol); |
950 | if (!drv1) { | |
951 | error_setg(errp, "Unknown protocol '%s'", protocol); | |
952 | } | |
953 | return drv1; | |
83f64091 FB |
954 | } |
955 | ||
c6684249 MA |
956 | /* |
957 | * Guess image format by probing its contents. | |
958 | * This is not a good idea when your image is raw (CVE-2008-2004), but | |
959 | * we do it anyway for backward compatibility. | |
960 | * | |
961 | * @buf contains the image's first @buf_size bytes. | |
7cddd372 KW |
962 | * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, |
963 | * but can be smaller if the image file is smaller) | |
c6684249 MA |
964 | * @filename is its filename. |
965 | * | |
966 | * For all block drivers, call the bdrv_probe() method to get its | |
967 | * probing score. | |
968 | * Return the first block driver with the highest probing score. | |
969 | */ | |
38f3ef57 KW |
970 | BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, |
971 | const char *filename) | |
c6684249 MA |
972 | { |
973 | int score_max = 0, score; | |
974 | BlockDriver *drv = NULL, *d; | |
975 | ||
976 | QLIST_FOREACH(d, &bdrv_drivers, list) { | |
977 | if (d->bdrv_probe) { | |
978 | score = d->bdrv_probe(buf, buf_size, filename); | |
979 | if (score > score_max) { | |
980 | score_max = score; | |
981 | drv = d; | |
982 | } | |
983 | } | |
984 | } | |
985 | ||
986 | return drv; | |
987 | } | |
988 | ||
5696c6e3 | 989 | static int find_image_format(BlockBackend *file, const char *filename, |
34b5d2c6 | 990 | BlockDriver **pdrv, Error **errp) |
f3a5d3f8 | 991 | { |
c6684249 | 992 | BlockDriver *drv; |
7cddd372 | 993 | uint8_t buf[BLOCK_PROBE_BUF_SIZE]; |
f500a6d3 | 994 | int ret = 0; |
f8ea0b00 | 995 | |
08a00559 | 996 | /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ |
5696c6e3 | 997 | if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) { |
ef810437 | 998 | *pdrv = &bdrv_raw; |
c98ac35d | 999 | return ret; |
1a396859 | 1000 | } |
f8ea0b00 | 1001 | |
5696c6e3 | 1002 | ret = blk_pread(file, 0, buf, sizeof(buf)); |
83f64091 | 1003 | if (ret < 0) { |
34b5d2c6 HR |
1004 | error_setg_errno(errp, -ret, "Could not read image for determining its " |
1005 | "format"); | |
c98ac35d SW |
1006 | *pdrv = NULL; |
1007 | return ret; | |
83f64091 FB |
1008 | } |
1009 | ||
c6684249 | 1010 | drv = bdrv_probe_all(buf, ret, filename); |
c98ac35d | 1011 | if (!drv) { |
34b5d2c6 HR |
1012 | error_setg(errp, "Could not determine image format: No compatible " |
1013 | "driver found"); | |
c98ac35d SW |
1014 | ret = -ENOENT; |
1015 | } | |
1016 | *pdrv = drv; | |
1017 | return ret; | |
ea2384d3 FB |
1018 | } |
1019 | ||
51762288 SH |
1020 | /** |
1021 | * Set the current 'total_sectors' value | |
65a9bb25 | 1022 | * Return 0 on success, -errno on error. |
51762288 | 1023 | */ |
3d9f2d2a | 1024 | int refresh_total_sectors(BlockDriverState *bs, int64_t hint) |
51762288 SH |
1025 | { |
1026 | BlockDriver *drv = bs->drv; | |
1027 | ||
d470ad42 HR |
1028 | if (!drv) { |
1029 | return -ENOMEDIUM; | |
1030 | } | |
1031 | ||
396759ad | 1032 | /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ |
b192af8a | 1033 | if (bdrv_is_sg(bs)) |
396759ad NB |
1034 | return 0; |
1035 | ||
51762288 SH |
1036 | /* query actual device if possible, otherwise just trust the hint */ |
1037 | if (drv->bdrv_getlength) { | |
1038 | int64_t length = drv->bdrv_getlength(bs); | |
1039 | if (length < 0) { | |
1040 | return length; | |
1041 | } | |
7e382003 | 1042 | hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); |
51762288 SH |
1043 | } |
1044 | ||
1045 | bs->total_sectors = hint; | |
8b117001 VSO |
1046 | |
1047 | if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) { | |
1048 | return -EFBIG; | |
1049 | } | |
1050 | ||
51762288 SH |
1051 | return 0; |
1052 | } | |
1053 | ||
cddff5ba KW |
1054 | /** |
1055 | * Combines a QDict of new block driver @options with any missing options taken | |
1056 | * from @old_options, so that leaving out an option defaults to its old value. | |
1057 | */ | |
1058 | static void bdrv_join_options(BlockDriverState *bs, QDict *options, | |
1059 | QDict *old_options) | |
1060 | { | |
1061 | if (bs->drv && bs->drv->bdrv_join_options) { | |
1062 | bs->drv->bdrv_join_options(options, old_options); | |
1063 | } else { | |
1064 | qdict_join(options, old_options, false); | |
1065 | } | |
1066 | } | |
1067 | ||
543770bd AG |
1068 | static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts, |
1069 | int open_flags, | |
1070 | Error **errp) | |
1071 | { | |
1072 | Error *local_err = NULL; | |
1073 | char *value = qemu_opt_get_del(opts, "detect-zeroes"); | |
1074 | BlockdevDetectZeroesOptions detect_zeroes = | |
1075 | qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value, | |
1076 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err); | |
1077 | g_free(value); | |
1078 | if (local_err) { | |
1079 | error_propagate(errp, local_err); | |
1080 | return detect_zeroes; | |
1081 | } | |
1082 | ||
1083 | if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && | |
1084 | !(open_flags & BDRV_O_UNMAP)) | |
1085 | { | |
1086 | error_setg(errp, "setting detect-zeroes to unmap is not allowed " | |
1087 | "without setting discard operation to unmap"); | |
1088 | } | |
1089 | ||
1090 | return detect_zeroes; | |
1091 | } | |
1092 | ||
f80f2673 AM |
1093 | /** |
1094 | * Set open flags for aio engine | |
1095 | * | |
1096 | * Return 0 on success, -1 if the engine specified is invalid | |
1097 | */ | |
1098 | int bdrv_parse_aio(const char *mode, int *flags) | |
1099 | { | |
1100 | if (!strcmp(mode, "threads")) { | |
1101 | /* do nothing, default */ | |
1102 | } else if (!strcmp(mode, "native")) { | |
1103 | *flags |= BDRV_O_NATIVE_AIO; | |
1104 | #ifdef CONFIG_LINUX_IO_URING | |
1105 | } else if (!strcmp(mode, "io_uring")) { | |
1106 | *flags |= BDRV_O_IO_URING; | |
1107 | #endif | |
1108 | } else { | |
1109 | return -1; | |
1110 | } | |
1111 | ||
1112 | return 0; | |
1113 | } | |
1114 | ||
9e8f1835 PB |
1115 | /** |
1116 | * Set open flags for a given discard mode | |
1117 | * | |
1118 | * Return 0 on success, -1 if the discard mode was invalid. | |
1119 | */ | |
1120 | int bdrv_parse_discard_flags(const char *mode, int *flags) | |
1121 | { | |
1122 | *flags &= ~BDRV_O_UNMAP; | |
1123 | ||
1124 | if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { | |
1125 | /* do nothing */ | |
1126 | } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { | |
1127 | *flags |= BDRV_O_UNMAP; | |
1128 | } else { | |
1129 | return -1; | |
1130 | } | |
1131 | ||
1132 | return 0; | |
1133 | } | |
1134 | ||
c3993cdc SH |
1135 | /** |
1136 | * Set open flags for a given cache mode | |
1137 | * | |
1138 | * Return 0 on success, -1 if the cache mode was invalid. | |
1139 | */ | |
53e8ae01 | 1140 | int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) |
c3993cdc SH |
1141 | { |
1142 | *flags &= ~BDRV_O_CACHE_MASK; | |
1143 | ||
1144 | if (!strcmp(mode, "off") || !strcmp(mode, "none")) { | |
53e8ae01 KW |
1145 | *writethrough = false; |
1146 | *flags |= BDRV_O_NOCACHE; | |
92196b2f | 1147 | } else if (!strcmp(mode, "directsync")) { |
53e8ae01 | 1148 | *writethrough = true; |
92196b2f | 1149 | *flags |= BDRV_O_NOCACHE; |
c3993cdc | 1150 | } else if (!strcmp(mode, "writeback")) { |
53e8ae01 | 1151 | *writethrough = false; |
c3993cdc | 1152 | } else if (!strcmp(mode, "unsafe")) { |
53e8ae01 | 1153 | *writethrough = false; |
c3993cdc SH |
1154 | *flags |= BDRV_O_NO_FLUSH; |
1155 | } else if (!strcmp(mode, "writethrough")) { | |
53e8ae01 | 1156 | *writethrough = true; |
c3993cdc SH |
1157 | } else { |
1158 | return -1; | |
1159 | } | |
1160 | ||
1161 | return 0; | |
1162 | } | |
1163 | ||
b5411555 KW |
1164 | static char *bdrv_child_get_parent_desc(BdrvChild *c) |
1165 | { | |
1166 | BlockDriverState *parent = c->opaque; | |
2c0a3acb | 1167 | return g_strdup_printf("node '%s'", bdrv_get_node_name(parent)); |
b5411555 KW |
1168 | } |
1169 | ||
20018e12 KW |
1170 | static void bdrv_child_cb_drained_begin(BdrvChild *child) |
1171 | { | |
1172 | BlockDriverState *bs = child->opaque; | |
6cd5c9d7 | 1173 | bdrv_do_drained_begin_quiesce(bs, NULL, false); |
20018e12 KW |
1174 | } |
1175 | ||
89bd0305 KW |
1176 | static bool bdrv_child_cb_drained_poll(BdrvChild *child) |
1177 | { | |
1178 | BlockDriverState *bs = child->opaque; | |
6cd5c9d7 | 1179 | return bdrv_drain_poll(bs, false, NULL, false); |
89bd0305 KW |
1180 | } |
1181 | ||
e037c09c HR |
1182 | static void bdrv_child_cb_drained_end(BdrvChild *child, |
1183 | int *drained_end_counter) | |
20018e12 KW |
1184 | { |
1185 | BlockDriverState *bs = child->opaque; | |
e037c09c | 1186 | bdrv_drained_end_no_poll(bs, drained_end_counter); |
20018e12 KW |
1187 | } |
1188 | ||
38701b6a KW |
1189 | static int bdrv_child_cb_inactivate(BdrvChild *child) |
1190 | { | |
1191 | BlockDriverState *bs = child->opaque; | |
1192 | assert(bs->open_flags & BDRV_O_INACTIVE); | |
1193 | return 0; | |
1194 | } | |
1195 | ||
5d231849 KW |
1196 | static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx, |
1197 | GSList **ignore, Error **errp) | |
1198 | { | |
1199 | BlockDriverState *bs = child->opaque; | |
1200 | return bdrv_can_set_aio_context(bs, ctx, ignore, errp); | |
1201 | } | |
1202 | ||
53a7d041 KW |
1203 | static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx, |
1204 | GSList **ignore) | |
1205 | { | |
1206 | BlockDriverState *bs = child->opaque; | |
1207 | return bdrv_set_aio_context_ignore(bs, ctx, ignore); | |
1208 | } | |
1209 | ||
b1e6fc08 | 1210 | /* |
73176bee KW |
1211 | * Returns the options and flags that a temporary snapshot should get, based on |
1212 | * the originally requested flags (the originally requested image will have | |
1213 | * flags like a backing file) | |
b1e6fc08 | 1214 | */ |
73176bee KW |
1215 | static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, |
1216 | int parent_flags, QDict *parent_options) | |
b1e6fc08 | 1217 | { |
73176bee KW |
1218 | *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; |
1219 | ||
1220 | /* For temporary files, unconditional cache=unsafe is fine */ | |
73176bee KW |
1221 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); |
1222 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); | |
41869044 | 1223 | |
3f48686f | 1224 | /* Copy the read-only and discard options from the parent */ |
f87a0e29 | 1225 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); |
3f48686f | 1226 | qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD); |
f87a0e29 | 1227 | |
41869044 KW |
1228 | /* aio=native doesn't work for cache.direct=off, so disable it for the |
1229 | * temporary snapshot */ | |
1230 | *child_flags &= ~BDRV_O_NATIVE_AIO; | |
b1e6fc08 KW |
1231 | } |
1232 | ||
db95dbba KW |
1233 | static void bdrv_backing_attach(BdrvChild *c) |
1234 | { | |
1235 | BlockDriverState *parent = c->opaque; | |
1236 | BlockDriverState *backing_hd = c->bs; | |
1237 | ||
1238 | assert(!parent->backing_blocker); | |
1239 | error_setg(&parent->backing_blocker, | |
1240 | "node is used as backing hd of '%s'", | |
1241 | bdrv_get_device_or_node_name(parent)); | |
1242 | ||
f30c66ba HR |
1243 | bdrv_refresh_filename(backing_hd); |
1244 | ||
db95dbba | 1245 | parent->open_flags &= ~BDRV_O_NO_BACKING; |
db95dbba KW |
1246 | |
1247 | bdrv_op_block_all(backing_hd, parent->backing_blocker); | |
1248 | /* Otherwise we won't be able to commit or stream */ | |
1249 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, | |
1250 | parent->backing_blocker); | |
1251 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, | |
1252 | parent->backing_blocker); | |
1253 | /* | |
1254 | * We do backup in 3 ways: | |
1255 | * 1. drive backup | |
1256 | * The target bs is new opened, and the source is top BDS | |
1257 | * 2. blockdev backup | |
1258 | * Both the source and the target are top BDSes. | |
1259 | * 3. internal backup(used for block replication) | |
1260 | * Both the source and the target are backing file | |
1261 | * | |
1262 | * In case 1 and 2, neither the source nor the target is the backing file. | |
1263 | * In case 3, we will block the top BDS, so there is only one block job | |
1264 | * for the top BDS and its backing chain. | |
1265 | */ | |
1266 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, | |
1267 | parent->backing_blocker); | |
1268 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, | |
1269 | parent->backing_blocker); | |
ca2f1234 | 1270 | } |
d736f119 | 1271 | |
db95dbba KW |
1272 | static void bdrv_backing_detach(BdrvChild *c) |
1273 | { | |
1274 | BlockDriverState *parent = c->opaque; | |
1275 | ||
1276 | assert(parent->backing_blocker); | |
1277 | bdrv_op_unblock_all(c->bs, parent->backing_blocker); | |
1278 | error_free(parent->backing_blocker); | |
1279 | parent->backing_blocker = NULL; | |
48e08288 | 1280 | } |
d736f119 | 1281 | |
6858eba0 KW |
1282 | static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, |
1283 | const char *filename, Error **errp) | |
1284 | { | |
1285 | BlockDriverState *parent = c->opaque; | |
e94d3dba | 1286 | bool read_only = bdrv_is_read_only(parent); |
6858eba0 KW |
1287 | int ret; |
1288 | ||
e94d3dba AG |
1289 | if (read_only) { |
1290 | ret = bdrv_reopen_set_read_only(parent, false, errp); | |
61f09cea KW |
1291 | if (ret < 0) { |
1292 | return ret; | |
1293 | } | |
1294 | } | |
1295 | ||
6858eba0 | 1296 | ret = bdrv_change_backing_file(parent, filename, |
e54ee1b3 EB |
1297 | base->drv ? base->drv->format_name : "", |
1298 | false); | |
6858eba0 | 1299 | if (ret < 0) { |
64730694 | 1300 | error_setg_errno(errp, -ret, "Could not update backing file link"); |
6858eba0 KW |
1301 | } |
1302 | ||
e94d3dba AG |
1303 | if (read_only) { |
1304 | bdrv_reopen_set_read_only(parent, true, NULL); | |
61f09cea KW |
1305 | } |
1306 | ||
6858eba0 KW |
1307 | return ret; |
1308 | } | |
1309 | ||
fae8bd39 HR |
1310 | /* |
1311 | * Returns the options and flags that a generic child of a BDS should | |
1312 | * get, based on the given options and flags for the parent BDS. | |
1313 | */ | |
00ff7ffd HR |
1314 | static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format, |
1315 | int *child_flags, QDict *child_options, | |
1316 | int parent_flags, QDict *parent_options) | |
fae8bd39 HR |
1317 | { |
1318 | int flags = parent_flags; | |
1319 | ||
1320 | /* | |
1321 | * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL. | |
1322 | * Generally, the question to answer is: Should this child be | |
1323 | * format-probed by default? | |
1324 | */ | |
1325 | ||
1326 | /* | |
1327 | * Pure and non-filtered data children of non-format nodes should | |
1328 | * be probed by default (even when the node itself has BDRV_O_PROTOCOL | |
1329 | * set). This only affects a very limited set of drivers (namely | |
1330 | * quorum and blkverify when this comment was written). | |
1331 | * Force-clear BDRV_O_PROTOCOL then. | |
1332 | */ | |
1333 | if (!parent_is_format && | |
1334 | (role & BDRV_CHILD_DATA) && | |
1335 | !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED))) | |
1336 | { | |
1337 | flags &= ~BDRV_O_PROTOCOL; | |
1338 | } | |
1339 | ||
1340 | /* | |
1341 | * All children of format nodes (except for COW children) and all | |
1342 | * metadata children in general should never be format-probed. | |
1343 | * Force-set BDRV_O_PROTOCOL then. | |
1344 | */ | |
1345 | if ((parent_is_format && !(role & BDRV_CHILD_COW)) || | |
1346 | (role & BDRV_CHILD_METADATA)) | |
1347 | { | |
1348 | flags |= BDRV_O_PROTOCOL; | |
1349 | } | |
1350 | ||
1351 | /* | |
1352 | * If the cache mode isn't explicitly set, inherit direct and no-flush from | |
1353 | * the parent. | |
1354 | */ | |
1355 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); | |
1356 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); | |
1357 | qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); | |
1358 | ||
1359 | if (role & BDRV_CHILD_COW) { | |
1360 | /* backing files are opened read-only by default */ | |
1361 | qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); | |
1362 | qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off"); | |
1363 | } else { | |
1364 | /* Inherit the read-only option from the parent if it's not set */ | |
1365 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); | |
1366 | qdict_copy_default(child_options, parent_options, | |
1367 | BDRV_OPT_AUTO_READ_ONLY); | |
1368 | } | |
1369 | ||
1370 | /* | |
1371 | * bdrv_co_pdiscard() respects unmap policy for the parent, so we | |
1372 | * can default to enable it on lower layers regardless of the | |
1373 | * parent option. | |
1374 | */ | |
1375 | qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); | |
1376 | ||
1377 | /* Clear flags that only apply to the top layer */ | |
1378 | flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); | |
1379 | ||
1380 | if (role & BDRV_CHILD_METADATA) { | |
1381 | flags &= ~BDRV_O_NO_IO; | |
1382 | } | |
1383 | if (role & BDRV_CHILD_COW) { | |
1384 | flags &= ~BDRV_O_TEMPORARY; | |
1385 | } | |
1386 | ||
1387 | *child_flags = flags; | |
1388 | } | |
1389 | ||
ca2f1234 HR |
1390 | static void bdrv_child_cb_attach(BdrvChild *child) |
1391 | { | |
1392 | BlockDriverState *bs = child->opaque; | |
1393 | ||
a225369b HR |
1394 | QLIST_INSERT_HEAD(&bs->children, child, next); |
1395 | ||
ca2f1234 HR |
1396 | if (child->role & BDRV_CHILD_COW) { |
1397 | bdrv_backing_attach(child); | |
1398 | } | |
1399 | ||
1400 | bdrv_apply_subtree_drain(child, bs); | |
1401 | } | |
1402 | ||
48e08288 HR |
1403 | static void bdrv_child_cb_detach(BdrvChild *child) |
1404 | { | |
1405 | BlockDriverState *bs = child->opaque; | |
1406 | ||
1407 | if (child->role & BDRV_CHILD_COW) { | |
1408 | bdrv_backing_detach(child); | |
1409 | } | |
1410 | ||
1411 | bdrv_unapply_subtree_drain(child, bs); | |
a225369b HR |
1412 | |
1413 | QLIST_REMOVE(child, next); | |
48e08288 HR |
1414 | } |
1415 | ||
43483550 HR |
1416 | static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base, |
1417 | const char *filename, Error **errp) | |
1418 | { | |
1419 | if (c->role & BDRV_CHILD_COW) { | |
1420 | return bdrv_backing_update_filename(c, base, filename, errp); | |
1421 | } | |
1422 | return 0; | |
1423 | } | |
1424 | ||
fb62b588 | 1425 | AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c) |
3ca1f322 VSO |
1426 | { |
1427 | BlockDriverState *bs = c->opaque; | |
1428 | ||
1429 | return bdrv_get_aio_context(bs); | |
1430 | } | |
1431 | ||
43483550 HR |
1432 | const BdrvChildClass child_of_bds = { |
1433 | .parent_is_bds = true, | |
1434 | .get_parent_desc = bdrv_child_get_parent_desc, | |
1435 | .inherit_options = bdrv_inherited_options, | |
1436 | .drained_begin = bdrv_child_cb_drained_begin, | |
1437 | .drained_poll = bdrv_child_cb_drained_poll, | |
1438 | .drained_end = bdrv_child_cb_drained_end, | |
1439 | .attach = bdrv_child_cb_attach, | |
1440 | .detach = bdrv_child_cb_detach, | |
1441 | .inactivate = bdrv_child_cb_inactivate, | |
1442 | .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx, | |
1443 | .set_aio_ctx = bdrv_child_cb_set_aio_ctx, | |
1444 | .update_filename = bdrv_child_cb_update_filename, | |
fb62b588 | 1445 | .get_parent_aio_context = child_of_bds_get_parent_aio_context, |
43483550 HR |
1446 | }; |
1447 | ||
3ca1f322 VSO |
1448 | AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c) |
1449 | { | |
1450 | return c->klass->get_parent_aio_context(c); | |
1451 | } | |
1452 | ||
7b272452 KW |
1453 | static int bdrv_open_flags(BlockDriverState *bs, int flags) |
1454 | { | |
61de4c68 | 1455 | int open_flags = flags; |
7b272452 KW |
1456 | |
1457 | /* | |
1458 | * Clear flags that are internal to the block layer before opening the | |
1459 | * image. | |
1460 | */ | |
20cca275 | 1461 | open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); |
7b272452 | 1462 | |
7b272452 KW |
1463 | return open_flags; |
1464 | } | |
1465 | ||
91a097e7 KW |
1466 | static void update_flags_from_options(int *flags, QemuOpts *opts) |
1467 | { | |
2a3d4331 | 1468 | *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY); |
91a097e7 | 1469 | |
57f9db9a | 1470 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) { |
91a097e7 KW |
1471 | *flags |= BDRV_O_NO_FLUSH; |
1472 | } | |
1473 | ||
57f9db9a | 1474 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) { |
91a097e7 KW |
1475 | *flags |= BDRV_O_NOCACHE; |
1476 | } | |
f87a0e29 | 1477 | |
57f9db9a | 1478 | if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) { |
f87a0e29 AG |
1479 | *flags |= BDRV_O_RDWR; |
1480 | } | |
1481 | ||
e35bdc12 KW |
1482 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) { |
1483 | *flags |= BDRV_O_AUTO_RDONLY; | |
1484 | } | |
91a097e7 KW |
1485 | } |
1486 | ||
1487 | static void update_options_from_flags(QDict *options, int flags) | |
1488 | { | |
91a097e7 | 1489 | if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { |
46f5ac20 | 1490 | qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); |
91a097e7 KW |
1491 | } |
1492 | if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { | |
46f5ac20 EB |
1493 | qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, |
1494 | flags & BDRV_O_NO_FLUSH); | |
91a097e7 | 1495 | } |
f87a0e29 | 1496 | if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { |
46f5ac20 | 1497 | qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); |
f87a0e29 | 1498 | } |
e35bdc12 KW |
1499 | if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) { |
1500 | qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY, | |
1501 | flags & BDRV_O_AUTO_RDONLY); | |
1502 | } | |
91a097e7 KW |
1503 | } |
1504 | ||
636ea370 KW |
1505 | static void bdrv_assign_node_name(BlockDriverState *bs, |
1506 | const char *node_name, | |
1507 | Error **errp) | |
6913c0c2 | 1508 | { |
15489c76 | 1509 | char *gen_node_name = NULL; |
6913c0c2 | 1510 | |
15489c76 JC |
1511 | if (!node_name) { |
1512 | node_name = gen_node_name = id_generate(ID_BLOCK); | |
1513 | } else if (!id_wellformed(node_name)) { | |
1514 | /* | |
1515 | * Check for empty string or invalid characters, but not if it is | |
1516 | * generated (generated names use characters not available to the user) | |
1517 | */ | |
785ec4b1 | 1518 | error_setg(errp, "Invalid node-name: '%s'", node_name); |
636ea370 | 1519 | return; |
6913c0c2 BC |
1520 | } |
1521 | ||
0c5e94ee | 1522 | /* takes care of avoiding namespaces collisions */ |
7f06d47e | 1523 | if (blk_by_name(node_name)) { |
0c5e94ee BC |
1524 | error_setg(errp, "node-name=%s is conflicting with a device id", |
1525 | node_name); | |
15489c76 | 1526 | goto out; |
0c5e94ee BC |
1527 | } |
1528 | ||
6913c0c2 BC |
1529 | /* takes care of avoiding duplicates node names */ |
1530 | if (bdrv_find_node(node_name)) { | |
785ec4b1 | 1531 | error_setg(errp, "Duplicate nodes with node-name='%s'", node_name); |
15489c76 | 1532 | goto out; |
6913c0c2 BC |
1533 | } |
1534 | ||
824808dd KW |
1535 | /* Make sure that the node name isn't truncated */ |
1536 | if (strlen(node_name) >= sizeof(bs->node_name)) { | |
1537 | error_setg(errp, "Node name too long"); | |
1538 | goto out; | |
1539 | } | |
1540 | ||
6913c0c2 BC |
1541 | /* copy node name into the bs and insert it into the graph list */ |
1542 | pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); | |
1543 | QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); | |
15489c76 JC |
1544 | out: |
1545 | g_free(gen_node_name); | |
6913c0c2 BC |
1546 | } |
1547 | ||
01a56501 KW |
1548 | static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, |
1549 | const char *node_name, QDict *options, | |
1550 | int open_flags, Error **errp) | |
1551 | { | |
1552 | Error *local_err = NULL; | |
0f12264e | 1553 | int i, ret; |
01a56501 KW |
1554 | |
1555 | bdrv_assign_node_name(bs, node_name, &local_err); | |
1556 | if (local_err) { | |
1557 | error_propagate(errp, local_err); | |
1558 | return -EINVAL; | |
1559 | } | |
1560 | ||
1561 | bs->drv = drv; | |
1562 | bs->opaque = g_malloc0(drv->instance_size); | |
1563 | ||
1564 | if (drv->bdrv_file_open) { | |
1565 | assert(!drv->bdrv_needs_filename || bs->filename[0]); | |
1566 | ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); | |
680c7f96 | 1567 | } else if (drv->bdrv_open) { |
01a56501 | 1568 | ret = drv->bdrv_open(bs, options, open_flags, &local_err); |
680c7f96 KW |
1569 | } else { |
1570 | ret = 0; | |
01a56501 KW |
1571 | } |
1572 | ||
1573 | if (ret < 0) { | |
1574 | if (local_err) { | |
1575 | error_propagate(errp, local_err); | |
1576 | } else if (bs->filename[0]) { | |
1577 | error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); | |
1578 | } else { | |
1579 | error_setg_errno(errp, -ret, "Could not open image"); | |
1580 | } | |
180ca19a | 1581 | goto open_failed; |
01a56501 KW |
1582 | } |
1583 | ||
1584 | ret = refresh_total_sectors(bs, bs->total_sectors); | |
1585 | if (ret < 0) { | |
1586 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); | |
180ca19a | 1587 | return ret; |
01a56501 KW |
1588 | } |
1589 | ||
1e4c797c | 1590 | bdrv_refresh_limits(bs, NULL, &local_err); |
01a56501 KW |
1591 | if (local_err) { |
1592 | error_propagate(errp, local_err); | |
180ca19a | 1593 | return -EINVAL; |
01a56501 KW |
1594 | } |
1595 | ||
1596 | assert(bdrv_opt_mem_align(bs) != 0); | |
1597 | assert(bdrv_min_mem_align(bs) != 0); | |
1598 | assert(is_power_of_2(bs->bl.request_alignment)); | |
1599 | ||
0f12264e KW |
1600 | for (i = 0; i < bs->quiesce_counter; i++) { |
1601 | if (drv->bdrv_co_drain_begin) { | |
1602 | drv->bdrv_co_drain_begin(bs); | |
1603 | } | |
1604 | } | |
1605 | ||
01a56501 | 1606 | return 0; |
180ca19a MP |
1607 | open_failed: |
1608 | bs->drv = NULL; | |
1609 | if (bs->file != NULL) { | |
1610 | bdrv_unref_child(bs, bs->file); | |
1611 | bs->file = NULL; | |
1612 | } | |
01a56501 KW |
1613 | g_free(bs->opaque); |
1614 | bs->opaque = NULL; | |
01a56501 KW |
1615 | return ret; |
1616 | } | |
1617 | ||
621d1737 VSO |
1618 | /* |
1619 | * Create and open a block node. | |
1620 | * | |
1621 | * @options is a QDict of options to pass to the block drivers, or NULL for an | |
1622 | * empty set of options. The reference to the QDict belongs to the block layer | |
1623 | * after the call (even on failure), so if the caller intends to reuse the | |
1624 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. | |
1625 | */ | |
1626 | BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv, | |
1627 | const char *node_name, | |
1628 | QDict *options, int flags, | |
1629 | Error **errp) | |
680c7f96 KW |
1630 | { |
1631 | BlockDriverState *bs; | |
1632 | int ret; | |
1633 | ||
1634 | bs = bdrv_new(); | |
1635 | bs->open_flags = flags; | |
621d1737 VSO |
1636 | bs->options = options ?: qdict_new(); |
1637 | bs->explicit_options = qdict_clone_shallow(bs->options); | |
680c7f96 KW |
1638 | bs->opaque = NULL; |
1639 | ||
1640 | update_options_from_flags(bs->options, flags); | |
1641 | ||
1642 | ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); | |
1643 | if (ret < 0) { | |
cb3e7f08 | 1644 | qobject_unref(bs->explicit_options); |
180ca19a | 1645 | bs->explicit_options = NULL; |
cb3e7f08 | 1646 | qobject_unref(bs->options); |
180ca19a | 1647 | bs->options = NULL; |
680c7f96 KW |
1648 | bdrv_unref(bs); |
1649 | return NULL; | |
1650 | } | |
1651 | ||
1652 | return bs; | |
1653 | } | |
1654 | ||
621d1737 VSO |
1655 | /* Create and open a block node. */ |
1656 | BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, | |
1657 | int flags, Error **errp) | |
1658 | { | |
1659 | return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp); | |
1660 | } | |
1661 | ||
c5f3014b | 1662 | QemuOptsList bdrv_runtime_opts = { |
18edf289 KW |
1663 | .name = "bdrv_common", |
1664 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), | |
1665 | .desc = { | |
1666 | { | |
1667 | .name = "node-name", | |
1668 | .type = QEMU_OPT_STRING, | |
1669 | .help = "Node name of the block device node", | |
1670 | }, | |
62392ebb KW |
1671 | { |
1672 | .name = "driver", | |
1673 | .type = QEMU_OPT_STRING, | |
1674 | .help = "Block driver to use for the node", | |
1675 | }, | |
91a097e7 KW |
1676 | { |
1677 | .name = BDRV_OPT_CACHE_DIRECT, | |
1678 | .type = QEMU_OPT_BOOL, | |
1679 | .help = "Bypass software writeback cache on the host", | |
1680 | }, | |
1681 | { | |
1682 | .name = BDRV_OPT_CACHE_NO_FLUSH, | |
1683 | .type = QEMU_OPT_BOOL, | |
1684 | .help = "Ignore flush requests", | |
1685 | }, | |
f87a0e29 AG |
1686 | { |
1687 | .name = BDRV_OPT_READ_ONLY, | |
1688 | .type = QEMU_OPT_BOOL, | |
1689 | .help = "Node is opened in read-only mode", | |
1690 | }, | |
e35bdc12 KW |
1691 | { |
1692 | .name = BDRV_OPT_AUTO_READ_ONLY, | |
1693 | .type = QEMU_OPT_BOOL, | |
1694 | .help = "Node can become read-only if opening read-write fails", | |
1695 | }, | |
692e01a2 KW |
1696 | { |
1697 | .name = "detect-zeroes", | |
1698 | .type = QEMU_OPT_STRING, | |
1699 | .help = "try to optimize zero writes (off, on, unmap)", | |
1700 | }, | |
818584a4 | 1701 | { |
415bbca8 | 1702 | .name = BDRV_OPT_DISCARD, |
818584a4 KW |
1703 | .type = QEMU_OPT_STRING, |
1704 | .help = "discard operation (ignore/off, unmap/on)", | |
1705 | }, | |
5a9347c6 FZ |
1706 | { |
1707 | .name = BDRV_OPT_FORCE_SHARE, | |
1708 | .type = QEMU_OPT_BOOL, | |
1709 | .help = "always accept other writers (default: off)", | |
1710 | }, | |
18edf289 KW |
1711 | { /* end of list */ } |
1712 | }, | |
1713 | }; | |
1714 | ||
5a5e7f8c ML |
1715 | QemuOptsList bdrv_create_opts_simple = { |
1716 | .name = "simple-create-opts", | |
1717 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head), | |
fd17146c HR |
1718 | .desc = { |
1719 | { | |
1720 | .name = BLOCK_OPT_SIZE, | |
1721 | .type = QEMU_OPT_SIZE, | |
1722 | .help = "Virtual disk size" | |
1723 | }, | |
1724 | { | |
1725 | .name = BLOCK_OPT_PREALLOC, | |
1726 | .type = QEMU_OPT_STRING, | |
1727 | .help = "Preallocation mode (allowed values: off)" | |
1728 | }, | |
1729 | { /* end of list */ } | |
1730 | } | |
1731 | }; | |
1732 | ||
57915332 KW |
1733 | /* |
1734 | * Common part for opening disk images and files | |
b6ad491a KW |
1735 | * |
1736 | * Removes all processed options from *options. | |
57915332 | 1737 | */ |
5696c6e3 | 1738 | static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, |
82dc8b41 | 1739 | QDict *options, Error **errp) |
57915332 KW |
1740 | { |
1741 | int ret, open_flags; | |
035fccdf | 1742 | const char *filename; |
62392ebb | 1743 | const char *driver_name = NULL; |
6913c0c2 | 1744 | const char *node_name = NULL; |
818584a4 | 1745 | const char *discard; |
18edf289 | 1746 | QemuOpts *opts; |
62392ebb | 1747 | BlockDriver *drv; |
34b5d2c6 | 1748 | Error *local_err = NULL; |
307261b2 | 1749 | bool ro; |
57915332 | 1750 | |
6405875c | 1751 | assert(bs->file == NULL); |
707ff828 | 1752 | assert(options != NULL && bs->options != options); |
57915332 | 1753 | |
62392ebb | 1754 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
af175e85 | 1755 | if (!qemu_opts_absorb_qdict(opts, options, errp)) { |
62392ebb KW |
1756 | ret = -EINVAL; |
1757 | goto fail_opts; | |
1758 | } | |
1759 | ||
9b7e8691 AG |
1760 | update_flags_from_options(&bs->open_flags, opts); |
1761 | ||
62392ebb KW |
1762 | driver_name = qemu_opt_get(opts, "driver"); |
1763 | drv = bdrv_find_format(driver_name); | |
1764 | assert(drv != NULL); | |
1765 | ||
5a9347c6 FZ |
1766 | bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); |
1767 | ||
1768 | if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { | |
1769 | error_setg(errp, | |
1770 | BDRV_OPT_FORCE_SHARE | |
1771 | "=on can only be used with read-only images"); | |
1772 | ret = -EINVAL; | |
1773 | goto fail_opts; | |
1774 | } | |
1775 | ||
45673671 | 1776 | if (file != NULL) { |
f30c66ba | 1777 | bdrv_refresh_filename(blk_bs(file)); |
5696c6e3 | 1778 | filename = blk_bs(file)->filename; |
45673671 | 1779 | } else { |
129c7d1c MA |
1780 | /* |
1781 | * Caution: while qdict_get_try_str() is fine, getting | |
1782 | * non-string types would require more care. When @options | |
1783 | * come from -blockdev or blockdev_add, its members are typed | |
1784 | * according to the QAPI schema, but when they come from | |
1785 | * -drive, they're all QString. | |
1786 | */ | |
45673671 KW |
1787 | filename = qdict_get_try_str(options, "filename"); |
1788 | } | |
1789 | ||
4a008240 | 1790 | if (drv->bdrv_needs_filename && (!filename || !filename[0])) { |
765003db KW |
1791 | error_setg(errp, "The '%s' block driver requires a file name", |
1792 | drv->format_name); | |
18edf289 KW |
1793 | ret = -EINVAL; |
1794 | goto fail_opts; | |
6913c0c2 | 1795 | } |
6913c0c2 | 1796 | |
82dc8b41 KW |
1797 | trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, |
1798 | drv->format_name); | |
62392ebb | 1799 | |
307261b2 VSO |
1800 | ro = bdrv_is_read_only(bs); |
1801 | ||
1802 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) { | |
1803 | if (!ro && bdrv_is_whitelisted(drv, true)) { | |
8be25de6 KW |
1804 | ret = bdrv_apply_auto_read_only(bs, NULL, NULL); |
1805 | } else { | |
1806 | ret = -ENOTSUP; | |
1807 | } | |
1808 | if (ret < 0) { | |
1809 | error_setg(errp, | |
307261b2 | 1810 | !ro && bdrv_is_whitelisted(drv, true) |
8be25de6 KW |
1811 | ? "Driver '%s' can only be used for read-only devices" |
1812 | : "Driver '%s' is not whitelisted", | |
1813 | drv->format_name); | |
1814 | goto fail_opts; | |
1815 | } | |
b64ec4e4 | 1816 | } |
57915332 | 1817 | |
d3faa13e | 1818 | /* bdrv_new() and bdrv_close() make it so */ |
d73415a3 | 1819 | assert(qatomic_read(&bs->copy_on_read) == 0); |
d3faa13e | 1820 | |
82dc8b41 | 1821 | if (bs->open_flags & BDRV_O_COPY_ON_READ) { |
307261b2 | 1822 | if (!ro) { |
0ebd24e0 KW |
1823 | bdrv_enable_copy_on_read(bs); |
1824 | } else { | |
1825 | error_setg(errp, "Can't use copy-on-read on read-only device"); | |
18edf289 KW |
1826 | ret = -EINVAL; |
1827 | goto fail_opts; | |
0ebd24e0 | 1828 | } |
53fec9d3 SH |
1829 | } |
1830 | ||
415bbca8 | 1831 | discard = qemu_opt_get(opts, BDRV_OPT_DISCARD); |
818584a4 KW |
1832 | if (discard != NULL) { |
1833 | if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { | |
1834 | error_setg(errp, "Invalid discard option"); | |
1835 | ret = -EINVAL; | |
1836 | goto fail_opts; | |
1837 | } | |
1838 | } | |
1839 | ||
543770bd AG |
1840 | bs->detect_zeroes = |
1841 | bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err); | |
1842 | if (local_err) { | |
1843 | error_propagate(errp, local_err); | |
1844 | ret = -EINVAL; | |
1845 | goto fail_opts; | |
692e01a2 KW |
1846 | } |
1847 | ||
c2ad1b0c KW |
1848 | if (filename != NULL) { |
1849 | pstrcpy(bs->filename, sizeof(bs->filename), filename); | |
1850 | } else { | |
1851 | bs->filename[0] = '\0'; | |
1852 | } | |
91af7014 | 1853 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); |
57915332 | 1854 | |
66f82cee | 1855 | /* Open the image, either directly or using a protocol */ |
82dc8b41 | 1856 | open_flags = bdrv_open_flags(bs, bs->open_flags); |
01a56501 | 1857 | node_name = qemu_opt_get(opts, "node-name"); |
57915332 | 1858 | |
01a56501 KW |
1859 | assert(!drv->bdrv_file_open || file == NULL); |
1860 | ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); | |
51762288 | 1861 | if (ret < 0) { |
01a56501 | 1862 | goto fail_opts; |
3baca891 KW |
1863 | } |
1864 | ||
18edf289 | 1865 | qemu_opts_del(opts); |
57915332 KW |
1866 | return 0; |
1867 | ||
18edf289 KW |
1868 | fail_opts: |
1869 | qemu_opts_del(opts); | |
57915332 KW |
1870 | return ret; |
1871 | } | |
1872 | ||
5e5c4f63 KW |
1873 | static QDict *parse_json_filename(const char *filename, Error **errp) |
1874 | { | |
1875 | QObject *options_obj; | |
1876 | QDict *options; | |
1877 | int ret; | |
1878 | ||
1879 | ret = strstart(filename, "json:", &filename); | |
1880 | assert(ret); | |
1881 | ||
5577fff7 | 1882 | options_obj = qobject_from_json(filename, errp); |
5e5c4f63 | 1883 | if (!options_obj) { |
5577fff7 | 1884 | error_prepend(errp, "Could not parse the JSON options: "); |
5e5c4f63 KW |
1885 | return NULL; |
1886 | } | |
1887 | ||
7dc847eb | 1888 | options = qobject_to(QDict, options_obj); |
ca6b6e1e | 1889 | if (!options) { |
cb3e7f08 | 1890 | qobject_unref(options_obj); |
5e5c4f63 KW |
1891 | error_setg(errp, "Invalid JSON object given"); |
1892 | return NULL; | |
1893 | } | |
1894 | ||
5e5c4f63 KW |
1895 | qdict_flatten(options); |
1896 | ||
1897 | return options; | |
1898 | } | |
1899 | ||
de3b53f0 KW |
1900 | static void parse_json_protocol(QDict *options, const char **pfilename, |
1901 | Error **errp) | |
1902 | { | |
1903 | QDict *json_options; | |
1904 | Error *local_err = NULL; | |
1905 | ||
1906 | /* Parse json: pseudo-protocol */ | |
1907 | if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { | |
1908 | return; | |
1909 | } | |
1910 | ||
1911 | json_options = parse_json_filename(*pfilename, &local_err); | |
1912 | if (local_err) { | |
1913 | error_propagate(errp, local_err); | |
1914 | return; | |
1915 | } | |
1916 | ||
1917 | /* Options given in the filename have lower priority than options | |
1918 | * specified directly */ | |
1919 | qdict_join(options, json_options, false); | |
cb3e7f08 | 1920 | qobject_unref(json_options); |
de3b53f0 KW |
1921 | *pfilename = NULL; |
1922 | } | |
1923 | ||
b6ce07aa | 1924 | /* |
f54120ff KW |
1925 | * Fills in default options for opening images and converts the legacy |
1926 | * filename/flags pair to option QDict entries. | |
53a29513 HR |
1927 | * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a |
1928 | * block driver has been specified explicitly. | |
b6ce07aa | 1929 | */ |
de3b53f0 | 1930 | static int bdrv_fill_options(QDict **options, const char *filename, |
053e1578 | 1931 | int *flags, Error **errp) |
ea2384d3 | 1932 | { |
c2ad1b0c | 1933 | const char *drvname; |
53a29513 | 1934 | bool protocol = *flags & BDRV_O_PROTOCOL; |
e3fa4bfa | 1935 | bool parse_filename = false; |
053e1578 | 1936 | BlockDriver *drv = NULL; |
34b5d2c6 | 1937 | Error *local_err = NULL; |
83f64091 | 1938 | |
129c7d1c MA |
1939 | /* |
1940 | * Caution: while qdict_get_try_str() is fine, getting non-string | |
1941 | * types would require more care. When @options come from | |
1942 | * -blockdev or blockdev_add, its members are typed according to | |
1943 | * the QAPI schema, but when they come from -drive, they're all | |
1944 | * QString. | |
1945 | */ | |
53a29513 | 1946 | drvname = qdict_get_try_str(*options, "driver"); |
053e1578 HR |
1947 | if (drvname) { |
1948 | drv = bdrv_find_format(drvname); | |
1949 | if (!drv) { | |
1950 | error_setg(errp, "Unknown driver '%s'", drvname); | |
1951 | return -ENOENT; | |
1952 | } | |
1953 | /* If the user has explicitly specified the driver, this choice should | |
1954 | * override the BDRV_O_PROTOCOL flag */ | |
1955 | protocol = drv->bdrv_file_open; | |
53a29513 HR |
1956 | } |
1957 | ||
1958 | if (protocol) { | |
1959 | *flags |= BDRV_O_PROTOCOL; | |
1960 | } else { | |
1961 | *flags &= ~BDRV_O_PROTOCOL; | |
1962 | } | |
1963 | ||
91a097e7 KW |
1964 | /* Translate cache options from flags into options */ |
1965 | update_options_from_flags(*options, *flags); | |
1966 | ||
035fccdf | 1967 | /* Fetch the file name from the options QDict if necessary */ |
17b005f1 | 1968 | if (protocol && filename) { |
f54120ff | 1969 | if (!qdict_haskey(*options, "filename")) { |
46f5ac20 | 1970 | qdict_put_str(*options, "filename", filename); |
f54120ff KW |
1971 | parse_filename = true; |
1972 | } else { | |
1973 | error_setg(errp, "Can't specify 'file' and 'filename' options at " | |
1974 | "the same time"); | |
1975 | return -EINVAL; | |
1976 | } | |
035fccdf KW |
1977 | } |
1978 | ||
c2ad1b0c | 1979 | /* Find the right block driver */ |
129c7d1c | 1980 | /* See cautionary note on accessing @options above */ |
f54120ff | 1981 | filename = qdict_get_try_str(*options, "filename"); |
f54120ff | 1982 | |
053e1578 HR |
1983 | if (!drvname && protocol) { |
1984 | if (filename) { | |
1985 | drv = bdrv_find_protocol(filename, parse_filename, errp); | |
17b005f1 | 1986 | if (!drv) { |
053e1578 | 1987 | return -EINVAL; |
17b005f1 | 1988 | } |
053e1578 HR |
1989 | |
1990 | drvname = drv->format_name; | |
46f5ac20 | 1991 | qdict_put_str(*options, "driver", drvname); |
053e1578 HR |
1992 | } else { |
1993 | error_setg(errp, "Must specify either driver or file"); | |
1994 | return -EINVAL; | |
98289620 | 1995 | } |
c2ad1b0c KW |
1996 | } |
1997 | ||
17b005f1 | 1998 | assert(drv || !protocol); |
c2ad1b0c | 1999 | |
f54120ff | 2000 | /* Driver-specific filename parsing */ |
17b005f1 | 2001 | if (drv && drv->bdrv_parse_filename && parse_filename) { |
5acd9d81 | 2002 | drv->bdrv_parse_filename(filename, *options, &local_err); |
84d18f06 | 2003 | if (local_err) { |
34b5d2c6 | 2004 | error_propagate(errp, local_err); |
f54120ff | 2005 | return -EINVAL; |
6963a30d | 2006 | } |
cd5d031e HR |
2007 | |
2008 | if (!drv->bdrv_needs_filename) { | |
2009 | qdict_del(*options, "filename"); | |
cd5d031e | 2010 | } |
6963a30d KW |
2011 | } |
2012 | ||
f54120ff KW |
2013 | return 0; |
2014 | } | |
2015 | ||
148eb13c KW |
2016 | typedef struct BlockReopenQueueEntry { |
2017 | bool prepared; | |
69b736e7 | 2018 | bool perms_checked; |
148eb13c | 2019 | BDRVReopenState state; |
859443b0 | 2020 | QTAILQ_ENTRY(BlockReopenQueueEntry) entry; |
148eb13c KW |
2021 | } BlockReopenQueueEntry; |
2022 | ||
2023 | /* | |
2024 | * Return the flags that @bs will have after the reopens in @q have | |
2025 | * successfully completed. If @q is NULL (or @bs is not contained in @q), | |
2026 | * return the current flags. | |
2027 | */ | |
2028 | static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) | |
2029 | { | |
2030 | BlockReopenQueueEntry *entry; | |
2031 | ||
2032 | if (q != NULL) { | |
859443b0 | 2033 | QTAILQ_FOREACH(entry, q, entry) { |
148eb13c KW |
2034 | if (entry->state.bs == bs) { |
2035 | return entry->state.flags; | |
2036 | } | |
2037 | } | |
2038 | } | |
2039 | ||
2040 | return bs->open_flags; | |
2041 | } | |
2042 | ||
2043 | /* Returns whether the image file can be written to after the reopen queue @q | |
2044 | * has been successfully applied, or right now if @q is NULL. */ | |
cc022140 HR |
2045 | static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, |
2046 | BlockReopenQueue *q) | |
148eb13c KW |
2047 | { |
2048 | int flags = bdrv_reopen_get_flags(q, bs); | |
2049 | ||
2050 | return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; | |
2051 | } | |
2052 | ||
cc022140 HR |
2053 | /* |
2054 | * Return whether the BDS can be written to. This is not necessarily | |
2055 | * the same as !bdrv_is_read_only(bs), as inactivated images may not | |
2056 | * be written to but do not count as read-only images. | |
2057 | */ | |
2058 | bool bdrv_is_writable(BlockDriverState *bs) | |
2059 | { | |
2060 | return bdrv_is_writable_after_reopen(bs, NULL); | |
2061 | } | |
2062 | ||
3bf416ba VSO |
2063 | static char *bdrv_child_user_desc(BdrvChild *c) |
2064 | { | |
da261b69 | 2065 | return c->klass->get_parent_desc(c); |
3bf416ba VSO |
2066 | } |
2067 | ||
30ebb9aa VSO |
2068 | /* |
2069 | * Check that @a allows everything that @b needs. @a and @b must reference same | |
2070 | * child node. | |
2071 | */ | |
3bf416ba VSO |
2072 | static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp) |
2073 | { | |
30ebb9aa VSO |
2074 | const char *child_bs_name; |
2075 | g_autofree char *a_user = NULL; | |
2076 | g_autofree char *b_user = NULL; | |
2077 | g_autofree char *perms = NULL; | |
2078 | ||
2079 | assert(a->bs); | |
2080 | assert(a->bs == b->bs); | |
3bf416ba VSO |
2081 | |
2082 | if ((b->perm & a->shared_perm) == b->perm) { | |
2083 | return true; | |
2084 | } | |
2085 | ||
30ebb9aa VSO |
2086 | child_bs_name = bdrv_get_node_name(b->bs); |
2087 | a_user = bdrv_child_user_desc(a); | |
2088 | b_user = bdrv_child_user_desc(b); | |
2089 | perms = bdrv_perm_names(b->perm & ~a->shared_perm); | |
2090 | ||
2091 | error_setg(errp, "Permission conflict on node '%s': permissions '%s' are " | |
2092 | "both required by %s (uses node '%s' as '%s' child) and " | |
2093 | "unshared by %s (uses node '%s' as '%s' child).", | |
2094 | child_bs_name, perms, | |
2095 | b_user, child_bs_name, b->name, | |
2096 | a_user, child_bs_name, a->name); | |
3bf416ba VSO |
2097 | |
2098 | return false; | |
2099 | } | |
2100 | ||
9397c14f | 2101 | static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp) |
3bf416ba VSO |
2102 | { |
2103 | BdrvChild *a, *b; | |
2104 | ||
2105 | /* | |
2106 | * During the loop we'll look at each pair twice. That's correct because | |
2107 | * bdrv_a_allow_b() is asymmetric and we should check each pair in both | |
2108 | * directions. | |
2109 | */ | |
2110 | QLIST_FOREACH(a, &bs->parents, next_parent) { | |
2111 | QLIST_FOREACH(b, &bs->parents, next_parent) { | |
9397c14f | 2112 | if (a == b) { |
3bf416ba VSO |
2113 | continue; |
2114 | } | |
2115 | ||
2116 | if (!bdrv_a_allow_b(a, b, errp)) { | |
2117 | return true; | |
2118 | } | |
2119 | } | |
2120 | } | |
2121 | ||
2122 | return false; | |
2123 | } | |
2124 | ||
ffd1a5a2 | 2125 | static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, |
e5d8a406 HR |
2126 | BdrvChild *c, BdrvChildRole role, |
2127 | BlockReopenQueue *reopen_queue, | |
ffd1a5a2 FZ |
2128 | uint64_t parent_perm, uint64_t parent_shared, |
2129 | uint64_t *nperm, uint64_t *nshared) | |
2130 | { | |
0b3ca76e | 2131 | assert(bs->drv && bs->drv->bdrv_child_perm); |
e5d8a406 | 2132 | bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, |
0b3ca76e AG |
2133 | parent_perm, parent_shared, |
2134 | nperm, nshared); | |
e0995dc3 | 2135 | /* TODO Take force_share from reopen_queue */ |
ffd1a5a2 FZ |
2136 | if (child_bs && child_bs->force_share) { |
2137 | *nshared = BLK_PERM_ALL; | |
2138 | } | |
2139 | } | |
2140 | ||
bd57f8f7 VSO |
2141 | /* |
2142 | * Adds the whole subtree of @bs (including @bs itself) to the @list (except for | |
2143 | * nodes that are already in the @list, of course) so that final list is | |
2144 | * topologically sorted. Return the result (GSList @list object is updated, so | |
2145 | * don't use old reference after function call). | |
2146 | * | |
2147 | * On function start @list must be already topologically sorted and for any node | |
2148 | * in the @list the whole subtree of the node must be in the @list as well. The | |
2149 | * simplest way to satisfy this criteria: use only result of | |
2150 | * bdrv_topological_dfs() or NULL as @list parameter. | |
2151 | */ | |
2152 | static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found, | |
2153 | BlockDriverState *bs) | |
2154 | { | |
2155 | BdrvChild *child; | |
2156 | g_autoptr(GHashTable) local_found = NULL; | |
2157 | ||
2158 | if (!found) { | |
2159 | assert(!list); | |
2160 | found = local_found = g_hash_table_new(NULL, NULL); | |
2161 | } | |
2162 | ||
2163 | if (g_hash_table_contains(found, bs)) { | |
2164 | return list; | |
2165 | } | |
2166 | g_hash_table_add(found, bs); | |
2167 | ||
2168 | QLIST_FOREACH(child, &bs->children, next) { | |
2169 | list = bdrv_topological_dfs(list, found, child->bs); | |
2170 | } | |
2171 | ||
2172 | return g_slist_prepend(list, bs); | |
2173 | } | |
2174 | ||
ecb776bd VSO |
2175 | typedef struct BdrvChildSetPermState { |
2176 | BdrvChild *child; | |
2177 | uint64_t old_perm; | |
2178 | uint64_t old_shared_perm; | |
2179 | } BdrvChildSetPermState; | |
b0defa83 VSO |
2180 | |
2181 | static void bdrv_child_set_perm_abort(void *opaque) | |
2182 | { | |
ecb776bd VSO |
2183 | BdrvChildSetPermState *s = opaque; |
2184 | ||
2185 | s->child->perm = s->old_perm; | |
2186 | s->child->shared_perm = s->old_shared_perm; | |
b0defa83 VSO |
2187 | } |
2188 | ||
2189 | static TransactionActionDrv bdrv_child_set_pem_drv = { | |
2190 | .abort = bdrv_child_set_perm_abort, | |
ecb776bd | 2191 | .clean = g_free, |
b0defa83 VSO |
2192 | }; |
2193 | ||
ecb776bd VSO |
2194 | static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, |
2195 | uint64_t shared, Transaction *tran) | |
b0defa83 | 2196 | { |
ecb776bd VSO |
2197 | BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1); |
2198 | ||
2199 | *s = (BdrvChildSetPermState) { | |
2200 | .child = c, | |
2201 | .old_perm = c->perm, | |
2202 | .old_shared_perm = c->shared_perm, | |
2203 | }; | |
b0defa83 VSO |
2204 | |
2205 | c->perm = perm; | |
2206 | c->shared_perm = shared; | |
2207 | ||
ecb776bd | 2208 | tran_add(tran, &bdrv_child_set_pem_drv, s); |
b0defa83 VSO |
2209 | } |
2210 | ||
2513ef59 VSO |
2211 | static void bdrv_drv_set_perm_commit(void *opaque) |
2212 | { | |
2213 | BlockDriverState *bs = opaque; | |
2214 | uint64_t cumulative_perms, cumulative_shared_perms; | |
2215 | ||
2216 | if (bs->drv->bdrv_set_perm) { | |
2217 | bdrv_get_cumulative_perm(bs, &cumulative_perms, | |
2218 | &cumulative_shared_perms); | |
2219 | bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); | |
2220 | } | |
2221 | } | |
2222 | ||
2223 | static void bdrv_drv_set_perm_abort(void *opaque) | |
2224 | { | |
2225 | BlockDriverState *bs = opaque; | |
2226 | ||
2227 | if (bs->drv->bdrv_abort_perm_update) { | |
2228 | bs->drv->bdrv_abort_perm_update(bs); | |
2229 | } | |
2230 | } | |
2231 | ||
2232 | TransactionActionDrv bdrv_drv_set_perm_drv = { | |
2233 | .abort = bdrv_drv_set_perm_abort, | |
2234 | .commit = bdrv_drv_set_perm_commit, | |
2235 | }; | |
2236 | ||
2237 | static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, | |
2238 | uint64_t shared_perm, Transaction *tran, | |
2239 | Error **errp) | |
2240 | { | |
2241 | if (!bs->drv) { | |
2242 | return 0; | |
2243 | } | |
2244 | ||
2245 | if (bs->drv->bdrv_check_perm) { | |
2246 | int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp); | |
2247 | if (ret < 0) { | |
2248 | return ret; | |
2249 | } | |
2250 | } | |
2251 | ||
2252 | if (tran) { | |
2253 | tran_add(tran, &bdrv_drv_set_perm_drv, bs); | |
2254 | } | |
2255 | ||
2256 | return 0; | |
2257 | } | |
2258 | ||
0978623e VSO |
2259 | typedef struct BdrvReplaceChildState { |
2260 | BdrvChild *child; | |
82b54cf5 | 2261 | BdrvChild **childp; |
0978623e | 2262 | BlockDriverState *old_bs; |
b0a9f6fe | 2263 | bool free_empty_child; |
0978623e VSO |
2264 | } BdrvReplaceChildState; |
2265 | ||
2266 | static void bdrv_replace_child_commit(void *opaque) | |
2267 | { | |
2268 | BdrvReplaceChildState *s = opaque; | |
2269 | ||
b0a9f6fe HR |
2270 | if (s->free_empty_child && !s->child->bs) { |
2271 | bdrv_child_free(s->child); | |
2272 | } | |
0978623e VSO |
2273 | bdrv_unref(s->old_bs); |
2274 | } | |
2275 | ||
2276 | static void bdrv_replace_child_abort(void *opaque) | |
2277 | { | |
2278 | BdrvReplaceChildState *s = opaque; | |
2279 | BlockDriverState *new_bs = s->child->bs; | |
2280 | ||
82b54cf5 HR |
2281 | /* |
2282 | * old_bs reference is transparently moved from @s to s->child. | |
2283 | * | |
2284 | * Pass &s->child here instead of s->childp, because: | |
2285 | * (1) s->old_bs must be non-NULL, so bdrv_replace_child_noperm() will not | |
2286 | * modify the BdrvChild * pointer we indirectly pass to it, i.e. it | |
2287 | * will not modify s->child. From that perspective, it does not matter | |
2288 | * whether we pass s->childp or &s->child. | |
82b54cf5 HR |
2289 | * (2) If new_bs is not NULL, s->childp will be NULL. We then cannot use |
2290 | * it here. | |
2291 | * (3) If new_bs is NULL, *s->childp will have been NULLed by | |
2292 | * bdrv_replace_child_tran()'s bdrv_replace_child_noperm() call, and we | |
2293 | * must not pass a NULL *s->childp here. | |
82b54cf5 HR |
2294 | * |
2295 | * So whether new_bs was NULL or not, we cannot pass s->childp here; and in | |
2296 | * any case, there is no reason to pass it anyway. | |
2297 | */ | |
b0a9f6fe HR |
2298 | bdrv_replace_child_noperm(&s->child, s->old_bs, true); |
2299 | /* | |
2300 | * The child was pre-existing, so s->old_bs must be non-NULL, and | |
2301 | * s->child thus must not have been freed | |
2302 | */ | |
2303 | assert(s->child != NULL); | |
2304 | if (!new_bs) { | |
2305 | /* As described above, *s->childp was cleared, so restore it */ | |
2306 | assert(s->childp != NULL); | |
2307 | *s->childp = s->child; | |
2308 | } | |
0978623e VSO |
2309 | bdrv_unref(new_bs); |
2310 | } | |
2311 | ||
2312 | static TransactionActionDrv bdrv_replace_child_drv = { | |
2313 | .commit = bdrv_replace_child_commit, | |
2314 | .abort = bdrv_replace_child_abort, | |
2315 | .clean = g_free, | |
2316 | }; | |
2317 | ||
2318 | /* | |
4bf021db | 2319 | * bdrv_replace_child_tran |
0978623e VSO |
2320 | * |
2321 | * Note: real unref of old_bs is done only on commit. | |
4bf021db VSO |
2322 | * |
2323 | * The function doesn't update permissions, caller is responsible for this. | |
82b54cf5 | 2324 | * |
b0a9f6fe HR |
2325 | * (*childp)->bs must not be NULL. |
2326 | * | |
82b54cf5 HR |
2327 | * Note that if new_bs == NULL, @childp is stored in a state object attached |
2328 | * to @tran, so that the old child can be reinstated in the abort handler. | |
2329 | * Therefore, if @new_bs can be NULL, @childp must stay valid until the | |
2330 | * transaction is committed or aborted. | |
2331 | * | |
b0a9f6fe HR |
2332 | * If @free_empty_child is true and @new_bs is NULL, the BdrvChild is |
2333 | * freed (on commit). @free_empty_child should only be false if the | |
2334 | * caller will free the BDrvChild themselves (which may be important | |
2335 | * if this is in turn called in another transactional context). | |
0978623e | 2336 | */ |
82b54cf5 HR |
2337 | static void bdrv_replace_child_tran(BdrvChild **childp, |
2338 | BlockDriverState *new_bs, | |
b0a9f6fe HR |
2339 | Transaction *tran, |
2340 | bool free_empty_child) | |
0978623e VSO |
2341 | { |
2342 | BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1); | |
2343 | *s = (BdrvReplaceChildState) { | |
82b54cf5 HR |
2344 | .child = *childp, |
2345 | .childp = new_bs == NULL ? childp : NULL, | |
2346 | .old_bs = (*childp)->bs, | |
b0a9f6fe | 2347 | .free_empty_child = free_empty_child, |
0978623e VSO |
2348 | }; |
2349 | tran_add(tran, &bdrv_replace_child_drv, s); | |
2350 | ||
b0a9f6fe HR |
2351 | /* The abort handler relies on this */ |
2352 | assert(s->old_bs != NULL); | |
2353 | ||
0978623e VSO |
2354 | if (new_bs) { |
2355 | bdrv_ref(new_bs); | |
2356 | } | |
b0a9f6fe HR |
2357 | /* |
2358 | * Pass free_empty_child=false, we will free the child (if | |
2359 | * necessary) in bdrv_replace_child_commit() (if our | |
2360 | * @free_empty_child parameter was true). | |
2361 | */ | |
2362 | bdrv_replace_child_noperm(childp, new_bs, false); | |
82b54cf5 | 2363 | /* old_bs reference is transparently moved from *childp to @s */ |
0978623e VSO |
2364 | } |
2365 | ||
33a610c3 | 2366 | /* |
c20555e1 VSO |
2367 | * Refresh permissions in @bs subtree. The function is intended to be called |
2368 | * after some graph modification that was done without permission update. | |
33a610c3 | 2369 | */ |
c20555e1 VSO |
2370 | static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q, |
2371 | Transaction *tran, Error **errp) | |
33a610c3 KW |
2372 | { |
2373 | BlockDriver *drv = bs->drv; | |
2374 | BdrvChild *c; | |
2375 | int ret; | |
c20555e1 VSO |
2376 | uint64_t cumulative_perms, cumulative_shared_perms; |
2377 | ||
2378 | bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms); | |
33a610c3 KW |
2379 | |
2380 | /* Write permissions never work with read-only images */ | |
2381 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && | |
cc022140 | 2382 | !bdrv_is_writable_after_reopen(bs, q)) |
33a610c3 | 2383 | { |
481e0eee HR |
2384 | if (!bdrv_is_writable_after_reopen(bs, NULL)) { |
2385 | error_setg(errp, "Block node is read-only"); | |
2386 | } else { | |
c20555e1 VSO |
2387 | error_setg(errp, "Read-only block node '%s' cannot support " |
2388 | "read-write users", bdrv_get_node_name(bs)); | |
481e0eee HR |
2389 | } |
2390 | ||
33a610c3 KW |
2391 | return -EPERM; |
2392 | } | |
2393 | ||
9c60a5d1 KW |
2394 | /* |
2395 | * Unaligned requests will automatically be aligned to bl.request_alignment | |
2396 | * and without RESIZE we can't extend requests to write to space beyond the | |
2397 | * end of the image, so it's required that the image size is aligned. | |
2398 | */ | |
2399 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && | |
2400 | !(cumulative_perms & BLK_PERM_RESIZE)) | |
2401 | { | |
2402 | if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) { | |
2403 | error_setg(errp, "Cannot get 'write' permission without 'resize': " | |
2404 | "Image size is not a multiple of request " | |
2405 | "alignment"); | |
2406 | return -EPERM; | |
2407 | } | |
2408 | } | |
2409 | ||
33a610c3 KW |
2410 | /* Check this node */ |
2411 | if (!drv) { | |
2412 | return 0; | |
2413 | } | |
2414 | ||
b1d2bbeb | 2415 | ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran, |
2513ef59 VSO |
2416 | errp); |
2417 | if (ret < 0) { | |
2418 | return ret; | |
33a610c3 KW |
2419 | } |
2420 | ||
78e421c9 | 2421 | /* Drivers that never have children can omit .bdrv_child_perm() */ |
33a610c3 | 2422 | if (!drv->bdrv_child_perm) { |
78e421c9 | 2423 | assert(QLIST_EMPTY(&bs->children)); |
33a610c3 KW |
2424 | return 0; |
2425 | } | |
2426 | ||
2427 | /* Check all children */ | |
2428 | QLIST_FOREACH(c, &bs->children, next) { | |
2429 | uint64_t cur_perm, cur_shared; | |
9eab1544 | 2430 | |
e5d8a406 | 2431 | bdrv_child_perm(bs, c->bs, c, c->role, q, |
ffd1a5a2 FZ |
2432 | cumulative_perms, cumulative_shared_perms, |
2433 | &cur_perm, &cur_shared); | |
ecb776bd | 2434 | bdrv_child_set_perm(c, cur_perm, cur_shared, tran); |
bd57f8f7 VSO |
2435 | } |
2436 | ||
2437 | return 0; | |
2438 | } | |
3ef45e02 | 2439 | |
25409807 VSO |
2440 | static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, |
2441 | Transaction *tran, Error **errp) | |
bd57f8f7 VSO |
2442 | { |
2443 | int ret; | |
b1d2bbeb | 2444 | BlockDriverState *bs; |
bd57f8f7 | 2445 | |
b1d2bbeb VSO |
2446 | for ( ; list; list = list->next) { |
2447 | bs = list->data; | |
2448 | ||
9397c14f | 2449 | if (bdrv_parent_perms_conflict(bs, errp)) { |
b1d2bbeb | 2450 | return -EINVAL; |
bd57f8f7 VSO |
2451 | } |
2452 | ||
c20555e1 | 2453 | ret = bdrv_node_refresh_perm(bs, q, tran, errp); |
33a610c3 KW |
2454 | if (ret < 0) { |
2455 | return ret; | |
2456 | } | |
2457 | } | |
2458 | ||
2459 | return 0; | |
2460 | } | |
2461 | ||
c7a0f2be KW |
2462 | void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, |
2463 | uint64_t *shared_perm) | |
33a610c3 KW |
2464 | { |
2465 | BdrvChild *c; | |
2466 | uint64_t cumulative_perms = 0; | |
2467 | uint64_t cumulative_shared_perms = BLK_PERM_ALL; | |
2468 | ||
2469 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
2470 | cumulative_perms |= c->perm; | |
2471 | cumulative_shared_perms &= c->shared_perm; | |
2472 | } | |
2473 | ||
2474 | *perm = cumulative_perms; | |
2475 | *shared_perm = cumulative_shared_perms; | |
2476 | } | |
2477 | ||
5176196c | 2478 | char *bdrv_perm_names(uint64_t perm) |
d083319f KW |
2479 | { |
2480 | struct perm_name { | |
2481 | uint64_t perm; | |
2482 | const char *name; | |
2483 | } permissions[] = { | |
2484 | { BLK_PERM_CONSISTENT_READ, "consistent read" }, | |
2485 | { BLK_PERM_WRITE, "write" }, | |
2486 | { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, | |
2487 | { BLK_PERM_RESIZE, "resize" }, | |
d083319f KW |
2488 | { 0, NULL } |
2489 | }; | |
2490 | ||
e2a7423a | 2491 | GString *result = g_string_sized_new(30); |
d083319f KW |
2492 | struct perm_name *p; |
2493 | ||
2494 | for (p = permissions; p->name; p++) { | |
2495 | if (perm & p->perm) { | |
e2a7423a AG |
2496 | if (result->len > 0) { |
2497 | g_string_append(result, ", "); | |
2498 | } | |
2499 | g_string_append(result, p->name); | |
d083319f KW |
2500 | } |
2501 | } | |
2502 | ||
e2a7423a | 2503 | return g_string_free(result, FALSE); |
d083319f KW |
2504 | } |
2505 | ||
33a610c3 | 2506 | |
071b474f | 2507 | static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp) |
bb87e4d1 VSO |
2508 | { |
2509 | int ret; | |
b1d2bbeb VSO |
2510 | Transaction *tran = tran_new(); |
2511 | g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs); | |
bb87e4d1 | 2512 | |
b1d2bbeb VSO |
2513 | ret = bdrv_list_refresh_perms(list, NULL, tran, errp); |
2514 | tran_finalize(tran, ret); | |
bb87e4d1 | 2515 | |
b1d2bbeb | 2516 | return ret; |
bb87e4d1 VSO |
2517 | } |
2518 | ||
33a610c3 KW |
2519 | int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, |
2520 | Error **errp) | |
2521 | { | |
1046779e | 2522 | Error *local_err = NULL; |
83928dc4 | 2523 | Transaction *tran = tran_new(); |
33a610c3 KW |
2524 | int ret; |
2525 | ||
ecb776bd | 2526 | bdrv_child_set_perm(c, perm, shared, tran); |
83928dc4 VSO |
2527 | |
2528 | ret = bdrv_refresh_perms(c->bs, &local_err); | |
2529 | ||
2530 | tran_finalize(tran, ret); | |
2531 | ||
33a610c3 | 2532 | if (ret < 0) { |
071b474f VSO |
2533 | if ((perm & ~c->perm) || (c->shared_perm & ~shared)) { |
2534 | /* tighten permissions */ | |
1046779e HR |
2535 | error_propagate(errp, local_err); |
2536 | } else { | |
2537 | /* | |
2538 | * Our caller may intend to only loosen restrictions and | |
2539 | * does not expect this function to fail. Errors are not | |
2540 | * fatal in such a case, so we can just hide them from our | |
2541 | * caller. | |
2542 | */ | |
2543 | error_free(local_err); | |
2544 | ret = 0; | |
2545 | } | |
33a610c3 KW |
2546 | } |
2547 | ||
83928dc4 | 2548 | return ret; |
d5e6f437 KW |
2549 | } |
2550 | ||
c1087f12 HR |
2551 | int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp) |
2552 | { | |
2553 | uint64_t parent_perms, parent_shared; | |
2554 | uint64_t perms, shared; | |
2555 | ||
2556 | bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared); | |
e5d8a406 | 2557 | bdrv_child_perm(bs, c->bs, c, c->role, NULL, |
bf8e925e | 2558 | parent_perms, parent_shared, &perms, &shared); |
c1087f12 HR |
2559 | |
2560 | return bdrv_child_try_set_perm(c, perms, shared, errp); | |
2561 | } | |
2562 | ||
87278af1 HR |
2563 | /* |
2564 | * Default implementation for .bdrv_child_perm() for block filters: | |
2565 | * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the | |
2566 | * filtered child. | |
2567 | */ | |
2568 | static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, | |
87278af1 HR |
2569 | BdrvChildRole role, |
2570 | BlockReopenQueue *reopen_queue, | |
2571 | uint64_t perm, uint64_t shared, | |
2572 | uint64_t *nperm, uint64_t *nshared) | |
6a1b9ee1 | 2573 | { |
e444fa83 KW |
2574 | *nperm = perm & DEFAULT_PERM_PASSTHROUGH; |
2575 | *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; | |
6a1b9ee1 KW |
2576 | } |
2577 | ||
70082db4 | 2578 | static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c, |
70082db4 HR |
2579 | BdrvChildRole role, |
2580 | BlockReopenQueue *reopen_queue, | |
2581 | uint64_t perm, uint64_t shared, | |
2582 | uint64_t *nperm, uint64_t *nshared) | |
2583 | { | |
e5d8a406 | 2584 | assert(role & BDRV_CHILD_COW); |
70082db4 HR |
2585 | |
2586 | /* | |
2587 | * We want consistent read from backing files if the parent needs it. | |
2588 | * No other operations are performed on backing files. | |
2589 | */ | |
2590 | perm &= BLK_PERM_CONSISTENT_READ; | |
2591 | ||
2592 | /* | |
2593 | * If the parent can deal with changing data, we're okay with a | |
2594 | * writable and resizable backing file. | |
2595 | * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? | |
2596 | */ | |
2597 | if (shared & BLK_PERM_WRITE) { | |
2598 | shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; | |
2599 | } else { | |
2600 | shared = 0; | |
2601 | } | |
2602 | ||
64631f36 | 2603 | shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED; |
70082db4 HR |
2604 | |
2605 | if (bs->open_flags & BDRV_O_INACTIVE) { | |
2606 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; | |
2607 | } | |
2608 | ||
2609 | *nperm = perm; | |
2610 | *nshared = shared; | |
2611 | } | |
2612 | ||
6f838a4b | 2613 | static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c, |
6f838a4b HR |
2614 | BdrvChildRole role, |
2615 | BlockReopenQueue *reopen_queue, | |
2616 | uint64_t perm, uint64_t shared, | |
2617 | uint64_t *nperm, uint64_t *nshared) | |
2618 | { | |
2619 | int flags; | |
2620 | ||
e5d8a406 | 2621 | assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)); |
6f838a4b HR |
2622 | |
2623 | flags = bdrv_reopen_get_flags(reopen_queue, bs); | |
2624 | ||
2625 | /* | |
2626 | * Apart from the modifications below, the same permissions are | |
2627 | * forwarded and left alone as for filters | |
2628 | */ | |
e5d8a406 | 2629 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
6f838a4b HR |
2630 | perm, shared, &perm, &shared); |
2631 | ||
f889054f HR |
2632 | if (role & BDRV_CHILD_METADATA) { |
2633 | /* Format drivers may touch metadata even if the guest doesn't write */ | |
2634 | if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { | |
2635 | perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; | |
2636 | } | |
2637 | ||
2638 | /* | |
2639 | * bs->file always needs to be consistent because of the | |
2640 | * metadata. We can never allow other users to resize or write | |
2641 | * to it. | |
2642 | */ | |
2643 | if (!(flags & BDRV_O_NO_IO)) { | |
2644 | perm |= BLK_PERM_CONSISTENT_READ; | |
2645 | } | |
2646 | shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); | |
6f838a4b HR |
2647 | } |
2648 | ||
f889054f HR |
2649 | if (role & BDRV_CHILD_DATA) { |
2650 | /* | |
2651 | * Technically, everything in this block is a subset of the | |
2652 | * BDRV_CHILD_METADATA path taken above, and so this could | |
2653 | * be an "else if" branch. However, that is not obvious, and | |
2654 | * this function is not performance critical, therefore we let | |
2655 | * this be an independent "if". | |
2656 | */ | |
2657 | ||
2658 | /* | |
2659 | * We cannot allow other users to resize the file because the | |
2660 | * format driver might have some assumptions about the size | |
2661 | * (e.g. because it is stored in metadata, or because the file | |
2662 | * is split into fixed-size data files). | |
2663 | */ | |
2664 | shared &= ~BLK_PERM_RESIZE; | |
2665 | ||
2666 | /* | |
2667 | * WRITE_UNCHANGED often cannot be performed as such on the | |
2668 | * data file. For example, the qcow2 driver may still need to | |
2669 | * write copied clusters on copy-on-read. | |
2670 | */ | |
2671 | if (perm & BLK_PERM_WRITE_UNCHANGED) { | |
2672 | perm |= BLK_PERM_WRITE; | |
2673 | } | |
2674 | ||
2675 | /* | |
2676 | * If the data file is written to, the format driver may | |
2677 | * expect to be able to resize it by writing beyond the EOF. | |
2678 | */ | |
2679 | if (perm & BLK_PERM_WRITE) { | |
2680 | perm |= BLK_PERM_RESIZE; | |
2681 | } | |
6f838a4b | 2682 | } |
6f838a4b HR |
2683 | |
2684 | if (bs->open_flags & BDRV_O_INACTIVE) { | |
2685 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; | |
2686 | } | |
2687 | ||
2688 | *nperm = perm; | |
2689 | *nshared = shared; | |
2690 | } | |
2691 | ||
2519f549 | 2692 | void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c, |
e5d8a406 | 2693 | BdrvChildRole role, BlockReopenQueue *reopen_queue, |
2519f549 HR |
2694 | uint64_t perm, uint64_t shared, |
2695 | uint64_t *nperm, uint64_t *nshared) | |
2696 | { | |
2519f549 HR |
2697 | if (role & BDRV_CHILD_FILTERED) { |
2698 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | | |
2699 | BDRV_CHILD_COW))); | |
e5d8a406 | 2700 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
2519f549 HR |
2701 | perm, shared, nperm, nshared); |
2702 | } else if (role & BDRV_CHILD_COW) { | |
2703 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA))); | |
e5d8a406 | 2704 | bdrv_default_perms_for_cow(bs, c, role, reopen_queue, |
2519f549 HR |
2705 | perm, shared, nperm, nshared); |
2706 | } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) { | |
e5d8a406 | 2707 | bdrv_default_perms_for_storage(bs, c, role, reopen_queue, |
2519f549 HR |
2708 | perm, shared, nperm, nshared); |
2709 | } else { | |
2710 | g_assert_not_reached(); | |
2711 | } | |
2712 | } | |
2713 | ||
7b1d9c4d HR |
2714 | uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm) |
2715 | { | |
2716 | static const uint64_t permissions[] = { | |
2717 | [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ, | |
2718 | [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE, | |
2719 | [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED, | |
2720 | [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE, | |
7b1d9c4d HR |
2721 | }; |
2722 | ||
2723 | QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX); | |
2724 | QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1); | |
2725 | ||
2726 | assert(qapi_perm < BLOCK_PERMISSION__MAX); | |
2727 | ||
2728 | return permissions[qapi_perm]; | |
2729 | } | |
2730 | ||
b0a9f6fe HR |
2731 | /** |
2732 | * Replace (*childp)->bs by @new_bs. | |
2733 | * | |
2734 | * If @new_bs is NULL, *childp will be set to NULL, too: BDS parents | |
2735 | * generally cannot handle a BdrvChild with .bs == NULL, so clearing | |
2736 | * BdrvChild.bs should generally immediately be followed by the | |
2737 | * BdrvChild pointer being cleared as well. | |
2738 | * | |
2739 | * If @free_empty_child is true and @new_bs is NULL, the BdrvChild is | |
2740 | * freed. @free_empty_child should only be false if the caller will | |
2741 | * free the BdrvChild themselves (this may be important in a | |
2742 | * transactional context, where it may only be freed on commit). | |
2743 | */ | |
be64bbb0 | 2744 | static void bdrv_replace_child_noperm(BdrvChild **childp, |
b0a9f6fe HR |
2745 | BlockDriverState *new_bs, |
2746 | bool free_empty_child) | |
e9740bc6 | 2747 | { |
be64bbb0 | 2748 | BdrvChild *child = *childp; |
e9740bc6 | 2749 | BlockDriverState *old_bs = child->bs; |
debc2927 HR |
2750 | int new_bs_quiesce_counter; |
2751 | int drain_saldo; | |
e9740bc6 | 2752 | |
2cad1ebe | 2753 | assert(!child->frozen); |
bfb8aa6d | 2754 | assert(old_bs != new_bs); |
2cad1ebe | 2755 | |
bb2614e9 FZ |
2756 | if (old_bs && new_bs) { |
2757 | assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); | |
2758 | } | |
debc2927 HR |
2759 | |
2760 | new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0); | |
2761 | drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter; | |
2762 | ||
2763 | /* | |
2764 | * If the new child node is drained but the old one was not, flush | |
2765 | * all outstanding requests to the old child node. | |
2766 | */ | |
bd86fb99 | 2767 | while (drain_saldo > 0 && child->klass->drained_begin) { |
debc2927 HR |
2768 | bdrv_parent_drained_begin_single(child, true); |
2769 | drain_saldo--; | |
2770 | } | |
2771 | ||
e9740bc6 | 2772 | if (old_bs) { |
d736f119 KW |
2773 | /* Detach first so that the recursive drain sections coming from @child |
2774 | * are already gone and we only end the drain sections that came from | |
2775 | * elsewhere. */ | |
bd86fb99 HR |
2776 | if (child->klass->detach) { |
2777 | child->klass->detach(child); | |
d736f119 | 2778 | } |
e9740bc6 KW |
2779 | QLIST_REMOVE(child, next_parent); |
2780 | } | |
36fe1331 KW |
2781 | |
2782 | child->bs = new_bs; | |
b0a9f6fe HR |
2783 | if (!new_bs) { |
2784 | *childp = NULL; | |
2785 | } | |
36fe1331 | 2786 | |
e9740bc6 KW |
2787 | if (new_bs) { |
2788 | QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); | |
debc2927 HR |
2789 | |
2790 | /* | |
2791 | * Detaching the old node may have led to the new node's | |
2792 | * quiesce_counter having been decreased. Not a problem, we | |
2793 | * just need to recognize this here and then invoke | |
2794 | * drained_end appropriately more often. | |
2795 | */ | |
2796 | assert(new_bs->quiesce_counter <= new_bs_quiesce_counter); | |
2797 | drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter; | |
33a610c3 | 2798 | |
d736f119 KW |
2799 | /* Attach only after starting new drained sections, so that recursive |
2800 | * drain sections coming from @child don't get an extra .drained_begin | |
2801 | * callback. */ | |
bd86fb99 HR |
2802 | if (child->klass->attach) { |
2803 | child->klass->attach(child); | |
8ee03995 KW |
2804 | } |
2805 | } | |
debc2927 HR |
2806 | |
2807 | /* | |
2808 | * If the old child node was drained but the new one is not, allow | |
2809 | * requests to come in only after the new node has been attached. | |
2810 | */ | |
bd86fb99 | 2811 | while (drain_saldo < 0 && child->klass->drained_end) { |
debc2927 HR |
2812 | bdrv_parent_drained_end_single(child); |
2813 | drain_saldo++; | |
2814 | } | |
b0a9f6fe HR |
2815 | |
2816 | if (free_empty_child && !child->bs) { | |
2817 | bdrv_child_free(child); | |
2818 | } | |
8ee03995 | 2819 | } |
33a610c3 | 2820 | |
04c9c3a5 HR |
2821 | /** |
2822 | * Free the given @child. | |
2823 | * | |
2824 | * The child must be empty (i.e. `child->bs == NULL`) and it must be | |
2825 | * unused (i.e. not in a children list). | |
2826 | */ | |
2827 | static void bdrv_child_free(BdrvChild *child) | |
df581792 | 2828 | { |
548a74c0 | 2829 | assert(!child->bs); |
a225369b | 2830 | assert(!child->next.le_prev); /* not in children list */ |
04c9c3a5 HR |
2831 | |
2832 | g_free(child->name); | |
2833 | g_free(child); | |
548a74c0 | 2834 | } |
d5e6f437 | 2835 | |
548a74c0 VSO |
2836 | typedef struct BdrvAttachChildCommonState { |
2837 | BdrvChild **child; | |
2838 | AioContext *old_parent_ctx; | |
2839 | AioContext *old_child_ctx; | |
2840 | } BdrvAttachChildCommonState; | |
2841 | ||
2842 | static void bdrv_attach_child_common_abort(void *opaque) | |
2843 | { | |
2844 | BdrvAttachChildCommonState *s = opaque; | |
2845 | BdrvChild *child = *s->child; | |
2846 | BlockDriverState *bs = child->bs; | |
2847 | ||
b0a9f6fe HR |
2848 | /* |
2849 | * Pass free_empty_child=false, because we still need the child | |
2850 | * for the AioContext operations on the parent below; those | |
2851 | * BdrvChildClass methods all work on a BdrvChild object, so we | |
2852 | * need to keep it as an empty shell (after this function, it will | |
2853 | * not be attached to any parent, and it will not have a .bs). | |
2854 | */ | |
2855 | bdrv_replace_child_noperm(s->child, NULL, false); | |
548a74c0 VSO |
2856 | |
2857 | if (bdrv_get_aio_context(bs) != s->old_child_ctx) { | |
2858 | bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort); | |
2859 | } | |
2860 | ||
2861 | if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) { | |
26518061 | 2862 | GSList *ignore; |
548a74c0 | 2863 | |
26518061 HR |
2864 | /* No need to ignore `child`, because it has been detached already */ |
2865 | ignore = NULL; | |
548a74c0 VSO |
2866 | child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore, |
2867 | &error_abort); | |
2868 | g_slist_free(ignore); | |
548a74c0 | 2869 | |
26518061 HR |
2870 | ignore = NULL; |
2871 | child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore); | |
548a74c0 | 2872 | g_slist_free(ignore); |
d5e6f437 KW |
2873 | } |
2874 | ||
548a74c0 | 2875 | bdrv_unref(bs); |
04c9c3a5 | 2876 | bdrv_child_free(child); |
548a74c0 VSO |
2877 | } |
2878 | ||
2879 | static TransactionActionDrv bdrv_attach_child_common_drv = { | |
2880 | .abort = bdrv_attach_child_common_abort, | |
2881 | .clean = g_free, | |
2882 | }; | |
2883 | ||
2884 | /* | |
2885 | * Common part of attaching bdrv child to bs or to blk or to job | |
f8d2ad78 VSO |
2886 | * |
2887 | * Resulting new child is returned through @child. | |
2888 | * At start *@child must be NULL. | |
2889 | * @child is saved to a new entry of @tran, so that *@child could be reverted to | |
2890 | * NULL on abort(). So referenced variable must live at least until transaction | |
2891 | * end. | |
7ec390d5 VSO |
2892 | * |
2893 | * Function doesn't update permissions, caller is responsible for this. | |
548a74c0 VSO |
2894 | */ |
2895 | static int bdrv_attach_child_common(BlockDriverState *child_bs, | |
2896 | const char *child_name, | |
2897 | const BdrvChildClass *child_class, | |
2898 | BdrvChildRole child_role, | |
2899 | uint64_t perm, uint64_t shared_perm, | |
2900 | void *opaque, BdrvChild **child, | |
2901 | Transaction *tran, Error **errp) | |
2902 | { | |
2903 | BdrvChild *new_child; | |
2904 | AioContext *parent_ctx; | |
2905 | AioContext *child_ctx = bdrv_get_aio_context(child_bs); | |
2906 | ||
2907 | assert(child); | |
2908 | assert(*child == NULL); | |
da261b69 | 2909 | assert(child_class->get_parent_desc); |
548a74c0 VSO |
2910 | |
2911 | new_child = g_new(BdrvChild, 1); | |
2912 | *new_child = (BdrvChild) { | |
d5e6f437 KW |
2913 | .bs = NULL, |
2914 | .name = g_strdup(child_name), | |
bd86fb99 | 2915 | .klass = child_class, |
258b7765 | 2916 | .role = child_role, |
d5e6f437 KW |
2917 | .perm = perm, |
2918 | .shared_perm = shared_perm, | |
2919 | .opaque = opaque, | |
df581792 KW |
2920 | }; |
2921 | ||
548a74c0 VSO |
2922 | /* |
2923 | * If the AioContexts don't match, first try to move the subtree of | |
132ada80 | 2924 | * child_bs into the AioContext of the new parent. If this doesn't work, |
548a74c0 VSO |
2925 | * try moving the parent into the AioContext of child_bs instead. |
2926 | */ | |
2927 | parent_ctx = bdrv_child_get_parent_aio_context(new_child); | |
2928 | if (child_ctx != parent_ctx) { | |
2929 | Error *local_err = NULL; | |
2930 | int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err); | |
2931 | ||
bd86fb99 | 2932 | if (ret < 0 && child_class->can_set_aio_ctx) { |
548a74c0 VSO |
2933 | GSList *ignore = g_slist_prepend(NULL, new_child); |
2934 | if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore, | |
2935 | NULL)) | |
2936 | { | |
132ada80 KW |
2937 | error_free(local_err); |
2938 | ret = 0; | |
2939 | g_slist_free(ignore); | |
548a74c0 VSO |
2940 | ignore = g_slist_prepend(NULL, new_child); |
2941 | child_class->set_aio_ctx(new_child, child_ctx, &ignore); | |
132ada80 KW |
2942 | } |
2943 | g_slist_free(ignore); | |
2944 | } | |
548a74c0 | 2945 | |
132ada80 KW |
2946 | if (ret < 0) { |
2947 | error_propagate(errp, local_err); | |
04c9c3a5 | 2948 | bdrv_child_free(new_child); |
548a74c0 | 2949 | return ret; |
132ada80 KW |
2950 | } |
2951 | } | |
2952 | ||
548a74c0 | 2953 | bdrv_ref(child_bs); |
b0a9f6fe HR |
2954 | bdrv_replace_child_noperm(&new_child, child_bs, true); |
2955 | /* child_bs was non-NULL, so new_child must not have been freed */ | |
2956 | assert(new_child != NULL); | |
548a74c0 VSO |
2957 | |
2958 | *child = new_child; | |
b4b059f6 | 2959 | |
548a74c0 VSO |
2960 | BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1); |
2961 | *s = (BdrvAttachChildCommonState) { | |
2962 | .child = child, | |
2963 | .old_parent_ctx = parent_ctx, | |
2964 | .old_child_ctx = child_ctx, | |
2965 | }; | |
2966 | tran_add(tran, &bdrv_attach_child_common_drv, s); | |
2967 | ||
2968 | return 0; | |
2969 | } | |
2970 | ||
f8d2ad78 VSO |
2971 | /* |
2972 | * Variable referenced by @child must live at least until transaction end. | |
2973 | * (see bdrv_attach_child_common() doc for details) | |
7ec390d5 VSO |
2974 | * |
2975 | * Function doesn't update permissions, caller is responsible for this. | |
f8d2ad78 | 2976 | */ |
aa5a04c7 VSO |
2977 | static int bdrv_attach_child_noperm(BlockDriverState *parent_bs, |
2978 | BlockDriverState *child_bs, | |
2979 | const char *child_name, | |
2980 | const BdrvChildClass *child_class, | |
2981 | BdrvChildRole child_role, | |
2982 | BdrvChild **child, | |
2983 | Transaction *tran, | |
2984 | Error **errp) | |
2985 | { | |
2986 | int ret; | |
2987 | uint64_t perm, shared_perm; | |
2988 | ||
2989 | assert(parent_bs->drv); | |
2990 | ||
bfb8aa6d KW |
2991 | if (bdrv_recurse_has_child(child_bs, parent_bs)) { |
2992 | error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle", | |
2993 | child_bs->node_name, child_name, parent_bs->node_name); | |
2994 | return -EINVAL; | |
2995 | } | |
2996 | ||
aa5a04c7 VSO |
2997 | bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); |
2998 | bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, | |
2999 | perm, shared_perm, &perm, &shared_perm); | |
3000 | ||
3001 | ret = bdrv_attach_child_common(child_bs, child_name, child_class, | |
3002 | child_role, perm, shared_perm, parent_bs, | |
3003 | child, tran, errp); | |
3004 | if (ret < 0) { | |
3005 | return ret; | |
3006 | } | |
3007 | ||
aa5a04c7 VSO |
3008 | return 0; |
3009 | } | |
3010 | ||
be64bbb0 | 3011 | static void bdrv_detach_child(BdrvChild **childp) |
548a74c0 | 3012 | { |
be64bbb0 | 3013 | BlockDriverState *old_bs = (*childp)->bs; |
4954aace | 3014 | |
b0a9f6fe | 3015 | bdrv_replace_child_noperm(childp, NULL, true); |
4954aace VSO |
3016 | |
3017 | if (old_bs) { | |
3018 | /* | |
3019 | * Update permissions for old node. We're just taking a parent away, so | |
3020 | * we're loosening restrictions. Errors of permission update are not | |
3021 | * fatal in this case, ignore them. | |
3022 | */ | |
3023 | bdrv_refresh_perms(old_bs, NULL); | |
3024 | ||
3025 | /* | |
3026 | * When the parent requiring a non-default AioContext is removed, the | |
3027 | * node moves back to the main AioContext | |
3028 | */ | |
3029 | bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL); | |
3030 | } | |
548a74c0 VSO |
3031 | } |
3032 | ||
3033 | /* | |
3034 | * This function steals the reference to child_bs from the caller. | |
3035 | * That reference is later dropped by bdrv_root_unref_child(). | |
3036 | * | |
3037 | * On failure NULL is returned, errp is set and the reference to | |
3038 | * child_bs is also dropped. | |
3039 | * | |
3040 | * The caller must hold the AioContext lock @child_bs, but not that of @ctx | |
3041 | * (unless @child_bs is already in @ctx). | |
3042 | */ | |
3043 | BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, | |
3044 | const char *child_name, | |
3045 | const BdrvChildClass *child_class, | |
3046 | BdrvChildRole child_role, | |
3047 | uint64_t perm, uint64_t shared_perm, | |
3048 | void *opaque, Error **errp) | |
3049 | { | |
3050 | int ret; | |
3051 | BdrvChild *child = NULL; | |
3052 | Transaction *tran = tran_new(); | |
3053 | ||
3054 | ret = bdrv_attach_child_common(child_bs, child_name, child_class, | |
3055 | child_role, perm, shared_perm, opaque, | |
3056 | &child, tran, errp); | |
3057 | if (ret < 0) { | |
e878bb12 | 3058 | goto out; |
548a74c0 VSO |
3059 | } |
3060 | ||
3061 | ret = bdrv_refresh_perms(child_bs, errp); | |
548a74c0 | 3062 | |
e878bb12 KW |
3063 | out: |
3064 | tran_finalize(tran, ret); | |
f8d2ad78 VSO |
3065 | /* child is unset on failure by bdrv_attach_child_common_abort() */ |
3066 | assert((ret < 0) == !child); | |
3067 | ||
548a74c0 | 3068 | bdrv_unref(child_bs); |
b4b059f6 | 3069 | return child; |
df581792 KW |
3070 | } |
3071 | ||
b441dc71 AG |
3072 | /* |
3073 | * This function transfers the reference to child_bs from the caller | |
3074 | * to parent_bs. That reference is later dropped by parent_bs on | |
3075 | * bdrv_close() or if someone calls bdrv_unref_child(). | |
3076 | * | |
3077 | * On failure NULL is returned, errp is set and the reference to | |
3078 | * child_bs is also dropped. | |
132ada80 KW |
3079 | * |
3080 | * If @parent_bs and @child_bs are in different AioContexts, the caller must | |
3081 | * hold the AioContext lock for @child_bs, but not for @parent_bs. | |
b441dc71 | 3082 | */ |
98292c61 WC |
3083 | BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, |
3084 | BlockDriverState *child_bs, | |
3085 | const char *child_name, | |
bd86fb99 | 3086 | const BdrvChildClass *child_class, |
258b7765 | 3087 | BdrvChildRole child_role, |
8b2ff529 | 3088 | Error **errp) |
f21d96d0 | 3089 | { |
aa5a04c7 VSO |
3090 | int ret; |
3091 | BdrvChild *child = NULL; | |
3092 | Transaction *tran = tran_new(); | |
f68c598b | 3093 | |
aa5a04c7 VSO |
3094 | ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class, |
3095 | child_role, &child, tran, errp); | |
3096 | if (ret < 0) { | |
3097 | goto out; | |
3098 | } | |
d5e6f437 | 3099 | |
aa5a04c7 VSO |
3100 | ret = bdrv_refresh_perms(parent_bs, errp); |
3101 | if (ret < 0) { | |
3102 | goto out; | |
d5e6f437 KW |
3103 | } |
3104 | ||
aa5a04c7 VSO |
3105 | out: |
3106 | tran_finalize(tran, ret); | |
f8d2ad78 VSO |
3107 | /* child is unset on failure by bdrv_attach_child_common_abort() */ |
3108 | assert((ret < 0) == !child); | |
aa5a04c7 VSO |
3109 | |
3110 | bdrv_unref(child_bs); | |
3111 | ||
f21d96d0 KW |
3112 | return child; |
3113 | } | |
3114 | ||
7b99a266 | 3115 | /* Callers must ensure that child->frozen is false. */ |
f21d96d0 | 3116 | void bdrv_root_unref_child(BdrvChild *child) |
33a60407 | 3117 | { |
779020cb KW |
3118 | BlockDriverState *child_bs; |
3119 | ||
f21d96d0 | 3120 | child_bs = child->bs; |
be64bbb0 | 3121 | bdrv_detach_child(&child); |
f21d96d0 KW |
3122 | bdrv_unref(child_bs); |
3123 | } | |
3124 | ||
332b3a17 VSO |
3125 | typedef struct BdrvSetInheritsFrom { |
3126 | BlockDriverState *bs; | |
3127 | BlockDriverState *old_inherits_from; | |
3128 | } BdrvSetInheritsFrom; | |
3129 | ||
3130 | static void bdrv_set_inherits_from_abort(void *opaque) | |
3131 | { | |
3132 | BdrvSetInheritsFrom *s = opaque; | |
3133 | ||
3134 | s->bs->inherits_from = s->old_inherits_from; | |
3135 | } | |
3136 | ||
3137 | static TransactionActionDrv bdrv_set_inherits_from_drv = { | |
3138 | .abort = bdrv_set_inherits_from_abort, | |
3139 | .clean = g_free, | |
3140 | }; | |
3141 | ||
3142 | /* @tran is allowed to be NULL. In this case no rollback is possible */ | |
3143 | static void bdrv_set_inherits_from(BlockDriverState *bs, | |
3144 | BlockDriverState *new_inherits_from, | |
3145 | Transaction *tran) | |
3146 | { | |
3147 | if (tran) { | |
3148 | BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1); | |
3149 | ||
3150 | *s = (BdrvSetInheritsFrom) { | |
3151 | .bs = bs, | |
3152 | .old_inherits_from = bs->inherits_from, | |
3153 | }; | |
3154 | ||
3155 | tran_add(tran, &bdrv_set_inherits_from_drv, s); | |
3156 | } | |
3157 | ||
3158 | bs->inherits_from = new_inherits_from; | |
3159 | } | |
3160 | ||
3cf746b3 HR |
3161 | /** |
3162 | * Clear all inherits_from pointers from children and grandchildren of | |
3163 | * @root that point to @root, where necessary. | |
332b3a17 | 3164 | * @tran is allowed to be NULL. In this case no rollback is possible |
3cf746b3 | 3165 | */ |
332b3a17 VSO |
3166 | static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child, |
3167 | Transaction *tran) | |
f21d96d0 | 3168 | { |
3cf746b3 | 3169 | BdrvChild *c; |
4e4bf5c4 | 3170 | |
3cf746b3 HR |
3171 | if (child->bs->inherits_from == root) { |
3172 | /* | |
3173 | * Remove inherits_from only when the last reference between root and | |
3174 | * child->bs goes away. | |
3175 | */ | |
3176 | QLIST_FOREACH(c, &root->children, next) { | |
4e4bf5c4 KW |
3177 | if (c != child && c->bs == child->bs) { |
3178 | break; | |
3179 | } | |
3180 | } | |
3181 | if (c == NULL) { | |
332b3a17 | 3182 | bdrv_set_inherits_from(child->bs, NULL, tran); |
4e4bf5c4 | 3183 | } |
33a60407 KW |
3184 | } |
3185 | ||
3cf746b3 | 3186 | QLIST_FOREACH(c, &child->bs->children, next) { |
332b3a17 | 3187 | bdrv_unset_inherits_from(root, c, tran); |
3cf746b3 HR |
3188 | } |
3189 | } | |
3190 | ||
7b99a266 | 3191 | /* Callers must ensure that child->frozen is false. */ |
3cf746b3 HR |
3192 | void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) |
3193 | { | |
3194 | if (child == NULL) { | |
3195 | return; | |
3196 | } | |
3197 | ||
332b3a17 | 3198 | bdrv_unset_inherits_from(parent, child, NULL); |
f21d96d0 | 3199 | bdrv_root_unref_child(child); |
33a60407 KW |
3200 | } |
3201 | ||
5c8cab48 KW |
3202 | |
3203 | static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) | |
3204 | { | |
3205 | BdrvChild *c; | |
3206 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
bd86fb99 HR |
3207 | if (c->klass->change_media) { |
3208 | c->klass->change_media(c, load); | |
5c8cab48 KW |
3209 | } |
3210 | } | |
3211 | } | |
3212 | ||
0065c455 AG |
3213 | /* Return true if you can reach parent going through child->inherits_from |
3214 | * recursively. If parent or child are NULL, return false */ | |
3215 | static bool bdrv_inherits_from_recursive(BlockDriverState *child, | |
3216 | BlockDriverState *parent) | |
3217 | { | |
3218 | while (child && child != parent) { | |
3219 | child = child->inherits_from; | |
3220 | } | |
3221 | ||
3222 | return child != NULL; | |
3223 | } | |
3224 | ||
25191e5f HR |
3225 | /* |
3226 | * Return the BdrvChildRole for @bs's backing child. bs->backing is | |
3227 | * mostly used for COW backing children (role = COW), but also for | |
3228 | * filtered children (role = FILTERED | PRIMARY). | |
3229 | */ | |
3230 | static BdrvChildRole bdrv_backing_role(BlockDriverState *bs) | |
3231 | { | |
3232 | if (bs->drv && bs->drv->is_filter) { | |
3233 | return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; | |
3234 | } else { | |
3235 | return BDRV_CHILD_COW; | |
3236 | } | |
3237 | } | |
3238 | ||
5db15a57 | 3239 | /* |
e9238278 VSO |
3240 | * Sets the bs->backing or bs->file link of a BDS. A new reference is created; |
3241 | * callers which don't need their own reference any more must call bdrv_unref(). | |
7ec390d5 VSO |
3242 | * |
3243 | * Function doesn't update permissions, caller is responsible for this. | |
5db15a57 | 3244 | */ |
e9238278 VSO |
3245 | static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs, |
3246 | BlockDriverState *child_bs, | |
3247 | bool is_backing, | |
3248 | Transaction *tran, Error **errp) | |
8d24cce1 | 3249 | { |
a1e708fc | 3250 | int ret = 0; |
e9238278 VSO |
3251 | bool update_inherits_from = |
3252 | bdrv_inherits_from_recursive(child_bs, parent_bs); | |
3253 | BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file; | |
3254 | BdrvChildRole role; | |
0065c455 | 3255 | |
e9238278 VSO |
3256 | if (!parent_bs->drv) { |
3257 | /* | |
3258 | * Node without drv is an object without a class :/. TODO: finally fix | |
3259 | * qcow2 driver to never clear bs->drv and implement format corruption | |
3260 | * handling in other way. | |
3261 | */ | |
3262 | error_setg(errp, "Node corrupted"); | |
3263 | return -EINVAL; | |
3264 | } | |
3265 | ||
3266 | if (child && child->frozen) { | |
3267 | error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'", | |
3268 | child->name, parent_bs->node_name, child->bs->node_name); | |
a1e708fc | 3269 | return -EPERM; |
2cad1ebe AG |
3270 | } |
3271 | ||
25f78d9e VSO |
3272 | if (is_backing && !parent_bs->drv->is_filter && |
3273 | !parent_bs->drv->supports_backing) | |
3274 | { | |
3275 | error_setg(errp, "Driver '%s' of node '%s' does not support backing " | |
3276 | "files", parent_bs->drv->format_name, parent_bs->node_name); | |
3277 | return -EINVAL; | |
3278 | } | |
3279 | ||
e9238278 VSO |
3280 | if (parent_bs->drv->is_filter) { |
3281 | role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; | |
3282 | } else if (is_backing) { | |
3283 | role = BDRV_CHILD_COW; | |
3284 | } else { | |
3285 | /* | |
3286 | * We only can use same role as it is in existing child. We don't have | |
3287 | * infrastructure to determine role of file child in generic way | |
3288 | */ | |
3289 | if (!child) { | |
3290 | error_setg(errp, "Cannot set file child to format node without " | |
3291 | "file child"); | |
3292 | return -EINVAL; | |
3293 | } | |
3294 | role = child->role; | |
826b6ca0 FZ |
3295 | } |
3296 | ||
e9238278 VSO |
3297 | if (child) { |
3298 | bdrv_unset_inherits_from(parent_bs, child, tran); | |
3299 | bdrv_remove_file_or_backing_child(parent_bs, child, tran); | |
3300 | } | |
3301 | ||
3302 | if (!child_bs) { | |
8d24cce1 FZ |
3303 | goto out; |
3304 | } | |
12fa4af6 | 3305 | |
e9238278 VSO |
3306 | ret = bdrv_attach_child_noperm(parent_bs, child_bs, |
3307 | is_backing ? "backing" : "file", | |
3308 | &child_of_bds, role, | |
3309 | is_backing ? &parent_bs->backing : | |
3310 | &parent_bs->file, | |
3311 | tran, errp); | |
160333e1 VSO |
3312 | if (ret < 0) { |
3313 | return ret; | |
a1e708fc VSO |
3314 | } |
3315 | ||
160333e1 VSO |
3316 | |
3317 | /* | |
e9238278 | 3318 | * If inherits_from pointed recursively to bs then let's update it to |
160333e1 VSO |
3319 | * point directly to bs (else it will become NULL). |
3320 | */ | |
a1e708fc | 3321 | if (update_inherits_from) { |
e9238278 | 3322 | bdrv_set_inherits_from(child_bs, parent_bs, tran); |
0065c455 | 3323 | } |
826b6ca0 | 3324 | |
8d24cce1 | 3325 | out: |
e9238278 | 3326 | bdrv_refresh_limits(parent_bs, tran, NULL); |
160333e1 VSO |
3327 | |
3328 | return 0; | |
3329 | } | |
3330 | ||
e9238278 VSO |
3331 | static int bdrv_set_backing_noperm(BlockDriverState *bs, |
3332 | BlockDriverState *backing_hd, | |
3333 | Transaction *tran, Error **errp) | |
3334 | { | |
3335 | return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp); | |
3336 | } | |
3337 | ||
160333e1 VSO |
3338 | int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, |
3339 | Error **errp) | |
3340 | { | |
3341 | int ret; | |
3342 | Transaction *tran = tran_new(); | |
3343 | ||
3344 | ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp); | |
3345 | if (ret < 0) { | |
3346 | goto out; | |
3347 | } | |
3348 | ||
3349 | ret = bdrv_refresh_perms(bs, errp); | |
3350 | out: | |
3351 | tran_finalize(tran, ret); | |
a1e708fc VSO |
3352 | |
3353 | return ret; | |
8d24cce1 FZ |
3354 | } |
3355 | ||
31ca6d07 KW |
3356 | /* |
3357 | * Opens the backing file for a BlockDriverState if not yet open | |
3358 | * | |
d9b7b057 KW |
3359 | * bdref_key specifies the key for the image's BlockdevRef in the options QDict. |
3360 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict | |
3361 | * itself, all options starting with "${bdref_key}." are considered part of the | |
3362 | * BlockdevRef. | |
3363 | * | |
3364 | * TODO Can this be unified with bdrv_open_image()? | |
31ca6d07 | 3365 | */ |
d9b7b057 KW |
3366 | int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, |
3367 | const char *bdref_key, Error **errp) | |
9156df12 | 3368 | { |
6b6833c1 | 3369 | char *backing_filename = NULL; |
d9b7b057 KW |
3370 | char *bdref_key_dot; |
3371 | const char *reference = NULL; | |
317fc44e | 3372 | int ret = 0; |
998c2019 | 3373 | bool implicit_backing = false; |
8d24cce1 | 3374 | BlockDriverState *backing_hd; |
d9b7b057 KW |
3375 | QDict *options; |
3376 | QDict *tmp_parent_options = NULL; | |
34b5d2c6 | 3377 | Error *local_err = NULL; |
9156df12 | 3378 | |
760e0063 | 3379 | if (bs->backing != NULL) { |
1ba4b6a5 | 3380 | goto free_exit; |
9156df12 PB |
3381 | } |
3382 | ||
31ca6d07 | 3383 | /* NULL means an empty set of options */ |
d9b7b057 KW |
3384 | if (parent_options == NULL) { |
3385 | tmp_parent_options = qdict_new(); | |
3386 | parent_options = tmp_parent_options; | |
31ca6d07 KW |
3387 | } |
3388 | ||
9156df12 | 3389 | bs->open_flags &= ~BDRV_O_NO_BACKING; |
d9b7b057 KW |
3390 | |
3391 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); | |
3392 | qdict_extract_subqdict(parent_options, &options, bdref_key_dot); | |
3393 | g_free(bdref_key_dot); | |
3394 | ||
129c7d1c MA |
3395 | /* |
3396 | * Caution: while qdict_get_try_str() is fine, getting non-string | |
3397 | * types would require more care. When @parent_options come from | |
3398 | * -blockdev or blockdev_add, its members are typed according to | |
3399 | * the QAPI schema, but when they come from -drive, they're all | |
3400 | * QString. | |
3401 | */ | |
d9b7b057 KW |
3402 | reference = qdict_get_try_str(parent_options, bdref_key); |
3403 | if (reference || qdict_haskey(options, "file.filename")) { | |
6b6833c1 | 3404 | /* keep backing_filename NULL */ |
1cb6f506 | 3405 | } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { |
cb3e7f08 | 3406 | qobject_unref(options); |
1ba4b6a5 | 3407 | goto free_exit; |
dbecebdd | 3408 | } else { |
998c2019 HR |
3409 | if (qdict_size(options) == 0) { |
3410 | /* If the user specifies options that do not modify the | |
3411 | * backing file's behavior, we might still consider it the | |
3412 | * implicit backing file. But it's easier this way, and | |
3413 | * just specifying some of the backing BDS's options is | |
3414 | * only possible with -drive anyway (otherwise the QAPI | |
3415 | * schema forces the user to specify everything). */ | |
3416 | implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file); | |
3417 | } | |
3418 | ||
6b6833c1 | 3419 | backing_filename = bdrv_get_full_backing_filename(bs, &local_err); |
9f07429e HR |
3420 | if (local_err) { |
3421 | ret = -EINVAL; | |
3422 | error_propagate(errp, local_err); | |
cb3e7f08 | 3423 | qobject_unref(options); |
9f07429e HR |
3424 | goto free_exit; |
3425 | } | |
9156df12 PB |
3426 | } |
3427 | ||
8ee79e70 KW |
3428 | if (!bs->drv || !bs->drv->supports_backing) { |
3429 | ret = -EINVAL; | |
3430 | error_setg(errp, "Driver doesn't support backing files"); | |
cb3e7f08 | 3431 | qobject_unref(options); |
8ee79e70 KW |
3432 | goto free_exit; |
3433 | } | |
3434 | ||
6bff597b PK |
3435 | if (!reference && |
3436 | bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { | |
46f5ac20 | 3437 | qdict_put_str(options, "driver", bs->backing_format); |
9156df12 PB |
3438 | } |
3439 | ||
6b6833c1 | 3440 | backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs, |
25191e5f | 3441 | &child_of_bds, bdrv_backing_role(bs), errp); |
5b363937 | 3442 | if (!backing_hd) { |
9156df12 | 3443 | bs->open_flags |= BDRV_O_NO_BACKING; |
e43bfd9c | 3444 | error_prepend(errp, "Could not open backing file: "); |
5b363937 | 3445 | ret = -EINVAL; |
1ba4b6a5 | 3446 | goto free_exit; |
9156df12 | 3447 | } |
df581792 | 3448 | |
998c2019 HR |
3449 | if (implicit_backing) { |
3450 | bdrv_refresh_filename(backing_hd); | |
3451 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), | |
3452 | backing_hd->filename); | |
3453 | } | |
3454 | ||
5db15a57 KW |
3455 | /* Hook up the backing file link; drop our reference, bs owns the |
3456 | * backing_hd reference now */ | |
dc9c10a1 | 3457 | ret = bdrv_set_backing_hd(bs, backing_hd, errp); |
5db15a57 | 3458 | bdrv_unref(backing_hd); |
dc9c10a1 | 3459 | if (ret < 0) { |
12fa4af6 KW |
3460 | goto free_exit; |
3461 | } | |
d80ac658 | 3462 | |
d9b7b057 KW |
3463 | qdict_del(parent_options, bdref_key); |
3464 | ||
1ba4b6a5 BC |
3465 | free_exit: |
3466 | g_free(backing_filename); | |
cb3e7f08 | 3467 | qobject_unref(tmp_parent_options); |
1ba4b6a5 | 3468 | return ret; |
9156df12 PB |
3469 | } |
3470 | ||
2d6b86af KW |
3471 | static BlockDriverState * |
3472 | bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, | |
bd86fb99 | 3473 | BlockDriverState *parent, const BdrvChildClass *child_class, |
272c02ea | 3474 | BdrvChildRole child_role, bool allow_none, Error **errp) |
da557aac | 3475 | { |
2d6b86af | 3476 | BlockDriverState *bs = NULL; |
da557aac | 3477 | QDict *image_options; |
da557aac HR |
3478 | char *bdref_key_dot; |
3479 | const char *reference; | |
3480 | ||
bd86fb99 | 3481 | assert(child_class != NULL); |
f67503e5 | 3482 | |
da557aac HR |
3483 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
3484 | qdict_extract_subqdict(options, &image_options, bdref_key_dot); | |
3485 | g_free(bdref_key_dot); | |
3486 | ||
129c7d1c MA |
3487 | /* |
3488 | * Caution: while qdict_get_try_str() is fine, getting non-string | |
3489 | * types would require more care. When @options come from | |
3490 | * -blockdev or blockdev_add, its members are typed according to | |
3491 | * the QAPI schema, but when they come from -drive, they're all | |
3492 | * QString. | |
3493 | */ | |
da557aac HR |
3494 | reference = qdict_get_try_str(options, bdref_key); |
3495 | if (!filename && !reference && !qdict_size(image_options)) { | |
b4b059f6 | 3496 | if (!allow_none) { |
da557aac HR |
3497 | error_setg(errp, "A block device must be specified for \"%s\"", |
3498 | bdref_key); | |
da557aac | 3499 | } |
cb3e7f08 | 3500 | qobject_unref(image_options); |
da557aac HR |
3501 | goto done; |
3502 | } | |
3503 | ||
5b363937 | 3504 | bs = bdrv_open_inherit(filename, reference, image_options, 0, |
272c02ea | 3505 | parent, child_class, child_role, errp); |
5b363937 | 3506 | if (!bs) { |
df581792 KW |
3507 | goto done; |
3508 | } | |
3509 | ||
da557aac HR |
3510 | done: |
3511 | qdict_del(options, bdref_key); | |
2d6b86af KW |
3512 | return bs; |
3513 | } | |
3514 | ||
3515 | /* | |
3516 | * Opens a disk image whose options are given as BlockdevRef in another block | |
3517 | * device's options. | |
3518 | * | |
3519 | * If allow_none is true, no image will be opened if filename is false and no | |
3520 | * BlockdevRef is given. NULL will be returned, but errp remains unset. | |
3521 | * | |
3522 | * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. | |
3523 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict | |
3524 | * itself, all options starting with "${bdref_key}." are considered part of the | |
3525 | * BlockdevRef. | |
3526 | * | |
3527 | * The BlockdevRef will be removed from the options QDict. | |
3528 | */ | |
3529 | BdrvChild *bdrv_open_child(const char *filename, | |
3530 | QDict *options, const char *bdref_key, | |
3531 | BlockDriverState *parent, | |
bd86fb99 | 3532 | const BdrvChildClass *child_class, |
258b7765 | 3533 | BdrvChildRole child_role, |
2d6b86af KW |
3534 | bool allow_none, Error **errp) |
3535 | { | |
3536 | BlockDriverState *bs; | |
3537 | ||
bd86fb99 | 3538 | bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class, |
272c02ea | 3539 | child_role, allow_none, errp); |
2d6b86af KW |
3540 | if (bs == NULL) { |
3541 | return NULL; | |
3542 | } | |
3543 | ||
258b7765 HR |
3544 | return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role, |
3545 | errp); | |
b4b059f6 KW |
3546 | } |
3547 | ||
bd86fb99 HR |
3548 | /* |
3549 | * TODO Future callers may need to specify parent/child_class in order for | |
3550 | * option inheritance to work. Existing callers use it for the root node. | |
3551 | */ | |
e1d74bc6 KW |
3552 | BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) |
3553 | { | |
3554 | BlockDriverState *bs = NULL; | |
e1d74bc6 KW |
3555 | QObject *obj = NULL; |
3556 | QDict *qdict = NULL; | |
3557 | const char *reference = NULL; | |
3558 | Visitor *v = NULL; | |
3559 | ||
3560 | if (ref->type == QTYPE_QSTRING) { | |
3561 | reference = ref->u.reference; | |
3562 | } else { | |
3563 | BlockdevOptions *options = &ref->u.definition; | |
3564 | assert(ref->type == QTYPE_QDICT); | |
3565 | ||
3566 | v = qobject_output_visitor_new(&obj); | |
1f584248 | 3567 | visit_type_BlockdevOptions(v, NULL, &options, &error_abort); |
e1d74bc6 KW |
3568 | visit_complete(v, &obj); |
3569 | ||
7dc847eb | 3570 | qdict = qobject_to(QDict, obj); |
e1d74bc6 KW |
3571 | qdict_flatten(qdict); |
3572 | ||
3573 | /* bdrv_open_inherit() defaults to the values in bdrv_flags (for | |
3574 | * compatibility with other callers) rather than what we want as the | |
3575 | * real defaults. Apply the defaults here instead. */ | |
3576 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); | |
3577 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); | |
3578 | qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); | |
e35bdc12 KW |
3579 | qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off"); |
3580 | ||
e1d74bc6 KW |
3581 | } |
3582 | ||
272c02ea | 3583 | bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp); |
e1d74bc6 | 3584 | obj = NULL; |
cb3e7f08 | 3585 | qobject_unref(obj); |
e1d74bc6 KW |
3586 | visit_free(v); |
3587 | return bs; | |
3588 | } | |
3589 | ||
66836189 HR |
3590 | static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, |
3591 | int flags, | |
3592 | QDict *snapshot_options, | |
3593 | Error **errp) | |
b998875d KW |
3594 | { |
3595 | /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ | |
1ba4b6a5 | 3596 | char *tmp_filename = g_malloc0(PATH_MAX + 1); |
b998875d | 3597 | int64_t total_size; |
83d0521a | 3598 | QemuOpts *opts = NULL; |
ff6ed714 | 3599 | BlockDriverState *bs_snapshot = NULL; |
b998875d KW |
3600 | int ret; |
3601 | ||
3602 | /* if snapshot, we create a temporary backing file and open it | |
3603 | instead of opening 'filename' directly */ | |
3604 | ||
3605 | /* Get the required size from the image */ | |
f187743a KW |
3606 | total_size = bdrv_getlength(bs); |
3607 | if (total_size < 0) { | |
3608 | error_setg_errno(errp, -total_size, "Could not get image size"); | |
1ba4b6a5 | 3609 | goto out; |
f187743a | 3610 | } |
b998875d KW |
3611 | |
3612 | /* Create the temporary image */ | |
1ba4b6a5 | 3613 | ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); |
b998875d KW |
3614 | if (ret < 0) { |
3615 | error_setg_errno(errp, -ret, "Could not get temporary filename"); | |
1ba4b6a5 | 3616 | goto out; |
b998875d KW |
3617 | } |
3618 | ||
ef810437 | 3619 | opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, |
c282e1fd | 3620 | &error_abort); |
39101f25 | 3621 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); |
e43bfd9c | 3622 | ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); |
83d0521a | 3623 | qemu_opts_del(opts); |
b998875d | 3624 | if (ret < 0) { |
e43bfd9c MA |
3625 | error_prepend(errp, "Could not create temporary overlay '%s': ", |
3626 | tmp_filename); | |
1ba4b6a5 | 3627 | goto out; |
b998875d KW |
3628 | } |
3629 | ||
73176bee | 3630 | /* Prepare options QDict for the temporary file */ |
46f5ac20 EB |
3631 | qdict_put_str(snapshot_options, "file.driver", "file"); |
3632 | qdict_put_str(snapshot_options, "file.filename", tmp_filename); | |
3633 | qdict_put_str(snapshot_options, "driver", "qcow2"); | |
b998875d | 3634 | |
5b363937 | 3635 | bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); |
73176bee | 3636 | snapshot_options = NULL; |
5b363937 | 3637 | if (!bs_snapshot) { |
1ba4b6a5 | 3638 | goto out; |
b998875d KW |
3639 | } |
3640 | ||
934aee14 VSO |
3641 | ret = bdrv_append(bs_snapshot, bs, errp); |
3642 | if (ret < 0) { | |
ff6ed714 | 3643 | bs_snapshot = NULL; |
b2c2832c KW |
3644 | goto out; |
3645 | } | |
1ba4b6a5 BC |
3646 | |
3647 | out: | |
cb3e7f08 | 3648 | qobject_unref(snapshot_options); |
1ba4b6a5 | 3649 | g_free(tmp_filename); |
ff6ed714 | 3650 | return bs_snapshot; |
b998875d KW |
3651 | } |
3652 | ||
b6ce07aa KW |
3653 | /* |
3654 | * Opens a disk image (raw, qcow2, vmdk, ...) | |
de9c0cec KW |
3655 | * |
3656 | * options is a QDict of options to pass to the block drivers, or NULL for an | |
3657 | * empty set of options. The reference to the QDict belongs to the block layer | |
3658 | * after the call (even on failure), so if the caller intends to reuse the | |
cb3e7f08 | 3659 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
f67503e5 HR |
3660 | * |
3661 | * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. | |
3662 | * If it is not NULL, the referenced BDS will be reused. | |
ddf5636d HR |
3663 | * |
3664 | * The reference parameter may be used to specify an existing block device which | |
3665 | * should be opened. If specified, neither options nor a filename may be given, | |
3666 | * nor can an existing BDS be reused (that is, *pbs has to be NULL). | |
b6ce07aa | 3667 | */ |
5b363937 HR |
3668 | static BlockDriverState *bdrv_open_inherit(const char *filename, |
3669 | const char *reference, | |
3670 | QDict *options, int flags, | |
3671 | BlockDriverState *parent, | |
bd86fb99 | 3672 | const BdrvChildClass *child_class, |
272c02ea | 3673 | BdrvChildRole child_role, |
5b363937 | 3674 | Error **errp) |
ea2384d3 | 3675 | { |
b6ce07aa | 3676 | int ret; |
5696c6e3 | 3677 | BlockBackend *file = NULL; |
9a4f4c31 | 3678 | BlockDriverState *bs; |
ce343771 | 3679 | BlockDriver *drv = NULL; |
2f624b80 | 3680 | BdrvChild *child; |
74fe54f2 | 3681 | const char *drvname; |
3e8c2e57 | 3682 | const char *backing; |
34b5d2c6 | 3683 | Error *local_err = NULL; |
73176bee | 3684 | QDict *snapshot_options = NULL; |
b1e6fc08 | 3685 | int snapshot_flags = 0; |
712e7874 | 3686 | |
bd86fb99 HR |
3687 | assert(!child_class || !flags); |
3688 | assert(!child_class == !parent); | |
f67503e5 | 3689 | |
ddf5636d HR |
3690 | if (reference) { |
3691 | bool options_non_empty = options ? qdict_size(options) : false; | |
cb3e7f08 | 3692 | qobject_unref(options); |
ddf5636d | 3693 | |
ddf5636d HR |
3694 | if (filename || options_non_empty) { |
3695 | error_setg(errp, "Cannot reference an existing block device with " | |
3696 | "additional options or a new filename"); | |
5b363937 | 3697 | return NULL; |
ddf5636d HR |
3698 | } |
3699 | ||
3700 | bs = bdrv_lookup_bs(reference, reference, errp); | |
3701 | if (!bs) { | |
5b363937 | 3702 | return NULL; |
ddf5636d | 3703 | } |
76b22320 | 3704 | |
ddf5636d | 3705 | bdrv_ref(bs); |
5b363937 | 3706 | return bs; |
ddf5636d HR |
3707 | } |
3708 | ||
5b363937 | 3709 | bs = bdrv_new(); |
f67503e5 | 3710 | |
de9c0cec KW |
3711 | /* NULL means an empty set of options */ |
3712 | if (options == NULL) { | |
3713 | options = qdict_new(); | |
3714 | } | |
3715 | ||
145f598e | 3716 | /* json: syntax counts as explicit options, as if in the QDict */ |
de3b53f0 KW |
3717 | parse_json_protocol(options, &filename, &local_err); |
3718 | if (local_err) { | |
de3b53f0 KW |
3719 | goto fail; |
3720 | } | |
3721 | ||
145f598e KW |
3722 | bs->explicit_options = qdict_clone_shallow(options); |
3723 | ||
bd86fb99 | 3724 | if (child_class) { |
3cdc69d3 HR |
3725 | bool parent_is_format; |
3726 | ||
3727 | if (parent->drv) { | |
3728 | parent_is_format = parent->drv->is_format; | |
3729 | } else { | |
3730 | /* | |
3731 | * parent->drv is not set yet because this node is opened for | |
3732 | * (potential) format probing. That means that @parent is going | |
3733 | * to be a format node. | |
3734 | */ | |
3735 | parent_is_format = true; | |
3736 | } | |
3737 | ||
bddcec37 | 3738 | bs->inherits_from = parent; |
3cdc69d3 HR |
3739 | child_class->inherit_options(child_role, parent_is_format, |
3740 | &flags, options, | |
bd86fb99 | 3741 | parent->open_flags, parent->options); |
f3930ed0 KW |
3742 | } |
3743 | ||
de3b53f0 | 3744 | ret = bdrv_fill_options(&options, filename, &flags, &local_err); |
dfde483e | 3745 | if (ret < 0) { |
462f5bcf KW |
3746 | goto fail; |
3747 | } | |
3748 | ||
129c7d1c MA |
3749 | /* |
3750 | * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. | |
3751 | * Caution: getting a boolean member of @options requires care. | |
3752 | * When @options come from -blockdev or blockdev_add, members are | |
3753 | * typed according to the QAPI schema, but when they come from | |
3754 | * -drive, they're all QString. | |
3755 | */ | |
f87a0e29 AG |
3756 | if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && |
3757 | !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { | |
3758 | flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); | |
3759 | } else { | |
3760 | flags &= ~BDRV_O_RDWR; | |
14499ea5 AG |
3761 | } |
3762 | ||
3763 | if (flags & BDRV_O_SNAPSHOT) { | |
3764 | snapshot_options = qdict_new(); | |
3765 | bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, | |
3766 | flags, options); | |
f87a0e29 AG |
3767 | /* Let bdrv_backing_options() override "read-only" */ |
3768 | qdict_del(options, BDRV_OPT_READ_ONLY); | |
00ff7ffd HR |
3769 | bdrv_inherited_options(BDRV_CHILD_COW, true, |
3770 | &flags, options, flags, options); | |
14499ea5 AG |
3771 | } |
3772 | ||
62392ebb KW |
3773 | bs->open_flags = flags; |
3774 | bs->options = options; | |
3775 | options = qdict_clone_shallow(options); | |
3776 | ||
76c591b0 | 3777 | /* Find the right image format driver */ |
129c7d1c | 3778 | /* See cautionary note on accessing @options above */ |
76c591b0 KW |
3779 | drvname = qdict_get_try_str(options, "driver"); |
3780 | if (drvname) { | |
3781 | drv = bdrv_find_format(drvname); | |
76c591b0 KW |
3782 | if (!drv) { |
3783 | error_setg(errp, "Unknown driver: '%s'", drvname); | |
76c591b0 KW |
3784 | goto fail; |
3785 | } | |
3786 | } | |
3787 | ||
3788 | assert(drvname || !(flags & BDRV_O_PROTOCOL)); | |
76c591b0 | 3789 | |
129c7d1c | 3790 | /* See cautionary note on accessing @options above */ |
3e8c2e57 | 3791 | backing = qdict_get_try_str(options, "backing"); |
e59a0cf1 HR |
3792 | if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || |
3793 | (backing && *backing == '\0')) | |
3794 | { | |
4f7be280 HR |
3795 | if (backing) { |
3796 | warn_report("Use of \"backing\": \"\" is deprecated; " | |
3797 | "use \"backing\": null instead"); | |
3798 | } | |
3e8c2e57 | 3799 | flags |= BDRV_O_NO_BACKING; |
ae0f57f0 KW |
3800 | qdict_del(bs->explicit_options, "backing"); |
3801 | qdict_del(bs->options, "backing"); | |
3e8c2e57 AG |
3802 | qdict_del(options, "backing"); |
3803 | } | |
3804 | ||
5696c6e3 | 3805 | /* Open image file without format layer. This BlockBackend is only used for |
4e4bf5c4 KW |
3806 | * probing, the block drivers will do their own bdrv_open_child() for the |
3807 | * same BDS, which is why we put the node name back into options. */ | |
f4788adc | 3808 | if ((flags & BDRV_O_PROTOCOL) == 0) { |
5696c6e3 KW |
3809 | BlockDriverState *file_bs; |
3810 | ||
3811 | file_bs = bdrv_open_child_bs(filename, options, "file", bs, | |
58944401 HR |
3812 | &child_of_bds, BDRV_CHILD_IMAGE, |
3813 | true, &local_err); | |
1fdd6933 | 3814 | if (local_err) { |
f4788adc KW |
3815 | goto fail; |
3816 | } | |
5696c6e3 | 3817 | if (file_bs != NULL) { |
dacaa162 KW |
3818 | /* Not requesting BLK_PERM_CONSISTENT_READ because we're only |
3819 | * looking at the header to guess the image format. This works even | |
3820 | * in cases where a guest would not see a consistent state. */ | |
d861ab3a | 3821 | file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL); |
d7086422 | 3822 | blk_insert_bs(file, file_bs, &local_err); |
5696c6e3 | 3823 | bdrv_unref(file_bs); |
d7086422 KW |
3824 | if (local_err) { |
3825 | goto fail; | |
3826 | } | |
5696c6e3 | 3827 | |
46f5ac20 | 3828 | qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); |
4e4bf5c4 | 3829 | } |
f500a6d3 KW |
3830 | } |
3831 | ||
76c591b0 | 3832 | /* Image format probing */ |
38f3ef57 | 3833 | bs->probed = !drv; |
76c591b0 | 3834 | if (!drv && file) { |
cf2ab8fc | 3835 | ret = find_image_format(file, filename, &drv, &local_err); |
17b005f1 | 3836 | if (ret < 0) { |
8bfea15d | 3837 | goto fail; |
2a05cbe4 | 3838 | } |
62392ebb KW |
3839 | /* |
3840 | * This option update would logically belong in bdrv_fill_options(), | |
3841 | * but we first need to open bs->file for the probing to work, while | |
3842 | * opening bs->file already requires the (mostly) final set of options | |
3843 | * so that cache mode etc. can be inherited. | |
3844 | * | |
3845 | * Adding the driver later is somewhat ugly, but it's not an option | |
3846 | * that would ever be inherited, so it's correct. We just need to make | |
3847 | * sure to update both bs->options (which has the full effective | |
3848 | * options for bs) and options (which has file.* already removed). | |
3849 | */ | |
46f5ac20 EB |
3850 | qdict_put_str(bs->options, "driver", drv->format_name); |
3851 | qdict_put_str(options, "driver", drv->format_name); | |
76c591b0 | 3852 | } else if (!drv) { |
17b005f1 | 3853 | error_setg(errp, "Must specify either driver or file"); |
8bfea15d | 3854 | goto fail; |
ea2384d3 | 3855 | } |
b6ce07aa | 3856 | |
53a29513 HR |
3857 | /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ |
3858 | assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); | |
3859 | /* file must be NULL if a protocol BDS is about to be created | |
3860 | * (the inverse results in an error message from bdrv_open_common()) */ | |
3861 | assert(!(flags & BDRV_O_PROTOCOL) || !file); | |
3862 | ||
b6ce07aa | 3863 | /* Open the image */ |
82dc8b41 | 3864 | ret = bdrv_open_common(bs, file, options, &local_err); |
b6ce07aa | 3865 | if (ret < 0) { |
8bfea15d | 3866 | goto fail; |
6987307c CH |
3867 | } |
3868 | ||
4e4bf5c4 | 3869 | if (file) { |
5696c6e3 | 3870 | blk_unref(file); |
f500a6d3 KW |
3871 | file = NULL; |
3872 | } | |
3873 | ||
b6ce07aa | 3874 | /* If there is a backing file, use it */ |
9156df12 | 3875 | if ((flags & BDRV_O_NO_BACKING) == 0) { |
d9b7b057 | 3876 | ret = bdrv_open_backing_file(bs, options, "backing", &local_err); |
b6ce07aa | 3877 | if (ret < 0) { |
b6ad491a | 3878 | goto close_and_fail; |
b6ce07aa | 3879 | } |
b6ce07aa KW |
3880 | } |
3881 | ||
50196d7a AG |
3882 | /* Remove all children options and references |
3883 | * from bs->options and bs->explicit_options */ | |
2f624b80 AG |
3884 | QLIST_FOREACH(child, &bs->children, next) { |
3885 | char *child_key_dot; | |
3886 | child_key_dot = g_strdup_printf("%s.", child->name); | |
3887 | qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot); | |
3888 | qdict_extract_subqdict(bs->options, NULL, child_key_dot); | |
50196d7a AG |
3889 | qdict_del(bs->explicit_options, child->name); |
3890 | qdict_del(bs->options, child->name); | |
2f624b80 AG |
3891 | g_free(child_key_dot); |
3892 | } | |
3893 | ||
b6ad491a | 3894 | /* Check if any unknown options were used */ |
7ad2757f | 3895 | if (qdict_size(options) != 0) { |
b6ad491a | 3896 | const QDictEntry *entry = qdict_first(options); |
5acd9d81 HR |
3897 | if (flags & BDRV_O_PROTOCOL) { |
3898 | error_setg(errp, "Block protocol '%s' doesn't support the option " | |
3899 | "'%s'", drv->format_name, entry->key); | |
3900 | } else { | |
d0e46a55 HR |
3901 | error_setg(errp, |
3902 | "Block format '%s' does not support the option '%s'", | |
3903 | drv->format_name, entry->key); | |
5acd9d81 | 3904 | } |
b6ad491a | 3905 | |
b6ad491a KW |
3906 | goto close_and_fail; |
3907 | } | |
b6ad491a | 3908 | |
c01c214b | 3909 | bdrv_parent_cb_change_media(bs, true); |
b6ce07aa | 3910 | |
cb3e7f08 | 3911 | qobject_unref(options); |
8961be33 | 3912 | options = NULL; |
dd62f1ca KW |
3913 | |
3914 | /* For snapshot=on, create a temporary qcow2 overlay. bs points to the | |
3915 | * temporary snapshot afterwards. */ | |
3916 | if (snapshot_flags) { | |
66836189 HR |
3917 | BlockDriverState *snapshot_bs; |
3918 | snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, | |
3919 | snapshot_options, &local_err); | |
73176bee | 3920 | snapshot_options = NULL; |
dd62f1ca KW |
3921 | if (local_err) { |
3922 | goto close_and_fail; | |
3923 | } | |
5b363937 HR |
3924 | /* We are not going to return bs but the overlay on top of it |
3925 | * (snapshot_bs); thus, we have to drop the strong reference to bs | |
3926 | * (which we obtained by calling bdrv_new()). bs will not be deleted, | |
3927 | * though, because the overlay still has a reference to it. */ | |
3928 | bdrv_unref(bs); | |
3929 | bs = snapshot_bs; | |
dd62f1ca KW |
3930 | } |
3931 | ||
5b363937 | 3932 | return bs; |
b6ce07aa | 3933 | |
8bfea15d | 3934 | fail: |
5696c6e3 | 3935 | blk_unref(file); |
cb3e7f08 MAL |
3936 | qobject_unref(snapshot_options); |
3937 | qobject_unref(bs->explicit_options); | |
3938 | qobject_unref(bs->options); | |
3939 | qobject_unref(options); | |
de9c0cec | 3940 | bs->options = NULL; |
998cbd6a | 3941 | bs->explicit_options = NULL; |
5b363937 | 3942 | bdrv_unref(bs); |
621ff94d | 3943 | error_propagate(errp, local_err); |
5b363937 | 3944 | return NULL; |
de9c0cec | 3945 | |
b6ad491a | 3946 | close_and_fail: |
5b363937 | 3947 | bdrv_unref(bs); |
cb3e7f08 MAL |
3948 | qobject_unref(snapshot_options); |
3949 | qobject_unref(options); | |
621ff94d | 3950 | error_propagate(errp, local_err); |
5b363937 | 3951 | return NULL; |
b6ce07aa KW |
3952 | } |
3953 | ||
5b363937 HR |
3954 | BlockDriverState *bdrv_open(const char *filename, const char *reference, |
3955 | QDict *options, int flags, Error **errp) | |
f3930ed0 | 3956 | { |
5b363937 | 3957 | return bdrv_open_inherit(filename, reference, options, flags, NULL, |
272c02ea | 3958 | NULL, 0, errp); |
f3930ed0 KW |
3959 | } |
3960 | ||
faf116b4 AG |
3961 | /* Return true if the NULL-terminated @list contains @str */ |
3962 | static bool is_str_in_list(const char *str, const char *const *list) | |
3963 | { | |
3964 | if (str && list) { | |
3965 | int i; | |
3966 | for (i = 0; list[i] != NULL; i++) { | |
3967 | if (!strcmp(str, list[i])) { | |
3968 | return true; | |
3969 | } | |
3970 | } | |
3971 | } | |
3972 | return false; | |
3973 | } | |
3974 | ||
3975 | /* | |
3976 | * Check that every option set in @bs->options is also set in | |
3977 | * @new_opts. | |
3978 | * | |
3979 | * Options listed in the common_options list and in | |
3980 | * @bs->drv->mutable_opts are skipped. | |
3981 | * | |
3982 | * Return 0 on success, otherwise return -EINVAL and set @errp. | |
3983 | */ | |
3984 | static int bdrv_reset_options_allowed(BlockDriverState *bs, | |
3985 | const QDict *new_opts, Error **errp) | |
3986 | { | |
3987 | const QDictEntry *e; | |
3988 | /* These options are common to all block drivers and are handled | |
3989 | * in bdrv_reopen_prepare() so they can be left out of @new_opts */ | |
3990 | const char *const common_options[] = { | |
3991 | "node-name", "discard", "cache.direct", "cache.no-flush", | |
3992 | "read-only", "auto-read-only", "detect-zeroes", NULL | |
3993 | }; | |
3994 | ||
3995 | for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) { | |
3996 | if (!qdict_haskey(new_opts, e->key) && | |
3997 | !is_str_in_list(e->key, common_options) && | |
3998 | !is_str_in_list(e->key, bs->drv->mutable_opts)) { | |
3999 | error_setg(errp, "Option '%s' cannot be reset " | |
4000 | "to its default value", e->key); | |
4001 | return -EINVAL; | |
4002 | } | |
4003 | } | |
4004 | ||
4005 | return 0; | |
4006 | } | |
4007 | ||
cb828c31 AG |
4008 | /* |
4009 | * Returns true if @child can be reached recursively from @bs | |
4010 | */ | |
4011 | static bool bdrv_recurse_has_child(BlockDriverState *bs, | |
4012 | BlockDriverState *child) | |
4013 | { | |
4014 | BdrvChild *c; | |
4015 | ||
4016 | if (bs == child) { | |
4017 | return true; | |
4018 | } | |
4019 | ||
4020 | QLIST_FOREACH(c, &bs->children, next) { | |
4021 | if (bdrv_recurse_has_child(c->bs, child)) { | |
4022 | return true; | |
4023 | } | |
4024 | } | |
4025 | ||
4026 | return false; | |
4027 | } | |
4028 | ||
e971aa12 JC |
4029 | /* |
4030 | * Adds a BlockDriverState to a simple queue for an atomic, transactional | |
4031 | * reopen of multiple devices. | |
4032 | * | |
859443b0 | 4033 | * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT |
e971aa12 JC |
4034 | * already performed, or alternatively may be NULL a new BlockReopenQueue will |
4035 | * be created and initialized. This newly created BlockReopenQueue should be | |
4036 | * passed back in for subsequent calls that are intended to be of the same | |
4037 | * atomic 'set'. | |
4038 | * | |
4039 | * bs is the BlockDriverState to add to the reopen queue. | |
4040 | * | |
4d2cb092 KW |
4041 | * options contains the changed options for the associated bs |
4042 | * (the BlockReopenQueue takes ownership) | |
4043 | * | |
e971aa12 JC |
4044 | * flags contains the open flags for the associated bs |
4045 | * | |
4046 | * returns a pointer to bs_queue, which is either the newly allocated | |
4047 | * bs_queue, or the existing bs_queue being used. | |
4048 | * | |
1a63a907 | 4049 | * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple(). |
e971aa12 | 4050 | */ |
28518102 KW |
4051 | static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, |
4052 | BlockDriverState *bs, | |
4053 | QDict *options, | |
bd86fb99 | 4054 | const BdrvChildClass *klass, |
272c02ea | 4055 | BdrvChildRole role, |
3cdc69d3 | 4056 | bool parent_is_format, |
28518102 | 4057 | QDict *parent_options, |
077e8e20 AG |
4058 | int parent_flags, |
4059 | bool keep_old_opts) | |
e971aa12 JC |
4060 | { |
4061 | assert(bs != NULL); | |
4062 | ||
4063 | BlockReopenQueueEntry *bs_entry; | |
67251a31 | 4064 | BdrvChild *child; |
9aa09ddd AG |
4065 | QDict *old_options, *explicit_options, *options_copy; |
4066 | int flags; | |
4067 | QemuOpts *opts; | |
67251a31 | 4068 | |
1a63a907 KW |
4069 | /* Make sure that the caller remembered to use a drained section. This is |
4070 | * important to avoid graph changes between the recursive queuing here and | |
4071 | * bdrv_reopen_multiple(). */ | |
4072 | assert(bs->quiesce_counter > 0); | |
4073 | ||
e971aa12 JC |
4074 | if (bs_queue == NULL) { |
4075 | bs_queue = g_new0(BlockReopenQueue, 1); | |
859443b0 | 4076 | QTAILQ_INIT(bs_queue); |
e971aa12 JC |
4077 | } |
4078 | ||
4d2cb092 KW |
4079 | if (!options) { |
4080 | options = qdict_new(); | |
4081 | } | |
4082 | ||
5b7ba05f | 4083 | /* Check if this BlockDriverState is already in the queue */ |
859443b0 | 4084 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
5b7ba05f AG |
4085 | if (bs == bs_entry->state.bs) { |
4086 | break; | |
4087 | } | |
4088 | } | |
4089 | ||
28518102 KW |
4090 | /* |
4091 | * Precedence of options: | |
4092 | * 1. Explicitly passed in options (highest) | |
9aa09ddd AG |
4093 | * 2. Retained from explicitly set options of bs |
4094 | * 3. Inherited from parent node | |
4095 | * 4. Retained from effective options of bs | |
28518102 KW |
4096 | */ |
4097 | ||
145f598e | 4098 | /* Old explicitly set values (don't overwrite by inherited value) */ |
077e8e20 AG |
4099 | if (bs_entry || keep_old_opts) { |
4100 | old_options = qdict_clone_shallow(bs_entry ? | |
4101 | bs_entry->state.explicit_options : | |
4102 | bs->explicit_options); | |
4103 | bdrv_join_options(bs, options, old_options); | |
4104 | qobject_unref(old_options); | |
5b7ba05f | 4105 | } |
145f598e KW |
4106 | |
4107 | explicit_options = qdict_clone_shallow(options); | |
4108 | ||
28518102 KW |
4109 | /* Inherit from parent node */ |
4110 | if (parent_options) { | |
9aa09ddd | 4111 | flags = 0; |
3cdc69d3 | 4112 | klass->inherit_options(role, parent_is_format, &flags, options, |
272c02ea | 4113 | parent_flags, parent_options); |
9aa09ddd AG |
4114 | } else { |
4115 | flags = bdrv_get_flags(bs); | |
28518102 KW |
4116 | } |
4117 | ||
077e8e20 AG |
4118 | if (keep_old_opts) { |
4119 | /* Old values are used for options that aren't set yet */ | |
4120 | old_options = qdict_clone_shallow(bs->options); | |
4121 | bdrv_join_options(bs, options, old_options); | |
4122 | qobject_unref(old_options); | |
4123 | } | |
4d2cb092 | 4124 | |
9aa09ddd AG |
4125 | /* We have the final set of options so let's update the flags */ |
4126 | options_copy = qdict_clone_shallow(options); | |
4127 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); | |
4128 | qemu_opts_absorb_qdict(opts, options_copy, NULL); | |
4129 | update_flags_from_options(&flags, opts); | |
4130 | qemu_opts_del(opts); | |
4131 | qobject_unref(options_copy); | |
4132 | ||
fd452021 | 4133 | /* bdrv_open_inherit() sets and clears some additional flags internally */ |
f1f25a2e | 4134 | flags &= ~BDRV_O_PROTOCOL; |
fd452021 KW |
4135 | if (flags & BDRV_O_RDWR) { |
4136 | flags |= BDRV_O_ALLOW_RDWR; | |
4137 | } | |
f1f25a2e | 4138 | |
1857c97b KW |
4139 | if (!bs_entry) { |
4140 | bs_entry = g_new0(BlockReopenQueueEntry, 1); | |
859443b0 | 4141 | QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry); |
1857c97b | 4142 | } else { |
cb3e7f08 MAL |
4143 | qobject_unref(bs_entry->state.options); |
4144 | qobject_unref(bs_entry->state.explicit_options); | |
1857c97b KW |
4145 | } |
4146 | ||
4147 | bs_entry->state.bs = bs; | |
4148 | bs_entry->state.options = options; | |
4149 | bs_entry->state.explicit_options = explicit_options; | |
4150 | bs_entry->state.flags = flags; | |
4151 | ||
8546632e AG |
4152 | /* |
4153 | * If keep_old_opts is false then it means that unspecified | |
4154 | * options must be reset to their original value. We don't allow | |
4155 | * resetting 'backing' but we need to know if the option is | |
4156 | * missing in order to decide if we have to return an error. | |
4157 | */ | |
4158 | if (!keep_old_opts) { | |
4159 | bs_entry->state.backing_missing = | |
4160 | !qdict_haskey(options, "backing") && | |
4161 | !qdict_haskey(options, "backing.driver"); | |
4162 | } | |
4163 | ||
67251a31 | 4164 | QLIST_FOREACH(child, &bs->children, next) { |
8546632e AG |
4165 | QDict *new_child_options = NULL; |
4166 | bool child_keep_old = keep_old_opts; | |
67251a31 | 4167 | |
4c9dfe5d KW |
4168 | /* reopen can only change the options of block devices that were |
4169 | * implicitly created and inherited options. For other (referenced) | |
4170 | * block devices, a syntax like "backing.foo" results in an error. */ | |
67251a31 KW |
4171 | if (child->bs->inherits_from != bs) { |
4172 | continue; | |
4173 | } | |
4174 | ||
8546632e AG |
4175 | /* Check if the options contain a child reference */ |
4176 | if (qdict_haskey(options, child->name)) { | |
4177 | const char *childref = qdict_get_try_str(options, child->name); | |
4178 | /* | |
4179 | * The current child must not be reopened if the child | |
4180 | * reference is null or points to a different node. | |
4181 | */ | |
4182 | if (g_strcmp0(childref, child->bs->node_name)) { | |
4183 | continue; | |
4184 | } | |
4185 | /* | |
4186 | * If the child reference points to the current child then | |
4187 | * reopen it with its existing set of options (note that | |
4188 | * it can still inherit new options from the parent). | |
4189 | */ | |
4190 | child_keep_old = true; | |
4191 | } else { | |
4192 | /* Extract child options ("child-name.*") */ | |
4193 | char *child_key_dot = g_strdup_printf("%s.", child->name); | |
4194 | qdict_extract_subqdict(explicit_options, NULL, child_key_dot); | |
4195 | qdict_extract_subqdict(options, &new_child_options, child_key_dot); | |
4196 | g_free(child_key_dot); | |
4197 | } | |
4c9dfe5d | 4198 | |
9aa09ddd | 4199 | bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, |
3cdc69d3 HR |
4200 | child->klass, child->role, bs->drv->is_format, |
4201 | options, flags, child_keep_old); | |
e971aa12 JC |
4202 | } |
4203 | ||
e971aa12 JC |
4204 | return bs_queue; |
4205 | } | |
4206 | ||
28518102 KW |
4207 | BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, |
4208 | BlockDriverState *bs, | |
077e8e20 | 4209 | QDict *options, bool keep_old_opts) |
28518102 | 4210 | { |
3cdc69d3 HR |
4211 | return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false, |
4212 | NULL, 0, keep_old_opts); | |
28518102 KW |
4213 | } |
4214 | ||
ab5b5228 AG |
4215 | void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue) |
4216 | { | |
4217 | if (bs_queue) { | |
4218 | BlockReopenQueueEntry *bs_entry, *next; | |
4219 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { | |
4220 | qobject_unref(bs_entry->state.explicit_options); | |
4221 | qobject_unref(bs_entry->state.options); | |
4222 | g_free(bs_entry); | |
4223 | } | |
4224 | g_free(bs_queue); | |
4225 | } | |
4226 | } | |
4227 | ||
e971aa12 JC |
4228 | /* |
4229 | * Reopen multiple BlockDriverStates atomically & transactionally. | |
4230 | * | |
4231 | * The queue passed in (bs_queue) must have been built up previous | |
4232 | * via bdrv_reopen_queue(). | |
4233 | * | |
4234 | * Reopens all BDS specified in the queue, with the appropriate | |
4235 | * flags. All devices are prepared for reopen, and failure of any | |
50d6a8a3 | 4236 | * device will cause all device changes to be abandoned, and intermediate |
e971aa12 JC |
4237 | * data cleaned up. |
4238 | * | |
4239 | * If all devices prepare successfully, then the changes are committed | |
4240 | * to all devices. | |
4241 | * | |
1a63a907 KW |
4242 | * All affected nodes must be drained between bdrv_reopen_queue() and |
4243 | * bdrv_reopen_multiple(). | |
6cf42ca2 KW |
4244 | * |
4245 | * To be called from the main thread, with all other AioContexts unlocked. | |
e971aa12 | 4246 | */ |
5019aece | 4247 | int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) |
e971aa12 JC |
4248 | { |
4249 | int ret = -1; | |
4250 | BlockReopenQueueEntry *bs_entry, *next; | |
6cf42ca2 | 4251 | AioContext *ctx; |
72373e40 VSO |
4252 | Transaction *tran = tran_new(); |
4253 | g_autoptr(GHashTable) found = NULL; | |
4254 | g_autoptr(GSList) refresh_list = NULL; | |
e971aa12 | 4255 | |
6cf42ca2 | 4256 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
e971aa12 JC |
4257 | assert(bs_queue != NULL); |
4258 | ||
a2aabf88 | 4259 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
6cf42ca2 KW |
4260 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
4261 | aio_context_acquire(ctx); | |
a2aabf88 | 4262 | ret = bdrv_flush(bs_entry->state.bs); |
6cf42ca2 | 4263 | aio_context_release(ctx); |
a2aabf88 VSO |
4264 | if (ret < 0) { |
4265 | error_setg_errno(errp, -ret, "Error flushing drive"); | |
e3fc91aa | 4266 | goto abort; |
a2aabf88 VSO |
4267 | } |
4268 | } | |
4269 | ||
859443b0 | 4270 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
1a63a907 | 4271 | assert(bs_entry->state.bs->quiesce_counter > 0); |
6cf42ca2 KW |
4272 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
4273 | aio_context_acquire(ctx); | |
72373e40 | 4274 | ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp); |
6cf42ca2 | 4275 | aio_context_release(ctx); |
72373e40 VSO |
4276 | if (ret < 0) { |
4277 | goto abort; | |
e971aa12 JC |
4278 | } |
4279 | bs_entry->prepared = true; | |
4280 | } | |
4281 | ||
72373e40 | 4282 | found = g_hash_table_new(NULL, NULL); |
859443b0 | 4283 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
69b736e7 | 4284 | BDRVReopenState *state = &bs_entry->state; |
72373e40 VSO |
4285 | |
4286 | refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs); | |
4287 | if (state->old_backing_bs) { | |
4288 | refresh_list = bdrv_topological_dfs(refresh_list, found, | |
4289 | state->old_backing_bs); | |
cb828c31 | 4290 | } |
ecd30d2d AG |
4291 | if (state->old_file_bs) { |
4292 | refresh_list = bdrv_topological_dfs(refresh_list, found, | |
4293 | state->old_file_bs); | |
4294 | } | |
72373e40 VSO |
4295 | } |
4296 | ||
4297 | /* | |
4298 | * Note that file-posix driver rely on permission update done during reopen | |
4299 | * (even if no permission changed), because it wants "new" permissions for | |
4300 | * reconfiguring the fd and that's why it does it in raw_check_perm(), not | |
4301 | * in raw_reopen_prepare() which is called with "old" permissions. | |
4302 | */ | |
4303 | ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp); | |
4304 | if (ret < 0) { | |
4305 | goto abort; | |
69b736e7 KW |
4306 | } |
4307 | ||
fcd6a4f4 VSO |
4308 | /* |
4309 | * If we reach this point, we have success and just need to apply the | |
4310 | * changes. | |
4311 | * | |
4312 | * Reverse order is used to comfort qcow2 driver: on commit it need to write | |
4313 | * IN_USE flag to the image, to mark bitmaps in the image as invalid. But | |
4314 | * children are usually goes after parents in reopen-queue, so go from last | |
4315 | * to first element. | |
e971aa12 | 4316 | */ |
fcd6a4f4 | 4317 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
6cf42ca2 KW |
4318 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
4319 | aio_context_acquire(ctx); | |
e971aa12 | 4320 | bdrv_reopen_commit(&bs_entry->state); |
6cf42ca2 | 4321 | aio_context_release(ctx); |
e971aa12 JC |
4322 | } |
4323 | ||
72373e40 | 4324 | tran_commit(tran); |
69b736e7 | 4325 | |
72373e40 VSO |
4326 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
4327 | BlockDriverState *bs = bs_entry->state.bs; | |
74ad9a3b | 4328 | |
72373e40 | 4329 | if (bs->drv->bdrv_reopen_commit_post) { |
6cf42ca2 KW |
4330 | ctx = bdrv_get_aio_context(bs); |
4331 | aio_context_acquire(ctx); | |
72373e40 | 4332 | bs->drv->bdrv_reopen_commit_post(&bs_entry->state); |
6cf42ca2 | 4333 | aio_context_release(ctx); |
69b736e7 KW |
4334 | } |
4335 | } | |
17e1e2be | 4336 | |
72373e40 VSO |
4337 | ret = 0; |
4338 | goto cleanup; | |
17e1e2be | 4339 | |
72373e40 VSO |
4340 | abort: |
4341 | tran_abort(tran); | |
4342 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { | |
4343 | if (bs_entry->prepared) { | |
6cf42ca2 KW |
4344 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
4345 | aio_context_acquire(ctx); | |
72373e40 | 4346 | bdrv_reopen_abort(&bs_entry->state); |
6cf42ca2 | 4347 | aio_context_release(ctx); |
17e1e2be PK |
4348 | } |
4349 | } | |
72373e40 | 4350 | |
e971aa12 | 4351 | cleanup: |
ab5b5228 | 4352 | bdrv_reopen_queue_free(bs_queue); |
40840e41 | 4353 | |
e971aa12 JC |
4354 | return ret; |
4355 | } | |
4356 | ||
6cf42ca2 KW |
4357 | int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts, |
4358 | Error **errp) | |
6e1000a8 | 4359 | { |
6cf42ca2 | 4360 | AioContext *ctx = bdrv_get_aio_context(bs); |
6e1000a8 | 4361 | BlockReopenQueue *queue; |
6cf42ca2 | 4362 | int ret; |
6e1000a8 AG |
4363 | |
4364 | bdrv_subtree_drained_begin(bs); | |
6cf42ca2 KW |
4365 | if (ctx != qemu_get_aio_context()) { |
4366 | aio_context_release(ctx); | |
4367 | } | |
4368 | ||
4369 | queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts); | |
5019aece | 4370 | ret = bdrv_reopen_multiple(queue, errp); |
6cf42ca2 KW |
4371 | |
4372 | if (ctx != qemu_get_aio_context()) { | |
4373 | aio_context_acquire(ctx); | |
4374 | } | |
6e1000a8 AG |
4375 | bdrv_subtree_drained_end(bs); |
4376 | ||
4377 | return ret; | |
4378 | } | |
4379 | ||
6cf42ca2 KW |
4380 | int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only, |
4381 | Error **errp) | |
4382 | { | |
4383 | QDict *opts = qdict_new(); | |
4384 | ||
4385 | qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only); | |
4386 | ||
4387 | return bdrv_reopen(bs, opts, true, errp); | |
4388 | } | |
4389 | ||
cb828c31 AG |
4390 | /* |
4391 | * Take a BDRVReopenState and check if the value of 'backing' in the | |
4392 | * reopen_state->options QDict is valid or not. | |
4393 | * | |
4394 | * If 'backing' is missing from the QDict then return 0. | |
4395 | * | |
4396 | * If 'backing' contains the node name of the backing file of | |
4397 | * reopen_state->bs then return 0. | |
4398 | * | |
4399 | * If 'backing' contains a different node name (or is null) then check | |
4400 | * whether the current backing file can be replaced with the new one. | |
4401 | * If that's the case then reopen_state->replace_backing_bs is set to | |
4402 | * true and reopen_state->new_backing_bs contains a pointer to the new | |
4403 | * backing BlockDriverState (or NULL). | |
4404 | * | |
4405 | * Return 0 on success, otherwise return < 0 and set @errp. | |
4406 | */ | |
ecd30d2d AG |
4407 | static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state, |
4408 | bool is_backing, Transaction *tran, | |
4409 | Error **errp) | |
cb828c31 AG |
4410 | { |
4411 | BlockDriverState *bs = reopen_state->bs; | |
ecd30d2d AG |
4412 | BlockDriverState *new_child_bs; |
4413 | BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) : | |
4414 | child_bs(bs->file); | |
4415 | const char *child_name = is_backing ? "backing" : "file"; | |
cb828c31 AG |
4416 | QObject *value; |
4417 | const char *str; | |
4418 | ||
ecd30d2d | 4419 | value = qdict_get(reopen_state->options, child_name); |
cb828c31 AG |
4420 | if (value == NULL) { |
4421 | return 0; | |
4422 | } | |
4423 | ||
4424 | switch (qobject_type(value)) { | |
4425 | case QTYPE_QNULL: | |
ecd30d2d AG |
4426 | assert(is_backing); /* The 'file' option does not allow a null value */ |
4427 | new_child_bs = NULL; | |
cb828c31 AG |
4428 | break; |
4429 | case QTYPE_QSTRING: | |
410f44f5 | 4430 | str = qstring_get_str(qobject_to(QString, value)); |
ecd30d2d AG |
4431 | new_child_bs = bdrv_lookup_bs(NULL, str, errp); |
4432 | if (new_child_bs == NULL) { | |
cb828c31 | 4433 | return -EINVAL; |
ecd30d2d AG |
4434 | } else if (bdrv_recurse_has_child(new_child_bs, bs)) { |
4435 | error_setg(errp, "Making '%s' a %s child of '%s' would create a " | |
4436 | "cycle", str, child_name, bs->node_name); | |
cb828c31 AG |
4437 | return -EINVAL; |
4438 | } | |
4439 | break; | |
4440 | default: | |
ecd30d2d AG |
4441 | /* |
4442 | * The options QDict has been flattened, so 'backing' and 'file' | |
4443 | * do not allow any other data type here. | |
4444 | */ | |
cb828c31 AG |
4445 | g_assert_not_reached(); |
4446 | } | |
4447 | ||
ecd30d2d AG |
4448 | if (old_child_bs == new_child_bs) { |
4449 | return 0; | |
4450 | } | |
4451 | ||
4452 | if (old_child_bs) { | |
4453 | if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) { | |
cbfdb98c VSO |
4454 | return 0; |
4455 | } | |
4456 | ||
ecd30d2d AG |
4457 | if (old_child_bs->implicit) { |
4458 | error_setg(errp, "Cannot replace implicit %s child of %s", | |
4459 | child_name, bs->node_name); | |
cbfdb98c VSO |
4460 | return -EPERM; |
4461 | } | |
4462 | } | |
4463 | ||
ecd30d2d | 4464 | if (bs->drv->is_filter && !old_child_bs) { |
25f78d9e VSO |
4465 | /* |
4466 | * Filters always have a file or a backing child, so we are trying to | |
4467 | * change wrong child | |
4468 | */ | |
4469 | error_setg(errp, "'%s' is a %s filter node that does not support a " | |
ecd30d2d | 4470 | "%s child", bs->node_name, bs->drv->format_name, child_name); |
1d42f48c HR |
4471 | return -EINVAL; |
4472 | } | |
4473 | ||
ecd30d2d AG |
4474 | if (is_backing) { |
4475 | reopen_state->old_backing_bs = old_child_bs; | |
4476 | } else { | |
4477 | reopen_state->old_file_bs = old_child_bs; | |
4478 | } | |
4479 | ||
4480 | return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing, | |
4481 | tran, errp); | |
cb828c31 AG |
4482 | } |
4483 | ||
e971aa12 JC |
4484 | /* |
4485 | * Prepares a BlockDriverState for reopen. All changes are staged in the | |
4486 | * 'opaque' field of the BDRVReopenState, which is used and allocated by | |
4487 | * the block driver layer .bdrv_reopen_prepare() | |
4488 | * | |
4489 | * bs is the BlockDriverState to reopen | |
4490 | * flags are the new open flags | |
4491 | * queue is the reopen queue | |
4492 | * | |
4493 | * Returns 0 on success, non-zero on error. On error errp will be set | |
4494 | * as well. | |
4495 | * | |
4496 | * On failure, bdrv_reopen_abort() will be called to clean up any data. | |
4497 | * It is the responsibility of the caller to then call the abort() or | |
4498 | * commit() for any other BDS that have been left in a prepare() state | |
4499 | * | |
4500 | */ | |
53e96d1e | 4501 | static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, |
72373e40 | 4502 | BlockReopenQueue *queue, |
ecd30d2d | 4503 | Transaction *change_child_tran, Error **errp) |
e971aa12 JC |
4504 | { |
4505 | int ret = -1; | |
e6d79c41 | 4506 | int old_flags; |
e971aa12 JC |
4507 | Error *local_err = NULL; |
4508 | BlockDriver *drv; | |
ccf9dc07 | 4509 | QemuOpts *opts; |
4c8350fe | 4510 | QDict *orig_reopen_opts; |
593b3071 | 4511 | char *discard = NULL; |
3d8ce171 | 4512 | bool read_only; |
9ad08c44 | 4513 | bool drv_prepared = false; |
e971aa12 JC |
4514 | |
4515 | assert(reopen_state != NULL); | |
4516 | assert(reopen_state->bs->drv != NULL); | |
4517 | drv = reopen_state->bs->drv; | |
4518 | ||
4c8350fe AG |
4519 | /* This function and each driver's bdrv_reopen_prepare() remove |
4520 | * entries from reopen_state->options as they are processed, so | |
4521 | * we need to make a copy of the original QDict. */ | |
4522 | orig_reopen_opts = qdict_clone_shallow(reopen_state->options); | |
4523 | ||
ccf9dc07 KW |
4524 | /* Process generic block layer options */ |
4525 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); | |
af175e85 | 4526 | if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) { |
ccf9dc07 KW |
4527 | ret = -EINVAL; |
4528 | goto error; | |
4529 | } | |
4530 | ||
e6d79c41 AG |
4531 | /* This was already called in bdrv_reopen_queue_child() so the flags |
4532 | * are up-to-date. This time we simply want to remove the options from | |
4533 | * QemuOpts in order to indicate that they have been processed. */ | |
4534 | old_flags = reopen_state->flags; | |
91a097e7 | 4535 | update_flags_from_options(&reopen_state->flags, opts); |
e6d79c41 | 4536 | assert(old_flags == reopen_state->flags); |
91a097e7 | 4537 | |
415bbca8 | 4538 | discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD); |
593b3071 AG |
4539 | if (discard != NULL) { |
4540 | if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) { | |
4541 | error_setg(errp, "Invalid discard option"); | |
4542 | ret = -EINVAL; | |
4543 | goto error; | |
4544 | } | |
4545 | } | |
4546 | ||
543770bd AG |
4547 | reopen_state->detect_zeroes = |
4548 | bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err); | |
4549 | if (local_err) { | |
4550 | error_propagate(errp, local_err); | |
4551 | ret = -EINVAL; | |
4552 | goto error; | |
4553 | } | |
4554 | ||
57f9db9a AG |
4555 | /* All other options (including node-name and driver) must be unchanged. |
4556 | * Put them back into the QDict, so that they are checked at the end | |
4557 | * of this function. */ | |
4558 | qemu_opts_to_qdict(opts, reopen_state->options); | |
ccf9dc07 | 4559 | |
3d8ce171 JC |
4560 | /* If we are to stay read-only, do not allow permission change |
4561 | * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is | |
4562 | * not set, or if the BDS still has copy_on_read enabled */ | |
4563 | read_only = !(reopen_state->flags & BDRV_O_RDWR); | |
54a32bfe | 4564 | ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); |
3d8ce171 JC |
4565 | if (local_err) { |
4566 | error_propagate(errp, local_err); | |
e971aa12 JC |
4567 | goto error; |
4568 | } | |
4569 | ||
e971aa12 | 4570 | if (drv->bdrv_reopen_prepare) { |
faf116b4 AG |
4571 | /* |
4572 | * If a driver-specific option is missing, it means that we | |
4573 | * should reset it to its default value. | |
4574 | * But not all options allow that, so we need to check it first. | |
4575 | */ | |
4576 | ret = bdrv_reset_options_allowed(reopen_state->bs, | |
4577 | reopen_state->options, errp); | |
4578 | if (ret) { | |
4579 | goto error; | |
4580 | } | |
4581 | ||
e971aa12 JC |
4582 | ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); |
4583 | if (ret) { | |
4584 | if (local_err != NULL) { | |
4585 | error_propagate(errp, local_err); | |
4586 | } else { | |
f30c66ba | 4587 | bdrv_refresh_filename(reopen_state->bs); |
d8b6895f LC |
4588 | error_setg(errp, "failed while preparing to reopen image '%s'", |
4589 | reopen_state->bs->filename); | |
e971aa12 JC |
4590 | } |
4591 | goto error; | |
4592 | } | |
4593 | } else { | |
4594 | /* It is currently mandatory to have a bdrv_reopen_prepare() | |
4595 | * handler for each supported drv. */ | |
81e5f78a AG |
4596 | error_setg(errp, "Block format '%s' used by node '%s' " |
4597 | "does not support reopening files", drv->format_name, | |
4598 | bdrv_get_device_or_node_name(reopen_state->bs)); | |
e971aa12 JC |
4599 | ret = -1; |
4600 | goto error; | |
4601 | } | |
4602 | ||
9ad08c44 HR |
4603 | drv_prepared = true; |
4604 | ||
bacd9b87 AG |
4605 | /* |
4606 | * We must provide the 'backing' option if the BDS has a backing | |
4607 | * file or if the image file has a backing file name as part of | |
4608 | * its metadata. Otherwise the 'backing' option can be omitted. | |
4609 | */ | |
4610 | if (drv->supports_backing && reopen_state->backing_missing && | |
1d42f48c | 4611 | (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) { |
8546632e AG |
4612 | error_setg(errp, "backing is missing for '%s'", |
4613 | reopen_state->bs->node_name); | |
4614 | ret = -EINVAL; | |
4615 | goto error; | |
4616 | } | |
4617 | ||
cb828c31 AG |
4618 | /* |
4619 | * Allow changing the 'backing' option. The new value can be | |
4620 | * either a reference to an existing node (using its node name) | |
4621 | * or NULL to simply detach the current backing file. | |
4622 | */ | |
ecd30d2d AG |
4623 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, true, |
4624 | change_child_tran, errp); | |
cb828c31 AG |
4625 | if (ret < 0) { |
4626 | goto error; | |
4627 | } | |
4628 | qdict_del(reopen_state->options, "backing"); | |
4629 | ||
ecd30d2d AG |
4630 | /* Allow changing the 'file' option. In this case NULL is not allowed */ |
4631 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, false, | |
4632 | change_child_tran, errp); | |
4633 | if (ret < 0) { | |
4634 | goto error; | |
4635 | } | |
4636 | qdict_del(reopen_state->options, "file"); | |
4637 | ||
4d2cb092 KW |
4638 | /* Options that are not handled are only okay if they are unchanged |
4639 | * compared to the old state. It is expected that some options are only | |
4640 | * used for the initial open, but not reopen (e.g. filename) */ | |
4641 | if (qdict_size(reopen_state->options)) { | |
4642 | const QDictEntry *entry = qdict_first(reopen_state->options); | |
4643 | ||
4644 | do { | |
54fd1b0d HR |
4645 | QObject *new = entry->value; |
4646 | QObject *old = qdict_get(reopen_state->bs->options, entry->key); | |
4647 | ||
db905283 AG |
4648 | /* Allow child references (child_name=node_name) as long as they |
4649 | * point to the current child (i.e. everything stays the same). */ | |
4650 | if (qobject_type(new) == QTYPE_QSTRING) { | |
4651 | BdrvChild *child; | |
4652 | QLIST_FOREACH(child, &reopen_state->bs->children, next) { | |
4653 | if (!strcmp(child->name, entry->key)) { | |
4654 | break; | |
4655 | } | |
4656 | } | |
4657 | ||
4658 | if (child) { | |
410f44f5 MA |
4659 | if (!strcmp(child->bs->node_name, |
4660 | qstring_get_str(qobject_to(QString, new)))) { | |
db905283 AG |
4661 | continue; /* Found child with this name, skip option */ |
4662 | } | |
4663 | } | |
4664 | } | |
4665 | ||
129c7d1c | 4666 | /* |
54fd1b0d HR |
4667 | * TODO: When using -drive to specify blockdev options, all values |
4668 | * will be strings; however, when using -blockdev, blockdev-add or | |
4669 | * filenames using the json:{} pseudo-protocol, they will be | |
4670 | * correctly typed. | |
4671 | * In contrast, reopening options are (currently) always strings | |
4672 | * (because you can only specify them through qemu-io; all other | |
4673 | * callers do not specify any options). | |
4674 | * Therefore, when using anything other than -drive to create a BDS, | |
4675 | * this cannot detect non-string options as unchanged, because | |
4676 | * qobject_is_equal() always returns false for objects of different | |
4677 | * type. In the future, this should be remedied by correctly typing | |
4678 | * all options. For now, this is not too big of an issue because | |
4679 | * the user can simply omit options which cannot be changed anyway, | |
4680 | * so they will stay unchanged. | |
129c7d1c | 4681 | */ |
54fd1b0d | 4682 | if (!qobject_is_equal(new, old)) { |
4d2cb092 KW |
4683 | error_setg(errp, "Cannot change the option '%s'", entry->key); |
4684 | ret = -EINVAL; | |
4685 | goto error; | |
4686 | } | |
4687 | } while ((entry = qdict_next(reopen_state->options, entry))); | |
4688 | } | |
4689 | ||
e971aa12 JC |
4690 | ret = 0; |
4691 | ||
4c8350fe AG |
4692 | /* Restore the original reopen_state->options QDict */ |
4693 | qobject_unref(reopen_state->options); | |
4694 | reopen_state->options = qobject_ref(orig_reopen_opts); | |
4695 | ||
e971aa12 | 4696 | error: |
9ad08c44 HR |
4697 | if (ret < 0 && drv_prepared) { |
4698 | /* drv->bdrv_reopen_prepare() has succeeded, so we need to | |
4699 | * call drv->bdrv_reopen_abort() before signaling an error | |
4700 | * (bdrv_reopen_multiple() will not call bdrv_reopen_abort() | |
4701 | * when the respective bdrv_reopen_prepare() has failed) */ | |
4702 | if (drv->bdrv_reopen_abort) { | |
4703 | drv->bdrv_reopen_abort(reopen_state); | |
4704 | } | |
4705 | } | |
ccf9dc07 | 4706 | qemu_opts_del(opts); |
4c8350fe | 4707 | qobject_unref(orig_reopen_opts); |
593b3071 | 4708 | g_free(discard); |
e971aa12 JC |
4709 | return ret; |
4710 | } | |
4711 | ||
4712 | /* | |
4713 | * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and | |
4714 | * makes them final by swapping the staging BlockDriverState contents into | |
4715 | * the active BlockDriverState contents. | |
4716 | */ | |
53e96d1e | 4717 | static void bdrv_reopen_commit(BDRVReopenState *reopen_state) |
e971aa12 JC |
4718 | { |
4719 | BlockDriver *drv; | |
50bf65ba | 4720 | BlockDriverState *bs; |
50196d7a | 4721 | BdrvChild *child; |
e971aa12 JC |
4722 | |
4723 | assert(reopen_state != NULL); | |
50bf65ba VSO |
4724 | bs = reopen_state->bs; |
4725 | drv = bs->drv; | |
e971aa12 JC |
4726 | assert(drv != NULL); |
4727 | ||
4728 | /* If there are any driver level actions to take */ | |
4729 | if (drv->bdrv_reopen_commit) { | |
4730 | drv->bdrv_reopen_commit(reopen_state); | |
4731 | } | |
4732 | ||
4733 | /* set BDS specific flags now */ | |
cb3e7f08 | 4734 | qobject_unref(bs->explicit_options); |
4c8350fe | 4735 | qobject_unref(bs->options); |
ab5b5228 AG |
4736 | qobject_ref(reopen_state->explicit_options); |
4737 | qobject_ref(reopen_state->options); | |
145f598e | 4738 | |
50bf65ba | 4739 | bs->explicit_options = reopen_state->explicit_options; |
4c8350fe | 4740 | bs->options = reopen_state->options; |
50bf65ba | 4741 | bs->open_flags = reopen_state->flags; |
543770bd | 4742 | bs->detect_zeroes = reopen_state->detect_zeroes; |
355ef4ac | 4743 | |
50196d7a AG |
4744 | /* Remove child references from bs->options and bs->explicit_options. |
4745 | * Child options were already removed in bdrv_reopen_queue_child() */ | |
4746 | QLIST_FOREACH(child, &bs->children, next) { | |
4747 | qdict_del(bs->explicit_options, child->name); | |
4748 | qdict_del(bs->options, child->name); | |
4749 | } | |
3d0e8743 VSO |
4750 | /* backing is probably removed, so it's not handled by previous loop */ |
4751 | qdict_del(bs->explicit_options, "backing"); | |
4752 | qdict_del(bs->options, "backing"); | |
4753 | ||
1e4c797c | 4754 | bdrv_refresh_limits(bs, NULL, NULL); |
e971aa12 JC |
4755 | } |
4756 | ||
4757 | /* | |
4758 | * Abort the reopen, and delete and free the staged changes in | |
4759 | * reopen_state | |
4760 | */ | |
53e96d1e | 4761 | static void bdrv_reopen_abort(BDRVReopenState *reopen_state) |
e971aa12 JC |
4762 | { |
4763 | BlockDriver *drv; | |
4764 | ||
4765 | assert(reopen_state != NULL); | |
4766 | drv = reopen_state->bs->drv; | |
4767 | assert(drv != NULL); | |
4768 | ||
4769 | if (drv->bdrv_reopen_abort) { | |
4770 | drv->bdrv_reopen_abort(reopen_state); | |
4771 | } | |
4772 | } | |
4773 | ||
4774 | ||
64dff520 | 4775 | static void bdrv_close(BlockDriverState *bs) |
fc01f7e7 | 4776 | { |
33384421 | 4777 | BdrvAioNotifier *ban, *ban_next; |
50a3efb0 | 4778 | BdrvChild *child, *next; |
33384421 | 4779 | |
30f55fb8 | 4780 | assert(!bs->refcnt); |
99b7e775 | 4781 | |
fc27291d | 4782 | bdrv_drained_begin(bs); /* complete I/O */ |
58fda173 | 4783 | bdrv_flush(bs); |
53ec73e2 | 4784 | bdrv_drain(bs); /* in case flush left pending I/O */ |
fc27291d | 4785 | |
3cbc002c | 4786 | if (bs->drv) { |
3c005293 | 4787 | if (bs->drv->bdrv_close) { |
7b99a266 | 4788 | /* Must unfreeze all children, so bdrv_unref_child() works */ |
3c005293 VSO |
4789 | bs->drv->bdrv_close(bs); |
4790 | } | |
9a4f4c31 | 4791 | bs->drv = NULL; |
50a3efb0 | 4792 | } |
9a7dedbc | 4793 | |
50a3efb0 | 4794 | QLIST_FOREACH_SAFE(child, &bs->children, next, next) { |
dd4118c7 | 4795 | bdrv_unref_child(bs, child); |
b338082b | 4796 | } |
98f90dba | 4797 | |
dd4118c7 AG |
4798 | bs->backing = NULL; |
4799 | bs->file = NULL; | |
50a3efb0 AG |
4800 | g_free(bs->opaque); |
4801 | bs->opaque = NULL; | |
d73415a3 | 4802 | qatomic_set(&bs->copy_on_read, 0); |
50a3efb0 AG |
4803 | bs->backing_file[0] = '\0'; |
4804 | bs->backing_format[0] = '\0'; | |
4805 | bs->total_sectors = 0; | |
4806 | bs->encrypted = false; | |
4807 | bs->sg = false; | |
cb3e7f08 MAL |
4808 | qobject_unref(bs->options); |
4809 | qobject_unref(bs->explicit_options); | |
50a3efb0 AG |
4810 | bs->options = NULL; |
4811 | bs->explicit_options = NULL; | |
cb3e7f08 | 4812 | qobject_unref(bs->full_open_options); |
50a3efb0 | 4813 | bs->full_open_options = NULL; |
0bc329fb HR |
4814 | g_free(bs->block_status_cache); |
4815 | bs->block_status_cache = NULL; | |
50a3efb0 | 4816 | |
cca43ae1 VSO |
4817 | bdrv_release_named_dirty_bitmaps(bs); |
4818 | assert(QLIST_EMPTY(&bs->dirty_bitmaps)); | |
4819 | ||
33384421 HR |
4820 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
4821 | g_free(ban); | |
4822 | } | |
4823 | QLIST_INIT(&bs->aio_notifiers); | |
fc27291d | 4824 | bdrv_drained_end(bs); |
1a6d3bd2 GK |
4825 | |
4826 | /* | |
4827 | * If we're still inside some bdrv_drain_all_begin()/end() sections, end | |
4828 | * them now since this BDS won't exist anymore when bdrv_drain_all_end() | |
4829 | * gets called. | |
4830 | */ | |
4831 | if (bs->quiesce_counter) { | |
4832 | bdrv_drain_all_end_quiesce(bs); | |
4833 | } | |
b338082b FB |
4834 | } |
4835 | ||
2bc93fed MK |
4836 | void bdrv_close_all(void) |
4837 | { | |
b3b5299d | 4838 | assert(job_next(NULL) == NULL); |
ca9bd24c HR |
4839 | |
4840 | /* Drop references from requests still in flight, such as canceled block | |
4841 | * jobs whose AIO context has not been polled yet */ | |
4842 | bdrv_drain_all(); | |
2bc93fed | 4843 | |
ca9bd24c HR |
4844 | blk_remove_all_bs(); |
4845 | blockdev_close_all_bdrv_states(); | |
ed78cda3 | 4846 | |
a1a2af07 | 4847 | assert(QTAILQ_EMPTY(&all_bdrv_states)); |
2bc93fed MK |
4848 | } |
4849 | ||
d0ac0380 KW |
4850 | static bool should_update_child(BdrvChild *c, BlockDriverState *to) |
4851 | { | |
2f30b7c3 VSO |
4852 | GQueue *queue; |
4853 | GHashTable *found; | |
4854 | bool ret; | |
d0ac0380 | 4855 | |
bd86fb99 | 4856 | if (c->klass->stay_at_node) { |
d0ac0380 KW |
4857 | return false; |
4858 | } | |
4859 | ||
ec9f10fe HR |
4860 | /* If the child @c belongs to the BDS @to, replacing the current |
4861 | * c->bs by @to would mean to create a loop. | |
4862 | * | |
4863 | * Such a case occurs when appending a BDS to a backing chain. | |
4864 | * For instance, imagine the following chain: | |
4865 | * | |
4866 | * guest device -> node A -> further backing chain... | |
4867 | * | |
4868 | * Now we create a new BDS B which we want to put on top of this | |
4869 | * chain, so we first attach A as its backing node: | |
4870 | * | |
4871 | * node B | |
4872 | * | | |
4873 | * v | |
4874 | * guest device -> node A -> further backing chain... | |
4875 | * | |
4876 | * Finally we want to replace A by B. When doing that, we want to | |
4877 | * replace all pointers to A by pointers to B -- except for the | |
4878 | * pointer from B because (1) that would create a loop, and (2) | |
4879 | * that pointer should simply stay intact: | |
4880 | * | |
4881 | * guest device -> node B | |
4882 | * | | |
4883 | * v | |
4884 | * node A -> further backing chain... | |
4885 | * | |
4886 | * In general, when replacing a node A (c->bs) by a node B (@to), | |
4887 | * if A is a child of B, that means we cannot replace A by B there | |
4888 | * because that would create a loop. Silently detaching A from B | |
4889 | * is also not really an option. So overall just leaving A in | |
2f30b7c3 VSO |
4890 | * place there is the most sensible choice. |
4891 | * | |
4892 | * We would also create a loop in any cases where @c is only | |
4893 | * indirectly referenced by @to. Prevent this by returning false | |
4894 | * if @c is found (by breadth-first search) anywhere in the whole | |
4895 | * subtree of @to. | |
4896 | */ | |
4897 | ||
4898 | ret = true; | |
4899 | found = g_hash_table_new(NULL, NULL); | |
4900 | g_hash_table_add(found, to); | |
4901 | queue = g_queue_new(); | |
4902 | g_queue_push_tail(queue, to); | |
4903 | ||
4904 | while (!g_queue_is_empty(queue)) { | |
4905 | BlockDriverState *v = g_queue_pop_head(queue); | |
4906 | BdrvChild *c2; | |
4907 | ||
4908 | QLIST_FOREACH(c2, &v->children, next) { | |
4909 | if (c2 == c) { | |
4910 | ret = false; | |
4911 | break; | |
4912 | } | |
4913 | ||
4914 | if (g_hash_table_contains(found, c2->bs)) { | |
4915 | continue; | |
4916 | } | |
4917 | ||
4918 | g_queue_push_tail(queue, c2->bs); | |
4919 | g_hash_table_add(found, c2->bs); | |
d0ac0380 KW |
4920 | } |
4921 | } | |
4922 | ||
2f30b7c3 VSO |
4923 | g_queue_free(queue); |
4924 | g_hash_table_destroy(found); | |
4925 | ||
4926 | return ret; | |
d0ac0380 KW |
4927 | } |
4928 | ||
46541ee5 VSO |
4929 | typedef struct BdrvRemoveFilterOrCowChild { |
4930 | BdrvChild *child; | |
82b54cf5 | 4931 | BlockDriverState *bs; |
46541ee5 VSO |
4932 | bool is_backing; |
4933 | } BdrvRemoveFilterOrCowChild; | |
4934 | ||
4935 | static void bdrv_remove_filter_or_cow_child_abort(void *opaque) | |
4936 | { | |
4937 | BdrvRemoveFilterOrCowChild *s = opaque; | |
4938 | BlockDriverState *parent_bs = s->child->opaque; | |
4939 | ||
46541ee5 VSO |
4940 | if (s->is_backing) { |
4941 | parent_bs->backing = s->child; | |
4942 | } else { | |
4943 | parent_bs->file = s->child; | |
4944 | } | |
4945 | ||
4946 | /* | |
4bf021db | 4947 | * We don't have to restore child->bs here to undo bdrv_replace_child_tran() |
46541ee5 VSO |
4948 | * because that function is transactionable and it registered own completion |
4949 | * entries in @tran, so .abort() for bdrv_replace_child_safe() will be | |
4950 | * called automatically. | |
4951 | */ | |
4952 | } | |
4953 | ||
4954 | static void bdrv_remove_filter_or_cow_child_commit(void *opaque) | |
4955 | { | |
4956 | BdrvRemoveFilterOrCowChild *s = opaque; | |
4957 | ||
4958 | bdrv_child_free(s->child); | |
4959 | } | |
4960 | ||
82b54cf5 HR |
4961 | static void bdrv_remove_filter_or_cow_child_clean(void *opaque) |
4962 | { | |
4963 | BdrvRemoveFilterOrCowChild *s = opaque; | |
4964 | ||
4965 | /* Drop the bs reference after the transaction is done */ | |
4966 | bdrv_unref(s->bs); | |
4967 | g_free(s); | |
4968 | } | |
4969 | ||
46541ee5 VSO |
4970 | static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = { |
4971 | .abort = bdrv_remove_filter_or_cow_child_abort, | |
4972 | .commit = bdrv_remove_filter_or_cow_child_commit, | |
82b54cf5 | 4973 | .clean = bdrv_remove_filter_or_cow_child_clean, |
46541ee5 VSO |
4974 | }; |
4975 | ||
4976 | /* | |
5b995019 | 4977 | * A function to remove backing or file child of @bs. |
7ec390d5 | 4978 | * Function doesn't update permissions, caller is responsible for this. |
46541ee5 | 4979 | */ |
5b995019 VSO |
4980 | static void bdrv_remove_file_or_backing_child(BlockDriverState *bs, |
4981 | BdrvChild *child, | |
4982 | Transaction *tran) | |
46541ee5 | 4983 | { |
562bda8b | 4984 | BdrvChild **childp; |
46541ee5 | 4985 | BdrvRemoveFilterOrCowChild *s; |
5b995019 | 4986 | |
46541ee5 VSO |
4987 | if (!child) { |
4988 | return; | |
4989 | } | |
4990 | ||
82b54cf5 HR |
4991 | /* |
4992 | * Keep a reference to @bs so @childp will stay valid throughout the | |
4993 | * transaction (required by bdrv_replace_child_tran()) | |
4994 | */ | |
4995 | bdrv_ref(bs); | |
562bda8b HR |
4996 | if (child == bs->backing) { |
4997 | childp = &bs->backing; | |
4998 | } else if (child == bs->file) { | |
4999 | childp = &bs->file; | |
5000 | } else { | |
5001 | g_assert_not_reached(); | |
5002 | } | |
5003 | ||
46541ee5 | 5004 | if (child->bs) { |
b0a9f6fe HR |
5005 | /* |
5006 | * Pass free_empty_child=false, we will free the child in | |
5007 | * bdrv_remove_filter_or_cow_child_commit() | |
5008 | */ | |
5009 | bdrv_replace_child_tran(childp, NULL, tran, false); | |
46541ee5 VSO |
5010 | } |
5011 | ||
5012 | s = g_new(BdrvRemoveFilterOrCowChild, 1); | |
5013 | *s = (BdrvRemoveFilterOrCowChild) { | |
5014 | .child = child, | |
82b54cf5 | 5015 | .bs = bs, |
562bda8b | 5016 | .is_backing = (childp == &bs->backing), |
46541ee5 VSO |
5017 | }; |
5018 | tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s); | |
46541ee5 VSO |
5019 | } |
5020 | ||
5b995019 VSO |
5021 | /* |
5022 | * A function to remove backing-chain child of @bs if exists: cow child for | |
5023 | * format nodes (always .backing) and filter child for filters (may be .file or | |
5024 | * .backing) | |
5025 | */ | |
5026 | static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs, | |
5027 | Transaction *tran) | |
5028 | { | |
5029 | bdrv_remove_file_or_backing_child(bs, bdrv_filter_or_cow_child(bs), tran); | |
5030 | } | |
5031 | ||
117caba9 VSO |
5032 | static int bdrv_replace_node_noperm(BlockDriverState *from, |
5033 | BlockDriverState *to, | |
5034 | bool auto_skip, Transaction *tran, | |
5035 | Error **errp) | |
5036 | { | |
5037 | BdrvChild *c, *next; | |
5038 | ||
82b54cf5 HR |
5039 | assert(to != NULL); |
5040 | ||
117caba9 VSO |
5041 | QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { |
5042 | assert(c->bs == from); | |
5043 | if (!should_update_child(c, to)) { | |
5044 | if (auto_skip) { | |
5045 | continue; | |
5046 | } | |
5047 | error_setg(errp, "Should not change '%s' link to '%s'", | |
5048 | c->name, from->node_name); | |
5049 | return -EINVAL; | |
5050 | } | |
5051 | if (c->frozen) { | |
5052 | error_setg(errp, "Cannot change '%s' link to '%s'", | |
5053 | c->name, from->node_name); | |
5054 | return -EPERM; | |
5055 | } | |
82b54cf5 HR |
5056 | |
5057 | /* | |
5058 | * Passing a pointer to the local variable @c is fine here, because | |
5059 | * @to is not NULL, and so &c will not be attached to the transaction. | |
5060 | */ | |
b0a9f6fe | 5061 | bdrv_replace_child_tran(&c, to, tran, true); |
117caba9 VSO |
5062 | } |
5063 | ||
5064 | return 0; | |
5065 | } | |
5066 | ||
313274bb VSO |
5067 | /* |
5068 | * With auto_skip=true bdrv_replace_node_common skips updating from parents | |
5069 | * if it creates a parent-child relation loop or if parent is block-job. | |
5070 | * | |
5071 | * With auto_skip=false the error is returned if from has a parent which should | |
5072 | * not be updated. | |
3108a15c VSO |
5073 | * |
5074 | * With @detach_subchain=true @to must be in a backing chain of @from. In this | |
5075 | * case backing link of the cow-parent of @to is removed. | |
82b54cf5 HR |
5076 | * |
5077 | * @to must not be NULL. | |
313274bb | 5078 | */ |
a1e708fc VSO |
5079 | static int bdrv_replace_node_common(BlockDriverState *from, |
5080 | BlockDriverState *to, | |
3108a15c VSO |
5081 | bool auto_skip, bool detach_subchain, |
5082 | Error **errp) | |
dd62f1ca | 5083 | { |
3bb0e298 VSO |
5084 | Transaction *tran = tran_new(); |
5085 | g_autoptr(GHashTable) found = NULL; | |
5086 | g_autoptr(GSList) refresh_list = NULL; | |
2d369d6e | 5087 | BlockDriverState *to_cow_parent = NULL; |
234ac1a9 KW |
5088 | int ret; |
5089 | ||
82b54cf5 HR |
5090 | assert(to != NULL); |
5091 | ||
3108a15c VSO |
5092 | if (detach_subchain) { |
5093 | assert(bdrv_chain_contains(from, to)); | |
5094 | assert(from != to); | |
5095 | for (to_cow_parent = from; | |
5096 | bdrv_filter_or_cow_bs(to_cow_parent) != to; | |
5097 | to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent)) | |
5098 | { | |
5099 | ; | |
5100 | } | |
5101 | } | |
5102 | ||
234ac1a9 KW |
5103 | /* Make sure that @from doesn't go away until we have successfully attached |
5104 | * all of its parents to @to. */ | |
5105 | bdrv_ref(from); | |
dd62f1ca | 5106 | |
f871abd6 | 5107 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
30dd65f3 | 5108 | assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to)); |
f871abd6 KW |
5109 | bdrv_drained_begin(from); |
5110 | ||
3bb0e298 VSO |
5111 | /* |
5112 | * Do the replacement without permission update. | |
5113 | * Replacement may influence the permissions, we should calculate new | |
5114 | * permissions based on new graph. If we fail, we'll roll-back the | |
5115 | * replacement. | |
5116 | */ | |
117caba9 VSO |
5117 | ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp); |
5118 | if (ret < 0) { | |
5119 | goto out; | |
234ac1a9 KW |
5120 | } |
5121 | ||
3108a15c VSO |
5122 | if (detach_subchain) { |
5123 | bdrv_remove_filter_or_cow_child(to_cow_parent, tran); | |
5124 | } | |
5125 | ||
3bb0e298 | 5126 | found = g_hash_table_new(NULL, NULL); |
234ac1a9 | 5127 | |
3bb0e298 VSO |
5128 | refresh_list = bdrv_topological_dfs(refresh_list, found, to); |
5129 | refresh_list = bdrv_topological_dfs(refresh_list, found, from); | |
9bd910e2 | 5130 | |
3bb0e298 VSO |
5131 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
5132 | if (ret < 0) { | |
5133 | goto out; | |
dd62f1ca | 5134 | } |
234ac1a9 | 5135 | |
a1e708fc VSO |
5136 | ret = 0; |
5137 | ||
234ac1a9 | 5138 | out: |
3bb0e298 VSO |
5139 | tran_finalize(tran, ret); |
5140 | ||
f871abd6 | 5141 | bdrv_drained_end(from); |
234ac1a9 | 5142 | bdrv_unref(from); |
a1e708fc VSO |
5143 | |
5144 | return ret; | |
dd62f1ca KW |
5145 | } |
5146 | ||
82b54cf5 HR |
5147 | /** |
5148 | * Replace node @from by @to (where neither may be NULL). | |
5149 | */ | |
a1e708fc VSO |
5150 | int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, |
5151 | Error **errp) | |
313274bb | 5152 | { |
3108a15c VSO |
5153 | return bdrv_replace_node_common(from, to, true, false, errp); |
5154 | } | |
5155 | ||
5156 | int bdrv_drop_filter(BlockDriverState *bs, Error **errp) | |
5157 | { | |
5158 | return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true, | |
5159 | errp); | |
313274bb VSO |
5160 | } |
5161 | ||
4ddc07ca PB |
5162 | /* |
5163 | * Add new bs contents at the top of an image chain while the chain is | |
5164 | * live, while keeping required fields on the top layer. | |
5165 | * | |
5166 | * This will modify the BlockDriverState fields, and swap contents | |
5167 | * between bs_new and bs_top. Both bs_new and bs_top are modified. | |
5168 | * | |
2272edcf VSO |
5169 | * bs_new must not be attached to a BlockBackend and must not have backing |
5170 | * child. | |
4ddc07ca PB |
5171 | * |
5172 | * This function does not create any image files. | |
5173 | */ | |
a1e708fc VSO |
5174 | int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, |
5175 | Error **errp) | |
4ddc07ca | 5176 | { |
2272edcf VSO |
5177 | int ret; |
5178 | Transaction *tran = tran_new(); | |
5179 | ||
5180 | assert(!bs_new->backing); | |
5181 | ||
5182 | ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing", | |
5183 | &child_of_bds, bdrv_backing_role(bs_new), | |
5184 | &bs_new->backing, tran, errp); | |
a1e708fc | 5185 | if (ret < 0) { |
2272edcf | 5186 | goto out; |
b2c2832c | 5187 | } |
dd62f1ca | 5188 | |
2272edcf | 5189 | ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp); |
a1e708fc | 5190 | if (ret < 0) { |
2272edcf | 5191 | goto out; |
234ac1a9 | 5192 | } |
4ddc07ca | 5193 | |
2272edcf VSO |
5194 | ret = bdrv_refresh_perms(bs_new, errp); |
5195 | out: | |
5196 | tran_finalize(tran, ret); | |
5197 | ||
1e4c797c | 5198 | bdrv_refresh_limits(bs_top, NULL, NULL); |
2272edcf VSO |
5199 | |
5200 | return ret; | |
8802d1fd JC |
5201 | } |
5202 | ||
bd8f4c42 VSO |
5203 | /* Not for empty child */ |
5204 | int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs, | |
5205 | Error **errp) | |
5206 | { | |
5207 | int ret; | |
5208 | Transaction *tran = tran_new(); | |
5209 | g_autoptr(GHashTable) found = NULL; | |
5210 | g_autoptr(GSList) refresh_list = NULL; | |
5211 | BlockDriverState *old_bs = child->bs; | |
5212 | ||
5213 | bdrv_ref(old_bs); | |
5214 | bdrv_drained_begin(old_bs); | |
5215 | bdrv_drained_begin(new_bs); | |
5216 | ||
b0a9f6fe HR |
5217 | bdrv_replace_child_tran(&child, new_bs, tran, true); |
5218 | /* @new_bs must have been non-NULL, so @child must not have been freed */ | |
5219 | assert(child != NULL); | |
bd8f4c42 VSO |
5220 | |
5221 | found = g_hash_table_new(NULL, NULL); | |
5222 | refresh_list = bdrv_topological_dfs(refresh_list, found, old_bs); | |
5223 | refresh_list = bdrv_topological_dfs(refresh_list, found, new_bs); | |
5224 | ||
5225 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); | |
5226 | ||
5227 | tran_finalize(tran, ret); | |
5228 | ||
5229 | bdrv_drained_end(old_bs); | |
5230 | bdrv_drained_end(new_bs); | |
5231 | bdrv_unref(old_bs); | |
5232 | ||
5233 | return ret; | |
5234 | } | |
5235 | ||
4f6fd349 | 5236 | static void bdrv_delete(BlockDriverState *bs) |
b338082b | 5237 | { |
3718d8ab | 5238 | assert(bdrv_op_blocker_is_empty(bs)); |
4f6fd349 | 5239 | assert(!bs->refcnt); |
18846dee | 5240 | |
1b7bdbc1 | 5241 | /* remove from list, if necessary */ |
63eaaae0 KW |
5242 | if (bs->node_name[0] != '\0') { |
5243 | QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); | |
5244 | } | |
2c1d04e0 HR |
5245 | QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); |
5246 | ||
30c321f9 AK |
5247 | bdrv_close(bs); |
5248 | ||
7267c094 | 5249 | g_free(bs); |
fc01f7e7 FB |
5250 | } |
5251 | ||
96796fae VSO |
5252 | |
5253 | /* | |
5254 | * Replace @bs by newly created block node. | |
5255 | * | |
5256 | * @options is a QDict of options to pass to the block drivers, or NULL for an | |
5257 | * empty set of options. The reference to the QDict belongs to the block layer | |
5258 | * after the call (even on failure), so if the caller intends to reuse the | |
5259 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. | |
5260 | */ | |
5261 | BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options, | |
8872ef78 AS |
5262 | int flags, Error **errp) |
5263 | { | |
f053b7e8 VSO |
5264 | ERRP_GUARD(); |
5265 | int ret; | |
b11c8739 VSO |
5266 | BlockDriverState *new_node_bs = NULL; |
5267 | const char *drvname, *node_name; | |
5268 | BlockDriver *drv; | |
5269 | ||
5270 | drvname = qdict_get_try_str(options, "driver"); | |
5271 | if (!drvname) { | |
5272 | error_setg(errp, "driver is not specified"); | |
5273 | goto fail; | |
5274 | } | |
5275 | ||
5276 | drv = bdrv_find_format(drvname); | |
5277 | if (!drv) { | |
5278 | error_setg(errp, "Unknown driver: '%s'", drvname); | |
5279 | goto fail; | |
5280 | } | |
8872ef78 | 5281 | |
b11c8739 VSO |
5282 | node_name = qdict_get_try_str(options, "node-name"); |
5283 | ||
5284 | new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags, | |
5285 | errp); | |
5286 | options = NULL; /* bdrv_new_open_driver() eats options */ | |
5287 | if (!new_node_bs) { | |
8872ef78 | 5288 | error_prepend(errp, "Could not create node: "); |
b11c8739 | 5289 | goto fail; |
8872ef78 AS |
5290 | } |
5291 | ||
5292 | bdrv_drained_begin(bs); | |
f053b7e8 | 5293 | ret = bdrv_replace_node(bs, new_node_bs, errp); |
8872ef78 AS |
5294 | bdrv_drained_end(bs); |
5295 | ||
f053b7e8 VSO |
5296 | if (ret < 0) { |
5297 | error_prepend(errp, "Could not replace node: "); | |
b11c8739 | 5298 | goto fail; |
8872ef78 AS |
5299 | } |
5300 | ||
5301 | return new_node_bs; | |
b11c8739 VSO |
5302 | |
5303 | fail: | |
5304 | qobject_unref(options); | |
5305 | bdrv_unref(new_node_bs); | |
5306 | return NULL; | |
8872ef78 AS |
5307 | } |
5308 | ||
e97fc193 AL |
5309 | /* |
5310 | * Run consistency checks on an image | |
5311 | * | |
e076f338 | 5312 | * Returns 0 if the check could be completed (it doesn't mean that the image is |
a1c7273b | 5313 | * free of errors) or -errno when an internal error occurred. The results of the |
e076f338 | 5314 | * check are stored in res. |
e97fc193 | 5315 | */ |
21c2283e VSO |
5316 | int coroutine_fn bdrv_co_check(BlockDriverState *bs, |
5317 | BdrvCheckResult *res, BdrvCheckMode fix) | |
e97fc193 | 5318 | { |
908bcd54 HR |
5319 | if (bs->drv == NULL) { |
5320 | return -ENOMEDIUM; | |
5321 | } | |
2fd61638 | 5322 | if (bs->drv->bdrv_co_check == NULL) { |
e97fc193 AL |
5323 | return -ENOTSUP; |
5324 | } | |
5325 | ||
e076f338 | 5326 | memset(res, 0, sizeof(*res)); |
2fd61638 PB |
5327 | return bs->drv->bdrv_co_check(bs, res, fix); |
5328 | } | |
5329 | ||
756e6736 KW |
5330 | /* |
5331 | * Return values: | |
5332 | * 0 - success | |
5333 | * -EINVAL - backing format specified, but no file | |
5334 | * -ENOSPC - can't update the backing file because no space is left in the | |
5335 | * image file header | |
5336 | * -ENOTSUP - format driver doesn't support changing the backing file | |
5337 | */ | |
e54ee1b3 | 5338 | int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file, |
497a30db | 5339 | const char *backing_fmt, bool require) |
756e6736 KW |
5340 | { |
5341 | BlockDriver *drv = bs->drv; | |
469ef350 | 5342 | int ret; |
756e6736 | 5343 | |
d470ad42 HR |
5344 | if (!drv) { |
5345 | return -ENOMEDIUM; | |
5346 | } | |
5347 | ||
5f377794 PB |
5348 | /* Backing file format doesn't make sense without a backing file */ |
5349 | if (backing_fmt && !backing_file) { | |
5350 | return -EINVAL; | |
5351 | } | |
5352 | ||
497a30db EB |
5353 | if (require && backing_file && !backing_fmt) { |
5354 | return -EINVAL; | |
e54ee1b3 EB |
5355 | } |
5356 | ||
756e6736 | 5357 | if (drv->bdrv_change_backing_file != NULL) { |
469ef350 | 5358 | ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); |
756e6736 | 5359 | } else { |
469ef350 | 5360 | ret = -ENOTSUP; |
756e6736 | 5361 | } |
469ef350 PB |
5362 | |
5363 | if (ret == 0) { | |
5364 | pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); | |
5365 | pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); | |
998c2019 HR |
5366 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
5367 | backing_file ?: ""); | |
469ef350 PB |
5368 | } |
5369 | return ret; | |
756e6736 KW |
5370 | } |
5371 | ||
6ebdcee2 | 5372 | /* |
dcf3f9b2 HR |
5373 | * Finds the first non-filter node above bs in the chain between |
5374 | * active and bs. The returned node is either an immediate parent of | |
5375 | * bs, or there are only filter nodes between the two. | |
6ebdcee2 JC |
5376 | * |
5377 | * Returns NULL if bs is not found in active's image chain, | |
5378 | * or if active == bs. | |
4caf0fcd JC |
5379 | * |
5380 | * Returns the bottommost base image if bs == NULL. | |
6ebdcee2 JC |
5381 | */ |
5382 | BlockDriverState *bdrv_find_overlay(BlockDriverState *active, | |
5383 | BlockDriverState *bs) | |
5384 | { | |
dcf3f9b2 HR |
5385 | bs = bdrv_skip_filters(bs); |
5386 | active = bdrv_skip_filters(active); | |
5387 | ||
5388 | while (active) { | |
5389 | BlockDriverState *next = bdrv_backing_chain_next(active); | |
5390 | if (bs == next) { | |
5391 | return active; | |
5392 | } | |
5393 | active = next; | |
6ebdcee2 JC |
5394 | } |
5395 | ||
dcf3f9b2 | 5396 | return NULL; |
4caf0fcd | 5397 | } |
6ebdcee2 | 5398 | |
4caf0fcd JC |
5399 | /* Given a BDS, searches for the base layer. */ |
5400 | BlockDriverState *bdrv_find_base(BlockDriverState *bs) | |
5401 | { | |
5402 | return bdrv_find_overlay(bs, NULL); | |
6ebdcee2 JC |
5403 | } |
5404 | ||
2cad1ebe | 5405 | /* |
7b99a266 HR |
5406 | * Return true if at least one of the COW (backing) and filter links |
5407 | * between @bs and @base is frozen. @errp is set if that's the case. | |
0f0998f6 | 5408 | * @base must be reachable from @bs, or NULL. |
2cad1ebe AG |
5409 | */ |
5410 | bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base, | |
5411 | Error **errp) | |
5412 | { | |
5413 | BlockDriverState *i; | |
7b99a266 | 5414 | BdrvChild *child; |
2cad1ebe | 5415 | |
7b99a266 HR |
5416 | for (i = bs; i != base; i = child_bs(child)) { |
5417 | child = bdrv_filter_or_cow_child(i); | |
5418 | ||
5419 | if (child && child->frozen) { | |
2cad1ebe | 5420 | error_setg(errp, "Cannot change '%s' link from '%s' to '%s'", |
7b99a266 | 5421 | child->name, i->node_name, child->bs->node_name); |
2cad1ebe AG |
5422 | return true; |
5423 | } | |
5424 | } | |
5425 | ||
5426 | return false; | |
5427 | } | |
5428 | ||
5429 | /* | |
7b99a266 | 5430 | * Freeze all COW (backing) and filter links between @bs and @base. |
2cad1ebe AG |
5431 | * If any of the links is already frozen the operation is aborted and |
5432 | * none of the links are modified. | |
0f0998f6 | 5433 | * @base must be reachable from @bs, or NULL. |
2cad1ebe AG |
5434 | * Returns 0 on success. On failure returns < 0 and sets @errp. |
5435 | */ | |
5436 | int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base, | |
5437 | Error **errp) | |
5438 | { | |
5439 | BlockDriverState *i; | |
7b99a266 | 5440 | BdrvChild *child; |
2cad1ebe AG |
5441 | |
5442 | if (bdrv_is_backing_chain_frozen(bs, base, errp)) { | |
5443 | return -EPERM; | |
5444 | } | |
5445 | ||
7b99a266 HR |
5446 | for (i = bs; i != base; i = child_bs(child)) { |
5447 | child = bdrv_filter_or_cow_child(i); | |
5448 | if (child && child->bs->never_freeze) { | |
e5182c1c | 5449 | error_setg(errp, "Cannot freeze '%s' link to '%s'", |
7b99a266 | 5450 | child->name, child->bs->node_name); |
e5182c1c HR |
5451 | return -EPERM; |
5452 | } | |
5453 | } | |
5454 | ||
7b99a266 HR |
5455 | for (i = bs; i != base; i = child_bs(child)) { |
5456 | child = bdrv_filter_or_cow_child(i); | |
5457 | if (child) { | |
5458 | child->frozen = true; | |
0f0998f6 | 5459 | } |
2cad1ebe AG |
5460 | } |
5461 | ||
5462 | return 0; | |
5463 | } | |
5464 | ||
5465 | /* | |
7b99a266 HR |
5466 | * Unfreeze all COW (backing) and filter links between @bs and @base. |
5467 | * The caller must ensure that all links are frozen before using this | |
5468 | * function. | |
0f0998f6 | 5469 | * @base must be reachable from @bs, or NULL. |
2cad1ebe AG |
5470 | */ |
5471 | void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base) | |
5472 | { | |
5473 | BlockDriverState *i; | |
7b99a266 | 5474 | BdrvChild *child; |
2cad1ebe | 5475 | |
7b99a266 HR |
5476 | for (i = bs; i != base; i = child_bs(child)) { |
5477 | child = bdrv_filter_or_cow_child(i); | |
5478 | if (child) { | |
5479 | assert(child->frozen); | |
5480 | child->frozen = false; | |
0f0998f6 | 5481 | } |
2cad1ebe AG |
5482 | } |
5483 | } | |
5484 | ||
6ebdcee2 JC |
5485 | /* |
5486 | * Drops images above 'base' up to and including 'top', and sets the image | |
5487 | * above 'top' to have base as its backing file. | |
5488 | * | |
5489 | * Requires that the overlay to 'top' is opened r/w, so that the backing file | |
5490 | * information in 'bs' can be properly updated. | |
5491 | * | |
5492 | * E.g., this will convert the following chain: | |
5493 | * bottom <- base <- intermediate <- top <- active | |
5494 | * | |
5495 | * to | |
5496 | * | |
5497 | * bottom <- base <- active | |
5498 | * | |
5499 | * It is allowed for bottom==base, in which case it converts: | |
5500 | * | |
5501 | * base <- intermediate <- top <- active | |
5502 | * | |
5503 | * to | |
5504 | * | |
5505 | * base <- active | |
5506 | * | |
54e26900 JC |
5507 | * If backing_file_str is non-NULL, it will be used when modifying top's |
5508 | * overlay image metadata. | |
5509 | * | |
6ebdcee2 JC |
5510 | * Error conditions: |
5511 | * if active == top, that is considered an error | |
5512 | * | |
5513 | */ | |
bde70715 KW |
5514 | int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, |
5515 | const char *backing_file_str) | |
6ebdcee2 | 5516 | { |
6bd858b3 AG |
5517 | BlockDriverState *explicit_top = top; |
5518 | bool update_inherits_from; | |
d669ed6a | 5519 | BdrvChild *c; |
12fa4af6 | 5520 | Error *local_err = NULL; |
6ebdcee2 | 5521 | int ret = -EIO; |
d669ed6a VSO |
5522 | g_autoptr(GSList) updated_children = NULL; |
5523 | GSList *p; | |
6ebdcee2 | 5524 | |
6858eba0 | 5525 | bdrv_ref(top); |
637d54a5 | 5526 | bdrv_subtree_drained_begin(top); |
6858eba0 | 5527 | |
6ebdcee2 JC |
5528 | if (!top->drv || !base->drv) { |
5529 | goto exit; | |
5530 | } | |
5531 | ||
5db15a57 KW |
5532 | /* Make sure that base is in the backing chain of top */ |
5533 | if (!bdrv_chain_contains(top, base)) { | |
6ebdcee2 JC |
5534 | goto exit; |
5535 | } | |
5536 | ||
6bd858b3 AG |
5537 | /* If 'base' recursively inherits from 'top' then we should set |
5538 | * base->inherits_from to top->inherits_from after 'top' and all | |
5539 | * other intermediate nodes have been dropped. | |
5540 | * If 'top' is an implicit node (e.g. "commit_top") we should skip | |
5541 | * it because no one inherits from it. We use explicit_top for that. */ | |
dcf3f9b2 | 5542 | explicit_top = bdrv_skip_implicit_filters(explicit_top); |
6bd858b3 AG |
5543 | update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top); |
5544 | ||
6ebdcee2 | 5545 | /* success - we can delete the intermediate states, and link top->base */ |
f30c66ba HR |
5546 | if (!backing_file_str) { |
5547 | bdrv_refresh_filename(base); | |
5548 | backing_file_str = base->filename; | |
5549 | } | |
61f09cea | 5550 | |
d669ed6a VSO |
5551 | QLIST_FOREACH(c, &top->parents, next_parent) { |
5552 | updated_children = g_slist_prepend(updated_children, c); | |
5553 | } | |
5554 | ||
3108a15c VSO |
5555 | /* |
5556 | * It seems correct to pass detach_subchain=true here, but it triggers | |
5557 | * one more yet not fixed bug, when due to nested aio_poll loop we switch to | |
5558 | * another drained section, which modify the graph (for example, removing | |
5559 | * the child, which we keep in updated_children list). So, it's a TODO. | |
5560 | * | |
5561 | * Note, bug triggered if pass detach_subchain=true here and run | |
5562 | * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash. | |
5563 | * That's a FIXME. | |
5564 | */ | |
5565 | bdrv_replace_node_common(top, base, false, false, &local_err); | |
d669ed6a VSO |
5566 | if (local_err) { |
5567 | error_report_err(local_err); | |
5568 | goto exit; | |
5569 | } | |
5570 | ||
5571 | for (p = updated_children; p; p = p->next) { | |
5572 | c = p->data; | |
12fa4af6 | 5573 | |
bd86fb99 HR |
5574 | if (c->klass->update_filename) { |
5575 | ret = c->klass->update_filename(c, base, backing_file_str, | |
5576 | &local_err); | |
61f09cea | 5577 | if (ret < 0) { |
d669ed6a VSO |
5578 | /* |
5579 | * TODO: Actually, we want to rollback all previous iterations | |
5580 | * of this loop, and (which is almost impossible) previous | |
5581 | * bdrv_replace_node()... | |
5582 | * | |
5583 | * Note, that c->klass->update_filename may lead to permission | |
5584 | * update, so it's a bad idea to call it inside permission | |
5585 | * update transaction of bdrv_replace_node. | |
5586 | */ | |
61f09cea KW |
5587 | error_report_err(local_err); |
5588 | goto exit; | |
5589 | } | |
5590 | } | |
12fa4af6 | 5591 | } |
6ebdcee2 | 5592 | |
6bd858b3 AG |
5593 | if (update_inherits_from) { |
5594 | base->inherits_from = explicit_top->inherits_from; | |
5595 | } | |
5596 | ||
6ebdcee2 | 5597 | ret = 0; |
6ebdcee2 | 5598 | exit: |
637d54a5 | 5599 | bdrv_subtree_drained_end(top); |
6858eba0 | 5600 | bdrv_unref(top); |
6ebdcee2 JC |
5601 | return ret; |
5602 | } | |
5603 | ||
081e4650 HR |
5604 | /** |
5605 | * Implementation of BlockDriver.bdrv_get_allocated_file_size() that | |
5606 | * sums the size of all data-bearing children. (This excludes backing | |
5607 | * children.) | |
5608 | */ | |
5609 | static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs) | |
5610 | { | |
5611 | BdrvChild *child; | |
5612 | int64_t child_size, sum = 0; | |
5613 | ||
5614 | QLIST_FOREACH(child, &bs->children, next) { | |
5615 | if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | | |
5616 | BDRV_CHILD_FILTERED)) | |
5617 | { | |
5618 | child_size = bdrv_get_allocated_file_size(child->bs); | |
5619 | if (child_size < 0) { | |
5620 | return child_size; | |
5621 | } | |
5622 | sum += child_size; | |
5623 | } | |
5624 | } | |
5625 | ||
5626 | return sum; | |
5627 | } | |
5628 | ||
61007b31 SH |
5629 | /** |
5630 | * Length of a allocated file in bytes. Sparse files are counted by actual | |
5631 | * allocated space. Return < 0 if error or unknown. | |
5632 | */ | |
5633 | int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) | |
71d0770c | 5634 | { |
61007b31 SH |
5635 | BlockDriver *drv = bs->drv; |
5636 | if (!drv) { | |
5637 | return -ENOMEDIUM; | |
8f4754ed | 5638 | } |
61007b31 SH |
5639 | if (drv->bdrv_get_allocated_file_size) { |
5640 | return drv->bdrv_get_allocated_file_size(bs); | |
5641 | } | |
081e4650 HR |
5642 | |
5643 | if (drv->bdrv_file_open) { | |
5644 | /* | |
5645 | * Protocol drivers default to -ENOTSUP (most of their data is | |
5646 | * not stored in any of their children (if they even have any), | |
5647 | * so there is no generic way to figure it out). | |
5648 | */ | |
5649 | return -ENOTSUP; | |
5650 | } else if (drv->is_filter) { | |
5651 | /* Filter drivers default to the size of their filtered child */ | |
5652 | return bdrv_get_allocated_file_size(bdrv_filter_bs(bs)); | |
5653 | } else { | |
5654 | /* Other drivers default to summing their children's sizes */ | |
5655 | return bdrv_sum_allocated_file_size(bs); | |
1c9805a3 SH |
5656 | } |
5657 | } | |
e7a8a783 | 5658 | |
90880ff1 SH |
5659 | /* |
5660 | * bdrv_measure: | |
5661 | * @drv: Format driver | |
5662 | * @opts: Creation options for new image | |
5663 | * @in_bs: Existing image containing data for new image (may be NULL) | |
5664 | * @errp: Error object | |
5665 | * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) | |
5666 | * or NULL on error | |
5667 | * | |
5668 | * Calculate file size required to create a new image. | |
5669 | * | |
5670 | * If @in_bs is given then space for allocated clusters and zero clusters | |
5671 | * from that image are included in the calculation. If @opts contains a | |
5672 | * backing file that is shared by @in_bs then backing clusters may be omitted | |
5673 | * from the calculation. | |
5674 | * | |
5675 | * If @in_bs is NULL then the calculation includes no allocated clusters | |
5676 | * unless a preallocation option is given in @opts. | |
5677 | * | |
5678 | * Note that @in_bs may use a different BlockDriver from @drv. | |
5679 | * | |
5680 | * If an error occurs the @errp pointer is set. | |
5681 | */ | |
5682 | BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, | |
5683 | BlockDriverState *in_bs, Error **errp) | |
5684 | { | |
5685 | if (!drv->bdrv_measure) { | |
5686 | error_setg(errp, "Block driver '%s' does not support size measurement", | |
5687 | drv->format_name); | |
5688 | return NULL; | |
5689 | } | |
5690 | ||
5691 | return drv->bdrv_measure(opts, in_bs, errp); | |
5692 | } | |
5693 | ||
61007b31 SH |
5694 | /** |
5695 | * Return number of sectors on success, -errno on error. | |
1c9805a3 | 5696 | */ |
61007b31 | 5697 | int64_t bdrv_nb_sectors(BlockDriverState *bs) |
1c9805a3 | 5698 | { |
61007b31 | 5699 | BlockDriver *drv = bs->drv; |
498e386c | 5700 | |
61007b31 SH |
5701 | if (!drv) |
5702 | return -ENOMEDIUM; | |
2572b37a | 5703 | |
61007b31 SH |
5704 | if (drv->has_variable_length) { |
5705 | int ret = refresh_total_sectors(bs, bs->total_sectors); | |
5706 | if (ret < 0) { | |
5707 | return ret; | |
1c9805a3 SH |
5708 | } |
5709 | } | |
61007b31 | 5710 | return bs->total_sectors; |
1c9805a3 | 5711 | } |
b338082b | 5712 | |
61007b31 SH |
5713 | /** |
5714 | * Return length in bytes on success, -errno on error. | |
5715 | * The length is always a multiple of BDRV_SECTOR_SIZE. | |
8d3b1a2d | 5716 | */ |
61007b31 | 5717 | int64_t bdrv_getlength(BlockDriverState *bs) |
8d3b1a2d | 5718 | { |
61007b31 | 5719 | int64_t ret = bdrv_nb_sectors(bs); |
8d3b1a2d | 5720 | |
122860ba EB |
5721 | if (ret < 0) { |
5722 | return ret; | |
5723 | } | |
5724 | if (ret > INT64_MAX / BDRV_SECTOR_SIZE) { | |
5725 | return -EFBIG; | |
5726 | } | |
5727 | return ret * BDRV_SECTOR_SIZE; | |
fc01f7e7 FB |
5728 | } |
5729 | ||
61007b31 SH |
5730 | /* return 0 as number of sectors if no device present or error */ |
5731 | void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) | |
07d27a44 | 5732 | { |
61007b31 | 5733 | int64_t nb_sectors = bdrv_nb_sectors(bs); |
07d27a44 | 5734 | |
61007b31 | 5735 | *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; |
07d27a44 MA |
5736 | } |
5737 | ||
54115412 | 5738 | bool bdrv_is_sg(BlockDriverState *bs) |
f08145fe | 5739 | { |
61007b31 | 5740 | return bs->sg; |
f08145fe KW |
5741 | } |
5742 | ||
ae23f786 HR |
5743 | /** |
5744 | * Return whether the given node supports compressed writes. | |
5745 | */ | |
5746 | bool bdrv_supports_compressed_writes(BlockDriverState *bs) | |
5747 | { | |
5748 | BlockDriverState *filtered; | |
5749 | ||
5750 | if (!bs->drv || !block_driver_can_compress(bs->drv)) { | |
5751 | return false; | |
5752 | } | |
5753 | ||
5754 | filtered = bdrv_filter_bs(bs); | |
5755 | if (filtered) { | |
5756 | /* | |
5757 | * Filters can only forward compressed writes, so we have to | |
5758 | * check the child. | |
5759 | */ | |
5760 | return bdrv_supports_compressed_writes(filtered); | |
5761 | } | |
5762 | ||
5763 | return true; | |
5764 | } | |
5765 | ||
61007b31 | 5766 | const char *bdrv_get_format_name(BlockDriverState *bs) |
40b4f539 | 5767 | { |
61007b31 | 5768 | return bs->drv ? bs->drv->format_name : NULL; |
40b4f539 KW |
5769 | } |
5770 | ||
61007b31 | 5771 | static int qsort_strcmp(const void *a, const void *b) |
40b4f539 | 5772 | { |
ceff5bd7 | 5773 | return strcmp(*(char *const *)a, *(char *const *)b); |
40b4f539 KW |
5774 | } |
5775 | ||
61007b31 | 5776 | void bdrv_iterate_format(void (*it)(void *opaque, const char *name), |
9ac404c5 | 5777 | void *opaque, bool read_only) |
40b4f539 | 5778 | { |
61007b31 SH |
5779 | BlockDriver *drv; |
5780 | int count = 0; | |
5781 | int i; | |
5782 | const char **formats = NULL; | |
40b4f539 | 5783 | |
61007b31 SH |
5784 | QLIST_FOREACH(drv, &bdrv_drivers, list) { |
5785 | if (drv->format_name) { | |
5786 | bool found = false; | |
5787 | int i = count; | |
9ac404c5 AS |
5788 | |
5789 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) { | |
5790 | continue; | |
5791 | } | |
5792 | ||
61007b31 SH |
5793 | while (formats && i && !found) { |
5794 | found = !strcmp(formats[--i], drv->format_name); | |
5795 | } | |
e2a305fb | 5796 | |
61007b31 SH |
5797 | if (!found) { |
5798 | formats = g_renew(const char *, formats, count + 1); | |
5799 | formats[count++] = drv->format_name; | |
5800 | } | |
6c5a42ac | 5801 | } |
61007b31 | 5802 | } |
6c5a42ac | 5803 | |
eb0df69f HR |
5804 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { |
5805 | const char *format_name = block_driver_modules[i].format_name; | |
5806 | ||
5807 | if (format_name) { | |
5808 | bool found = false; | |
5809 | int j = count; | |
5810 | ||
9ac404c5 AS |
5811 | if (use_bdrv_whitelist && |
5812 | !bdrv_format_is_whitelisted(format_name, read_only)) { | |
5813 | continue; | |
5814 | } | |
5815 | ||
eb0df69f HR |
5816 | while (formats && j && !found) { |
5817 | found = !strcmp(formats[--j], format_name); | |
5818 | } | |
5819 | ||
5820 | if (!found) { | |
5821 | formats = g_renew(const char *, formats, count + 1); | |
5822 | formats[count++] = format_name; | |
5823 | } | |
5824 | } | |
5825 | } | |
5826 | ||
61007b31 | 5827 | qsort(formats, count, sizeof(formats[0]), qsort_strcmp); |
40b4f539 | 5828 | |
61007b31 SH |
5829 | for (i = 0; i < count; i++) { |
5830 | it(opaque, formats[i]); | |
5831 | } | |
40b4f539 | 5832 | |
61007b31 SH |
5833 | g_free(formats); |
5834 | } | |
40b4f539 | 5835 | |
61007b31 SH |
5836 | /* This function is to find a node in the bs graph */ |
5837 | BlockDriverState *bdrv_find_node(const char *node_name) | |
5838 | { | |
5839 | BlockDriverState *bs; | |
391827eb | 5840 | |
61007b31 | 5841 | assert(node_name); |
40b4f539 | 5842 | |
61007b31 SH |
5843 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
5844 | if (!strcmp(node_name, bs->node_name)) { | |
5845 | return bs; | |
40b4f539 KW |
5846 | } |
5847 | } | |
61007b31 | 5848 | return NULL; |
40b4f539 KW |
5849 | } |
5850 | ||
61007b31 | 5851 | /* Put this QMP function here so it can access the static graph_bdrv_states. */ |
facda544 PK |
5852 | BlockDeviceInfoList *bdrv_named_nodes_list(bool flat, |
5853 | Error **errp) | |
40b4f539 | 5854 | { |
9812e712 | 5855 | BlockDeviceInfoList *list; |
61007b31 | 5856 | BlockDriverState *bs; |
40b4f539 | 5857 | |
61007b31 SH |
5858 | list = NULL; |
5859 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { | |
facda544 | 5860 | BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp); |
61007b31 SH |
5861 | if (!info) { |
5862 | qapi_free_BlockDeviceInfoList(list); | |
5863 | return NULL; | |
301db7c2 | 5864 | } |
9812e712 | 5865 | QAPI_LIST_PREPEND(list, info); |
301db7c2 RH |
5866 | } |
5867 | ||
61007b31 SH |
5868 | return list; |
5869 | } | |
40b4f539 | 5870 | |
5d3b4e99 VSO |
5871 | typedef struct XDbgBlockGraphConstructor { |
5872 | XDbgBlockGraph *graph; | |
5873 | GHashTable *graph_nodes; | |
5874 | } XDbgBlockGraphConstructor; | |
5875 | ||
5876 | static XDbgBlockGraphConstructor *xdbg_graph_new(void) | |
5877 | { | |
5878 | XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1); | |
5879 | ||
5880 | gr->graph = g_new0(XDbgBlockGraph, 1); | |
5881 | gr->graph_nodes = g_hash_table_new(NULL, NULL); | |
5882 | ||
5883 | return gr; | |
5884 | } | |
5885 | ||
5886 | static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr) | |
5887 | { | |
5888 | XDbgBlockGraph *graph = gr->graph; | |
5889 | ||
5890 | g_hash_table_destroy(gr->graph_nodes); | |
5891 | g_free(gr); | |
5892 | ||
5893 | return graph; | |
5894 | } | |
5895 | ||
5896 | static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node) | |
5897 | { | |
5898 | uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node); | |
5899 | ||
5900 | if (ret != 0) { | |
5901 | return ret; | |
5902 | } | |
5903 | ||
5904 | /* | |
5905 | * Start counting from 1, not 0, because 0 interferes with not-found (NULL) | |
5906 | * answer of g_hash_table_lookup. | |
5907 | */ | |
5908 | ret = g_hash_table_size(gr->graph_nodes) + 1; | |
5909 | g_hash_table_insert(gr->graph_nodes, node, (void *)ret); | |
5910 | ||
5911 | return ret; | |
5912 | } | |
5913 | ||
5914 | static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node, | |
5915 | XDbgBlockGraphNodeType type, const char *name) | |
5916 | { | |
5917 | XDbgBlockGraphNode *n; | |
5918 | ||
5919 | n = g_new0(XDbgBlockGraphNode, 1); | |
5920 | ||
5921 | n->id = xdbg_graph_node_num(gr, node); | |
5922 | n->type = type; | |
5923 | n->name = g_strdup(name); | |
5924 | ||
9812e712 | 5925 | QAPI_LIST_PREPEND(gr->graph->nodes, n); |
5d3b4e99 VSO |
5926 | } |
5927 | ||
5928 | static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent, | |
5929 | const BdrvChild *child) | |
5930 | { | |
cdb1cec8 | 5931 | BlockPermission qapi_perm; |
5d3b4e99 VSO |
5932 | XDbgBlockGraphEdge *edge; |
5933 | ||
5d3b4e99 VSO |
5934 | edge = g_new0(XDbgBlockGraphEdge, 1); |
5935 | ||
5936 | edge->parent = xdbg_graph_node_num(gr, parent); | |
5937 | edge->child = xdbg_graph_node_num(gr, child->bs); | |
5938 | edge->name = g_strdup(child->name); | |
5939 | ||
cdb1cec8 HR |
5940 | for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) { |
5941 | uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm); | |
5942 | ||
5943 | if (flag & child->perm) { | |
9812e712 | 5944 | QAPI_LIST_PREPEND(edge->perm, qapi_perm); |
5d3b4e99 | 5945 | } |
cdb1cec8 | 5946 | if (flag & child->shared_perm) { |
9812e712 | 5947 | QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm); |
5d3b4e99 VSO |
5948 | } |
5949 | } | |
5950 | ||
9812e712 | 5951 | QAPI_LIST_PREPEND(gr->graph->edges, edge); |
5d3b4e99 VSO |
5952 | } |
5953 | ||
5954 | ||
5955 | XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp) | |
5956 | { | |
5957 | BlockBackend *blk; | |
5958 | BlockJob *job; | |
5959 | BlockDriverState *bs; | |
5960 | BdrvChild *child; | |
5961 | XDbgBlockGraphConstructor *gr = xdbg_graph_new(); | |
5962 | ||
5963 | for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) { | |
5964 | char *allocated_name = NULL; | |
5965 | const char *name = blk_name(blk); | |
5966 | ||
5967 | if (!*name) { | |
5968 | name = allocated_name = blk_get_attached_dev_id(blk); | |
5969 | } | |
5970 | xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND, | |
5971 | name); | |
5972 | g_free(allocated_name); | |
5973 | if (blk_root(blk)) { | |
5974 | xdbg_graph_add_edge(gr, blk, blk_root(blk)); | |
5975 | } | |
5976 | } | |
5977 | ||
5978 | for (job = block_job_next(NULL); job; job = block_job_next(job)) { | |
5979 | GSList *el; | |
5980 | ||
5981 | xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB, | |
5982 | job->job.id); | |
5983 | for (el = job->nodes; el; el = el->next) { | |
5984 | xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data); | |
5985 | } | |
5986 | } | |
5987 | ||
5988 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { | |
5989 | xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER, | |
5990 | bs->node_name); | |
5991 | QLIST_FOREACH(child, &bs->children, next) { | |
5992 | xdbg_graph_add_edge(gr, bs, child); | |
5993 | } | |
5994 | } | |
5995 | ||
5996 | return xdbg_graph_finalize(gr); | |
5997 | } | |
5998 | ||
61007b31 SH |
5999 | BlockDriverState *bdrv_lookup_bs(const char *device, |
6000 | const char *node_name, | |
6001 | Error **errp) | |
6002 | { | |
6003 | BlockBackend *blk; | |
6004 | BlockDriverState *bs; | |
40b4f539 | 6005 | |
61007b31 SH |
6006 | if (device) { |
6007 | blk = blk_by_name(device); | |
40b4f539 | 6008 | |
61007b31 | 6009 | if (blk) { |
9f4ed6fb AG |
6010 | bs = blk_bs(blk); |
6011 | if (!bs) { | |
5433c24f | 6012 | error_setg(errp, "Device '%s' has no medium", device); |
5433c24f HR |
6013 | } |
6014 | ||
9f4ed6fb | 6015 | return bs; |
61007b31 SH |
6016 | } |
6017 | } | |
40b4f539 | 6018 | |
61007b31 SH |
6019 | if (node_name) { |
6020 | bs = bdrv_find_node(node_name); | |
6d519a5f | 6021 | |
61007b31 SH |
6022 | if (bs) { |
6023 | return bs; | |
6024 | } | |
40b4f539 KW |
6025 | } |
6026 | ||
785ec4b1 | 6027 | error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'", |
61007b31 SH |
6028 | device ? device : "", |
6029 | node_name ? node_name : ""); | |
6030 | return NULL; | |
40b4f539 KW |
6031 | } |
6032 | ||
61007b31 SH |
6033 | /* If 'base' is in the same chain as 'top', return true. Otherwise, |
6034 | * return false. If either argument is NULL, return false. */ | |
6035 | bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) | |
83f64091 | 6036 | { |
61007b31 | 6037 | while (top && top != base) { |
dcf3f9b2 | 6038 | top = bdrv_filter_or_cow_bs(top); |
02c50efe | 6039 | } |
61007b31 SH |
6040 | |
6041 | return top != NULL; | |
02c50efe FZ |
6042 | } |
6043 | ||
61007b31 | 6044 | BlockDriverState *bdrv_next_node(BlockDriverState *bs) |
02c50efe | 6045 | { |
61007b31 SH |
6046 | if (!bs) { |
6047 | return QTAILQ_FIRST(&graph_bdrv_states); | |
02c50efe | 6048 | } |
61007b31 | 6049 | return QTAILQ_NEXT(bs, node_list); |
83f64091 FB |
6050 | } |
6051 | ||
0f12264e KW |
6052 | BlockDriverState *bdrv_next_all_states(BlockDriverState *bs) |
6053 | { | |
6054 | if (!bs) { | |
6055 | return QTAILQ_FIRST(&all_bdrv_states); | |
6056 | } | |
6057 | return QTAILQ_NEXT(bs, bs_list); | |
6058 | } | |
6059 | ||
61007b31 | 6060 | const char *bdrv_get_node_name(const BlockDriverState *bs) |
83f64091 | 6061 | { |
61007b31 | 6062 | return bs->node_name; |
beac80cd FB |
6063 | } |
6064 | ||
1f0c461b | 6065 | const char *bdrv_get_parent_name(const BlockDriverState *bs) |
4c265bf9 KW |
6066 | { |
6067 | BdrvChild *c; | |
6068 | const char *name; | |
6069 | ||
6070 | /* If multiple parents have a name, just pick the first one. */ | |
6071 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
bd86fb99 HR |
6072 | if (c->klass->get_name) { |
6073 | name = c->klass->get_name(c); | |
4c265bf9 KW |
6074 | if (name && *name) { |
6075 | return name; | |
6076 | } | |
6077 | } | |
6078 | } | |
6079 | ||
6080 | return NULL; | |
6081 | } | |
6082 | ||
61007b31 SH |
6083 | /* TODO check what callers really want: bs->node_name or blk_name() */ |
6084 | const char *bdrv_get_device_name(const BlockDriverState *bs) | |
beac80cd | 6085 | { |
4c265bf9 | 6086 | return bdrv_get_parent_name(bs) ?: ""; |
f141eafe | 6087 | } |
83f64091 | 6088 | |
61007b31 SH |
6089 | /* This can be used to identify nodes that might not have a device |
6090 | * name associated. Since node and device names live in the same | |
6091 | * namespace, the result is unambiguous. The exception is if both are | |
6092 | * absent, then this returns an empty (non-null) string. */ | |
6093 | const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) | |
f141eafe | 6094 | { |
4c265bf9 | 6095 | return bdrv_get_parent_name(bs) ?: bs->node_name; |
beac80cd | 6096 | } |
beac80cd | 6097 | |
61007b31 | 6098 | int bdrv_get_flags(BlockDriverState *bs) |
0b5a2445 | 6099 | { |
61007b31 | 6100 | return bs->open_flags; |
0b5a2445 PB |
6101 | } |
6102 | ||
61007b31 | 6103 | int bdrv_has_zero_init_1(BlockDriverState *bs) |
68485420 | 6104 | { |
61007b31 | 6105 | return 1; |
0b5a2445 PB |
6106 | } |
6107 | ||
61007b31 | 6108 | int bdrv_has_zero_init(BlockDriverState *bs) |
0b5a2445 | 6109 | { |
93393e69 HR |
6110 | BlockDriverState *filtered; |
6111 | ||
d470ad42 HR |
6112 | if (!bs->drv) { |
6113 | return 0; | |
6114 | } | |
0b5a2445 | 6115 | |
61007b31 SH |
6116 | /* If BS is a copy on write image, it is initialized to |
6117 | the contents of the base image, which may not be zeroes. */ | |
34778172 | 6118 | if (bdrv_cow_child(bs)) { |
61007b31 SH |
6119 | return 0; |
6120 | } | |
6121 | if (bs->drv->bdrv_has_zero_init) { | |
6122 | return bs->drv->bdrv_has_zero_init(bs); | |
0b5a2445 | 6123 | } |
93393e69 HR |
6124 | |
6125 | filtered = bdrv_filter_bs(bs); | |
6126 | if (filtered) { | |
6127 | return bdrv_has_zero_init(filtered); | |
5a612c00 | 6128 | } |
61007b31 SH |
6129 | |
6130 | /* safe default */ | |
6131 | return 0; | |
68485420 KW |
6132 | } |
6133 | ||
61007b31 | 6134 | bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) |
68485420 | 6135 | { |
2f0342ef | 6136 | if (!(bs->open_flags & BDRV_O_UNMAP)) { |
61007b31 SH |
6137 | return false; |
6138 | } | |
68485420 | 6139 | |
e24d813b | 6140 | return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; |
68485420 KW |
6141 | } |
6142 | ||
61007b31 SH |
6143 | void bdrv_get_backing_filename(BlockDriverState *bs, |
6144 | char *filename, int filename_size) | |
016f5cf6 | 6145 | { |
61007b31 SH |
6146 | pstrcpy(filename, filename_size, bs->backing_file); |
6147 | } | |
d318aea9 | 6148 | |
61007b31 SH |
6149 | int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
6150 | { | |
8b117001 | 6151 | int ret; |
61007b31 | 6152 | BlockDriver *drv = bs->drv; |
5a612c00 MP |
6153 | /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ |
6154 | if (!drv) { | |
61007b31 | 6155 | return -ENOMEDIUM; |
5a612c00 MP |
6156 | } |
6157 | if (!drv->bdrv_get_info) { | |
93393e69 HR |
6158 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
6159 | if (filtered) { | |
6160 | return bdrv_get_info(filtered, bdi); | |
5a612c00 | 6161 | } |
61007b31 | 6162 | return -ENOTSUP; |
5a612c00 | 6163 | } |
61007b31 | 6164 | memset(bdi, 0, sizeof(*bdi)); |
8b117001 VSO |
6165 | ret = drv->bdrv_get_info(bs, bdi); |
6166 | if (ret < 0) { | |
6167 | return ret; | |
6168 | } | |
6169 | ||
6170 | if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) { | |
6171 | return -EINVAL; | |
6172 | } | |
6173 | ||
6174 | return 0; | |
61007b31 | 6175 | } |
016f5cf6 | 6176 | |
1bf6e9ca AS |
6177 | ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs, |
6178 | Error **errp) | |
61007b31 SH |
6179 | { |
6180 | BlockDriver *drv = bs->drv; | |
6181 | if (drv && drv->bdrv_get_specific_info) { | |
1bf6e9ca | 6182 | return drv->bdrv_get_specific_info(bs, errp); |
61007b31 SH |
6183 | } |
6184 | return NULL; | |
016f5cf6 AG |
6185 | } |
6186 | ||
d9245599 AN |
6187 | BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs) |
6188 | { | |
6189 | BlockDriver *drv = bs->drv; | |
6190 | if (!drv || !drv->bdrv_get_specific_stats) { | |
6191 | return NULL; | |
6192 | } | |
6193 | return drv->bdrv_get_specific_stats(bs); | |
6194 | } | |
6195 | ||
a31939e6 | 6196 | void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) |
4265d620 | 6197 | { |
61007b31 SH |
6198 | if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { |
6199 | return; | |
6200 | } | |
4265d620 | 6201 | |
61007b31 | 6202 | bs->drv->bdrv_debug_event(bs, event); |
4265d620 PB |
6203 | } |
6204 | ||
d10529a2 | 6205 | static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs) |
4265d620 | 6206 | { |
61007b31 | 6207 | while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { |
f706a92f | 6208 | bs = bdrv_primary_bs(bs); |
61007b31 | 6209 | } |
4265d620 | 6210 | |
61007b31 | 6211 | if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { |
d10529a2 VSO |
6212 | assert(bs->drv->bdrv_debug_remove_breakpoint); |
6213 | return bs; | |
6214 | } | |
6215 | ||
6216 | return NULL; | |
6217 | } | |
6218 | ||
6219 | int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, | |
6220 | const char *tag) | |
6221 | { | |
6222 | bs = bdrv_find_debug_node(bs); | |
6223 | if (bs) { | |
61007b31 SH |
6224 | return bs->drv->bdrv_debug_breakpoint(bs, event, tag); |
6225 | } | |
4265d620 | 6226 | |
61007b31 | 6227 | return -ENOTSUP; |
4265d620 PB |
6228 | } |
6229 | ||
61007b31 | 6230 | int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) |
ea2384d3 | 6231 | { |
d10529a2 VSO |
6232 | bs = bdrv_find_debug_node(bs); |
6233 | if (bs) { | |
61007b31 SH |
6234 | return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); |
6235 | } | |
6236 | ||
6237 | return -ENOTSUP; | |
eb852011 MA |
6238 | } |
6239 | ||
61007b31 | 6240 | int bdrv_debug_resume(BlockDriverState *bs, const char *tag) |
ce1a14dc | 6241 | { |
61007b31 | 6242 | while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { |
f706a92f | 6243 | bs = bdrv_primary_bs(bs); |
61007b31 | 6244 | } |
ce1a14dc | 6245 | |
61007b31 SH |
6246 | if (bs && bs->drv && bs->drv->bdrv_debug_resume) { |
6247 | return bs->drv->bdrv_debug_resume(bs, tag); | |
6248 | } | |
ce1a14dc | 6249 | |
61007b31 | 6250 | return -ENOTSUP; |
f197fe2b FZ |
6251 | } |
6252 | ||
61007b31 | 6253 | bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) |
ce1a14dc | 6254 | { |
61007b31 | 6255 | while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { |
f706a92f | 6256 | bs = bdrv_primary_bs(bs); |
f197fe2b | 6257 | } |
19cb3738 | 6258 | |
61007b31 SH |
6259 | if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { |
6260 | return bs->drv->bdrv_debug_is_suspended(bs, tag); | |
6261 | } | |
f9f05dc5 | 6262 | |
61007b31 SH |
6263 | return false; |
6264 | } | |
f9f05dc5 | 6265 | |
61007b31 SH |
6266 | /* backing_file can either be relative, or absolute, or a protocol. If it is |
6267 | * relative, it must be relative to the chain. So, passing in bs->filename | |
6268 | * from a BDS as backing_file should not be done, as that may be relative to | |
6269 | * the CWD rather than the chain. */ | |
6270 | BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, | |
6271 | const char *backing_file) | |
f9f05dc5 | 6272 | { |
61007b31 SH |
6273 | char *filename_full = NULL; |
6274 | char *backing_file_full = NULL; | |
6275 | char *filename_tmp = NULL; | |
6276 | int is_protocol = 0; | |
0b877d09 | 6277 | bool filenames_refreshed = false; |
61007b31 SH |
6278 | BlockDriverState *curr_bs = NULL; |
6279 | BlockDriverState *retval = NULL; | |
dcf3f9b2 | 6280 | BlockDriverState *bs_below; |
f9f05dc5 | 6281 | |
61007b31 SH |
6282 | if (!bs || !bs->drv || !backing_file) { |
6283 | return NULL; | |
f9f05dc5 KW |
6284 | } |
6285 | ||
61007b31 SH |
6286 | filename_full = g_malloc(PATH_MAX); |
6287 | backing_file_full = g_malloc(PATH_MAX); | |
f9f05dc5 | 6288 | |
61007b31 | 6289 | is_protocol = path_has_protocol(backing_file); |
f9f05dc5 | 6290 | |
dcf3f9b2 HR |
6291 | /* |
6292 | * Being largely a legacy function, skip any filters here | |
6293 | * (because filters do not have normal filenames, so they cannot | |
6294 | * match anyway; and allowing json:{} filenames is a bit out of | |
6295 | * scope). | |
6296 | */ | |
6297 | for (curr_bs = bdrv_skip_filters(bs); | |
6298 | bdrv_cow_child(curr_bs) != NULL; | |
6299 | curr_bs = bs_below) | |
6300 | { | |
6301 | bs_below = bdrv_backing_chain_next(curr_bs); | |
f9f05dc5 | 6302 | |
0b877d09 HR |
6303 | if (bdrv_backing_overridden(curr_bs)) { |
6304 | /* | |
6305 | * If the backing file was overridden, we can only compare | |
6306 | * directly against the backing node's filename. | |
6307 | */ | |
6308 | ||
6309 | if (!filenames_refreshed) { | |
6310 | /* | |
6311 | * This will automatically refresh all of the | |
6312 | * filenames in the rest of the backing chain, so we | |
6313 | * only need to do this once. | |
6314 | */ | |
6315 | bdrv_refresh_filename(bs_below); | |
6316 | filenames_refreshed = true; | |
6317 | } | |
6318 | ||
6319 | if (strcmp(backing_file, bs_below->filename) == 0) { | |
6320 | retval = bs_below; | |
6321 | break; | |
6322 | } | |
6323 | } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) { | |
6324 | /* | |
6325 | * If either of the filename paths is actually a protocol, then | |
6326 | * compare unmodified paths; otherwise make paths relative. | |
6327 | */ | |
6b6833c1 HR |
6328 | char *backing_file_full_ret; |
6329 | ||
61007b31 | 6330 | if (strcmp(backing_file, curr_bs->backing_file) == 0) { |
dcf3f9b2 | 6331 | retval = bs_below; |
61007b31 SH |
6332 | break; |
6333 | } | |
418661e0 | 6334 | /* Also check against the full backing filename for the image */ |
6b6833c1 HR |
6335 | backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs, |
6336 | NULL); | |
6337 | if (backing_file_full_ret) { | |
6338 | bool equal = strcmp(backing_file, backing_file_full_ret) == 0; | |
6339 | g_free(backing_file_full_ret); | |
6340 | if (equal) { | |
dcf3f9b2 | 6341 | retval = bs_below; |
418661e0 JC |
6342 | break; |
6343 | } | |
418661e0 | 6344 | } |
61007b31 SH |
6345 | } else { |
6346 | /* If not an absolute filename path, make it relative to the current | |
6347 | * image's filename path */ | |
2d9158ce HR |
6348 | filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file, |
6349 | NULL); | |
6350 | /* We are going to compare canonicalized absolute pathnames */ | |
6351 | if (!filename_tmp || !realpath(filename_tmp, filename_full)) { | |
6352 | g_free(filename_tmp); | |
61007b31 SH |
6353 | continue; |
6354 | } | |
2d9158ce | 6355 | g_free(filename_tmp); |
07f07615 | 6356 | |
61007b31 SH |
6357 | /* We need to make sure the backing filename we are comparing against |
6358 | * is relative to the current image filename (or absolute) */ | |
2d9158ce HR |
6359 | filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL); |
6360 | if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) { | |
6361 | g_free(filename_tmp); | |
61007b31 SH |
6362 | continue; |
6363 | } | |
2d9158ce | 6364 | g_free(filename_tmp); |
eb489bb1 | 6365 | |
61007b31 | 6366 | if (strcmp(backing_file_full, filename_full) == 0) { |
dcf3f9b2 | 6367 | retval = bs_below; |
61007b31 SH |
6368 | break; |
6369 | } | |
6370 | } | |
eb489bb1 KW |
6371 | } |
6372 | ||
61007b31 SH |
6373 | g_free(filename_full); |
6374 | g_free(backing_file_full); | |
61007b31 SH |
6375 | return retval; |
6376 | } | |
6377 | ||
61007b31 SH |
6378 | void bdrv_init(void) |
6379 | { | |
e5f05f8c KW |
6380 | #ifdef CONFIG_BDRV_WHITELIST_TOOLS |
6381 | use_bdrv_whitelist = 1; | |
6382 | #endif | |
61007b31 SH |
6383 | module_call_init(MODULE_INIT_BLOCK); |
6384 | } | |
29cdb251 | 6385 | |
61007b31 SH |
6386 | void bdrv_init_with_whitelist(void) |
6387 | { | |
6388 | use_bdrv_whitelist = 1; | |
6389 | bdrv_init(); | |
07f07615 PB |
6390 | } |
6391 | ||
21c2283e | 6392 | int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp) |
0f15423c | 6393 | { |
4417ab7a | 6394 | BdrvChild *child, *parent; |
5a8a30db KW |
6395 | Error *local_err = NULL; |
6396 | int ret; | |
9c98f145 | 6397 | BdrvDirtyBitmap *bm; |
5a8a30db | 6398 | |
3456a8d1 | 6399 | if (!bs->drv) { |
5416645f | 6400 | return -ENOMEDIUM; |
3456a8d1 KW |
6401 | } |
6402 | ||
16e977d5 | 6403 | QLIST_FOREACH(child, &bs->children, next) { |
2b148f39 | 6404 | bdrv_co_invalidate_cache(child->bs, &local_err); |
0d1c5c91 | 6405 | if (local_err) { |
0d1c5c91 | 6406 | error_propagate(errp, local_err); |
5416645f | 6407 | return -EINVAL; |
0d1c5c91 | 6408 | } |
5a8a30db | 6409 | } |
0d1c5c91 | 6410 | |
dafe0960 KW |
6411 | /* |
6412 | * Update permissions, they may differ for inactive nodes. | |
6413 | * | |
6414 | * Note that the required permissions of inactive images are always a | |
6415 | * subset of the permissions required after activating the image. This | |
6416 | * allows us to just get the permissions upfront without restricting | |
6417 | * drv->bdrv_invalidate_cache(). | |
6418 | * | |
6419 | * It also means that in error cases, we don't have to try and revert to | |
6420 | * the old permissions (which is an operation that could fail, too). We can | |
6421 | * just keep the extended permissions for the next time that an activation | |
6422 | * of the image is tried. | |
6423 | */ | |
7bb4941a KW |
6424 | if (bs->open_flags & BDRV_O_INACTIVE) { |
6425 | bs->open_flags &= ~BDRV_O_INACTIVE; | |
071b474f | 6426 | ret = bdrv_refresh_perms(bs, errp); |
7bb4941a | 6427 | if (ret < 0) { |
0d1c5c91 | 6428 | bs->open_flags |= BDRV_O_INACTIVE; |
5416645f | 6429 | return ret; |
0d1c5c91 | 6430 | } |
3456a8d1 | 6431 | |
7bb4941a KW |
6432 | if (bs->drv->bdrv_co_invalidate_cache) { |
6433 | bs->drv->bdrv_co_invalidate_cache(bs, &local_err); | |
6434 | if (local_err) { | |
6435 | bs->open_flags |= BDRV_O_INACTIVE; | |
6436 | error_propagate(errp, local_err); | |
5416645f | 6437 | return -EINVAL; |
7bb4941a KW |
6438 | } |
6439 | } | |
9c98f145 | 6440 | |
7bb4941a KW |
6441 | FOR_EACH_DIRTY_BITMAP(bs, bm) { |
6442 | bdrv_dirty_bitmap_skip_store(bm, false); | |
6443 | } | |
6444 | ||
6445 | ret = refresh_total_sectors(bs, bs->total_sectors); | |
6446 | if (ret < 0) { | |
6447 | bs->open_flags |= BDRV_O_INACTIVE; | |
6448 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); | |
5416645f | 6449 | return ret; |
7bb4941a | 6450 | } |
5a8a30db | 6451 | } |
4417ab7a KW |
6452 | |
6453 | QLIST_FOREACH(parent, &bs->parents, next_parent) { | |
bd86fb99 HR |
6454 | if (parent->klass->activate) { |
6455 | parent->klass->activate(parent, &local_err); | |
4417ab7a | 6456 | if (local_err) { |
78fc3b3a | 6457 | bs->open_flags |= BDRV_O_INACTIVE; |
4417ab7a | 6458 | error_propagate(errp, local_err); |
5416645f | 6459 | return -EINVAL; |
4417ab7a KW |
6460 | } |
6461 | } | |
6462 | } | |
5416645f VSO |
6463 | |
6464 | return 0; | |
0f15423c AL |
6465 | } |
6466 | ||
5a8a30db | 6467 | void bdrv_invalidate_cache_all(Error **errp) |
0f15423c | 6468 | { |
7c8eece4 | 6469 | BlockDriverState *bs; |
88be7b4b | 6470 | BdrvNextIterator it; |
0f15423c | 6471 | |
88be7b4b | 6472 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
ed78cda3 | 6473 | AioContext *aio_context = bdrv_get_aio_context(bs); |
5416645f | 6474 | int ret; |
ed78cda3 SH |
6475 | |
6476 | aio_context_acquire(aio_context); | |
5416645f | 6477 | ret = bdrv_invalidate_cache(bs, errp); |
ed78cda3 | 6478 | aio_context_release(aio_context); |
5416645f | 6479 | if (ret < 0) { |
5e003f17 | 6480 | bdrv_next_cleanup(&it); |
5a8a30db KW |
6481 | return; |
6482 | } | |
0f15423c AL |
6483 | } |
6484 | } | |
6485 | ||
9e37271f KW |
6486 | static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active) |
6487 | { | |
6488 | BdrvChild *parent; | |
6489 | ||
6490 | QLIST_FOREACH(parent, &bs->parents, next_parent) { | |
bd86fb99 | 6491 | if (parent->klass->parent_is_bds) { |
9e37271f KW |
6492 | BlockDriverState *parent_bs = parent->opaque; |
6493 | if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) { | |
6494 | return true; | |
6495 | } | |
6496 | } | |
6497 | } | |
6498 | ||
6499 | return false; | |
6500 | } | |
6501 | ||
6502 | static int bdrv_inactivate_recurse(BlockDriverState *bs) | |
76b1c7fe | 6503 | { |
cfa1a572 | 6504 | BdrvChild *child, *parent; |
76b1c7fe | 6505 | int ret; |
a13de40a | 6506 | uint64_t cumulative_perms, cumulative_shared_perms; |
76b1c7fe | 6507 | |
d470ad42 HR |
6508 | if (!bs->drv) { |
6509 | return -ENOMEDIUM; | |
6510 | } | |
6511 | ||
9e37271f KW |
6512 | /* Make sure that we don't inactivate a child before its parent. |
6513 | * It will be covered by recursion from the yet active parent. */ | |
6514 | if (bdrv_has_bds_parent(bs, true)) { | |
6515 | return 0; | |
6516 | } | |
6517 | ||
6518 | assert(!(bs->open_flags & BDRV_O_INACTIVE)); | |
6519 | ||
6520 | /* Inactivate this node */ | |
6521 | if (bs->drv->bdrv_inactivate) { | |
76b1c7fe KW |
6522 | ret = bs->drv->bdrv_inactivate(bs); |
6523 | if (ret < 0) { | |
6524 | return ret; | |
6525 | } | |
6526 | } | |
6527 | ||
9e37271f | 6528 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
bd86fb99 HR |
6529 | if (parent->klass->inactivate) { |
6530 | ret = parent->klass->inactivate(parent); | |
9e37271f KW |
6531 | if (ret < 0) { |
6532 | return ret; | |
cfa1a572 KW |
6533 | } |
6534 | } | |
9e37271f | 6535 | } |
9c5e6594 | 6536 | |
a13de40a VSO |
6537 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
6538 | &cumulative_shared_perms); | |
6539 | if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) { | |
6540 | /* Our inactive parents still need write access. Inactivation failed. */ | |
6541 | return -EPERM; | |
6542 | } | |
6543 | ||
9e37271f | 6544 | bs->open_flags |= BDRV_O_INACTIVE; |
7d5b5261 | 6545 | |
bb87e4d1 VSO |
6546 | /* |
6547 | * Update permissions, they may differ for inactive nodes. | |
6548 | * We only tried to loosen restrictions, so errors are not fatal, ignore | |
6549 | * them. | |
6550 | */ | |
071b474f | 6551 | bdrv_refresh_perms(bs, NULL); |
9e37271f KW |
6552 | |
6553 | /* Recursively inactivate children */ | |
38701b6a | 6554 | QLIST_FOREACH(child, &bs->children, next) { |
9e37271f | 6555 | ret = bdrv_inactivate_recurse(child->bs); |
38701b6a KW |
6556 | if (ret < 0) { |
6557 | return ret; | |
6558 | } | |
6559 | } | |
6560 | ||
76b1c7fe KW |
6561 | return 0; |
6562 | } | |
6563 | ||
6564 | int bdrv_inactivate_all(void) | |
6565 | { | |
79720af6 | 6566 | BlockDriverState *bs = NULL; |
88be7b4b | 6567 | BdrvNextIterator it; |
aad0b7a0 | 6568 | int ret = 0; |
bd6458e4 | 6569 | GSList *aio_ctxs = NULL, *ctx; |
76b1c7fe | 6570 | |
88be7b4b | 6571 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
bd6458e4 PB |
6572 | AioContext *aio_context = bdrv_get_aio_context(bs); |
6573 | ||
6574 | if (!g_slist_find(aio_ctxs, aio_context)) { | |
6575 | aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); | |
6576 | aio_context_acquire(aio_context); | |
6577 | } | |
aad0b7a0 | 6578 | } |
76b1c7fe | 6579 | |
9e37271f KW |
6580 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
6581 | /* Nodes with BDS parents are covered by recursion from the last | |
6582 | * parent that gets inactivated. Don't inactivate them a second | |
6583 | * time if that has already happened. */ | |
6584 | if (bdrv_has_bds_parent(bs, false)) { | |
6585 | continue; | |
6586 | } | |
6587 | ret = bdrv_inactivate_recurse(bs); | |
6588 | if (ret < 0) { | |
6589 | bdrv_next_cleanup(&it); | |
6590 | goto out; | |
76b1c7fe KW |
6591 | } |
6592 | } | |
6593 | ||
aad0b7a0 | 6594 | out: |
bd6458e4 PB |
6595 | for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { |
6596 | AioContext *aio_context = ctx->data; | |
6597 | aio_context_release(aio_context); | |
aad0b7a0 | 6598 | } |
bd6458e4 | 6599 | g_slist_free(aio_ctxs); |
aad0b7a0 FZ |
6600 | |
6601 | return ret; | |
76b1c7fe KW |
6602 | } |
6603 | ||
19cb3738 FB |
6604 | /**************************************************************/ |
6605 | /* removable device support */ | |
6606 | ||
6607 | /** | |
6608 | * Return TRUE if the media is present | |
6609 | */ | |
e031f750 | 6610 | bool bdrv_is_inserted(BlockDriverState *bs) |
19cb3738 FB |
6611 | { |
6612 | BlockDriver *drv = bs->drv; | |
28d7a789 | 6613 | BdrvChild *child; |
a1aff5bf | 6614 | |
e031f750 HR |
6615 | if (!drv) { |
6616 | return false; | |
6617 | } | |
28d7a789 HR |
6618 | if (drv->bdrv_is_inserted) { |
6619 | return drv->bdrv_is_inserted(bs); | |
6620 | } | |
6621 | QLIST_FOREACH(child, &bs->children, next) { | |
6622 | if (!bdrv_is_inserted(child->bs)) { | |
6623 | return false; | |
6624 | } | |
e031f750 | 6625 | } |
28d7a789 | 6626 | return true; |
19cb3738 FB |
6627 | } |
6628 | ||
19cb3738 FB |
6629 | /** |
6630 | * If eject_flag is TRUE, eject the media. Otherwise, close the tray | |
6631 | */ | |
f36f3949 | 6632 | void bdrv_eject(BlockDriverState *bs, bool eject_flag) |
19cb3738 FB |
6633 | { |
6634 | BlockDriver *drv = bs->drv; | |
19cb3738 | 6635 | |
822e1cd1 MA |
6636 | if (drv && drv->bdrv_eject) { |
6637 | drv->bdrv_eject(bs, eject_flag); | |
19cb3738 FB |
6638 | } |
6639 | } | |
6640 | ||
19cb3738 FB |
6641 | /** |
6642 | * Lock or unlock the media (if it is locked, the user won't be able | |
6643 | * to eject it manually). | |
6644 | */ | |
025e849a | 6645 | void bdrv_lock_medium(BlockDriverState *bs, bool locked) |
19cb3738 FB |
6646 | { |
6647 | BlockDriver *drv = bs->drv; | |
6648 | ||
025e849a | 6649 | trace_bdrv_lock_medium(bs, locked); |
b8c6d095 | 6650 | |
025e849a MA |
6651 | if (drv && drv->bdrv_lock_medium) { |
6652 | drv->bdrv_lock_medium(bs, locked); | |
19cb3738 FB |
6653 | } |
6654 | } | |
985a03b0 | 6655 | |
9fcb0251 FZ |
6656 | /* Get a reference to bs */ |
6657 | void bdrv_ref(BlockDriverState *bs) | |
6658 | { | |
6659 | bs->refcnt++; | |
6660 | } | |
6661 | ||
6662 | /* Release a previously grabbed reference to bs. | |
6663 | * If after releasing, reference count is zero, the BlockDriverState is | |
6664 | * deleted. */ | |
6665 | void bdrv_unref(BlockDriverState *bs) | |
6666 | { | |
9a4d5ca6 JC |
6667 | if (!bs) { |
6668 | return; | |
6669 | } | |
9fcb0251 FZ |
6670 | assert(bs->refcnt > 0); |
6671 | if (--bs->refcnt == 0) { | |
6672 | bdrv_delete(bs); | |
6673 | } | |
6674 | } | |
6675 | ||
fbe40ff7 FZ |
6676 | struct BdrvOpBlocker { |
6677 | Error *reason; | |
6678 | QLIST_ENTRY(BdrvOpBlocker) list; | |
6679 | }; | |
6680 | ||
6681 | bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) | |
6682 | { | |
6683 | BdrvOpBlocker *blocker; | |
6684 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); | |
6685 | if (!QLIST_EMPTY(&bs->op_blockers[op])) { | |
6686 | blocker = QLIST_FIRST(&bs->op_blockers[op]); | |
4b576648 MA |
6687 | error_propagate_prepend(errp, error_copy(blocker->reason), |
6688 | "Node '%s' is busy: ", | |
6689 | bdrv_get_device_or_node_name(bs)); | |
fbe40ff7 FZ |
6690 | return true; |
6691 | } | |
6692 | return false; | |
6693 | } | |
6694 | ||
6695 | void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) | |
6696 | { | |
6697 | BdrvOpBlocker *blocker; | |
6698 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); | |
6699 | ||
5839e53b | 6700 | blocker = g_new0(BdrvOpBlocker, 1); |
fbe40ff7 FZ |
6701 | blocker->reason = reason; |
6702 | QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); | |
6703 | } | |
6704 | ||
6705 | void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) | |
6706 | { | |
6707 | BdrvOpBlocker *blocker, *next; | |
6708 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); | |
6709 | QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { | |
6710 | if (blocker->reason == reason) { | |
6711 | QLIST_REMOVE(blocker, list); | |
6712 | g_free(blocker); | |
6713 | } | |
6714 | } | |
6715 | } | |
6716 | ||
6717 | void bdrv_op_block_all(BlockDriverState *bs, Error *reason) | |
6718 | { | |
6719 | int i; | |
6720 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { | |
6721 | bdrv_op_block(bs, i, reason); | |
6722 | } | |
6723 | } | |
6724 | ||
6725 | void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) | |
6726 | { | |
6727 | int i; | |
6728 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { | |
6729 | bdrv_op_unblock(bs, i, reason); | |
6730 | } | |
6731 | } | |
6732 | ||
6733 | bool bdrv_op_blocker_is_empty(BlockDriverState *bs) | |
6734 | { | |
6735 | int i; | |
6736 | ||
6737 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { | |
6738 | if (!QLIST_EMPTY(&bs->op_blockers[i])) { | |
6739 | return false; | |
6740 | } | |
6741 | } | |
6742 | return true; | |
6743 | } | |
6744 | ||
d92ada22 LC |
6745 | void bdrv_img_create(const char *filename, const char *fmt, |
6746 | const char *base_filename, const char *base_fmt, | |
9217283d FZ |
6747 | char *options, uint64_t img_size, int flags, bool quiet, |
6748 | Error **errp) | |
f88e1a42 | 6749 | { |
83d0521a CL |
6750 | QemuOptsList *create_opts = NULL; |
6751 | QemuOpts *opts = NULL; | |
6752 | const char *backing_fmt, *backing_file; | |
6753 | int64_t size; | |
f88e1a42 | 6754 | BlockDriver *drv, *proto_drv; |
cc84d90f | 6755 | Error *local_err = NULL; |
f88e1a42 JS |
6756 | int ret = 0; |
6757 | ||
6758 | /* Find driver and parse its options */ | |
6759 | drv = bdrv_find_format(fmt); | |
6760 | if (!drv) { | |
71c79813 | 6761 | error_setg(errp, "Unknown file format '%s'", fmt); |
d92ada22 | 6762 | return; |
f88e1a42 JS |
6763 | } |
6764 | ||
b65a5e12 | 6765 | proto_drv = bdrv_find_protocol(filename, true, errp); |
f88e1a42 | 6766 | if (!proto_drv) { |
d92ada22 | 6767 | return; |
f88e1a42 JS |
6768 | } |
6769 | ||
c6149724 HR |
6770 | if (!drv->create_opts) { |
6771 | error_setg(errp, "Format driver '%s' does not support image creation", | |
6772 | drv->format_name); | |
6773 | return; | |
6774 | } | |
6775 | ||
5a5e7f8c ML |
6776 | if (!proto_drv->create_opts) { |
6777 | error_setg(errp, "Protocol driver '%s' does not support image creation", | |
6778 | proto_drv->format_name); | |
6779 | return; | |
6780 | } | |
6781 | ||
f6dc1c31 | 6782 | /* Create parameter list */ |
c282e1fd | 6783 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
5a5e7f8c | 6784 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); |
f88e1a42 | 6785 | |
83d0521a | 6786 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
f88e1a42 JS |
6787 | |
6788 | /* Parse -o options */ | |
6789 | if (options) { | |
a5f9b9df | 6790 | if (!qemu_opts_do_parse(opts, options, NULL, errp)) { |
f88e1a42 JS |
6791 | goto out; |
6792 | } | |
6793 | } | |
6794 | ||
f6dc1c31 KW |
6795 | if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) { |
6796 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); | |
6797 | } else if (img_size != UINT64_C(-1)) { | |
6798 | error_setg(errp, "The image size must be specified only once"); | |
6799 | goto out; | |
6800 | } | |
6801 | ||
f88e1a42 | 6802 | if (base_filename) { |
235e59cf | 6803 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, |
3882578b | 6804 | NULL)) { |
71c79813 LC |
6805 | error_setg(errp, "Backing file not supported for file format '%s'", |
6806 | fmt); | |
f88e1a42 JS |
6807 | goto out; |
6808 | } | |
6809 | } | |
6810 | ||
6811 | if (base_fmt) { | |
3882578b | 6812 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) { |
71c79813 LC |
6813 | error_setg(errp, "Backing file format not supported for file " |
6814 | "format '%s'", fmt); | |
f88e1a42 JS |
6815 | goto out; |
6816 | } | |
6817 | } | |
6818 | ||
83d0521a CL |
6819 | backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); |
6820 | if (backing_file) { | |
6821 | if (!strcmp(filename, backing_file)) { | |
71c79813 LC |
6822 | error_setg(errp, "Error: Trying to create an image with the " |
6823 | "same filename as the backing file"); | |
792da93a JS |
6824 | goto out; |
6825 | } | |
975a7bd2 CK |
6826 | if (backing_file[0] == '\0') { |
6827 | error_setg(errp, "Expected backing file name, got empty string"); | |
6828 | goto out; | |
6829 | } | |
792da93a JS |
6830 | } |
6831 | ||
83d0521a | 6832 | backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); |
f88e1a42 | 6833 | |
6e6e55f5 JS |
6834 | /* The size for the image must always be specified, unless we have a backing |
6835 | * file and we have not been forbidden from opening it. */ | |
a8b42a1c | 6836 | size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); |
6e6e55f5 JS |
6837 | if (backing_file && !(flags & BDRV_O_NO_BACKING)) { |
6838 | BlockDriverState *bs; | |
645ae7d8 | 6839 | char *full_backing; |
6e6e55f5 JS |
6840 | int back_flags; |
6841 | QDict *backing_options = NULL; | |
6842 | ||
645ae7d8 HR |
6843 | full_backing = |
6844 | bdrv_get_full_backing_filename_from_filename(filename, backing_file, | |
6845 | &local_err); | |
6e6e55f5 | 6846 | if (local_err) { |
6e6e55f5 JS |
6847 | goto out; |
6848 | } | |
645ae7d8 | 6849 | assert(full_backing); |
29168018 | 6850 | |
d5b23994 HR |
6851 | /* |
6852 | * No need to do I/O here, which allows us to open encrypted | |
6853 | * backing images without needing the secret | |
6854 | */ | |
6e6e55f5 JS |
6855 | back_flags = flags; |
6856 | back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); | |
d5b23994 | 6857 | back_flags |= BDRV_O_NO_IO; |
f88e1a42 | 6858 | |
cc954f01 | 6859 | backing_options = qdict_new(); |
6e6e55f5 | 6860 | if (backing_fmt) { |
6e6e55f5 JS |
6861 | qdict_put_str(backing_options, "driver", backing_fmt); |
6862 | } | |
cc954f01 | 6863 | qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); |
e6641719 | 6864 | |
6e6e55f5 JS |
6865 | bs = bdrv_open(full_backing, NULL, backing_options, back_flags, |
6866 | &local_err); | |
6867 | g_free(full_backing); | |
add8200d EB |
6868 | if (!bs) { |
6869 | error_append_hint(&local_err, "Could not open backing image.\n"); | |
6e6e55f5 JS |
6870 | goto out; |
6871 | } else { | |
d9f059aa | 6872 | if (!backing_fmt) { |
497a30db EB |
6873 | error_setg(&local_err, |
6874 | "Backing file specified without backing format"); | |
6875 | error_append_hint(&local_err, "Detected format of %s.", | |
6876 | bs->drv->format_name); | |
6877 | goto out; | |
d9f059aa | 6878 | } |
6e6e55f5 JS |
6879 | if (size == -1) { |
6880 | /* Opened BS, have no size */ | |
6881 | size = bdrv_getlength(bs); | |
6882 | if (size < 0) { | |
6883 | error_setg_errno(errp, -size, "Could not get size of '%s'", | |
6884 | backing_file); | |
6885 | bdrv_unref(bs); | |
6886 | goto out; | |
6887 | } | |
6888 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); | |
52bf1e72 | 6889 | } |
66f6b814 | 6890 | bdrv_unref(bs); |
f88e1a42 | 6891 | } |
d9f059aa EB |
6892 | /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ |
6893 | } else if (backing_file && !backing_fmt) { | |
497a30db EB |
6894 | error_setg(&local_err, |
6895 | "Backing file specified without backing format"); | |
6896 | goto out; | |
d9f059aa | 6897 | } |
6e6e55f5 JS |
6898 | |
6899 | if (size == -1) { | |
6900 | error_setg(errp, "Image creation needs a size parameter"); | |
6901 | goto out; | |
f88e1a42 JS |
6902 | } |
6903 | ||
f382d43a | 6904 | if (!quiet) { |
fe646693 | 6905 | printf("Formatting '%s', fmt=%s ", filename, fmt); |
43c5d8f8 | 6906 | qemu_opts_print(opts, " "); |
f382d43a | 6907 | puts(""); |
4e2f4418 | 6908 | fflush(stdout); |
f382d43a | 6909 | } |
83d0521a | 6910 | |
c282e1fd | 6911 | ret = bdrv_create(drv, filename, opts, &local_err); |
83d0521a | 6912 | |
cc84d90f HR |
6913 | if (ret == -EFBIG) { |
6914 | /* This is generally a better message than whatever the driver would | |
6915 | * deliver (especially because of the cluster_size_hint), since that | |
6916 | * is most probably not much different from "image too large". */ | |
6917 | const char *cluster_size_hint = ""; | |
83d0521a | 6918 | if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { |
cc84d90f | 6919 | cluster_size_hint = " (try using a larger cluster size)"; |
f88e1a42 | 6920 | } |
cc84d90f HR |
6921 | error_setg(errp, "The image size is too large for file format '%s'" |
6922 | "%s", fmt, cluster_size_hint); | |
6923 | error_free(local_err); | |
6924 | local_err = NULL; | |
f88e1a42 JS |
6925 | } |
6926 | ||
6927 | out: | |
83d0521a CL |
6928 | qemu_opts_del(opts); |
6929 | qemu_opts_free(create_opts); | |
621ff94d | 6930 | error_propagate(errp, local_err); |
f88e1a42 | 6931 | } |
85d126f3 SH |
6932 | |
6933 | AioContext *bdrv_get_aio_context(BlockDriverState *bs) | |
6934 | { | |
33f2a757 | 6935 | return bs ? bs->aio_context : qemu_get_aio_context(); |
dcd04228 SH |
6936 | } |
6937 | ||
e336fd4c KW |
6938 | AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs) |
6939 | { | |
6940 | Coroutine *self = qemu_coroutine_self(); | |
6941 | AioContext *old_ctx = qemu_coroutine_get_aio_context(self); | |
6942 | AioContext *new_ctx; | |
6943 | ||
6944 | /* | |
6945 | * Increase bs->in_flight to ensure that this operation is completed before | |
6946 | * moving the node to a different AioContext. Read new_ctx only afterwards. | |
6947 | */ | |
6948 | bdrv_inc_in_flight(bs); | |
6949 | ||
6950 | new_ctx = bdrv_get_aio_context(bs); | |
6951 | aio_co_reschedule_self(new_ctx); | |
6952 | return old_ctx; | |
6953 | } | |
6954 | ||
6955 | void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx) | |
6956 | { | |
6957 | aio_co_reschedule_self(old_ctx); | |
6958 | bdrv_dec_in_flight(bs); | |
6959 | } | |
6960 | ||
18c6ac1c KW |
6961 | void coroutine_fn bdrv_co_lock(BlockDriverState *bs) |
6962 | { | |
6963 | AioContext *ctx = bdrv_get_aio_context(bs); | |
6964 | ||
6965 | /* In the main thread, bs->aio_context won't change concurrently */ | |
6966 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); | |
6967 | ||
6968 | /* | |
6969 | * We're in coroutine context, so we already hold the lock of the main | |
6970 | * loop AioContext. Don't lock it twice to avoid deadlocks. | |
6971 | */ | |
6972 | assert(qemu_in_coroutine()); | |
6973 | if (ctx != qemu_get_aio_context()) { | |
6974 | aio_context_acquire(ctx); | |
6975 | } | |
6976 | } | |
6977 | ||
6978 | void coroutine_fn bdrv_co_unlock(BlockDriverState *bs) | |
6979 | { | |
6980 | AioContext *ctx = bdrv_get_aio_context(bs); | |
6981 | ||
6982 | assert(qemu_in_coroutine()); | |
6983 | if (ctx != qemu_get_aio_context()) { | |
6984 | aio_context_release(ctx); | |
6985 | } | |
6986 | } | |
6987 | ||
052a7572 FZ |
6988 | void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co) |
6989 | { | |
6990 | aio_co_enter(bdrv_get_aio_context(bs), co); | |
6991 | } | |
6992 | ||
e8a095da SH |
6993 | static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) |
6994 | { | |
6995 | QLIST_REMOVE(ban, list); | |
6996 | g_free(ban); | |
6997 | } | |
6998 | ||
a3a683c3 | 6999 | static void bdrv_detach_aio_context(BlockDriverState *bs) |
dcd04228 | 7000 | { |
e8a095da | 7001 | BdrvAioNotifier *baf, *baf_tmp; |
33384421 | 7002 | |
e8a095da SH |
7003 | assert(!bs->walking_aio_notifiers); |
7004 | bs->walking_aio_notifiers = true; | |
7005 | QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { | |
7006 | if (baf->deleted) { | |
7007 | bdrv_do_remove_aio_context_notifier(baf); | |
7008 | } else { | |
7009 | baf->detach_aio_context(baf->opaque); | |
7010 | } | |
33384421 | 7011 | } |
e8a095da SH |
7012 | /* Never mind iterating again to check for ->deleted. bdrv_close() will |
7013 | * remove remaining aio notifiers if we aren't called again. | |
7014 | */ | |
7015 | bs->walking_aio_notifiers = false; | |
33384421 | 7016 | |
1bffe1ae | 7017 | if (bs->drv && bs->drv->bdrv_detach_aio_context) { |
dcd04228 SH |
7018 | bs->drv->bdrv_detach_aio_context(bs); |
7019 | } | |
dcd04228 | 7020 | |
e64f25f3 KW |
7021 | if (bs->quiesce_counter) { |
7022 | aio_enable_external(bs->aio_context); | |
7023 | } | |
dcd04228 SH |
7024 | bs->aio_context = NULL; |
7025 | } | |
7026 | ||
a3a683c3 KW |
7027 | static void bdrv_attach_aio_context(BlockDriverState *bs, |
7028 | AioContext *new_context) | |
dcd04228 | 7029 | { |
e8a095da | 7030 | BdrvAioNotifier *ban, *ban_tmp; |
33384421 | 7031 | |
e64f25f3 KW |
7032 | if (bs->quiesce_counter) { |
7033 | aio_disable_external(new_context); | |
7034 | } | |
7035 | ||
dcd04228 SH |
7036 | bs->aio_context = new_context; |
7037 | ||
1bffe1ae | 7038 | if (bs->drv && bs->drv->bdrv_attach_aio_context) { |
dcd04228 SH |
7039 | bs->drv->bdrv_attach_aio_context(bs, new_context); |
7040 | } | |
33384421 | 7041 | |
e8a095da SH |
7042 | assert(!bs->walking_aio_notifiers); |
7043 | bs->walking_aio_notifiers = true; | |
7044 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { | |
7045 | if (ban->deleted) { | |
7046 | bdrv_do_remove_aio_context_notifier(ban); | |
7047 | } else { | |
7048 | ban->attached_aio_context(new_context, ban->opaque); | |
7049 | } | |
33384421 | 7050 | } |
e8a095da | 7051 | bs->walking_aio_notifiers = false; |
dcd04228 SH |
7052 | } |
7053 | ||
42a65f02 KW |
7054 | /* |
7055 | * Changes the AioContext used for fd handlers, timers, and BHs by this | |
7056 | * BlockDriverState and all its children and parents. | |
7057 | * | |
43eaaaef HR |
7058 | * Must be called from the main AioContext. |
7059 | * | |
42a65f02 KW |
7060 | * The caller must own the AioContext lock for the old AioContext of bs, but it |
7061 | * must not own the AioContext lock for new_context (unless new_context is the | |
7062 | * same as the current context of bs). | |
7063 | * | |
7064 | * @ignore will accumulate all visited BdrvChild object. The caller is | |
7065 | * responsible for freeing the list afterwards. | |
7066 | */ | |
53a7d041 KW |
7067 | void bdrv_set_aio_context_ignore(BlockDriverState *bs, |
7068 | AioContext *new_context, GSList **ignore) | |
dcd04228 | 7069 | { |
e037c09c | 7070 | AioContext *old_context = bdrv_get_aio_context(bs); |
722d8e73 SL |
7071 | GSList *children_to_process = NULL; |
7072 | GSList *parents_to_process = NULL; | |
7073 | GSList *entry; | |
7074 | BdrvChild *child, *parent; | |
0d83708a | 7075 | |
43eaaaef HR |
7076 | g_assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
7077 | ||
e037c09c | 7078 | if (old_context == new_context) { |
57830a49 DP |
7079 | return; |
7080 | } | |
7081 | ||
d70d5954 | 7082 | bdrv_drained_begin(bs); |
0d83708a KW |
7083 | |
7084 | QLIST_FOREACH(child, &bs->children, next) { | |
53a7d041 KW |
7085 | if (g_slist_find(*ignore, child)) { |
7086 | continue; | |
7087 | } | |
7088 | *ignore = g_slist_prepend(*ignore, child); | |
722d8e73 | 7089 | children_to_process = g_slist_prepend(children_to_process, child); |
53a7d041 | 7090 | } |
722d8e73 SL |
7091 | |
7092 | QLIST_FOREACH(parent, &bs->parents, next_parent) { | |
7093 | if (g_slist_find(*ignore, parent)) { | |
53a7d041 KW |
7094 | continue; |
7095 | } | |
722d8e73 SL |
7096 | *ignore = g_slist_prepend(*ignore, parent); |
7097 | parents_to_process = g_slist_prepend(parents_to_process, parent); | |
7098 | } | |
7099 | ||
7100 | for (entry = children_to_process; | |
7101 | entry != NULL; | |
7102 | entry = g_slist_next(entry)) { | |
7103 | child = entry->data; | |
7104 | bdrv_set_aio_context_ignore(child->bs, new_context, ignore); | |
7105 | } | |
7106 | g_slist_free(children_to_process); | |
7107 | ||
7108 | for (entry = parents_to_process; | |
7109 | entry != NULL; | |
7110 | entry = g_slist_next(entry)) { | |
7111 | parent = entry->data; | |
7112 | assert(parent->klass->set_aio_ctx); | |
7113 | parent->klass->set_aio_ctx(parent, new_context, ignore); | |
0d83708a | 7114 | } |
722d8e73 | 7115 | g_slist_free(parents_to_process); |
0d83708a | 7116 | |
dcd04228 SH |
7117 | bdrv_detach_aio_context(bs); |
7118 | ||
e037c09c | 7119 | /* Acquire the new context, if necessary */ |
43eaaaef | 7120 | if (qemu_get_aio_context() != new_context) { |
e037c09c HR |
7121 | aio_context_acquire(new_context); |
7122 | } | |
7123 | ||
dcd04228 | 7124 | bdrv_attach_aio_context(bs, new_context); |
e037c09c HR |
7125 | |
7126 | /* | |
7127 | * If this function was recursively called from | |
7128 | * bdrv_set_aio_context_ignore(), there may be nodes in the | |
7129 | * subtree that have not yet been moved to the new AioContext. | |
7130 | * Release the old one so bdrv_drained_end() can poll them. | |
7131 | */ | |
43eaaaef | 7132 | if (qemu_get_aio_context() != old_context) { |
e037c09c HR |
7133 | aio_context_release(old_context); |
7134 | } | |
7135 | ||
d70d5954 | 7136 | bdrv_drained_end(bs); |
e037c09c | 7137 | |
43eaaaef | 7138 | if (qemu_get_aio_context() != old_context) { |
e037c09c HR |
7139 | aio_context_acquire(old_context); |
7140 | } | |
43eaaaef | 7141 | if (qemu_get_aio_context() != new_context) { |
e037c09c HR |
7142 | aio_context_release(new_context); |
7143 | } | |
85d126f3 | 7144 | } |
d616b224 | 7145 | |
5d231849 KW |
7146 | static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx, |
7147 | GSList **ignore, Error **errp) | |
7148 | { | |
7149 | if (g_slist_find(*ignore, c)) { | |
7150 | return true; | |
7151 | } | |
7152 | *ignore = g_slist_prepend(*ignore, c); | |
7153 | ||
bd86fb99 HR |
7154 | /* |
7155 | * A BdrvChildClass that doesn't handle AioContext changes cannot | |
7156 | * tolerate any AioContext changes | |
7157 | */ | |
7158 | if (!c->klass->can_set_aio_ctx) { | |
5d231849 KW |
7159 | char *user = bdrv_child_user_desc(c); |
7160 | error_setg(errp, "Changing iothreads is not supported by %s", user); | |
7161 | g_free(user); | |
7162 | return false; | |
7163 | } | |
bd86fb99 | 7164 | if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) { |
5d231849 KW |
7165 | assert(!errp || *errp); |
7166 | return false; | |
7167 | } | |
7168 | return true; | |
7169 | } | |
7170 | ||
7171 | bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx, | |
7172 | GSList **ignore, Error **errp) | |
7173 | { | |
7174 | if (g_slist_find(*ignore, c)) { | |
7175 | return true; | |
7176 | } | |
7177 | *ignore = g_slist_prepend(*ignore, c); | |
7178 | return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp); | |
7179 | } | |
7180 | ||
7181 | /* @ignore will accumulate all visited BdrvChild object. The caller is | |
7182 | * responsible for freeing the list afterwards. */ | |
7183 | bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx, | |
7184 | GSList **ignore, Error **errp) | |
7185 | { | |
7186 | BdrvChild *c; | |
7187 | ||
7188 | if (bdrv_get_aio_context(bs) == ctx) { | |
7189 | return true; | |
7190 | } | |
7191 | ||
7192 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
7193 | if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) { | |
7194 | return false; | |
7195 | } | |
7196 | } | |
7197 | QLIST_FOREACH(c, &bs->children, next) { | |
7198 | if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) { | |
7199 | return false; | |
7200 | } | |
7201 | } | |
7202 | ||
7203 | return true; | |
7204 | } | |
7205 | ||
7206 | int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx, | |
7207 | BdrvChild *ignore_child, Error **errp) | |
7208 | { | |
7209 | GSList *ignore; | |
7210 | bool ret; | |
7211 | ||
7212 | ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL; | |
7213 | ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp); | |
7214 | g_slist_free(ignore); | |
7215 | ||
7216 | if (!ret) { | |
7217 | return -EPERM; | |
7218 | } | |
7219 | ||
53a7d041 KW |
7220 | ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL; |
7221 | bdrv_set_aio_context_ignore(bs, ctx, &ignore); | |
7222 | g_slist_free(ignore); | |
7223 | ||
5d231849 KW |
7224 | return 0; |
7225 | } | |
7226 | ||
7227 | int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx, | |
7228 | Error **errp) | |
7229 | { | |
7230 | return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp); | |
7231 | } | |
7232 | ||
33384421 HR |
7233 | void bdrv_add_aio_context_notifier(BlockDriverState *bs, |
7234 | void (*attached_aio_context)(AioContext *new_context, void *opaque), | |
7235 | void (*detach_aio_context)(void *opaque), void *opaque) | |
7236 | { | |
7237 | BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); | |
7238 | *ban = (BdrvAioNotifier){ | |
7239 | .attached_aio_context = attached_aio_context, | |
7240 | .detach_aio_context = detach_aio_context, | |
7241 | .opaque = opaque | |
7242 | }; | |
7243 | ||
7244 | QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); | |
7245 | } | |
7246 | ||
7247 | void bdrv_remove_aio_context_notifier(BlockDriverState *bs, | |
7248 | void (*attached_aio_context)(AioContext *, | |
7249 | void *), | |
7250 | void (*detach_aio_context)(void *), | |
7251 | void *opaque) | |
7252 | { | |
7253 | BdrvAioNotifier *ban, *ban_next; | |
7254 | ||
7255 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { | |
7256 | if (ban->attached_aio_context == attached_aio_context && | |
7257 | ban->detach_aio_context == detach_aio_context && | |
e8a095da SH |
7258 | ban->opaque == opaque && |
7259 | ban->deleted == false) | |
33384421 | 7260 | { |
e8a095da SH |
7261 | if (bs->walking_aio_notifiers) { |
7262 | ban->deleted = true; | |
7263 | } else { | |
7264 | bdrv_do_remove_aio_context_notifier(ban); | |
7265 | } | |
33384421 HR |
7266 | return; |
7267 | } | |
7268 | } | |
7269 | ||
7270 | abort(); | |
7271 | } | |
7272 | ||
77485434 | 7273 | int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, |
d1402b50 | 7274 | BlockDriverAmendStatusCB *status_cb, void *cb_opaque, |
a3579bfa | 7275 | bool force, |
d1402b50 | 7276 | Error **errp) |
6f176b48 | 7277 | { |
d470ad42 | 7278 | if (!bs->drv) { |
d1402b50 | 7279 | error_setg(errp, "Node is ejected"); |
d470ad42 HR |
7280 | return -ENOMEDIUM; |
7281 | } | |
c282e1fd | 7282 | if (!bs->drv->bdrv_amend_options) { |
d1402b50 HR |
7283 | error_setg(errp, "Block driver '%s' does not support option amendment", |
7284 | bs->drv->format_name); | |
6f176b48 HR |
7285 | return -ENOTSUP; |
7286 | } | |
a3579bfa ML |
7287 | return bs->drv->bdrv_amend_options(bs, opts, status_cb, |
7288 | cb_opaque, force, errp); | |
6f176b48 | 7289 | } |
f6186f49 | 7290 | |
5d69b5ab HR |
7291 | /* |
7292 | * This function checks whether the given @to_replace is allowed to be | |
7293 | * replaced by a node that always shows the same data as @bs. This is | |
7294 | * used for example to verify whether the mirror job can replace | |
7295 | * @to_replace by the target mirrored from @bs. | |
7296 | * To be replaceable, @bs and @to_replace may either be guaranteed to | |
7297 | * always show the same data (because they are only connected through | |
7298 | * filters), or some driver may allow replacing one of its children | |
7299 | * because it can guarantee that this child's data is not visible at | |
7300 | * all (for example, for dissenting quorum children that have no other | |
7301 | * parents). | |
7302 | */ | |
7303 | bool bdrv_recurse_can_replace(BlockDriverState *bs, | |
7304 | BlockDriverState *to_replace) | |
7305 | { | |
93393e69 HR |
7306 | BlockDriverState *filtered; |
7307 | ||
5d69b5ab HR |
7308 | if (!bs || !bs->drv) { |
7309 | return false; | |
7310 | } | |
7311 | ||
7312 | if (bs == to_replace) { | |
7313 | return true; | |
7314 | } | |
7315 | ||
7316 | /* See what the driver can do */ | |
7317 | if (bs->drv->bdrv_recurse_can_replace) { | |
7318 | return bs->drv->bdrv_recurse_can_replace(bs, to_replace); | |
7319 | } | |
7320 | ||
7321 | /* For filters without an own implementation, we can recurse on our own */ | |
93393e69 HR |
7322 | filtered = bdrv_filter_bs(bs); |
7323 | if (filtered) { | |
7324 | return bdrv_recurse_can_replace(filtered, to_replace); | |
5d69b5ab HR |
7325 | } |
7326 | ||
7327 | /* Safe default */ | |
7328 | return false; | |
7329 | } | |
7330 | ||
810803a8 HR |
7331 | /* |
7332 | * Check whether the given @node_name can be replaced by a node that | |
7333 | * has the same data as @parent_bs. If so, return @node_name's BDS; | |
7334 | * NULL otherwise. | |
7335 | * | |
7336 | * @node_name must be a (recursive) *child of @parent_bs (or this | |
7337 | * function will return NULL). | |
7338 | * | |
7339 | * The result (whether the node can be replaced or not) is only valid | |
7340 | * for as long as no graph or permission changes occur. | |
7341 | */ | |
e12f3784 WC |
7342 | BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, |
7343 | const char *node_name, Error **errp) | |
09158f00 BC |
7344 | { |
7345 | BlockDriverState *to_replace_bs = bdrv_find_node(node_name); | |
5a7e7a0b SH |
7346 | AioContext *aio_context; |
7347 | ||
09158f00 | 7348 | if (!to_replace_bs) { |
785ec4b1 | 7349 | error_setg(errp, "Failed to find node with node-name='%s'", node_name); |
09158f00 BC |
7350 | return NULL; |
7351 | } | |
7352 | ||
5a7e7a0b SH |
7353 | aio_context = bdrv_get_aio_context(to_replace_bs); |
7354 | aio_context_acquire(aio_context); | |
7355 | ||
09158f00 | 7356 | if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { |
5a7e7a0b SH |
7357 | to_replace_bs = NULL; |
7358 | goto out; | |
09158f00 BC |
7359 | } |
7360 | ||
7361 | /* We don't want arbitrary node of the BDS chain to be replaced only the top | |
7362 | * most non filter in order to prevent data corruption. | |
7363 | * Another benefit is that this tests exclude backing files which are | |
7364 | * blocked by the backing blockers. | |
7365 | */ | |
810803a8 HR |
7366 | if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) { |
7367 | error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', " | |
7368 | "because it cannot be guaranteed that doing so would not " | |
7369 | "lead to an abrupt change of visible data", | |
7370 | node_name, parent_bs->node_name); | |
5a7e7a0b SH |
7371 | to_replace_bs = NULL; |
7372 | goto out; | |
09158f00 BC |
7373 | } |
7374 | ||
5a7e7a0b SH |
7375 | out: |
7376 | aio_context_release(aio_context); | |
09158f00 BC |
7377 | return to_replace_bs; |
7378 | } | |
448ad91d | 7379 | |
97e2f021 HR |
7380 | /** |
7381 | * Iterates through the list of runtime option keys that are said to | |
7382 | * be "strong" for a BDS. An option is called "strong" if it changes | |
7383 | * a BDS's data. For example, the null block driver's "size" and | |
7384 | * "read-zeroes" options are strong, but its "latency-ns" option is | |
7385 | * not. | |
7386 | * | |
7387 | * If a key returned by this function ends with a dot, all options | |
7388 | * starting with that prefix are strong. | |
7389 | */ | |
7390 | static const char *const *strong_options(BlockDriverState *bs, | |
7391 | const char *const *curopt) | |
7392 | { | |
7393 | static const char *const global_options[] = { | |
7394 | "driver", "filename", NULL | |
7395 | }; | |
7396 | ||
7397 | if (!curopt) { | |
7398 | return &global_options[0]; | |
7399 | } | |
7400 | ||
7401 | curopt++; | |
7402 | if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) { | |
7403 | curopt = bs->drv->strong_runtime_opts; | |
7404 | } | |
7405 | ||
7406 | return (curopt && *curopt) ? curopt : NULL; | |
7407 | } | |
7408 | ||
7409 | /** | |
7410 | * Copies all strong runtime options from bs->options to the given | |
7411 | * QDict. The set of strong option keys is determined by invoking | |
7412 | * strong_options(). | |
7413 | * | |
7414 | * Returns true iff any strong option was present in bs->options (and | |
7415 | * thus copied to the target QDict) with the exception of "filename" | |
7416 | * and "driver". The caller is expected to use this value to decide | |
7417 | * whether the existence of strong options prevents the generation of | |
7418 | * a plain filename. | |
7419 | */ | |
7420 | static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs) | |
7421 | { | |
7422 | bool found_any = false; | |
7423 | const char *const *option_name = NULL; | |
7424 | ||
7425 | if (!bs->drv) { | |
7426 | return false; | |
7427 | } | |
7428 | ||
7429 | while ((option_name = strong_options(bs, option_name))) { | |
7430 | bool option_given = false; | |
7431 | ||
7432 | assert(strlen(*option_name) > 0); | |
7433 | if ((*option_name)[strlen(*option_name) - 1] != '.') { | |
7434 | QObject *entry = qdict_get(bs->options, *option_name); | |
7435 | if (!entry) { | |
7436 | continue; | |
7437 | } | |
7438 | ||
7439 | qdict_put_obj(d, *option_name, qobject_ref(entry)); | |
7440 | option_given = true; | |
7441 | } else { | |
7442 | const QDictEntry *entry; | |
7443 | for (entry = qdict_first(bs->options); entry; | |
7444 | entry = qdict_next(bs->options, entry)) | |
7445 | { | |
7446 | if (strstart(qdict_entry_key(entry), *option_name, NULL)) { | |
7447 | qdict_put_obj(d, qdict_entry_key(entry), | |
7448 | qobject_ref(qdict_entry_value(entry))); | |
7449 | option_given = true; | |
7450 | } | |
7451 | } | |
7452 | } | |
7453 | ||
7454 | /* While "driver" and "filename" need to be included in a JSON filename, | |
7455 | * their existence does not prohibit generation of a plain filename. */ | |
7456 | if (!found_any && option_given && | |
7457 | strcmp(*option_name, "driver") && strcmp(*option_name, "filename")) | |
7458 | { | |
7459 | found_any = true; | |
7460 | } | |
7461 | } | |
7462 | ||
62a01a27 HR |
7463 | if (!qdict_haskey(d, "driver")) { |
7464 | /* Drivers created with bdrv_new_open_driver() may not have a | |
7465 | * @driver option. Add it here. */ | |
7466 | qdict_put_str(d, "driver", bs->drv->format_name); | |
7467 | } | |
7468 | ||
97e2f021 HR |
7469 | return found_any; |
7470 | } | |
7471 | ||
90993623 HR |
7472 | /* Note: This function may return false positives; it may return true |
7473 | * even if opening the backing file specified by bs's image header | |
7474 | * would result in exactly bs->backing. */ | |
fa8fc1d0 | 7475 | static bool bdrv_backing_overridden(BlockDriverState *bs) |
90993623 HR |
7476 | { |
7477 | if (bs->backing) { | |
7478 | return strcmp(bs->auto_backing_file, | |
7479 | bs->backing->bs->filename); | |
7480 | } else { | |
7481 | /* No backing BDS, so if the image header reports any backing | |
7482 | * file, it must have been suppressed */ | |
7483 | return bs->auto_backing_file[0] != '\0'; | |
7484 | } | |
7485 | } | |
7486 | ||
91af7014 HR |
7487 | /* Updates the following BDS fields: |
7488 | * - exact_filename: A filename which may be used for opening a block device | |
7489 | * which (mostly) equals the given BDS (even without any | |
7490 | * other options; so reading and writing must return the same | |
7491 | * results, but caching etc. may be different) | |
7492 | * - full_open_options: Options which, when given when opening a block device | |
7493 | * (without a filename), result in a BDS (mostly) | |
7494 | * equalling the given one | |
7495 | * - filename: If exact_filename is set, it is copied here. Otherwise, | |
7496 | * full_open_options is converted to a JSON object, prefixed with | |
7497 | * "json:" (for use through the JSON pseudo protocol) and put here. | |
7498 | */ | |
7499 | void bdrv_refresh_filename(BlockDriverState *bs) | |
7500 | { | |
7501 | BlockDriver *drv = bs->drv; | |
e24518e3 | 7502 | BdrvChild *child; |
52f72d6f | 7503 | BlockDriverState *primary_child_bs; |
91af7014 | 7504 | QDict *opts; |
90993623 | 7505 | bool backing_overridden; |
998b3a1e HR |
7506 | bool generate_json_filename; /* Whether our default implementation should |
7507 | fill exact_filename (false) or not (true) */ | |
91af7014 HR |
7508 | |
7509 | if (!drv) { | |
7510 | return; | |
7511 | } | |
7512 | ||
e24518e3 HR |
7513 | /* This BDS's file name may depend on any of its children's file names, so |
7514 | * refresh those first */ | |
7515 | QLIST_FOREACH(child, &bs->children, next) { | |
7516 | bdrv_refresh_filename(child->bs); | |
91af7014 HR |
7517 | } |
7518 | ||
bb808d5f HR |
7519 | if (bs->implicit) { |
7520 | /* For implicit nodes, just copy everything from the single child */ | |
7521 | child = QLIST_FIRST(&bs->children); | |
7522 | assert(QLIST_NEXT(child, next) == NULL); | |
7523 | ||
7524 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), | |
7525 | child->bs->exact_filename); | |
7526 | pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename); | |
7527 | ||
cb895614 | 7528 | qobject_unref(bs->full_open_options); |
bb808d5f HR |
7529 | bs->full_open_options = qobject_ref(child->bs->full_open_options); |
7530 | ||
7531 | return; | |
7532 | } | |
7533 | ||
90993623 HR |
7534 | backing_overridden = bdrv_backing_overridden(bs); |
7535 | ||
7536 | if (bs->open_flags & BDRV_O_NO_IO) { | |
7537 | /* Without I/O, the backing file does not change anything. | |
7538 | * Therefore, in such a case (primarily qemu-img), we can | |
7539 | * pretend the backing file has not been overridden even if | |
7540 | * it technically has been. */ | |
7541 | backing_overridden = false; | |
7542 | } | |
7543 | ||
97e2f021 HR |
7544 | /* Gather the options QDict */ |
7545 | opts = qdict_new(); | |
998b3a1e HR |
7546 | generate_json_filename = append_strong_runtime_options(opts, bs); |
7547 | generate_json_filename |= backing_overridden; | |
97e2f021 HR |
7548 | |
7549 | if (drv->bdrv_gather_child_options) { | |
7550 | /* Some block drivers may not want to present all of their children's | |
7551 | * options, or name them differently from BdrvChild.name */ | |
7552 | drv->bdrv_gather_child_options(bs, opts, backing_overridden); | |
7553 | } else { | |
7554 | QLIST_FOREACH(child, &bs->children, next) { | |
25191e5f | 7555 | if (child == bs->backing && !backing_overridden) { |
97e2f021 HR |
7556 | /* We can skip the backing BDS if it has not been overridden */ |
7557 | continue; | |
7558 | } | |
7559 | ||
7560 | qdict_put(opts, child->name, | |
7561 | qobject_ref(child->bs->full_open_options)); | |
7562 | } | |
7563 | ||
7564 | if (backing_overridden && !bs->backing) { | |
7565 | /* Force no backing file */ | |
7566 | qdict_put_null(opts, "backing"); | |
7567 | } | |
7568 | } | |
7569 | ||
7570 | qobject_unref(bs->full_open_options); | |
7571 | bs->full_open_options = opts; | |
7572 | ||
52f72d6f HR |
7573 | primary_child_bs = bdrv_primary_bs(bs); |
7574 | ||
998b3a1e HR |
7575 | if (drv->bdrv_refresh_filename) { |
7576 | /* Obsolete information is of no use here, so drop the old file name | |
7577 | * information before refreshing it */ | |
7578 | bs->exact_filename[0] = '\0'; | |
7579 | ||
7580 | drv->bdrv_refresh_filename(bs); | |
52f72d6f HR |
7581 | } else if (primary_child_bs) { |
7582 | /* | |
7583 | * Try to reconstruct valid information from the underlying | |
7584 | * file -- this only works for format nodes (filter nodes | |
7585 | * cannot be probed and as such must be selected by the user | |
7586 | * either through an options dict, or through a special | |
7587 | * filename which the filter driver must construct in its | |
7588 | * .bdrv_refresh_filename() implementation). | |
7589 | */ | |
998b3a1e HR |
7590 | |
7591 | bs->exact_filename[0] = '\0'; | |
7592 | ||
fb695c74 HR |
7593 | /* |
7594 | * We can use the underlying file's filename if: | |
7595 | * - it has a filename, | |
52f72d6f | 7596 | * - the current BDS is not a filter, |
fb695c74 HR |
7597 | * - the file is a protocol BDS, and |
7598 | * - opening that file (as this BDS's format) will automatically create | |
7599 | * the BDS tree we have right now, that is: | |
7600 | * - the user did not significantly change this BDS's behavior with | |
7601 | * some explicit (strong) options | |
7602 | * - no non-file child of this BDS has been overridden by the user | |
7603 | * Both of these conditions are represented by generate_json_filename. | |
7604 | */ | |
52f72d6f HR |
7605 | if (primary_child_bs->exact_filename[0] && |
7606 | primary_child_bs->drv->bdrv_file_open && | |
7607 | !drv->is_filter && !generate_json_filename) | |
fb695c74 | 7608 | { |
52f72d6f | 7609 | strcpy(bs->exact_filename, primary_child_bs->exact_filename); |
998b3a1e HR |
7610 | } |
7611 | } | |
7612 | ||
91af7014 HR |
7613 | if (bs->exact_filename[0]) { |
7614 | pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); | |
97e2f021 | 7615 | } else { |
eab3a467 | 7616 | GString *json = qobject_to_json(QOBJECT(bs->full_open_options)); |
5c86bdf1 | 7617 | if (snprintf(bs->filename, sizeof(bs->filename), "json:%s", |
eab3a467 | 7618 | json->str) >= sizeof(bs->filename)) { |
5c86bdf1 EB |
7619 | /* Give user a hint if we truncated things. */ |
7620 | strcpy(bs->filename + sizeof(bs->filename) - 4, "..."); | |
7621 | } | |
eab3a467 | 7622 | g_string_free(json, true); |
91af7014 HR |
7623 | } |
7624 | } | |
e06018ad | 7625 | |
1e89d0f9 HR |
7626 | char *bdrv_dirname(BlockDriverState *bs, Error **errp) |
7627 | { | |
7628 | BlockDriver *drv = bs->drv; | |
52f72d6f | 7629 | BlockDriverState *child_bs; |
1e89d0f9 HR |
7630 | |
7631 | if (!drv) { | |
7632 | error_setg(errp, "Node '%s' is ejected", bs->node_name); | |
7633 | return NULL; | |
7634 | } | |
7635 | ||
7636 | if (drv->bdrv_dirname) { | |
7637 | return drv->bdrv_dirname(bs, errp); | |
7638 | } | |
7639 | ||
52f72d6f HR |
7640 | child_bs = bdrv_primary_bs(bs); |
7641 | if (child_bs) { | |
7642 | return bdrv_dirname(child_bs, errp); | |
1e89d0f9 HR |
7643 | } |
7644 | ||
7645 | bdrv_refresh_filename(bs); | |
7646 | if (bs->exact_filename[0] != '\0') { | |
7647 | return path_combine(bs->exact_filename, ""); | |
7648 | } | |
7649 | ||
7650 | error_setg(errp, "Cannot generate a base directory for %s nodes", | |
7651 | drv->format_name); | |
7652 | return NULL; | |
7653 | } | |
7654 | ||
e06018ad WC |
7655 | /* |
7656 | * Hot add/remove a BDS's child. So the user can take a child offline when | |
7657 | * it is broken and take a new child online | |
7658 | */ | |
7659 | void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, | |
7660 | Error **errp) | |
7661 | { | |
7662 | ||
7663 | if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { | |
7664 | error_setg(errp, "The node %s does not support adding a child", | |
7665 | bdrv_get_device_or_node_name(parent_bs)); | |
7666 | return; | |
7667 | } | |
7668 | ||
7669 | if (!QLIST_EMPTY(&child_bs->parents)) { | |
7670 | error_setg(errp, "The node %s already has a parent", | |
7671 | child_bs->node_name); | |
7672 | return; | |
7673 | } | |
7674 | ||
7675 | parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); | |
7676 | } | |
7677 | ||
7678 | void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) | |
7679 | { | |
7680 | BdrvChild *tmp; | |
7681 | ||
7682 | if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { | |
7683 | error_setg(errp, "The node %s does not support removing a child", | |
7684 | bdrv_get_device_or_node_name(parent_bs)); | |
7685 | return; | |
7686 | } | |
7687 | ||
7688 | QLIST_FOREACH(tmp, &parent_bs->children, next) { | |
7689 | if (tmp == child) { | |
7690 | break; | |
7691 | } | |
7692 | } | |
7693 | ||
7694 | if (!tmp) { | |
7695 | error_setg(errp, "The node %s does not have a child named %s", | |
7696 | bdrv_get_device_or_node_name(parent_bs), | |
7697 | bdrv_get_device_or_node_name(child->bs)); | |
7698 | return; | |
7699 | } | |
7700 | ||
7701 | parent_bs->drv->bdrv_del_child(parent_bs, child, errp); | |
7702 | } | |
6f7a3b53 HR |
7703 | |
7704 | int bdrv_make_empty(BdrvChild *c, Error **errp) | |
7705 | { | |
7706 | BlockDriver *drv = c->bs->drv; | |
7707 | int ret; | |
7708 | ||
7709 | assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)); | |
7710 | ||
7711 | if (!drv->bdrv_make_empty) { | |
7712 | error_setg(errp, "%s does not support emptying nodes", | |
7713 | drv->format_name); | |
7714 | return -ENOTSUP; | |
7715 | } | |
7716 | ||
7717 | ret = drv->bdrv_make_empty(c->bs); | |
7718 | if (ret < 0) { | |
7719 | error_setg_errno(errp, -ret, "Failed to empty %s", | |
7720 | c->bs->filename); | |
7721 | return ret; | |
7722 | } | |
7723 | ||
7724 | return 0; | |
7725 | } | |
9a6fc887 HR |
7726 | |
7727 | /* | |
7728 | * Return the child that @bs acts as an overlay for, and from which data may be | |
7729 | * copied in COW or COR operations. Usually this is the backing file. | |
7730 | */ | |
7731 | BdrvChild *bdrv_cow_child(BlockDriverState *bs) | |
7732 | { | |
7733 | if (!bs || !bs->drv) { | |
7734 | return NULL; | |
7735 | } | |
7736 | ||
7737 | if (bs->drv->is_filter) { | |
7738 | return NULL; | |
7739 | } | |
7740 | ||
7741 | if (!bs->backing) { | |
7742 | return NULL; | |
7743 | } | |
7744 | ||
7745 | assert(bs->backing->role & BDRV_CHILD_COW); | |
7746 | return bs->backing; | |
7747 | } | |
7748 | ||
7749 | /* | |
7750 | * If @bs acts as a filter for exactly one of its children, return | |
7751 | * that child. | |
7752 | */ | |
7753 | BdrvChild *bdrv_filter_child(BlockDriverState *bs) | |
7754 | { | |
7755 | BdrvChild *c; | |
7756 | ||
7757 | if (!bs || !bs->drv) { | |
7758 | return NULL; | |
7759 | } | |
7760 | ||
7761 | if (!bs->drv->is_filter) { | |
7762 | return NULL; | |
7763 | } | |
7764 | ||
7765 | /* Only one of @backing or @file may be used */ | |
7766 | assert(!(bs->backing && bs->file)); | |
7767 | ||
7768 | c = bs->backing ?: bs->file; | |
7769 | if (!c) { | |
7770 | return NULL; | |
7771 | } | |
7772 | ||
7773 | assert(c->role & BDRV_CHILD_FILTERED); | |
7774 | return c; | |
7775 | } | |
7776 | ||
7777 | /* | |
7778 | * Return either the result of bdrv_cow_child() or bdrv_filter_child(), | |
7779 | * whichever is non-NULL. | |
7780 | * | |
7781 | * Return NULL if both are NULL. | |
7782 | */ | |
7783 | BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs) | |
7784 | { | |
7785 | BdrvChild *cow_child = bdrv_cow_child(bs); | |
7786 | BdrvChild *filter_child = bdrv_filter_child(bs); | |
7787 | ||
7788 | /* Filter nodes cannot have COW backing files */ | |
7789 | assert(!(cow_child && filter_child)); | |
7790 | ||
7791 | return cow_child ?: filter_child; | |
7792 | } | |
7793 | ||
7794 | /* | |
7795 | * Return the primary child of this node: For filters, that is the | |
7796 | * filtered child. For other nodes, that is usually the child storing | |
7797 | * metadata. | |
7798 | * (A generally more helpful description is that this is (usually) the | |
7799 | * child that has the same filename as @bs.) | |
7800 | * | |
7801 | * Drivers do not necessarily have a primary child; for example quorum | |
7802 | * does not. | |
7803 | */ | |
7804 | BdrvChild *bdrv_primary_child(BlockDriverState *bs) | |
7805 | { | |
7806 | BdrvChild *c, *found = NULL; | |
7807 | ||
7808 | QLIST_FOREACH(c, &bs->children, next) { | |
7809 | if (c->role & BDRV_CHILD_PRIMARY) { | |
7810 | assert(!found); | |
7811 | found = c; | |
7812 | } | |
7813 | } | |
7814 | ||
7815 | return found; | |
7816 | } | |
d38d7eb8 HR |
7817 | |
7818 | static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs, | |
7819 | bool stop_on_explicit_filter) | |
7820 | { | |
7821 | BdrvChild *c; | |
7822 | ||
7823 | if (!bs) { | |
7824 | return NULL; | |
7825 | } | |
7826 | ||
7827 | while (!(stop_on_explicit_filter && !bs->implicit)) { | |
7828 | c = bdrv_filter_child(bs); | |
7829 | if (!c) { | |
7830 | /* | |
7831 | * A filter that is embedded in a working block graph must | |
7832 | * have a child. Assert this here so this function does | |
7833 | * not return a filter node that is not expected by the | |
7834 | * caller. | |
7835 | */ | |
7836 | assert(!bs->drv || !bs->drv->is_filter); | |
7837 | break; | |
7838 | } | |
7839 | bs = c->bs; | |
7840 | } | |
7841 | /* | |
7842 | * Note that this treats nodes with bs->drv == NULL as not being | |
7843 | * filters (bs->drv == NULL should be replaced by something else | |
7844 | * anyway). | |
7845 | * The advantage of this behavior is that this function will thus | |
7846 | * always return a non-NULL value (given a non-NULL @bs). | |
7847 | */ | |
7848 | ||
7849 | return bs; | |
7850 | } | |
7851 | ||
7852 | /* | |
7853 | * Return the first BDS that has not been added implicitly or that | |
7854 | * does not have a filtered child down the chain starting from @bs | |
7855 | * (including @bs itself). | |
7856 | */ | |
7857 | BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs) | |
7858 | { | |
7859 | return bdrv_do_skip_filters(bs, true); | |
7860 | } | |
7861 | ||
7862 | /* | |
7863 | * Return the first BDS that does not have a filtered child down the | |
7864 | * chain starting from @bs (including @bs itself). | |
7865 | */ | |
7866 | BlockDriverState *bdrv_skip_filters(BlockDriverState *bs) | |
7867 | { | |
7868 | return bdrv_do_skip_filters(bs, false); | |
7869 | } | |
7870 | ||
7871 | /* | |
7872 | * For a backing chain, return the first non-filter backing image of | |
7873 | * the first non-filter image. | |
7874 | */ | |
7875 | BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs) | |
7876 | { | |
7877 | return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs))); | |
7878 | } | |
0bc329fb HR |
7879 | |
7880 | /** | |
7881 | * Check whether [offset, offset + bytes) overlaps with the cached | |
7882 | * block-status data region. | |
7883 | * | |
7884 | * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`, | |
7885 | * which is what bdrv_bsc_is_data()'s interface needs. | |
7886 | * Otherwise, *pnum is not touched. | |
7887 | */ | |
7888 | static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs, | |
7889 | int64_t offset, int64_t bytes, | |
7890 | int64_t *pnum) | |
7891 | { | |
7892 | BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache); | |
7893 | bool overlaps; | |
7894 | ||
7895 | overlaps = | |
7896 | qatomic_read(&bsc->valid) && | |
7897 | ranges_overlap(offset, bytes, bsc->data_start, | |
7898 | bsc->data_end - bsc->data_start); | |
7899 | ||
7900 | if (overlaps && pnum) { | |
7901 | *pnum = bsc->data_end - offset; | |
7902 | } | |
7903 | ||
7904 | return overlaps; | |
7905 | } | |
7906 | ||
7907 | /** | |
7908 | * See block_int.h for this function's documentation. | |
7909 | */ | |
7910 | bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum) | |
7911 | { | |
7912 | RCU_READ_LOCK_GUARD(); | |
7913 | ||
7914 | return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum); | |
7915 | } | |
7916 | ||
7917 | /** | |
7918 | * See block_int.h for this function's documentation. | |
7919 | */ | |
7920 | void bdrv_bsc_invalidate_range(BlockDriverState *bs, | |
7921 | int64_t offset, int64_t bytes) | |
7922 | { | |
7923 | RCU_READ_LOCK_GUARD(); | |
7924 | ||
7925 | if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) { | |
7926 | qatomic_set(&bs->block_status_cache->valid, false); | |
7927 | } | |
7928 | } | |
7929 | ||
7930 | /** | |
7931 | * See block_int.h for this function's documentation. | |
7932 | */ | |
7933 | void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes) | |
7934 | { | |
7935 | BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1); | |
7936 | BdrvBlockStatusCache *old_bsc; | |
7937 | ||
7938 | *new_bsc = (BdrvBlockStatusCache) { | |
7939 | .valid = true, | |
7940 | .data_start = offset, | |
7941 | .data_end = offset + bytes, | |
7942 | }; | |
7943 | ||
7944 | QEMU_LOCK_GUARD(&bs->bsc_modify_lock); | |
7945 | ||
7946 | old_bsc = qatomic_rcu_read(&bs->block_status_cache); | |
7947 | qatomic_rcu_set(&bs->block_status_cache, new_bsc); | |
7948 | if (old_bsc) { | |
7949 | g_free_rcu(old_bsc, rcu); | |
7950 | } | |
7951 | } |