]>
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 | ||
c0829cb1 VSO |
3344 | bdrv_drained_begin(bs); |
3345 | ||
160333e1 VSO |
3346 | ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp); |
3347 | if (ret < 0) { | |
3348 | goto out; | |
3349 | } | |
3350 | ||
3351 | ret = bdrv_refresh_perms(bs, errp); | |
3352 | out: | |
3353 | tran_finalize(tran, ret); | |
a1e708fc | 3354 | |
c0829cb1 VSO |
3355 | bdrv_drained_end(bs); |
3356 | ||
a1e708fc | 3357 | return ret; |
8d24cce1 FZ |
3358 | } |
3359 | ||
31ca6d07 KW |
3360 | /* |
3361 | * Opens the backing file for a BlockDriverState if not yet open | |
3362 | * | |
d9b7b057 KW |
3363 | * bdref_key specifies the key for the image's BlockdevRef in the options QDict. |
3364 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict | |
3365 | * itself, all options starting with "${bdref_key}." are considered part of the | |
3366 | * BlockdevRef. | |
3367 | * | |
3368 | * TODO Can this be unified with bdrv_open_image()? | |
31ca6d07 | 3369 | */ |
d9b7b057 KW |
3370 | int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, |
3371 | const char *bdref_key, Error **errp) | |
9156df12 | 3372 | { |
6b6833c1 | 3373 | char *backing_filename = NULL; |
d9b7b057 KW |
3374 | char *bdref_key_dot; |
3375 | const char *reference = NULL; | |
317fc44e | 3376 | int ret = 0; |
998c2019 | 3377 | bool implicit_backing = false; |
8d24cce1 | 3378 | BlockDriverState *backing_hd; |
d9b7b057 KW |
3379 | QDict *options; |
3380 | QDict *tmp_parent_options = NULL; | |
34b5d2c6 | 3381 | Error *local_err = NULL; |
9156df12 | 3382 | |
760e0063 | 3383 | if (bs->backing != NULL) { |
1ba4b6a5 | 3384 | goto free_exit; |
9156df12 PB |
3385 | } |
3386 | ||
31ca6d07 | 3387 | /* NULL means an empty set of options */ |
d9b7b057 KW |
3388 | if (parent_options == NULL) { |
3389 | tmp_parent_options = qdict_new(); | |
3390 | parent_options = tmp_parent_options; | |
31ca6d07 KW |
3391 | } |
3392 | ||
9156df12 | 3393 | bs->open_flags &= ~BDRV_O_NO_BACKING; |
d9b7b057 KW |
3394 | |
3395 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); | |
3396 | qdict_extract_subqdict(parent_options, &options, bdref_key_dot); | |
3397 | g_free(bdref_key_dot); | |
3398 | ||
129c7d1c MA |
3399 | /* |
3400 | * Caution: while qdict_get_try_str() is fine, getting non-string | |
3401 | * types would require more care. When @parent_options come from | |
3402 | * -blockdev or blockdev_add, its members are typed according to | |
3403 | * the QAPI schema, but when they come from -drive, they're all | |
3404 | * QString. | |
3405 | */ | |
d9b7b057 KW |
3406 | reference = qdict_get_try_str(parent_options, bdref_key); |
3407 | if (reference || qdict_haskey(options, "file.filename")) { | |
6b6833c1 | 3408 | /* keep backing_filename NULL */ |
1cb6f506 | 3409 | } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { |
cb3e7f08 | 3410 | qobject_unref(options); |
1ba4b6a5 | 3411 | goto free_exit; |
dbecebdd | 3412 | } else { |
998c2019 HR |
3413 | if (qdict_size(options) == 0) { |
3414 | /* If the user specifies options that do not modify the | |
3415 | * backing file's behavior, we might still consider it the | |
3416 | * implicit backing file. But it's easier this way, and | |
3417 | * just specifying some of the backing BDS's options is | |
3418 | * only possible with -drive anyway (otherwise the QAPI | |
3419 | * schema forces the user to specify everything). */ | |
3420 | implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file); | |
3421 | } | |
3422 | ||
6b6833c1 | 3423 | backing_filename = bdrv_get_full_backing_filename(bs, &local_err); |
9f07429e HR |
3424 | if (local_err) { |
3425 | ret = -EINVAL; | |
3426 | error_propagate(errp, local_err); | |
cb3e7f08 | 3427 | qobject_unref(options); |
9f07429e HR |
3428 | goto free_exit; |
3429 | } | |
9156df12 PB |
3430 | } |
3431 | ||
8ee79e70 KW |
3432 | if (!bs->drv || !bs->drv->supports_backing) { |
3433 | ret = -EINVAL; | |
3434 | error_setg(errp, "Driver doesn't support backing files"); | |
cb3e7f08 | 3435 | qobject_unref(options); |
8ee79e70 KW |
3436 | goto free_exit; |
3437 | } | |
3438 | ||
6bff597b PK |
3439 | if (!reference && |
3440 | bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { | |
46f5ac20 | 3441 | qdict_put_str(options, "driver", bs->backing_format); |
9156df12 PB |
3442 | } |
3443 | ||
6b6833c1 | 3444 | backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs, |
25191e5f | 3445 | &child_of_bds, bdrv_backing_role(bs), errp); |
5b363937 | 3446 | if (!backing_hd) { |
9156df12 | 3447 | bs->open_flags |= BDRV_O_NO_BACKING; |
e43bfd9c | 3448 | error_prepend(errp, "Could not open backing file: "); |
5b363937 | 3449 | ret = -EINVAL; |
1ba4b6a5 | 3450 | goto free_exit; |
9156df12 | 3451 | } |
df581792 | 3452 | |
998c2019 HR |
3453 | if (implicit_backing) { |
3454 | bdrv_refresh_filename(backing_hd); | |
3455 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), | |
3456 | backing_hd->filename); | |
3457 | } | |
3458 | ||
5db15a57 KW |
3459 | /* Hook up the backing file link; drop our reference, bs owns the |
3460 | * backing_hd reference now */ | |
dc9c10a1 | 3461 | ret = bdrv_set_backing_hd(bs, backing_hd, errp); |
5db15a57 | 3462 | bdrv_unref(backing_hd); |
dc9c10a1 | 3463 | if (ret < 0) { |
12fa4af6 KW |
3464 | goto free_exit; |
3465 | } | |
d80ac658 | 3466 | |
d9b7b057 KW |
3467 | qdict_del(parent_options, bdref_key); |
3468 | ||
1ba4b6a5 BC |
3469 | free_exit: |
3470 | g_free(backing_filename); | |
cb3e7f08 | 3471 | qobject_unref(tmp_parent_options); |
1ba4b6a5 | 3472 | return ret; |
9156df12 PB |
3473 | } |
3474 | ||
2d6b86af KW |
3475 | static BlockDriverState * |
3476 | bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, | |
bd86fb99 | 3477 | BlockDriverState *parent, const BdrvChildClass *child_class, |
272c02ea | 3478 | BdrvChildRole child_role, bool allow_none, Error **errp) |
da557aac | 3479 | { |
2d6b86af | 3480 | BlockDriverState *bs = NULL; |
da557aac | 3481 | QDict *image_options; |
da557aac HR |
3482 | char *bdref_key_dot; |
3483 | const char *reference; | |
3484 | ||
bd86fb99 | 3485 | assert(child_class != NULL); |
f67503e5 | 3486 | |
da557aac HR |
3487 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
3488 | qdict_extract_subqdict(options, &image_options, bdref_key_dot); | |
3489 | g_free(bdref_key_dot); | |
3490 | ||
129c7d1c MA |
3491 | /* |
3492 | * Caution: while qdict_get_try_str() is fine, getting non-string | |
3493 | * types would require more care. When @options come from | |
3494 | * -blockdev or blockdev_add, its members are typed according to | |
3495 | * the QAPI schema, but when they come from -drive, they're all | |
3496 | * QString. | |
3497 | */ | |
da557aac HR |
3498 | reference = qdict_get_try_str(options, bdref_key); |
3499 | if (!filename && !reference && !qdict_size(image_options)) { | |
b4b059f6 | 3500 | if (!allow_none) { |
da557aac HR |
3501 | error_setg(errp, "A block device must be specified for \"%s\"", |
3502 | bdref_key); | |
da557aac | 3503 | } |
cb3e7f08 | 3504 | qobject_unref(image_options); |
da557aac HR |
3505 | goto done; |
3506 | } | |
3507 | ||
5b363937 | 3508 | bs = bdrv_open_inherit(filename, reference, image_options, 0, |
272c02ea | 3509 | parent, child_class, child_role, errp); |
5b363937 | 3510 | if (!bs) { |
df581792 KW |
3511 | goto done; |
3512 | } | |
3513 | ||
da557aac HR |
3514 | done: |
3515 | qdict_del(options, bdref_key); | |
2d6b86af KW |
3516 | return bs; |
3517 | } | |
3518 | ||
3519 | /* | |
3520 | * Opens a disk image whose options are given as BlockdevRef in another block | |
3521 | * device's options. | |
3522 | * | |
3523 | * If allow_none is true, no image will be opened if filename is false and no | |
3524 | * BlockdevRef is given. NULL will be returned, but errp remains unset. | |
3525 | * | |
3526 | * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. | |
3527 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict | |
3528 | * itself, all options starting with "${bdref_key}." are considered part of the | |
3529 | * BlockdevRef. | |
3530 | * | |
3531 | * The BlockdevRef will be removed from the options QDict. | |
3532 | */ | |
3533 | BdrvChild *bdrv_open_child(const char *filename, | |
3534 | QDict *options, const char *bdref_key, | |
3535 | BlockDriverState *parent, | |
bd86fb99 | 3536 | const BdrvChildClass *child_class, |
258b7765 | 3537 | BdrvChildRole child_role, |
2d6b86af KW |
3538 | bool allow_none, Error **errp) |
3539 | { | |
3540 | BlockDriverState *bs; | |
3541 | ||
bd86fb99 | 3542 | bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class, |
272c02ea | 3543 | child_role, allow_none, errp); |
2d6b86af KW |
3544 | if (bs == NULL) { |
3545 | return NULL; | |
3546 | } | |
3547 | ||
258b7765 HR |
3548 | return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role, |
3549 | errp); | |
b4b059f6 KW |
3550 | } |
3551 | ||
bd86fb99 HR |
3552 | /* |
3553 | * TODO Future callers may need to specify parent/child_class in order for | |
3554 | * option inheritance to work. Existing callers use it for the root node. | |
3555 | */ | |
e1d74bc6 KW |
3556 | BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) |
3557 | { | |
3558 | BlockDriverState *bs = NULL; | |
e1d74bc6 KW |
3559 | QObject *obj = NULL; |
3560 | QDict *qdict = NULL; | |
3561 | const char *reference = NULL; | |
3562 | Visitor *v = NULL; | |
3563 | ||
3564 | if (ref->type == QTYPE_QSTRING) { | |
3565 | reference = ref->u.reference; | |
3566 | } else { | |
3567 | BlockdevOptions *options = &ref->u.definition; | |
3568 | assert(ref->type == QTYPE_QDICT); | |
3569 | ||
3570 | v = qobject_output_visitor_new(&obj); | |
1f584248 | 3571 | visit_type_BlockdevOptions(v, NULL, &options, &error_abort); |
e1d74bc6 KW |
3572 | visit_complete(v, &obj); |
3573 | ||
7dc847eb | 3574 | qdict = qobject_to(QDict, obj); |
e1d74bc6 KW |
3575 | qdict_flatten(qdict); |
3576 | ||
3577 | /* bdrv_open_inherit() defaults to the values in bdrv_flags (for | |
3578 | * compatibility with other callers) rather than what we want as the | |
3579 | * real defaults. Apply the defaults here instead. */ | |
3580 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); | |
3581 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); | |
3582 | qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); | |
e35bdc12 KW |
3583 | qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off"); |
3584 | ||
e1d74bc6 KW |
3585 | } |
3586 | ||
272c02ea | 3587 | bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp); |
e1d74bc6 | 3588 | obj = NULL; |
cb3e7f08 | 3589 | qobject_unref(obj); |
e1d74bc6 KW |
3590 | visit_free(v); |
3591 | return bs; | |
3592 | } | |
3593 | ||
66836189 HR |
3594 | static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, |
3595 | int flags, | |
3596 | QDict *snapshot_options, | |
3597 | Error **errp) | |
b998875d KW |
3598 | { |
3599 | /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ | |
1ba4b6a5 | 3600 | char *tmp_filename = g_malloc0(PATH_MAX + 1); |
b998875d | 3601 | int64_t total_size; |
83d0521a | 3602 | QemuOpts *opts = NULL; |
ff6ed714 | 3603 | BlockDriverState *bs_snapshot = NULL; |
b998875d KW |
3604 | int ret; |
3605 | ||
3606 | /* if snapshot, we create a temporary backing file and open it | |
3607 | instead of opening 'filename' directly */ | |
3608 | ||
3609 | /* Get the required size from the image */ | |
f187743a KW |
3610 | total_size = bdrv_getlength(bs); |
3611 | if (total_size < 0) { | |
3612 | error_setg_errno(errp, -total_size, "Could not get image size"); | |
1ba4b6a5 | 3613 | goto out; |
f187743a | 3614 | } |
b998875d KW |
3615 | |
3616 | /* Create the temporary image */ | |
1ba4b6a5 | 3617 | ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); |
b998875d KW |
3618 | if (ret < 0) { |
3619 | error_setg_errno(errp, -ret, "Could not get temporary filename"); | |
1ba4b6a5 | 3620 | goto out; |
b998875d KW |
3621 | } |
3622 | ||
ef810437 | 3623 | opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, |
c282e1fd | 3624 | &error_abort); |
39101f25 | 3625 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); |
e43bfd9c | 3626 | ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); |
83d0521a | 3627 | qemu_opts_del(opts); |
b998875d | 3628 | if (ret < 0) { |
e43bfd9c MA |
3629 | error_prepend(errp, "Could not create temporary overlay '%s': ", |
3630 | tmp_filename); | |
1ba4b6a5 | 3631 | goto out; |
b998875d KW |
3632 | } |
3633 | ||
73176bee | 3634 | /* Prepare options QDict for the temporary file */ |
46f5ac20 EB |
3635 | qdict_put_str(snapshot_options, "file.driver", "file"); |
3636 | qdict_put_str(snapshot_options, "file.filename", tmp_filename); | |
3637 | qdict_put_str(snapshot_options, "driver", "qcow2"); | |
b998875d | 3638 | |
5b363937 | 3639 | bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); |
73176bee | 3640 | snapshot_options = NULL; |
5b363937 | 3641 | if (!bs_snapshot) { |
1ba4b6a5 | 3642 | goto out; |
b998875d KW |
3643 | } |
3644 | ||
934aee14 VSO |
3645 | ret = bdrv_append(bs_snapshot, bs, errp); |
3646 | if (ret < 0) { | |
ff6ed714 | 3647 | bs_snapshot = NULL; |
b2c2832c KW |
3648 | goto out; |
3649 | } | |
1ba4b6a5 BC |
3650 | |
3651 | out: | |
cb3e7f08 | 3652 | qobject_unref(snapshot_options); |
1ba4b6a5 | 3653 | g_free(tmp_filename); |
ff6ed714 | 3654 | return bs_snapshot; |
b998875d KW |
3655 | } |
3656 | ||
b6ce07aa KW |
3657 | /* |
3658 | * Opens a disk image (raw, qcow2, vmdk, ...) | |
de9c0cec KW |
3659 | * |
3660 | * options is a QDict of options to pass to the block drivers, or NULL for an | |
3661 | * empty set of options. The reference to the QDict belongs to the block layer | |
3662 | * after the call (even on failure), so if the caller intends to reuse the | |
cb3e7f08 | 3663 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
f67503e5 HR |
3664 | * |
3665 | * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. | |
3666 | * If it is not NULL, the referenced BDS will be reused. | |
ddf5636d HR |
3667 | * |
3668 | * The reference parameter may be used to specify an existing block device which | |
3669 | * should be opened. If specified, neither options nor a filename may be given, | |
3670 | * nor can an existing BDS be reused (that is, *pbs has to be NULL). | |
b6ce07aa | 3671 | */ |
5b363937 HR |
3672 | static BlockDriverState *bdrv_open_inherit(const char *filename, |
3673 | const char *reference, | |
3674 | QDict *options, int flags, | |
3675 | BlockDriverState *parent, | |
bd86fb99 | 3676 | const BdrvChildClass *child_class, |
272c02ea | 3677 | BdrvChildRole child_role, |
5b363937 | 3678 | Error **errp) |
ea2384d3 | 3679 | { |
b6ce07aa | 3680 | int ret; |
5696c6e3 | 3681 | BlockBackend *file = NULL; |
9a4f4c31 | 3682 | BlockDriverState *bs; |
ce343771 | 3683 | BlockDriver *drv = NULL; |
2f624b80 | 3684 | BdrvChild *child; |
74fe54f2 | 3685 | const char *drvname; |
3e8c2e57 | 3686 | const char *backing; |
34b5d2c6 | 3687 | Error *local_err = NULL; |
73176bee | 3688 | QDict *snapshot_options = NULL; |
b1e6fc08 | 3689 | int snapshot_flags = 0; |
712e7874 | 3690 | |
bd86fb99 HR |
3691 | assert(!child_class || !flags); |
3692 | assert(!child_class == !parent); | |
f67503e5 | 3693 | |
ddf5636d HR |
3694 | if (reference) { |
3695 | bool options_non_empty = options ? qdict_size(options) : false; | |
cb3e7f08 | 3696 | qobject_unref(options); |
ddf5636d | 3697 | |
ddf5636d HR |
3698 | if (filename || options_non_empty) { |
3699 | error_setg(errp, "Cannot reference an existing block device with " | |
3700 | "additional options or a new filename"); | |
5b363937 | 3701 | return NULL; |
ddf5636d HR |
3702 | } |
3703 | ||
3704 | bs = bdrv_lookup_bs(reference, reference, errp); | |
3705 | if (!bs) { | |
5b363937 | 3706 | return NULL; |
ddf5636d | 3707 | } |
76b22320 | 3708 | |
ddf5636d | 3709 | bdrv_ref(bs); |
5b363937 | 3710 | return bs; |
ddf5636d HR |
3711 | } |
3712 | ||
5b363937 | 3713 | bs = bdrv_new(); |
f67503e5 | 3714 | |
de9c0cec KW |
3715 | /* NULL means an empty set of options */ |
3716 | if (options == NULL) { | |
3717 | options = qdict_new(); | |
3718 | } | |
3719 | ||
145f598e | 3720 | /* json: syntax counts as explicit options, as if in the QDict */ |
de3b53f0 KW |
3721 | parse_json_protocol(options, &filename, &local_err); |
3722 | if (local_err) { | |
de3b53f0 KW |
3723 | goto fail; |
3724 | } | |
3725 | ||
145f598e KW |
3726 | bs->explicit_options = qdict_clone_shallow(options); |
3727 | ||
bd86fb99 | 3728 | if (child_class) { |
3cdc69d3 HR |
3729 | bool parent_is_format; |
3730 | ||
3731 | if (parent->drv) { | |
3732 | parent_is_format = parent->drv->is_format; | |
3733 | } else { | |
3734 | /* | |
3735 | * parent->drv is not set yet because this node is opened for | |
3736 | * (potential) format probing. That means that @parent is going | |
3737 | * to be a format node. | |
3738 | */ | |
3739 | parent_is_format = true; | |
3740 | } | |
3741 | ||
bddcec37 | 3742 | bs->inherits_from = parent; |
3cdc69d3 HR |
3743 | child_class->inherit_options(child_role, parent_is_format, |
3744 | &flags, options, | |
bd86fb99 | 3745 | parent->open_flags, parent->options); |
f3930ed0 KW |
3746 | } |
3747 | ||
de3b53f0 | 3748 | ret = bdrv_fill_options(&options, filename, &flags, &local_err); |
dfde483e | 3749 | if (ret < 0) { |
462f5bcf KW |
3750 | goto fail; |
3751 | } | |
3752 | ||
129c7d1c MA |
3753 | /* |
3754 | * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. | |
3755 | * Caution: getting a boolean member of @options requires care. | |
3756 | * When @options come from -blockdev or blockdev_add, members are | |
3757 | * typed according to the QAPI schema, but when they come from | |
3758 | * -drive, they're all QString. | |
3759 | */ | |
f87a0e29 AG |
3760 | if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && |
3761 | !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { | |
3762 | flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); | |
3763 | } else { | |
3764 | flags &= ~BDRV_O_RDWR; | |
14499ea5 AG |
3765 | } |
3766 | ||
3767 | if (flags & BDRV_O_SNAPSHOT) { | |
3768 | snapshot_options = qdict_new(); | |
3769 | bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, | |
3770 | flags, options); | |
f87a0e29 AG |
3771 | /* Let bdrv_backing_options() override "read-only" */ |
3772 | qdict_del(options, BDRV_OPT_READ_ONLY); | |
00ff7ffd HR |
3773 | bdrv_inherited_options(BDRV_CHILD_COW, true, |
3774 | &flags, options, flags, options); | |
14499ea5 AG |
3775 | } |
3776 | ||
62392ebb KW |
3777 | bs->open_flags = flags; |
3778 | bs->options = options; | |
3779 | options = qdict_clone_shallow(options); | |
3780 | ||
76c591b0 | 3781 | /* Find the right image format driver */ |
129c7d1c | 3782 | /* See cautionary note on accessing @options above */ |
76c591b0 KW |
3783 | drvname = qdict_get_try_str(options, "driver"); |
3784 | if (drvname) { | |
3785 | drv = bdrv_find_format(drvname); | |
76c591b0 KW |
3786 | if (!drv) { |
3787 | error_setg(errp, "Unknown driver: '%s'", drvname); | |
76c591b0 KW |
3788 | goto fail; |
3789 | } | |
3790 | } | |
3791 | ||
3792 | assert(drvname || !(flags & BDRV_O_PROTOCOL)); | |
76c591b0 | 3793 | |
129c7d1c | 3794 | /* See cautionary note on accessing @options above */ |
3e8c2e57 | 3795 | backing = qdict_get_try_str(options, "backing"); |
e59a0cf1 HR |
3796 | if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || |
3797 | (backing && *backing == '\0')) | |
3798 | { | |
4f7be280 HR |
3799 | if (backing) { |
3800 | warn_report("Use of \"backing\": \"\" is deprecated; " | |
3801 | "use \"backing\": null instead"); | |
3802 | } | |
3e8c2e57 | 3803 | flags |= BDRV_O_NO_BACKING; |
ae0f57f0 KW |
3804 | qdict_del(bs->explicit_options, "backing"); |
3805 | qdict_del(bs->options, "backing"); | |
3e8c2e57 AG |
3806 | qdict_del(options, "backing"); |
3807 | } | |
3808 | ||
5696c6e3 | 3809 | /* Open image file without format layer. This BlockBackend is only used for |
4e4bf5c4 KW |
3810 | * probing, the block drivers will do their own bdrv_open_child() for the |
3811 | * same BDS, which is why we put the node name back into options. */ | |
f4788adc | 3812 | if ((flags & BDRV_O_PROTOCOL) == 0) { |
5696c6e3 KW |
3813 | BlockDriverState *file_bs; |
3814 | ||
3815 | file_bs = bdrv_open_child_bs(filename, options, "file", bs, | |
58944401 HR |
3816 | &child_of_bds, BDRV_CHILD_IMAGE, |
3817 | true, &local_err); | |
1fdd6933 | 3818 | if (local_err) { |
f4788adc KW |
3819 | goto fail; |
3820 | } | |
5696c6e3 | 3821 | if (file_bs != NULL) { |
dacaa162 KW |
3822 | /* Not requesting BLK_PERM_CONSISTENT_READ because we're only |
3823 | * looking at the header to guess the image format. This works even | |
3824 | * in cases where a guest would not see a consistent state. */ | |
d861ab3a | 3825 | file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL); |
d7086422 | 3826 | blk_insert_bs(file, file_bs, &local_err); |
5696c6e3 | 3827 | bdrv_unref(file_bs); |
d7086422 KW |
3828 | if (local_err) { |
3829 | goto fail; | |
3830 | } | |
5696c6e3 | 3831 | |
46f5ac20 | 3832 | qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); |
4e4bf5c4 | 3833 | } |
f500a6d3 KW |
3834 | } |
3835 | ||
76c591b0 | 3836 | /* Image format probing */ |
38f3ef57 | 3837 | bs->probed = !drv; |
76c591b0 | 3838 | if (!drv && file) { |
cf2ab8fc | 3839 | ret = find_image_format(file, filename, &drv, &local_err); |
17b005f1 | 3840 | if (ret < 0) { |
8bfea15d | 3841 | goto fail; |
2a05cbe4 | 3842 | } |
62392ebb KW |
3843 | /* |
3844 | * This option update would logically belong in bdrv_fill_options(), | |
3845 | * but we first need to open bs->file for the probing to work, while | |
3846 | * opening bs->file already requires the (mostly) final set of options | |
3847 | * so that cache mode etc. can be inherited. | |
3848 | * | |
3849 | * Adding the driver later is somewhat ugly, but it's not an option | |
3850 | * that would ever be inherited, so it's correct. We just need to make | |
3851 | * sure to update both bs->options (which has the full effective | |
3852 | * options for bs) and options (which has file.* already removed). | |
3853 | */ | |
46f5ac20 EB |
3854 | qdict_put_str(bs->options, "driver", drv->format_name); |
3855 | qdict_put_str(options, "driver", drv->format_name); | |
76c591b0 | 3856 | } else if (!drv) { |
17b005f1 | 3857 | error_setg(errp, "Must specify either driver or file"); |
8bfea15d | 3858 | goto fail; |
ea2384d3 | 3859 | } |
b6ce07aa | 3860 | |
53a29513 HR |
3861 | /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ |
3862 | assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); | |
3863 | /* file must be NULL if a protocol BDS is about to be created | |
3864 | * (the inverse results in an error message from bdrv_open_common()) */ | |
3865 | assert(!(flags & BDRV_O_PROTOCOL) || !file); | |
3866 | ||
b6ce07aa | 3867 | /* Open the image */ |
82dc8b41 | 3868 | ret = bdrv_open_common(bs, file, options, &local_err); |
b6ce07aa | 3869 | if (ret < 0) { |
8bfea15d | 3870 | goto fail; |
6987307c CH |
3871 | } |
3872 | ||
4e4bf5c4 | 3873 | if (file) { |
5696c6e3 | 3874 | blk_unref(file); |
f500a6d3 KW |
3875 | file = NULL; |
3876 | } | |
3877 | ||
b6ce07aa | 3878 | /* If there is a backing file, use it */ |
9156df12 | 3879 | if ((flags & BDRV_O_NO_BACKING) == 0) { |
d9b7b057 | 3880 | ret = bdrv_open_backing_file(bs, options, "backing", &local_err); |
b6ce07aa | 3881 | if (ret < 0) { |
b6ad491a | 3882 | goto close_and_fail; |
b6ce07aa | 3883 | } |
b6ce07aa KW |
3884 | } |
3885 | ||
50196d7a AG |
3886 | /* Remove all children options and references |
3887 | * from bs->options and bs->explicit_options */ | |
2f624b80 AG |
3888 | QLIST_FOREACH(child, &bs->children, next) { |
3889 | char *child_key_dot; | |
3890 | child_key_dot = g_strdup_printf("%s.", child->name); | |
3891 | qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot); | |
3892 | qdict_extract_subqdict(bs->options, NULL, child_key_dot); | |
50196d7a AG |
3893 | qdict_del(bs->explicit_options, child->name); |
3894 | qdict_del(bs->options, child->name); | |
2f624b80 AG |
3895 | g_free(child_key_dot); |
3896 | } | |
3897 | ||
b6ad491a | 3898 | /* Check if any unknown options were used */ |
7ad2757f | 3899 | if (qdict_size(options) != 0) { |
b6ad491a | 3900 | const QDictEntry *entry = qdict_first(options); |
5acd9d81 HR |
3901 | if (flags & BDRV_O_PROTOCOL) { |
3902 | error_setg(errp, "Block protocol '%s' doesn't support the option " | |
3903 | "'%s'", drv->format_name, entry->key); | |
3904 | } else { | |
d0e46a55 HR |
3905 | error_setg(errp, |
3906 | "Block format '%s' does not support the option '%s'", | |
3907 | drv->format_name, entry->key); | |
5acd9d81 | 3908 | } |
b6ad491a | 3909 | |
b6ad491a KW |
3910 | goto close_and_fail; |
3911 | } | |
b6ad491a | 3912 | |
c01c214b | 3913 | bdrv_parent_cb_change_media(bs, true); |
b6ce07aa | 3914 | |
cb3e7f08 | 3915 | qobject_unref(options); |
8961be33 | 3916 | options = NULL; |
dd62f1ca KW |
3917 | |
3918 | /* For snapshot=on, create a temporary qcow2 overlay. bs points to the | |
3919 | * temporary snapshot afterwards. */ | |
3920 | if (snapshot_flags) { | |
66836189 HR |
3921 | BlockDriverState *snapshot_bs; |
3922 | snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, | |
3923 | snapshot_options, &local_err); | |
73176bee | 3924 | snapshot_options = NULL; |
dd62f1ca KW |
3925 | if (local_err) { |
3926 | goto close_and_fail; | |
3927 | } | |
5b363937 HR |
3928 | /* We are not going to return bs but the overlay on top of it |
3929 | * (snapshot_bs); thus, we have to drop the strong reference to bs | |
3930 | * (which we obtained by calling bdrv_new()). bs will not be deleted, | |
3931 | * though, because the overlay still has a reference to it. */ | |
3932 | bdrv_unref(bs); | |
3933 | bs = snapshot_bs; | |
dd62f1ca KW |
3934 | } |
3935 | ||
5b363937 | 3936 | return bs; |
b6ce07aa | 3937 | |
8bfea15d | 3938 | fail: |
5696c6e3 | 3939 | blk_unref(file); |
cb3e7f08 MAL |
3940 | qobject_unref(snapshot_options); |
3941 | qobject_unref(bs->explicit_options); | |
3942 | qobject_unref(bs->options); | |
3943 | qobject_unref(options); | |
de9c0cec | 3944 | bs->options = NULL; |
998cbd6a | 3945 | bs->explicit_options = NULL; |
5b363937 | 3946 | bdrv_unref(bs); |
621ff94d | 3947 | error_propagate(errp, local_err); |
5b363937 | 3948 | return NULL; |
de9c0cec | 3949 | |
b6ad491a | 3950 | close_and_fail: |
5b363937 | 3951 | bdrv_unref(bs); |
cb3e7f08 MAL |
3952 | qobject_unref(snapshot_options); |
3953 | qobject_unref(options); | |
621ff94d | 3954 | error_propagate(errp, local_err); |
5b363937 | 3955 | return NULL; |
b6ce07aa KW |
3956 | } |
3957 | ||
5b363937 HR |
3958 | BlockDriverState *bdrv_open(const char *filename, const char *reference, |
3959 | QDict *options, int flags, Error **errp) | |
f3930ed0 | 3960 | { |
5b363937 | 3961 | return bdrv_open_inherit(filename, reference, options, flags, NULL, |
272c02ea | 3962 | NULL, 0, errp); |
f3930ed0 KW |
3963 | } |
3964 | ||
faf116b4 AG |
3965 | /* Return true if the NULL-terminated @list contains @str */ |
3966 | static bool is_str_in_list(const char *str, const char *const *list) | |
3967 | { | |
3968 | if (str && list) { | |
3969 | int i; | |
3970 | for (i = 0; list[i] != NULL; i++) { | |
3971 | if (!strcmp(str, list[i])) { | |
3972 | return true; | |
3973 | } | |
3974 | } | |
3975 | } | |
3976 | return false; | |
3977 | } | |
3978 | ||
3979 | /* | |
3980 | * Check that every option set in @bs->options is also set in | |
3981 | * @new_opts. | |
3982 | * | |
3983 | * Options listed in the common_options list and in | |
3984 | * @bs->drv->mutable_opts are skipped. | |
3985 | * | |
3986 | * Return 0 on success, otherwise return -EINVAL and set @errp. | |
3987 | */ | |
3988 | static int bdrv_reset_options_allowed(BlockDriverState *bs, | |
3989 | const QDict *new_opts, Error **errp) | |
3990 | { | |
3991 | const QDictEntry *e; | |
3992 | /* These options are common to all block drivers and are handled | |
3993 | * in bdrv_reopen_prepare() so they can be left out of @new_opts */ | |
3994 | const char *const common_options[] = { | |
3995 | "node-name", "discard", "cache.direct", "cache.no-flush", | |
3996 | "read-only", "auto-read-only", "detect-zeroes", NULL | |
3997 | }; | |
3998 | ||
3999 | for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) { | |
4000 | if (!qdict_haskey(new_opts, e->key) && | |
4001 | !is_str_in_list(e->key, common_options) && | |
4002 | !is_str_in_list(e->key, bs->drv->mutable_opts)) { | |
4003 | error_setg(errp, "Option '%s' cannot be reset " | |
4004 | "to its default value", e->key); | |
4005 | return -EINVAL; | |
4006 | } | |
4007 | } | |
4008 | ||
4009 | return 0; | |
4010 | } | |
4011 | ||
cb828c31 AG |
4012 | /* |
4013 | * Returns true if @child can be reached recursively from @bs | |
4014 | */ | |
4015 | static bool bdrv_recurse_has_child(BlockDriverState *bs, | |
4016 | BlockDriverState *child) | |
4017 | { | |
4018 | BdrvChild *c; | |
4019 | ||
4020 | if (bs == child) { | |
4021 | return true; | |
4022 | } | |
4023 | ||
4024 | QLIST_FOREACH(c, &bs->children, next) { | |
4025 | if (bdrv_recurse_has_child(c->bs, child)) { | |
4026 | return true; | |
4027 | } | |
4028 | } | |
4029 | ||
4030 | return false; | |
4031 | } | |
4032 | ||
e971aa12 JC |
4033 | /* |
4034 | * Adds a BlockDriverState to a simple queue for an atomic, transactional | |
4035 | * reopen of multiple devices. | |
4036 | * | |
859443b0 | 4037 | * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT |
e971aa12 JC |
4038 | * already performed, or alternatively may be NULL a new BlockReopenQueue will |
4039 | * be created and initialized. This newly created BlockReopenQueue should be | |
4040 | * passed back in for subsequent calls that are intended to be of the same | |
4041 | * atomic 'set'. | |
4042 | * | |
4043 | * bs is the BlockDriverState to add to the reopen queue. | |
4044 | * | |
4d2cb092 KW |
4045 | * options contains the changed options for the associated bs |
4046 | * (the BlockReopenQueue takes ownership) | |
4047 | * | |
e971aa12 JC |
4048 | * flags contains the open flags for the associated bs |
4049 | * | |
4050 | * returns a pointer to bs_queue, which is either the newly allocated | |
4051 | * bs_queue, or the existing bs_queue being used. | |
4052 | * | |
1a63a907 | 4053 | * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple(). |
e971aa12 | 4054 | */ |
28518102 KW |
4055 | static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, |
4056 | BlockDriverState *bs, | |
4057 | QDict *options, | |
bd86fb99 | 4058 | const BdrvChildClass *klass, |
272c02ea | 4059 | BdrvChildRole role, |
3cdc69d3 | 4060 | bool parent_is_format, |
28518102 | 4061 | QDict *parent_options, |
077e8e20 AG |
4062 | int parent_flags, |
4063 | bool keep_old_opts) | |
e971aa12 JC |
4064 | { |
4065 | assert(bs != NULL); | |
4066 | ||
4067 | BlockReopenQueueEntry *bs_entry; | |
67251a31 | 4068 | BdrvChild *child; |
9aa09ddd AG |
4069 | QDict *old_options, *explicit_options, *options_copy; |
4070 | int flags; | |
4071 | QemuOpts *opts; | |
67251a31 | 4072 | |
1a63a907 KW |
4073 | /* Make sure that the caller remembered to use a drained section. This is |
4074 | * important to avoid graph changes between the recursive queuing here and | |
4075 | * bdrv_reopen_multiple(). */ | |
4076 | assert(bs->quiesce_counter > 0); | |
4077 | ||
e971aa12 JC |
4078 | if (bs_queue == NULL) { |
4079 | bs_queue = g_new0(BlockReopenQueue, 1); | |
859443b0 | 4080 | QTAILQ_INIT(bs_queue); |
e971aa12 JC |
4081 | } |
4082 | ||
4d2cb092 KW |
4083 | if (!options) { |
4084 | options = qdict_new(); | |
4085 | } | |
4086 | ||
5b7ba05f | 4087 | /* Check if this BlockDriverState is already in the queue */ |
859443b0 | 4088 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
5b7ba05f AG |
4089 | if (bs == bs_entry->state.bs) { |
4090 | break; | |
4091 | } | |
4092 | } | |
4093 | ||
28518102 KW |
4094 | /* |
4095 | * Precedence of options: | |
4096 | * 1. Explicitly passed in options (highest) | |
9aa09ddd AG |
4097 | * 2. Retained from explicitly set options of bs |
4098 | * 3. Inherited from parent node | |
4099 | * 4. Retained from effective options of bs | |
28518102 KW |
4100 | */ |
4101 | ||
145f598e | 4102 | /* Old explicitly set values (don't overwrite by inherited value) */ |
077e8e20 AG |
4103 | if (bs_entry || keep_old_opts) { |
4104 | old_options = qdict_clone_shallow(bs_entry ? | |
4105 | bs_entry->state.explicit_options : | |
4106 | bs->explicit_options); | |
4107 | bdrv_join_options(bs, options, old_options); | |
4108 | qobject_unref(old_options); | |
5b7ba05f | 4109 | } |
145f598e KW |
4110 | |
4111 | explicit_options = qdict_clone_shallow(options); | |
4112 | ||
28518102 KW |
4113 | /* Inherit from parent node */ |
4114 | if (parent_options) { | |
9aa09ddd | 4115 | flags = 0; |
3cdc69d3 | 4116 | klass->inherit_options(role, parent_is_format, &flags, options, |
272c02ea | 4117 | parent_flags, parent_options); |
9aa09ddd AG |
4118 | } else { |
4119 | flags = bdrv_get_flags(bs); | |
28518102 KW |
4120 | } |
4121 | ||
077e8e20 AG |
4122 | if (keep_old_opts) { |
4123 | /* Old values are used for options that aren't set yet */ | |
4124 | old_options = qdict_clone_shallow(bs->options); | |
4125 | bdrv_join_options(bs, options, old_options); | |
4126 | qobject_unref(old_options); | |
4127 | } | |
4d2cb092 | 4128 | |
9aa09ddd AG |
4129 | /* We have the final set of options so let's update the flags */ |
4130 | options_copy = qdict_clone_shallow(options); | |
4131 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); | |
4132 | qemu_opts_absorb_qdict(opts, options_copy, NULL); | |
4133 | update_flags_from_options(&flags, opts); | |
4134 | qemu_opts_del(opts); | |
4135 | qobject_unref(options_copy); | |
4136 | ||
fd452021 | 4137 | /* bdrv_open_inherit() sets and clears some additional flags internally */ |
f1f25a2e | 4138 | flags &= ~BDRV_O_PROTOCOL; |
fd452021 KW |
4139 | if (flags & BDRV_O_RDWR) { |
4140 | flags |= BDRV_O_ALLOW_RDWR; | |
4141 | } | |
f1f25a2e | 4142 | |
1857c97b KW |
4143 | if (!bs_entry) { |
4144 | bs_entry = g_new0(BlockReopenQueueEntry, 1); | |
859443b0 | 4145 | QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry); |
1857c97b | 4146 | } else { |
cb3e7f08 MAL |
4147 | qobject_unref(bs_entry->state.options); |
4148 | qobject_unref(bs_entry->state.explicit_options); | |
1857c97b KW |
4149 | } |
4150 | ||
4151 | bs_entry->state.bs = bs; | |
4152 | bs_entry->state.options = options; | |
4153 | bs_entry->state.explicit_options = explicit_options; | |
4154 | bs_entry->state.flags = flags; | |
4155 | ||
8546632e AG |
4156 | /* |
4157 | * If keep_old_opts is false then it means that unspecified | |
4158 | * options must be reset to their original value. We don't allow | |
4159 | * resetting 'backing' but we need to know if the option is | |
4160 | * missing in order to decide if we have to return an error. | |
4161 | */ | |
4162 | if (!keep_old_opts) { | |
4163 | bs_entry->state.backing_missing = | |
4164 | !qdict_haskey(options, "backing") && | |
4165 | !qdict_haskey(options, "backing.driver"); | |
4166 | } | |
4167 | ||
67251a31 | 4168 | QLIST_FOREACH(child, &bs->children, next) { |
8546632e AG |
4169 | QDict *new_child_options = NULL; |
4170 | bool child_keep_old = keep_old_opts; | |
67251a31 | 4171 | |
4c9dfe5d KW |
4172 | /* reopen can only change the options of block devices that were |
4173 | * implicitly created and inherited options. For other (referenced) | |
4174 | * block devices, a syntax like "backing.foo" results in an error. */ | |
67251a31 KW |
4175 | if (child->bs->inherits_from != bs) { |
4176 | continue; | |
4177 | } | |
4178 | ||
8546632e AG |
4179 | /* Check if the options contain a child reference */ |
4180 | if (qdict_haskey(options, child->name)) { | |
4181 | const char *childref = qdict_get_try_str(options, child->name); | |
4182 | /* | |
4183 | * The current child must not be reopened if the child | |
4184 | * reference is null or points to a different node. | |
4185 | */ | |
4186 | if (g_strcmp0(childref, child->bs->node_name)) { | |
4187 | continue; | |
4188 | } | |
4189 | /* | |
4190 | * If the child reference points to the current child then | |
4191 | * reopen it with its existing set of options (note that | |
4192 | * it can still inherit new options from the parent). | |
4193 | */ | |
4194 | child_keep_old = true; | |
4195 | } else { | |
4196 | /* Extract child options ("child-name.*") */ | |
4197 | char *child_key_dot = g_strdup_printf("%s.", child->name); | |
4198 | qdict_extract_subqdict(explicit_options, NULL, child_key_dot); | |
4199 | qdict_extract_subqdict(options, &new_child_options, child_key_dot); | |
4200 | g_free(child_key_dot); | |
4201 | } | |
4c9dfe5d | 4202 | |
9aa09ddd | 4203 | bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, |
3cdc69d3 HR |
4204 | child->klass, child->role, bs->drv->is_format, |
4205 | options, flags, child_keep_old); | |
e971aa12 JC |
4206 | } |
4207 | ||
e971aa12 JC |
4208 | return bs_queue; |
4209 | } | |
4210 | ||
28518102 KW |
4211 | BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, |
4212 | BlockDriverState *bs, | |
077e8e20 | 4213 | QDict *options, bool keep_old_opts) |
28518102 | 4214 | { |
3cdc69d3 HR |
4215 | return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false, |
4216 | NULL, 0, keep_old_opts); | |
28518102 KW |
4217 | } |
4218 | ||
ab5b5228 AG |
4219 | void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue) |
4220 | { | |
4221 | if (bs_queue) { | |
4222 | BlockReopenQueueEntry *bs_entry, *next; | |
4223 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { | |
4224 | qobject_unref(bs_entry->state.explicit_options); | |
4225 | qobject_unref(bs_entry->state.options); | |
4226 | g_free(bs_entry); | |
4227 | } | |
4228 | g_free(bs_queue); | |
4229 | } | |
4230 | } | |
4231 | ||
e971aa12 JC |
4232 | /* |
4233 | * Reopen multiple BlockDriverStates atomically & transactionally. | |
4234 | * | |
4235 | * The queue passed in (bs_queue) must have been built up previous | |
4236 | * via bdrv_reopen_queue(). | |
4237 | * | |
4238 | * Reopens all BDS specified in the queue, with the appropriate | |
4239 | * flags. All devices are prepared for reopen, and failure of any | |
50d6a8a3 | 4240 | * device will cause all device changes to be abandoned, and intermediate |
e971aa12 JC |
4241 | * data cleaned up. |
4242 | * | |
4243 | * If all devices prepare successfully, then the changes are committed | |
4244 | * to all devices. | |
4245 | * | |
1a63a907 KW |
4246 | * All affected nodes must be drained between bdrv_reopen_queue() and |
4247 | * bdrv_reopen_multiple(). | |
6cf42ca2 KW |
4248 | * |
4249 | * To be called from the main thread, with all other AioContexts unlocked. | |
e971aa12 | 4250 | */ |
5019aece | 4251 | int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) |
e971aa12 JC |
4252 | { |
4253 | int ret = -1; | |
4254 | BlockReopenQueueEntry *bs_entry, *next; | |
6cf42ca2 | 4255 | AioContext *ctx; |
72373e40 VSO |
4256 | Transaction *tran = tran_new(); |
4257 | g_autoptr(GHashTable) found = NULL; | |
4258 | g_autoptr(GSList) refresh_list = NULL; | |
e971aa12 | 4259 | |
6cf42ca2 | 4260 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
e971aa12 JC |
4261 | assert(bs_queue != NULL); |
4262 | ||
a2aabf88 | 4263 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
6cf42ca2 KW |
4264 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
4265 | aio_context_acquire(ctx); | |
a2aabf88 | 4266 | ret = bdrv_flush(bs_entry->state.bs); |
6cf42ca2 | 4267 | aio_context_release(ctx); |
a2aabf88 VSO |
4268 | if (ret < 0) { |
4269 | error_setg_errno(errp, -ret, "Error flushing drive"); | |
e3fc91aa | 4270 | goto abort; |
a2aabf88 VSO |
4271 | } |
4272 | } | |
4273 | ||
859443b0 | 4274 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
1a63a907 | 4275 | assert(bs_entry->state.bs->quiesce_counter > 0); |
6cf42ca2 KW |
4276 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
4277 | aio_context_acquire(ctx); | |
72373e40 | 4278 | ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp); |
6cf42ca2 | 4279 | aio_context_release(ctx); |
72373e40 VSO |
4280 | if (ret < 0) { |
4281 | goto abort; | |
e971aa12 JC |
4282 | } |
4283 | bs_entry->prepared = true; | |
4284 | } | |
4285 | ||
72373e40 | 4286 | found = g_hash_table_new(NULL, NULL); |
859443b0 | 4287 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
69b736e7 | 4288 | BDRVReopenState *state = &bs_entry->state; |
72373e40 VSO |
4289 | |
4290 | refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs); | |
4291 | if (state->old_backing_bs) { | |
4292 | refresh_list = bdrv_topological_dfs(refresh_list, found, | |
4293 | state->old_backing_bs); | |
cb828c31 | 4294 | } |
ecd30d2d AG |
4295 | if (state->old_file_bs) { |
4296 | refresh_list = bdrv_topological_dfs(refresh_list, found, | |
4297 | state->old_file_bs); | |
4298 | } | |
72373e40 VSO |
4299 | } |
4300 | ||
4301 | /* | |
4302 | * Note that file-posix driver rely on permission update done during reopen | |
4303 | * (even if no permission changed), because it wants "new" permissions for | |
4304 | * reconfiguring the fd and that's why it does it in raw_check_perm(), not | |
4305 | * in raw_reopen_prepare() which is called with "old" permissions. | |
4306 | */ | |
4307 | ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp); | |
4308 | if (ret < 0) { | |
4309 | goto abort; | |
69b736e7 KW |
4310 | } |
4311 | ||
fcd6a4f4 VSO |
4312 | /* |
4313 | * If we reach this point, we have success and just need to apply the | |
4314 | * changes. | |
4315 | * | |
4316 | * Reverse order is used to comfort qcow2 driver: on commit it need to write | |
4317 | * IN_USE flag to the image, to mark bitmaps in the image as invalid. But | |
4318 | * children are usually goes after parents in reopen-queue, so go from last | |
4319 | * to first element. | |
e971aa12 | 4320 | */ |
fcd6a4f4 | 4321 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
6cf42ca2 KW |
4322 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
4323 | aio_context_acquire(ctx); | |
e971aa12 | 4324 | bdrv_reopen_commit(&bs_entry->state); |
6cf42ca2 | 4325 | aio_context_release(ctx); |
e971aa12 JC |
4326 | } |
4327 | ||
72373e40 | 4328 | tran_commit(tran); |
69b736e7 | 4329 | |
72373e40 VSO |
4330 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
4331 | BlockDriverState *bs = bs_entry->state.bs; | |
74ad9a3b | 4332 | |
72373e40 | 4333 | if (bs->drv->bdrv_reopen_commit_post) { |
6cf42ca2 KW |
4334 | ctx = bdrv_get_aio_context(bs); |
4335 | aio_context_acquire(ctx); | |
72373e40 | 4336 | bs->drv->bdrv_reopen_commit_post(&bs_entry->state); |
6cf42ca2 | 4337 | aio_context_release(ctx); |
69b736e7 KW |
4338 | } |
4339 | } | |
17e1e2be | 4340 | |
72373e40 VSO |
4341 | ret = 0; |
4342 | goto cleanup; | |
17e1e2be | 4343 | |
72373e40 VSO |
4344 | abort: |
4345 | tran_abort(tran); | |
4346 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { | |
4347 | if (bs_entry->prepared) { | |
6cf42ca2 KW |
4348 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
4349 | aio_context_acquire(ctx); | |
72373e40 | 4350 | bdrv_reopen_abort(&bs_entry->state); |
6cf42ca2 | 4351 | aio_context_release(ctx); |
17e1e2be PK |
4352 | } |
4353 | } | |
72373e40 | 4354 | |
e971aa12 | 4355 | cleanup: |
ab5b5228 | 4356 | bdrv_reopen_queue_free(bs_queue); |
40840e41 | 4357 | |
e971aa12 JC |
4358 | return ret; |
4359 | } | |
4360 | ||
6cf42ca2 KW |
4361 | int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts, |
4362 | Error **errp) | |
6e1000a8 | 4363 | { |
6cf42ca2 | 4364 | AioContext *ctx = bdrv_get_aio_context(bs); |
6e1000a8 | 4365 | BlockReopenQueue *queue; |
6cf42ca2 | 4366 | int ret; |
6e1000a8 AG |
4367 | |
4368 | bdrv_subtree_drained_begin(bs); | |
6cf42ca2 KW |
4369 | if (ctx != qemu_get_aio_context()) { |
4370 | aio_context_release(ctx); | |
4371 | } | |
4372 | ||
4373 | queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts); | |
5019aece | 4374 | ret = bdrv_reopen_multiple(queue, errp); |
6cf42ca2 KW |
4375 | |
4376 | if (ctx != qemu_get_aio_context()) { | |
4377 | aio_context_acquire(ctx); | |
4378 | } | |
6e1000a8 AG |
4379 | bdrv_subtree_drained_end(bs); |
4380 | ||
4381 | return ret; | |
4382 | } | |
4383 | ||
6cf42ca2 KW |
4384 | int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only, |
4385 | Error **errp) | |
4386 | { | |
4387 | QDict *opts = qdict_new(); | |
4388 | ||
4389 | qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only); | |
4390 | ||
4391 | return bdrv_reopen(bs, opts, true, errp); | |
4392 | } | |
4393 | ||
cb828c31 AG |
4394 | /* |
4395 | * Take a BDRVReopenState and check if the value of 'backing' in the | |
4396 | * reopen_state->options QDict is valid or not. | |
4397 | * | |
4398 | * If 'backing' is missing from the QDict then return 0. | |
4399 | * | |
4400 | * If 'backing' contains the node name of the backing file of | |
4401 | * reopen_state->bs then return 0. | |
4402 | * | |
4403 | * If 'backing' contains a different node name (or is null) then check | |
4404 | * whether the current backing file can be replaced with the new one. | |
4405 | * If that's the case then reopen_state->replace_backing_bs is set to | |
4406 | * true and reopen_state->new_backing_bs contains a pointer to the new | |
4407 | * backing BlockDriverState (or NULL). | |
4408 | * | |
4409 | * Return 0 on success, otherwise return < 0 and set @errp. | |
4410 | */ | |
ecd30d2d AG |
4411 | static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state, |
4412 | bool is_backing, Transaction *tran, | |
4413 | Error **errp) | |
cb828c31 AG |
4414 | { |
4415 | BlockDriverState *bs = reopen_state->bs; | |
ecd30d2d AG |
4416 | BlockDriverState *new_child_bs; |
4417 | BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) : | |
4418 | child_bs(bs->file); | |
4419 | const char *child_name = is_backing ? "backing" : "file"; | |
cb828c31 AG |
4420 | QObject *value; |
4421 | const char *str; | |
4422 | ||
ecd30d2d | 4423 | value = qdict_get(reopen_state->options, child_name); |
cb828c31 AG |
4424 | if (value == NULL) { |
4425 | return 0; | |
4426 | } | |
4427 | ||
4428 | switch (qobject_type(value)) { | |
4429 | case QTYPE_QNULL: | |
ecd30d2d AG |
4430 | assert(is_backing); /* The 'file' option does not allow a null value */ |
4431 | new_child_bs = NULL; | |
cb828c31 AG |
4432 | break; |
4433 | case QTYPE_QSTRING: | |
410f44f5 | 4434 | str = qstring_get_str(qobject_to(QString, value)); |
ecd30d2d AG |
4435 | new_child_bs = bdrv_lookup_bs(NULL, str, errp); |
4436 | if (new_child_bs == NULL) { | |
cb828c31 | 4437 | return -EINVAL; |
ecd30d2d AG |
4438 | } else if (bdrv_recurse_has_child(new_child_bs, bs)) { |
4439 | error_setg(errp, "Making '%s' a %s child of '%s' would create a " | |
4440 | "cycle", str, child_name, bs->node_name); | |
cb828c31 AG |
4441 | return -EINVAL; |
4442 | } | |
4443 | break; | |
4444 | default: | |
ecd30d2d AG |
4445 | /* |
4446 | * The options QDict has been flattened, so 'backing' and 'file' | |
4447 | * do not allow any other data type here. | |
4448 | */ | |
cb828c31 AG |
4449 | g_assert_not_reached(); |
4450 | } | |
4451 | ||
ecd30d2d AG |
4452 | if (old_child_bs == new_child_bs) { |
4453 | return 0; | |
4454 | } | |
4455 | ||
4456 | if (old_child_bs) { | |
4457 | if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) { | |
cbfdb98c VSO |
4458 | return 0; |
4459 | } | |
4460 | ||
ecd30d2d AG |
4461 | if (old_child_bs->implicit) { |
4462 | error_setg(errp, "Cannot replace implicit %s child of %s", | |
4463 | child_name, bs->node_name); | |
cbfdb98c VSO |
4464 | return -EPERM; |
4465 | } | |
4466 | } | |
4467 | ||
ecd30d2d | 4468 | if (bs->drv->is_filter && !old_child_bs) { |
25f78d9e VSO |
4469 | /* |
4470 | * Filters always have a file or a backing child, so we are trying to | |
4471 | * change wrong child | |
4472 | */ | |
4473 | error_setg(errp, "'%s' is a %s filter node that does not support a " | |
ecd30d2d | 4474 | "%s child", bs->node_name, bs->drv->format_name, child_name); |
1d42f48c HR |
4475 | return -EINVAL; |
4476 | } | |
4477 | ||
ecd30d2d AG |
4478 | if (is_backing) { |
4479 | reopen_state->old_backing_bs = old_child_bs; | |
4480 | } else { | |
4481 | reopen_state->old_file_bs = old_child_bs; | |
4482 | } | |
4483 | ||
4484 | return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing, | |
4485 | tran, errp); | |
cb828c31 AG |
4486 | } |
4487 | ||
e971aa12 JC |
4488 | /* |
4489 | * Prepares a BlockDriverState for reopen. All changes are staged in the | |
4490 | * 'opaque' field of the BDRVReopenState, which is used and allocated by | |
4491 | * the block driver layer .bdrv_reopen_prepare() | |
4492 | * | |
4493 | * bs is the BlockDriverState to reopen | |
4494 | * flags are the new open flags | |
4495 | * queue is the reopen queue | |
4496 | * | |
4497 | * Returns 0 on success, non-zero on error. On error errp will be set | |
4498 | * as well. | |
4499 | * | |
4500 | * On failure, bdrv_reopen_abort() will be called to clean up any data. | |
4501 | * It is the responsibility of the caller to then call the abort() or | |
4502 | * commit() for any other BDS that have been left in a prepare() state | |
4503 | * | |
4504 | */ | |
53e96d1e | 4505 | static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, |
72373e40 | 4506 | BlockReopenQueue *queue, |
ecd30d2d | 4507 | Transaction *change_child_tran, Error **errp) |
e971aa12 JC |
4508 | { |
4509 | int ret = -1; | |
e6d79c41 | 4510 | int old_flags; |
e971aa12 JC |
4511 | Error *local_err = NULL; |
4512 | BlockDriver *drv; | |
ccf9dc07 | 4513 | QemuOpts *opts; |
4c8350fe | 4514 | QDict *orig_reopen_opts; |
593b3071 | 4515 | char *discard = NULL; |
3d8ce171 | 4516 | bool read_only; |
9ad08c44 | 4517 | bool drv_prepared = false; |
e971aa12 JC |
4518 | |
4519 | assert(reopen_state != NULL); | |
4520 | assert(reopen_state->bs->drv != NULL); | |
4521 | drv = reopen_state->bs->drv; | |
4522 | ||
4c8350fe AG |
4523 | /* This function and each driver's bdrv_reopen_prepare() remove |
4524 | * entries from reopen_state->options as they are processed, so | |
4525 | * we need to make a copy of the original QDict. */ | |
4526 | orig_reopen_opts = qdict_clone_shallow(reopen_state->options); | |
4527 | ||
ccf9dc07 KW |
4528 | /* Process generic block layer options */ |
4529 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); | |
af175e85 | 4530 | if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) { |
ccf9dc07 KW |
4531 | ret = -EINVAL; |
4532 | goto error; | |
4533 | } | |
4534 | ||
e6d79c41 AG |
4535 | /* This was already called in bdrv_reopen_queue_child() so the flags |
4536 | * are up-to-date. This time we simply want to remove the options from | |
4537 | * QemuOpts in order to indicate that they have been processed. */ | |
4538 | old_flags = reopen_state->flags; | |
91a097e7 | 4539 | update_flags_from_options(&reopen_state->flags, opts); |
e6d79c41 | 4540 | assert(old_flags == reopen_state->flags); |
91a097e7 | 4541 | |
415bbca8 | 4542 | discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD); |
593b3071 AG |
4543 | if (discard != NULL) { |
4544 | if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) { | |
4545 | error_setg(errp, "Invalid discard option"); | |
4546 | ret = -EINVAL; | |
4547 | goto error; | |
4548 | } | |
4549 | } | |
4550 | ||
543770bd AG |
4551 | reopen_state->detect_zeroes = |
4552 | bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err); | |
4553 | if (local_err) { | |
4554 | error_propagate(errp, local_err); | |
4555 | ret = -EINVAL; | |
4556 | goto error; | |
4557 | } | |
4558 | ||
57f9db9a AG |
4559 | /* All other options (including node-name and driver) must be unchanged. |
4560 | * Put them back into the QDict, so that they are checked at the end | |
4561 | * of this function. */ | |
4562 | qemu_opts_to_qdict(opts, reopen_state->options); | |
ccf9dc07 | 4563 | |
3d8ce171 JC |
4564 | /* If we are to stay read-only, do not allow permission change |
4565 | * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is | |
4566 | * not set, or if the BDS still has copy_on_read enabled */ | |
4567 | read_only = !(reopen_state->flags & BDRV_O_RDWR); | |
54a32bfe | 4568 | ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); |
3d8ce171 JC |
4569 | if (local_err) { |
4570 | error_propagate(errp, local_err); | |
e971aa12 JC |
4571 | goto error; |
4572 | } | |
4573 | ||
e971aa12 | 4574 | if (drv->bdrv_reopen_prepare) { |
faf116b4 AG |
4575 | /* |
4576 | * If a driver-specific option is missing, it means that we | |
4577 | * should reset it to its default value. | |
4578 | * But not all options allow that, so we need to check it first. | |
4579 | */ | |
4580 | ret = bdrv_reset_options_allowed(reopen_state->bs, | |
4581 | reopen_state->options, errp); | |
4582 | if (ret) { | |
4583 | goto error; | |
4584 | } | |
4585 | ||
e971aa12 JC |
4586 | ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); |
4587 | if (ret) { | |
4588 | if (local_err != NULL) { | |
4589 | error_propagate(errp, local_err); | |
4590 | } else { | |
f30c66ba | 4591 | bdrv_refresh_filename(reopen_state->bs); |
d8b6895f LC |
4592 | error_setg(errp, "failed while preparing to reopen image '%s'", |
4593 | reopen_state->bs->filename); | |
e971aa12 JC |
4594 | } |
4595 | goto error; | |
4596 | } | |
4597 | } else { | |
4598 | /* It is currently mandatory to have a bdrv_reopen_prepare() | |
4599 | * handler for each supported drv. */ | |
81e5f78a AG |
4600 | error_setg(errp, "Block format '%s' used by node '%s' " |
4601 | "does not support reopening files", drv->format_name, | |
4602 | bdrv_get_device_or_node_name(reopen_state->bs)); | |
e971aa12 JC |
4603 | ret = -1; |
4604 | goto error; | |
4605 | } | |
4606 | ||
9ad08c44 HR |
4607 | drv_prepared = true; |
4608 | ||
bacd9b87 AG |
4609 | /* |
4610 | * We must provide the 'backing' option if the BDS has a backing | |
4611 | * file or if the image file has a backing file name as part of | |
4612 | * its metadata. Otherwise the 'backing' option can be omitted. | |
4613 | */ | |
4614 | if (drv->supports_backing && reopen_state->backing_missing && | |
1d42f48c | 4615 | (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) { |
8546632e AG |
4616 | error_setg(errp, "backing is missing for '%s'", |
4617 | reopen_state->bs->node_name); | |
4618 | ret = -EINVAL; | |
4619 | goto error; | |
4620 | } | |
4621 | ||
cb828c31 AG |
4622 | /* |
4623 | * Allow changing the 'backing' option. The new value can be | |
4624 | * either a reference to an existing node (using its node name) | |
4625 | * or NULL to simply detach the current backing file. | |
4626 | */ | |
ecd30d2d AG |
4627 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, true, |
4628 | change_child_tran, errp); | |
cb828c31 AG |
4629 | if (ret < 0) { |
4630 | goto error; | |
4631 | } | |
4632 | qdict_del(reopen_state->options, "backing"); | |
4633 | ||
ecd30d2d AG |
4634 | /* Allow changing the 'file' option. In this case NULL is not allowed */ |
4635 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, false, | |
4636 | change_child_tran, errp); | |
4637 | if (ret < 0) { | |
4638 | goto error; | |
4639 | } | |
4640 | qdict_del(reopen_state->options, "file"); | |
4641 | ||
4d2cb092 KW |
4642 | /* Options that are not handled are only okay if they are unchanged |
4643 | * compared to the old state. It is expected that some options are only | |
4644 | * used for the initial open, but not reopen (e.g. filename) */ | |
4645 | if (qdict_size(reopen_state->options)) { | |
4646 | const QDictEntry *entry = qdict_first(reopen_state->options); | |
4647 | ||
4648 | do { | |
54fd1b0d HR |
4649 | QObject *new = entry->value; |
4650 | QObject *old = qdict_get(reopen_state->bs->options, entry->key); | |
4651 | ||
db905283 AG |
4652 | /* Allow child references (child_name=node_name) as long as they |
4653 | * point to the current child (i.e. everything stays the same). */ | |
4654 | if (qobject_type(new) == QTYPE_QSTRING) { | |
4655 | BdrvChild *child; | |
4656 | QLIST_FOREACH(child, &reopen_state->bs->children, next) { | |
4657 | if (!strcmp(child->name, entry->key)) { | |
4658 | break; | |
4659 | } | |
4660 | } | |
4661 | ||
4662 | if (child) { | |
410f44f5 MA |
4663 | if (!strcmp(child->bs->node_name, |
4664 | qstring_get_str(qobject_to(QString, new)))) { | |
db905283 AG |
4665 | continue; /* Found child with this name, skip option */ |
4666 | } | |
4667 | } | |
4668 | } | |
4669 | ||
129c7d1c | 4670 | /* |
54fd1b0d HR |
4671 | * TODO: When using -drive to specify blockdev options, all values |
4672 | * will be strings; however, when using -blockdev, blockdev-add or | |
4673 | * filenames using the json:{} pseudo-protocol, they will be | |
4674 | * correctly typed. | |
4675 | * In contrast, reopening options are (currently) always strings | |
4676 | * (because you can only specify them through qemu-io; all other | |
4677 | * callers do not specify any options). | |
4678 | * Therefore, when using anything other than -drive to create a BDS, | |
4679 | * this cannot detect non-string options as unchanged, because | |
4680 | * qobject_is_equal() always returns false for objects of different | |
4681 | * type. In the future, this should be remedied by correctly typing | |
4682 | * all options. For now, this is not too big of an issue because | |
4683 | * the user can simply omit options which cannot be changed anyway, | |
4684 | * so they will stay unchanged. | |
129c7d1c | 4685 | */ |
54fd1b0d | 4686 | if (!qobject_is_equal(new, old)) { |
4d2cb092 KW |
4687 | error_setg(errp, "Cannot change the option '%s'", entry->key); |
4688 | ret = -EINVAL; | |
4689 | goto error; | |
4690 | } | |
4691 | } while ((entry = qdict_next(reopen_state->options, entry))); | |
4692 | } | |
4693 | ||
e971aa12 JC |
4694 | ret = 0; |
4695 | ||
4c8350fe AG |
4696 | /* Restore the original reopen_state->options QDict */ |
4697 | qobject_unref(reopen_state->options); | |
4698 | reopen_state->options = qobject_ref(orig_reopen_opts); | |
4699 | ||
e971aa12 | 4700 | error: |
9ad08c44 HR |
4701 | if (ret < 0 && drv_prepared) { |
4702 | /* drv->bdrv_reopen_prepare() has succeeded, so we need to | |
4703 | * call drv->bdrv_reopen_abort() before signaling an error | |
4704 | * (bdrv_reopen_multiple() will not call bdrv_reopen_abort() | |
4705 | * when the respective bdrv_reopen_prepare() has failed) */ | |
4706 | if (drv->bdrv_reopen_abort) { | |
4707 | drv->bdrv_reopen_abort(reopen_state); | |
4708 | } | |
4709 | } | |
ccf9dc07 | 4710 | qemu_opts_del(opts); |
4c8350fe | 4711 | qobject_unref(orig_reopen_opts); |
593b3071 | 4712 | g_free(discard); |
e971aa12 JC |
4713 | return ret; |
4714 | } | |
4715 | ||
4716 | /* | |
4717 | * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and | |
4718 | * makes them final by swapping the staging BlockDriverState contents into | |
4719 | * the active BlockDriverState contents. | |
4720 | */ | |
53e96d1e | 4721 | static void bdrv_reopen_commit(BDRVReopenState *reopen_state) |
e971aa12 JC |
4722 | { |
4723 | BlockDriver *drv; | |
50bf65ba | 4724 | BlockDriverState *bs; |
50196d7a | 4725 | BdrvChild *child; |
e971aa12 JC |
4726 | |
4727 | assert(reopen_state != NULL); | |
50bf65ba VSO |
4728 | bs = reopen_state->bs; |
4729 | drv = bs->drv; | |
e971aa12 JC |
4730 | assert(drv != NULL); |
4731 | ||
4732 | /* If there are any driver level actions to take */ | |
4733 | if (drv->bdrv_reopen_commit) { | |
4734 | drv->bdrv_reopen_commit(reopen_state); | |
4735 | } | |
4736 | ||
4737 | /* set BDS specific flags now */ | |
cb3e7f08 | 4738 | qobject_unref(bs->explicit_options); |
4c8350fe | 4739 | qobject_unref(bs->options); |
ab5b5228 AG |
4740 | qobject_ref(reopen_state->explicit_options); |
4741 | qobject_ref(reopen_state->options); | |
145f598e | 4742 | |
50bf65ba | 4743 | bs->explicit_options = reopen_state->explicit_options; |
4c8350fe | 4744 | bs->options = reopen_state->options; |
50bf65ba | 4745 | bs->open_flags = reopen_state->flags; |
543770bd | 4746 | bs->detect_zeroes = reopen_state->detect_zeroes; |
355ef4ac | 4747 | |
50196d7a AG |
4748 | /* Remove child references from bs->options and bs->explicit_options. |
4749 | * Child options were already removed in bdrv_reopen_queue_child() */ | |
4750 | QLIST_FOREACH(child, &bs->children, next) { | |
4751 | qdict_del(bs->explicit_options, child->name); | |
4752 | qdict_del(bs->options, child->name); | |
4753 | } | |
3d0e8743 VSO |
4754 | /* backing is probably removed, so it's not handled by previous loop */ |
4755 | qdict_del(bs->explicit_options, "backing"); | |
4756 | qdict_del(bs->options, "backing"); | |
4757 | ||
1e4c797c | 4758 | bdrv_refresh_limits(bs, NULL, NULL); |
e971aa12 JC |
4759 | } |
4760 | ||
4761 | /* | |
4762 | * Abort the reopen, and delete and free the staged changes in | |
4763 | * reopen_state | |
4764 | */ | |
53e96d1e | 4765 | static void bdrv_reopen_abort(BDRVReopenState *reopen_state) |
e971aa12 JC |
4766 | { |
4767 | BlockDriver *drv; | |
4768 | ||
4769 | assert(reopen_state != NULL); | |
4770 | drv = reopen_state->bs->drv; | |
4771 | assert(drv != NULL); | |
4772 | ||
4773 | if (drv->bdrv_reopen_abort) { | |
4774 | drv->bdrv_reopen_abort(reopen_state); | |
4775 | } | |
4776 | } | |
4777 | ||
4778 | ||
64dff520 | 4779 | static void bdrv_close(BlockDriverState *bs) |
fc01f7e7 | 4780 | { |
33384421 | 4781 | BdrvAioNotifier *ban, *ban_next; |
50a3efb0 | 4782 | BdrvChild *child, *next; |
33384421 | 4783 | |
30f55fb8 | 4784 | assert(!bs->refcnt); |
99b7e775 | 4785 | |
fc27291d | 4786 | bdrv_drained_begin(bs); /* complete I/O */ |
58fda173 | 4787 | bdrv_flush(bs); |
53ec73e2 | 4788 | bdrv_drain(bs); /* in case flush left pending I/O */ |
fc27291d | 4789 | |
3cbc002c | 4790 | if (bs->drv) { |
3c005293 | 4791 | if (bs->drv->bdrv_close) { |
7b99a266 | 4792 | /* Must unfreeze all children, so bdrv_unref_child() works */ |
3c005293 VSO |
4793 | bs->drv->bdrv_close(bs); |
4794 | } | |
9a4f4c31 | 4795 | bs->drv = NULL; |
50a3efb0 | 4796 | } |
9a7dedbc | 4797 | |
50a3efb0 | 4798 | QLIST_FOREACH_SAFE(child, &bs->children, next, next) { |
dd4118c7 | 4799 | bdrv_unref_child(bs, child); |
b338082b | 4800 | } |
98f90dba | 4801 | |
dd4118c7 AG |
4802 | bs->backing = NULL; |
4803 | bs->file = NULL; | |
50a3efb0 AG |
4804 | g_free(bs->opaque); |
4805 | bs->opaque = NULL; | |
d73415a3 | 4806 | qatomic_set(&bs->copy_on_read, 0); |
50a3efb0 AG |
4807 | bs->backing_file[0] = '\0'; |
4808 | bs->backing_format[0] = '\0'; | |
4809 | bs->total_sectors = 0; | |
4810 | bs->encrypted = false; | |
4811 | bs->sg = false; | |
cb3e7f08 MAL |
4812 | qobject_unref(bs->options); |
4813 | qobject_unref(bs->explicit_options); | |
50a3efb0 AG |
4814 | bs->options = NULL; |
4815 | bs->explicit_options = NULL; | |
cb3e7f08 | 4816 | qobject_unref(bs->full_open_options); |
50a3efb0 | 4817 | bs->full_open_options = NULL; |
0bc329fb HR |
4818 | g_free(bs->block_status_cache); |
4819 | bs->block_status_cache = NULL; | |
50a3efb0 | 4820 | |
cca43ae1 VSO |
4821 | bdrv_release_named_dirty_bitmaps(bs); |
4822 | assert(QLIST_EMPTY(&bs->dirty_bitmaps)); | |
4823 | ||
33384421 HR |
4824 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
4825 | g_free(ban); | |
4826 | } | |
4827 | QLIST_INIT(&bs->aio_notifiers); | |
fc27291d | 4828 | bdrv_drained_end(bs); |
1a6d3bd2 GK |
4829 | |
4830 | /* | |
4831 | * If we're still inside some bdrv_drain_all_begin()/end() sections, end | |
4832 | * them now since this BDS won't exist anymore when bdrv_drain_all_end() | |
4833 | * gets called. | |
4834 | */ | |
4835 | if (bs->quiesce_counter) { | |
4836 | bdrv_drain_all_end_quiesce(bs); | |
4837 | } | |
b338082b FB |
4838 | } |
4839 | ||
2bc93fed MK |
4840 | void bdrv_close_all(void) |
4841 | { | |
b3b5299d | 4842 | assert(job_next(NULL) == NULL); |
ca9bd24c HR |
4843 | |
4844 | /* Drop references from requests still in flight, such as canceled block | |
4845 | * jobs whose AIO context has not been polled yet */ | |
4846 | bdrv_drain_all(); | |
2bc93fed | 4847 | |
ca9bd24c HR |
4848 | blk_remove_all_bs(); |
4849 | blockdev_close_all_bdrv_states(); | |
ed78cda3 | 4850 | |
a1a2af07 | 4851 | assert(QTAILQ_EMPTY(&all_bdrv_states)); |
2bc93fed MK |
4852 | } |
4853 | ||
d0ac0380 KW |
4854 | static bool should_update_child(BdrvChild *c, BlockDriverState *to) |
4855 | { | |
2f30b7c3 VSO |
4856 | GQueue *queue; |
4857 | GHashTable *found; | |
4858 | bool ret; | |
d0ac0380 | 4859 | |
bd86fb99 | 4860 | if (c->klass->stay_at_node) { |
d0ac0380 KW |
4861 | return false; |
4862 | } | |
4863 | ||
ec9f10fe HR |
4864 | /* If the child @c belongs to the BDS @to, replacing the current |
4865 | * c->bs by @to would mean to create a loop. | |
4866 | * | |
4867 | * Such a case occurs when appending a BDS to a backing chain. | |
4868 | * For instance, imagine the following chain: | |
4869 | * | |
4870 | * guest device -> node A -> further backing chain... | |
4871 | * | |
4872 | * Now we create a new BDS B which we want to put on top of this | |
4873 | * chain, so we first attach A as its backing node: | |
4874 | * | |
4875 | * node B | |
4876 | * | | |
4877 | * v | |
4878 | * guest device -> node A -> further backing chain... | |
4879 | * | |
4880 | * Finally we want to replace A by B. When doing that, we want to | |
4881 | * replace all pointers to A by pointers to B -- except for the | |
4882 | * pointer from B because (1) that would create a loop, and (2) | |
4883 | * that pointer should simply stay intact: | |
4884 | * | |
4885 | * guest device -> node B | |
4886 | * | | |
4887 | * v | |
4888 | * node A -> further backing chain... | |
4889 | * | |
4890 | * In general, when replacing a node A (c->bs) by a node B (@to), | |
4891 | * if A is a child of B, that means we cannot replace A by B there | |
4892 | * because that would create a loop. Silently detaching A from B | |
4893 | * is also not really an option. So overall just leaving A in | |
2f30b7c3 VSO |
4894 | * place there is the most sensible choice. |
4895 | * | |
4896 | * We would also create a loop in any cases where @c is only | |
4897 | * indirectly referenced by @to. Prevent this by returning false | |
4898 | * if @c is found (by breadth-first search) anywhere in the whole | |
4899 | * subtree of @to. | |
4900 | */ | |
4901 | ||
4902 | ret = true; | |
4903 | found = g_hash_table_new(NULL, NULL); | |
4904 | g_hash_table_add(found, to); | |
4905 | queue = g_queue_new(); | |
4906 | g_queue_push_tail(queue, to); | |
4907 | ||
4908 | while (!g_queue_is_empty(queue)) { | |
4909 | BlockDriverState *v = g_queue_pop_head(queue); | |
4910 | BdrvChild *c2; | |
4911 | ||
4912 | QLIST_FOREACH(c2, &v->children, next) { | |
4913 | if (c2 == c) { | |
4914 | ret = false; | |
4915 | break; | |
4916 | } | |
4917 | ||
4918 | if (g_hash_table_contains(found, c2->bs)) { | |
4919 | continue; | |
4920 | } | |
4921 | ||
4922 | g_queue_push_tail(queue, c2->bs); | |
4923 | g_hash_table_add(found, c2->bs); | |
d0ac0380 KW |
4924 | } |
4925 | } | |
4926 | ||
2f30b7c3 VSO |
4927 | g_queue_free(queue); |
4928 | g_hash_table_destroy(found); | |
4929 | ||
4930 | return ret; | |
d0ac0380 KW |
4931 | } |
4932 | ||
46541ee5 VSO |
4933 | typedef struct BdrvRemoveFilterOrCowChild { |
4934 | BdrvChild *child; | |
82b54cf5 | 4935 | BlockDriverState *bs; |
46541ee5 VSO |
4936 | bool is_backing; |
4937 | } BdrvRemoveFilterOrCowChild; | |
4938 | ||
4939 | static void bdrv_remove_filter_or_cow_child_abort(void *opaque) | |
4940 | { | |
4941 | BdrvRemoveFilterOrCowChild *s = opaque; | |
4942 | BlockDriverState *parent_bs = s->child->opaque; | |
4943 | ||
46541ee5 VSO |
4944 | if (s->is_backing) { |
4945 | parent_bs->backing = s->child; | |
4946 | } else { | |
4947 | parent_bs->file = s->child; | |
4948 | } | |
4949 | ||
4950 | /* | |
4bf021db | 4951 | * We don't have to restore child->bs here to undo bdrv_replace_child_tran() |
46541ee5 VSO |
4952 | * because that function is transactionable and it registered own completion |
4953 | * entries in @tran, so .abort() for bdrv_replace_child_safe() will be | |
4954 | * called automatically. | |
4955 | */ | |
4956 | } | |
4957 | ||
4958 | static void bdrv_remove_filter_or_cow_child_commit(void *opaque) | |
4959 | { | |
4960 | BdrvRemoveFilterOrCowChild *s = opaque; | |
4961 | ||
4962 | bdrv_child_free(s->child); | |
4963 | } | |
4964 | ||
82b54cf5 HR |
4965 | static void bdrv_remove_filter_or_cow_child_clean(void *opaque) |
4966 | { | |
4967 | BdrvRemoveFilterOrCowChild *s = opaque; | |
4968 | ||
4969 | /* Drop the bs reference after the transaction is done */ | |
4970 | bdrv_unref(s->bs); | |
4971 | g_free(s); | |
4972 | } | |
4973 | ||
46541ee5 VSO |
4974 | static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = { |
4975 | .abort = bdrv_remove_filter_or_cow_child_abort, | |
4976 | .commit = bdrv_remove_filter_or_cow_child_commit, | |
82b54cf5 | 4977 | .clean = bdrv_remove_filter_or_cow_child_clean, |
46541ee5 VSO |
4978 | }; |
4979 | ||
4980 | /* | |
5b995019 | 4981 | * A function to remove backing or file child of @bs. |
7ec390d5 | 4982 | * Function doesn't update permissions, caller is responsible for this. |
46541ee5 | 4983 | */ |
5b995019 VSO |
4984 | static void bdrv_remove_file_or_backing_child(BlockDriverState *bs, |
4985 | BdrvChild *child, | |
4986 | Transaction *tran) | |
46541ee5 | 4987 | { |
562bda8b | 4988 | BdrvChild **childp; |
46541ee5 | 4989 | BdrvRemoveFilterOrCowChild *s; |
5b995019 | 4990 | |
46541ee5 VSO |
4991 | if (!child) { |
4992 | return; | |
4993 | } | |
4994 | ||
82b54cf5 HR |
4995 | /* |
4996 | * Keep a reference to @bs so @childp will stay valid throughout the | |
4997 | * transaction (required by bdrv_replace_child_tran()) | |
4998 | */ | |
4999 | bdrv_ref(bs); | |
562bda8b HR |
5000 | if (child == bs->backing) { |
5001 | childp = &bs->backing; | |
5002 | } else if (child == bs->file) { | |
5003 | childp = &bs->file; | |
5004 | } else { | |
5005 | g_assert_not_reached(); | |
5006 | } | |
5007 | ||
46541ee5 | 5008 | if (child->bs) { |
b0a9f6fe HR |
5009 | /* |
5010 | * Pass free_empty_child=false, we will free the child in | |
5011 | * bdrv_remove_filter_or_cow_child_commit() | |
5012 | */ | |
5013 | bdrv_replace_child_tran(childp, NULL, tran, false); | |
46541ee5 VSO |
5014 | } |
5015 | ||
5016 | s = g_new(BdrvRemoveFilterOrCowChild, 1); | |
5017 | *s = (BdrvRemoveFilterOrCowChild) { | |
5018 | .child = child, | |
82b54cf5 | 5019 | .bs = bs, |
562bda8b | 5020 | .is_backing = (childp == &bs->backing), |
46541ee5 VSO |
5021 | }; |
5022 | tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s); | |
46541ee5 VSO |
5023 | } |
5024 | ||
5b995019 VSO |
5025 | /* |
5026 | * A function to remove backing-chain child of @bs if exists: cow child for | |
5027 | * format nodes (always .backing) and filter child for filters (may be .file or | |
5028 | * .backing) | |
5029 | */ | |
5030 | static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs, | |
5031 | Transaction *tran) | |
5032 | { | |
5033 | bdrv_remove_file_or_backing_child(bs, bdrv_filter_or_cow_child(bs), tran); | |
5034 | } | |
5035 | ||
117caba9 VSO |
5036 | static int bdrv_replace_node_noperm(BlockDriverState *from, |
5037 | BlockDriverState *to, | |
5038 | bool auto_skip, Transaction *tran, | |
5039 | Error **errp) | |
5040 | { | |
5041 | BdrvChild *c, *next; | |
5042 | ||
82b54cf5 HR |
5043 | assert(to != NULL); |
5044 | ||
117caba9 VSO |
5045 | QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { |
5046 | assert(c->bs == from); | |
5047 | if (!should_update_child(c, to)) { | |
5048 | if (auto_skip) { | |
5049 | continue; | |
5050 | } | |
5051 | error_setg(errp, "Should not change '%s' link to '%s'", | |
5052 | c->name, from->node_name); | |
5053 | return -EINVAL; | |
5054 | } | |
5055 | if (c->frozen) { | |
5056 | error_setg(errp, "Cannot change '%s' link to '%s'", | |
5057 | c->name, from->node_name); | |
5058 | return -EPERM; | |
5059 | } | |
82b54cf5 HR |
5060 | |
5061 | /* | |
5062 | * Passing a pointer to the local variable @c is fine here, because | |
5063 | * @to is not NULL, and so &c will not be attached to the transaction. | |
5064 | */ | |
b0a9f6fe | 5065 | bdrv_replace_child_tran(&c, to, tran, true); |
117caba9 VSO |
5066 | } |
5067 | ||
5068 | return 0; | |
5069 | } | |
5070 | ||
313274bb VSO |
5071 | /* |
5072 | * With auto_skip=true bdrv_replace_node_common skips updating from parents | |
5073 | * if it creates a parent-child relation loop or if parent is block-job. | |
5074 | * | |
5075 | * With auto_skip=false the error is returned if from has a parent which should | |
5076 | * not be updated. | |
3108a15c VSO |
5077 | * |
5078 | * With @detach_subchain=true @to must be in a backing chain of @from. In this | |
5079 | * case backing link of the cow-parent of @to is removed. | |
82b54cf5 HR |
5080 | * |
5081 | * @to must not be NULL. | |
313274bb | 5082 | */ |
a1e708fc VSO |
5083 | static int bdrv_replace_node_common(BlockDriverState *from, |
5084 | BlockDriverState *to, | |
3108a15c VSO |
5085 | bool auto_skip, bool detach_subchain, |
5086 | Error **errp) | |
dd62f1ca | 5087 | { |
3bb0e298 VSO |
5088 | Transaction *tran = tran_new(); |
5089 | g_autoptr(GHashTable) found = NULL; | |
5090 | g_autoptr(GSList) refresh_list = NULL; | |
2d369d6e | 5091 | BlockDriverState *to_cow_parent = NULL; |
234ac1a9 KW |
5092 | int ret; |
5093 | ||
82b54cf5 HR |
5094 | assert(to != NULL); |
5095 | ||
3108a15c VSO |
5096 | if (detach_subchain) { |
5097 | assert(bdrv_chain_contains(from, to)); | |
5098 | assert(from != to); | |
5099 | for (to_cow_parent = from; | |
5100 | bdrv_filter_or_cow_bs(to_cow_parent) != to; | |
5101 | to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent)) | |
5102 | { | |
5103 | ; | |
5104 | } | |
5105 | } | |
5106 | ||
234ac1a9 KW |
5107 | /* Make sure that @from doesn't go away until we have successfully attached |
5108 | * all of its parents to @to. */ | |
5109 | bdrv_ref(from); | |
dd62f1ca | 5110 | |
f871abd6 | 5111 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
30dd65f3 | 5112 | assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to)); |
f871abd6 KW |
5113 | bdrv_drained_begin(from); |
5114 | ||
3bb0e298 VSO |
5115 | /* |
5116 | * Do the replacement without permission update. | |
5117 | * Replacement may influence the permissions, we should calculate new | |
5118 | * permissions based on new graph. If we fail, we'll roll-back the | |
5119 | * replacement. | |
5120 | */ | |
117caba9 VSO |
5121 | ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp); |
5122 | if (ret < 0) { | |
5123 | goto out; | |
234ac1a9 KW |
5124 | } |
5125 | ||
3108a15c VSO |
5126 | if (detach_subchain) { |
5127 | bdrv_remove_filter_or_cow_child(to_cow_parent, tran); | |
5128 | } | |
5129 | ||
3bb0e298 | 5130 | found = g_hash_table_new(NULL, NULL); |
234ac1a9 | 5131 | |
3bb0e298 VSO |
5132 | refresh_list = bdrv_topological_dfs(refresh_list, found, to); |
5133 | refresh_list = bdrv_topological_dfs(refresh_list, found, from); | |
9bd910e2 | 5134 | |
3bb0e298 VSO |
5135 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
5136 | if (ret < 0) { | |
5137 | goto out; | |
dd62f1ca | 5138 | } |
234ac1a9 | 5139 | |
a1e708fc VSO |
5140 | ret = 0; |
5141 | ||
234ac1a9 | 5142 | out: |
3bb0e298 VSO |
5143 | tran_finalize(tran, ret); |
5144 | ||
f871abd6 | 5145 | bdrv_drained_end(from); |
234ac1a9 | 5146 | bdrv_unref(from); |
a1e708fc VSO |
5147 | |
5148 | return ret; | |
dd62f1ca KW |
5149 | } |
5150 | ||
82b54cf5 HR |
5151 | /** |
5152 | * Replace node @from by @to (where neither may be NULL). | |
5153 | */ | |
a1e708fc VSO |
5154 | int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, |
5155 | Error **errp) | |
313274bb | 5156 | { |
3108a15c VSO |
5157 | return bdrv_replace_node_common(from, to, true, false, errp); |
5158 | } | |
5159 | ||
5160 | int bdrv_drop_filter(BlockDriverState *bs, Error **errp) | |
5161 | { | |
5162 | return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true, | |
5163 | errp); | |
313274bb VSO |
5164 | } |
5165 | ||
4ddc07ca PB |
5166 | /* |
5167 | * Add new bs contents at the top of an image chain while the chain is | |
5168 | * live, while keeping required fields on the top layer. | |
5169 | * | |
5170 | * This will modify the BlockDriverState fields, and swap contents | |
5171 | * between bs_new and bs_top. Both bs_new and bs_top are modified. | |
5172 | * | |
2272edcf VSO |
5173 | * bs_new must not be attached to a BlockBackend and must not have backing |
5174 | * child. | |
4ddc07ca PB |
5175 | * |
5176 | * This function does not create any image files. | |
5177 | */ | |
a1e708fc VSO |
5178 | int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, |
5179 | Error **errp) | |
4ddc07ca | 5180 | { |
2272edcf VSO |
5181 | int ret; |
5182 | Transaction *tran = tran_new(); | |
5183 | ||
5184 | assert(!bs_new->backing); | |
5185 | ||
5186 | ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing", | |
5187 | &child_of_bds, bdrv_backing_role(bs_new), | |
5188 | &bs_new->backing, tran, errp); | |
a1e708fc | 5189 | if (ret < 0) { |
2272edcf | 5190 | goto out; |
b2c2832c | 5191 | } |
dd62f1ca | 5192 | |
2272edcf | 5193 | ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp); |
a1e708fc | 5194 | if (ret < 0) { |
2272edcf | 5195 | goto out; |
234ac1a9 | 5196 | } |
4ddc07ca | 5197 | |
2272edcf VSO |
5198 | ret = bdrv_refresh_perms(bs_new, errp); |
5199 | out: | |
5200 | tran_finalize(tran, ret); | |
5201 | ||
1e4c797c | 5202 | bdrv_refresh_limits(bs_top, NULL, NULL); |
2272edcf VSO |
5203 | |
5204 | return ret; | |
8802d1fd JC |
5205 | } |
5206 | ||
bd8f4c42 VSO |
5207 | /* Not for empty child */ |
5208 | int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs, | |
5209 | Error **errp) | |
5210 | { | |
5211 | int ret; | |
5212 | Transaction *tran = tran_new(); | |
5213 | g_autoptr(GHashTable) found = NULL; | |
5214 | g_autoptr(GSList) refresh_list = NULL; | |
5215 | BlockDriverState *old_bs = child->bs; | |
5216 | ||
5217 | bdrv_ref(old_bs); | |
5218 | bdrv_drained_begin(old_bs); | |
5219 | bdrv_drained_begin(new_bs); | |
5220 | ||
b0a9f6fe HR |
5221 | bdrv_replace_child_tran(&child, new_bs, tran, true); |
5222 | /* @new_bs must have been non-NULL, so @child must not have been freed */ | |
5223 | assert(child != NULL); | |
bd8f4c42 VSO |
5224 | |
5225 | found = g_hash_table_new(NULL, NULL); | |
5226 | refresh_list = bdrv_topological_dfs(refresh_list, found, old_bs); | |
5227 | refresh_list = bdrv_topological_dfs(refresh_list, found, new_bs); | |
5228 | ||
5229 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); | |
5230 | ||
5231 | tran_finalize(tran, ret); | |
5232 | ||
5233 | bdrv_drained_end(old_bs); | |
5234 | bdrv_drained_end(new_bs); | |
5235 | bdrv_unref(old_bs); | |
5236 | ||
5237 | return ret; | |
5238 | } | |
5239 | ||
4f6fd349 | 5240 | static void bdrv_delete(BlockDriverState *bs) |
b338082b | 5241 | { |
3718d8ab | 5242 | assert(bdrv_op_blocker_is_empty(bs)); |
4f6fd349 | 5243 | assert(!bs->refcnt); |
18846dee | 5244 | |
1b7bdbc1 | 5245 | /* remove from list, if necessary */ |
63eaaae0 KW |
5246 | if (bs->node_name[0] != '\0') { |
5247 | QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); | |
5248 | } | |
2c1d04e0 HR |
5249 | QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); |
5250 | ||
30c321f9 AK |
5251 | bdrv_close(bs); |
5252 | ||
7267c094 | 5253 | g_free(bs); |
fc01f7e7 FB |
5254 | } |
5255 | ||
96796fae VSO |
5256 | |
5257 | /* | |
5258 | * Replace @bs by newly created block node. | |
5259 | * | |
5260 | * @options is a QDict of options to pass to the block drivers, or NULL for an | |
5261 | * empty set of options. The reference to the QDict belongs to the block layer | |
5262 | * after the call (even on failure), so if the caller intends to reuse the | |
5263 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. | |
5264 | */ | |
5265 | BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options, | |
8872ef78 AS |
5266 | int flags, Error **errp) |
5267 | { | |
f053b7e8 VSO |
5268 | ERRP_GUARD(); |
5269 | int ret; | |
b11c8739 VSO |
5270 | BlockDriverState *new_node_bs = NULL; |
5271 | const char *drvname, *node_name; | |
5272 | BlockDriver *drv; | |
5273 | ||
5274 | drvname = qdict_get_try_str(options, "driver"); | |
5275 | if (!drvname) { | |
5276 | error_setg(errp, "driver is not specified"); | |
5277 | goto fail; | |
5278 | } | |
5279 | ||
5280 | drv = bdrv_find_format(drvname); | |
5281 | if (!drv) { | |
5282 | error_setg(errp, "Unknown driver: '%s'", drvname); | |
5283 | goto fail; | |
5284 | } | |
8872ef78 | 5285 | |
b11c8739 VSO |
5286 | node_name = qdict_get_try_str(options, "node-name"); |
5287 | ||
5288 | new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags, | |
5289 | errp); | |
5290 | options = NULL; /* bdrv_new_open_driver() eats options */ | |
5291 | if (!new_node_bs) { | |
8872ef78 | 5292 | error_prepend(errp, "Could not create node: "); |
b11c8739 | 5293 | goto fail; |
8872ef78 AS |
5294 | } |
5295 | ||
5296 | bdrv_drained_begin(bs); | |
f053b7e8 | 5297 | ret = bdrv_replace_node(bs, new_node_bs, errp); |
8872ef78 AS |
5298 | bdrv_drained_end(bs); |
5299 | ||
f053b7e8 VSO |
5300 | if (ret < 0) { |
5301 | error_prepend(errp, "Could not replace node: "); | |
b11c8739 | 5302 | goto fail; |
8872ef78 AS |
5303 | } |
5304 | ||
5305 | return new_node_bs; | |
b11c8739 VSO |
5306 | |
5307 | fail: | |
5308 | qobject_unref(options); | |
5309 | bdrv_unref(new_node_bs); | |
5310 | return NULL; | |
8872ef78 AS |
5311 | } |
5312 | ||
e97fc193 AL |
5313 | /* |
5314 | * Run consistency checks on an image | |
5315 | * | |
e076f338 | 5316 | * Returns 0 if the check could be completed (it doesn't mean that the image is |
a1c7273b | 5317 | * free of errors) or -errno when an internal error occurred. The results of the |
e076f338 | 5318 | * check are stored in res. |
e97fc193 | 5319 | */ |
21c2283e VSO |
5320 | int coroutine_fn bdrv_co_check(BlockDriverState *bs, |
5321 | BdrvCheckResult *res, BdrvCheckMode fix) | |
e97fc193 | 5322 | { |
908bcd54 HR |
5323 | if (bs->drv == NULL) { |
5324 | return -ENOMEDIUM; | |
5325 | } | |
2fd61638 | 5326 | if (bs->drv->bdrv_co_check == NULL) { |
e97fc193 AL |
5327 | return -ENOTSUP; |
5328 | } | |
5329 | ||
e076f338 | 5330 | memset(res, 0, sizeof(*res)); |
2fd61638 PB |
5331 | return bs->drv->bdrv_co_check(bs, res, fix); |
5332 | } | |
5333 | ||
756e6736 KW |
5334 | /* |
5335 | * Return values: | |
5336 | * 0 - success | |
5337 | * -EINVAL - backing format specified, but no file | |
5338 | * -ENOSPC - can't update the backing file because no space is left in the | |
5339 | * image file header | |
5340 | * -ENOTSUP - format driver doesn't support changing the backing file | |
5341 | */ | |
e54ee1b3 | 5342 | int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file, |
497a30db | 5343 | const char *backing_fmt, bool require) |
756e6736 KW |
5344 | { |
5345 | BlockDriver *drv = bs->drv; | |
469ef350 | 5346 | int ret; |
756e6736 | 5347 | |
d470ad42 HR |
5348 | if (!drv) { |
5349 | return -ENOMEDIUM; | |
5350 | } | |
5351 | ||
5f377794 PB |
5352 | /* Backing file format doesn't make sense without a backing file */ |
5353 | if (backing_fmt && !backing_file) { | |
5354 | return -EINVAL; | |
5355 | } | |
5356 | ||
497a30db EB |
5357 | if (require && backing_file && !backing_fmt) { |
5358 | return -EINVAL; | |
e54ee1b3 EB |
5359 | } |
5360 | ||
756e6736 | 5361 | if (drv->bdrv_change_backing_file != NULL) { |
469ef350 | 5362 | ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); |
756e6736 | 5363 | } else { |
469ef350 | 5364 | ret = -ENOTSUP; |
756e6736 | 5365 | } |
469ef350 PB |
5366 | |
5367 | if (ret == 0) { | |
5368 | pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); | |
5369 | pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); | |
998c2019 HR |
5370 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
5371 | backing_file ?: ""); | |
469ef350 PB |
5372 | } |
5373 | return ret; | |
756e6736 KW |
5374 | } |
5375 | ||
6ebdcee2 | 5376 | /* |
dcf3f9b2 HR |
5377 | * Finds the first non-filter node above bs in the chain between |
5378 | * active and bs. The returned node is either an immediate parent of | |
5379 | * bs, or there are only filter nodes between the two. | |
6ebdcee2 JC |
5380 | * |
5381 | * Returns NULL if bs is not found in active's image chain, | |
5382 | * or if active == bs. | |
4caf0fcd JC |
5383 | * |
5384 | * Returns the bottommost base image if bs == NULL. | |
6ebdcee2 JC |
5385 | */ |
5386 | BlockDriverState *bdrv_find_overlay(BlockDriverState *active, | |
5387 | BlockDriverState *bs) | |
5388 | { | |
dcf3f9b2 HR |
5389 | bs = bdrv_skip_filters(bs); |
5390 | active = bdrv_skip_filters(active); | |
5391 | ||
5392 | while (active) { | |
5393 | BlockDriverState *next = bdrv_backing_chain_next(active); | |
5394 | if (bs == next) { | |
5395 | return active; | |
5396 | } | |
5397 | active = next; | |
6ebdcee2 JC |
5398 | } |
5399 | ||
dcf3f9b2 | 5400 | return NULL; |
4caf0fcd | 5401 | } |
6ebdcee2 | 5402 | |
4caf0fcd JC |
5403 | /* Given a BDS, searches for the base layer. */ |
5404 | BlockDriverState *bdrv_find_base(BlockDriverState *bs) | |
5405 | { | |
5406 | return bdrv_find_overlay(bs, NULL); | |
6ebdcee2 JC |
5407 | } |
5408 | ||
2cad1ebe | 5409 | /* |
7b99a266 HR |
5410 | * Return true if at least one of the COW (backing) and filter links |
5411 | * between @bs and @base is frozen. @errp is set if that's the case. | |
0f0998f6 | 5412 | * @base must be reachable from @bs, or NULL. |
2cad1ebe AG |
5413 | */ |
5414 | bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base, | |
5415 | Error **errp) | |
5416 | { | |
5417 | BlockDriverState *i; | |
7b99a266 | 5418 | BdrvChild *child; |
2cad1ebe | 5419 | |
7b99a266 HR |
5420 | for (i = bs; i != base; i = child_bs(child)) { |
5421 | child = bdrv_filter_or_cow_child(i); | |
5422 | ||
5423 | if (child && child->frozen) { | |
2cad1ebe | 5424 | error_setg(errp, "Cannot change '%s' link from '%s' to '%s'", |
7b99a266 | 5425 | child->name, i->node_name, child->bs->node_name); |
2cad1ebe AG |
5426 | return true; |
5427 | } | |
5428 | } | |
5429 | ||
5430 | return false; | |
5431 | } | |
5432 | ||
5433 | /* | |
7b99a266 | 5434 | * Freeze all COW (backing) and filter links between @bs and @base. |
2cad1ebe AG |
5435 | * If any of the links is already frozen the operation is aborted and |
5436 | * none of the links are modified. | |
0f0998f6 | 5437 | * @base must be reachable from @bs, or NULL. |
2cad1ebe AG |
5438 | * Returns 0 on success. On failure returns < 0 and sets @errp. |
5439 | */ | |
5440 | int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base, | |
5441 | Error **errp) | |
5442 | { | |
5443 | BlockDriverState *i; | |
7b99a266 | 5444 | BdrvChild *child; |
2cad1ebe AG |
5445 | |
5446 | if (bdrv_is_backing_chain_frozen(bs, base, errp)) { | |
5447 | return -EPERM; | |
5448 | } | |
5449 | ||
7b99a266 HR |
5450 | for (i = bs; i != base; i = child_bs(child)) { |
5451 | child = bdrv_filter_or_cow_child(i); | |
5452 | if (child && child->bs->never_freeze) { | |
e5182c1c | 5453 | error_setg(errp, "Cannot freeze '%s' link to '%s'", |
7b99a266 | 5454 | child->name, child->bs->node_name); |
e5182c1c HR |
5455 | return -EPERM; |
5456 | } | |
5457 | } | |
5458 | ||
7b99a266 HR |
5459 | for (i = bs; i != base; i = child_bs(child)) { |
5460 | child = bdrv_filter_or_cow_child(i); | |
5461 | if (child) { | |
5462 | child->frozen = true; | |
0f0998f6 | 5463 | } |
2cad1ebe AG |
5464 | } |
5465 | ||
5466 | return 0; | |
5467 | } | |
5468 | ||
5469 | /* | |
7b99a266 HR |
5470 | * Unfreeze all COW (backing) and filter links between @bs and @base. |
5471 | * The caller must ensure that all links are frozen before using this | |
5472 | * function. | |
0f0998f6 | 5473 | * @base must be reachable from @bs, or NULL. |
2cad1ebe AG |
5474 | */ |
5475 | void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base) | |
5476 | { | |
5477 | BlockDriverState *i; | |
7b99a266 | 5478 | BdrvChild *child; |
2cad1ebe | 5479 | |
7b99a266 HR |
5480 | for (i = bs; i != base; i = child_bs(child)) { |
5481 | child = bdrv_filter_or_cow_child(i); | |
5482 | if (child) { | |
5483 | assert(child->frozen); | |
5484 | child->frozen = false; | |
0f0998f6 | 5485 | } |
2cad1ebe AG |
5486 | } |
5487 | } | |
5488 | ||
6ebdcee2 JC |
5489 | /* |
5490 | * Drops images above 'base' up to and including 'top', and sets the image | |
5491 | * above 'top' to have base as its backing file. | |
5492 | * | |
5493 | * Requires that the overlay to 'top' is opened r/w, so that the backing file | |
5494 | * information in 'bs' can be properly updated. | |
5495 | * | |
5496 | * E.g., this will convert the following chain: | |
5497 | * bottom <- base <- intermediate <- top <- active | |
5498 | * | |
5499 | * to | |
5500 | * | |
5501 | * bottom <- base <- active | |
5502 | * | |
5503 | * It is allowed for bottom==base, in which case it converts: | |
5504 | * | |
5505 | * base <- intermediate <- top <- active | |
5506 | * | |
5507 | * to | |
5508 | * | |
5509 | * base <- active | |
5510 | * | |
54e26900 JC |
5511 | * If backing_file_str is non-NULL, it will be used when modifying top's |
5512 | * overlay image metadata. | |
5513 | * | |
6ebdcee2 JC |
5514 | * Error conditions: |
5515 | * if active == top, that is considered an error | |
5516 | * | |
5517 | */ | |
bde70715 KW |
5518 | int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, |
5519 | const char *backing_file_str) | |
6ebdcee2 | 5520 | { |
6bd858b3 AG |
5521 | BlockDriverState *explicit_top = top; |
5522 | bool update_inherits_from; | |
d669ed6a | 5523 | BdrvChild *c; |
12fa4af6 | 5524 | Error *local_err = NULL; |
6ebdcee2 | 5525 | int ret = -EIO; |
d669ed6a VSO |
5526 | g_autoptr(GSList) updated_children = NULL; |
5527 | GSList *p; | |
6ebdcee2 | 5528 | |
6858eba0 | 5529 | bdrv_ref(top); |
637d54a5 | 5530 | bdrv_subtree_drained_begin(top); |
6858eba0 | 5531 | |
6ebdcee2 JC |
5532 | if (!top->drv || !base->drv) { |
5533 | goto exit; | |
5534 | } | |
5535 | ||
5db15a57 KW |
5536 | /* Make sure that base is in the backing chain of top */ |
5537 | if (!bdrv_chain_contains(top, base)) { | |
6ebdcee2 JC |
5538 | goto exit; |
5539 | } | |
5540 | ||
6bd858b3 AG |
5541 | /* If 'base' recursively inherits from 'top' then we should set |
5542 | * base->inherits_from to top->inherits_from after 'top' and all | |
5543 | * other intermediate nodes have been dropped. | |
5544 | * If 'top' is an implicit node (e.g. "commit_top") we should skip | |
5545 | * it because no one inherits from it. We use explicit_top for that. */ | |
dcf3f9b2 | 5546 | explicit_top = bdrv_skip_implicit_filters(explicit_top); |
6bd858b3 AG |
5547 | update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top); |
5548 | ||
6ebdcee2 | 5549 | /* success - we can delete the intermediate states, and link top->base */ |
f30c66ba HR |
5550 | if (!backing_file_str) { |
5551 | bdrv_refresh_filename(base); | |
5552 | backing_file_str = base->filename; | |
5553 | } | |
61f09cea | 5554 | |
d669ed6a VSO |
5555 | QLIST_FOREACH(c, &top->parents, next_parent) { |
5556 | updated_children = g_slist_prepend(updated_children, c); | |
5557 | } | |
5558 | ||
3108a15c VSO |
5559 | /* |
5560 | * It seems correct to pass detach_subchain=true here, but it triggers | |
5561 | * one more yet not fixed bug, when due to nested aio_poll loop we switch to | |
5562 | * another drained section, which modify the graph (for example, removing | |
5563 | * the child, which we keep in updated_children list). So, it's a TODO. | |
5564 | * | |
5565 | * Note, bug triggered if pass detach_subchain=true here and run | |
5566 | * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash. | |
5567 | * That's a FIXME. | |
5568 | */ | |
5569 | bdrv_replace_node_common(top, base, false, false, &local_err); | |
d669ed6a VSO |
5570 | if (local_err) { |
5571 | error_report_err(local_err); | |
5572 | goto exit; | |
5573 | } | |
5574 | ||
5575 | for (p = updated_children; p; p = p->next) { | |
5576 | c = p->data; | |
12fa4af6 | 5577 | |
bd86fb99 HR |
5578 | if (c->klass->update_filename) { |
5579 | ret = c->klass->update_filename(c, base, backing_file_str, | |
5580 | &local_err); | |
61f09cea | 5581 | if (ret < 0) { |
d669ed6a VSO |
5582 | /* |
5583 | * TODO: Actually, we want to rollback all previous iterations | |
5584 | * of this loop, and (which is almost impossible) previous | |
5585 | * bdrv_replace_node()... | |
5586 | * | |
5587 | * Note, that c->klass->update_filename may lead to permission | |
5588 | * update, so it's a bad idea to call it inside permission | |
5589 | * update transaction of bdrv_replace_node. | |
5590 | */ | |
61f09cea KW |
5591 | error_report_err(local_err); |
5592 | goto exit; | |
5593 | } | |
5594 | } | |
12fa4af6 | 5595 | } |
6ebdcee2 | 5596 | |
6bd858b3 AG |
5597 | if (update_inherits_from) { |
5598 | base->inherits_from = explicit_top->inherits_from; | |
5599 | } | |
5600 | ||
6ebdcee2 | 5601 | ret = 0; |
6ebdcee2 | 5602 | exit: |
637d54a5 | 5603 | bdrv_subtree_drained_end(top); |
6858eba0 | 5604 | bdrv_unref(top); |
6ebdcee2 JC |
5605 | return ret; |
5606 | } | |
5607 | ||
081e4650 HR |
5608 | /** |
5609 | * Implementation of BlockDriver.bdrv_get_allocated_file_size() that | |
5610 | * sums the size of all data-bearing children. (This excludes backing | |
5611 | * children.) | |
5612 | */ | |
5613 | static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs) | |
5614 | { | |
5615 | BdrvChild *child; | |
5616 | int64_t child_size, sum = 0; | |
5617 | ||
5618 | QLIST_FOREACH(child, &bs->children, next) { | |
5619 | if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | | |
5620 | BDRV_CHILD_FILTERED)) | |
5621 | { | |
5622 | child_size = bdrv_get_allocated_file_size(child->bs); | |
5623 | if (child_size < 0) { | |
5624 | return child_size; | |
5625 | } | |
5626 | sum += child_size; | |
5627 | } | |
5628 | } | |
5629 | ||
5630 | return sum; | |
5631 | } | |
5632 | ||
61007b31 SH |
5633 | /** |
5634 | * Length of a allocated file in bytes. Sparse files are counted by actual | |
5635 | * allocated space. Return < 0 if error or unknown. | |
5636 | */ | |
5637 | int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) | |
71d0770c | 5638 | { |
61007b31 SH |
5639 | BlockDriver *drv = bs->drv; |
5640 | if (!drv) { | |
5641 | return -ENOMEDIUM; | |
8f4754ed | 5642 | } |
61007b31 SH |
5643 | if (drv->bdrv_get_allocated_file_size) { |
5644 | return drv->bdrv_get_allocated_file_size(bs); | |
5645 | } | |
081e4650 HR |
5646 | |
5647 | if (drv->bdrv_file_open) { | |
5648 | /* | |
5649 | * Protocol drivers default to -ENOTSUP (most of their data is | |
5650 | * not stored in any of their children (if they even have any), | |
5651 | * so there is no generic way to figure it out). | |
5652 | */ | |
5653 | return -ENOTSUP; | |
5654 | } else if (drv->is_filter) { | |
5655 | /* Filter drivers default to the size of their filtered child */ | |
5656 | return bdrv_get_allocated_file_size(bdrv_filter_bs(bs)); | |
5657 | } else { | |
5658 | /* Other drivers default to summing their children's sizes */ | |
5659 | return bdrv_sum_allocated_file_size(bs); | |
1c9805a3 SH |
5660 | } |
5661 | } | |
e7a8a783 | 5662 | |
90880ff1 SH |
5663 | /* |
5664 | * bdrv_measure: | |
5665 | * @drv: Format driver | |
5666 | * @opts: Creation options for new image | |
5667 | * @in_bs: Existing image containing data for new image (may be NULL) | |
5668 | * @errp: Error object | |
5669 | * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) | |
5670 | * or NULL on error | |
5671 | * | |
5672 | * Calculate file size required to create a new image. | |
5673 | * | |
5674 | * If @in_bs is given then space for allocated clusters and zero clusters | |
5675 | * from that image are included in the calculation. If @opts contains a | |
5676 | * backing file that is shared by @in_bs then backing clusters may be omitted | |
5677 | * from the calculation. | |
5678 | * | |
5679 | * If @in_bs is NULL then the calculation includes no allocated clusters | |
5680 | * unless a preallocation option is given in @opts. | |
5681 | * | |
5682 | * Note that @in_bs may use a different BlockDriver from @drv. | |
5683 | * | |
5684 | * If an error occurs the @errp pointer is set. | |
5685 | */ | |
5686 | BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, | |
5687 | BlockDriverState *in_bs, Error **errp) | |
5688 | { | |
5689 | if (!drv->bdrv_measure) { | |
5690 | error_setg(errp, "Block driver '%s' does not support size measurement", | |
5691 | drv->format_name); | |
5692 | return NULL; | |
5693 | } | |
5694 | ||
5695 | return drv->bdrv_measure(opts, in_bs, errp); | |
5696 | } | |
5697 | ||
61007b31 SH |
5698 | /** |
5699 | * Return number of sectors on success, -errno on error. | |
1c9805a3 | 5700 | */ |
61007b31 | 5701 | int64_t bdrv_nb_sectors(BlockDriverState *bs) |
1c9805a3 | 5702 | { |
61007b31 | 5703 | BlockDriver *drv = bs->drv; |
498e386c | 5704 | |
61007b31 SH |
5705 | if (!drv) |
5706 | return -ENOMEDIUM; | |
2572b37a | 5707 | |
61007b31 SH |
5708 | if (drv->has_variable_length) { |
5709 | int ret = refresh_total_sectors(bs, bs->total_sectors); | |
5710 | if (ret < 0) { | |
5711 | return ret; | |
1c9805a3 SH |
5712 | } |
5713 | } | |
61007b31 | 5714 | return bs->total_sectors; |
1c9805a3 | 5715 | } |
b338082b | 5716 | |
61007b31 SH |
5717 | /** |
5718 | * Return length in bytes on success, -errno on error. | |
5719 | * The length is always a multiple of BDRV_SECTOR_SIZE. | |
8d3b1a2d | 5720 | */ |
61007b31 | 5721 | int64_t bdrv_getlength(BlockDriverState *bs) |
8d3b1a2d | 5722 | { |
61007b31 | 5723 | int64_t ret = bdrv_nb_sectors(bs); |
8d3b1a2d | 5724 | |
122860ba EB |
5725 | if (ret < 0) { |
5726 | return ret; | |
5727 | } | |
5728 | if (ret > INT64_MAX / BDRV_SECTOR_SIZE) { | |
5729 | return -EFBIG; | |
5730 | } | |
5731 | return ret * BDRV_SECTOR_SIZE; | |
fc01f7e7 FB |
5732 | } |
5733 | ||
61007b31 SH |
5734 | /* return 0 as number of sectors if no device present or error */ |
5735 | void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) | |
07d27a44 | 5736 | { |
61007b31 | 5737 | int64_t nb_sectors = bdrv_nb_sectors(bs); |
07d27a44 | 5738 | |
61007b31 | 5739 | *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; |
07d27a44 MA |
5740 | } |
5741 | ||
54115412 | 5742 | bool bdrv_is_sg(BlockDriverState *bs) |
f08145fe | 5743 | { |
61007b31 | 5744 | return bs->sg; |
f08145fe KW |
5745 | } |
5746 | ||
ae23f786 HR |
5747 | /** |
5748 | * Return whether the given node supports compressed writes. | |
5749 | */ | |
5750 | bool bdrv_supports_compressed_writes(BlockDriverState *bs) | |
5751 | { | |
5752 | BlockDriverState *filtered; | |
5753 | ||
5754 | if (!bs->drv || !block_driver_can_compress(bs->drv)) { | |
5755 | return false; | |
5756 | } | |
5757 | ||
5758 | filtered = bdrv_filter_bs(bs); | |
5759 | if (filtered) { | |
5760 | /* | |
5761 | * Filters can only forward compressed writes, so we have to | |
5762 | * check the child. | |
5763 | */ | |
5764 | return bdrv_supports_compressed_writes(filtered); | |
5765 | } | |
5766 | ||
5767 | return true; | |
5768 | } | |
5769 | ||
61007b31 | 5770 | const char *bdrv_get_format_name(BlockDriverState *bs) |
40b4f539 | 5771 | { |
61007b31 | 5772 | return bs->drv ? bs->drv->format_name : NULL; |
40b4f539 KW |
5773 | } |
5774 | ||
61007b31 | 5775 | static int qsort_strcmp(const void *a, const void *b) |
40b4f539 | 5776 | { |
ceff5bd7 | 5777 | return strcmp(*(char *const *)a, *(char *const *)b); |
40b4f539 KW |
5778 | } |
5779 | ||
61007b31 | 5780 | void bdrv_iterate_format(void (*it)(void *opaque, const char *name), |
9ac404c5 | 5781 | void *opaque, bool read_only) |
40b4f539 | 5782 | { |
61007b31 SH |
5783 | BlockDriver *drv; |
5784 | int count = 0; | |
5785 | int i; | |
5786 | const char **formats = NULL; | |
40b4f539 | 5787 | |
61007b31 SH |
5788 | QLIST_FOREACH(drv, &bdrv_drivers, list) { |
5789 | if (drv->format_name) { | |
5790 | bool found = false; | |
5791 | int i = count; | |
9ac404c5 AS |
5792 | |
5793 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) { | |
5794 | continue; | |
5795 | } | |
5796 | ||
61007b31 SH |
5797 | while (formats && i && !found) { |
5798 | found = !strcmp(formats[--i], drv->format_name); | |
5799 | } | |
e2a305fb | 5800 | |
61007b31 SH |
5801 | if (!found) { |
5802 | formats = g_renew(const char *, formats, count + 1); | |
5803 | formats[count++] = drv->format_name; | |
5804 | } | |
6c5a42ac | 5805 | } |
61007b31 | 5806 | } |
6c5a42ac | 5807 | |
eb0df69f HR |
5808 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { |
5809 | const char *format_name = block_driver_modules[i].format_name; | |
5810 | ||
5811 | if (format_name) { | |
5812 | bool found = false; | |
5813 | int j = count; | |
5814 | ||
9ac404c5 AS |
5815 | if (use_bdrv_whitelist && |
5816 | !bdrv_format_is_whitelisted(format_name, read_only)) { | |
5817 | continue; | |
5818 | } | |
5819 | ||
eb0df69f HR |
5820 | while (formats && j && !found) { |
5821 | found = !strcmp(formats[--j], format_name); | |
5822 | } | |
5823 | ||
5824 | if (!found) { | |
5825 | formats = g_renew(const char *, formats, count + 1); | |
5826 | formats[count++] = format_name; | |
5827 | } | |
5828 | } | |
5829 | } | |
5830 | ||
61007b31 | 5831 | qsort(formats, count, sizeof(formats[0]), qsort_strcmp); |
40b4f539 | 5832 | |
61007b31 SH |
5833 | for (i = 0; i < count; i++) { |
5834 | it(opaque, formats[i]); | |
5835 | } | |
40b4f539 | 5836 | |
61007b31 SH |
5837 | g_free(formats); |
5838 | } | |
40b4f539 | 5839 | |
61007b31 SH |
5840 | /* This function is to find a node in the bs graph */ |
5841 | BlockDriverState *bdrv_find_node(const char *node_name) | |
5842 | { | |
5843 | BlockDriverState *bs; | |
391827eb | 5844 | |
61007b31 | 5845 | assert(node_name); |
40b4f539 | 5846 | |
61007b31 SH |
5847 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
5848 | if (!strcmp(node_name, bs->node_name)) { | |
5849 | return bs; | |
40b4f539 KW |
5850 | } |
5851 | } | |
61007b31 | 5852 | return NULL; |
40b4f539 KW |
5853 | } |
5854 | ||
61007b31 | 5855 | /* Put this QMP function here so it can access the static graph_bdrv_states. */ |
facda544 PK |
5856 | BlockDeviceInfoList *bdrv_named_nodes_list(bool flat, |
5857 | Error **errp) | |
40b4f539 | 5858 | { |
9812e712 | 5859 | BlockDeviceInfoList *list; |
61007b31 | 5860 | BlockDriverState *bs; |
40b4f539 | 5861 | |
61007b31 SH |
5862 | list = NULL; |
5863 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { | |
facda544 | 5864 | BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp); |
61007b31 SH |
5865 | if (!info) { |
5866 | qapi_free_BlockDeviceInfoList(list); | |
5867 | return NULL; | |
301db7c2 | 5868 | } |
9812e712 | 5869 | QAPI_LIST_PREPEND(list, info); |
301db7c2 RH |
5870 | } |
5871 | ||
61007b31 SH |
5872 | return list; |
5873 | } | |
40b4f539 | 5874 | |
5d3b4e99 VSO |
5875 | typedef struct XDbgBlockGraphConstructor { |
5876 | XDbgBlockGraph *graph; | |
5877 | GHashTable *graph_nodes; | |
5878 | } XDbgBlockGraphConstructor; | |
5879 | ||
5880 | static XDbgBlockGraphConstructor *xdbg_graph_new(void) | |
5881 | { | |
5882 | XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1); | |
5883 | ||
5884 | gr->graph = g_new0(XDbgBlockGraph, 1); | |
5885 | gr->graph_nodes = g_hash_table_new(NULL, NULL); | |
5886 | ||
5887 | return gr; | |
5888 | } | |
5889 | ||
5890 | static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr) | |
5891 | { | |
5892 | XDbgBlockGraph *graph = gr->graph; | |
5893 | ||
5894 | g_hash_table_destroy(gr->graph_nodes); | |
5895 | g_free(gr); | |
5896 | ||
5897 | return graph; | |
5898 | } | |
5899 | ||
5900 | static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node) | |
5901 | { | |
5902 | uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node); | |
5903 | ||
5904 | if (ret != 0) { | |
5905 | return ret; | |
5906 | } | |
5907 | ||
5908 | /* | |
5909 | * Start counting from 1, not 0, because 0 interferes with not-found (NULL) | |
5910 | * answer of g_hash_table_lookup. | |
5911 | */ | |
5912 | ret = g_hash_table_size(gr->graph_nodes) + 1; | |
5913 | g_hash_table_insert(gr->graph_nodes, node, (void *)ret); | |
5914 | ||
5915 | return ret; | |
5916 | } | |
5917 | ||
5918 | static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node, | |
5919 | XDbgBlockGraphNodeType type, const char *name) | |
5920 | { | |
5921 | XDbgBlockGraphNode *n; | |
5922 | ||
5923 | n = g_new0(XDbgBlockGraphNode, 1); | |
5924 | ||
5925 | n->id = xdbg_graph_node_num(gr, node); | |
5926 | n->type = type; | |
5927 | n->name = g_strdup(name); | |
5928 | ||
9812e712 | 5929 | QAPI_LIST_PREPEND(gr->graph->nodes, n); |
5d3b4e99 VSO |
5930 | } |
5931 | ||
5932 | static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent, | |
5933 | const BdrvChild *child) | |
5934 | { | |
cdb1cec8 | 5935 | BlockPermission qapi_perm; |
5d3b4e99 VSO |
5936 | XDbgBlockGraphEdge *edge; |
5937 | ||
5d3b4e99 VSO |
5938 | edge = g_new0(XDbgBlockGraphEdge, 1); |
5939 | ||
5940 | edge->parent = xdbg_graph_node_num(gr, parent); | |
5941 | edge->child = xdbg_graph_node_num(gr, child->bs); | |
5942 | edge->name = g_strdup(child->name); | |
5943 | ||
cdb1cec8 HR |
5944 | for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) { |
5945 | uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm); | |
5946 | ||
5947 | if (flag & child->perm) { | |
9812e712 | 5948 | QAPI_LIST_PREPEND(edge->perm, qapi_perm); |
5d3b4e99 | 5949 | } |
cdb1cec8 | 5950 | if (flag & child->shared_perm) { |
9812e712 | 5951 | QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm); |
5d3b4e99 VSO |
5952 | } |
5953 | } | |
5954 | ||
9812e712 | 5955 | QAPI_LIST_PREPEND(gr->graph->edges, edge); |
5d3b4e99 VSO |
5956 | } |
5957 | ||
5958 | ||
5959 | XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp) | |
5960 | { | |
5961 | BlockBackend *blk; | |
5962 | BlockJob *job; | |
5963 | BlockDriverState *bs; | |
5964 | BdrvChild *child; | |
5965 | XDbgBlockGraphConstructor *gr = xdbg_graph_new(); | |
5966 | ||
5967 | for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) { | |
5968 | char *allocated_name = NULL; | |
5969 | const char *name = blk_name(blk); | |
5970 | ||
5971 | if (!*name) { | |
5972 | name = allocated_name = blk_get_attached_dev_id(blk); | |
5973 | } | |
5974 | xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND, | |
5975 | name); | |
5976 | g_free(allocated_name); | |
5977 | if (blk_root(blk)) { | |
5978 | xdbg_graph_add_edge(gr, blk, blk_root(blk)); | |
5979 | } | |
5980 | } | |
5981 | ||
5982 | for (job = block_job_next(NULL); job; job = block_job_next(job)) { | |
5983 | GSList *el; | |
5984 | ||
5985 | xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB, | |
5986 | job->job.id); | |
5987 | for (el = job->nodes; el; el = el->next) { | |
5988 | xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data); | |
5989 | } | |
5990 | } | |
5991 | ||
5992 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { | |
5993 | xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER, | |
5994 | bs->node_name); | |
5995 | QLIST_FOREACH(child, &bs->children, next) { | |
5996 | xdbg_graph_add_edge(gr, bs, child); | |
5997 | } | |
5998 | } | |
5999 | ||
6000 | return xdbg_graph_finalize(gr); | |
6001 | } | |
6002 | ||
61007b31 SH |
6003 | BlockDriverState *bdrv_lookup_bs(const char *device, |
6004 | const char *node_name, | |
6005 | Error **errp) | |
6006 | { | |
6007 | BlockBackend *blk; | |
6008 | BlockDriverState *bs; | |
40b4f539 | 6009 | |
61007b31 SH |
6010 | if (device) { |
6011 | blk = blk_by_name(device); | |
40b4f539 | 6012 | |
61007b31 | 6013 | if (blk) { |
9f4ed6fb AG |
6014 | bs = blk_bs(blk); |
6015 | if (!bs) { | |
5433c24f | 6016 | error_setg(errp, "Device '%s' has no medium", device); |
5433c24f HR |
6017 | } |
6018 | ||
9f4ed6fb | 6019 | return bs; |
61007b31 SH |
6020 | } |
6021 | } | |
40b4f539 | 6022 | |
61007b31 SH |
6023 | if (node_name) { |
6024 | bs = bdrv_find_node(node_name); | |
6d519a5f | 6025 | |
61007b31 SH |
6026 | if (bs) { |
6027 | return bs; | |
6028 | } | |
40b4f539 KW |
6029 | } |
6030 | ||
785ec4b1 | 6031 | error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'", |
61007b31 SH |
6032 | device ? device : "", |
6033 | node_name ? node_name : ""); | |
6034 | return NULL; | |
40b4f539 KW |
6035 | } |
6036 | ||
61007b31 SH |
6037 | /* If 'base' is in the same chain as 'top', return true. Otherwise, |
6038 | * return false. If either argument is NULL, return false. */ | |
6039 | bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) | |
83f64091 | 6040 | { |
61007b31 | 6041 | while (top && top != base) { |
dcf3f9b2 | 6042 | top = bdrv_filter_or_cow_bs(top); |
02c50efe | 6043 | } |
61007b31 SH |
6044 | |
6045 | return top != NULL; | |
02c50efe FZ |
6046 | } |
6047 | ||
61007b31 | 6048 | BlockDriverState *bdrv_next_node(BlockDriverState *bs) |
02c50efe | 6049 | { |
61007b31 SH |
6050 | if (!bs) { |
6051 | return QTAILQ_FIRST(&graph_bdrv_states); | |
02c50efe | 6052 | } |
61007b31 | 6053 | return QTAILQ_NEXT(bs, node_list); |
83f64091 FB |
6054 | } |
6055 | ||
0f12264e KW |
6056 | BlockDriverState *bdrv_next_all_states(BlockDriverState *bs) |
6057 | { | |
6058 | if (!bs) { | |
6059 | return QTAILQ_FIRST(&all_bdrv_states); | |
6060 | } | |
6061 | return QTAILQ_NEXT(bs, bs_list); | |
6062 | } | |
6063 | ||
61007b31 | 6064 | const char *bdrv_get_node_name(const BlockDriverState *bs) |
83f64091 | 6065 | { |
61007b31 | 6066 | return bs->node_name; |
beac80cd FB |
6067 | } |
6068 | ||
1f0c461b | 6069 | const char *bdrv_get_parent_name(const BlockDriverState *bs) |
4c265bf9 KW |
6070 | { |
6071 | BdrvChild *c; | |
6072 | const char *name; | |
6073 | ||
6074 | /* If multiple parents have a name, just pick the first one. */ | |
6075 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
bd86fb99 HR |
6076 | if (c->klass->get_name) { |
6077 | name = c->klass->get_name(c); | |
4c265bf9 KW |
6078 | if (name && *name) { |
6079 | return name; | |
6080 | } | |
6081 | } | |
6082 | } | |
6083 | ||
6084 | return NULL; | |
6085 | } | |
6086 | ||
61007b31 SH |
6087 | /* TODO check what callers really want: bs->node_name or blk_name() */ |
6088 | const char *bdrv_get_device_name(const BlockDriverState *bs) | |
beac80cd | 6089 | { |
4c265bf9 | 6090 | return bdrv_get_parent_name(bs) ?: ""; |
f141eafe | 6091 | } |
83f64091 | 6092 | |
61007b31 SH |
6093 | /* This can be used to identify nodes that might not have a device |
6094 | * name associated. Since node and device names live in the same | |
6095 | * namespace, the result is unambiguous. The exception is if both are | |
6096 | * absent, then this returns an empty (non-null) string. */ | |
6097 | const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) | |
f141eafe | 6098 | { |
4c265bf9 | 6099 | return bdrv_get_parent_name(bs) ?: bs->node_name; |
beac80cd | 6100 | } |
beac80cd | 6101 | |
61007b31 | 6102 | int bdrv_get_flags(BlockDriverState *bs) |
0b5a2445 | 6103 | { |
61007b31 | 6104 | return bs->open_flags; |
0b5a2445 PB |
6105 | } |
6106 | ||
61007b31 | 6107 | int bdrv_has_zero_init_1(BlockDriverState *bs) |
68485420 | 6108 | { |
61007b31 | 6109 | return 1; |
0b5a2445 PB |
6110 | } |
6111 | ||
61007b31 | 6112 | int bdrv_has_zero_init(BlockDriverState *bs) |
0b5a2445 | 6113 | { |
93393e69 HR |
6114 | BlockDriverState *filtered; |
6115 | ||
d470ad42 HR |
6116 | if (!bs->drv) { |
6117 | return 0; | |
6118 | } | |
0b5a2445 | 6119 | |
61007b31 SH |
6120 | /* If BS is a copy on write image, it is initialized to |
6121 | the contents of the base image, which may not be zeroes. */ | |
34778172 | 6122 | if (bdrv_cow_child(bs)) { |
61007b31 SH |
6123 | return 0; |
6124 | } | |
6125 | if (bs->drv->bdrv_has_zero_init) { | |
6126 | return bs->drv->bdrv_has_zero_init(bs); | |
0b5a2445 | 6127 | } |
93393e69 HR |
6128 | |
6129 | filtered = bdrv_filter_bs(bs); | |
6130 | if (filtered) { | |
6131 | return bdrv_has_zero_init(filtered); | |
5a612c00 | 6132 | } |
61007b31 SH |
6133 | |
6134 | /* safe default */ | |
6135 | return 0; | |
68485420 KW |
6136 | } |
6137 | ||
61007b31 | 6138 | bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) |
68485420 | 6139 | { |
2f0342ef | 6140 | if (!(bs->open_flags & BDRV_O_UNMAP)) { |
61007b31 SH |
6141 | return false; |
6142 | } | |
68485420 | 6143 | |
e24d813b | 6144 | return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; |
68485420 KW |
6145 | } |
6146 | ||
61007b31 SH |
6147 | void bdrv_get_backing_filename(BlockDriverState *bs, |
6148 | char *filename, int filename_size) | |
016f5cf6 | 6149 | { |
61007b31 SH |
6150 | pstrcpy(filename, filename_size, bs->backing_file); |
6151 | } | |
d318aea9 | 6152 | |
61007b31 SH |
6153 | int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
6154 | { | |
8b117001 | 6155 | int ret; |
61007b31 | 6156 | BlockDriver *drv = bs->drv; |
5a612c00 MP |
6157 | /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ |
6158 | if (!drv) { | |
61007b31 | 6159 | return -ENOMEDIUM; |
5a612c00 MP |
6160 | } |
6161 | if (!drv->bdrv_get_info) { | |
93393e69 HR |
6162 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
6163 | if (filtered) { | |
6164 | return bdrv_get_info(filtered, bdi); | |
5a612c00 | 6165 | } |
61007b31 | 6166 | return -ENOTSUP; |
5a612c00 | 6167 | } |
61007b31 | 6168 | memset(bdi, 0, sizeof(*bdi)); |
8b117001 VSO |
6169 | ret = drv->bdrv_get_info(bs, bdi); |
6170 | if (ret < 0) { | |
6171 | return ret; | |
6172 | } | |
6173 | ||
6174 | if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) { | |
6175 | return -EINVAL; | |
6176 | } | |
6177 | ||
6178 | return 0; | |
61007b31 | 6179 | } |
016f5cf6 | 6180 | |
1bf6e9ca AS |
6181 | ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs, |
6182 | Error **errp) | |
61007b31 SH |
6183 | { |
6184 | BlockDriver *drv = bs->drv; | |
6185 | if (drv && drv->bdrv_get_specific_info) { | |
1bf6e9ca | 6186 | return drv->bdrv_get_specific_info(bs, errp); |
61007b31 SH |
6187 | } |
6188 | return NULL; | |
016f5cf6 AG |
6189 | } |
6190 | ||
d9245599 AN |
6191 | BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs) |
6192 | { | |
6193 | BlockDriver *drv = bs->drv; | |
6194 | if (!drv || !drv->bdrv_get_specific_stats) { | |
6195 | return NULL; | |
6196 | } | |
6197 | return drv->bdrv_get_specific_stats(bs); | |
6198 | } | |
6199 | ||
a31939e6 | 6200 | void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) |
4265d620 | 6201 | { |
61007b31 SH |
6202 | if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { |
6203 | return; | |
6204 | } | |
4265d620 | 6205 | |
61007b31 | 6206 | bs->drv->bdrv_debug_event(bs, event); |
4265d620 PB |
6207 | } |
6208 | ||
d10529a2 | 6209 | static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs) |
4265d620 | 6210 | { |
61007b31 | 6211 | while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { |
f706a92f | 6212 | bs = bdrv_primary_bs(bs); |
61007b31 | 6213 | } |
4265d620 | 6214 | |
61007b31 | 6215 | if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { |
d10529a2 VSO |
6216 | assert(bs->drv->bdrv_debug_remove_breakpoint); |
6217 | return bs; | |
6218 | } | |
6219 | ||
6220 | return NULL; | |
6221 | } | |
6222 | ||
6223 | int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, | |
6224 | const char *tag) | |
6225 | { | |
6226 | bs = bdrv_find_debug_node(bs); | |
6227 | if (bs) { | |
61007b31 SH |
6228 | return bs->drv->bdrv_debug_breakpoint(bs, event, tag); |
6229 | } | |
4265d620 | 6230 | |
61007b31 | 6231 | return -ENOTSUP; |
4265d620 PB |
6232 | } |
6233 | ||
61007b31 | 6234 | int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) |
ea2384d3 | 6235 | { |
d10529a2 VSO |
6236 | bs = bdrv_find_debug_node(bs); |
6237 | if (bs) { | |
61007b31 SH |
6238 | return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); |
6239 | } | |
6240 | ||
6241 | return -ENOTSUP; | |
eb852011 MA |
6242 | } |
6243 | ||
61007b31 | 6244 | int bdrv_debug_resume(BlockDriverState *bs, const char *tag) |
ce1a14dc | 6245 | { |
61007b31 | 6246 | while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { |
f706a92f | 6247 | bs = bdrv_primary_bs(bs); |
61007b31 | 6248 | } |
ce1a14dc | 6249 | |
61007b31 SH |
6250 | if (bs && bs->drv && bs->drv->bdrv_debug_resume) { |
6251 | return bs->drv->bdrv_debug_resume(bs, tag); | |
6252 | } | |
ce1a14dc | 6253 | |
61007b31 | 6254 | return -ENOTSUP; |
f197fe2b FZ |
6255 | } |
6256 | ||
61007b31 | 6257 | bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) |
ce1a14dc | 6258 | { |
61007b31 | 6259 | while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { |
f706a92f | 6260 | bs = bdrv_primary_bs(bs); |
f197fe2b | 6261 | } |
19cb3738 | 6262 | |
61007b31 SH |
6263 | if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { |
6264 | return bs->drv->bdrv_debug_is_suspended(bs, tag); | |
6265 | } | |
f9f05dc5 | 6266 | |
61007b31 SH |
6267 | return false; |
6268 | } | |
f9f05dc5 | 6269 | |
61007b31 SH |
6270 | /* backing_file can either be relative, or absolute, or a protocol. If it is |
6271 | * relative, it must be relative to the chain. So, passing in bs->filename | |
6272 | * from a BDS as backing_file should not be done, as that may be relative to | |
6273 | * the CWD rather than the chain. */ | |
6274 | BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, | |
6275 | const char *backing_file) | |
f9f05dc5 | 6276 | { |
61007b31 SH |
6277 | char *filename_full = NULL; |
6278 | char *backing_file_full = NULL; | |
6279 | char *filename_tmp = NULL; | |
6280 | int is_protocol = 0; | |
0b877d09 | 6281 | bool filenames_refreshed = false; |
61007b31 SH |
6282 | BlockDriverState *curr_bs = NULL; |
6283 | BlockDriverState *retval = NULL; | |
dcf3f9b2 | 6284 | BlockDriverState *bs_below; |
f9f05dc5 | 6285 | |
61007b31 SH |
6286 | if (!bs || !bs->drv || !backing_file) { |
6287 | return NULL; | |
f9f05dc5 KW |
6288 | } |
6289 | ||
61007b31 SH |
6290 | filename_full = g_malloc(PATH_MAX); |
6291 | backing_file_full = g_malloc(PATH_MAX); | |
f9f05dc5 | 6292 | |
61007b31 | 6293 | is_protocol = path_has_protocol(backing_file); |
f9f05dc5 | 6294 | |
dcf3f9b2 HR |
6295 | /* |
6296 | * Being largely a legacy function, skip any filters here | |
6297 | * (because filters do not have normal filenames, so they cannot | |
6298 | * match anyway; and allowing json:{} filenames is a bit out of | |
6299 | * scope). | |
6300 | */ | |
6301 | for (curr_bs = bdrv_skip_filters(bs); | |
6302 | bdrv_cow_child(curr_bs) != NULL; | |
6303 | curr_bs = bs_below) | |
6304 | { | |
6305 | bs_below = bdrv_backing_chain_next(curr_bs); | |
f9f05dc5 | 6306 | |
0b877d09 HR |
6307 | if (bdrv_backing_overridden(curr_bs)) { |
6308 | /* | |
6309 | * If the backing file was overridden, we can only compare | |
6310 | * directly against the backing node's filename. | |
6311 | */ | |
6312 | ||
6313 | if (!filenames_refreshed) { | |
6314 | /* | |
6315 | * This will automatically refresh all of the | |
6316 | * filenames in the rest of the backing chain, so we | |
6317 | * only need to do this once. | |
6318 | */ | |
6319 | bdrv_refresh_filename(bs_below); | |
6320 | filenames_refreshed = true; | |
6321 | } | |
6322 | ||
6323 | if (strcmp(backing_file, bs_below->filename) == 0) { | |
6324 | retval = bs_below; | |
6325 | break; | |
6326 | } | |
6327 | } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) { | |
6328 | /* | |
6329 | * If either of the filename paths is actually a protocol, then | |
6330 | * compare unmodified paths; otherwise make paths relative. | |
6331 | */ | |
6b6833c1 HR |
6332 | char *backing_file_full_ret; |
6333 | ||
61007b31 | 6334 | if (strcmp(backing_file, curr_bs->backing_file) == 0) { |
dcf3f9b2 | 6335 | retval = bs_below; |
61007b31 SH |
6336 | break; |
6337 | } | |
418661e0 | 6338 | /* Also check against the full backing filename for the image */ |
6b6833c1 HR |
6339 | backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs, |
6340 | NULL); | |
6341 | if (backing_file_full_ret) { | |
6342 | bool equal = strcmp(backing_file, backing_file_full_ret) == 0; | |
6343 | g_free(backing_file_full_ret); | |
6344 | if (equal) { | |
dcf3f9b2 | 6345 | retval = bs_below; |
418661e0 JC |
6346 | break; |
6347 | } | |
418661e0 | 6348 | } |
61007b31 SH |
6349 | } else { |
6350 | /* If not an absolute filename path, make it relative to the current | |
6351 | * image's filename path */ | |
2d9158ce HR |
6352 | filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file, |
6353 | NULL); | |
6354 | /* We are going to compare canonicalized absolute pathnames */ | |
6355 | if (!filename_tmp || !realpath(filename_tmp, filename_full)) { | |
6356 | g_free(filename_tmp); | |
61007b31 SH |
6357 | continue; |
6358 | } | |
2d9158ce | 6359 | g_free(filename_tmp); |
07f07615 | 6360 | |
61007b31 SH |
6361 | /* We need to make sure the backing filename we are comparing against |
6362 | * is relative to the current image filename (or absolute) */ | |
2d9158ce HR |
6363 | filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL); |
6364 | if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) { | |
6365 | g_free(filename_tmp); | |
61007b31 SH |
6366 | continue; |
6367 | } | |
2d9158ce | 6368 | g_free(filename_tmp); |
eb489bb1 | 6369 | |
61007b31 | 6370 | if (strcmp(backing_file_full, filename_full) == 0) { |
dcf3f9b2 | 6371 | retval = bs_below; |
61007b31 SH |
6372 | break; |
6373 | } | |
6374 | } | |
eb489bb1 KW |
6375 | } |
6376 | ||
61007b31 SH |
6377 | g_free(filename_full); |
6378 | g_free(backing_file_full); | |
61007b31 SH |
6379 | return retval; |
6380 | } | |
6381 | ||
61007b31 SH |
6382 | void bdrv_init(void) |
6383 | { | |
e5f05f8c KW |
6384 | #ifdef CONFIG_BDRV_WHITELIST_TOOLS |
6385 | use_bdrv_whitelist = 1; | |
6386 | #endif | |
61007b31 SH |
6387 | module_call_init(MODULE_INIT_BLOCK); |
6388 | } | |
29cdb251 | 6389 | |
61007b31 SH |
6390 | void bdrv_init_with_whitelist(void) |
6391 | { | |
6392 | use_bdrv_whitelist = 1; | |
6393 | bdrv_init(); | |
07f07615 PB |
6394 | } |
6395 | ||
21c2283e | 6396 | int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp) |
0f15423c | 6397 | { |
4417ab7a | 6398 | BdrvChild *child, *parent; |
5a8a30db KW |
6399 | Error *local_err = NULL; |
6400 | int ret; | |
9c98f145 | 6401 | BdrvDirtyBitmap *bm; |
5a8a30db | 6402 | |
3456a8d1 | 6403 | if (!bs->drv) { |
5416645f | 6404 | return -ENOMEDIUM; |
3456a8d1 KW |
6405 | } |
6406 | ||
16e977d5 | 6407 | QLIST_FOREACH(child, &bs->children, next) { |
2b148f39 | 6408 | bdrv_co_invalidate_cache(child->bs, &local_err); |
0d1c5c91 | 6409 | if (local_err) { |
0d1c5c91 | 6410 | error_propagate(errp, local_err); |
5416645f | 6411 | return -EINVAL; |
0d1c5c91 | 6412 | } |
5a8a30db | 6413 | } |
0d1c5c91 | 6414 | |
dafe0960 KW |
6415 | /* |
6416 | * Update permissions, they may differ for inactive nodes. | |
6417 | * | |
6418 | * Note that the required permissions of inactive images are always a | |
6419 | * subset of the permissions required after activating the image. This | |
6420 | * allows us to just get the permissions upfront without restricting | |
6421 | * drv->bdrv_invalidate_cache(). | |
6422 | * | |
6423 | * It also means that in error cases, we don't have to try and revert to | |
6424 | * the old permissions (which is an operation that could fail, too). We can | |
6425 | * just keep the extended permissions for the next time that an activation | |
6426 | * of the image is tried. | |
6427 | */ | |
7bb4941a KW |
6428 | if (bs->open_flags & BDRV_O_INACTIVE) { |
6429 | bs->open_flags &= ~BDRV_O_INACTIVE; | |
071b474f | 6430 | ret = bdrv_refresh_perms(bs, errp); |
7bb4941a | 6431 | if (ret < 0) { |
0d1c5c91 | 6432 | bs->open_flags |= BDRV_O_INACTIVE; |
5416645f | 6433 | return ret; |
0d1c5c91 | 6434 | } |
3456a8d1 | 6435 | |
7bb4941a KW |
6436 | if (bs->drv->bdrv_co_invalidate_cache) { |
6437 | bs->drv->bdrv_co_invalidate_cache(bs, &local_err); | |
6438 | if (local_err) { | |
6439 | bs->open_flags |= BDRV_O_INACTIVE; | |
6440 | error_propagate(errp, local_err); | |
5416645f | 6441 | return -EINVAL; |
7bb4941a KW |
6442 | } |
6443 | } | |
9c98f145 | 6444 | |
7bb4941a KW |
6445 | FOR_EACH_DIRTY_BITMAP(bs, bm) { |
6446 | bdrv_dirty_bitmap_skip_store(bm, false); | |
6447 | } | |
6448 | ||
6449 | ret = refresh_total_sectors(bs, bs->total_sectors); | |
6450 | if (ret < 0) { | |
6451 | bs->open_flags |= BDRV_O_INACTIVE; | |
6452 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); | |
5416645f | 6453 | return ret; |
7bb4941a | 6454 | } |
5a8a30db | 6455 | } |
4417ab7a KW |
6456 | |
6457 | QLIST_FOREACH(parent, &bs->parents, next_parent) { | |
bd86fb99 HR |
6458 | if (parent->klass->activate) { |
6459 | parent->klass->activate(parent, &local_err); | |
4417ab7a | 6460 | if (local_err) { |
78fc3b3a | 6461 | bs->open_flags |= BDRV_O_INACTIVE; |
4417ab7a | 6462 | error_propagate(errp, local_err); |
5416645f | 6463 | return -EINVAL; |
4417ab7a KW |
6464 | } |
6465 | } | |
6466 | } | |
5416645f VSO |
6467 | |
6468 | return 0; | |
0f15423c AL |
6469 | } |
6470 | ||
5a8a30db | 6471 | void bdrv_invalidate_cache_all(Error **errp) |
0f15423c | 6472 | { |
7c8eece4 | 6473 | BlockDriverState *bs; |
88be7b4b | 6474 | BdrvNextIterator it; |
0f15423c | 6475 | |
88be7b4b | 6476 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
ed78cda3 | 6477 | AioContext *aio_context = bdrv_get_aio_context(bs); |
5416645f | 6478 | int ret; |
ed78cda3 SH |
6479 | |
6480 | aio_context_acquire(aio_context); | |
5416645f | 6481 | ret = bdrv_invalidate_cache(bs, errp); |
ed78cda3 | 6482 | aio_context_release(aio_context); |
5416645f | 6483 | if (ret < 0) { |
5e003f17 | 6484 | bdrv_next_cleanup(&it); |
5a8a30db KW |
6485 | return; |
6486 | } | |
0f15423c AL |
6487 | } |
6488 | } | |
6489 | ||
9e37271f KW |
6490 | static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active) |
6491 | { | |
6492 | BdrvChild *parent; | |
6493 | ||
6494 | QLIST_FOREACH(parent, &bs->parents, next_parent) { | |
bd86fb99 | 6495 | if (parent->klass->parent_is_bds) { |
9e37271f KW |
6496 | BlockDriverState *parent_bs = parent->opaque; |
6497 | if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) { | |
6498 | return true; | |
6499 | } | |
6500 | } | |
6501 | } | |
6502 | ||
6503 | return false; | |
6504 | } | |
6505 | ||
6506 | static int bdrv_inactivate_recurse(BlockDriverState *bs) | |
76b1c7fe | 6507 | { |
cfa1a572 | 6508 | BdrvChild *child, *parent; |
76b1c7fe | 6509 | int ret; |
a13de40a | 6510 | uint64_t cumulative_perms, cumulative_shared_perms; |
76b1c7fe | 6511 | |
d470ad42 HR |
6512 | if (!bs->drv) { |
6513 | return -ENOMEDIUM; | |
6514 | } | |
6515 | ||
9e37271f KW |
6516 | /* Make sure that we don't inactivate a child before its parent. |
6517 | * It will be covered by recursion from the yet active parent. */ | |
6518 | if (bdrv_has_bds_parent(bs, true)) { | |
6519 | return 0; | |
6520 | } | |
6521 | ||
6522 | assert(!(bs->open_flags & BDRV_O_INACTIVE)); | |
6523 | ||
6524 | /* Inactivate this node */ | |
6525 | if (bs->drv->bdrv_inactivate) { | |
76b1c7fe KW |
6526 | ret = bs->drv->bdrv_inactivate(bs); |
6527 | if (ret < 0) { | |
6528 | return ret; | |
6529 | } | |
6530 | } | |
6531 | ||
9e37271f | 6532 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
bd86fb99 HR |
6533 | if (parent->klass->inactivate) { |
6534 | ret = parent->klass->inactivate(parent); | |
9e37271f KW |
6535 | if (ret < 0) { |
6536 | return ret; | |
cfa1a572 KW |
6537 | } |
6538 | } | |
9e37271f | 6539 | } |
9c5e6594 | 6540 | |
a13de40a VSO |
6541 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
6542 | &cumulative_shared_perms); | |
6543 | if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) { | |
6544 | /* Our inactive parents still need write access. Inactivation failed. */ | |
6545 | return -EPERM; | |
6546 | } | |
6547 | ||
9e37271f | 6548 | bs->open_flags |= BDRV_O_INACTIVE; |
7d5b5261 | 6549 | |
bb87e4d1 VSO |
6550 | /* |
6551 | * Update permissions, they may differ for inactive nodes. | |
6552 | * We only tried to loosen restrictions, so errors are not fatal, ignore | |
6553 | * them. | |
6554 | */ | |
071b474f | 6555 | bdrv_refresh_perms(bs, NULL); |
9e37271f KW |
6556 | |
6557 | /* Recursively inactivate children */ | |
38701b6a | 6558 | QLIST_FOREACH(child, &bs->children, next) { |
9e37271f | 6559 | ret = bdrv_inactivate_recurse(child->bs); |
38701b6a KW |
6560 | if (ret < 0) { |
6561 | return ret; | |
6562 | } | |
6563 | } | |
6564 | ||
76b1c7fe KW |
6565 | return 0; |
6566 | } | |
6567 | ||
6568 | int bdrv_inactivate_all(void) | |
6569 | { | |
79720af6 | 6570 | BlockDriverState *bs = NULL; |
88be7b4b | 6571 | BdrvNextIterator it; |
aad0b7a0 | 6572 | int ret = 0; |
bd6458e4 | 6573 | GSList *aio_ctxs = NULL, *ctx; |
76b1c7fe | 6574 | |
88be7b4b | 6575 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
bd6458e4 PB |
6576 | AioContext *aio_context = bdrv_get_aio_context(bs); |
6577 | ||
6578 | if (!g_slist_find(aio_ctxs, aio_context)) { | |
6579 | aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); | |
6580 | aio_context_acquire(aio_context); | |
6581 | } | |
aad0b7a0 | 6582 | } |
76b1c7fe | 6583 | |
9e37271f KW |
6584 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
6585 | /* Nodes with BDS parents are covered by recursion from the last | |
6586 | * parent that gets inactivated. Don't inactivate them a second | |
6587 | * time if that has already happened. */ | |
6588 | if (bdrv_has_bds_parent(bs, false)) { | |
6589 | continue; | |
6590 | } | |
6591 | ret = bdrv_inactivate_recurse(bs); | |
6592 | if (ret < 0) { | |
6593 | bdrv_next_cleanup(&it); | |
6594 | goto out; | |
76b1c7fe KW |
6595 | } |
6596 | } | |
6597 | ||
aad0b7a0 | 6598 | out: |
bd6458e4 PB |
6599 | for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { |
6600 | AioContext *aio_context = ctx->data; | |
6601 | aio_context_release(aio_context); | |
aad0b7a0 | 6602 | } |
bd6458e4 | 6603 | g_slist_free(aio_ctxs); |
aad0b7a0 FZ |
6604 | |
6605 | return ret; | |
76b1c7fe KW |
6606 | } |
6607 | ||
19cb3738 FB |
6608 | /**************************************************************/ |
6609 | /* removable device support */ | |
6610 | ||
6611 | /** | |
6612 | * Return TRUE if the media is present | |
6613 | */ | |
e031f750 | 6614 | bool bdrv_is_inserted(BlockDriverState *bs) |
19cb3738 FB |
6615 | { |
6616 | BlockDriver *drv = bs->drv; | |
28d7a789 | 6617 | BdrvChild *child; |
a1aff5bf | 6618 | |
e031f750 HR |
6619 | if (!drv) { |
6620 | return false; | |
6621 | } | |
28d7a789 HR |
6622 | if (drv->bdrv_is_inserted) { |
6623 | return drv->bdrv_is_inserted(bs); | |
6624 | } | |
6625 | QLIST_FOREACH(child, &bs->children, next) { | |
6626 | if (!bdrv_is_inserted(child->bs)) { | |
6627 | return false; | |
6628 | } | |
e031f750 | 6629 | } |
28d7a789 | 6630 | return true; |
19cb3738 FB |
6631 | } |
6632 | ||
19cb3738 FB |
6633 | /** |
6634 | * If eject_flag is TRUE, eject the media. Otherwise, close the tray | |
6635 | */ | |
f36f3949 | 6636 | void bdrv_eject(BlockDriverState *bs, bool eject_flag) |
19cb3738 FB |
6637 | { |
6638 | BlockDriver *drv = bs->drv; | |
19cb3738 | 6639 | |
822e1cd1 MA |
6640 | if (drv && drv->bdrv_eject) { |
6641 | drv->bdrv_eject(bs, eject_flag); | |
19cb3738 FB |
6642 | } |
6643 | } | |
6644 | ||
19cb3738 FB |
6645 | /** |
6646 | * Lock or unlock the media (if it is locked, the user won't be able | |
6647 | * to eject it manually). | |
6648 | */ | |
025e849a | 6649 | void bdrv_lock_medium(BlockDriverState *bs, bool locked) |
19cb3738 FB |
6650 | { |
6651 | BlockDriver *drv = bs->drv; | |
6652 | ||
025e849a | 6653 | trace_bdrv_lock_medium(bs, locked); |
b8c6d095 | 6654 | |
025e849a MA |
6655 | if (drv && drv->bdrv_lock_medium) { |
6656 | drv->bdrv_lock_medium(bs, locked); | |
19cb3738 FB |
6657 | } |
6658 | } | |
985a03b0 | 6659 | |
9fcb0251 FZ |
6660 | /* Get a reference to bs */ |
6661 | void bdrv_ref(BlockDriverState *bs) | |
6662 | { | |
6663 | bs->refcnt++; | |
6664 | } | |
6665 | ||
6666 | /* Release a previously grabbed reference to bs. | |
6667 | * If after releasing, reference count is zero, the BlockDriverState is | |
6668 | * deleted. */ | |
6669 | void bdrv_unref(BlockDriverState *bs) | |
6670 | { | |
9a4d5ca6 JC |
6671 | if (!bs) { |
6672 | return; | |
6673 | } | |
9fcb0251 FZ |
6674 | assert(bs->refcnt > 0); |
6675 | if (--bs->refcnt == 0) { | |
6676 | bdrv_delete(bs); | |
6677 | } | |
6678 | } | |
6679 | ||
fbe40ff7 FZ |
6680 | struct BdrvOpBlocker { |
6681 | Error *reason; | |
6682 | QLIST_ENTRY(BdrvOpBlocker) list; | |
6683 | }; | |
6684 | ||
6685 | bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) | |
6686 | { | |
6687 | BdrvOpBlocker *blocker; | |
6688 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); | |
6689 | if (!QLIST_EMPTY(&bs->op_blockers[op])) { | |
6690 | blocker = QLIST_FIRST(&bs->op_blockers[op]); | |
4b576648 MA |
6691 | error_propagate_prepend(errp, error_copy(blocker->reason), |
6692 | "Node '%s' is busy: ", | |
6693 | bdrv_get_device_or_node_name(bs)); | |
fbe40ff7 FZ |
6694 | return true; |
6695 | } | |
6696 | return false; | |
6697 | } | |
6698 | ||
6699 | void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) | |
6700 | { | |
6701 | BdrvOpBlocker *blocker; | |
6702 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); | |
6703 | ||
5839e53b | 6704 | blocker = g_new0(BdrvOpBlocker, 1); |
fbe40ff7 FZ |
6705 | blocker->reason = reason; |
6706 | QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); | |
6707 | } | |
6708 | ||
6709 | void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) | |
6710 | { | |
6711 | BdrvOpBlocker *blocker, *next; | |
6712 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); | |
6713 | QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { | |
6714 | if (blocker->reason == reason) { | |
6715 | QLIST_REMOVE(blocker, list); | |
6716 | g_free(blocker); | |
6717 | } | |
6718 | } | |
6719 | } | |
6720 | ||
6721 | void bdrv_op_block_all(BlockDriverState *bs, Error *reason) | |
6722 | { | |
6723 | int i; | |
6724 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { | |
6725 | bdrv_op_block(bs, i, reason); | |
6726 | } | |
6727 | } | |
6728 | ||
6729 | void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) | |
6730 | { | |
6731 | int i; | |
6732 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { | |
6733 | bdrv_op_unblock(bs, i, reason); | |
6734 | } | |
6735 | } | |
6736 | ||
6737 | bool bdrv_op_blocker_is_empty(BlockDriverState *bs) | |
6738 | { | |
6739 | int i; | |
6740 | ||
6741 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { | |
6742 | if (!QLIST_EMPTY(&bs->op_blockers[i])) { | |
6743 | return false; | |
6744 | } | |
6745 | } | |
6746 | return true; | |
6747 | } | |
6748 | ||
d92ada22 LC |
6749 | void bdrv_img_create(const char *filename, const char *fmt, |
6750 | const char *base_filename, const char *base_fmt, | |
9217283d FZ |
6751 | char *options, uint64_t img_size, int flags, bool quiet, |
6752 | Error **errp) | |
f88e1a42 | 6753 | { |
83d0521a CL |
6754 | QemuOptsList *create_opts = NULL; |
6755 | QemuOpts *opts = NULL; | |
6756 | const char *backing_fmt, *backing_file; | |
6757 | int64_t size; | |
f88e1a42 | 6758 | BlockDriver *drv, *proto_drv; |
cc84d90f | 6759 | Error *local_err = NULL; |
f88e1a42 JS |
6760 | int ret = 0; |
6761 | ||
6762 | /* Find driver and parse its options */ | |
6763 | drv = bdrv_find_format(fmt); | |
6764 | if (!drv) { | |
71c79813 | 6765 | error_setg(errp, "Unknown file format '%s'", fmt); |
d92ada22 | 6766 | return; |
f88e1a42 JS |
6767 | } |
6768 | ||
b65a5e12 | 6769 | proto_drv = bdrv_find_protocol(filename, true, errp); |
f88e1a42 | 6770 | if (!proto_drv) { |
d92ada22 | 6771 | return; |
f88e1a42 JS |
6772 | } |
6773 | ||
c6149724 HR |
6774 | if (!drv->create_opts) { |
6775 | error_setg(errp, "Format driver '%s' does not support image creation", | |
6776 | drv->format_name); | |
6777 | return; | |
6778 | } | |
6779 | ||
5a5e7f8c ML |
6780 | if (!proto_drv->create_opts) { |
6781 | error_setg(errp, "Protocol driver '%s' does not support image creation", | |
6782 | proto_drv->format_name); | |
6783 | return; | |
6784 | } | |
6785 | ||
f6dc1c31 | 6786 | /* Create parameter list */ |
c282e1fd | 6787 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
5a5e7f8c | 6788 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); |
f88e1a42 | 6789 | |
83d0521a | 6790 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
f88e1a42 JS |
6791 | |
6792 | /* Parse -o options */ | |
6793 | if (options) { | |
a5f9b9df | 6794 | if (!qemu_opts_do_parse(opts, options, NULL, errp)) { |
f88e1a42 JS |
6795 | goto out; |
6796 | } | |
6797 | } | |
6798 | ||
f6dc1c31 KW |
6799 | if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) { |
6800 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); | |
6801 | } else if (img_size != UINT64_C(-1)) { | |
6802 | error_setg(errp, "The image size must be specified only once"); | |
6803 | goto out; | |
6804 | } | |
6805 | ||
f88e1a42 | 6806 | if (base_filename) { |
235e59cf | 6807 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, |
3882578b | 6808 | NULL)) { |
71c79813 LC |
6809 | error_setg(errp, "Backing file not supported for file format '%s'", |
6810 | fmt); | |
f88e1a42 JS |
6811 | goto out; |
6812 | } | |
6813 | } | |
6814 | ||
6815 | if (base_fmt) { | |
3882578b | 6816 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) { |
71c79813 LC |
6817 | error_setg(errp, "Backing file format not supported for file " |
6818 | "format '%s'", fmt); | |
f88e1a42 JS |
6819 | goto out; |
6820 | } | |
6821 | } | |
6822 | ||
83d0521a CL |
6823 | backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); |
6824 | if (backing_file) { | |
6825 | if (!strcmp(filename, backing_file)) { | |
71c79813 LC |
6826 | error_setg(errp, "Error: Trying to create an image with the " |
6827 | "same filename as the backing file"); | |
792da93a JS |
6828 | goto out; |
6829 | } | |
975a7bd2 CK |
6830 | if (backing_file[0] == '\0') { |
6831 | error_setg(errp, "Expected backing file name, got empty string"); | |
6832 | goto out; | |
6833 | } | |
792da93a JS |
6834 | } |
6835 | ||
83d0521a | 6836 | backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); |
f88e1a42 | 6837 | |
6e6e55f5 JS |
6838 | /* The size for the image must always be specified, unless we have a backing |
6839 | * file and we have not been forbidden from opening it. */ | |
a8b42a1c | 6840 | size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); |
6e6e55f5 JS |
6841 | if (backing_file && !(flags & BDRV_O_NO_BACKING)) { |
6842 | BlockDriverState *bs; | |
645ae7d8 | 6843 | char *full_backing; |
6e6e55f5 JS |
6844 | int back_flags; |
6845 | QDict *backing_options = NULL; | |
6846 | ||
645ae7d8 HR |
6847 | full_backing = |
6848 | bdrv_get_full_backing_filename_from_filename(filename, backing_file, | |
6849 | &local_err); | |
6e6e55f5 | 6850 | if (local_err) { |
6e6e55f5 JS |
6851 | goto out; |
6852 | } | |
645ae7d8 | 6853 | assert(full_backing); |
29168018 | 6854 | |
d5b23994 HR |
6855 | /* |
6856 | * No need to do I/O here, which allows us to open encrypted | |
6857 | * backing images without needing the secret | |
6858 | */ | |
6e6e55f5 JS |
6859 | back_flags = flags; |
6860 | back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); | |
d5b23994 | 6861 | back_flags |= BDRV_O_NO_IO; |
f88e1a42 | 6862 | |
cc954f01 | 6863 | backing_options = qdict_new(); |
6e6e55f5 | 6864 | if (backing_fmt) { |
6e6e55f5 JS |
6865 | qdict_put_str(backing_options, "driver", backing_fmt); |
6866 | } | |
cc954f01 | 6867 | qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); |
e6641719 | 6868 | |
6e6e55f5 JS |
6869 | bs = bdrv_open(full_backing, NULL, backing_options, back_flags, |
6870 | &local_err); | |
6871 | g_free(full_backing); | |
add8200d EB |
6872 | if (!bs) { |
6873 | error_append_hint(&local_err, "Could not open backing image.\n"); | |
6e6e55f5 JS |
6874 | goto out; |
6875 | } else { | |
d9f059aa | 6876 | if (!backing_fmt) { |
497a30db EB |
6877 | error_setg(&local_err, |
6878 | "Backing file specified without backing format"); | |
6879 | error_append_hint(&local_err, "Detected format of %s.", | |
6880 | bs->drv->format_name); | |
6881 | goto out; | |
d9f059aa | 6882 | } |
6e6e55f5 JS |
6883 | if (size == -1) { |
6884 | /* Opened BS, have no size */ | |
6885 | size = bdrv_getlength(bs); | |
6886 | if (size < 0) { | |
6887 | error_setg_errno(errp, -size, "Could not get size of '%s'", | |
6888 | backing_file); | |
6889 | bdrv_unref(bs); | |
6890 | goto out; | |
6891 | } | |
6892 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); | |
52bf1e72 | 6893 | } |
66f6b814 | 6894 | bdrv_unref(bs); |
f88e1a42 | 6895 | } |
d9f059aa EB |
6896 | /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ |
6897 | } else if (backing_file && !backing_fmt) { | |
497a30db EB |
6898 | error_setg(&local_err, |
6899 | "Backing file specified without backing format"); | |
6900 | goto out; | |
d9f059aa | 6901 | } |
6e6e55f5 JS |
6902 | |
6903 | if (size == -1) { | |
6904 | error_setg(errp, "Image creation needs a size parameter"); | |
6905 | goto out; | |
f88e1a42 JS |
6906 | } |
6907 | ||
f382d43a | 6908 | if (!quiet) { |
fe646693 | 6909 | printf("Formatting '%s', fmt=%s ", filename, fmt); |
43c5d8f8 | 6910 | qemu_opts_print(opts, " "); |
f382d43a | 6911 | puts(""); |
4e2f4418 | 6912 | fflush(stdout); |
f382d43a | 6913 | } |
83d0521a | 6914 | |
c282e1fd | 6915 | ret = bdrv_create(drv, filename, opts, &local_err); |
83d0521a | 6916 | |
cc84d90f HR |
6917 | if (ret == -EFBIG) { |
6918 | /* This is generally a better message than whatever the driver would | |
6919 | * deliver (especially because of the cluster_size_hint), since that | |
6920 | * is most probably not much different from "image too large". */ | |
6921 | const char *cluster_size_hint = ""; | |
83d0521a | 6922 | if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { |
cc84d90f | 6923 | cluster_size_hint = " (try using a larger cluster size)"; |
f88e1a42 | 6924 | } |
cc84d90f HR |
6925 | error_setg(errp, "The image size is too large for file format '%s'" |
6926 | "%s", fmt, cluster_size_hint); | |
6927 | error_free(local_err); | |
6928 | local_err = NULL; | |
f88e1a42 JS |
6929 | } |
6930 | ||
6931 | out: | |
83d0521a CL |
6932 | qemu_opts_del(opts); |
6933 | qemu_opts_free(create_opts); | |
621ff94d | 6934 | error_propagate(errp, local_err); |
f88e1a42 | 6935 | } |
85d126f3 SH |
6936 | |
6937 | AioContext *bdrv_get_aio_context(BlockDriverState *bs) | |
6938 | { | |
33f2a757 | 6939 | return bs ? bs->aio_context : qemu_get_aio_context(); |
dcd04228 SH |
6940 | } |
6941 | ||
e336fd4c KW |
6942 | AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs) |
6943 | { | |
6944 | Coroutine *self = qemu_coroutine_self(); | |
6945 | AioContext *old_ctx = qemu_coroutine_get_aio_context(self); | |
6946 | AioContext *new_ctx; | |
6947 | ||
6948 | /* | |
6949 | * Increase bs->in_flight to ensure that this operation is completed before | |
6950 | * moving the node to a different AioContext. Read new_ctx only afterwards. | |
6951 | */ | |
6952 | bdrv_inc_in_flight(bs); | |
6953 | ||
6954 | new_ctx = bdrv_get_aio_context(bs); | |
6955 | aio_co_reschedule_self(new_ctx); | |
6956 | return old_ctx; | |
6957 | } | |
6958 | ||
6959 | void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx) | |
6960 | { | |
6961 | aio_co_reschedule_self(old_ctx); | |
6962 | bdrv_dec_in_flight(bs); | |
6963 | } | |
6964 | ||
18c6ac1c KW |
6965 | void coroutine_fn bdrv_co_lock(BlockDriverState *bs) |
6966 | { | |
6967 | AioContext *ctx = bdrv_get_aio_context(bs); | |
6968 | ||
6969 | /* In the main thread, bs->aio_context won't change concurrently */ | |
6970 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); | |
6971 | ||
6972 | /* | |
6973 | * We're in coroutine context, so we already hold the lock of the main | |
6974 | * loop AioContext. Don't lock it twice to avoid deadlocks. | |
6975 | */ | |
6976 | assert(qemu_in_coroutine()); | |
6977 | if (ctx != qemu_get_aio_context()) { | |
6978 | aio_context_acquire(ctx); | |
6979 | } | |
6980 | } | |
6981 | ||
6982 | void coroutine_fn bdrv_co_unlock(BlockDriverState *bs) | |
6983 | { | |
6984 | AioContext *ctx = bdrv_get_aio_context(bs); | |
6985 | ||
6986 | assert(qemu_in_coroutine()); | |
6987 | if (ctx != qemu_get_aio_context()) { | |
6988 | aio_context_release(ctx); | |
6989 | } | |
6990 | } | |
6991 | ||
052a7572 FZ |
6992 | void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co) |
6993 | { | |
6994 | aio_co_enter(bdrv_get_aio_context(bs), co); | |
6995 | } | |
6996 | ||
e8a095da SH |
6997 | static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) |
6998 | { | |
6999 | QLIST_REMOVE(ban, list); | |
7000 | g_free(ban); | |
7001 | } | |
7002 | ||
a3a683c3 | 7003 | static void bdrv_detach_aio_context(BlockDriverState *bs) |
dcd04228 | 7004 | { |
e8a095da | 7005 | BdrvAioNotifier *baf, *baf_tmp; |
33384421 | 7006 | |
e8a095da SH |
7007 | assert(!bs->walking_aio_notifiers); |
7008 | bs->walking_aio_notifiers = true; | |
7009 | QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { | |
7010 | if (baf->deleted) { | |
7011 | bdrv_do_remove_aio_context_notifier(baf); | |
7012 | } else { | |
7013 | baf->detach_aio_context(baf->opaque); | |
7014 | } | |
33384421 | 7015 | } |
e8a095da SH |
7016 | /* Never mind iterating again to check for ->deleted. bdrv_close() will |
7017 | * remove remaining aio notifiers if we aren't called again. | |
7018 | */ | |
7019 | bs->walking_aio_notifiers = false; | |
33384421 | 7020 | |
1bffe1ae | 7021 | if (bs->drv && bs->drv->bdrv_detach_aio_context) { |
dcd04228 SH |
7022 | bs->drv->bdrv_detach_aio_context(bs); |
7023 | } | |
dcd04228 | 7024 | |
e64f25f3 KW |
7025 | if (bs->quiesce_counter) { |
7026 | aio_enable_external(bs->aio_context); | |
7027 | } | |
dcd04228 SH |
7028 | bs->aio_context = NULL; |
7029 | } | |
7030 | ||
a3a683c3 KW |
7031 | static void bdrv_attach_aio_context(BlockDriverState *bs, |
7032 | AioContext *new_context) | |
dcd04228 | 7033 | { |
e8a095da | 7034 | BdrvAioNotifier *ban, *ban_tmp; |
33384421 | 7035 | |
e64f25f3 KW |
7036 | if (bs->quiesce_counter) { |
7037 | aio_disable_external(new_context); | |
7038 | } | |
7039 | ||
dcd04228 SH |
7040 | bs->aio_context = new_context; |
7041 | ||
1bffe1ae | 7042 | if (bs->drv && bs->drv->bdrv_attach_aio_context) { |
dcd04228 SH |
7043 | bs->drv->bdrv_attach_aio_context(bs, new_context); |
7044 | } | |
33384421 | 7045 | |
e8a095da SH |
7046 | assert(!bs->walking_aio_notifiers); |
7047 | bs->walking_aio_notifiers = true; | |
7048 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { | |
7049 | if (ban->deleted) { | |
7050 | bdrv_do_remove_aio_context_notifier(ban); | |
7051 | } else { | |
7052 | ban->attached_aio_context(new_context, ban->opaque); | |
7053 | } | |
33384421 | 7054 | } |
e8a095da | 7055 | bs->walking_aio_notifiers = false; |
dcd04228 SH |
7056 | } |
7057 | ||
42a65f02 KW |
7058 | /* |
7059 | * Changes the AioContext used for fd handlers, timers, and BHs by this | |
7060 | * BlockDriverState and all its children and parents. | |
7061 | * | |
43eaaaef HR |
7062 | * Must be called from the main AioContext. |
7063 | * | |
42a65f02 KW |
7064 | * The caller must own the AioContext lock for the old AioContext of bs, but it |
7065 | * must not own the AioContext lock for new_context (unless new_context is the | |
7066 | * same as the current context of bs). | |
7067 | * | |
7068 | * @ignore will accumulate all visited BdrvChild object. The caller is | |
7069 | * responsible for freeing the list afterwards. | |
7070 | */ | |
53a7d041 KW |
7071 | void bdrv_set_aio_context_ignore(BlockDriverState *bs, |
7072 | AioContext *new_context, GSList **ignore) | |
dcd04228 | 7073 | { |
e037c09c | 7074 | AioContext *old_context = bdrv_get_aio_context(bs); |
722d8e73 SL |
7075 | GSList *children_to_process = NULL; |
7076 | GSList *parents_to_process = NULL; | |
7077 | GSList *entry; | |
7078 | BdrvChild *child, *parent; | |
0d83708a | 7079 | |
43eaaaef HR |
7080 | g_assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
7081 | ||
e037c09c | 7082 | if (old_context == new_context) { |
57830a49 DP |
7083 | return; |
7084 | } | |
7085 | ||
d70d5954 | 7086 | bdrv_drained_begin(bs); |
0d83708a KW |
7087 | |
7088 | QLIST_FOREACH(child, &bs->children, next) { | |
53a7d041 KW |
7089 | if (g_slist_find(*ignore, child)) { |
7090 | continue; | |
7091 | } | |
7092 | *ignore = g_slist_prepend(*ignore, child); | |
722d8e73 | 7093 | children_to_process = g_slist_prepend(children_to_process, child); |
53a7d041 | 7094 | } |
722d8e73 SL |
7095 | |
7096 | QLIST_FOREACH(parent, &bs->parents, next_parent) { | |
7097 | if (g_slist_find(*ignore, parent)) { | |
53a7d041 KW |
7098 | continue; |
7099 | } | |
722d8e73 SL |
7100 | *ignore = g_slist_prepend(*ignore, parent); |
7101 | parents_to_process = g_slist_prepend(parents_to_process, parent); | |
7102 | } | |
7103 | ||
7104 | for (entry = children_to_process; | |
7105 | entry != NULL; | |
7106 | entry = g_slist_next(entry)) { | |
7107 | child = entry->data; | |
7108 | bdrv_set_aio_context_ignore(child->bs, new_context, ignore); | |
7109 | } | |
7110 | g_slist_free(children_to_process); | |
7111 | ||
7112 | for (entry = parents_to_process; | |
7113 | entry != NULL; | |
7114 | entry = g_slist_next(entry)) { | |
7115 | parent = entry->data; | |
7116 | assert(parent->klass->set_aio_ctx); | |
7117 | parent->klass->set_aio_ctx(parent, new_context, ignore); | |
0d83708a | 7118 | } |
722d8e73 | 7119 | g_slist_free(parents_to_process); |
0d83708a | 7120 | |
dcd04228 SH |
7121 | bdrv_detach_aio_context(bs); |
7122 | ||
e037c09c | 7123 | /* Acquire the new context, if necessary */ |
43eaaaef | 7124 | if (qemu_get_aio_context() != new_context) { |
e037c09c HR |
7125 | aio_context_acquire(new_context); |
7126 | } | |
7127 | ||
dcd04228 | 7128 | bdrv_attach_aio_context(bs, new_context); |
e037c09c HR |
7129 | |
7130 | /* | |
7131 | * If this function was recursively called from | |
7132 | * bdrv_set_aio_context_ignore(), there may be nodes in the | |
7133 | * subtree that have not yet been moved to the new AioContext. | |
7134 | * Release the old one so bdrv_drained_end() can poll them. | |
7135 | */ | |
43eaaaef | 7136 | if (qemu_get_aio_context() != old_context) { |
e037c09c HR |
7137 | aio_context_release(old_context); |
7138 | } | |
7139 | ||
d70d5954 | 7140 | bdrv_drained_end(bs); |
e037c09c | 7141 | |
43eaaaef | 7142 | if (qemu_get_aio_context() != old_context) { |
e037c09c HR |
7143 | aio_context_acquire(old_context); |
7144 | } | |
43eaaaef | 7145 | if (qemu_get_aio_context() != new_context) { |
e037c09c HR |
7146 | aio_context_release(new_context); |
7147 | } | |
85d126f3 | 7148 | } |
d616b224 | 7149 | |
5d231849 KW |
7150 | static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx, |
7151 | GSList **ignore, Error **errp) | |
7152 | { | |
7153 | if (g_slist_find(*ignore, c)) { | |
7154 | return true; | |
7155 | } | |
7156 | *ignore = g_slist_prepend(*ignore, c); | |
7157 | ||
bd86fb99 HR |
7158 | /* |
7159 | * A BdrvChildClass that doesn't handle AioContext changes cannot | |
7160 | * tolerate any AioContext changes | |
7161 | */ | |
7162 | if (!c->klass->can_set_aio_ctx) { | |
5d231849 KW |
7163 | char *user = bdrv_child_user_desc(c); |
7164 | error_setg(errp, "Changing iothreads is not supported by %s", user); | |
7165 | g_free(user); | |
7166 | return false; | |
7167 | } | |
bd86fb99 | 7168 | if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) { |
5d231849 KW |
7169 | assert(!errp || *errp); |
7170 | return false; | |
7171 | } | |
7172 | return true; | |
7173 | } | |
7174 | ||
7175 | bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx, | |
7176 | GSList **ignore, Error **errp) | |
7177 | { | |
7178 | if (g_slist_find(*ignore, c)) { | |
7179 | return true; | |
7180 | } | |
7181 | *ignore = g_slist_prepend(*ignore, c); | |
7182 | return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp); | |
7183 | } | |
7184 | ||
7185 | /* @ignore will accumulate all visited BdrvChild object. The caller is | |
7186 | * responsible for freeing the list afterwards. */ | |
7187 | bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx, | |
7188 | GSList **ignore, Error **errp) | |
7189 | { | |
7190 | BdrvChild *c; | |
7191 | ||
7192 | if (bdrv_get_aio_context(bs) == ctx) { | |
7193 | return true; | |
7194 | } | |
7195 | ||
7196 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
7197 | if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) { | |
7198 | return false; | |
7199 | } | |
7200 | } | |
7201 | QLIST_FOREACH(c, &bs->children, next) { | |
7202 | if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) { | |
7203 | return false; | |
7204 | } | |
7205 | } | |
7206 | ||
7207 | return true; | |
7208 | } | |
7209 | ||
7210 | int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx, | |
7211 | BdrvChild *ignore_child, Error **errp) | |
7212 | { | |
7213 | GSList *ignore; | |
7214 | bool ret; | |
7215 | ||
7216 | ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL; | |
7217 | ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp); | |
7218 | g_slist_free(ignore); | |
7219 | ||
7220 | if (!ret) { | |
7221 | return -EPERM; | |
7222 | } | |
7223 | ||
53a7d041 KW |
7224 | ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL; |
7225 | bdrv_set_aio_context_ignore(bs, ctx, &ignore); | |
7226 | g_slist_free(ignore); | |
7227 | ||
5d231849 KW |
7228 | return 0; |
7229 | } | |
7230 | ||
7231 | int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx, | |
7232 | Error **errp) | |
7233 | { | |
7234 | return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp); | |
7235 | } | |
7236 | ||
33384421 HR |
7237 | void bdrv_add_aio_context_notifier(BlockDriverState *bs, |
7238 | void (*attached_aio_context)(AioContext *new_context, void *opaque), | |
7239 | void (*detach_aio_context)(void *opaque), void *opaque) | |
7240 | { | |
7241 | BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); | |
7242 | *ban = (BdrvAioNotifier){ | |
7243 | .attached_aio_context = attached_aio_context, | |
7244 | .detach_aio_context = detach_aio_context, | |
7245 | .opaque = opaque | |
7246 | }; | |
7247 | ||
7248 | QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); | |
7249 | } | |
7250 | ||
7251 | void bdrv_remove_aio_context_notifier(BlockDriverState *bs, | |
7252 | void (*attached_aio_context)(AioContext *, | |
7253 | void *), | |
7254 | void (*detach_aio_context)(void *), | |
7255 | void *opaque) | |
7256 | { | |
7257 | BdrvAioNotifier *ban, *ban_next; | |
7258 | ||
7259 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { | |
7260 | if (ban->attached_aio_context == attached_aio_context && | |
7261 | ban->detach_aio_context == detach_aio_context && | |
e8a095da SH |
7262 | ban->opaque == opaque && |
7263 | ban->deleted == false) | |
33384421 | 7264 | { |
e8a095da SH |
7265 | if (bs->walking_aio_notifiers) { |
7266 | ban->deleted = true; | |
7267 | } else { | |
7268 | bdrv_do_remove_aio_context_notifier(ban); | |
7269 | } | |
33384421 HR |
7270 | return; |
7271 | } | |
7272 | } | |
7273 | ||
7274 | abort(); | |
7275 | } | |
7276 | ||
77485434 | 7277 | int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, |
d1402b50 | 7278 | BlockDriverAmendStatusCB *status_cb, void *cb_opaque, |
a3579bfa | 7279 | bool force, |
d1402b50 | 7280 | Error **errp) |
6f176b48 | 7281 | { |
d470ad42 | 7282 | if (!bs->drv) { |
d1402b50 | 7283 | error_setg(errp, "Node is ejected"); |
d470ad42 HR |
7284 | return -ENOMEDIUM; |
7285 | } | |
c282e1fd | 7286 | if (!bs->drv->bdrv_amend_options) { |
d1402b50 HR |
7287 | error_setg(errp, "Block driver '%s' does not support option amendment", |
7288 | bs->drv->format_name); | |
6f176b48 HR |
7289 | return -ENOTSUP; |
7290 | } | |
a3579bfa ML |
7291 | return bs->drv->bdrv_amend_options(bs, opts, status_cb, |
7292 | cb_opaque, force, errp); | |
6f176b48 | 7293 | } |
f6186f49 | 7294 | |
5d69b5ab HR |
7295 | /* |
7296 | * This function checks whether the given @to_replace is allowed to be | |
7297 | * replaced by a node that always shows the same data as @bs. This is | |
7298 | * used for example to verify whether the mirror job can replace | |
7299 | * @to_replace by the target mirrored from @bs. | |
7300 | * To be replaceable, @bs and @to_replace may either be guaranteed to | |
7301 | * always show the same data (because they are only connected through | |
7302 | * filters), or some driver may allow replacing one of its children | |
7303 | * because it can guarantee that this child's data is not visible at | |
7304 | * all (for example, for dissenting quorum children that have no other | |
7305 | * parents). | |
7306 | */ | |
7307 | bool bdrv_recurse_can_replace(BlockDriverState *bs, | |
7308 | BlockDriverState *to_replace) | |
7309 | { | |
93393e69 HR |
7310 | BlockDriverState *filtered; |
7311 | ||
5d69b5ab HR |
7312 | if (!bs || !bs->drv) { |
7313 | return false; | |
7314 | } | |
7315 | ||
7316 | if (bs == to_replace) { | |
7317 | return true; | |
7318 | } | |
7319 | ||
7320 | /* See what the driver can do */ | |
7321 | if (bs->drv->bdrv_recurse_can_replace) { | |
7322 | return bs->drv->bdrv_recurse_can_replace(bs, to_replace); | |
7323 | } | |
7324 | ||
7325 | /* For filters without an own implementation, we can recurse on our own */ | |
93393e69 HR |
7326 | filtered = bdrv_filter_bs(bs); |
7327 | if (filtered) { | |
7328 | return bdrv_recurse_can_replace(filtered, to_replace); | |
5d69b5ab HR |
7329 | } |
7330 | ||
7331 | /* Safe default */ | |
7332 | return false; | |
7333 | } | |
7334 | ||
810803a8 HR |
7335 | /* |
7336 | * Check whether the given @node_name can be replaced by a node that | |
7337 | * has the same data as @parent_bs. If so, return @node_name's BDS; | |
7338 | * NULL otherwise. | |
7339 | * | |
7340 | * @node_name must be a (recursive) *child of @parent_bs (or this | |
7341 | * function will return NULL). | |
7342 | * | |
7343 | * The result (whether the node can be replaced or not) is only valid | |
7344 | * for as long as no graph or permission changes occur. | |
7345 | */ | |
e12f3784 WC |
7346 | BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, |
7347 | const char *node_name, Error **errp) | |
09158f00 BC |
7348 | { |
7349 | BlockDriverState *to_replace_bs = bdrv_find_node(node_name); | |
5a7e7a0b SH |
7350 | AioContext *aio_context; |
7351 | ||
09158f00 | 7352 | if (!to_replace_bs) { |
785ec4b1 | 7353 | error_setg(errp, "Failed to find node with node-name='%s'", node_name); |
09158f00 BC |
7354 | return NULL; |
7355 | } | |
7356 | ||
5a7e7a0b SH |
7357 | aio_context = bdrv_get_aio_context(to_replace_bs); |
7358 | aio_context_acquire(aio_context); | |
7359 | ||
09158f00 | 7360 | if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { |
5a7e7a0b SH |
7361 | to_replace_bs = NULL; |
7362 | goto out; | |
09158f00 BC |
7363 | } |
7364 | ||
7365 | /* We don't want arbitrary node of the BDS chain to be replaced only the top | |
7366 | * most non filter in order to prevent data corruption. | |
7367 | * Another benefit is that this tests exclude backing files which are | |
7368 | * blocked by the backing blockers. | |
7369 | */ | |
810803a8 HR |
7370 | if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) { |
7371 | error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', " | |
7372 | "because it cannot be guaranteed that doing so would not " | |
7373 | "lead to an abrupt change of visible data", | |
7374 | node_name, parent_bs->node_name); | |
5a7e7a0b SH |
7375 | to_replace_bs = NULL; |
7376 | goto out; | |
09158f00 BC |
7377 | } |
7378 | ||
5a7e7a0b SH |
7379 | out: |
7380 | aio_context_release(aio_context); | |
09158f00 BC |
7381 | return to_replace_bs; |
7382 | } | |
448ad91d | 7383 | |
97e2f021 HR |
7384 | /** |
7385 | * Iterates through the list of runtime option keys that are said to | |
7386 | * be "strong" for a BDS. An option is called "strong" if it changes | |
7387 | * a BDS's data. For example, the null block driver's "size" and | |
7388 | * "read-zeroes" options are strong, but its "latency-ns" option is | |
7389 | * not. | |
7390 | * | |
7391 | * If a key returned by this function ends with a dot, all options | |
7392 | * starting with that prefix are strong. | |
7393 | */ | |
7394 | static const char *const *strong_options(BlockDriverState *bs, | |
7395 | const char *const *curopt) | |
7396 | { | |
7397 | static const char *const global_options[] = { | |
7398 | "driver", "filename", NULL | |
7399 | }; | |
7400 | ||
7401 | if (!curopt) { | |
7402 | return &global_options[0]; | |
7403 | } | |
7404 | ||
7405 | curopt++; | |
7406 | if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) { | |
7407 | curopt = bs->drv->strong_runtime_opts; | |
7408 | } | |
7409 | ||
7410 | return (curopt && *curopt) ? curopt : NULL; | |
7411 | } | |
7412 | ||
7413 | /** | |
7414 | * Copies all strong runtime options from bs->options to the given | |
7415 | * QDict. The set of strong option keys is determined by invoking | |
7416 | * strong_options(). | |
7417 | * | |
7418 | * Returns true iff any strong option was present in bs->options (and | |
7419 | * thus copied to the target QDict) with the exception of "filename" | |
7420 | * and "driver". The caller is expected to use this value to decide | |
7421 | * whether the existence of strong options prevents the generation of | |
7422 | * a plain filename. | |
7423 | */ | |
7424 | static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs) | |
7425 | { | |
7426 | bool found_any = false; | |
7427 | const char *const *option_name = NULL; | |
7428 | ||
7429 | if (!bs->drv) { | |
7430 | return false; | |
7431 | } | |
7432 | ||
7433 | while ((option_name = strong_options(bs, option_name))) { | |
7434 | bool option_given = false; | |
7435 | ||
7436 | assert(strlen(*option_name) > 0); | |
7437 | if ((*option_name)[strlen(*option_name) - 1] != '.') { | |
7438 | QObject *entry = qdict_get(bs->options, *option_name); | |
7439 | if (!entry) { | |
7440 | continue; | |
7441 | } | |
7442 | ||
7443 | qdict_put_obj(d, *option_name, qobject_ref(entry)); | |
7444 | option_given = true; | |
7445 | } else { | |
7446 | const QDictEntry *entry; | |
7447 | for (entry = qdict_first(bs->options); entry; | |
7448 | entry = qdict_next(bs->options, entry)) | |
7449 | { | |
7450 | if (strstart(qdict_entry_key(entry), *option_name, NULL)) { | |
7451 | qdict_put_obj(d, qdict_entry_key(entry), | |
7452 | qobject_ref(qdict_entry_value(entry))); | |
7453 | option_given = true; | |
7454 | } | |
7455 | } | |
7456 | } | |
7457 | ||
7458 | /* While "driver" and "filename" need to be included in a JSON filename, | |
7459 | * their existence does not prohibit generation of a plain filename. */ | |
7460 | if (!found_any && option_given && | |
7461 | strcmp(*option_name, "driver") && strcmp(*option_name, "filename")) | |
7462 | { | |
7463 | found_any = true; | |
7464 | } | |
7465 | } | |
7466 | ||
62a01a27 HR |
7467 | if (!qdict_haskey(d, "driver")) { |
7468 | /* Drivers created with bdrv_new_open_driver() may not have a | |
7469 | * @driver option. Add it here. */ | |
7470 | qdict_put_str(d, "driver", bs->drv->format_name); | |
7471 | } | |
7472 | ||
97e2f021 HR |
7473 | return found_any; |
7474 | } | |
7475 | ||
90993623 HR |
7476 | /* Note: This function may return false positives; it may return true |
7477 | * even if opening the backing file specified by bs's image header | |
7478 | * would result in exactly bs->backing. */ | |
fa8fc1d0 | 7479 | static bool bdrv_backing_overridden(BlockDriverState *bs) |
90993623 HR |
7480 | { |
7481 | if (bs->backing) { | |
7482 | return strcmp(bs->auto_backing_file, | |
7483 | bs->backing->bs->filename); | |
7484 | } else { | |
7485 | /* No backing BDS, so if the image header reports any backing | |
7486 | * file, it must have been suppressed */ | |
7487 | return bs->auto_backing_file[0] != '\0'; | |
7488 | } | |
7489 | } | |
7490 | ||
91af7014 HR |
7491 | /* Updates the following BDS fields: |
7492 | * - exact_filename: A filename which may be used for opening a block device | |
7493 | * which (mostly) equals the given BDS (even without any | |
7494 | * other options; so reading and writing must return the same | |
7495 | * results, but caching etc. may be different) | |
7496 | * - full_open_options: Options which, when given when opening a block device | |
7497 | * (without a filename), result in a BDS (mostly) | |
7498 | * equalling the given one | |
7499 | * - filename: If exact_filename is set, it is copied here. Otherwise, | |
7500 | * full_open_options is converted to a JSON object, prefixed with | |
7501 | * "json:" (for use through the JSON pseudo protocol) and put here. | |
7502 | */ | |
7503 | void bdrv_refresh_filename(BlockDriverState *bs) | |
7504 | { | |
7505 | BlockDriver *drv = bs->drv; | |
e24518e3 | 7506 | BdrvChild *child; |
52f72d6f | 7507 | BlockDriverState *primary_child_bs; |
91af7014 | 7508 | QDict *opts; |
90993623 | 7509 | bool backing_overridden; |
998b3a1e HR |
7510 | bool generate_json_filename; /* Whether our default implementation should |
7511 | fill exact_filename (false) or not (true) */ | |
91af7014 HR |
7512 | |
7513 | if (!drv) { | |
7514 | return; | |
7515 | } | |
7516 | ||
e24518e3 HR |
7517 | /* This BDS's file name may depend on any of its children's file names, so |
7518 | * refresh those first */ | |
7519 | QLIST_FOREACH(child, &bs->children, next) { | |
7520 | bdrv_refresh_filename(child->bs); | |
91af7014 HR |
7521 | } |
7522 | ||
bb808d5f HR |
7523 | if (bs->implicit) { |
7524 | /* For implicit nodes, just copy everything from the single child */ | |
7525 | child = QLIST_FIRST(&bs->children); | |
7526 | assert(QLIST_NEXT(child, next) == NULL); | |
7527 | ||
7528 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), | |
7529 | child->bs->exact_filename); | |
7530 | pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename); | |
7531 | ||
cb895614 | 7532 | qobject_unref(bs->full_open_options); |
bb808d5f HR |
7533 | bs->full_open_options = qobject_ref(child->bs->full_open_options); |
7534 | ||
7535 | return; | |
7536 | } | |
7537 | ||
90993623 HR |
7538 | backing_overridden = bdrv_backing_overridden(bs); |
7539 | ||
7540 | if (bs->open_flags & BDRV_O_NO_IO) { | |
7541 | /* Without I/O, the backing file does not change anything. | |
7542 | * Therefore, in such a case (primarily qemu-img), we can | |
7543 | * pretend the backing file has not been overridden even if | |
7544 | * it technically has been. */ | |
7545 | backing_overridden = false; | |
7546 | } | |
7547 | ||
97e2f021 HR |
7548 | /* Gather the options QDict */ |
7549 | opts = qdict_new(); | |
998b3a1e HR |
7550 | generate_json_filename = append_strong_runtime_options(opts, bs); |
7551 | generate_json_filename |= backing_overridden; | |
97e2f021 HR |
7552 | |
7553 | if (drv->bdrv_gather_child_options) { | |
7554 | /* Some block drivers may not want to present all of their children's | |
7555 | * options, or name them differently from BdrvChild.name */ | |
7556 | drv->bdrv_gather_child_options(bs, opts, backing_overridden); | |
7557 | } else { | |
7558 | QLIST_FOREACH(child, &bs->children, next) { | |
25191e5f | 7559 | if (child == bs->backing && !backing_overridden) { |
97e2f021 HR |
7560 | /* We can skip the backing BDS if it has not been overridden */ |
7561 | continue; | |
7562 | } | |
7563 | ||
7564 | qdict_put(opts, child->name, | |
7565 | qobject_ref(child->bs->full_open_options)); | |
7566 | } | |
7567 | ||
7568 | if (backing_overridden && !bs->backing) { | |
7569 | /* Force no backing file */ | |
7570 | qdict_put_null(opts, "backing"); | |
7571 | } | |
7572 | } | |
7573 | ||
7574 | qobject_unref(bs->full_open_options); | |
7575 | bs->full_open_options = opts; | |
7576 | ||
52f72d6f HR |
7577 | primary_child_bs = bdrv_primary_bs(bs); |
7578 | ||
998b3a1e HR |
7579 | if (drv->bdrv_refresh_filename) { |
7580 | /* Obsolete information is of no use here, so drop the old file name | |
7581 | * information before refreshing it */ | |
7582 | bs->exact_filename[0] = '\0'; | |
7583 | ||
7584 | drv->bdrv_refresh_filename(bs); | |
52f72d6f HR |
7585 | } else if (primary_child_bs) { |
7586 | /* | |
7587 | * Try to reconstruct valid information from the underlying | |
7588 | * file -- this only works for format nodes (filter nodes | |
7589 | * cannot be probed and as such must be selected by the user | |
7590 | * either through an options dict, or through a special | |
7591 | * filename which the filter driver must construct in its | |
7592 | * .bdrv_refresh_filename() implementation). | |
7593 | */ | |
998b3a1e HR |
7594 | |
7595 | bs->exact_filename[0] = '\0'; | |
7596 | ||
fb695c74 HR |
7597 | /* |
7598 | * We can use the underlying file's filename if: | |
7599 | * - it has a filename, | |
52f72d6f | 7600 | * - the current BDS is not a filter, |
fb695c74 HR |
7601 | * - the file is a protocol BDS, and |
7602 | * - opening that file (as this BDS's format) will automatically create | |
7603 | * the BDS tree we have right now, that is: | |
7604 | * - the user did not significantly change this BDS's behavior with | |
7605 | * some explicit (strong) options | |
7606 | * - no non-file child of this BDS has been overridden by the user | |
7607 | * Both of these conditions are represented by generate_json_filename. | |
7608 | */ | |
52f72d6f HR |
7609 | if (primary_child_bs->exact_filename[0] && |
7610 | primary_child_bs->drv->bdrv_file_open && | |
7611 | !drv->is_filter && !generate_json_filename) | |
fb695c74 | 7612 | { |
52f72d6f | 7613 | strcpy(bs->exact_filename, primary_child_bs->exact_filename); |
998b3a1e HR |
7614 | } |
7615 | } | |
7616 | ||
91af7014 HR |
7617 | if (bs->exact_filename[0]) { |
7618 | pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); | |
97e2f021 | 7619 | } else { |
eab3a467 | 7620 | GString *json = qobject_to_json(QOBJECT(bs->full_open_options)); |
5c86bdf1 | 7621 | if (snprintf(bs->filename, sizeof(bs->filename), "json:%s", |
eab3a467 | 7622 | json->str) >= sizeof(bs->filename)) { |
5c86bdf1 EB |
7623 | /* Give user a hint if we truncated things. */ |
7624 | strcpy(bs->filename + sizeof(bs->filename) - 4, "..."); | |
7625 | } | |
eab3a467 | 7626 | g_string_free(json, true); |
91af7014 HR |
7627 | } |
7628 | } | |
e06018ad | 7629 | |
1e89d0f9 HR |
7630 | char *bdrv_dirname(BlockDriverState *bs, Error **errp) |
7631 | { | |
7632 | BlockDriver *drv = bs->drv; | |
52f72d6f | 7633 | BlockDriverState *child_bs; |
1e89d0f9 HR |
7634 | |
7635 | if (!drv) { | |
7636 | error_setg(errp, "Node '%s' is ejected", bs->node_name); | |
7637 | return NULL; | |
7638 | } | |
7639 | ||
7640 | if (drv->bdrv_dirname) { | |
7641 | return drv->bdrv_dirname(bs, errp); | |
7642 | } | |
7643 | ||
52f72d6f HR |
7644 | child_bs = bdrv_primary_bs(bs); |
7645 | if (child_bs) { | |
7646 | return bdrv_dirname(child_bs, errp); | |
1e89d0f9 HR |
7647 | } |
7648 | ||
7649 | bdrv_refresh_filename(bs); | |
7650 | if (bs->exact_filename[0] != '\0') { | |
7651 | return path_combine(bs->exact_filename, ""); | |
7652 | } | |
7653 | ||
7654 | error_setg(errp, "Cannot generate a base directory for %s nodes", | |
7655 | drv->format_name); | |
7656 | return NULL; | |
7657 | } | |
7658 | ||
e06018ad WC |
7659 | /* |
7660 | * Hot add/remove a BDS's child. So the user can take a child offline when | |
7661 | * it is broken and take a new child online | |
7662 | */ | |
7663 | void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, | |
7664 | Error **errp) | |
7665 | { | |
7666 | ||
7667 | if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { | |
7668 | error_setg(errp, "The node %s does not support adding a child", | |
7669 | bdrv_get_device_or_node_name(parent_bs)); | |
7670 | return; | |
7671 | } | |
7672 | ||
7673 | if (!QLIST_EMPTY(&child_bs->parents)) { | |
7674 | error_setg(errp, "The node %s already has a parent", | |
7675 | child_bs->node_name); | |
7676 | return; | |
7677 | } | |
7678 | ||
7679 | parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); | |
7680 | } | |
7681 | ||
7682 | void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) | |
7683 | { | |
7684 | BdrvChild *tmp; | |
7685 | ||
7686 | if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { | |
7687 | error_setg(errp, "The node %s does not support removing a child", | |
7688 | bdrv_get_device_or_node_name(parent_bs)); | |
7689 | return; | |
7690 | } | |
7691 | ||
7692 | QLIST_FOREACH(tmp, &parent_bs->children, next) { | |
7693 | if (tmp == child) { | |
7694 | break; | |
7695 | } | |
7696 | } | |
7697 | ||
7698 | if (!tmp) { | |
7699 | error_setg(errp, "The node %s does not have a child named %s", | |
7700 | bdrv_get_device_or_node_name(parent_bs), | |
7701 | bdrv_get_device_or_node_name(child->bs)); | |
7702 | return; | |
7703 | } | |
7704 | ||
7705 | parent_bs->drv->bdrv_del_child(parent_bs, child, errp); | |
7706 | } | |
6f7a3b53 HR |
7707 | |
7708 | int bdrv_make_empty(BdrvChild *c, Error **errp) | |
7709 | { | |
7710 | BlockDriver *drv = c->bs->drv; | |
7711 | int ret; | |
7712 | ||
7713 | assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)); | |
7714 | ||
7715 | if (!drv->bdrv_make_empty) { | |
7716 | error_setg(errp, "%s does not support emptying nodes", | |
7717 | drv->format_name); | |
7718 | return -ENOTSUP; | |
7719 | } | |
7720 | ||
7721 | ret = drv->bdrv_make_empty(c->bs); | |
7722 | if (ret < 0) { | |
7723 | error_setg_errno(errp, -ret, "Failed to empty %s", | |
7724 | c->bs->filename); | |
7725 | return ret; | |
7726 | } | |
7727 | ||
7728 | return 0; | |
7729 | } | |
9a6fc887 HR |
7730 | |
7731 | /* | |
7732 | * Return the child that @bs acts as an overlay for, and from which data may be | |
7733 | * copied in COW or COR operations. Usually this is the backing file. | |
7734 | */ | |
7735 | BdrvChild *bdrv_cow_child(BlockDriverState *bs) | |
7736 | { | |
7737 | if (!bs || !bs->drv) { | |
7738 | return NULL; | |
7739 | } | |
7740 | ||
7741 | if (bs->drv->is_filter) { | |
7742 | return NULL; | |
7743 | } | |
7744 | ||
7745 | if (!bs->backing) { | |
7746 | return NULL; | |
7747 | } | |
7748 | ||
7749 | assert(bs->backing->role & BDRV_CHILD_COW); | |
7750 | return bs->backing; | |
7751 | } | |
7752 | ||
7753 | /* | |
7754 | * If @bs acts as a filter for exactly one of its children, return | |
7755 | * that child. | |
7756 | */ | |
7757 | BdrvChild *bdrv_filter_child(BlockDriverState *bs) | |
7758 | { | |
7759 | BdrvChild *c; | |
7760 | ||
7761 | if (!bs || !bs->drv) { | |
7762 | return NULL; | |
7763 | } | |
7764 | ||
7765 | if (!bs->drv->is_filter) { | |
7766 | return NULL; | |
7767 | } | |
7768 | ||
7769 | /* Only one of @backing or @file may be used */ | |
7770 | assert(!(bs->backing && bs->file)); | |
7771 | ||
7772 | c = bs->backing ?: bs->file; | |
7773 | if (!c) { | |
7774 | return NULL; | |
7775 | } | |
7776 | ||
7777 | assert(c->role & BDRV_CHILD_FILTERED); | |
7778 | return c; | |
7779 | } | |
7780 | ||
7781 | /* | |
7782 | * Return either the result of bdrv_cow_child() or bdrv_filter_child(), | |
7783 | * whichever is non-NULL. | |
7784 | * | |
7785 | * Return NULL if both are NULL. | |
7786 | */ | |
7787 | BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs) | |
7788 | { | |
7789 | BdrvChild *cow_child = bdrv_cow_child(bs); | |
7790 | BdrvChild *filter_child = bdrv_filter_child(bs); | |
7791 | ||
7792 | /* Filter nodes cannot have COW backing files */ | |
7793 | assert(!(cow_child && filter_child)); | |
7794 | ||
7795 | return cow_child ?: filter_child; | |
7796 | } | |
7797 | ||
7798 | /* | |
7799 | * Return the primary child of this node: For filters, that is the | |
7800 | * filtered child. For other nodes, that is usually the child storing | |
7801 | * metadata. | |
7802 | * (A generally more helpful description is that this is (usually) the | |
7803 | * child that has the same filename as @bs.) | |
7804 | * | |
7805 | * Drivers do not necessarily have a primary child; for example quorum | |
7806 | * does not. | |
7807 | */ | |
7808 | BdrvChild *bdrv_primary_child(BlockDriverState *bs) | |
7809 | { | |
7810 | BdrvChild *c, *found = NULL; | |
7811 | ||
7812 | QLIST_FOREACH(c, &bs->children, next) { | |
7813 | if (c->role & BDRV_CHILD_PRIMARY) { | |
7814 | assert(!found); | |
7815 | found = c; | |
7816 | } | |
7817 | } | |
7818 | ||
7819 | return found; | |
7820 | } | |
d38d7eb8 HR |
7821 | |
7822 | static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs, | |
7823 | bool stop_on_explicit_filter) | |
7824 | { | |
7825 | BdrvChild *c; | |
7826 | ||
7827 | if (!bs) { | |
7828 | return NULL; | |
7829 | } | |
7830 | ||
7831 | while (!(stop_on_explicit_filter && !bs->implicit)) { | |
7832 | c = bdrv_filter_child(bs); | |
7833 | if (!c) { | |
7834 | /* | |
7835 | * A filter that is embedded in a working block graph must | |
7836 | * have a child. Assert this here so this function does | |
7837 | * not return a filter node that is not expected by the | |
7838 | * caller. | |
7839 | */ | |
7840 | assert(!bs->drv || !bs->drv->is_filter); | |
7841 | break; | |
7842 | } | |
7843 | bs = c->bs; | |
7844 | } | |
7845 | /* | |
7846 | * Note that this treats nodes with bs->drv == NULL as not being | |
7847 | * filters (bs->drv == NULL should be replaced by something else | |
7848 | * anyway). | |
7849 | * The advantage of this behavior is that this function will thus | |
7850 | * always return a non-NULL value (given a non-NULL @bs). | |
7851 | */ | |
7852 | ||
7853 | return bs; | |
7854 | } | |
7855 | ||
7856 | /* | |
7857 | * Return the first BDS that has not been added implicitly or that | |
7858 | * does not have a filtered child down the chain starting from @bs | |
7859 | * (including @bs itself). | |
7860 | */ | |
7861 | BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs) | |
7862 | { | |
7863 | return bdrv_do_skip_filters(bs, true); | |
7864 | } | |
7865 | ||
7866 | /* | |
7867 | * Return the first BDS that does not have a filtered child down the | |
7868 | * chain starting from @bs (including @bs itself). | |
7869 | */ | |
7870 | BlockDriverState *bdrv_skip_filters(BlockDriverState *bs) | |
7871 | { | |
7872 | return bdrv_do_skip_filters(bs, false); | |
7873 | } | |
7874 | ||
7875 | /* | |
7876 | * For a backing chain, return the first non-filter backing image of | |
7877 | * the first non-filter image. | |
7878 | */ | |
7879 | BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs) | |
7880 | { | |
7881 | return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs))); | |
7882 | } | |
0bc329fb HR |
7883 | |
7884 | /** | |
7885 | * Check whether [offset, offset + bytes) overlaps with the cached | |
7886 | * block-status data region. | |
7887 | * | |
7888 | * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`, | |
7889 | * which is what bdrv_bsc_is_data()'s interface needs. | |
7890 | * Otherwise, *pnum is not touched. | |
7891 | */ | |
7892 | static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs, | |
7893 | int64_t offset, int64_t bytes, | |
7894 | int64_t *pnum) | |
7895 | { | |
7896 | BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache); | |
7897 | bool overlaps; | |
7898 | ||
7899 | overlaps = | |
7900 | qatomic_read(&bsc->valid) && | |
7901 | ranges_overlap(offset, bytes, bsc->data_start, | |
7902 | bsc->data_end - bsc->data_start); | |
7903 | ||
7904 | if (overlaps && pnum) { | |
7905 | *pnum = bsc->data_end - offset; | |
7906 | } | |
7907 | ||
7908 | return overlaps; | |
7909 | } | |
7910 | ||
7911 | /** | |
7912 | * See block_int.h for this function's documentation. | |
7913 | */ | |
7914 | bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum) | |
7915 | { | |
7916 | RCU_READ_LOCK_GUARD(); | |
7917 | ||
7918 | return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum); | |
7919 | } | |
7920 | ||
7921 | /** | |
7922 | * See block_int.h for this function's documentation. | |
7923 | */ | |
7924 | void bdrv_bsc_invalidate_range(BlockDriverState *bs, | |
7925 | int64_t offset, int64_t bytes) | |
7926 | { | |
7927 | RCU_READ_LOCK_GUARD(); | |
7928 | ||
7929 | if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) { | |
7930 | qatomic_set(&bs->block_status_cache->valid, false); | |
7931 | } | |
7932 | } | |
7933 | ||
7934 | /** | |
7935 | * See block_int.h for this function's documentation. | |
7936 | */ | |
7937 | void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes) | |
7938 | { | |
7939 | BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1); | |
7940 | BdrvBlockStatusCache *old_bsc; | |
7941 | ||
7942 | *new_bsc = (BdrvBlockStatusCache) { | |
7943 | .valid = true, | |
7944 | .data_start = offset, | |
7945 | .data_end = offset + bytes, | |
7946 | }; | |
7947 | ||
7948 | QEMU_LOCK_GUARD(&bs->bsc_modify_lock); | |
7949 | ||
7950 | old_bsc = qatomic_rcu_read(&bs->block_status_cache); | |
7951 | qatomic_rcu_set(&bs->block_status_cache, new_bsc); | |
7952 | if (old_bsc) { | |
7953 | g_free_rcu(old_bsc, rcu); | |
7954 | } | |
7955 | } |