]>
Commit | Line | Data |
---|---|---|
fc01f7e7 FB |
1 | /* |
2 | * QEMU System Emulator block driver | |
5fafdf24 | 3 | * |
fc01f7e7 | 4 | * Copyright (c) 2003 Fabrice Bellard |
5fafdf24 | 5 | * |
fc01f7e7 FB |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
e688df6b | 24 | |
d38ea87a | 25 | #include "qemu/osdep.h" |
0ab8ed18 | 26 | #include "block/trace.h" |
737e150e PB |
27 | #include "block/block_int.h" |
28 | #include "block/blockjob.h" | |
cd7fca95 | 29 | #include "block/nbd.h" |
609f45ea | 30 | #include "block/qdict.h" |
d49b6836 | 31 | #include "qemu/error-report.h" |
88d88798 | 32 | #include "module_block.h" |
1de7afc9 | 33 | #include "qemu/module.h" |
e688df6b | 34 | #include "qapi/error.h" |
452fcdbc | 35 | #include "qapi/qmp/qdict.h" |
7b1b5d19 | 36 | #include "qapi/qmp/qjson.h" |
e59a0cf1 | 37 | #include "qapi/qmp/qnull.h" |
fc81fa1e | 38 | #include "qapi/qmp/qstring.h" |
e1d74bc6 KW |
39 | #include "qapi/qobject-output-visitor.h" |
40 | #include "qapi/qapi-visit-block-core.h" | |
bfb197e0 | 41 | #include "sysemu/block-backend.h" |
9c17d615 | 42 | #include "sysemu/sysemu.h" |
1de7afc9 | 43 | #include "qemu/notify.h" |
922a01a0 | 44 | #include "qemu/option.h" |
10817bf0 | 45 | #include "qemu/coroutine.h" |
c13163fb | 46 | #include "block/qapi.h" |
1de7afc9 | 47 | #include "qemu/timer.h" |
f348b6d1 VB |
48 | #include "qemu/cutils.h" |
49 | #include "qemu/id.h" | |
fc01f7e7 | 50 | |
71e72a19 | 51 | #ifdef CONFIG_BSD |
7674e7bf | 52 | #include <sys/ioctl.h> |
72cf2d4f | 53 | #include <sys/queue.h> |
c5e97233 | 54 | #ifndef __DragonFly__ |
7674e7bf FB |
55 | #include <sys/disk.h> |
56 | #endif | |
c5e97233 | 57 | #endif |
7674e7bf | 58 | |
49dc768d AL |
59 | #ifdef _WIN32 |
60 | #include <windows.h> | |
61 | #endif | |
62 | ||
1c9805a3 SH |
63 | #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ |
64 | ||
dc364f4c BC |
65 | static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = |
66 | QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); | |
67 | ||
2c1d04e0 HR |
68 | static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states = |
69 | QTAILQ_HEAD_INITIALIZER(all_bdrv_states); | |
70 | ||
8a22f02a SH |
71 | static QLIST_HEAD(, BlockDriver) bdrv_drivers = |
72 | QLIST_HEAD_INITIALIZER(bdrv_drivers); | |
ea2384d3 | 73 | |
5b363937 HR |
74 | static BlockDriverState *bdrv_open_inherit(const char *filename, |
75 | const char *reference, | |
76 | QDict *options, int flags, | |
77 | BlockDriverState *parent, | |
78 | const BdrvChildRole *child_role, | |
79 | Error **errp); | |
f3930ed0 | 80 | |
eb852011 MA |
81 | /* If non-zero, use only whitelisted block drivers */ |
82 | static int use_bdrv_whitelist; | |
83 | ||
9e0b22f4 SH |
84 | #ifdef _WIN32 |
85 | static int is_windows_drive_prefix(const char *filename) | |
86 | { | |
87 | return (((filename[0] >= 'a' && filename[0] <= 'z') || | |
88 | (filename[0] >= 'A' && filename[0] <= 'Z')) && | |
89 | filename[1] == ':'); | |
90 | } | |
91 | ||
92 | int is_windows_drive(const char *filename) | |
93 | { | |
94 | if (is_windows_drive_prefix(filename) && | |
95 | filename[2] == '\0') | |
96 | return 1; | |
97 | if (strstart(filename, "\\\\.\\", NULL) || | |
98 | strstart(filename, "//./", NULL)) | |
99 | return 1; | |
100 | return 0; | |
101 | } | |
102 | #endif | |
103 | ||
339064d5 KW |
104 | size_t bdrv_opt_mem_align(BlockDriverState *bs) |
105 | { | |
106 | if (!bs || !bs->drv) { | |
459b4e66 DL |
107 | /* page size or 4k (hdd sector size) should be on the safe side */ |
108 | return MAX(4096, getpagesize()); | |
339064d5 KW |
109 | } |
110 | ||
111 | return bs->bl.opt_mem_alignment; | |
112 | } | |
113 | ||
4196d2f0 DL |
114 | size_t bdrv_min_mem_align(BlockDriverState *bs) |
115 | { | |
116 | if (!bs || !bs->drv) { | |
459b4e66 DL |
117 | /* page size or 4k (hdd sector size) should be on the safe side */ |
118 | return MAX(4096, getpagesize()); | |
4196d2f0 DL |
119 | } |
120 | ||
121 | return bs->bl.min_mem_alignment; | |
122 | } | |
123 | ||
9e0b22f4 | 124 | /* check if the path starts with "<protocol>:" */ |
5c98415b | 125 | int path_has_protocol(const char *path) |
9e0b22f4 | 126 | { |
947995c0 PB |
127 | const char *p; |
128 | ||
9e0b22f4 SH |
129 | #ifdef _WIN32 |
130 | if (is_windows_drive(path) || | |
131 | is_windows_drive_prefix(path)) { | |
132 | return 0; | |
133 | } | |
947995c0 PB |
134 | p = path + strcspn(path, ":/\\"); |
135 | #else | |
136 | p = path + strcspn(path, ":/"); | |
9e0b22f4 SH |
137 | #endif |
138 | ||
947995c0 | 139 | return *p == ':'; |
9e0b22f4 SH |
140 | } |
141 | ||
83f64091 | 142 | int path_is_absolute(const char *path) |
3b0d4f61 | 143 | { |
21664424 FB |
144 | #ifdef _WIN32 |
145 | /* specific case for names like: "\\.\d:" */ | |
f53f4da9 | 146 | if (is_windows_drive(path) || is_windows_drive_prefix(path)) { |
21664424 | 147 | return 1; |
f53f4da9 PB |
148 | } |
149 | return (*path == '/' || *path == '\\'); | |
3b9f94e1 | 150 | #else |
f53f4da9 | 151 | return (*path == '/'); |
3b9f94e1 | 152 | #endif |
3b0d4f61 FB |
153 | } |
154 | ||
83f64091 FB |
155 | /* if filename is absolute, just copy it to dest. Otherwise, build a |
156 | path to it by considering it is relative to base_path. URL are | |
157 | supported. */ | |
158 | void path_combine(char *dest, int dest_size, | |
159 | const char *base_path, | |
160 | const char *filename) | |
3b0d4f61 | 161 | { |
83f64091 FB |
162 | const char *p, *p1; |
163 | int len; | |
164 | ||
165 | if (dest_size <= 0) | |
166 | return; | |
167 | if (path_is_absolute(filename)) { | |
168 | pstrcpy(dest, dest_size, filename); | |
169 | } else { | |
0d54a6fe HR |
170 | const char *protocol_stripped = NULL; |
171 | ||
172 | if (path_has_protocol(base_path)) { | |
173 | protocol_stripped = strchr(base_path, ':'); | |
174 | if (protocol_stripped) { | |
175 | protocol_stripped++; | |
176 | } | |
177 | } | |
178 | p = protocol_stripped ?: base_path; | |
179 | ||
3b9f94e1 FB |
180 | p1 = strrchr(base_path, '/'); |
181 | #ifdef _WIN32 | |
182 | { | |
183 | const char *p2; | |
184 | p2 = strrchr(base_path, '\\'); | |
185 | if (!p1 || p2 > p1) | |
186 | p1 = p2; | |
187 | } | |
188 | #endif | |
83f64091 FB |
189 | if (p1) |
190 | p1++; | |
191 | else | |
192 | p1 = base_path; | |
193 | if (p1 > p) | |
194 | p = p1; | |
195 | len = p - base_path; | |
196 | if (len > dest_size - 1) | |
197 | len = dest_size - 1; | |
198 | memcpy(dest, base_path, len); | |
199 | dest[len] = '\0'; | |
200 | pstrcat(dest, dest_size, filename); | |
3b0d4f61 | 201 | } |
3b0d4f61 FB |
202 | } |
203 | ||
03c320d8 HR |
204 | /* |
205 | * Helper function for bdrv_parse_filename() implementations to remove optional | |
206 | * protocol prefixes (especially "file:") from a filename and for putting the | |
207 | * stripped filename into the options QDict if there is such a prefix. | |
208 | */ | |
209 | void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, | |
210 | QDict *options) | |
211 | { | |
212 | if (strstart(filename, prefix, &filename)) { | |
213 | /* Stripping the explicit protocol prefix may result in a protocol | |
214 | * prefix being (wrongly) detected (if the filename contains a colon) */ | |
215 | if (path_has_protocol(filename)) { | |
216 | QString *fat_filename; | |
217 | ||
218 | /* This means there is some colon before the first slash; therefore, | |
219 | * this cannot be an absolute path */ | |
220 | assert(!path_is_absolute(filename)); | |
221 | ||
222 | /* And we can thus fix the protocol detection issue by prefixing it | |
223 | * by "./" */ | |
224 | fat_filename = qstring_from_str("./"); | |
225 | qstring_append(fat_filename, filename); | |
226 | ||
227 | assert(!path_has_protocol(qstring_get_str(fat_filename))); | |
228 | ||
229 | qdict_put(options, "filename", fat_filename); | |
230 | } else { | |
231 | /* If no protocol prefix was detected, we can use the shortened | |
232 | * filename as-is */ | |
233 | qdict_put_str(options, "filename", filename); | |
234 | } | |
235 | } | |
236 | } | |
237 | ||
238 | ||
9c5e6594 KW |
239 | /* Returns whether the image file is opened as read-only. Note that this can |
240 | * return false and writing to the image file is still not possible because the | |
241 | * image is inactivated. */ | |
93ed524e JC |
242 | bool bdrv_is_read_only(BlockDriverState *bs) |
243 | { | |
244 | return bs->read_only; | |
245 | } | |
246 | ||
54a32bfe KW |
247 | int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, |
248 | bool ignore_allow_rdw, Error **errp) | |
fe5241bf | 249 | { |
e2b8247a JC |
250 | /* Do not set read_only if copy_on_read is enabled */ |
251 | if (bs->copy_on_read && read_only) { | |
252 | error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", | |
253 | bdrv_get_device_or_node_name(bs)); | |
254 | return -EINVAL; | |
255 | } | |
256 | ||
d6fcdf06 | 257 | /* Do not clear read_only if it is prohibited */ |
54a32bfe KW |
258 | if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && |
259 | !ignore_allow_rdw) | |
260 | { | |
d6fcdf06 JC |
261 | error_setg(errp, "Node '%s' is read only", |
262 | bdrv_get_device_or_node_name(bs)); | |
263 | return -EPERM; | |
264 | } | |
265 | ||
45803a03 JC |
266 | return 0; |
267 | } | |
268 | ||
398e6ad0 KW |
269 | /* TODO Remove (deprecated since 2.11) |
270 | * Block drivers are not supposed to automatically change bs->read_only. | |
271 | * Instead, they should just check whether they can provide what the user | |
272 | * explicitly requested and error out if read-write is requested, but they can | |
273 | * only provide read-only access. */ | |
45803a03 JC |
274 | int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp) |
275 | { | |
276 | int ret = 0; | |
277 | ||
54a32bfe | 278 | ret = bdrv_can_set_read_only(bs, read_only, false, errp); |
45803a03 JC |
279 | if (ret < 0) { |
280 | return ret; | |
281 | } | |
282 | ||
fe5241bf | 283 | bs->read_only = read_only; |
e2b8247a | 284 | return 0; |
fe5241bf JC |
285 | } |
286 | ||
0a82855a HR |
287 | void bdrv_get_full_backing_filename_from_filename(const char *backed, |
288 | const char *backing, | |
9f07429e HR |
289 | char *dest, size_t sz, |
290 | Error **errp) | |
dc5a1371 | 291 | { |
9f07429e HR |
292 | if (backing[0] == '\0' || path_has_protocol(backing) || |
293 | path_is_absolute(backing)) | |
294 | { | |
0a82855a | 295 | pstrcpy(dest, sz, backing); |
9f07429e HR |
296 | } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { |
297 | error_setg(errp, "Cannot use relative backing file names for '%s'", | |
298 | backed); | |
dc5a1371 | 299 | } else { |
0a82855a | 300 | path_combine(dest, sz, backed, backing); |
dc5a1371 PB |
301 | } |
302 | } | |
303 | ||
9f07429e HR |
304 | void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz, |
305 | Error **errp) | |
0a82855a | 306 | { |
9f07429e HR |
307 | char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename; |
308 | ||
309 | bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file, | |
310 | dest, sz, errp); | |
0a82855a HR |
311 | } |
312 | ||
0eb7217e SH |
313 | void bdrv_register(BlockDriver *bdrv) |
314 | { | |
8a22f02a | 315 | QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); |
ea2384d3 | 316 | } |
b338082b | 317 | |
e4e9986b MA |
318 | BlockDriverState *bdrv_new(void) |
319 | { | |
320 | BlockDriverState *bs; | |
321 | int i; | |
322 | ||
5839e53b | 323 | bs = g_new0(BlockDriverState, 1); |
e4654d2d | 324 | QLIST_INIT(&bs->dirty_bitmaps); |
fbe40ff7 FZ |
325 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
326 | QLIST_INIT(&bs->op_blockers[i]); | |
327 | } | |
d616b224 | 328 | notifier_with_return_list_init(&bs->before_write_notifiers); |
3783fa3d | 329 | qemu_co_mutex_init(&bs->reqs_lock); |
2119882c | 330 | qemu_mutex_init(&bs->dirty_bitmap_mutex); |
9fcb0251 | 331 | bs->refcnt = 1; |
dcd04228 | 332 | bs->aio_context = qemu_get_aio_context(); |
d7d512f6 | 333 | |
3ff2f67a EY |
334 | qemu_co_queue_init(&bs->flush_queue); |
335 | ||
2c1d04e0 HR |
336 | QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); |
337 | ||
b338082b FB |
338 | return bs; |
339 | } | |
340 | ||
88d88798 | 341 | static BlockDriver *bdrv_do_find_format(const char *format_name) |
ea2384d3 FB |
342 | { |
343 | BlockDriver *drv1; | |
88d88798 | 344 | |
8a22f02a SH |
345 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
346 | if (!strcmp(drv1->format_name, format_name)) { | |
ea2384d3 | 347 | return drv1; |
8a22f02a | 348 | } |
ea2384d3 | 349 | } |
88d88798 | 350 | |
ea2384d3 FB |
351 | return NULL; |
352 | } | |
353 | ||
88d88798 MM |
354 | BlockDriver *bdrv_find_format(const char *format_name) |
355 | { | |
356 | BlockDriver *drv1; | |
357 | int i; | |
358 | ||
359 | drv1 = bdrv_do_find_format(format_name); | |
360 | if (drv1) { | |
361 | return drv1; | |
362 | } | |
363 | ||
364 | /* The driver isn't registered, maybe we need to load a module */ | |
365 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { | |
366 | if (!strcmp(block_driver_modules[i].format_name, format_name)) { | |
367 | block_module_load_one(block_driver_modules[i].library_name); | |
368 | break; | |
369 | } | |
370 | } | |
371 | ||
372 | return bdrv_do_find_format(format_name); | |
373 | } | |
374 | ||
e8eb8637 | 375 | int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) |
eb852011 | 376 | { |
b64ec4e4 FZ |
377 | static const char *whitelist_rw[] = { |
378 | CONFIG_BDRV_RW_WHITELIST | |
379 | }; | |
380 | static const char *whitelist_ro[] = { | |
381 | CONFIG_BDRV_RO_WHITELIST | |
eb852011 MA |
382 | }; |
383 | const char **p; | |
384 | ||
b64ec4e4 | 385 | if (!whitelist_rw[0] && !whitelist_ro[0]) { |
eb852011 | 386 | return 1; /* no whitelist, anything goes */ |
b64ec4e4 | 387 | } |
eb852011 | 388 | |
b64ec4e4 | 389 | for (p = whitelist_rw; *p; p++) { |
eb852011 MA |
390 | if (!strcmp(drv->format_name, *p)) { |
391 | return 1; | |
392 | } | |
393 | } | |
b64ec4e4 FZ |
394 | if (read_only) { |
395 | for (p = whitelist_ro; *p; p++) { | |
396 | if (!strcmp(drv->format_name, *p)) { | |
397 | return 1; | |
398 | } | |
399 | } | |
400 | } | |
eb852011 MA |
401 | return 0; |
402 | } | |
403 | ||
e6ff69bf DB |
404 | bool bdrv_uses_whitelist(void) |
405 | { | |
406 | return use_bdrv_whitelist; | |
407 | } | |
408 | ||
5b7e1542 ZYW |
409 | typedef struct CreateCo { |
410 | BlockDriver *drv; | |
411 | char *filename; | |
83d0521a | 412 | QemuOpts *opts; |
5b7e1542 | 413 | int ret; |
cc84d90f | 414 | Error *err; |
5b7e1542 ZYW |
415 | } CreateCo; |
416 | ||
417 | static void coroutine_fn bdrv_create_co_entry(void *opaque) | |
418 | { | |
cc84d90f HR |
419 | Error *local_err = NULL; |
420 | int ret; | |
421 | ||
5b7e1542 ZYW |
422 | CreateCo *cco = opaque; |
423 | assert(cco->drv); | |
424 | ||
efc75e2a | 425 | ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err); |
621ff94d | 426 | error_propagate(&cco->err, local_err); |
cc84d90f | 427 | cco->ret = ret; |
5b7e1542 ZYW |
428 | } |
429 | ||
0e7e1989 | 430 | int bdrv_create(BlockDriver *drv, const char* filename, |
83d0521a | 431 | QemuOpts *opts, Error **errp) |
ea2384d3 | 432 | { |
5b7e1542 ZYW |
433 | int ret; |
434 | ||
435 | Coroutine *co; | |
436 | CreateCo cco = { | |
437 | .drv = drv, | |
438 | .filename = g_strdup(filename), | |
83d0521a | 439 | .opts = opts, |
5b7e1542 | 440 | .ret = NOT_DONE, |
cc84d90f | 441 | .err = NULL, |
5b7e1542 ZYW |
442 | }; |
443 | ||
efc75e2a | 444 | if (!drv->bdrv_co_create_opts) { |
cc84d90f | 445 | error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); |
80168bff LC |
446 | ret = -ENOTSUP; |
447 | goto out; | |
5b7e1542 ZYW |
448 | } |
449 | ||
450 | if (qemu_in_coroutine()) { | |
451 | /* Fast-path if already in coroutine context */ | |
452 | bdrv_create_co_entry(&cco); | |
453 | } else { | |
0b8b8753 PB |
454 | co = qemu_coroutine_create(bdrv_create_co_entry, &cco); |
455 | qemu_coroutine_enter(co); | |
5b7e1542 | 456 | while (cco.ret == NOT_DONE) { |
b47ec2c4 | 457 | aio_poll(qemu_get_aio_context(), true); |
5b7e1542 ZYW |
458 | } |
459 | } | |
460 | ||
461 | ret = cco.ret; | |
cc84d90f | 462 | if (ret < 0) { |
84d18f06 | 463 | if (cco.err) { |
cc84d90f HR |
464 | error_propagate(errp, cco.err); |
465 | } else { | |
466 | error_setg_errno(errp, -ret, "Could not create image"); | |
467 | } | |
468 | } | |
0e7e1989 | 469 | |
80168bff LC |
470 | out: |
471 | g_free(cco.filename); | |
5b7e1542 | 472 | return ret; |
ea2384d3 FB |
473 | } |
474 | ||
c282e1fd | 475 | int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) |
84a12e66 CH |
476 | { |
477 | BlockDriver *drv; | |
cc84d90f HR |
478 | Error *local_err = NULL; |
479 | int ret; | |
84a12e66 | 480 | |
b65a5e12 | 481 | drv = bdrv_find_protocol(filename, true, errp); |
84a12e66 | 482 | if (drv == NULL) { |
16905d71 | 483 | return -ENOENT; |
84a12e66 CH |
484 | } |
485 | ||
c282e1fd | 486 | ret = bdrv_create(drv, filename, opts, &local_err); |
621ff94d | 487 | error_propagate(errp, local_err); |
cc84d90f | 488 | return ret; |
84a12e66 CH |
489 | } |
490 | ||
892b7de8 ET |
491 | /** |
492 | * Try to get @bs's logical and physical block size. | |
493 | * On success, store them in @bsz struct and return 0. | |
494 | * On failure return -errno. | |
495 | * @bs must not be empty. | |
496 | */ | |
497 | int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) | |
498 | { | |
499 | BlockDriver *drv = bs->drv; | |
500 | ||
501 | if (drv && drv->bdrv_probe_blocksizes) { | |
502 | return drv->bdrv_probe_blocksizes(bs, bsz); | |
5a612c00 MP |
503 | } else if (drv && drv->is_filter && bs->file) { |
504 | return bdrv_probe_blocksizes(bs->file->bs, bsz); | |
892b7de8 ET |
505 | } |
506 | ||
507 | return -ENOTSUP; | |
508 | } | |
509 | ||
510 | /** | |
511 | * Try to get @bs's geometry (cyls, heads, sectors). | |
512 | * On success, store them in @geo struct and return 0. | |
513 | * On failure return -errno. | |
514 | * @bs must not be empty. | |
515 | */ | |
516 | int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) | |
517 | { | |
518 | BlockDriver *drv = bs->drv; | |
519 | ||
520 | if (drv && drv->bdrv_probe_geometry) { | |
521 | return drv->bdrv_probe_geometry(bs, geo); | |
5a612c00 MP |
522 | } else if (drv && drv->is_filter && bs->file) { |
523 | return bdrv_probe_geometry(bs->file->bs, geo); | |
892b7de8 ET |
524 | } |
525 | ||
526 | return -ENOTSUP; | |
527 | } | |
528 | ||
eba25057 JM |
529 | /* |
530 | * Create a uniquely-named empty temporary file. | |
531 | * Return 0 upon success, otherwise a negative errno value. | |
532 | */ | |
533 | int get_tmp_filename(char *filename, int size) | |
d5249393 | 534 | { |
eba25057 | 535 | #ifdef _WIN32 |
3b9f94e1 | 536 | char temp_dir[MAX_PATH]; |
eba25057 JM |
537 | /* GetTempFileName requires that its output buffer (4th param) |
538 | have length MAX_PATH or greater. */ | |
539 | assert(size >= MAX_PATH); | |
540 | return (GetTempPath(MAX_PATH, temp_dir) | |
541 | && GetTempFileName(temp_dir, "qem", 0, filename) | |
542 | ? 0 : -GetLastError()); | |
d5249393 | 543 | #else |
67b915a5 | 544 | int fd; |
7ccfb2eb | 545 | const char *tmpdir; |
0badc1ee | 546 | tmpdir = getenv("TMPDIR"); |
69bef793 AS |
547 | if (!tmpdir) { |
548 | tmpdir = "/var/tmp"; | |
549 | } | |
eba25057 JM |
550 | if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { |
551 | return -EOVERFLOW; | |
552 | } | |
ea2384d3 | 553 | fd = mkstemp(filename); |
fe235a06 DH |
554 | if (fd < 0) { |
555 | return -errno; | |
556 | } | |
557 | if (close(fd) != 0) { | |
558 | unlink(filename); | |
eba25057 JM |
559 | return -errno; |
560 | } | |
561 | return 0; | |
d5249393 | 562 | #endif |
eba25057 | 563 | } |
fc01f7e7 | 564 | |
84a12e66 CH |
565 | /* |
566 | * Detect host devices. By convention, /dev/cdrom[N] is always | |
567 | * recognized as a host CDROM. | |
568 | */ | |
569 | static BlockDriver *find_hdev_driver(const char *filename) | |
570 | { | |
571 | int score_max = 0, score; | |
572 | BlockDriver *drv = NULL, *d; | |
573 | ||
574 | QLIST_FOREACH(d, &bdrv_drivers, list) { | |
575 | if (d->bdrv_probe_device) { | |
576 | score = d->bdrv_probe_device(filename); | |
577 | if (score > score_max) { | |
578 | score_max = score; | |
579 | drv = d; | |
580 | } | |
581 | } | |
582 | } | |
583 | ||
584 | return drv; | |
585 | } | |
586 | ||
88d88798 MM |
587 | static BlockDriver *bdrv_do_find_protocol(const char *protocol) |
588 | { | |
589 | BlockDriver *drv1; | |
590 | ||
591 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { | |
592 | if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { | |
593 | return drv1; | |
594 | } | |
595 | } | |
596 | ||
597 | return NULL; | |
598 | } | |
599 | ||
98289620 | 600 | BlockDriver *bdrv_find_protocol(const char *filename, |
b65a5e12 HR |
601 | bool allow_protocol_prefix, |
602 | Error **errp) | |
83f64091 FB |
603 | { |
604 | BlockDriver *drv1; | |
605 | char protocol[128]; | |
1cec71e3 | 606 | int len; |
83f64091 | 607 | const char *p; |
88d88798 | 608 | int i; |
19cb3738 | 609 | |
66f82cee KW |
610 | /* TODO Drivers without bdrv_file_open must be specified explicitly */ |
611 | ||
39508e7a CH |
612 | /* |
613 | * XXX(hch): we really should not let host device detection | |
614 | * override an explicit protocol specification, but moving this | |
615 | * later breaks access to device names with colons in them. | |
616 | * Thanks to the brain-dead persistent naming schemes on udev- | |
617 | * based Linux systems those actually are quite common. | |
618 | */ | |
619 | drv1 = find_hdev_driver(filename); | |
620 | if (drv1) { | |
621 | return drv1; | |
622 | } | |
623 | ||
98289620 | 624 | if (!path_has_protocol(filename) || !allow_protocol_prefix) { |
ef810437 | 625 | return &bdrv_file; |
84a12e66 | 626 | } |
98289620 | 627 | |
9e0b22f4 SH |
628 | p = strchr(filename, ':'); |
629 | assert(p != NULL); | |
1cec71e3 AL |
630 | len = p - filename; |
631 | if (len > sizeof(protocol) - 1) | |
632 | len = sizeof(protocol) - 1; | |
633 | memcpy(protocol, filename, len); | |
634 | protocol[len] = '\0'; | |
88d88798 MM |
635 | |
636 | drv1 = bdrv_do_find_protocol(protocol); | |
637 | if (drv1) { | |
638 | return drv1; | |
639 | } | |
640 | ||
641 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { | |
642 | if (block_driver_modules[i].protocol_name && | |
643 | !strcmp(block_driver_modules[i].protocol_name, protocol)) { | |
644 | block_module_load_one(block_driver_modules[i].library_name); | |
645 | break; | |
8a22f02a | 646 | } |
83f64091 | 647 | } |
b65a5e12 | 648 | |
88d88798 MM |
649 | drv1 = bdrv_do_find_protocol(protocol); |
650 | if (!drv1) { | |
651 | error_setg(errp, "Unknown protocol '%s'", protocol); | |
652 | } | |
653 | return drv1; | |
83f64091 FB |
654 | } |
655 | ||
c6684249 MA |
656 | /* |
657 | * Guess image format by probing its contents. | |
658 | * This is not a good idea when your image is raw (CVE-2008-2004), but | |
659 | * we do it anyway for backward compatibility. | |
660 | * | |
661 | * @buf contains the image's first @buf_size bytes. | |
7cddd372 KW |
662 | * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, |
663 | * but can be smaller if the image file is smaller) | |
c6684249 MA |
664 | * @filename is its filename. |
665 | * | |
666 | * For all block drivers, call the bdrv_probe() method to get its | |
667 | * probing score. | |
668 | * Return the first block driver with the highest probing score. | |
669 | */ | |
38f3ef57 KW |
670 | BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, |
671 | const char *filename) | |
c6684249 MA |
672 | { |
673 | int score_max = 0, score; | |
674 | BlockDriver *drv = NULL, *d; | |
675 | ||
676 | QLIST_FOREACH(d, &bdrv_drivers, list) { | |
677 | if (d->bdrv_probe) { | |
678 | score = d->bdrv_probe(buf, buf_size, filename); | |
679 | if (score > score_max) { | |
680 | score_max = score; | |
681 | drv = d; | |
682 | } | |
683 | } | |
684 | } | |
685 | ||
686 | return drv; | |
687 | } | |
688 | ||
5696c6e3 | 689 | static int find_image_format(BlockBackend *file, const char *filename, |
34b5d2c6 | 690 | BlockDriver **pdrv, Error **errp) |
f3a5d3f8 | 691 | { |
c6684249 | 692 | BlockDriver *drv; |
7cddd372 | 693 | uint8_t buf[BLOCK_PROBE_BUF_SIZE]; |
f500a6d3 | 694 | int ret = 0; |
f8ea0b00 | 695 | |
08a00559 | 696 | /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ |
5696c6e3 | 697 | if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) { |
ef810437 | 698 | *pdrv = &bdrv_raw; |
c98ac35d | 699 | return ret; |
1a396859 | 700 | } |
f8ea0b00 | 701 | |
5696c6e3 | 702 | ret = blk_pread(file, 0, buf, sizeof(buf)); |
83f64091 | 703 | if (ret < 0) { |
34b5d2c6 HR |
704 | error_setg_errno(errp, -ret, "Could not read image for determining its " |
705 | "format"); | |
c98ac35d SW |
706 | *pdrv = NULL; |
707 | return ret; | |
83f64091 FB |
708 | } |
709 | ||
c6684249 | 710 | drv = bdrv_probe_all(buf, ret, filename); |
c98ac35d | 711 | if (!drv) { |
34b5d2c6 HR |
712 | error_setg(errp, "Could not determine image format: No compatible " |
713 | "driver found"); | |
c98ac35d SW |
714 | ret = -ENOENT; |
715 | } | |
716 | *pdrv = drv; | |
717 | return ret; | |
ea2384d3 FB |
718 | } |
719 | ||
51762288 SH |
720 | /** |
721 | * Set the current 'total_sectors' value | |
65a9bb25 | 722 | * Return 0 on success, -errno on error. |
51762288 SH |
723 | */ |
724 | static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) | |
725 | { | |
726 | BlockDriver *drv = bs->drv; | |
727 | ||
d470ad42 HR |
728 | if (!drv) { |
729 | return -ENOMEDIUM; | |
730 | } | |
731 | ||
396759ad | 732 | /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ |
b192af8a | 733 | if (bdrv_is_sg(bs)) |
396759ad NB |
734 | return 0; |
735 | ||
51762288 SH |
736 | /* query actual device if possible, otherwise just trust the hint */ |
737 | if (drv->bdrv_getlength) { | |
738 | int64_t length = drv->bdrv_getlength(bs); | |
739 | if (length < 0) { | |
740 | return length; | |
741 | } | |
7e382003 | 742 | hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); |
51762288 SH |
743 | } |
744 | ||
745 | bs->total_sectors = hint; | |
746 | return 0; | |
747 | } | |
748 | ||
cddff5ba KW |
749 | /** |
750 | * Combines a QDict of new block driver @options with any missing options taken | |
751 | * from @old_options, so that leaving out an option defaults to its old value. | |
752 | */ | |
753 | static void bdrv_join_options(BlockDriverState *bs, QDict *options, | |
754 | QDict *old_options) | |
755 | { | |
756 | if (bs->drv && bs->drv->bdrv_join_options) { | |
757 | bs->drv->bdrv_join_options(options, old_options); | |
758 | } else { | |
759 | qdict_join(options, old_options, false); | |
760 | } | |
761 | } | |
762 | ||
9e8f1835 PB |
763 | /** |
764 | * Set open flags for a given discard mode | |
765 | * | |
766 | * Return 0 on success, -1 if the discard mode was invalid. | |
767 | */ | |
768 | int bdrv_parse_discard_flags(const char *mode, int *flags) | |
769 | { | |
770 | *flags &= ~BDRV_O_UNMAP; | |
771 | ||
772 | if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { | |
773 | /* do nothing */ | |
774 | } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { | |
775 | *flags |= BDRV_O_UNMAP; | |
776 | } else { | |
777 | return -1; | |
778 | } | |
779 | ||
780 | return 0; | |
781 | } | |
782 | ||
c3993cdc SH |
783 | /** |
784 | * Set open flags for a given cache mode | |
785 | * | |
786 | * Return 0 on success, -1 if the cache mode was invalid. | |
787 | */ | |
53e8ae01 | 788 | int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) |
c3993cdc SH |
789 | { |
790 | *flags &= ~BDRV_O_CACHE_MASK; | |
791 | ||
792 | if (!strcmp(mode, "off") || !strcmp(mode, "none")) { | |
53e8ae01 KW |
793 | *writethrough = false; |
794 | *flags |= BDRV_O_NOCACHE; | |
92196b2f | 795 | } else if (!strcmp(mode, "directsync")) { |
53e8ae01 | 796 | *writethrough = true; |
92196b2f | 797 | *flags |= BDRV_O_NOCACHE; |
c3993cdc | 798 | } else if (!strcmp(mode, "writeback")) { |
53e8ae01 | 799 | *writethrough = false; |
c3993cdc | 800 | } else if (!strcmp(mode, "unsafe")) { |
53e8ae01 | 801 | *writethrough = false; |
c3993cdc SH |
802 | *flags |= BDRV_O_NO_FLUSH; |
803 | } else if (!strcmp(mode, "writethrough")) { | |
53e8ae01 | 804 | *writethrough = true; |
c3993cdc SH |
805 | } else { |
806 | return -1; | |
807 | } | |
808 | ||
809 | return 0; | |
810 | } | |
811 | ||
b5411555 KW |
812 | static char *bdrv_child_get_parent_desc(BdrvChild *c) |
813 | { | |
814 | BlockDriverState *parent = c->opaque; | |
815 | return g_strdup(bdrv_get_device_or_node_name(parent)); | |
816 | } | |
817 | ||
20018e12 KW |
818 | static void bdrv_child_cb_drained_begin(BdrvChild *child) |
819 | { | |
820 | BlockDriverState *bs = child->opaque; | |
821 | bdrv_drained_begin(bs); | |
822 | } | |
823 | ||
824 | static void bdrv_child_cb_drained_end(BdrvChild *child) | |
825 | { | |
826 | BlockDriverState *bs = child->opaque; | |
827 | bdrv_drained_end(bs); | |
828 | } | |
829 | ||
d736f119 KW |
830 | static void bdrv_child_cb_attach(BdrvChild *child) |
831 | { | |
832 | BlockDriverState *bs = child->opaque; | |
833 | bdrv_apply_subtree_drain(child, bs); | |
834 | } | |
835 | ||
836 | static void bdrv_child_cb_detach(BdrvChild *child) | |
837 | { | |
838 | BlockDriverState *bs = child->opaque; | |
839 | bdrv_unapply_subtree_drain(child, bs); | |
840 | } | |
841 | ||
38701b6a KW |
842 | static int bdrv_child_cb_inactivate(BdrvChild *child) |
843 | { | |
844 | BlockDriverState *bs = child->opaque; | |
845 | assert(bs->open_flags & BDRV_O_INACTIVE); | |
846 | return 0; | |
847 | } | |
848 | ||
b1e6fc08 | 849 | /* |
73176bee KW |
850 | * Returns the options and flags that a temporary snapshot should get, based on |
851 | * the originally requested flags (the originally requested image will have | |
852 | * flags like a backing file) | |
b1e6fc08 | 853 | */ |
73176bee KW |
854 | static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, |
855 | int parent_flags, QDict *parent_options) | |
b1e6fc08 | 856 | { |
73176bee KW |
857 | *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; |
858 | ||
859 | /* For temporary files, unconditional cache=unsafe is fine */ | |
73176bee KW |
860 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); |
861 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); | |
41869044 | 862 | |
f87a0e29 AG |
863 | /* Copy the read-only option from the parent */ |
864 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); | |
865 | ||
41869044 KW |
866 | /* aio=native doesn't work for cache.direct=off, so disable it for the |
867 | * temporary snapshot */ | |
868 | *child_flags &= ~BDRV_O_NATIVE_AIO; | |
b1e6fc08 KW |
869 | } |
870 | ||
0b50cc88 | 871 | /* |
8e2160e2 KW |
872 | * Returns the options and flags that bs->file should get if a protocol driver |
873 | * is expected, based on the given options and flags for the parent BDS | |
0b50cc88 | 874 | */ |
8e2160e2 KW |
875 | static void bdrv_inherited_options(int *child_flags, QDict *child_options, |
876 | int parent_flags, QDict *parent_options) | |
0b50cc88 | 877 | { |
8e2160e2 KW |
878 | int flags = parent_flags; |
879 | ||
0b50cc88 KW |
880 | /* Enable protocol handling, disable format probing for bs->file */ |
881 | flags |= BDRV_O_PROTOCOL; | |
882 | ||
91a097e7 KW |
883 | /* If the cache mode isn't explicitly set, inherit direct and no-flush from |
884 | * the parent. */ | |
885 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); | |
886 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); | |
5a9347c6 | 887 | qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); |
91a097e7 | 888 | |
f87a0e29 AG |
889 | /* Inherit the read-only option from the parent if it's not set */ |
890 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); | |
891 | ||
0b50cc88 | 892 | /* Our block drivers take care to send flushes and respect unmap policy, |
91a097e7 KW |
893 | * so we can default to enable both on lower layers regardless of the |
894 | * corresponding parent options. */ | |
818584a4 | 895 | qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); |
0b50cc88 | 896 | |
0b50cc88 | 897 | /* Clear flags that only apply to the top layer */ |
abb06c5a DB |
898 | flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ | |
899 | BDRV_O_NO_IO); | |
0b50cc88 | 900 | |
8e2160e2 | 901 | *child_flags = flags; |
0b50cc88 KW |
902 | } |
903 | ||
f3930ed0 | 904 | const BdrvChildRole child_file = { |
b5411555 | 905 | .get_parent_desc = bdrv_child_get_parent_desc, |
8e2160e2 | 906 | .inherit_options = bdrv_inherited_options, |
20018e12 KW |
907 | .drained_begin = bdrv_child_cb_drained_begin, |
908 | .drained_end = bdrv_child_cb_drained_end, | |
d736f119 KW |
909 | .attach = bdrv_child_cb_attach, |
910 | .detach = bdrv_child_cb_detach, | |
38701b6a | 911 | .inactivate = bdrv_child_cb_inactivate, |
f3930ed0 KW |
912 | }; |
913 | ||
914 | /* | |
8e2160e2 KW |
915 | * Returns the options and flags that bs->file should get if the use of formats |
916 | * (and not only protocols) is permitted for it, based on the given options and | |
917 | * flags for the parent BDS | |
f3930ed0 | 918 | */ |
8e2160e2 KW |
919 | static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options, |
920 | int parent_flags, QDict *parent_options) | |
f3930ed0 | 921 | { |
8e2160e2 KW |
922 | child_file.inherit_options(child_flags, child_options, |
923 | parent_flags, parent_options); | |
924 | ||
abb06c5a | 925 | *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO); |
f3930ed0 KW |
926 | } |
927 | ||
928 | const BdrvChildRole child_format = { | |
b5411555 | 929 | .get_parent_desc = bdrv_child_get_parent_desc, |
8e2160e2 | 930 | .inherit_options = bdrv_inherited_fmt_options, |
20018e12 KW |
931 | .drained_begin = bdrv_child_cb_drained_begin, |
932 | .drained_end = bdrv_child_cb_drained_end, | |
d736f119 KW |
933 | .attach = bdrv_child_cb_attach, |
934 | .detach = bdrv_child_cb_detach, | |
38701b6a | 935 | .inactivate = bdrv_child_cb_inactivate, |
f3930ed0 KW |
936 | }; |
937 | ||
db95dbba KW |
938 | static void bdrv_backing_attach(BdrvChild *c) |
939 | { | |
940 | BlockDriverState *parent = c->opaque; | |
941 | BlockDriverState *backing_hd = c->bs; | |
942 | ||
943 | assert(!parent->backing_blocker); | |
944 | error_setg(&parent->backing_blocker, | |
945 | "node is used as backing hd of '%s'", | |
946 | bdrv_get_device_or_node_name(parent)); | |
947 | ||
948 | parent->open_flags &= ~BDRV_O_NO_BACKING; | |
949 | pstrcpy(parent->backing_file, sizeof(parent->backing_file), | |
950 | backing_hd->filename); | |
951 | pstrcpy(parent->backing_format, sizeof(parent->backing_format), | |
952 | backing_hd->drv ? backing_hd->drv->format_name : ""); | |
953 | ||
954 | bdrv_op_block_all(backing_hd, parent->backing_blocker); | |
955 | /* Otherwise we won't be able to commit or stream */ | |
956 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, | |
957 | parent->backing_blocker); | |
958 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, | |
959 | parent->backing_blocker); | |
960 | /* | |
961 | * We do backup in 3 ways: | |
962 | * 1. drive backup | |
963 | * The target bs is new opened, and the source is top BDS | |
964 | * 2. blockdev backup | |
965 | * Both the source and the target are top BDSes. | |
966 | * 3. internal backup(used for block replication) | |
967 | * Both the source and the target are backing file | |
968 | * | |
969 | * In case 1 and 2, neither the source nor the target is the backing file. | |
970 | * In case 3, we will block the top BDS, so there is only one block job | |
971 | * for the top BDS and its backing chain. | |
972 | */ | |
973 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, | |
974 | parent->backing_blocker); | |
975 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, | |
976 | parent->backing_blocker); | |
d736f119 KW |
977 | |
978 | bdrv_child_cb_attach(c); | |
db95dbba KW |
979 | } |
980 | ||
981 | static void bdrv_backing_detach(BdrvChild *c) | |
982 | { | |
983 | BlockDriverState *parent = c->opaque; | |
984 | ||
985 | assert(parent->backing_blocker); | |
986 | bdrv_op_unblock_all(c->bs, parent->backing_blocker); | |
987 | error_free(parent->backing_blocker); | |
988 | parent->backing_blocker = NULL; | |
d736f119 KW |
989 | |
990 | bdrv_child_cb_detach(c); | |
db95dbba KW |
991 | } |
992 | ||
317fc44e | 993 | /* |
8e2160e2 KW |
994 | * Returns the options and flags that bs->backing should get, based on the |
995 | * given options and flags for the parent BDS | |
317fc44e | 996 | */ |
8e2160e2 KW |
997 | static void bdrv_backing_options(int *child_flags, QDict *child_options, |
998 | int parent_flags, QDict *parent_options) | |
317fc44e | 999 | { |
8e2160e2 KW |
1000 | int flags = parent_flags; |
1001 | ||
b8816a43 KW |
1002 | /* The cache mode is inherited unmodified for backing files; except WCE, |
1003 | * which is only applied on the top level (BlockBackend) */ | |
91a097e7 KW |
1004 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); |
1005 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); | |
5a9347c6 | 1006 | qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); |
91a097e7 | 1007 | |
317fc44e | 1008 | /* backing files always opened read-only */ |
f87a0e29 AG |
1009 | qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); |
1010 | flags &= ~BDRV_O_COPY_ON_READ; | |
317fc44e KW |
1011 | |
1012 | /* snapshot=on is handled on the top layer */ | |
8bfea15d | 1013 | flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY); |
317fc44e | 1014 | |
8e2160e2 | 1015 | *child_flags = flags; |
317fc44e KW |
1016 | } |
1017 | ||
6858eba0 KW |
1018 | static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, |
1019 | const char *filename, Error **errp) | |
1020 | { | |
1021 | BlockDriverState *parent = c->opaque; | |
61f09cea | 1022 | int orig_flags = bdrv_get_flags(parent); |
6858eba0 KW |
1023 | int ret; |
1024 | ||
61f09cea KW |
1025 | if (!(orig_flags & BDRV_O_RDWR)) { |
1026 | ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp); | |
1027 | if (ret < 0) { | |
1028 | return ret; | |
1029 | } | |
1030 | } | |
1031 | ||
6858eba0 KW |
1032 | ret = bdrv_change_backing_file(parent, filename, |
1033 | base->drv ? base->drv->format_name : ""); | |
1034 | if (ret < 0) { | |
64730694 | 1035 | error_setg_errno(errp, -ret, "Could not update backing file link"); |
6858eba0 KW |
1036 | } |
1037 | ||
61f09cea KW |
1038 | if (!(orig_flags & BDRV_O_RDWR)) { |
1039 | bdrv_reopen(parent, orig_flags, NULL); | |
1040 | } | |
1041 | ||
6858eba0 KW |
1042 | return ret; |
1043 | } | |
1044 | ||
91ef3825 | 1045 | const BdrvChildRole child_backing = { |
b5411555 | 1046 | .get_parent_desc = bdrv_child_get_parent_desc, |
db95dbba KW |
1047 | .attach = bdrv_backing_attach, |
1048 | .detach = bdrv_backing_detach, | |
8e2160e2 | 1049 | .inherit_options = bdrv_backing_options, |
20018e12 KW |
1050 | .drained_begin = bdrv_child_cb_drained_begin, |
1051 | .drained_end = bdrv_child_cb_drained_end, | |
38701b6a | 1052 | .inactivate = bdrv_child_cb_inactivate, |
6858eba0 | 1053 | .update_filename = bdrv_backing_update_filename, |
f3930ed0 KW |
1054 | }; |
1055 | ||
7b272452 KW |
1056 | static int bdrv_open_flags(BlockDriverState *bs, int flags) |
1057 | { | |
61de4c68 | 1058 | int open_flags = flags; |
7b272452 KW |
1059 | |
1060 | /* | |
1061 | * Clear flags that are internal to the block layer before opening the | |
1062 | * image. | |
1063 | */ | |
20cca275 | 1064 | open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); |
7b272452 KW |
1065 | |
1066 | /* | |
1067 | * Snapshots should be writable. | |
1068 | */ | |
8bfea15d | 1069 | if (flags & BDRV_O_TEMPORARY) { |
7b272452 KW |
1070 | open_flags |= BDRV_O_RDWR; |
1071 | } | |
1072 | ||
1073 | return open_flags; | |
1074 | } | |
1075 | ||
91a097e7 KW |
1076 | static void update_flags_from_options(int *flags, QemuOpts *opts) |
1077 | { | |
1078 | *flags &= ~BDRV_O_CACHE_MASK; | |
1079 | ||
91a097e7 KW |
1080 | assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH)); |
1081 | if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) { | |
1082 | *flags |= BDRV_O_NO_FLUSH; | |
1083 | } | |
1084 | ||
1085 | assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT)); | |
1086 | if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) { | |
1087 | *flags |= BDRV_O_NOCACHE; | |
1088 | } | |
f87a0e29 AG |
1089 | |
1090 | *flags &= ~BDRV_O_RDWR; | |
1091 | ||
1092 | assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY)); | |
1093 | if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) { | |
1094 | *flags |= BDRV_O_RDWR; | |
1095 | } | |
1096 | ||
91a097e7 KW |
1097 | } |
1098 | ||
1099 | static void update_options_from_flags(QDict *options, int flags) | |
1100 | { | |
91a097e7 | 1101 | if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { |
46f5ac20 | 1102 | qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); |
91a097e7 KW |
1103 | } |
1104 | if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { | |
46f5ac20 EB |
1105 | qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, |
1106 | flags & BDRV_O_NO_FLUSH); | |
91a097e7 | 1107 | } |
f87a0e29 | 1108 | if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { |
46f5ac20 | 1109 | qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); |
f87a0e29 | 1110 | } |
91a097e7 KW |
1111 | } |
1112 | ||
636ea370 KW |
1113 | static void bdrv_assign_node_name(BlockDriverState *bs, |
1114 | const char *node_name, | |
1115 | Error **errp) | |
6913c0c2 | 1116 | { |
15489c76 | 1117 | char *gen_node_name = NULL; |
6913c0c2 | 1118 | |
15489c76 JC |
1119 | if (!node_name) { |
1120 | node_name = gen_node_name = id_generate(ID_BLOCK); | |
1121 | } else if (!id_wellformed(node_name)) { | |
1122 | /* | |
1123 | * Check for empty string or invalid characters, but not if it is | |
1124 | * generated (generated names use characters not available to the user) | |
1125 | */ | |
9aebf3b8 | 1126 | error_setg(errp, "Invalid node name"); |
636ea370 | 1127 | return; |
6913c0c2 BC |
1128 | } |
1129 | ||
0c5e94ee | 1130 | /* takes care of avoiding namespaces collisions */ |
7f06d47e | 1131 | if (blk_by_name(node_name)) { |
0c5e94ee BC |
1132 | error_setg(errp, "node-name=%s is conflicting with a device id", |
1133 | node_name); | |
15489c76 | 1134 | goto out; |
0c5e94ee BC |
1135 | } |
1136 | ||
6913c0c2 BC |
1137 | /* takes care of avoiding duplicates node names */ |
1138 | if (bdrv_find_node(node_name)) { | |
1139 | error_setg(errp, "Duplicate node name"); | |
15489c76 | 1140 | goto out; |
6913c0c2 BC |
1141 | } |
1142 | ||
1143 | /* copy node name into the bs and insert it into the graph list */ | |
1144 | pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); | |
1145 | QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); | |
15489c76 JC |
1146 | out: |
1147 | g_free(gen_node_name); | |
6913c0c2 BC |
1148 | } |
1149 | ||
01a56501 KW |
1150 | static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, |
1151 | const char *node_name, QDict *options, | |
1152 | int open_flags, Error **errp) | |
1153 | { | |
1154 | Error *local_err = NULL; | |
1155 | int ret; | |
1156 | ||
1157 | bdrv_assign_node_name(bs, node_name, &local_err); | |
1158 | if (local_err) { | |
1159 | error_propagate(errp, local_err); | |
1160 | return -EINVAL; | |
1161 | } | |
1162 | ||
1163 | bs->drv = drv; | |
680c7f96 | 1164 | bs->read_only = !(bs->open_flags & BDRV_O_RDWR); |
01a56501 KW |
1165 | bs->opaque = g_malloc0(drv->instance_size); |
1166 | ||
1167 | if (drv->bdrv_file_open) { | |
1168 | assert(!drv->bdrv_needs_filename || bs->filename[0]); | |
1169 | ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); | |
680c7f96 | 1170 | } else if (drv->bdrv_open) { |
01a56501 | 1171 | ret = drv->bdrv_open(bs, options, open_flags, &local_err); |
680c7f96 KW |
1172 | } else { |
1173 | ret = 0; | |
01a56501 KW |
1174 | } |
1175 | ||
1176 | if (ret < 0) { | |
1177 | if (local_err) { | |
1178 | error_propagate(errp, local_err); | |
1179 | } else if (bs->filename[0]) { | |
1180 | error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); | |
1181 | } else { | |
1182 | error_setg_errno(errp, -ret, "Could not open image"); | |
1183 | } | |
180ca19a | 1184 | goto open_failed; |
01a56501 KW |
1185 | } |
1186 | ||
1187 | ret = refresh_total_sectors(bs, bs->total_sectors); | |
1188 | if (ret < 0) { | |
1189 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); | |
180ca19a | 1190 | return ret; |
01a56501 KW |
1191 | } |
1192 | ||
1193 | bdrv_refresh_limits(bs, &local_err); | |
1194 | if (local_err) { | |
1195 | error_propagate(errp, local_err); | |
180ca19a | 1196 | return -EINVAL; |
01a56501 KW |
1197 | } |
1198 | ||
1199 | assert(bdrv_opt_mem_align(bs) != 0); | |
1200 | assert(bdrv_min_mem_align(bs) != 0); | |
1201 | assert(is_power_of_2(bs->bl.request_alignment)); | |
1202 | ||
1203 | return 0; | |
180ca19a MP |
1204 | open_failed: |
1205 | bs->drv = NULL; | |
1206 | if (bs->file != NULL) { | |
1207 | bdrv_unref_child(bs, bs->file); | |
1208 | bs->file = NULL; | |
1209 | } | |
01a56501 KW |
1210 | g_free(bs->opaque); |
1211 | bs->opaque = NULL; | |
01a56501 KW |
1212 | return ret; |
1213 | } | |
1214 | ||
680c7f96 KW |
1215 | BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, |
1216 | int flags, Error **errp) | |
1217 | { | |
1218 | BlockDriverState *bs; | |
1219 | int ret; | |
1220 | ||
1221 | bs = bdrv_new(); | |
1222 | bs->open_flags = flags; | |
1223 | bs->explicit_options = qdict_new(); | |
1224 | bs->options = qdict_new(); | |
1225 | bs->opaque = NULL; | |
1226 | ||
1227 | update_options_from_flags(bs->options, flags); | |
1228 | ||
1229 | ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); | |
1230 | if (ret < 0) { | |
cb3e7f08 | 1231 | qobject_unref(bs->explicit_options); |
180ca19a | 1232 | bs->explicit_options = NULL; |
cb3e7f08 | 1233 | qobject_unref(bs->options); |
180ca19a | 1234 | bs->options = NULL; |
680c7f96 KW |
1235 | bdrv_unref(bs); |
1236 | return NULL; | |
1237 | } | |
1238 | ||
1239 | return bs; | |
1240 | } | |
1241 | ||
c5f3014b | 1242 | QemuOptsList bdrv_runtime_opts = { |
18edf289 KW |
1243 | .name = "bdrv_common", |
1244 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), | |
1245 | .desc = { | |
1246 | { | |
1247 | .name = "node-name", | |
1248 | .type = QEMU_OPT_STRING, | |
1249 | .help = "Node name of the block device node", | |
1250 | }, | |
62392ebb KW |
1251 | { |
1252 | .name = "driver", | |
1253 | .type = QEMU_OPT_STRING, | |
1254 | .help = "Block driver to use for the node", | |
1255 | }, | |
91a097e7 KW |
1256 | { |
1257 | .name = BDRV_OPT_CACHE_DIRECT, | |
1258 | .type = QEMU_OPT_BOOL, | |
1259 | .help = "Bypass software writeback cache on the host", | |
1260 | }, | |
1261 | { | |
1262 | .name = BDRV_OPT_CACHE_NO_FLUSH, | |
1263 | .type = QEMU_OPT_BOOL, | |
1264 | .help = "Ignore flush requests", | |
1265 | }, | |
f87a0e29 AG |
1266 | { |
1267 | .name = BDRV_OPT_READ_ONLY, | |
1268 | .type = QEMU_OPT_BOOL, | |
1269 | .help = "Node is opened in read-only mode", | |
1270 | }, | |
692e01a2 KW |
1271 | { |
1272 | .name = "detect-zeroes", | |
1273 | .type = QEMU_OPT_STRING, | |
1274 | .help = "try to optimize zero writes (off, on, unmap)", | |
1275 | }, | |
818584a4 KW |
1276 | { |
1277 | .name = "discard", | |
1278 | .type = QEMU_OPT_STRING, | |
1279 | .help = "discard operation (ignore/off, unmap/on)", | |
1280 | }, | |
5a9347c6 FZ |
1281 | { |
1282 | .name = BDRV_OPT_FORCE_SHARE, | |
1283 | .type = QEMU_OPT_BOOL, | |
1284 | .help = "always accept other writers (default: off)", | |
1285 | }, | |
18edf289 KW |
1286 | { /* end of list */ } |
1287 | }, | |
1288 | }; | |
1289 | ||
57915332 KW |
1290 | /* |
1291 | * Common part for opening disk images and files | |
b6ad491a KW |
1292 | * |
1293 | * Removes all processed options from *options. | |
57915332 | 1294 | */ |
5696c6e3 | 1295 | static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, |
82dc8b41 | 1296 | QDict *options, Error **errp) |
57915332 KW |
1297 | { |
1298 | int ret, open_flags; | |
035fccdf | 1299 | const char *filename; |
62392ebb | 1300 | const char *driver_name = NULL; |
6913c0c2 | 1301 | const char *node_name = NULL; |
818584a4 | 1302 | const char *discard; |
692e01a2 | 1303 | const char *detect_zeroes; |
18edf289 | 1304 | QemuOpts *opts; |
62392ebb | 1305 | BlockDriver *drv; |
34b5d2c6 | 1306 | Error *local_err = NULL; |
57915332 | 1307 | |
6405875c | 1308 | assert(bs->file == NULL); |
707ff828 | 1309 | assert(options != NULL && bs->options != options); |
57915332 | 1310 | |
62392ebb KW |
1311 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
1312 | qemu_opts_absorb_qdict(opts, options, &local_err); | |
1313 | if (local_err) { | |
1314 | error_propagate(errp, local_err); | |
1315 | ret = -EINVAL; | |
1316 | goto fail_opts; | |
1317 | } | |
1318 | ||
9b7e8691 AG |
1319 | update_flags_from_options(&bs->open_flags, opts); |
1320 | ||
62392ebb KW |
1321 | driver_name = qemu_opt_get(opts, "driver"); |
1322 | drv = bdrv_find_format(driver_name); | |
1323 | assert(drv != NULL); | |
1324 | ||
5a9347c6 FZ |
1325 | bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); |
1326 | ||
1327 | if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { | |
1328 | error_setg(errp, | |
1329 | BDRV_OPT_FORCE_SHARE | |
1330 | "=on can only be used with read-only images"); | |
1331 | ret = -EINVAL; | |
1332 | goto fail_opts; | |
1333 | } | |
1334 | ||
45673671 | 1335 | if (file != NULL) { |
5696c6e3 | 1336 | filename = blk_bs(file)->filename; |
45673671 | 1337 | } else { |
129c7d1c MA |
1338 | /* |
1339 | * Caution: while qdict_get_try_str() is fine, getting | |
1340 | * non-string types would require more care. When @options | |
1341 | * come from -blockdev or blockdev_add, its members are typed | |
1342 | * according to the QAPI schema, but when they come from | |
1343 | * -drive, they're all QString. | |
1344 | */ | |
45673671 KW |
1345 | filename = qdict_get_try_str(options, "filename"); |
1346 | } | |
1347 | ||
4a008240 | 1348 | if (drv->bdrv_needs_filename && (!filename || !filename[0])) { |
765003db KW |
1349 | error_setg(errp, "The '%s' block driver requires a file name", |
1350 | drv->format_name); | |
18edf289 KW |
1351 | ret = -EINVAL; |
1352 | goto fail_opts; | |
6913c0c2 | 1353 | } |
6913c0c2 | 1354 | |
82dc8b41 KW |
1355 | trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, |
1356 | drv->format_name); | |
62392ebb | 1357 | |
82dc8b41 | 1358 | bs->read_only = !(bs->open_flags & BDRV_O_RDWR); |
b64ec4e4 FZ |
1359 | |
1360 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { | |
8f94a6e4 KW |
1361 | error_setg(errp, |
1362 | !bs->read_only && bdrv_is_whitelisted(drv, true) | |
1363 | ? "Driver '%s' can only be used for read-only devices" | |
1364 | : "Driver '%s' is not whitelisted", | |
1365 | drv->format_name); | |
18edf289 KW |
1366 | ret = -ENOTSUP; |
1367 | goto fail_opts; | |
b64ec4e4 | 1368 | } |
57915332 | 1369 | |
d3faa13e PB |
1370 | /* bdrv_new() and bdrv_close() make it so */ |
1371 | assert(atomic_read(&bs->copy_on_read) == 0); | |
1372 | ||
82dc8b41 | 1373 | if (bs->open_flags & BDRV_O_COPY_ON_READ) { |
0ebd24e0 KW |
1374 | if (!bs->read_only) { |
1375 | bdrv_enable_copy_on_read(bs); | |
1376 | } else { | |
1377 | error_setg(errp, "Can't use copy-on-read on read-only device"); | |
18edf289 KW |
1378 | ret = -EINVAL; |
1379 | goto fail_opts; | |
0ebd24e0 | 1380 | } |
53fec9d3 SH |
1381 | } |
1382 | ||
818584a4 KW |
1383 | discard = qemu_opt_get(opts, "discard"); |
1384 | if (discard != NULL) { | |
1385 | if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { | |
1386 | error_setg(errp, "Invalid discard option"); | |
1387 | ret = -EINVAL; | |
1388 | goto fail_opts; | |
1389 | } | |
1390 | } | |
1391 | ||
692e01a2 KW |
1392 | detect_zeroes = qemu_opt_get(opts, "detect-zeroes"); |
1393 | if (detect_zeroes) { | |
1394 | BlockdevDetectZeroesOptions value = | |
f7abe0ec | 1395 | qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, |
692e01a2 | 1396 | detect_zeroes, |
692e01a2 KW |
1397 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, |
1398 | &local_err); | |
1399 | if (local_err) { | |
1400 | error_propagate(errp, local_err); | |
1401 | ret = -EINVAL; | |
1402 | goto fail_opts; | |
1403 | } | |
1404 | ||
1405 | if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && | |
1406 | !(bs->open_flags & BDRV_O_UNMAP)) | |
1407 | { | |
1408 | error_setg(errp, "setting detect-zeroes to unmap is not allowed " | |
1409 | "without setting discard operation to unmap"); | |
1410 | ret = -EINVAL; | |
1411 | goto fail_opts; | |
1412 | } | |
1413 | ||
1414 | bs->detect_zeroes = value; | |
1415 | } | |
1416 | ||
c2ad1b0c KW |
1417 | if (filename != NULL) { |
1418 | pstrcpy(bs->filename, sizeof(bs->filename), filename); | |
1419 | } else { | |
1420 | bs->filename[0] = '\0'; | |
1421 | } | |
91af7014 | 1422 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); |
57915332 | 1423 | |
66f82cee | 1424 | /* Open the image, either directly or using a protocol */ |
82dc8b41 | 1425 | open_flags = bdrv_open_flags(bs, bs->open_flags); |
01a56501 | 1426 | node_name = qemu_opt_get(opts, "node-name"); |
57915332 | 1427 | |
01a56501 KW |
1428 | assert(!drv->bdrv_file_open || file == NULL); |
1429 | ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); | |
51762288 | 1430 | if (ret < 0) { |
01a56501 | 1431 | goto fail_opts; |
3baca891 KW |
1432 | } |
1433 | ||
18edf289 | 1434 | qemu_opts_del(opts); |
57915332 KW |
1435 | return 0; |
1436 | ||
18edf289 KW |
1437 | fail_opts: |
1438 | qemu_opts_del(opts); | |
57915332 KW |
1439 | return ret; |
1440 | } | |
1441 | ||
5e5c4f63 KW |
1442 | static QDict *parse_json_filename(const char *filename, Error **errp) |
1443 | { | |
1444 | QObject *options_obj; | |
1445 | QDict *options; | |
1446 | int ret; | |
1447 | ||
1448 | ret = strstart(filename, "json:", &filename); | |
1449 | assert(ret); | |
1450 | ||
5577fff7 | 1451 | options_obj = qobject_from_json(filename, errp); |
5e5c4f63 | 1452 | if (!options_obj) { |
5577fff7 MA |
1453 | /* Work around qobject_from_json() lossage TODO fix that */ |
1454 | if (errp && !*errp) { | |
1455 | error_setg(errp, "Could not parse the JSON options"); | |
1456 | return NULL; | |
1457 | } | |
1458 | error_prepend(errp, "Could not parse the JSON options: "); | |
5e5c4f63 KW |
1459 | return NULL; |
1460 | } | |
1461 | ||
7dc847eb | 1462 | options = qobject_to(QDict, options_obj); |
ca6b6e1e | 1463 | if (!options) { |
cb3e7f08 | 1464 | qobject_unref(options_obj); |
5e5c4f63 KW |
1465 | error_setg(errp, "Invalid JSON object given"); |
1466 | return NULL; | |
1467 | } | |
1468 | ||
5e5c4f63 KW |
1469 | qdict_flatten(options); |
1470 | ||
1471 | return options; | |
1472 | } | |
1473 | ||
de3b53f0 KW |
1474 | static void parse_json_protocol(QDict *options, const char **pfilename, |
1475 | Error **errp) | |
1476 | { | |
1477 | QDict *json_options; | |
1478 | Error *local_err = NULL; | |
1479 | ||
1480 | /* Parse json: pseudo-protocol */ | |
1481 | if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { | |
1482 | return; | |
1483 | } | |
1484 | ||
1485 | json_options = parse_json_filename(*pfilename, &local_err); | |
1486 | if (local_err) { | |
1487 | error_propagate(errp, local_err); | |
1488 | return; | |
1489 | } | |
1490 | ||
1491 | /* Options given in the filename have lower priority than options | |
1492 | * specified directly */ | |
1493 | qdict_join(options, json_options, false); | |
cb3e7f08 | 1494 | qobject_unref(json_options); |
de3b53f0 KW |
1495 | *pfilename = NULL; |
1496 | } | |
1497 | ||
b6ce07aa | 1498 | /* |
f54120ff KW |
1499 | * Fills in default options for opening images and converts the legacy |
1500 | * filename/flags pair to option QDict entries. | |
53a29513 HR |
1501 | * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a |
1502 | * block driver has been specified explicitly. | |
b6ce07aa | 1503 | */ |
de3b53f0 | 1504 | static int bdrv_fill_options(QDict **options, const char *filename, |
053e1578 | 1505 | int *flags, Error **errp) |
ea2384d3 | 1506 | { |
c2ad1b0c | 1507 | const char *drvname; |
53a29513 | 1508 | bool protocol = *flags & BDRV_O_PROTOCOL; |
e3fa4bfa | 1509 | bool parse_filename = false; |
053e1578 | 1510 | BlockDriver *drv = NULL; |
34b5d2c6 | 1511 | Error *local_err = NULL; |
83f64091 | 1512 | |
129c7d1c MA |
1513 | /* |
1514 | * Caution: while qdict_get_try_str() is fine, getting non-string | |
1515 | * types would require more care. When @options come from | |
1516 | * -blockdev or blockdev_add, its members are typed according to | |
1517 | * the QAPI schema, but when they come from -drive, they're all | |
1518 | * QString. | |
1519 | */ | |
53a29513 | 1520 | drvname = qdict_get_try_str(*options, "driver"); |
053e1578 HR |
1521 | if (drvname) { |
1522 | drv = bdrv_find_format(drvname); | |
1523 | if (!drv) { | |
1524 | error_setg(errp, "Unknown driver '%s'", drvname); | |
1525 | return -ENOENT; | |
1526 | } | |
1527 | /* If the user has explicitly specified the driver, this choice should | |
1528 | * override the BDRV_O_PROTOCOL flag */ | |
1529 | protocol = drv->bdrv_file_open; | |
53a29513 HR |
1530 | } |
1531 | ||
1532 | if (protocol) { | |
1533 | *flags |= BDRV_O_PROTOCOL; | |
1534 | } else { | |
1535 | *flags &= ~BDRV_O_PROTOCOL; | |
1536 | } | |
1537 | ||
91a097e7 KW |
1538 | /* Translate cache options from flags into options */ |
1539 | update_options_from_flags(*options, *flags); | |
1540 | ||
035fccdf | 1541 | /* Fetch the file name from the options QDict if necessary */ |
17b005f1 | 1542 | if (protocol && filename) { |
f54120ff | 1543 | if (!qdict_haskey(*options, "filename")) { |
46f5ac20 | 1544 | qdict_put_str(*options, "filename", filename); |
f54120ff KW |
1545 | parse_filename = true; |
1546 | } else { | |
1547 | error_setg(errp, "Can't specify 'file' and 'filename' options at " | |
1548 | "the same time"); | |
1549 | return -EINVAL; | |
1550 | } | |
035fccdf KW |
1551 | } |
1552 | ||
c2ad1b0c | 1553 | /* Find the right block driver */ |
129c7d1c | 1554 | /* See cautionary note on accessing @options above */ |
f54120ff | 1555 | filename = qdict_get_try_str(*options, "filename"); |
f54120ff | 1556 | |
053e1578 HR |
1557 | if (!drvname && protocol) { |
1558 | if (filename) { | |
1559 | drv = bdrv_find_protocol(filename, parse_filename, errp); | |
17b005f1 | 1560 | if (!drv) { |
053e1578 | 1561 | return -EINVAL; |
17b005f1 | 1562 | } |
053e1578 HR |
1563 | |
1564 | drvname = drv->format_name; | |
46f5ac20 | 1565 | qdict_put_str(*options, "driver", drvname); |
053e1578 HR |
1566 | } else { |
1567 | error_setg(errp, "Must specify either driver or file"); | |
1568 | return -EINVAL; | |
98289620 | 1569 | } |
c2ad1b0c KW |
1570 | } |
1571 | ||
17b005f1 | 1572 | assert(drv || !protocol); |
c2ad1b0c | 1573 | |
f54120ff | 1574 | /* Driver-specific filename parsing */ |
17b005f1 | 1575 | if (drv && drv->bdrv_parse_filename && parse_filename) { |
5acd9d81 | 1576 | drv->bdrv_parse_filename(filename, *options, &local_err); |
84d18f06 | 1577 | if (local_err) { |
34b5d2c6 | 1578 | error_propagate(errp, local_err); |
f54120ff | 1579 | return -EINVAL; |
6963a30d | 1580 | } |
cd5d031e HR |
1581 | |
1582 | if (!drv->bdrv_needs_filename) { | |
1583 | qdict_del(*options, "filename"); | |
cd5d031e | 1584 | } |
6963a30d KW |
1585 | } |
1586 | ||
f54120ff KW |
1587 | return 0; |
1588 | } | |
1589 | ||
3121fb45 KW |
1590 | static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q, |
1591 | uint64_t perm, uint64_t shared, | |
c1cef672 FZ |
1592 | GSList *ignore_children, Error **errp); |
1593 | static void bdrv_child_abort_perm_update(BdrvChild *c); | |
1594 | static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared); | |
1595 | ||
148eb13c KW |
1596 | typedef struct BlockReopenQueueEntry { |
1597 | bool prepared; | |
1598 | BDRVReopenState state; | |
1599 | QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; | |
1600 | } BlockReopenQueueEntry; | |
1601 | ||
1602 | /* | |
1603 | * Return the flags that @bs will have after the reopens in @q have | |
1604 | * successfully completed. If @q is NULL (or @bs is not contained in @q), | |
1605 | * return the current flags. | |
1606 | */ | |
1607 | static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) | |
1608 | { | |
1609 | BlockReopenQueueEntry *entry; | |
1610 | ||
1611 | if (q != NULL) { | |
1612 | QSIMPLEQ_FOREACH(entry, q, entry) { | |
1613 | if (entry->state.bs == bs) { | |
1614 | return entry->state.flags; | |
1615 | } | |
1616 | } | |
1617 | } | |
1618 | ||
1619 | return bs->open_flags; | |
1620 | } | |
1621 | ||
1622 | /* Returns whether the image file can be written to after the reopen queue @q | |
1623 | * has been successfully applied, or right now if @q is NULL. */ | |
cc022140 HR |
1624 | static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, |
1625 | BlockReopenQueue *q) | |
148eb13c KW |
1626 | { |
1627 | int flags = bdrv_reopen_get_flags(q, bs); | |
1628 | ||
1629 | return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; | |
1630 | } | |
1631 | ||
cc022140 HR |
1632 | /* |
1633 | * Return whether the BDS can be written to. This is not necessarily | |
1634 | * the same as !bdrv_is_read_only(bs), as inactivated images may not | |
1635 | * be written to but do not count as read-only images. | |
1636 | */ | |
1637 | bool bdrv_is_writable(BlockDriverState *bs) | |
1638 | { | |
1639 | return bdrv_is_writable_after_reopen(bs, NULL); | |
1640 | } | |
1641 | ||
ffd1a5a2 | 1642 | static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, |
e0995dc3 KW |
1643 | BdrvChild *c, const BdrvChildRole *role, |
1644 | BlockReopenQueue *reopen_queue, | |
ffd1a5a2 FZ |
1645 | uint64_t parent_perm, uint64_t parent_shared, |
1646 | uint64_t *nperm, uint64_t *nshared) | |
1647 | { | |
1648 | if (bs->drv && bs->drv->bdrv_child_perm) { | |
e0995dc3 | 1649 | bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, |
ffd1a5a2 FZ |
1650 | parent_perm, parent_shared, |
1651 | nperm, nshared); | |
1652 | } | |
e0995dc3 | 1653 | /* TODO Take force_share from reopen_queue */ |
ffd1a5a2 FZ |
1654 | if (child_bs && child_bs->force_share) { |
1655 | *nshared = BLK_PERM_ALL; | |
1656 | } | |
1657 | } | |
1658 | ||
33a610c3 KW |
1659 | /* |
1660 | * Check whether permissions on this node can be changed in a way that | |
1661 | * @cumulative_perms and @cumulative_shared_perms are the new cumulative | |
1662 | * permissions of all its parents. This involves checking whether all necessary | |
1663 | * permission changes to child nodes can be performed. | |
1664 | * | |
1665 | * A call to this function must always be followed by a call to bdrv_set_perm() | |
1666 | * or bdrv_abort_perm_update(). | |
1667 | */ | |
3121fb45 KW |
1668 | static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q, |
1669 | uint64_t cumulative_perms, | |
46181129 KW |
1670 | uint64_t cumulative_shared_perms, |
1671 | GSList *ignore_children, Error **errp) | |
33a610c3 KW |
1672 | { |
1673 | BlockDriver *drv = bs->drv; | |
1674 | BdrvChild *c; | |
1675 | int ret; | |
1676 | ||
1677 | /* Write permissions never work with read-only images */ | |
1678 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && | |
cc022140 | 1679 | !bdrv_is_writable_after_reopen(bs, q)) |
33a610c3 KW |
1680 | { |
1681 | error_setg(errp, "Block node is read-only"); | |
1682 | return -EPERM; | |
1683 | } | |
1684 | ||
1685 | /* Check this node */ | |
1686 | if (!drv) { | |
1687 | return 0; | |
1688 | } | |
1689 | ||
1690 | if (drv->bdrv_check_perm) { | |
1691 | return drv->bdrv_check_perm(bs, cumulative_perms, | |
1692 | cumulative_shared_perms, errp); | |
1693 | } | |
1694 | ||
78e421c9 | 1695 | /* Drivers that never have children can omit .bdrv_child_perm() */ |
33a610c3 | 1696 | if (!drv->bdrv_child_perm) { |
78e421c9 | 1697 | assert(QLIST_EMPTY(&bs->children)); |
33a610c3 KW |
1698 | return 0; |
1699 | } | |
1700 | ||
1701 | /* Check all children */ | |
1702 | QLIST_FOREACH(c, &bs->children, next) { | |
1703 | uint64_t cur_perm, cur_shared; | |
3121fb45 | 1704 | bdrv_child_perm(bs, c->bs, c, c->role, q, |
ffd1a5a2 FZ |
1705 | cumulative_perms, cumulative_shared_perms, |
1706 | &cur_perm, &cur_shared); | |
3121fb45 KW |
1707 | ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared, |
1708 | ignore_children, errp); | |
33a610c3 KW |
1709 | if (ret < 0) { |
1710 | return ret; | |
1711 | } | |
1712 | } | |
1713 | ||
1714 | return 0; | |
1715 | } | |
1716 | ||
1717 | /* | |
1718 | * Notifies drivers that after a previous bdrv_check_perm() call, the | |
1719 | * permission update is not performed and any preparations made for it (e.g. | |
1720 | * taken file locks) need to be undone. | |
1721 | * | |
1722 | * This function recursively notifies all child nodes. | |
1723 | */ | |
1724 | static void bdrv_abort_perm_update(BlockDriverState *bs) | |
1725 | { | |
1726 | BlockDriver *drv = bs->drv; | |
1727 | BdrvChild *c; | |
1728 | ||
1729 | if (!drv) { | |
1730 | return; | |
1731 | } | |
1732 | ||
1733 | if (drv->bdrv_abort_perm_update) { | |
1734 | drv->bdrv_abort_perm_update(bs); | |
1735 | } | |
1736 | ||
1737 | QLIST_FOREACH(c, &bs->children, next) { | |
1738 | bdrv_child_abort_perm_update(c); | |
1739 | } | |
1740 | } | |
1741 | ||
1742 | static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms, | |
1743 | uint64_t cumulative_shared_perms) | |
1744 | { | |
1745 | BlockDriver *drv = bs->drv; | |
1746 | BdrvChild *c; | |
1747 | ||
1748 | if (!drv) { | |
1749 | return; | |
1750 | } | |
1751 | ||
1752 | /* Update this node */ | |
1753 | if (drv->bdrv_set_perm) { | |
1754 | drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); | |
1755 | } | |
1756 | ||
78e421c9 | 1757 | /* Drivers that never have children can omit .bdrv_child_perm() */ |
33a610c3 | 1758 | if (!drv->bdrv_child_perm) { |
78e421c9 | 1759 | assert(QLIST_EMPTY(&bs->children)); |
33a610c3 KW |
1760 | return; |
1761 | } | |
1762 | ||
1763 | /* Update all children */ | |
1764 | QLIST_FOREACH(c, &bs->children, next) { | |
1765 | uint64_t cur_perm, cur_shared; | |
e0995dc3 | 1766 | bdrv_child_perm(bs, c->bs, c, c->role, NULL, |
ffd1a5a2 FZ |
1767 | cumulative_perms, cumulative_shared_perms, |
1768 | &cur_perm, &cur_shared); | |
33a610c3 KW |
1769 | bdrv_child_set_perm(c, cur_perm, cur_shared); |
1770 | } | |
1771 | } | |
1772 | ||
1773 | static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, | |
1774 | uint64_t *shared_perm) | |
1775 | { | |
1776 | BdrvChild *c; | |
1777 | uint64_t cumulative_perms = 0; | |
1778 | uint64_t cumulative_shared_perms = BLK_PERM_ALL; | |
1779 | ||
1780 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
1781 | cumulative_perms |= c->perm; | |
1782 | cumulative_shared_perms &= c->shared_perm; | |
1783 | } | |
1784 | ||
1785 | *perm = cumulative_perms; | |
1786 | *shared_perm = cumulative_shared_perms; | |
1787 | } | |
1788 | ||
d083319f KW |
1789 | static char *bdrv_child_user_desc(BdrvChild *c) |
1790 | { | |
1791 | if (c->role->get_parent_desc) { | |
1792 | return c->role->get_parent_desc(c); | |
1793 | } | |
1794 | ||
1795 | return g_strdup("another user"); | |
1796 | } | |
1797 | ||
5176196c | 1798 | char *bdrv_perm_names(uint64_t perm) |
d083319f KW |
1799 | { |
1800 | struct perm_name { | |
1801 | uint64_t perm; | |
1802 | const char *name; | |
1803 | } permissions[] = { | |
1804 | { BLK_PERM_CONSISTENT_READ, "consistent read" }, | |
1805 | { BLK_PERM_WRITE, "write" }, | |
1806 | { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, | |
1807 | { BLK_PERM_RESIZE, "resize" }, | |
1808 | { BLK_PERM_GRAPH_MOD, "change children" }, | |
1809 | { 0, NULL } | |
1810 | }; | |
1811 | ||
1812 | char *result = g_strdup(""); | |
1813 | struct perm_name *p; | |
1814 | ||
1815 | for (p = permissions; p->name; p++) { | |
1816 | if (perm & p->perm) { | |
1817 | char *old = result; | |
1818 | result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name); | |
1819 | g_free(old); | |
1820 | } | |
1821 | } | |
1822 | ||
1823 | return result; | |
1824 | } | |
1825 | ||
33a610c3 KW |
1826 | /* |
1827 | * Checks whether a new reference to @bs can be added if the new user requires | |
46181129 KW |
1828 | * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is |
1829 | * set, the BdrvChild objects in this list are ignored in the calculations; | |
1830 | * this allows checking permission updates for an existing reference. | |
33a610c3 KW |
1831 | * |
1832 | * Needs to be followed by a call to either bdrv_set_perm() or | |
1833 | * bdrv_abort_perm_update(). */ | |
3121fb45 KW |
1834 | static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q, |
1835 | uint64_t new_used_perm, | |
d5e6f437 | 1836 | uint64_t new_shared_perm, |
46181129 | 1837 | GSList *ignore_children, Error **errp) |
d5e6f437 KW |
1838 | { |
1839 | BdrvChild *c; | |
33a610c3 KW |
1840 | uint64_t cumulative_perms = new_used_perm; |
1841 | uint64_t cumulative_shared_perms = new_shared_perm; | |
d5e6f437 KW |
1842 | |
1843 | /* There is no reason why anyone couldn't tolerate write_unchanged */ | |
1844 | assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED); | |
1845 | ||
1846 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
46181129 | 1847 | if (g_slist_find(ignore_children, c)) { |
d5e6f437 KW |
1848 | continue; |
1849 | } | |
1850 | ||
d083319f KW |
1851 | if ((new_used_perm & c->shared_perm) != new_used_perm) { |
1852 | char *user = bdrv_child_user_desc(c); | |
1853 | char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm); | |
1854 | error_setg(errp, "Conflicts with use by %s as '%s', which does not " | |
1855 | "allow '%s' on %s", | |
1856 | user, c->name, perm_names, bdrv_get_node_name(c->bs)); | |
1857 | g_free(user); | |
1858 | g_free(perm_names); | |
1859 | return -EPERM; | |
1860 | } | |
1861 | ||
1862 | if ((c->perm & new_shared_perm) != c->perm) { | |
1863 | char *user = bdrv_child_user_desc(c); | |
1864 | char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm); | |
1865 | error_setg(errp, "Conflicts with use by %s as '%s', which uses " | |
1866 | "'%s' on %s", | |
1867 | user, c->name, perm_names, bdrv_get_node_name(c->bs)); | |
1868 | g_free(user); | |
1869 | g_free(perm_names); | |
d5e6f437 KW |
1870 | return -EPERM; |
1871 | } | |
33a610c3 KW |
1872 | |
1873 | cumulative_perms |= c->perm; | |
1874 | cumulative_shared_perms &= c->shared_perm; | |
d5e6f437 KW |
1875 | } |
1876 | ||
3121fb45 | 1877 | return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms, |
46181129 | 1878 | ignore_children, errp); |
33a610c3 KW |
1879 | } |
1880 | ||
1881 | /* Needs to be followed by a call to either bdrv_child_set_perm() or | |
1882 | * bdrv_child_abort_perm_update(). */ | |
3121fb45 KW |
1883 | static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q, |
1884 | uint64_t perm, uint64_t shared, | |
c1cef672 | 1885 | GSList *ignore_children, Error **errp) |
33a610c3 | 1886 | { |
46181129 KW |
1887 | int ret; |
1888 | ||
1889 | ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c); | |
3121fb45 | 1890 | ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp); |
46181129 KW |
1891 | g_slist_free(ignore_children); |
1892 | ||
1893 | return ret; | |
33a610c3 KW |
1894 | } |
1895 | ||
c1cef672 | 1896 | static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared) |
33a610c3 KW |
1897 | { |
1898 | uint64_t cumulative_perms, cumulative_shared_perms; | |
1899 | ||
1900 | c->perm = perm; | |
1901 | c->shared_perm = shared; | |
1902 | ||
1903 | bdrv_get_cumulative_perm(c->bs, &cumulative_perms, | |
1904 | &cumulative_shared_perms); | |
1905 | bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms); | |
1906 | } | |
1907 | ||
c1cef672 | 1908 | static void bdrv_child_abort_perm_update(BdrvChild *c) |
33a610c3 KW |
1909 | { |
1910 | bdrv_abort_perm_update(c->bs); | |
1911 | } | |
1912 | ||
1913 | int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, | |
1914 | Error **errp) | |
1915 | { | |
1916 | int ret; | |
1917 | ||
3121fb45 | 1918 | ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp); |
33a610c3 KW |
1919 | if (ret < 0) { |
1920 | bdrv_child_abort_perm_update(c); | |
1921 | return ret; | |
1922 | } | |
1923 | ||
1924 | bdrv_child_set_perm(c, perm, shared); | |
1925 | ||
d5e6f437 KW |
1926 | return 0; |
1927 | } | |
1928 | ||
6a1b9ee1 KW |
1929 | #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \ |
1930 | | BLK_PERM_WRITE \ | |
1931 | | BLK_PERM_WRITE_UNCHANGED \ | |
1932 | | BLK_PERM_RESIZE) | |
1933 | #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH) | |
1934 | ||
1935 | void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, | |
1936 | const BdrvChildRole *role, | |
e0995dc3 | 1937 | BlockReopenQueue *reopen_queue, |
6a1b9ee1 KW |
1938 | uint64_t perm, uint64_t shared, |
1939 | uint64_t *nperm, uint64_t *nshared) | |
1940 | { | |
1941 | if (c == NULL) { | |
1942 | *nperm = perm & DEFAULT_PERM_PASSTHROUGH; | |
1943 | *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; | |
1944 | return; | |
1945 | } | |
1946 | ||
1947 | *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) | | |
1948 | (c->perm & DEFAULT_PERM_UNCHANGED); | |
1949 | *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | | |
1950 | (c->shared_perm & DEFAULT_PERM_UNCHANGED); | |
1951 | } | |
1952 | ||
6b1a044a KW |
1953 | void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c, |
1954 | const BdrvChildRole *role, | |
e0995dc3 | 1955 | BlockReopenQueue *reopen_queue, |
6b1a044a KW |
1956 | uint64_t perm, uint64_t shared, |
1957 | uint64_t *nperm, uint64_t *nshared) | |
1958 | { | |
1959 | bool backing = (role == &child_backing); | |
1960 | assert(role == &child_backing || role == &child_file); | |
1961 | ||
1962 | if (!backing) { | |
5fbfabd3 KW |
1963 | int flags = bdrv_reopen_get_flags(reopen_queue, bs); |
1964 | ||
6b1a044a KW |
1965 | /* Apart from the modifications below, the same permissions are |
1966 | * forwarded and left alone as for filters */ | |
e0995dc3 KW |
1967 | bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared, |
1968 | &perm, &shared); | |
6b1a044a KW |
1969 | |
1970 | /* Format drivers may touch metadata even if the guest doesn't write */ | |
cc022140 | 1971 | if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { |
6b1a044a KW |
1972 | perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
1973 | } | |
1974 | ||
1975 | /* bs->file always needs to be consistent because of the metadata. We | |
1976 | * can never allow other users to resize or write to it. */ | |
5fbfabd3 KW |
1977 | if (!(flags & BDRV_O_NO_IO)) { |
1978 | perm |= BLK_PERM_CONSISTENT_READ; | |
1979 | } | |
6b1a044a KW |
1980 | shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); |
1981 | } else { | |
1982 | /* We want consistent read from backing files if the parent needs it. | |
1983 | * No other operations are performed on backing files. */ | |
1984 | perm &= BLK_PERM_CONSISTENT_READ; | |
1985 | ||
1986 | /* If the parent can deal with changing data, we're okay with a | |
1987 | * writable and resizable backing file. */ | |
1988 | /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */ | |
1989 | if (shared & BLK_PERM_WRITE) { | |
1990 | shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; | |
1991 | } else { | |
1992 | shared = 0; | |
1993 | } | |
1994 | ||
1995 | shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD | | |
1996 | BLK_PERM_WRITE_UNCHANGED; | |
1997 | } | |
1998 | ||
9c5e6594 KW |
1999 | if (bs->open_flags & BDRV_O_INACTIVE) { |
2000 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; | |
2001 | } | |
2002 | ||
6b1a044a KW |
2003 | *nperm = perm; |
2004 | *nshared = shared; | |
2005 | } | |
2006 | ||
8ee03995 KW |
2007 | static void bdrv_replace_child_noperm(BdrvChild *child, |
2008 | BlockDriverState *new_bs) | |
e9740bc6 KW |
2009 | { |
2010 | BlockDriverState *old_bs = child->bs; | |
0152bf40 | 2011 | int i; |
e9740bc6 | 2012 | |
bb2614e9 FZ |
2013 | if (old_bs && new_bs) { |
2014 | assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); | |
2015 | } | |
e9740bc6 | 2016 | if (old_bs) { |
d736f119 KW |
2017 | /* Detach first so that the recursive drain sections coming from @child |
2018 | * are already gone and we only end the drain sections that came from | |
2019 | * elsewhere. */ | |
2020 | if (child->role->detach) { | |
2021 | child->role->detach(child); | |
2022 | } | |
36fe1331 | 2023 | if (old_bs->quiesce_counter && child->role->drained_end) { |
0152bf40 KW |
2024 | for (i = 0; i < old_bs->quiesce_counter; i++) { |
2025 | child->role->drained_end(child); | |
2026 | } | |
36fe1331 | 2027 | } |
e9740bc6 KW |
2028 | QLIST_REMOVE(child, next_parent); |
2029 | } | |
36fe1331 KW |
2030 | |
2031 | child->bs = new_bs; | |
2032 | ||
e9740bc6 KW |
2033 | if (new_bs) { |
2034 | QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); | |
36fe1331 | 2035 | if (new_bs->quiesce_counter && child->role->drained_begin) { |
0152bf40 KW |
2036 | for (i = 0; i < new_bs->quiesce_counter; i++) { |
2037 | child->role->drained_begin(child); | |
2038 | } | |
36fe1331 | 2039 | } |
33a610c3 | 2040 | |
d736f119 KW |
2041 | /* Attach only after starting new drained sections, so that recursive |
2042 | * drain sections coming from @child don't get an extra .drained_begin | |
2043 | * callback. */ | |
8ee03995 KW |
2044 | if (child->role->attach) { |
2045 | child->role->attach(child); | |
2046 | } | |
2047 | } | |
2048 | } | |
33a610c3 | 2049 | |
466787fb KW |
2050 | /* |
2051 | * Updates @child to change its reference to point to @new_bs, including | |
2052 | * checking and applying the necessary permisson updates both to the old node | |
2053 | * and to @new_bs. | |
2054 | * | |
2055 | * NULL is passed as @new_bs for removing the reference before freeing @child. | |
2056 | * | |
2057 | * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this | |
2058 | * function uses bdrv_set_perm() to update the permissions according to the new | |
2059 | * reference that @new_bs gets. | |
2060 | */ | |
2061 | static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs) | |
8ee03995 KW |
2062 | { |
2063 | BlockDriverState *old_bs = child->bs; | |
2064 | uint64_t perm, shared_perm; | |
2065 | ||
8aecf1d1 KW |
2066 | bdrv_replace_child_noperm(child, new_bs); |
2067 | ||
8ee03995 | 2068 | if (old_bs) { |
33a610c3 KW |
2069 | /* Update permissions for old node. This is guaranteed to succeed |
2070 | * because we're just taking a parent away, so we're loosening | |
2071 | * restrictions. */ | |
2072 | bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm); | |
3121fb45 | 2073 | bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort); |
33a610c3 | 2074 | bdrv_set_perm(old_bs, perm, shared_perm); |
e9740bc6 | 2075 | } |
36fe1331 | 2076 | |
e9740bc6 | 2077 | if (new_bs) { |
33a610c3 | 2078 | bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm); |
33a610c3 | 2079 | bdrv_set_perm(new_bs, perm, shared_perm); |
e9740bc6 | 2080 | } |
e9740bc6 KW |
2081 | } |
2082 | ||
f21d96d0 KW |
2083 | BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, |
2084 | const char *child_name, | |
36fe1331 | 2085 | const BdrvChildRole *child_role, |
d5e6f437 KW |
2086 | uint64_t perm, uint64_t shared_perm, |
2087 | void *opaque, Error **errp) | |
df581792 | 2088 | { |
d5e6f437 KW |
2089 | BdrvChild *child; |
2090 | int ret; | |
2091 | ||
3121fb45 | 2092 | ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp); |
d5e6f437 | 2093 | if (ret < 0) { |
33a610c3 | 2094 | bdrv_abort_perm_update(child_bs); |
d5e6f437 KW |
2095 | return NULL; |
2096 | } | |
2097 | ||
2098 | child = g_new(BdrvChild, 1); | |
df581792 | 2099 | *child = (BdrvChild) { |
d5e6f437 KW |
2100 | .bs = NULL, |
2101 | .name = g_strdup(child_name), | |
2102 | .role = child_role, | |
2103 | .perm = perm, | |
2104 | .shared_perm = shared_perm, | |
2105 | .opaque = opaque, | |
df581792 KW |
2106 | }; |
2107 | ||
33a610c3 | 2108 | /* This performs the matching bdrv_set_perm() for the above check. */ |
466787fb | 2109 | bdrv_replace_child(child, child_bs); |
b4b059f6 KW |
2110 | |
2111 | return child; | |
df581792 KW |
2112 | } |
2113 | ||
98292c61 WC |
2114 | BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, |
2115 | BlockDriverState *child_bs, | |
2116 | const char *child_name, | |
8b2ff529 KW |
2117 | const BdrvChildRole *child_role, |
2118 | Error **errp) | |
f21d96d0 | 2119 | { |
d5e6f437 | 2120 | BdrvChild *child; |
f68c598b KW |
2121 | uint64_t perm, shared_perm; |
2122 | ||
2123 | bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); | |
2124 | ||
2125 | assert(parent_bs->drv); | |
bb2614e9 | 2126 | assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs)); |
e0995dc3 | 2127 | bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, |
ffd1a5a2 | 2128 | perm, shared_perm, &perm, &shared_perm); |
d5e6f437 | 2129 | |
d5e6f437 | 2130 | child = bdrv_root_attach_child(child_bs, child_name, child_role, |
f68c598b | 2131 | perm, shared_perm, parent_bs, errp); |
d5e6f437 KW |
2132 | if (child == NULL) { |
2133 | return NULL; | |
2134 | } | |
2135 | ||
f21d96d0 KW |
2136 | QLIST_INSERT_HEAD(&parent_bs->children, child, next); |
2137 | return child; | |
2138 | } | |
2139 | ||
3f09bfbc | 2140 | static void bdrv_detach_child(BdrvChild *child) |
33a60407 | 2141 | { |
f21d96d0 KW |
2142 | if (child->next.le_prev) { |
2143 | QLIST_REMOVE(child, next); | |
2144 | child->next.le_prev = NULL; | |
2145 | } | |
e9740bc6 | 2146 | |
466787fb | 2147 | bdrv_replace_child(child, NULL); |
e9740bc6 | 2148 | |
260fecf1 | 2149 | g_free(child->name); |
33a60407 KW |
2150 | g_free(child); |
2151 | } | |
2152 | ||
f21d96d0 | 2153 | void bdrv_root_unref_child(BdrvChild *child) |
33a60407 | 2154 | { |
779020cb KW |
2155 | BlockDriverState *child_bs; |
2156 | ||
f21d96d0 KW |
2157 | child_bs = child->bs; |
2158 | bdrv_detach_child(child); | |
2159 | bdrv_unref(child_bs); | |
2160 | } | |
2161 | ||
2162 | void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) | |
2163 | { | |
779020cb KW |
2164 | if (child == NULL) { |
2165 | return; | |
2166 | } | |
33a60407 KW |
2167 | |
2168 | if (child->bs->inherits_from == parent) { | |
4e4bf5c4 KW |
2169 | BdrvChild *c; |
2170 | ||
2171 | /* Remove inherits_from only when the last reference between parent and | |
2172 | * child->bs goes away. */ | |
2173 | QLIST_FOREACH(c, &parent->children, next) { | |
2174 | if (c != child && c->bs == child->bs) { | |
2175 | break; | |
2176 | } | |
2177 | } | |
2178 | if (c == NULL) { | |
2179 | child->bs->inherits_from = NULL; | |
2180 | } | |
33a60407 KW |
2181 | } |
2182 | ||
f21d96d0 | 2183 | bdrv_root_unref_child(child); |
33a60407 KW |
2184 | } |
2185 | ||
5c8cab48 KW |
2186 | |
2187 | static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) | |
2188 | { | |
2189 | BdrvChild *c; | |
2190 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
2191 | if (c->role->change_media) { | |
2192 | c->role->change_media(c, load); | |
2193 | } | |
2194 | } | |
2195 | } | |
2196 | ||
2197 | static void bdrv_parent_cb_resize(BlockDriverState *bs) | |
2198 | { | |
2199 | BdrvChild *c; | |
2200 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
2201 | if (c->role->resize) { | |
2202 | c->role->resize(c); | |
2203 | } | |
2204 | } | |
2205 | } | |
2206 | ||
5db15a57 KW |
2207 | /* |
2208 | * Sets the backing file link of a BDS. A new reference is created; callers | |
2209 | * which don't need their own reference any more must call bdrv_unref(). | |
2210 | */ | |
12fa4af6 KW |
2211 | void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, |
2212 | Error **errp) | |
8d24cce1 | 2213 | { |
5db15a57 KW |
2214 | if (backing_hd) { |
2215 | bdrv_ref(backing_hd); | |
2216 | } | |
8d24cce1 | 2217 | |
760e0063 | 2218 | if (bs->backing) { |
5db15a57 | 2219 | bdrv_unref_child(bs, bs->backing); |
826b6ca0 FZ |
2220 | } |
2221 | ||
8d24cce1 | 2222 | if (!backing_hd) { |
760e0063 | 2223 | bs->backing = NULL; |
8d24cce1 FZ |
2224 | goto out; |
2225 | } | |
12fa4af6 | 2226 | |
8b2ff529 | 2227 | bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing, |
12fa4af6 KW |
2228 | errp); |
2229 | if (!bs->backing) { | |
2230 | bdrv_unref(backing_hd); | |
2231 | } | |
826b6ca0 | 2232 | |
9e7e940c KW |
2233 | bdrv_refresh_filename(bs); |
2234 | ||
8d24cce1 | 2235 | out: |
3baca891 | 2236 | bdrv_refresh_limits(bs, NULL); |
8d24cce1 FZ |
2237 | } |
2238 | ||
31ca6d07 KW |
2239 | /* |
2240 | * Opens the backing file for a BlockDriverState if not yet open | |
2241 | * | |
d9b7b057 KW |
2242 | * bdref_key specifies the key for the image's BlockdevRef in the options QDict. |
2243 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict | |
2244 | * itself, all options starting with "${bdref_key}." are considered part of the | |
2245 | * BlockdevRef. | |
2246 | * | |
2247 | * TODO Can this be unified with bdrv_open_image()? | |
31ca6d07 | 2248 | */ |
d9b7b057 KW |
2249 | int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, |
2250 | const char *bdref_key, Error **errp) | |
9156df12 | 2251 | { |
1ba4b6a5 | 2252 | char *backing_filename = g_malloc0(PATH_MAX); |
d9b7b057 KW |
2253 | char *bdref_key_dot; |
2254 | const char *reference = NULL; | |
317fc44e | 2255 | int ret = 0; |
8d24cce1 | 2256 | BlockDriverState *backing_hd; |
d9b7b057 KW |
2257 | QDict *options; |
2258 | QDict *tmp_parent_options = NULL; | |
34b5d2c6 | 2259 | Error *local_err = NULL; |
9156df12 | 2260 | |
760e0063 | 2261 | if (bs->backing != NULL) { |
1ba4b6a5 | 2262 | goto free_exit; |
9156df12 PB |
2263 | } |
2264 | ||
31ca6d07 | 2265 | /* NULL means an empty set of options */ |
d9b7b057 KW |
2266 | if (parent_options == NULL) { |
2267 | tmp_parent_options = qdict_new(); | |
2268 | parent_options = tmp_parent_options; | |
31ca6d07 KW |
2269 | } |
2270 | ||
9156df12 | 2271 | bs->open_flags &= ~BDRV_O_NO_BACKING; |
d9b7b057 KW |
2272 | |
2273 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); | |
2274 | qdict_extract_subqdict(parent_options, &options, bdref_key_dot); | |
2275 | g_free(bdref_key_dot); | |
2276 | ||
129c7d1c MA |
2277 | /* |
2278 | * Caution: while qdict_get_try_str() is fine, getting non-string | |
2279 | * types would require more care. When @parent_options come from | |
2280 | * -blockdev or blockdev_add, its members are typed according to | |
2281 | * the QAPI schema, but when they come from -drive, they're all | |
2282 | * QString. | |
2283 | */ | |
d9b7b057 KW |
2284 | reference = qdict_get_try_str(parent_options, bdref_key); |
2285 | if (reference || qdict_haskey(options, "file.filename")) { | |
1cb6f506 KW |
2286 | backing_filename[0] = '\0'; |
2287 | } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { | |
cb3e7f08 | 2288 | qobject_unref(options); |
1ba4b6a5 | 2289 | goto free_exit; |
dbecebdd | 2290 | } else { |
9f07429e HR |
2291 | bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX, |
2292 | &local_err); | |
2293 | if (local_err) { | |
2294 | ret = -EINVAL; | |
2295 | error_propagate(errp, local_err); | |
cb3e7f08 | 2296 | qobject_unref(options); |
9f07429e HR |
2297 | goto free_exit; |
2298 | } | |
9156df12 PB |
2299 | } |
2300 | ||
8ee79e70 KW |
2301 | if (!bs->drv || !bs->drv->supports_backing) { |
2302 | ret = -EINVAL; | |
2303 | error_setg(errp, "Driver doesn't support backing files"); | |
cb3e7f08 | 2304 | qobject_unref(options); |
8ee79e70 KW |
2305 | goto free_exit; |
2306 | } | |
2307 | ||
6bff597b PK |
2308 | if (!reference && |
2309 | bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { | |
46f5ac20 | 2310 | qdict_put_str(options, "driver", bs->backing_format); |
9156df12 PB |
2311 | } |
2312 | ||
5b363937 HR |
2313 | backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL, |
2314 | reference, options, 0, bs, &child_backing, | |
2315 | errp); | |
2316 | if (!backing_hd) { | |
9156df12 | 2317 | bs->open_flags |= BDRV_O_NO_BACKING; |
e43bfd9c | 2318 | error_prepend(errp, "Could not open backing file: "); |
5b363937 | 2319 | ret = -EINVAL; |
1ba4b6a5 | 2320 | goto free_exit; |
9156df12 | 2321 | } |
5ce6bfe2 | 2322 | bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs)); |
df581792 | 2323 | |
5db15a57 KW |
2324 | /* Hook up the backing file link; drop our reference, bs owns the |
2325 | * backing_hd reference now */ | |
12fa4af6 | 2326 | bdrv_set_backing_hd(bs, backing_hd, &local_err); |
5db15a57 | 2327 | bdrv_unref(backing_hd); |
12fa4af6 | 2328 | if (local_err) { |
8cd1a3e4 | 2329 | error_propagate(errp, local_err); |
12fa4af6 KW |
2330 | ret = -EINVAL; |
2331 | goto free_exit; | |
2332 | } | |
d80ac658 | 2333 | |
d9b7b057 KW |
2334 | qdict_del(parent_options, bdref_key); |
2335 | ||
1ba4b6a5 BC |
2336 | free_exit: |
2337 | g_free(backing_filename); | |
cb3e7f08 | 2338 | qobject_unref(tmp_parent_options); |
1ba4b6a5 | 2339 | return ret; |
9156df12 PB |
2340 | } |
2341 | ||
2d6b86af KW |
2342 | static BlockDriverState * |
2343 | bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, | |
2344 | BlockDriverState *parent, const BdrvChildRole *child_role, | |
2345 | bool allow_none, Error **errp) | |
da557aac | 2346 | { |
2d6b86af | 2347 | BlockDriverState *bs = NULL; |
da557aac | 2348 | QDict *image_options; |
da557aac HR |
2349 | char *bdref_key_dot; |
2350 | const char *reference; | |
2351 | ||
df581792 | 2352 | assert(child_role != NULL); |
f67503e5 | 2353 | |
da557aac HR |
2354 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
2355 | qdict_extract_subqdict(options, &image_options, bdref_key_dot); | |
2356 | g_free(bdref_key_dot); | |
2357 | ||
129c7d1c MA |
2358 | /* |
2359 | * Caution: while qdict_get_try_str() is fine, getting non-string | |
2360 | * types would require more care. When @options come from | |
2361 | * -blockdev or blockdev_add, its members are typed according to | |
2362 | * the QAPI schema, but when they come from -drive, they're all | |
2363 | * QString. | |
2364 | */ | |
da557aac HR |
2365 | reference = qdict_get_try_str(options, bdref_key); |
2366 | if (!filename && !reference && !qdict_size(image_options)) { | |
b4b059f6 | 2367 | if (!allow_none) { |
da557aac HR |
2368 | error_setg(errp, "A block device must be specified for \"%s\"", |
2369 | bdref_key); | |
da557aac | 2370 | } |
cb3e7f08 | 2371 | qobject_unref(image_options); |
da557aac HR |
2372 | goto done; |
2373 | } | |
2374 | ||
5b363937 HR |
2375 | bs = bdrv_open_inherit(filename, reference, image_options, 0, |
2376 | parent, child_role, errp); | |
2377 | if (!bs) { | |
df581792 KW |
2378 | goto done; |
2379 | } | |
2380 | ||
da557aac HR |
2381 | done: |
2382 | qdict_del(options, bdref_key); | |
2d6b86af KW |
2383 | return bs; |
2384 | } | |
2385 | ||
2386 | /* | |
2387 | * Opens a disk image whose options are given as BlockdevRef in another block | |
2388 | * device's options. | |
2389 | * | |
2390 | * If allow_none is true, no image will be opened if filename is false and no | |
2391 | * BlockdevRef is given. NULL will be returned, but errp remains unset. | |
2392 | * | |
2393 | * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. | |
2394 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict | |
2395 | * itself, all options starting with "${bdref_key}." are considered part of the | |
2396 | * BlockdevRef. | |
2397 | * | |
2398 | * The BlockdevRef will be removed from the options QDict. | |
2399 | */ | |
2400 | BdrvChild *bdrv_open_child(const char *filename, | |
2401 | QDict *options, const char *bdref_key, | |
2402 | BlockDriverState *parent, | |
2403 | const BdrvChildRole *child_role, | |
2404 | bool allow_none, Error **errp) | |
2405 | { | |
8b2ff529 | 2406 | BdrvChild *c; |
2d6b86af KW |
2407 | BlockDriverState *bs; |
2408 | ||
2409 | bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role, | |
2410 | allow_none, errp); | |
2411 | if (bs == NULL) { | |
2412 | return NULL; | |
2413 | } | |
2414 | ||
8b2ff529 KW |
2415 | c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp); |
2416 | if (!c) { | |
2417 | bdrv_unref(bs); | |
2418 | return NULL; | |
2419 | } | |
2420 | ||
2421 | return c; | |
b4b059f6 KW |
2422 | } |
2423 | ||
e1d74bc6 KW |
2424 | /* TODO Future callers may need to specify parent/child_role in order for |
2425 | * option inheritance to work. Existing callers use it for the root node. */ | |
2426 | BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) | |
2427 | { | |
2428 | BlockDriverState *bs = NULL; | |
2429 | Error *local_err = NULL; | |
2430 | QObject *obj = NULL; | |
2431 | QDict *qdict = NULL; | |
2432 | const char *reference = NULL; | |
2433 | Visitor *v = NULL; | |
2434 | ||
2435 | if (ref->type == QTYPE_QSTRING) { | |
2436 | reference = ref->u.reference; | |
2437 | } else { | |
2438 | BlockdevOptions *options = &ref->u.definition; | |
2439 | assert(ref->type == QTYPE_QDICT); | |
2440 | ||
2441 | v = qobject_output_visitor_new(&obj); | |
2442 | visit_type_BlockdevOptions(v, NULL, &options, &local_err); | |
2443 | if (local_err) { | |
2444 | error_propagate(errp, local_err); | |
2445 | goto fail; | |
2446 | } | |
2447 | visit_complete(v, &obj); | |
2448 | ||
7dc847eb | 2449 | qdict = qobject_to(QDict, obj); |
e1d74bc6 KW |
2450 | qdict_flatten(qdict); |
2451 | ||
2452 | /* bdrv_open_inherit() defaults to the values in bdrv_flags (for | |
2453 | * compatibility with other callers) rather than what we want as the | |
2454 | * real defaults. Apply the defaults here instead. */ | |
2455 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); | |
2456 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); | |
2457 | qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); | |
2458 | } | |
2459 | ||
2460 | bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp); | |
2461 | obj = NULL; | |
2462 | ||
2463 | fail: | |
cb3e7f08 | 2464 | qobject_unref(obj); |
e1d74bc6 KW |
2465 | visit_free(v); |
2466 | return bs; | |
2467 | } | |
2468 | ||
66836189 HR |
2469 | static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, |
2470 | int flags, | |
2471 | QDict *snapshot_options, | |
2472 | Error **errp) | |
b998875d KW |
2473 | { |
2474 | /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ | |
1ba4b6a5 | 2475 | char *tmp_filename = g_malloc0(PATH_MAX + 1); |
b998875d | 2476 | int64_t total_size; |
83d0521a | 2477 | QemuOpts *opts = NULL; |
ff6ed714 | 2478 | BlockDriverState *bs_snapshot = NULL; |
b2c2832c | 2479 | Error *local_err = NULL; |
b998875d KW |
2480 | int ret; |
2481 | ||
2482 | /* if snapshot, we create a temporary backing file and open it | |
2483 | instead of opening 'filename' directly */ | |
2484 | ||
2485 | /* Get the required size from the image */ | |
f187743a KW |
2486 | total_size = bdrv_getlength(bs); |
2487 | if (total_size < 0) { | |
2488 | error_setg_errno(errp, -total_size, "Could not get image size"); | |
1ba4b6a5 | 2489 | goto out; |
f187743a | 2490 | } |
b998875d KW |
2491 | |
2492 | /* Create the temporary image */ | |
1ba4b6a5 | 2493 | ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); |
b998875d KW |
2494 | if (ret < 0) { |
2495 | error_setg_errno(errp, -ret, "Could not get temporary filename"); | |
1ba4b6a5 | 2496 | goto out; |
b998875d KW |
2497 | } |
2498 | ||
ef810437 | 2499 | opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, |
c282e1fd | 2500 | &error_abort); |
39101f25 | 2501 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); |
e43bfd9c | 2502 | ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); |
83d0521a | 2503 | qemu_opts_del(opts); |
b998875d | 2504 | if (ret < 0) { |
e43bfd9c MA |
2505 | error_prepend(errp, "Could not create temporary overlay '%s': ", |
2506 | tmp_filename); | |
1ba4b6a5 | 2507 | goto out; |
b998875d KW |
2508 | } |
2509 | ||
73176bee | 2510 | /* Prepare options QDict for the temporary file */ |
46f5ac20 EB |
2511 | qdict_put_str(snapshot_options, "file.driver", "file"); |
2512 | qdict_put_str(snapshot_options, "file.filename", tmp_filename); | |
2513 | qdict_put_str(snapshot_options, "driver", "qcow2"); | |
b998875d | 2514 | |
5b363937 | 2515 | bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); |
73176bee | 2516 | snapshot_options = NULL; |
5b363937 | 2517 | if (!bs_snapshot) { |
1ba4b6a5 | 2518 | goto out; |
b998875d KW |
2519 | } |
2520 | ||
ff6ed714 EB |
2521 | /* bdrv_append() consumes a strong reference to bs_snapshot |
2522 | * (i.e. it will call bdrv_unref() on it) even on error, so in | |
2523 | * order to be able to return one, we have to increase | |
2524 | * bs_snapshot's refcount here */ | |
66836189 | 2525 | bdrv_ref(bs_snapshot); |
b2c2832c KW |
2526 | bdrv_append(bs_snapshot, bs, &local_err); |
2527 | if (local_err) { | |
2528 | error_propagate(errp, local_err); | |
ff6ed714 | 2529 | bs_snapshot = NULL; |
b2c2832c KW |
2530 | goto out; |
2531 | } | |
1ba4b6a5 BC |
2532 | |
2533 | out: | |
cb3e7f08 | 2534 | qobject_unref(snapshot_options); |
1ba4b6a5 | 2535 | g_free(tmp_filename); |
ff6ed714 | 2536 | return bs_snapshot; |
b998875d KW |
2537 | } |
2538 | ||
b6ce07aa KW |
2539 | /* |
2540 | * Opens a disk image (raw, qcow2, vmdk, ...) | |
de9c0cec KW |
2541 | * |
2542 | * options is a QDict of options to pass to the block drivers, or NULL for an | |
2543 | * empty set of options. The reference to the QDict belongs to the block layer | |
2544 | * after the call (even on failure), so if the caller intends to reuse the | |
cb3e7f08 | 2545 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
f67503e5 HR |
2546 | * |
2547 | * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. | |
2548 | * If it is not NULL, the referenced BDS will be reused. | |
ddf5636d HR |
2549 | * |
2550 | * The reference parameter may be used to specify an existing block device which | |
2551 | * should be opened. If specified, neither options nor a filename may be given, | |
2552 | * nor can an existing BDS be reused (that is, *pbs has to be NULL). | |
b6ce07aa | 2553 | */ |
5b363937 HR |
2554 | static BlockDriverState *bdrv_open_inherit(const char *filename, |
2555 | const char *reference, | |
2556 | QDict *options, int flags, | |
2557 | BlockDriverState *parent, | |
2558 | const BdrvChildRole *child_role, | |
2559 | Error **errp) | |
ea2384d3 | 2560 | { |
b6ce07aa | 2561 | int ret; |
5696c6e3 | 2562 | BlockBackend *file = NULL; |
9a4f4c31 | 2563 | BlockDriverState *bs; |
ce343771 | 2564 | BlockDriver *drv = NULL; |
74fe54f2 | 2565 | const char *drvname; |
3e8c2e57 | 2566 | const char *backing; |
34b5d2c6 | 2567 | Error *local_err = NULL; |
73176bee | 2568 | QDict *snapshot_options = NULL; |
b1e6fc08 | 2569 | int snapshot_flags = 0; |
712e7874 | 2570 | |
f3930ed0 KW |
2571 | assert(!child_role || !flags); |
2572 | assert(!child_role == !parent); | |
f67503e5 | 2573 | |
ddf5636d HR |
2574 | if (reference) { |
2575 | bool options_non_empty = options ? qdict_size(options) : false; | |
cb3e7f08 | 2576 | qobject_unref(options); |
ddf5636d | 2577 | |
ddf5636d HR |
2578 | if (filename || options_non_empty) { |
2579 | error_setg(errp, "Cannot reference an existing block device with " | |
2580 | "additional options or a new filename"); | |
5b363937 | 2581 | return NULL; |
ddf5636d HR |
2582 | } |
2583 | ||
2584 | bs = bdrv_lookup_bs(reference, reference, errp); | |
2585 | if (!bs) { | |
5b363937 | 2586 | return NULL; |
ddf5636d | 2587 | } |
76b22320 | 2588 | |
ddf5636d | 2589 | bdrv_ref(bs); |
5b363937 | 2590 | return bs; |
ddf5636d HR |
2591 | } |
2592 | ||
5b363937 | 2593 | bs = bdrv_new(); |
f67503e5 | 2594 | |
de9c0cec KW |
2595 | /* NULL means an empty set of options */ |
2596 | if (options == NULL) { | |
2597 | options = qdict_new(); | |
2598 | } | |
2599 | ||
145f598e | 2600 | /* json: syntax counts as explicit options, as if in the QDict */ |
de3b53f0 KW |
2601 | parse_json_protocol(options, &filename, &local_err); |
2602 | if (local_err) { | |
de3b53f0 KW |
2603 | goto fail; |
2604 | } | |
2605 | ||
145f598e KW |
2606 | bs->explicit_options = qdict_clone_shallow(options); |
2607 | ||
f3930ed0 | 2608 | if (child_role) { |
bddcec37 | 2609 | bs->inherits_from = parent; |
8e2160e2 KW |
2610 | child_role->inherit_options(&flags, options, |
2611 | parent->open_flags, parent->options); | |
f3930ed0 KW |
2612 | } |
2613 | ||
de3b53f0 | 2614 | ret = bdrv_fill_options(&options, filename, &flags, &local_err); |
462f5bcf KW |
2615 | if (local_err) { |
2616 | goto fail; | |
2617 | } | |
2618 | ||
129c7d1c MA |
2619 | /* |
2620 | * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. | |
2621 | * Caution: getting a boolean member of @options requires care. | |
2622 | * When @options come from -blockdev or blockdev_add, members are | |
2623 | * typed according to the QAPI schema, but when they come from | |
2624 | * -drive, they're all QString. | |
2625 | */ | |
f87a0e29 AG |
2626 | if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && |
2627 | !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { | |
2628 | flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); | |
2629 | } else { | |
2630 | flags &= ~BDRV_O_RDWR; | |
14499ea5 AG |
2631 | } |
2632 | ||
2633 | if (flags & BDRV_O_SNAPSHOT) { | |
2634 | snapshot_options = qdict_new(); | |
2635 | bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, | |
2636 | flags, options); | |
f87a0e29 AG |
2637 | /* Let bdrv_backing_options() override "read-only" */ |
2638 | qdict_del(options, BDRV_OPT_READ_ONLY); | |
14499ea5 AG |
2639 | bdrv_backing_options(&flags, options, flags, options); |
2640 | } | |
2641 | ||
62392ebb KW |
2642 | bs->open_flags = flags; |
2643 | bs->options = options; | |
2644 | options = qdict_clone_shallow(options); | |
2645 | ||
76c591b0 | 2646 | /* Find the right image format driver */ |
129c7d1c | 2647 | /* See cautionary note on accessing @options above */ |
76c591b0 KW |
2648 | drvname = qdict_get_try_str(options, "driver"); |
2649 | if (drvname) { | |
2650 | drv = bdrv_find_format(drvname); | |
76c591b0 KW |
2651 | if (!drv) { |
2652 | error_setg(errp, "Unknown driver: '%s'", drvname); | |
76c591b0 KW |
2653 | goto fail; |
2654 | } | |
2655 | } | |
2656 | ||
2657 | assert(drvname || !(flags & BDRV_O_PROTOCOL)); | |
76c591b0 | 2658 | |
129c7d1c | 2659 | /* See cautionary note on accessing @options above */ |
3e8c2e57 | 2660 | backing = qdict_get_try_str(options, "backing"); |
e59a0cf1 HR |
2661 | if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || |
2662 | (backing && *backing == '\0')) | |
2663 | { | |
4f7be280 HR |
2664 | if (backing) { |
2665 | warn_report("Use of \"backing\": \"\" is deprecated; " | |
2666 | "use \"backing\": null instead"); | |
2667 | } | |
3e8c2e57 AG |
2668 | flags |= BDRV_O_NO_BACKING; |
2669 | qdict_del(options, "backing"); | |
2670 | } | |
2671 | ||
5696c6e3 | 2672 | /* Open image file without format layer. This BlockBackend is only used for |
4e4bf5c4 KW |
2673 | * probing, the block drivers will do their own bdrv_open_child() for the |
2674 | * same BDS, which is why we put the node name back into options. */ | |
f4788adc | 2675 | if ((flags & BDRV_O_PROTOCOL) == 0) { |
5696c6e3 KW |
2676 | BlockDriverState *file_bs; |
2677 | ||
2678 | file_bs = bdrv_open_child_bs(filename, options, "file", bs, | |
2679 | &child_file, true, &local_err); | |
1fdd6933 | 2680 | if (local_err) { |
f4788adc KW |
2681 | goto fail; |
2682 | } | |
5696c6e3 | 2683 | if (file_bs != NULL) { |
dacaa162 KW |
2684 | /* Not requesting BLK_PERM_CONSISTENT_READ because we're only |
2685 | * looking at the header to guess the image format. This works even | |
2686 | * in cases where a guest would not see a consistent state. */ | |
2687 | file = blk_new(0, BLK_PERM_ALL); | |
d7086422 | 2688 | blk_insert_bs(file, file_bs, &local_err); |
5696c6e3 | 2689 | bdrv_unref(file_bs); |
d7086422 KW |
2690 | if (local_err) { |
2691 | goto fail; | |
2692 | } | |
5696c6e3 | 2693 | |
46f5ac20 | 2694 | qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); |
4e4bf5c4 | 2695 | } |
f500a6d3 KW |
2696 | } |
2697 | ||
76c591b0 | 2698 | /* Image format probing */ |
38f3ef57 | 2699 | bs->probed = !drv; |
76c591b0 | 2700 | if (!drv && file) { |
cf2ab8fc | 2701 | ret = find_image_format(file, filename, &drv, &local_err); |
17b005f1 | 2702 | if (ret < 0) { |
8bfea15d | 2703 | goto fail; |
2a05cbe4 | 2704 | } |
62392ebb KW |
2705 | /* |
2706 | * This option update would logically belong in bdrv_fill_options(), | |
2707 | * but we first need to open bs->file for the probing to work, while | |
2708 | * opening bs->file already requires the (mostly) final set of options | |
2709 | * so that cache mode etc. can be inherited. | |
2710 | * | |
2711 | * Adding the driver later is somewhat ugly, but it's not an option | |
2712 | * that would ever be inherited, so it's correct. We just need to make | |
2713 | * sure to update both bs->options (which has the full effective | |
2714 | * options for bs) and options (which has file.* already removed). | |
2715 | */ | |
46f5ac20 EB |
2716 | qdict_put_str(bs->options, "driver", drv->format_name); |
2717 | qdict_put_str(options, "driver", drv->format_name); | |
76c591b0 | 2718 | } else if (!drv) { |
17b005f1 | 2719 | error_setg(errp, "Must specify either driver or file"); |
8bfea15d | 2720 | goto fail; |
ea2384d3 | 2721 | } |
b6ce07aa | 2722 | |
53a29513 HR |
2723 | /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ |
2724 | assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); | |
2725 | /* file must be NULL if a protocol BDS is about to be created | |
2726 | * (the inverse results in an error message from bdrv_open_common()) */ | |
2727 | assert(!(flags & BDRV_O_PROTOCOL) || !file); | |
2728 | ||
b6ce07aa | 2729 | /* Open the image */ |
82dc8b41 | 2730 | ret = bdrv_open_common(bs, file, options, &local_err); |
b6ce07aa | 2731 | if (ret < 0) { |
8bfea15d | 2732 | goto fail; |
6987307c CH |
2733 | } |
2734 | ||
4e4bf5c4 | 2735 | if (file) { |
5696c6e3 | 2736 | blk_unref(file); |
f500a6d3 KW |
2737 | file = NULL; |
2738 | } | |
2739 | ||
b6ce07aa | 2740 | /* If there is a backing file, use it */ |
9156df12 | 2741 | if ((flags & BDRV_O_NO_BACKING) == 0) { |
d9b7b057 | 2742 | ret = bdrv_open_backing_file(bs, options, "backing", &local_err); |
b6ce07aa | 2743 | if (ret < 0) { |
b6ad491a | 2744 | goto close_and_fail; |
b6ce07aa | 2745 | } |
b6ce07aa KW |
2746 | } |
2747 | ||
91af7014 HR |
2748 | bdrv_refresh_filename(bs); |
2749 | ||
b6ad491a | 2750 | /* Check if any unknown options were used */ |
7ad2757f | 2751 | if (qdict_size(options) != 0) { |
b6ad491a | 2752 | const QDictEntry *entry = qdict_first(options); |
5acd9d81 HR |
2753 | if (flags & BDRV_O_PROTOCOL) { |
2754 | error_setg(errp, "Block protocol '%s' doesn't support the option " | |
2755 | "'%s'", drv->format_name, entry->key); | |
2756 | } else { | |
d0e46a55 HR |
2757 | error_setg(errp, |
2758 | "Block format '%s' does not support the option '%s'", | |
2759 | drv->format_name, entry->key); | |
5acd9d81 | 2760 | } |
b6ad491a | 2761 | |
b6ad491a KW |
2762 | goto close_and_fail; |
2763 | } | |
b6ad491a | 2764 | |
c01c214b | 2765 | bdrv_parent_cb_change_media(bs, true); |
b6ce07aa | 2766 | |
cb3e7f08 | 2767 | qobject_unref(options); |
dd62f1ca KW |
2768 | |
2769 | /* For snapshot=on, create a temporary qcow2 overlay. bs points to the | |
2770 | * temporary snapshot afterwards. */ | |
2771 | if (snapshot_flags) { | |
66836189 HR |
2772 | BlockDriverState *snapshot_bs; |
2773 | snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, | |
2774 | snapshot_options, &local_err); | |
73176bee | 2775 | snapshot_options = NULL; |
dd62f1ca KW |
2776 | if (local_err) { |
2777 | goto close_and_fail; | |
2778 | } | |
5b363937 HR |
2779 | /* We are not going to return bs but the overlay on top of it |
2780 | * (snapshot_bs); thus, we have to drop the strong reference to bs | |
2781 | * (which we obtained by calling bdrv_new()). bs will not be deleted, | |
2782 | * though, because the overlay still has a reference to it. */ | |
2783 | bdrv_unref(bs); | |
2784 | bs = snapshot_bs; | |
dd62f1ca KW |
2785 | } |
2786 | ||
5b363937 | 2787 | return bs; |
b6ce07aa | 2788 | |
8bfea15d | 2789 | fail: |
5696c6e3 | 2790 | blk_unref(file); |
cb3e7f08 MAL |
2791 | qobject_unref(snapshot_options); |
2792 | qobject_unref(bs->explicit_options); | |
2793 | qobject_unref(bs->options); | |
2794 | qobject_unref(options); | |
de9c0cec | 2795 | bs->options = NULL; |
998cbd6a | 2796 | bs->explicit_options = NULL; |
5b363937 | 2797 | bdrv_unref(bs); |
621ff94d | 2798 | error_propagate(errp, local_err); |
5b363937 | 2799 | return NULL; |
de9c0cec | 2800 | |
b6ad491a | 2801 | close_and_fail: |
5b363937 | 2802 | bdrv_unref(bs); |
cb3e7f08 MAL |
2803 | qobject_unref(snapshot_options); |
2804 | qobject_unref(options); | |
621ff94d | 2805 | error_propagate(errp, local_err); |
5b363937 | 2806 | return NULL; |
b6ce07aa KW |
2807 | } |
2808 | ||
5b363937 HR |
2809 | BlockDriverState *bdrv_open(const char *filename, const char *reference, |
2810 | QDict *options, int flags, Error **errp) | |
f3930ed0 | 2811 | { |
5b363937 | 2812 | return bdrv_open_inherit(filename, reference, options, flags, NULL, |
ce343771 | 2813 | NULL, errp); |
f3930ed0 KW |
2814 | } |
2815 | ||
e971aa12 JC |
2816 | /* |
2817 | * Adds a BlockDriverState to a simple queue for an atomic, transactional | |
2818 | * reopen of multiple devices. | |
2819 | * | |
2820 | * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT | |
2821 | * already performed, or alternatively may be NULL a new BlockReopenQueue will | |
2822 | * be created and initialized. This newly created BlockReopenQueue should be | |
2823 | * passed back in for subsequent calls that are intended to be of the same | |
2824 | * atomic 'set'. | |
2825 | * | |
2826 | * bs is the BlockDriverState to add to the reopen queue. | |
2827 | * | |
4d2cb092 KW |
2828 | * options contains the changed options for the associated bs |
2829 | * (the BlockReopenQueue takes ownership) | |
2830 | * | |
e971aa12 JC |
2831 | * flags contains the open flags for the associated bs |
2832 | * | |
2833 | * returns a pointer to bs_queue, which is either the newly allocated | |
2834 | * bs_queue, or the existing bs_queue being used. | |
2835 | * | |
1a63a907 | 2836 | * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple(). |
e971aa12 | 2837 | */ |
28518102 KW |
2838 | static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, |
2839 | BlockDriverState *bs, | |
2840 | QDict *options, | |
2841 | int flags, | |
2842 | const BdrvChildRole *role, | |
2843 | QDict *parent_options, | |
2844 | int parent_flags) | |
e971aa12 JC |
2845 | { |
2846 | assert(bs != NULL); | |
2847 | ||
2848 | BlockReopenQueueEntry *bs_entry; | |
67251a31 | 2849 | BdrvChild *child; |
145f598e | 2850 | QDict *old_options, *explicit_options; |
67251a31 | 2851 | |
1a63a907 KW |
2852 | /* Make sure that the caller remembered to use a drained section. This is |
2853 | * important to avoid graph changes between the recursive queuing here and | |
2854 | * bdrv_reopen_multiple(). */ | |
2855 | assert(bs->quiesce_counter > 0); | |
2856 | ||
e971aa12 JC |
2857 | if (bs_queue == NULL) { |
2858 | bs_queue = g_new0(BlockReopenQueue, 1); | |
2859 | QSIMPLEQ_INIT(bs_queue); | |
2860 | } | |
2861 | ||
4d2cb092 KW |
2862 | if (!options) { |
2863 | options = qdict_new(); | |
2864 | } | |
2865 | ||
5b7ba05f AG |
2866 | /* Check if this BlockDriverState is already in the queue */ |
2867 | QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { | |
2868 | if (bs == bs_entry->state.bs) { | |
2869 | break; | |
2870 | } | |
2871 | } | |
2872 | ||
28518102 KW |
2873 | /* |
2874 | * Precedence of options: | |
2875 | * 1. Explicitly passed in options (highest) | |
91a097e7 | 2876 | * 2. Set in flags (only for top level) |
145f598e | 2877 | * 3. Retained from explicitly set options of bs |
8e2160e2 | 2878 | * 4. Inherited from parent node |
28518102 KW |
2879 | * 5. Retained from effective options of bs |
2880 | */ | |
2881 | ||
91a097e7 KW |
2882 | if (!parent_options) { |
2883 | /* | |
2884 | * Any setting represented by flags is always updated. If the | |
2885 | * corresponding QDict option is set, it takes precedence. Otherwise | |
2886 | * the flag is translated into a QDict option. The old setting of bs is | |
2887 | * not considered. | |
2888 | */ | |
2889 | update_options_from_flags(options, flags); | |
2890 | } | |
2891 | ||
145f598e | 2892 | /* Old explicitly set values (don't overwrite by inherited value) */ |
5b7ba05f AG |
2893 | if (bs_entry) { |
2894 | old_options = qdict_clone_shallow(bs_entry->state.explicit_options); | |
2895 | } else { | |
2896 | old_options = qdict_clone_shallow(bs->explicit_options); | |
2897 | } | |
145f598e | 2898 | bdrv_join_options(bs, options, old_options); |
cb3e7f08 | 2899 | qobject_unref(old_options); |
145f598e KW |
2900 | |
2901 | explicit_options = qdict_clone_shallow(options); | |
2902 | ||
28518102 KW |
2903 | /* Inherit from parent node */ |
2904 | if (parent_options) { | |
1a529736 FZ |
2905 | QemuOpts *opts; |
2906 | QDict *options_copy; | |
28518102 | 2907 | assert(!flags); |
8e2160e2 | 2908 | role->inherit_options(&flags, options, parent_flags, parent_options); |
1a529736 FZ |
2909 | options_copy = qdict_clone_shallow(options); |
2910 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); | |
2911 | qemu_opts_absorb_qdict(opts, options_copy, NULL); | |
2912 | update_flags_from_options(&flags, opts); | |
2913 | qemu_opts_del(opts); | |
cb3e7f08 | 2914 | qobject_unref(options_copy); |
28518102 KW |
2915 | } |
2916 | ||
2917 | /* Old values are used for options that aren't set yet */ | |
4d2cb092 | 2918 | old_options = qdict_clone_shallow(bs->options); |
cddff5ba | 2919 | bdrv_join_options(bs, options, old_options); |
cb3e7f08 | 2920 | qobject_unref(old_options); |
4d2cb092 | 2921 | |
fd452021 | 2922 | /* bdrv_open_inherit() sets and clears some additional flags internally */ |
f1f25a2e | 2923 | flags &= ~BDRV_O_PROTOCOL; |
fd452021 KW |
2924 | if (flags & BDRV_O_RDWR) { |
2925 | flags |= BDRV_O_ALLOW_RDWR; | |
2926 | } | |
f1f25a2e | 2927 | |
1857c97b KW |
2928 | if (!bs_entry) { |
2929 | bs_entry = g_new0(BlockReopenQueueEntry, 1); | |
2930 | QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); | |
2931 | } else { | |
cb3e7f08 MAL |
2932 | qobject_unref(bs_entry->state.options); |
2933 | qobject_unref(bs_entry->state.explicit_options); | |
1857c97b KW |
2934 | } |
2935 | ||
2936 | bs_entry->state.bs = bs; | |
2937 | bs_entry->state.options = options; | |
2938 | bs_entry->state.explicit_options = explicit_options; | |
2939 | bs_entry->state.flags = flags; | |
2940 | ||
30450259 KW |
2941 | /* This needs to be overwritten in bdrv_reopen_prepare() */ |
2942 | bs_entry->state.perm = UINT64_MAX; | |
2943 | bs_entry->state.shared_perm = 0; | |
2944 | ||
67251a31 | 2945 | QLIST_FOREACH(child, &bs->children, next) { |
4c9dfe5d KW |
2946 | QDict *new_child_options; |
2947 | char *child_key_dot; | |
67251a31 | 2948 | |
4c9dfe5d KW |
2949 | /* reopen can only change the options of block devices that were |
2950 | * implicitly created and inherited options. For other (referenced) | |
2951 | * block devices, a syntax like "backing.foo" results in an error. */ | |
67251a31 KW |
2952 | if (child->bs->inherits_from != bs) { |
2953 | continue; | |
2954 | } | |
2955 | ||
4c9dfe5d KW |
2956 | child_key_dot = g_strdup_printf("%s.", child->name); |
2957 | qdict_extract_subqdict(options, &new_child_options, child_key_dot); | |
2958 | g_free(child_key_dot); | |
2959 | ||
28518102 KW |
2960 | bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0, |
2961 | child->role, options, flags); | |
e971aa12 JC |
2962 | } |
2963 | ||
e971aa12 JC |
2964 | return bs_queue; |
2965 | } | |
2966 | ||
28518102 KW |
2967 | BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, |
2968 | BlockDriverState *bs, | |
2969 | QDict *options, int flags) | |
2970 | { | |
2971 | return bdrv_reopen_queue_child(bs_queue, bs, options, flags, | |
2972 | NULL, NULL, 0); | |
2973 | } | |
2974 | ||
e971aa12 JC |
2975 | /* |
2976 | * Reopen multiple BlockDriverStates atomically & transactionally. | |
2977 | * | |
2978 | * The queue passed in (bs_queue) must have been built up previous | |
2979 | * via bdrv_reopen_queue(). | |
2980 | * | |
2981 | * Reopens all BDS specified in the queue, with the appropriate | |
2982 | * flags. All devices are prepared for reopen, and failure of any | |
2983 | * device will cause all device changes to be abandonded, and intermediate | |
2984 | * data cleaned up. | |
2985 | * | |
2986 | * If all devices prepare successfully, then the changes are committed | |
2987 | * to all devices. | |
2988 | * | |
1a63a907 KW |
2989 | * All affected nodes must be drained between bdrv_reopen_queue() and |
2990 | * bdrv_reopen_multiple(). | |
e971aa12 | 2991 | */ |
720150f3 | 2992 | int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp) |
e971aa12 JC |
2993 | { |
2994 | int ret = -1; | |
2995 | BlockReopenQueueEntry *bs_entry, *next; | |
2996 | Error *local_err = NULL; | |
2997 | ||
2998 | assert(bs_queue != NULL); | |
2999 | ||
e971aa12 | 3000 | QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { |
1a63a907 | 3001 | assert(bs_entry->state.bs->quiesce_counter > 0); |
e971aa12 JC |
3002 | if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { |
3003 | error_propagate(errp, local_err); | |
3004 | goto cleanup; | |
3005 | } | |
3006 | bs_entry->prepared = true; | |
3007 | } | |
3008 | ||
3009 | /* If we reach this point, we have success and just need to apply the | |
3010 | * changes | |
3011 | */ | |
3012 | QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { | |
3013 | bdrv_reopen_commit(&bs_entry->state); | |
3014 | } | |
3015 | ||
3016 | ret = 0; | |
3017 | ||
3018 | cleanup: | |
3019 | QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { | |
3020 | if (ret && bs_entry->prepared) { | |
3021 | bdrv_reopen_abort(&bs_entry->state); | |
145f598e | 3022 | } else if (ret) { |
cb3e7f08 | 3023 | qobject_unref(bs_entry->state.explicit_options); |
e971aa12 | 3024 | } |
cb3e7f08 | 3025 | qobject_unref(bs_entry->state.options); |
e971aa12 JC |
3026 | g_free(bs_entry); |
3027 | } | |
3028 | g_free(bs_queue); | |
40840e41 | 3029 | |
e971aa12 JC |
3030 | return ret; |
3031 | } | |
3032 | ||
3033 | ||
3034 | /* Reopen a single BlockDriverState with the specified flags. */ | |
3035 | int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) | |
3036 | { | |
3037 | int ret = -1; | |
3038 | Error *local_err = NULL; | |
1a63a907 | 3039 | BlockReopenQueue *queue; |
e971aa12 | 3040 | |
1a63a907 KW |
3041 | bdrv_subtree_drained_begin(bs); |
3042 | ||
3043 | queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags); | |
720150f3 | 3044 | ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err); |
e971aa12 JC |
3045 | if (local_err != NULL) { |
3046 | error_propagate(errp, local_err); | |
3047 | } | |
1a63a907 KW |
3048 | |
3049 | bdrv_subtree_drained_end(bs); | |
3050 | ||
e971aa12 JC |
3051 | return ret; |
3052 | } | |
3053 | ||
30450259 KW |
3054 | static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q, |
3055 | BdrvChild *c) | |
3056 | { | |
3057 | BlockReopenQueueEntry *entry; | |
3058 | ||
3059 | QSIMPLEQ_FOREACH(entry, q, entry) { | |
3060 | BlockDriverState *bs = entry->state.bs; | |
3061 | BdrvChild *child; | |
3062 | ||
3063 | QLIST_FOREACH(child, &bs->children, next) { | |
3064 | if (child == c) { | |
3065 | return entry; | |
3066 | } | |
3067 | } | |
3068 | } | |
3069 | ||
3070 | return NULL; | |
3071 | } | |
3072 | ||
3073 | static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs, | |
3074 | uint64_t *perm, uint64_t *shared) | |
3075 | { | |
3076 | BdrvChild *c; | |
3077 | BlockReopenQueueEntry *parent; | |
3078 | uint64_t cumulative_perms = 0; | |
3079 | uint64_t cumulative_shared_perms = BLK_PERM_ALL; | |
3080 | ||
3081 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
3082 | parent = find_parent_in_reopen_queue(q, c); | |
3083 | if (!parent) { | |
3084 | cumulative_perms |= c->perm; | |
3085 | cumulative_shared_perms &= c->shared_perm; | |
3086 | } else { | |
3087 | uint64_t nperm, nshared; | |
3088 | ||
3089 | bdrv_child_perm(parent->state.bs, bs, c, c->role, q, | |
3090 | parent->state.perm, parent->state.shared_perm, | |
3091 | &nperm, &nshared); | |
3092 | ||
3093 | cumulative_perms |= nperm; | |
3094 | cumulative_shared_perms &= nshared; | |
3095 | } | |
3096 | } | |
3097 | *perm = cumulative_perms; | |
3098 | *shared = cumulative_shared_perms; | |
3099 | } | |
e971aa12 JC |
3100 | |
3101 | /* | |
3102 | * Prepares a BlockDriverState for reopen. All changes are staged in the | |
3103 | * 'opaque' field of the BDRVReopenState, which is used and allocated by | |
3104 | * the block driver layer .bdrv_reopen_prepare() | |
3105 | * | |
3106 | * bs is the BlockDriverState to reopen | |
3107 | * flags are the new open flags | |
3108 | * queue is the reopen queue | |
3109 | * | |
3110 | * Returns 0 on success, non-zero on error. On error errp will be set | |
3111 | * as well. | |
3112 | * | |
3113 | * On failure, bdrv_reopen_abort() will be called to clean up any data. | |
3114 | * It is the responsibility of the caller to then call the abort() or | |
3115 | * commit() for any other BDS that have been left in a prepare() state | |
3116 | * | |
3117 | */ | |
3118 | int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, | |
3119 | Error **errp) | |
3120 | { | |
3121 | int ret = -1; | |
3122 | Error *local_err = NULL; | |
3123 | BlockDriver *drv; | |
ccf9dc07 KW |
3124 | QemuOpts *opts; |
3125 | const char *value; | |
3d8ce171 | 3126 | bool read_only; |
e971aa12 JC |
3127 | |
3128 | assert(reopen_state != NULL); | |
3129 | assert(reopen_state->bs->drv != NULL); | |
3130 | drv = reopen_state->bs->drv; | |
3131 | ||
ccf9dc07 KW |
3132 | /* Process generic block layer options */ |
3133 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); | |
3134 | qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err); | |
3135 | if (local_err) { | |
3136 | error_propagate(errp, local_err); | |
3137 | ret = -EINVAL; | |
3138 | goto error; | |
3139 | } | |
3140 | ||
91a097e7 KW |
3141 | update_flags_from_options(&reopen_state->flags, opts); |
3142 | ||
ccf9dc07 KW |
3143 | /* node-name and driver must be unchanged. Put them back into the QDict, so |
3144 | * that they are checked at the end of this function. */ | |
3145 | value = qemu_opt_get(opts, "node-name"); | |
3146 | if (value) { | |
46f5ac20 | 3147 | qdict_put_str(reopen_state->options, "node-name", value); |
ccf9dc07 KW |
3148 | } |
3149 | ||
3150 | value = qemu_opt_get(opts, "driver"); | |
3151 | if (value) { | |
46f5ac20 | 3152 | qdict_put_str(reopen_state->options, "driver", value); |
ccf9dc07 KW |
3153 | } |
3154 | ||
3d8ce171 JC |
3155 | /* If we are to stay read-only, do not allow permission change |
3156 | * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is | |
3157 | * not set, or if the BDS still has copy_on_read enabled */ | |
3158 | read_only = !(reopen_state->flags & BDRV_O_RDWR); | |
54a32bfe | 3159 | ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); |
3d8ce171 JC |
3160 | if (local_err) { |
3161 | error_propagate(errp, local_err); | |
e971aa12 JC |
3162 | goto error; |
3163 | } | |
3164 | ||
30450259 KW |
3165 | /* Calculate required permissions after reopening */ |
3166 | bdrv_reopen_perm(queue, reopen_state->bs, | |
3167 | &reopen_state->perm, &reopen_state->shared_perm); | |
e971aa12 JC |
3168 | |
3169 | ret = bdrv_flush(reopen_state->bs); | |
3170 | if (ret) { | |
455b0fde | 3171 | error_setg_errno(errp, -ret, "Error flushing drive"); |
e971aa12 JC |
3172 | goto error; |
3173 | } | |
3174 | ||
3175 | if (drv->bdrv_reopen_prepare) { | |
3176 | ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); | |
3177 | if (ret) { | |
3178 | if (local_err != NULL) { | |
3179 | error_propagate(errp, local_err); | |
3180 | } else { | |
d8b6895f LC |
3181 | error_setg(errp, "failed while preparing to reopen image '%s'", |
3182 | reopen_state->bs->filename); | |
e971aa12 JC |
3183 | } |
3184 | goto error; | |
3185 | } | |
3186 | } else { | |
3187 | /* It is currently mandatory to have a bdrv_reopen_prepare() | |
3188 | * handler for each supported drv. */ | |
81e5f78a AG |
3189 | error_setg(errp, "Block format '%s' used by node '%s' " |
3190 | "does not support reopening files", drv->format_name, | |
3191 | bdrv_get_device_or_node_name(reopen_state->bs)); | |
e971aa12 JC |
3192 | ret = -1; |
3193 | goto error; | |
3194 | } | |
3195 | ||
4d2cb092 KW |
3196 | /* Options that are not handled are only okay if they are unchanged |
3197 | * compared to the old state. It is expected that some options are only | |
3198 | * used for the initial open, but not reopen (e.g. filename) */ | |
3199 | if (qdict_size(reopen_state->options)) { | |
3200 | const QDictEntry *entry = qdict_first(reopen_state->options); | |
3201 | ||
3202 | do { | |
54fd1b0d HR |
3203 | QObject *new = entry->value; |
3204 | QObject *old = qdict_get(reopen_state->bs->options, entry->key); | |
3205 | ||
129c7d1c | 3206 | /* |
54fd1b0d HR |
3207 | * TODO: When using -drive to specify blockdev options, all values |
3208 | * will be strings; however, when using -blockdev, blockdev-add or | |
3209 | * filenames using the json:{} pseudo-protocol, they will be | |
3210 | * correctly typed. | |
3211 | * In contrast, reopening options are (currently) always strings | |
3212 | * (because you can only specify them through qemu-io; all other | |
3213 | * callers do not specify any options). | |
3214 | * Therefore, when using anything other than -drive to create a BDS, | |
3215 | * this cannot detect non-string options as unchanged, because | |
3216 | * qobject_is_equal() always returns false for objects of different | |
3217 | * type. In the future, this should be remedied by correctly typing | |
3218 | * all options. For now, this is not too big of an issue because | |
3219 | * the user can simply omit options which cannot be changed anyway, | |
3220 | * so they will stay unchanged. | |
129c7d1c | 3221 | */ |
54fd1b0d | 3222 | if (!qobject_is_equal(new, old)) { |
4d2cb092 KW |
3223 | error_setg(errp, "Cannot change the option '%s'", entry->key); |
3224 | ret = -EINVAL; | |
3225 | goto error; | |
3226 | } | |
3227 | } while ((entry = qdict_next(reopen_state->options, entry))); | |
3228 | } | |
3229 | ||
30450259 KW |
3230 | ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm, |
3231 | reopen_state->shared_perm, NULL, errp); | |
3232 | if (ret < 0) { | |
3233 | goto error; | |
3234 | } | |
3235 | ||
e971aa12 JC |
3236 | ret = 0; |
3237 | ||
3238 | error: | |
ccf9dc07 | 3239 | qemu_opts_del(opts); |
e971aa12 JC |
3240 | return ret; |
3241 | } | |
3242 | ||
3243 | /* | |
3244 | * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and | |
3245 | * makes them final by swapping the staging BlockDriverState contents into | |
3246 | * the active BlockDriverState contents. | |
3247 | */ | |
3248 | void bdrv_reopen_commit(BDRVReopenState *reopen_state) | |
3249 | { | |
3250 | BlockDriver *drv; | |
50bf65ba | 3251 | BlockDriverState *bs; |
cb9ff6c2 | 3252 | bool old_can_write, new_can_write; |
e971aa12 JC |
3253 | |
3254 | assert(reopen_state != NULL); | |
50bf65ba VSO |
3255 | bs = reopen_state->bs; |
3256 | drv = bs->drv; | |
e971aa12 JC |
3257 | assert(drv != NULL); |
3258 | ||
cb9ff6c2 VSO |
3259 | old_can_write = |
3260 | !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE); | |
3261 | ||
e971aa12 JC |
3262 | /* If there are any driver level actions to take */ |
3263 | if (drv->bdrv_reopen_commit) { | |
3264 | drv->bdrv_reopen_commit(reopen_state); | |
3265 | } | |
3266 | ||
3267 | /* set BDS specific flags now */ | |
cb3e7f08 | 3268 | qobject_unref(bs->explicit_options); |
145f598e | 3269 | |
50bf65ba VSO |
3270 | bs->explicit_options = reopen_state->explicit_options; |
3271 | bs->open_flags = reopen_state->flags; | |
3272 | bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); | |
355ef4ac | 3273 | |
50bf65ba | 3274 | bdrv_refresh_limits(bs, NULL); |
cb9ff6c2 | 3275 | |
30450259 KW |
3276 | bdrv_set_perm(reopen_state->bs, reopen_state->perm, |
3277 | reopen_state->shared_perm); | |
3278 | ||
cb9ff6c2 VSO |
3279 | new_can_write = |
3280 | !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE); | |
3281 | if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) { | |
3282 | Error *local_err = NULL; | |
3283 | if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) { | |
3284 | /* This is not fatal, bitmaps just left read-only, so all following | |
3285 | * writes will fail. User can remove read-only bitmaps to unblock | |
3286 | * writes. | |
3287 | */ | |
3288 | error_reportf_err(local_err, | |
3289 | "%s: Failed to make dirty bitmaps writable: ", | |
3290 | bdrv_get_node_name(bs)); | |
3291 | } | |
3292 | } | |
e971aa12 JC |
3293 | } |
3294 | ||
3295 | /* | |
3296 | * Abort the reopen, and delete and free the staged changes in | |
3297 | * reopen_state | |
3298 | */ | |
3299 | void bdrv_reopen_abort(BDRVReopenState *reopen_state) | |
3300 | { | |
3301 | BlockDriver *drv; | |
3302 | ||
3303 | assert(reopen_state != NULL); | |
3304 | drv = reopen_state->bs->drv; | |
3305 | assert(drv != NULL); | |
3306 | ||
3307 | if (drv->bdrv_reopen_abort) { | |
3308 | drv->bdrv_reopen_abort(reopen_state); | |
3309 | } | |
145f598e | 3310 | |
cb3e7f08 | 3311 | qobject_unref(reopen_state->explicit_options); |
30450259 KW |
3312 | |
3313 | bdrv_abort_perm_update(reopen_state->bs); | |
e971aa12 JC |
3314 | } |
3315 | ||
3316 | ||
64dff520 | 3317 | static void bdrv_close(BlockDriverState *bs) |
fc01f7e7 | 3318 | { |
33384421 | 3319 | BdrvAioNotifier *ban, *ban_next; |
50a3efb0 | 3320 | BdrvChild *child, *next; |
33384421 | 3321 | |
ca9bd24c | 3322 | assert(!bs->job); |
30f55fb8 | 3323 | assert(!bs->refcnt); |
99b7e775 | 3324 | |
fc27291d | 3325 | bdrv_drained_begin(bs); /* complete I/O */ |
58fda173 | 3326 | bdrv_flush(bs); |
53ec73e2 | 3327 | bdrv_drain(bs); /* in case flush left pending I/O */ |
fc27291d | 3328 | |
3cbc002c | 3329 | if (bs->drv) { |
9a7dedbc | 3330 | bs->drv->bdrv_close(bs); |
9a4f4c31 | 3331 | bs->drv = NULL; |
50a3efb0 | 3332 | } |
9a7dedbc | 3333 | |
50a3efb0 | 3334 | bdrv_set_backing_hd(bs, NULL, &error_abort); |
9a7dedbc | 3335 | |
50a3efb0 AG |
3336 | if (bs->file != NULL) { |
3337 | bdrv_unref_child(bs, bs->file); | |
3338 | bs->file = NULL; | |
3339 | } | |
9a4f4c31 | 3340 | |
50a3efb0 AG |
3341 | QLIST_FOREACH_SAFE(child, &bs->children, next, next) { |
3342 | /* TODO Remove bdrv_unref() from drivers' close function and use | |
3343 | * bdrv_unref_child() here */ | |
3344 | if (child->bs->inherits_from == bs) { | |
3345 | child->bs->inherits_from = NULL; | |
6e93e7c4 | 3346 | } |
50a3efb0 | 3347 | bdrv_detach_child(child); |
b338082b | 3348 | } |
98f90dba | 3349 | |
50a3efb0 AG |
3350 | g_free(bs->opaque); |
3351 | bs->opaque = NULL; | |
3352 | atomic_set(&bs->copy_on_read, 0); | |
3353 | bs->backing_file[0] = '\0'; | |
3354 | bs->backing_format[0] = '\0'; | |
3355 | bs->total_sectors = 0; | |
3356 | bs->encrypted = false; | |
3357 | bs->sg = false; | |
cb3e7f08 MAL |
3358 | qobject_unref(bs->options); |
3359 | qobject_unref(bs->explicit_options); | |
50a3efb0 AG |
3360 | bs->options = NULL; |
3361 | bs->explicit_options = NULL; | |
cb3e7f08 | 3362 | qobject_unref(bs->full_open_options); |
50a3efb0 AG |
3363 | bs->full_open_options = NULL; |
3364 | ||
cca43ae1 VSO |
3365 | bdrv_release_named_dirty_bitmaps(bs); |
3366 | assert(QLIST_EMPTY(&bs->dirty_bitmaps)); | |
3367 | ||
33384421 HR |
3368 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
3369 | g_free(ban); | |
3370 | } | |
3371 | QLIST_INIT(&bs->aio_notifiers); | |
fc27291d | 3372 | bdrv_drained_end(bs); |
b338082b FB |
3373 | } |
3374 | ||
2bc93fed MK |
3375 | void bdrv_close_all(void) |
3376 | { | |
b3b5299d | 3377 | assert(job_next(NULL) == NULL); |
cd7fca95 | 3378 | nbd_export_close_all(); |
ca9bd24c HR |
3379 | |
3380 | /* Drop references from requests still in flight, such as canceled block | |
3381 | * jobs whose AIO context has not been polled yet */ | |
3382 | bdrv_drain_all(); | |
2bc93fed | 3383 | |
ca9bd24c HR |
3384 | blk_remove_all_bs(); |
3385 | blockdev_close_all_bdrv_states(); | |
ed78cda3 | 3386 | |
a1a2af07 | 3387 | assert(QTAILQ_EMPTY(&all_bdrv_states)); |
2bc93fed MK |
3388 | } |
3389 | ||
d0ac0380 KW |
3390 | static bool should_update_child(BdrvChild *c, BlockDriverState *to) |
3391 | { | |
3392 | BdrvChild *to_c; | |
3393 | ||
3394 | if (c->role->stay_at_node) { | |
3395 | return false; | |
3396 | } | |
3397 | ||
3398 | if (c->role == &child_backing) { | |
3399 | /* If @from is a backing file of @to, ignore the child to avoid | |
3400 | * creating a loop. We only want to change the pointer of other | |
3401 | * parents. */ | |
3402 | QLIST_FOREACH(to_c, &to->children, next) { | |
3403 | if (to_c == c) { | |
3404 | break; | |
3405 | } | |
3406 | } | |
3407 | if (to_c) { | |
3408 | return false; | |
3409 | } | |
3410 | } | |
3411 | ||
3412 | return true; | |
3413 | } | |
3414 | ||
5fe31c25 KW |
3415 | void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, |
3416 | Error **errp) | |
dd62f1ca | 3417 | { |
d0ac0380 | 3418 | BdrvChild *c, *next; |
234ac1a9 KW |
3419 | GSList *list = NULL, *p; |
3420 | uint64_t old_perm, old_shared; | |
3421 | uint64_t perm = 0, shared = BLK_PERM_ALL; | |
3422 | int ret; | |
3423 | ||
5fe31c25 KW |
3424 | assert(!atomic_read(&from->in_flight)); |
3425 | assert(!atomic_read(&to->in_flight)); | |
dd62f1ca | 3426 | |
234ac1a9 KW |
3427 | /* Make sure that @from doesn't go away until we have successfully attached |
3428 | * all of its parents to @to. */ | |
3429 | bdrv_ref(from); | |
dd62f1ca | 3430 | |
234ac1a9 | 3431 | /* Put all parents into @list and calculate their cumulative permissions */ |
dd62f1ca | 3432 | QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { |
d0ac0380 | 3433 | if (!should_update_child(c, to)) { |
26de9438 KW |
3434 | continue; |
3435 | } | |
234ac1a9 KW |
3436 | list = g_slist_prepend(list, c); |
3437 | perm |= c->perm; | |
3438 | shared &= c->shared_perm; | |
3439 | } | |
3440 | ||
3441 | /* Check whether the required permissions can be granted on @to, ignoring | |
3442 | * all BdrvChild in @list so that they can't block themselves. */ | |
3121fb45 | 3443 | ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp); |
234ac1a9 KW |
3444 | if (ret < 0) { |
3445 | bdrv_abort_perm_update(to); | |
3446 | goto out; | |
3447 | } | |
3448 | ||
3449 | /* Now actually perform the change. We performed the permission check for | |
3450 | * all elements of @list at once, so set the permissions all at once at the | |
3451 | * very end. */ | |
3452 | for (p = list; p != NULL; p = p->next) { | |
3453 | c = p->data; | |
9bd910e2 | 3454 | |
dd62f1ca | 3455 | bdrv_ref(to); |
234ac1a9 | 3456 | bdrv_replace_child_noperm(c, to); |
dd62f1ca KW |
3457 | bdrv_unref(from); |
3458 | } | |
234ac1a9 KW |
3459 | |
3460 | bdrv_get_cumulative_perm(to, &old_perm, &old_shared); | |
3461 | bdrv_set_perm(to, old_perm | perm, old_shared | shared); | |
3462 | ||
3463 | out: | |
3464 | g_slist_free(list); | |
3465 | bdrv_unref(from); | |
dd62f1ca KW |
3466 | } |
3467 | ||
4ddc07ca PB |
3468 | /* |
3469 | * Add new bs contents at the top of an image chain while the chain is | |
3470 | * live, while keeping required fields on the top layer. | |
3471 | * | |
3472 | * This will modify the BlockDriverState fields, and swap contents | |
3473 | * between bs_new and bs_top. Both bs_new and bs_top are modified. | |
3474 | * | |
bfb197e0 | 3475 | * bs_new must not be attached to a BlockBackend. |
4ddc07ca PB |
3476 | * |
3477 | * This function does not create any image files. | |
dd62f1ca KW |
3478 | * |
3479 | * bdrv_append() takes ownership of a bs_new reference and unrefs it because | |
3480 | * that's what the callers commonly need. bs_new will be referenced by the old | |
3481 | * parents of bs_top after bdrv_append() returns. If the caller needs to keep a | |
3482 | * reference of its own, it must call bdrv_ref(). | |
4ddc07ca | 3483 | */ |
b2c2832c KW |
3484 | void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, |
3485 | Error **errp) | |
4ddc07ca | 3486 | { |
b2c2832c KW |
3487 | Error *local_err = NULL; |
3488 | ||
b2c2832c KW |
3489 | bdrv_set_backing_hd(bs_new, bs_top, &local_err); |
3490 | if (local_err) { | |
3491 | error_propagate(errp, local_err); | |
3492 | goto out; | |
3493 | } | |
dd62f1ca | 3494 | |
5fe31c25 | 3495 | bdrv_replace_node(bs_top, bs_new, &local_err); |
234ac1a9 KW |
3496 | if (local_err) { |
3497 | error_propagate(errp, local_err); | |
3498 | bdrv_set_backing_hd(bs_new, NULL, &error_abort); | |
3499 | goto out; | |
3500 | } | |
4ddc07ca | 3501 | |
dd62f1ca KW |
3502 | /* bs_new is now referenced by its new parents, we don't need the |
3503 | * additional reference any more. */ | |
b2c2832c | 3504 | out: |
dd62f1ca | 3505 | bdrv_unref(bs_new); |
8802d1fd JC |
3506 | } |
3507 | ||
4f6fd349 | 3508 | static void bdrv_delete(BlockDriverState *bs) |
b338082b | 3509 | { |
3e914655 | 3510 | assert(!bs->job); |
3718d8ab | 3511 | assert(bdrv_op_blocker_is_empty(bs)); |
4f6fd349 | 3512 | assert(!bs->refcnt); |
18846dee | 3513 | |
e1b5c52e SH |
3514 | bdrv_close(bs); |
3515 | ||
1b7bdbc1 | 3516 | /* remove from list, if necessary */ |
63eaaae0 KW |
3517 | if (bs->node_name[0] != '\0') { |
3518 | QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); | |
3519 | } | |
2c1d04e0 HR |
3520 | QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); |
3521 | ||
7267c094 | 3522 | g_free(bs); |
fc01f7e7 FB |
3523 | } |
3524 | ||
e97fc193 AL |
3525 | /* |
3526 | * Run consistency checks on an image | |
3527 | * | |
e076f338 | 3528 | * Returns 0 if the check could be completed (it doesn't mean that the image is |
a1c7273b | 3529 | * free of errors) or -errno when an internal error occurred. The results of the |
e076f338 | 3530 | * check are stored in res. |
e97fc193 | 3531 | */ |
2fd61638 PB |
3532 | static int coroutine_fn bdrv_co_check(BlockDriverState *bs, |
3533 | BdrvCheckResult *res, BdrvCheckMode fix) | |
e97fc193 | 3534 | { |
908bcd54 HR |
3535 | if (bs->drv == NULL) { |
3536 | return -ENOMEDIUM; | |
3537 | } | |
2fd61638 | 3538 | if (bs->drv->bdrv_co_check == NULL) { |
e97fc193 AL |
3539 | return -ENOTSUP; |
3540 | } | |
3541 | ||
e076f338 | 3542 | memset(res, 0, sizeof(*res)); |
2fd61638 PB |
3543 | return bs->drv->bdrv_co_check(bs, res, fix); |
3544 | } | |
3545 | ||
3546 | typedef struct CheckCo { | |
3547 | BlockDriverState *bs; | |
3548 | BdrvCheckResult *res; | |
3549 | BdrvCheckMode fix; | |
3550 | int ret; | |
3551 | } CheckCo; | |
3552 | ||
3553 | static void bdrv_check_co_entry(void *opaque) | |
3554 | { | |
3555 | CheckCo *cco = opaque; | |
3556 | cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix); | |
3557 | } | |
3558 | ||
3559 | int bdrv_check(BlockDriverState *bs, | |
3560 | BdrvCheckResult *res, BdrvCheckMode fix) | |
3561 | { | |
3562 | Coroutine *co; | |
3563 | CheckCo cco = { | |
3564 | .bs = bs, | |
3565 | .res = res, | |
3566 | .ret = -EINPROGRESS, | |
3567 | .fix = fix, | |
3568 | }; | |
3569 | ||
3570 | if (qemu_in_coroutine()) { | |
3571 | /* Fast-path if already in coroutine context */ | |
3572 | bdrv_check_co_entry(&cco); | |
3573 | } else { | |
3574 | co = qemu_coroutine_create(bdrv_check_co_entry, &cco); | |
3575 | qemu_coroutine_enter(co); | |
3576 | BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS); | |
3577 | } | |
3578 | ||
3579 | return cco.ret; | |
e97fc193 AL |
3580 | } |
3581 | ||
756e6736 KW |
3582 | /* |
3583 | * Return values: | |
3584 | * 0 - success | |
3585 | * -EINVAL - backing format specified, but no file | |
3586 | * -ENOSPC - can't update the backing file because no space is left in the | |
3587 | * image file header | |
3588 | * -ENOTSUP - format driver doesn't support changing the backing file | |
3589 | */ | |
3590 | int bdrv_change_backing_file(BlockDriverState *bs, | |
3591 | const char *backing_file, const char *backing_fmt) | |
3592 | { | |
3593 | BlockDriver *drv = bs->drv; | |
469ef350 | 3594 | int ret; |
756e6736 | 3595 | |
d470ad42 HR |
3596 | if (!drv) { |
3597 | return -ENOMEDIUM; | |
3598 | } | |
3599 | ||
5f377794 PB |
3600 | /* Backing file format doesn't make sense without a backing file */ |
3601 | if (backing_fmt && !backing_file) { | |
3602 | return -EINVAL; | |
3603 | } | |
3604 | ||
756e6736 | 3605 | if (drv->bdrv_change_backing_file != NULL) { |
469ef350 | 3606 | ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); |
756e6736 | 3607 | } else { |
469ef350 | 3608 | ret = -ENOTSUP; |
756e6736 | 3609 | } |
469ef350 PB |
3610 | |
3611 | if (ret == 0) { | |
3612 | pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); | |
3613 | pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); | |
3614 | } | |
3615 | return ret; | |
756e6736 KW |
3616 | } |
3617 | ||
6ebdcee2 JC |
3618 | /* |
3619 | * Finds the image layer in the chain that has 'bs' as its backing file. | |
3620 | * | |
3621 | * active is the current topmost image. | |
3622 | * | |
3623 | * Returns NULL if bs is not found in active's image chain, | |
3624 | * or if active == bs. | |
4caf0fcd JC |
3625 | * |
3626 | * Returns the bottommost base image if bs == NULL. | |
6ebdcee2 JC |
3627 | */ |
3628 | BlockDriverState *bdrv_find_overlay(BlockDriverState *active, | |
3629 | BlockDriverState *bs) | |
3630 | { | |
760e0063 KW |
3631 | while (active && bs != backing_bs(active)) { |
3632 | active = backing_bs(active); | |
6ebdcee2 JC |
3633 | } |
3634 | ||
4caf0fcd JC |
3635 | return active; |
3636 | } | |
6ebdcee2 | 3637 | |
4caf0fcd JC |
3638 | /* Given a BDS, searches for the base layer. */ |
3639 | BlockDriverState *bdrv_find_base(BlockDriverState *bs) | |
3640 | { | |
3641 | return bdrv_find_overlay(bs, NULL); | |
6ebdcee2 JC |
3642 | } |
3643 | ||
6ebdcee2 JC |
3644 | /* |
3645 | * Drops images above 'base' up to and including 'top', and sets the image | |
3646 | * above 'top' to have base as its backing file. | |
3647 | * | |
3648 | * Requires that the overlay to 'top' is opened r/w, so that the backing file | |
3649 | * information in 'bs' can be properly updated. | |
3650 | * | |
3651 | * E.g., this will convert the following chain: | |
3652 | * bottom <- base <- intermediate <- top <- active | |
3653 | * | |
3654 | * to | |
3655 | * | |
3656 | * bottom <- base <- active | |
3657 | * | |
3658 | * It is allowed for bottom==base, in which case it converts: | |
3659 | * | |
3660 | * base <- intermediate <- top <- active | |
3661 | * | |
3662 | * to | |
3663 | * | |
3664 | * base <- active | |
3665 | * | |
54e26900 JC |
3666 | * If backing_file_str is non-NULL, it will be used when modifying top's |
3667 | * overlay image metadata. | |
3668 | * | |
6ebdcee2 JC |
3669 | * Error conditions: |
3670 | * if active == top, that is considered an error | |
3671 | * | |
3672 | */ | |
bde70715 KW |
3673 | int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, |
3674 | const char *backing_file_str) | |
6ebdcee2 | 3675 | { |
61f09cea | 3676 | BdrvChild *c, *next; |
12fa4af6 | 3677 | Error *local_err = NULL; |
6ebdcee2 JC |
3678 | int ret = -EIO; |
3679 | ||
6858eba0 KW |
3680 | bdrv_ref(top); |
3681 | ||
6ebdcee2 JC |
3682 | if (!top->drv || !base->drv) { |
3683 | goto exit; | |
3684 | } | |
3685 | ||
5db15a57 KW |
3686 | /* Make sure that base is in the backing chain of top */ |
3687 | if (!bdrv_chain_contains(top, base)) { | |
6ebdcee2 JC |
3688 | goto exit; |
3689 | } | |
3690 | ||
3691 | /* success - we can delete the intermediate states, and link top->base */ | |
bde70715 KW |
3692 | /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once |
3693 | * we've figured out how they should work. */ | |
61f09cea KW |
3694 | backing_file_str = backing_file_str ? backing_file_str : base->filename; |
3695 | ||
3696 | QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) { | |
3697 | /* Check whether we are allowed to switch c from top to base */ | |
3698 | GSList *ignore_children = g_slist_prepend(NULL, c); | |
3699 | bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm, | |
3700 | ignore_children, &local_err); | |
2c860e79 | 3701 | g_slist_free(ignore_children); |
61f09cea KW |
3702 | if (local_err) { |
3703 | ret = -EPERM; | |
3704 | error_report_err(local_err); | |
6858eba0 KW |
3705 | goto exit; |
3706 | } | |
12fa4af6 | 3707 | |
61f09cea KW |
3708 | /* If so, update the backing file path in the image file */ |
3709 | if (c->role->update_filename) { | |
3710 | ret = c->role->update_filename(c, base, backing_file_str, | |
3711 | &local_err); | |
3712 | if (ret < 0) { | |
3713 | bdrv_abort_perm_update(base); | |
3714 | error_report_err(local_err); | |
3715 | goto exit; | |
3716 | } | |
3717 | } | |
3718 | ||
3719 | /* Do the actual switch in the in-memory graph. | |
3720 | * Completes bdrv_check_update_perm() transaction internally. */ | |
3721 | bdrv_ref(base); | |
3722 | bdrv_replace_child(c, base); | |
3723 | bdrv_unref(top); | |
12fa4af6 | 3724 | } |
6ebdcee2 | 3725 | |
6ebdcee2 | 3726 | ret = 0; |
6ebdcee2 | 3727 | exit: |
6858eba0 | 3728 | bdrv_unref(top); |
6ebdcee2 JC |
3729 | return ret; |
3730 | } | |
3731 | ||
61007b31 SH |
3732 | /** |
3733 | * Truncate file to 'offset' bytes (needed only for file protocols) | |
3734 | */ | |
7ea37c30 HR |
3735 | int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc, |
3736 | Error **errp) | |
71d0770c | 3737 | { |
52cdbc58 | 3738 | BlockDriverState *bs = child->bs; |
61007b31 SH |
3739 | BlockDriver *drv = bs->drv; |
3740 | int ret; | |
c8f6d58e | 3741 | |
362b3786 | 3742 | assert(child->perm & BLK_PERM_RESIZE); |
c8f6d58e | 3743 | |
5a612c00 | 3744 | /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ |
ed3d2ec9 HR |
3745 | if (!drv) { |
3746 | error_setg(errp, "No medium inserted"); | |
71d0770c | 3747 | return -ENOMEDIUM; |
ed3d2ec9 | 3748 | } |
cd8b7aaa KW |
3749 | if (offset < 0) { |
3750 | error_setg(errp, "Image size cannot be negative"); | |
3751 | return -EINVAL; | |
3752 | } | |
3753 | ||
ed3d2ec9 | 3754 | if (!drv->bdrv_truncate) { |
5a612c00 MP |
3755 | if (bs->file && drv->is_filter) { |
3756 | return bdrv_truncate(bs->file, offset, prealloc, errp); | |
3757 | } | |
ed3d2ec9 | 3758 | error_setg(errp, "Image format driver does not support resize"); |
61007b31 | 3759 | return -ENOTSUP; |
ed3d2ec9 HR |
3760 | } |
3761 | if (bs->read_only) { | |
3762 | error_setg(errp, "Image is read-only"); | |
61007b31 | 3763 | return -EACCES; |
ed3d2ec9 | 3764 | } |
71d0770c | 3765 | |
504c205a DL |
3766 | assert(!(bs->open_flags & BDRV_O_INACTIVE)); |
3767 | ||
7ea37c30 | 3768 | ret = drv->bdrv_truncate(bs, offset, prealloc, errp); |
1b6cc579 EB |
3769 | if (ret < 0) { |
3770 | return ret; | |
3771 | } | |
3772 | ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); | |
3773 | if (ret < 0) { | |
3774 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); | |
3775 | } else { | |
3776 | offset = bs->total_sectors * BDRV_SECTOR_SIZE; | |
c0191e76 | 3777 | } |
1b6cc579 EB |
3778 | bdrv_dirty_bitmap_truncate(bs, offset); |
3779 | bdrv_parent_cb_resize(bs); | |
3780 | atomic_inc(&bs->write_gen); | |
61007b31 | 3781 | return ret; |
71d0770c AL |
3782 | } |
3783 | ||
61007b31 SH |
3784 | /** |
3785 | * Length of a allocated file in bytes. Sparse files are counted by actual | |
3786 | * allocated space. Return < 0 if error or unknown. | |
3787 | */ | |
3788 | int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) | |
71d0770c | 3789 | { |
61007b31 SH |
3790 | BlockDriver *drv = bs->drv; |
3791 | if (!drv) { | |
3792 | return -ENOMEDIUM; | |
8f4754ed | 3793 | } |
61007b31 SH |
3794 | if (drv->bdrv_get_allocated_file_size) { |
3795 | return drv->bdrv_get_allocated_file_size(bs); | |
3796 | } | |
3797 | if (bs->file) { | |
9a4f4c31 | 3798 | return bdrv_get_allocated_file_size(bs->file->bs); |
1c9805a3 | 3799 | } |
61007b31 | 3800 | return -ENOTSUP; |
1c9805a3 | 3801 | } |
e7a8a783 | 3802 | |
90880ff1 SH |
3803 | /* |
3804 | * bdrv_measure: | |
3805 | * @drv: Format driver | |
3806 | * @opts: Creation options for new image | |
3807 | * @in_bs: Existing image containing data for new image (may be NULL) | |
3808 | * @errp: Error object | |
3809 | * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) | |
3810 | * or NULL on error | |
3811 | * | |
3812 | * Calculate file size required to create a new image. | |
3813 | * | |
3814 | * If @in_bs is given then space for allocated clusters and zero clusters | |
3815 | * from that image are included in the calculation. If @opts contains a | |
3816 | * backing file that is shared by @in_bs then backing clusters may be omitted | |
3817 | * from the calculation. | |
3818 | * | |
3819 | * If @in_bs is NULL then the calculation includes no allocated clusters | |
3820 | * unless a preallocation option is given in @opts. | |
3821 | * | |
3822 | * Note that @in_bs may use a different BlockDriver from @drv. | |
3823 | * | |
3824 | * If an error occurs the @errp pointer is set. | |
3825 | */ | |
3826 | BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, | |
3827 | BlockDriverState *in_bs, Error **errp) | |
3828 | { | |
3829 | if (!drv->bdrv_measure) { | |
3830 | error_setg(errp, "Block driver '%s' does not support size measurement", | |
3831 | drv->format_name); | |
3832 | return NULL; | |
3833 | } | |
3834 | ||
3835 | return drv->bdrv_measure(opts, in_bs, errp); | |
3836 | } | |
3837 | ||
61007b31 SH |
3838 | /** |
3839 | * Return number of sectors on success, -errno on error. | |
1c9805a3 | 3840 | */ |
61007b31 | 3841 | int64_t bdrv_nb_sectors(BlockDriverState *bs) |
1c9805a3 | 3842 | { |
61007b31 | 3843 | BlockDriver *drv = bs->drv; |
498e386c | 3844 | |
61007b31 SH |
3845 | if (!drv) |
3846 | return -ENOMEDIUM; | |
2572b37a | 3847 | |
61007b31 SH |
3848 | if (drv->has_variable_length) { |
3849 | int ret = refresh_total_sectors(bs, bs->total_sectors); | |
3850 | if (ret < 0) { | |
3851 | return ret; | |
1c9805a3 SH |
3852 | } |
3853 | } | |
61007b31 | 3854 | return bs->total_sectors; |
1c9805a3 | 3855 | } |
b338082b | 3856 | |
61007b31 SH |
3857 | /** |
3858 | * Return length in bytes on success, -errno on error. | |
3859 | * The length is always a multiple of BDRV_SECTOR_SIZE. | |
8d3b1a2d | 3860 | */ |
61007b31 | 3861 | int64_t bdrv_getlength(BlockDriverState *bs) |
8d3b1a2d | 3862 | { |
61007b31 | 3863 | int64_t ret = bdrv_nb_sectors(bs); |
8d3b1a2d | 3864 | |
4a9c9ea0 | 3865 | ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret; |
61007b31 | 3866 | return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE; |
fc01f7e7 FB |
3867 | } |
3868 | ||
61007b31 SH |
3869 | /* return 0 as number of sectors if no device present or error */ |
3870 | void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) | |
07d27a44 | 3871 | { |
61007b31 | 3872 | int64_t nb_sectors = bdrv_nb_sectors(bs); |
07d27a44 | 3873 | |
61007b31 | 3874 | *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; |
07d27a44 MA |
3875 | } |
3876 | ||
54115412 | 3877 | bool bdrv_is_sg(BlockDriverState *bs) |
f08145fe | 3878 | { |
61007b31 | 3879 | return bs->sg; |
f08145fe KW |
3880 | } |
3881 | ||
54115412 | 3882 | bool bdrv_is_encrypted(BlockDriverState *bs) |
fc3959e4 | 3883 | { |
760e0063 | 3884 | if (bs->backing && bs->backing->bs->encrypted) { |
54115412 | 3885 | return true; |
760e0063 | 3886 | } |
61007b31 | 3887 | return bs->encrypted; |
fc3959e4 FZ |
3888 | } |
3889 | ||
61007b31 | 3890 | const char *bdrv_get_format_name(BlockDriverState *bs) |
40b4f539 | 3891 | { |
61007b31 | 3892 | return bs->drv ? bs->drv->format_name : NULL; |
40b4f539 KW |
3893 | } |
3894 | ||
61007b31 | 3895 | static int qsort_strcmp(const void *a, const void *b) |
40b4f539 | 3896 | { |
ceff5bd7 | 3897 | return strcmp(*(char *const *)a, *(char *const *)b); |
40b4f539 KW |
3898 | } |
3899 | ||
61007b31 SH |
3900 | void bdrv_iterate_format(void (*it)(void *opaque, const char *name), |
3901 | void *opaque) | |
40b4f539 | 3902 | { |
61007b31 SH |
3903 | BlockDriver *drv; |
3904 | int count = 0; | |
3905 | int i; | |
3906 | const char **formats = NULL; | |
40b4f539 | 3907 | |
61007b31 SH |
3908 | QLIST_FOREACH(drv, &bdrv_drivers, list) { |
3909 | if (drv->format_name) { | |
3910 | bool found = false; | |
3911 | int i = count; | |
3912 | while (formats && i && !found) { | |
3913 | found = !strcmp(formats[--i], drv->format_name); | |
3914 | } | |
e2a305fb | 3915 | |
61007b31 SH |
3916 | if (!found) { |
3917 | formats = g_renew(const char *, formats, count + 1); | |
3918 | formats[count++] = drv->format_name; | |
3919 | } | |
6c5a42ac | 3920 | } |
61007b31 | 3921 | } |
6c5a42ac | 3922 | |
eb0df69f HR |
3923 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { |
3924 | const char *format_name = block_driver_modules[i].format_name; | |
3925 | ||
3926 | if (format_name) { | |
3927 | bool found = false; | |
3928 | int j = count; | |
3929 | ||
3930 | while (formats && j && !found) { | |
3931 | found = !strcmp(formats[--j], format_name); | |
3932 | } | |
3933 | ||
3934 | if (!found) { | |
3935 | formats = g_renew(const char *, formats, count + 1); | |
3936 | formats[count++] = format_name; | |
3937 | } | |
3938 | } | |
3939 | } | |
3940 | ||
61007b31 | 3941 | qsort(formats, count, sizeof(formats[0]), qsort_strcmp); |
40b4f539 | 3942 | |
61007b31 SH |
3943 | for (i = 0; i < count; i++) { |
3944 | it(opaque, formats[i]); | |
3945 | } | |
40b4f539 | 3946 | |
61007b31 SH |
3947 | g_free(formats); |
3948 | } | |
40b4f539 | 3949 | |
61007b31 SH |
3950 | /* This function is to find a node in the bs graph */ |
3951 | BlockDriverState *bdrv_find_node(const char *node_name) | |
3952 | { | |
3953 | BlockDriverState *bs; | |
391827eb | 3954 | |
61007b31 | 3955 | assert(node_name); |
40b4f539 | 3956 | |
61007b31 SH |
3957 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
3958 | if (!strcmp(node_name, bs->node_name)) { | |
3959 | return bs; | |
40b4f539 KW |
3960 | } |
3961 | } | |
61007b31 | 3962 | return NULL; |
40b4f539 KW |
3963 | } |
3964 | ||
61007b31 SH |
3965 | /* Put this QMP function here so it can access the static graph_bdrv_states. */ |
3966 | BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp) | |
40b4f539 | 3967 | { |
61007b31 SH |
3968 | BlockDeviceInfoList *list, *entry; |
3969 | BlockDriverState *bs; | |
40b4f539 | 3970 | |
61007b31 SH |
3971 | list = NULL; |
3972 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { | |
c83f9fba | 3973 | BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp); |
61007b31 SH |
3974 | if (!info) { |
3975 | qapi_free_BlockDeviceInfoList(list); | |
3976 | return NULL; | |
301db7c2 | 3977 | } |
61007b31 SH |
3978 | entry = g_malloc0(sizeof(*entry)); |
3979 | entry->value = info; | |
3980 | entry->next = list; | |
3981 | list = entry; | |
301db7c2 RH |
3982 | } |
3983 | ||
61007b31 SH |
3984 | return list; |
3985 | } | |
40b4f539 | 3986 | |
61007b31 SH |
3987 | BlockDriverState *bdrv_lookup_bs(const char *device, |
3988 | const char *node_name, | |
3989 | Error **errp) | |
3990 | { | |
3991 | BlockBackend *blk; | |
3992 | BlockDriverState *bs; | |
40b4f539 | 3993 | |
61007b31 SH |
3994 | if (device) { |
3995 | blk = blk_by_name(device); | |
40b4f539 | 3996 | |
61007b31 | 3997 | if (blk) { |
9f4ed6fb AG |
3998 | bs = blk_bs(blk); |
3999 | if (!bs) { | |
5433c24f | 4000 | error_setg(errp, "Device '%s' has no medium", device); |
5433c24f HR |
4001 | } |
4002 | ||
9f4ed6fb | 4003 | return bs; |
61007b31 SH |
4004 | } |
4005 | } | |
40b4f539 | 4006 | |
61007b31 SH |
4007 | if (node_name) { |
4008 | bs = bdrv_find_node(node_name); | |
6d519a5f | 4009 | |
61007b31 SH |
4010 | if (bs) { |
4011 | return bs; | |
4012 | } | |
40b4f539 KW |
4013 | } |
4014 | ||
61007b31 SH |
4015 | error_setg(errp, "Cannot find device=%s nor node_name=%s", |
4016 | device ? device : "", | |
4017 | node_name ? node_name : ""); | |
4018 | return NULL; | |
40b4f539 KW |
4019 | } |
4020 | ||
61007b31 SH |
4021 | /* If 'base' is in the same chain as 'top', return true. Otherwise, |
4022 | * return false. If either argument is NULL, return false. */ | |
4023 | bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) | |
83f64091 | 4024 | { |
61007b31 | 4025 | while (top && top != base) { |
760e0063 | 4026 | top = backing_bs(top); |
02c50efe | 4027 | } |
61007b31 SH |
4028 | |
4029 | return top != NULL; | |
02c50efe FZ |
4030 | } |
4031 | ||
61007b31 | 4032 | BlockDriverState *bdrv_next_node(BlockDriverState *bs) |
02c50efe | 4033 | { |
61007b31 SH |
4034 | if (!bs) { |
4035 | return QTAILQ_FIRST(&graph_bdrv_states); | |
02c50efe | 4036 | } |
61007b31 | 4037 | return QTAILQ_NEXT(bs, node_list); |
83f64091 FB |
4038 | } |
4039 | ||
61007b31 | 4040 | const char *bdrv_get_node_name(const BlockDriverState *bs) |
83f64091 | 4041 | { |
61007b31 | 4042 | return bs->node_name; |
beac80cd FB |
4043 | } |
4044 | ||
1f0c461b | 4045 | const char *bdrv_get_parent_name(const BlockDriverState *bs) |
4c265bf9 KW |
4046 | { |
4047 | BdrvChild *c; | |
4048 | const char *name; | |
4049 | ||
4050 | /* If multiple parents have a name, just pick the first one. */ | |
4051 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
4052 | if (c->role->get_name) { | |
4053 | name = c->role->get_name(c); | |
4054 | if (name && *name) { | |
4055 | return name; | |
4056 | } | |
4057 | } | |
4058 | } | |
4059 | ||
4060 | return NULL; | |
4061 | } | |
4062 | ||
61007b31 SH |
4063 | /* TODO check what callers really want: bs->node_name or blk_name() */ |
4064 | const char *bdrv_get_device_name(const BlockDriverState *bs) | |
beac80cd | 4065 | { |
4c265bf9 | 4066 | return bdrv_get_parent_name(bs) ?: ""; |
f141eafe | 4067 | } |
83f64091 | 4068 | |
61007b31 SH |
4069 | /* This can be used to identify nodes that might not have a device |
4070 | * name associated. Since node and device names live in the same | |
4071 | * namespace, the result is unambiguous. The exception is if both are | |
4072 | * absent, then this returns an empty (non-null) string. */ | |
4073 | const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) | |
f141eafe | 4074 | { |
4c265bf9 | 4075 | return bdrv_get_parent_name(bs) ?: bs->node_name; |
beac80cd | 4076 | } |
beac80cd | 4077 | |
61007b31 | 4078 | int bdrv_get_flags(BlockDriverState *bs) |
0b5a2445 | 4079 | { |
61007b31 | 4080 | return bs->open_flags; |
0b5a2445 PB |
4081 | } |
4082 | ||
61007b31 | 4083 | int bdrv_has_zero_init_1(BlockDriverState *bs) |
68485420 | 4084 | { |
61007b31 | 4085 | return 1; |
0b5a2445 PB |
4086 | } |
4087 | ||
61007b31 | 4088 | int bdrv_has_zero_init(BlockDriverState *bs) |
0b5a2445 | 4089 | { |
d470ad42 HR |
4090 | if (!bs->drv) { |
4091 | return 0; | |
4092 | } | |
0b5a2445 | 4093 | |
61007b31 SH |
4094 | /* If BS is a copy on write image, it is initialized to |
4095 | the contents of the base image, which may not be zeroes. */ | |
760e0063 | 4096 | if (bs->backing) { |
61007b31 SH |
4097 | return 0; |
4098 | } | |
4099 | if (bs->drv->bdrv_has_zero_init) { | |
4100 | return bs->drv->bdrv_has_zero_init(bs); | |
0b5a2445 | 4101 | } |
5a612c00 MP |
4102 | if (bs->file && bs->drv->is_filter) { |
4103 | return bdrv_has_zero_init(bs->file->bs); | |
4104 | } | |
61007b31 SH |
4105 | |
4106 | /* safe default */ | |
4107 | return 0; | |
68485420 KW |
4108 | } |
4109 | ||
61007b31 | 4110 | bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs) |
b2a61371 | 4111 | { |
61007b31 | 4112 | BlockDriverInfo bdi; |
b2a61371 | 4113 | |
760e0063 | 4114 | if (bs->backing) { |
61007b31 SH |
4115 | return false; |
4116 | } | |
4117 | ||
4118 | if (bdrv_get_info(bs, &bdi) == 0) { | |
4119 | return bdi.unallocated_blocks_are_zero; | |
b2a61371 SH |
4120 | } |
4121 | ||
61007b31 | 4122 | return false; |
b2a61371 SH |
4123 | } |
4124 | ||
61007b31 | 4125 | bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) |
68485420 | 4126 | { |
2f0342ef | 4127 | if (!(bs->open_flags & BDRV_O_UNMAP)) { |
61007b31 SH |
4128 | return false; |
4129 | } | |
68485420 | 4130 | |
e24d813b | 4131 | return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; |
68485420 KW |
4132 | } |
4133 | ||
61007b31 | 4134 | const char *bdrv_get_encrypted_filename(BlockDriverState *bs) |
b2e12bc6 | 4135 | { |
760e0063 | 4136 | if (bs->backing && bs->backing->bs->encrypted) |
61007b31 SH |
4137 | return bs->backing_file; |
4138 | else if (bs->encrypted) | |
4139 | return bs->filename; | |
4140 | else | |
4141 | return NULL; | |
b2e12bc6 CH |
4142 | } |
4143 | ||
61007b31 SH |
4144 | void bdrv_get_backing_filename(BlockDriverState *bs, |
4145 | char *filename, int filename_size) | |
016f5cf6 | 4146 | { |
61007b31 SH |
4147 | pstrcpy(filename, filename_size, bs->backing_file); |
4148 | } | |
d318aea9 | 4149 | |
61007b31 SH |
4150 | int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
4151 | { | |
4152 | BlockDriver *drv = bs->drv; | |
5a612c00 MP |
4153 | /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ |
4154 | if (!drv) { | |
61007b31 | 4155 | return -ENOMEDIUM; |
5a612c00 MP |
4156 | } |
4157 | if (!drv->bdrv_get_info) { | |
4158 | if (bs->file && drv->is_filter) { | |
4159 | return bdrv_get_info(bs->file->bs, bdi); | |
4160 | } | |
61007b31 | 4161 | return -ENOTSUP; |
5a612c00 | 4162 | } |
61007b31 SH |
4163 | memset(bdi, 0, sizeof(*bdi)); |
4164 | return drv->bdrv_get_info(bs, bdi); | |
4165 | } | |
016f5cf6 | 4166 | |
61007b31 SH |
4167 | ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs) |
4168 | { | |
4169 | BlockDriver *drv = bs->drv; | |
4170 | if (drv && drv->bdrv_get_specific_info) { | |
4171 | return drv->bdrv_get_specific_info(bs); | |
4172 | } | |
4173 | return NULL; | |
016f5cf6 AG |
4174 | } |
4175 | ||
a31939e6 | 4176 | void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) |
4265d620 | 4177 | { |
61007b31 SH |
4178 | if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { |
4179 | return; | |
4180 | } | |
4265d620 | 4181 | |
61007b31 | 4182 | bs->drv->bdrv_debug_event(bs, event); |
4265d620 PB |
4183 | } |
4184 | ||
61007b31 SH |
4185 | int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, |
4186 | const char *tag) | |
4265d620 | 4187 | { |
61007b31 | 4188 | while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { |
9a4f4c31 | 4189 | bs = bs->file ? bs->file->bs : NULL; |
61007b31 | 4190 | } |
4265d620 | 4191 | |
61007b31 SH |
4192 | if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { |
4193 | return bs->drv->bdrv_debug_breakpoint(bs, event, tag); | |
4194 | } | |
4265d620 | 4195 | |
61007b31 | 4196 | return -ENOTSUP; |
4265d620 PB |
4197 | } |
4198 | ||
61007b31 | 4199 | int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) |
ea2384d3 | 4200 | { |
61007b31 | 4201 | while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) { |
9a4f4c31 | 4202 | bs = bs->file ? bs->file->bs : NULL; |
61007b31 | 4203 | } |
ce1a14dc | 4204 | |
61007b31 SH |
4205 | if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) { |
4206 | return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); | |
4207 | } | |
4208 | ||
4209 | return -ENOTSUP; | |
eb852011 MA |
4210 | } |
4211 | ||
61007b31 | 4212 | int bdrv_debug_resume(BlockDriverState *bs, const char *tag) |
ce1a14dc | 4213 | { |
61007b31 | 4214 | while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { |
9a4f4c31 | 4215 | bs = bs->file ? bs->file->bs : NULL; |
61007b31 | 4216 | } |
ce1a14dc | 4217 | |
61007b31 SH |
4218 | if (bs && bs->drv && bs->drv->bdrv_debug_resume) { |
4219 | return bs->drv->bdrv_debug_resume(bs, tag); | |
4220 | } | |
ce1a14dc | 4221 | |
61007b31 | 4222 | return -ENOTSUP; |
f197fe2b FZ |
4223 | } |
4224 | ||
61007b31 | 4225 | bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) |
ce1a14dc | 4226 | { |
61007b31 | 4227 | while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { |
9a4f4c31 | 4228 | bs = bs->file ? bs->file->bs : NULL; |
f197fe2b | 4229 | } |
19cb3738 | 4230 | |
61007b31 SH |
4231 | if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { |
4232 | return bs->drv->bdrv_debug_is_suspended(bs, tag); | |
4233 | } | |
f9f05dc5 | 4234 | |
61007b31 SH |
4235 | return false; |
4236 | } | |
f9f05dc5 | 4237 | |
61007b31 SH |
4238 | /* backing_file can either be relative, or absolute, or a protocol. If it is |
4239 | * relative, it must be relative to the chain. So, passing in bs->filename | |
4240 | * from a BDS as backing_file should not be done, as that may be relative to | |
4241 | * the CWD rather than the chain. */ | |
4242 | BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, | |
4243 | const char *backing_file) | |
f9f05dc5 | 4244 | { |
61007b31 SH |
4245 | char *filename_full = NULL; |
4246 | char *backing_file_full = NULL; | |
4247 | char *filename_tmp = NULL; | |
4248 | int is_protocol = 0; | |
4249 | BlockDriverState *curr_bs = NULL; | |
4250 | BlockDriverState *retval = NULL; | |
418661e0 | 4251 | Error *local_error = NULL; |
f9f05dc5 | 4252 | |
61007b31 SH |
4253 | if (!bs || !bs->drv || !backing_file) { |
4254 | return NULL; | |
f9f05dc5 KW |
4255 | } |
4256 | ||
61007b31 SH |
4257 | filename_full = g_malloc(PATH_MAX); |
4258 | backing_file_full = g_malloc(PATH_MAX); | |
4259 | filename_tmp = g_malloc(PATH_MAX); | |
f9f05dc5 | 4260 | |
61007b31 | 4261 | is_protocol = path_has_protocol(backing_file); |
f9f05dc5 | 4262 | |
760e0063 | 4263 | for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) { |
f9f05dc5 | 4264 | |
61007b31 SH |
4265 | /* If either of the filename paths is actually a protocol, then |
4266 | * compare unmodified paths; otherwise make paths relative */ | |
4267 | if (is_protocol || path_has_protocol(curr_bs->backing_file)) { | |
4268 | if (strcmp(backing_file, curr_bs->backing_file) == 0) { | |
760e0063 | 4269 | retval = curr_bs->backing->bs; |
61007b31 SH |
4270 | break; |
4271 | } | |
418661e0 JC |
4272 | /* Also check against the full backing filename for the image */ |
4273 | bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX, | |
4274 | &local_error); | |
4275 | if (local_error == NULL) { | |
4276 | if (strcmp(backing_file, backing_file_full) == 0) { | |
4277 | retval = curr_bs->backing->bs; | |
4278 | break; | |
4279 | } | |
4280 | } else { | |
4281 | error_free(local_error); | |
4282 | local_error = NULL; | |
4283 | } | |
61007b31 SH |
4284 | } else { |
4285 | /* If not an absolute filename path, make it relative to the current | |
4286 | * image's filename path */ | |
4287 | path_combine(filename_tmp, PATH_MAX, curr_bs->filename, | |
4288 | backing_file); | |
f9f05dc5 | 4289 | |
61007b31 SH |
4290 | /* We are going to compare absolute pathnames */ |
4291 | if (!realpath(filename_tmp, filename_full)) { | |
4292 | continue; | |
4293 | } | |
07f07615 | 4294 | |
61007b31 SH |
4295 | /* We need to make sure the backing filename we are comparing against |
4296 | * is relative to the current image filename (or absolute) */ | |
4297 | path_combine(filename_tmp, PATH_MAX, curr_bs->filename, | |
4298 | curr_bs->backing_file); | |
07f07615 | 4299 | |
61007b31 SH |
4300 | if (!realpath(filename_tmp, backing_file_full)) { |
4301 | continue; | |
4302 | } | |
eb489bb1 | 4303 | |
61007b31 | 4304 | if (strcmp(backing_file_full, filename_full) == 0) { |
760e0063 | 4305 | retval = curr_bs->backing->bs; |
61007b31 SH |
4306 | break; |
4307 | } | |
4308 | } | |
eb489bb1 KW |
4309 | } |
4310 | ||
61007b31 SH |
4311 | g_free(filename_full); |
4312 | g_free(backing_file_full); | |
4313 | g_free(filename_tmp); | |
4314 | return retval; | |
4315 | } | |
4316 | ||
61007b31 SH |
4317 | void bdrv_init(void) |
4318 | { | |
4319 | module_call_init(MODULE_INIT_BLOCK); | |
4320 | } | |
29cdb251 | 4321 | |
61007b31 SH |
4322 | void bdrv_init_with_whitelist(void) |
4323 | { | |
4324 | use_bdrv_whitelist = 1; | |
4325 | bdrv_init(); | |
07f07615 PB |
4326 | } |
4327 | ||
2b148f39 PB |
4328 | static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, |
4329 | Error **errp) | |
0f15423c | 4330 | { |
4417ab7a | 4331 | BdrvChild *child, *parent; |
9c5e6594 | 4332 | uint64_t perm, shared_perm; |
5a8a30db KW |
4333 | Error *local_err = NULL; |
4334 | int ret; | |
4335 | ||
3456a8d1 KW |
4336 | if (!bs->drv) { |
4337 | return; | |
4338 | } | |
4339 | ||
04c01a5c | 4340 | if (!(bs->open_flags & BDRV_O_INACTIVE)) { |
7ea2d269 AK |
4341 | return; |
4342 | } | |
7ea2d269 | 4343 | |
16e977d5 | 4344 | QLIST_FOREACH(child, &bs->children, next) { |
2b148f39 | 4345 | bdrv_co_invalidate_cache(child->bs, &local_err); |
0d1c5c91 | 4346 | if (local_err) { |
0d1c5c91 FZ |
4347 | error_propagate(errp, local_err); |
4348 | return; | |
4349 | } | |
5a8a30db | 4350 | } |
0d1c5c91 | 4351 | |
dafe0960 KW |
4352 | /* |
4353 | * Update permissions, they may differ for inactive nodes. | |
4354 | * | |
4355 | * Note that the required permissions of inactive images are always a | |
4356 | * subset of the permissions required after activating the image. This | |
4357 | * allows us to just get the permissions upfront without restricting | |
4358 | * drv->bdrv_invalidate_cache(). | |
4359 | * | |
4360 | * It also means that in error cases, we don't have to try and revert to | |
4361 | * the old permissions (which is an operation that could fail, too). We can | |
4362 | * just keep the extended permissions for the next time that an activation | |
4363 | * of the image is tried. | |
4364 | */ | |
16e977d5 | 4365 | bs->open_flags &= ~BDRV_O_INACTIVE; |
dafe0960 KW |
4366 | bdrv_get_cumulative_perm(bs, &perm, &shared_perm); |
4367 | ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err); | |
4368 | if (ret < 0) { | |
4369 | bs->open_flags |= BDRV_O_INACTIVE; | |
4370 | error_propagate(errp, local_err); | |
4371 | return; | |
4372 | } | |
4373 | bdrv_set_perm(bs, perm, shared_perm); | |
4374 | ||
2b148f39 PB |
4375 | if (bs->drv->bdrv_co_invalidate_cache) { |
4376 | bs->drv->bdrv_co_invalidate_cache(bs, &local_err); | |
0d1c5c91 FZ |
4377 | if (local_err) { |
4378 | bs->open_flags |= BDRV_O_INACTIVE; | |
4379 | error_propagate(errp, local_err); | |
4380 | return; | |
4381 | } | |
0f15423c | 4382 | } |
3456a8d1 | 4383 | |
5a8a30db KW |
4384 | ret = refresh_total_sectors(bs, bs->total_sectors); |
4385 | if (ret < 0) { | |
04c01a5c | 4386 | bs->open_flags |= BDRV_O_INACTIVE; |
5a8a30db KW |
4387 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); |
4388 | return; | |
4389 | } | |
4417ab7a KW |
4390 | |
4391 | QLIST_FOREACH(parent, &bs->parents, next_parent) { | |
4392 | if (parent->role->activate) { | |
4393 | parent->role->activate(parent, &local_err); | |
4394 | if (local_err) { | |
4395 | error_propagate(errp, local_err); | |
4396 | return; | |
4397 | } | |
4398 | } | |
4399 | } | |
0f15423c AL |
4400 | } |
4401 | ||
2b148f39 PB |
4402 | typedef struct InvalidateCacheCo { |
4403 | BlockDriverState *bs; | |
4404 | Error **errp; | |
4405 | bool done; | |
4406 | } InvalidateCacheCo; | |
4407 | ||
4408 | static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque) | |
4409 | { | |
4410 | InvalidateCacheCo *ico = opaque; | |
4411 | bdrv_co_invalidate_cache(ico->bs, ico->errp); | |
4412 | ico->done = true; | |
4413 | } | |
4414 | ||
4415 | void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp) | |
4416 | { | |
4417 | Coroutine *co; | |
4418 | InvalidateCacheCo ico = { | |
4419 | .bs = bs, | |
4420 | .done = false, | |
4421 | .errp = errp | |
4422 | }; | |
4423 | ||
4424 | if (qemu_in_coroutine()) { | |
4425 | /* Fast-path if already in coroutine context */ | |
4426 | bdrv_invalidate_cache_co_entry(&ico); | |
4427 | } else { | |
4428 | co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico); | |
4429 | qemu_coroutine_enter(co); | |
4430 | BDRV_POLL_WHILE(bs, !ico.done); | |
4431 | } | |
4432 | } | |
4433 | ||
5a8a30db | 4434 | void bdrv_invalidate_cache_all(Error **errp) |
0f15423c | 4435 | { |
7c8eece4 | 4436 | BlockDriverState *bs; |
5a8a30db | 4437 | Error *local_err = NULL; |
88be7b4b | 4438 | BdrvNextIterator it; |
0f15423c | 4439 | |
88be7b4b | 4440 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
ed78cda3 SH |
4441 | AioContext *aio_context = bdrv_get_aio_context(bs); |
4442 | ||
4443 | aio_context_acquire(aio_context); | |
5a8a30db | 4444 | bdrv_invalidate_cache(bs, &local_err); |
ed78cda3 | 4445 | aio_context_release(aio_context); |
5a8a30db KW |
4446 | if (local_err) { |
4447 | error_propagate(errp, local_err); | |
5e003f17 | 4448 | bdrv_next_cleanup(&it); |
5a8a30db KW |
4449 | return; |
4450 | } | |
0f15423c AL |
4451 | } |
4452 | } | |
4453 | ||
aad0b7a0 FZ |
4454 | static int bdrv_inactivate_recurse(BlockDriverState *bs, |
4455 | bool setting_flag) | |
76b1c7fe | 4456 | { |
cfa1a572 | 4457 | BdrvChild *child, *parent; |
76b1c7fe KW |
4458 | int ret; |
4459 | ||
d470ad42 HR |
4460 | if (!bs->drv) { |
4461 | return -ENOMEDIUM; | |
4462 | } | |
4463 | ||
aad0b7a0 | 4464 | if (!setting_flag && bs->drv->bdrv_inactivate) { |
76b1c7fe KW |
4465 | ret = bs->drv->bdrv_inactivate(bs); |
4466 | if (ret < 0) { | |
4467 | return ret; | |
4468 | } | |
4469 | } | |
4470 | ||
7d5b5261 | 4471 | if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) { |
9c5e6594 KW |
4472 | uint64_t perm, shared_perm; |
4473 | ||
cfa1a572 KW |
4474 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
4475 | if (parent->role->inactivate) { | |
4476 | ret = parent->role->inactivate(parent); | |
4477 | if (ret < 0) { | |
cfa1a572 KW |
4478 | return ret; |
4479 | } | |
4480 | } | |
4481 | } | |
9c5e6594 | 4482 | |
7d5b5261 SH |
4483 | bs->open_flags |= BDRV_O_INACTIVE; |
4484 | ||
9c5e6594 KW |
4485 | /* Update permissions, they may differ for inactive nodes */ |
4486 | bdrv_get_cumulative_perm(bs, &perm, &shared_perm); | |
3121fb45 | 4487 | bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort); |
9c5e6594 | 4488 | bdrv_set_perm(bs, perm, shared_perm); |
aad0b7a0 | 4489 | } |
38701b6a KW |
4490 | |
4491 | QLIST_FOREACH(child, &bs->children, next) { | |
4492 | ret = bdrv_inactivate_recurse(child->bs, setting_flag); | |
4493 | if (ret < 0) { | |
4494 | return ret; | |
4495 | } | |
4496 | } | |
4497 | ||
615b5dcf VSO |
4498 | /* At this point persistent bitmaps should be already stored by the format |
4499 | * driver */ | |
4500 | bdrv_release_persistent_dirty_bitmaps(bs); | |
4501 | ||
76b1c7fe KW |
4502 | return 0; |
4503 | } | |
4504 | ||
4505 | int bdrv_inactivate_all(void) | |
4506 | { | |
79720af6 | 4507 | BlockDriverState *bs = NULL; |
88be7b4b | 4508 | BdrvNextIterator it; |
aad0b7a0 FZ |
4509 | int ret = 0; |
4510 | int pass; | |
bd6458e4 | 4511 | GSList *aio_ctxs = NULL, *ctx; |
76b1c7fe | 4512 | |
88be7b4b | 4513 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
bd6458e4 PB |
4514 | AioContext *aio_context = bdrv_get_aio_context(bs); |
4515 | ||
4516 | if (!g_slist_find(aio_ctxs, aio_context)) { | |
4517 | aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); | |
4518 | aio_context_acquire(aio_context); | |
4519 | } | |
aad0b7a0 | 4520 | } |
76b1c7fe | 4521 | |
aad0b7a0 FZ |
4522 | /* We do two passes of inactivation. The first pass calls to drivers' |
4523 | * .bdrv_inactivate callbacks recursively so all cache is flushed to disk; | |
4524 | * the second pass sets the BDRV_O_INACTIVE flag so that no further write | |
4525 | * is allowed. */ | |
4526 | for (pass = 0; pass < 2; pass++) { | |
88be7b4b | 4527 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
aad0b7a0 FZ |
4528 | ret = bdrv_inactivate_recurse(bs, pass); |
4529 | if (ret < 0) { | |
5e003f17 | 4530 | bdrv_next_cleanup(&it); |
aad0b7a0 FZ |
4531 | goto out; |
4532 | } | |
76b1c7fe KW |
4533 | } |
4534 | } | |
4535 | ||
aad0b7a0 | 4536 | out: |
bd6458e4 PB |
4537 | for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { |
4538 | AioContext *aio_context = ctx->data; | |
4539 | aio_context_release(aio_context); | |
aad0b7a0 | 4540 | } |
bd6458e4 | 4541 | g_slist_free(aio_ctxs); |
aad0b7a0 FZ |
4542 | |
4543 | return ret; | |
76b1c7fe KW |
4544 | } |
4545 | ||
19cb3738 FB |
4546 | /**************************************************************/ |
4547 | /* removable device support */ | |
4548 | ||
4549 | /** | |
4550 | * Return TRUE if the media is present | |
4551 | */ | |
e031f750 | 4552 | bool bdrv_is_inserted(BlockDriverState *bs) |
19cb3738 FB |
4553 | { |
4554 | BlockDriver *drv = bs->drv; | |
28d7a789 | 4555 | BdrvChild *child; |
a1aff5bf | 4556 | |
e031f750 HR |
4557 | if (!drv) { |
4558 | return false; | |
4559 | } | |
28d7a789 HR |
4560 | if (drv->bdrv_is_inserted) { |
4561 | return drv->bdrv_is_inserted(bs); | |
4562 | } | |
4563 | QLIST_FOREACH(child, &bs->children, next) { | |
4564 | if (!bdrv_is_inserted(child->bs)) { | |
4565 | return false; | |
4566 | } | |
e031f750 | 4567 | } |
28d7a789 | 4568 | return true; |
19cb3738 FB |
4569 | } |
4570 | ||
19cb3738 FB |
4571 | /** |
4572 | * If eject_flag is TRUE, eject the media. Otherwise, close the tray | |
4573 | */ | |
f36f3949 | 4574 | void bdrv_eject(BlockDriverState *bs, bool eject_flag) |
19cb3738 FB |
4575 | { |
4576 | BlockDriver *drv = bs->drv; | |
19cb3738 | 4577 | |
822e1cd1 MA |
4578 | if (drv && drv->bdrv_eject) { |
4579 | drv->bdrv_eject(bs, eject_flag); | |
19cb3738 FB |
4580 | } |
4581 | } | |
4582 | ||
19cb3738 FB |
4583 | /** |
4584 | * Lock or unlock the media (if it is locked, the user won't be able | |
4585 | * to eject it manually). | |
4586 | */ | |
025e849a | 4587 | void bdrv_lock_medium(BlockDriverState *bs, bool locked) |
19cb3738 FB |
4588 | { |
4589 | BlockDriver *drv = bs->drv; | |
4590 | ||
025e849a | 4591 | trace_bdrv_lock_medium(bs, locked); |
b8c6d095 | 4592 | |
025e849a MA |
4593 | if (drv && drv->bdrv_lock_medium) { |
4594 | drv->bdrv_lock_medium(bs, locked); | |
19cb3738 FB |
4595 | } |
4596 | } | |
985a03b0 | 4597 | |
9fcb0251 FZ |
4598 | /* Get a reference to bs */ |
4599 | void bdrv_ref(BlockDriverState *bs) | |
4600 | { | |
4601 | bs->refcnt++; | |
4602 | } | |
4603 | ||
4604 | /* Release a previously grabbed reference to bs. | |
4605 | * If after releasing, reference count is zero, the BlockDriverState is | |
4606 | * deleted. */ | |
4607 | void bdrv_unref(BlockDriverState *bs) | |
4608 | { | |
9a4d5ca6 JC |
4609 | if (!bs) { |
4610 | return; | |
4611 | } | |
9fcb0251 FZ |
4612 | assert(bs->refcnt > 0); |
4613 | if (--bs->refcnt == 0) { | |
4614 | bdrv_delete(bs); | |
4615 | } | |
4616 | } | |
4617 | ||
fbe40ff7 FZ |
4618 | struct BdrvOpBlocker { |
4619 | Error *reason; | |
4620 | QLIST_ENTRY(BdrvOpBlocker) list; | |
4621 | }; | |
4622 | ||
4623 | bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) | |
4624 | { | |
4625 | BdrvOpBlocker *blocker; | |
4626 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); | |
4627 | if (!QLIST_EMPTY(&bs->op_blockers[op])) { | |
4628 | blocker = QLIST_FIRST(&bs->op_blockers[op]); | |
57ef3f12 EH |
4629 | error_propagate(errp, error_copy(blocker->reason)); |
4630 | error_prepend(errp, "Node '%s' is busy: ", | |
4631 | bdrv_get_device_or_node_name(bs)); | |
fbe40ff7 FZ |
4632 | return true; |
4633 | } | |
4634 | return false; | |
4635 | } | |
4636 | ||
4637 | void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) | |
4638 | { | |
4639 | BdrvOpBlocker *blocker; | |
4640 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); | |
4641 | ||
5839e53b | 4642 | blocker = g_new0(BdrvOpBlocker, 1); |
fbe40ff7 FZ |
4643 | blocker->reason = reason; |
4644 | QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); | |
4645 | } | |
4646 | ||
4647 | void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) | |
4648 | { | |
4649 | BdrvOpBlocker *blocker, *next; | |
4650 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); | |
4651 | QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { | |
4652 | if (blocker->reason == reason) { | |
4653 | QLIST_REMOVE(blocker, list); | |
4654 | g_free(blocker); | |
4655 | } | |
4656 | } | |
4657 | } | |
4658 | ||
4659 | void bdrv_op_block_all(BlockDriverState *bs, Error *reason) | |
4660 | { | |
4661 | int i; | |
4662 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { | |
4663 | bdrv_op_block(bs, i, reason); | |
4664 | } | |
4665 | } | |
4666 | ||
4667 | void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) | |
4668 | { | |
4669 | int i; | |
4670 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { | |
4671 | bdrv_op_unblock(bs, i, reason); | |
4672 | } | |
4673 | } | |
4674 | ||
4675 | bool bdrv_op_blocker_is_empty(BlockDriverState *bs) | |
4676 | { | |
4677 | int i; | |
4678 | ||
4679 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { | |
4680 | if (!QLIST_EMPTY(&bs->op_blockers[i])) { | |
4681 | return false; | |
4682 | } | |
4683 | } | |
4684 | return true; | |
4685 | } | |
4686 | ||
d92ada22 LC |
4687 | void bdrv_img_create(const char *filename, const char *fmt, |
4688 | const char *base_filename, const char *base_fmt, | |
9217283d FZ |
4689 | char *options, uint64_t img_size, int flags, bool quiet, |
4690 | Error **errp) | |
f88e1a42 | 4691 | { |
83d0521a CL |
4692 | QemuOptsList *create_opts = NULL; |
4693 | QemuOpts *opts = NULL; | |
4694 | const char *backing_fmt, *backing_file; | |
4695 | int64_t size; | |
f88e1a42 | 4696 | BlockDriver *drv, *proto_drv; |
cc84d90f | 4697 | Error *local_err = NULL; |
f88e1a42 JS |
4698 | int ret = 0; |
4699 | ||
4700 | /* Find driver and parse its options */ | |
4701 | drv = bdrv_find_format(fmt); | |
4702 | if (!drv) { | |
71c79813 | 4703 | error_setg(errp, "Unknown file format '%s'", fmt); |
d92ada22 | 4704 | return; |
f88e1a42 JS |
4705 | } |
4706 | ||
b65a5e12 | 4707 | proto_drv = bdrv_find_protocol(filename, true, errp); |
f88e1a42 | 4708 | if (!proto_drv) { |
d92ada22 | 4709 | return; |
f88e1a42 JS |
4710 | } |
4711 | ||
c6149724 HR |
4712 | if (!drv->create_opts) { |
4713 | error_setg(errp, "Format driver '%s' does not support image creation", | |
4714 | drv->format_name); | |
4715 | return; | |
4716 | } | |
4717 | ||
4718 | if (!proto_drv->create_opts) { | |
4719 | error_setg(errp, "Protocol driver '%s' does not support image creation", | |
4720 | proto_drv->format_name); | |
4721 | return; | |
4722 | } | |
4723 | ||
c282e1fd CL |
4724 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
4725 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); | |
f88e1a42 JS |
4726 | |
4727 | /* Create parameter list with default values */ | |
83d0521a | 4728 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
39101f25 | 4729 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); |
f88e1a42 JS |
4730 | |
4731 | /* Parse -o options */ | |
4732 | if (options) { | |
dc523cd3 MA |
4733 | qemu_opts_do_parse(opts, options, NULL, &local_err); |
4734 | if (local_err) { | |
4735 | error_report_err(local_err); | |
4736 | local_err = NULL; | |
83d0521a | 4737 | error_setg(errp, "Invalid options for file format '%s'", fmt); |
f88e1a42 JS |
4738 | goto out; |
4739 | } | |
4740 | } | |
4741 | ||
4742 | if (base_filename) { | |
f43e47db | 4743 | qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err); |
6be4194b | 4744 | if (local_err) { |
71c79813 LC |
4745 | error_setg(errp, "Backing file not supported for file format '%s'", |
4746 | fmt); | |
f88e1a42 JS |
4747 | goto out; |
4748 | } | |
4749 | } | |
4750 | ||
4751 | if (base_fmt) { | |
f43e47db | 4752 | qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err); |
6be4194b | 4753 | if (local_err) { |
71c79813 LC |
4754 | error_setg(errp, "Backing file format not supported for file " |
4755 | "format '%s'", fmt); | |
f88e1a42 JS |
4756 | goto out; |
4757 | } | |
4758 | } | |
4759 | ||
83d0521a CL |
4760 | backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); |
4761 | if (backing_file) { | |
4762 | if (!strcmp(filename, backing_file)) { | |
71c79813 LC |
4763 | error_setg(errp, "Error: Trying to create an image with the " |
4764 | "same filename as the backing file"); | |
792da93a JS |
4765 | goto out; |
4766 | } | |
4767 | } | |
4768 | ||
83d0521a | 4769 | backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); |
f88e1a42 | 4770 | |
6e6e55f5 JS |
4771 | /* The size for the image must always be specified, unless we have a backing |
4772 | * file and we have not been forbidden from opening it. */ | |
a8b42a1c | 4773 | size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); |
6e6e55f5 JS |
4774 | if (backing_file && !(flags & BDRV_O_NO_BACKING)) { |
4775 | BlockDriverState *bs; | |
4776 | char *full_backing = g_new0(char, PATH_MAX); | |
4777 | int back_flags; | |
4778 | QDict *backing_options = NULL; | |
4779 | ||
4780 | bdrv_get_full_backing_filename_from_filename(filename, backing_file, | |
4781 | full_backing, PATH_MAX, | |
4782 | &local_err); | |
4783 | if (local_err) { | |
4784 | g_free(full_backing); | |
4785 | goto out; | |
4786 | } | |
29168018 | 4787 | |
6e6e55f5 JS |
4788 | /* backing files always opened read-only */ |
4789 | back_flags = flags; | |
4790 | back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); | |
f88e1a42 | 4791 | |
cc954f01 | 4792 | backing_options = qdict_new(); |
6e6e55f5 | 4793 | if (backing_fmt) { |
6e6e55f5 JS |
4794 | qdict_put_str(backing_options, "driver", backing_fmt); |
4795 | } | |
cc954f01 | 4796 | qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); |
e6641719 | 4797 | |
6e6e55f5 JS |
4798 | bs = bdrv_open(full_backing, NULL, backing_options, back_flags, |
4799 | &local_err); | |
4800 | g_free(full_backing); | |
4801 | if (!bs && size != -1) { | |
4802 | /* Couldn't open BS, but we have a size, so it's nonfatal */ | |
4803 | warn_reportf_err(local_err, | |
4804 | "Could not verify backing image. " | |
4805 | "This may become an error in future versions.\n"); | |
4806 | local_err = NULL; | |
4807 | } else if (!bs) { | |
4808 | /* Couldn't open bs, do not have size */ | |
4809 | error_append_hint(&local_err, | |
4810 | "Could not open backing image to determine size.\n"); | |
4811 | goto out; | |
4812 | } else { | |
4813 | if (size == -1) { | |
4814 | /* Opened BS, have no size */ | |
4815 | size = bdrv_getlength(bs); | |
4816 | if (size < 0) { | |
4817 | error_setg_errno(errp, -size, "Could not get size of '%s'", | |
4818 | backing_file); | |
4819 | bdrv_unref(bs); | |
4820 | goto out; | |
4821 | } | |
4822 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); | |
52bf1e72 | 4823 | } |
66f6b814 | 4824 | bdrv_unref(bs); |
f88e1a42 | 4825 | } |
6e6e55f5 JS |
4826 | } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ |
4827 | ||
4828 | if (size == -1) { | |
4829 | error_setg(errp, "Image creation needs a size parameter"); | |
4830 | goto out; | |
f88e1a42 JS |
4831 | } |
4832 | ||
f382d43a | 4833 | if (!quiet) { |
fe646693 | 4834 | printf("Formatting '%s', fmt=%s ", filename, fmt); |
43c5d8f8 | 4835 | qemu_opts_print(opts, " "); |
f382d43a MR |
4836 | puts(""); |
4837 | } | |
83d0521a | 4838 | |
c282e1fd | 4839 | ret = bdrv_create(drv, filename, opts, &local_err); |
83d0521a | 4840 | |
cc84d90f HR |
4841 | if (ret == -EFBIG) { |
4842 | /* This is generally a better message than whatever the driver would | |
4843 | * deliver (especially because of the cluster_size_hint), since that | |
4844 | * is most probably not much different from "image too large". */ | |
4845 | const char *cluster_size_hint = ""; | |
83d0521a | 4846 | if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { |
cc84d90f | 4847 | cluster_size_hint = " (try using a larger cluster size)"; |
f88e1a42 | 4848 | } |
cc84d90f HR |
4849 | error_setg(errp, "The image size is too large for file format '%s'" |
4850 | "%s", fmt, cluster_size_hint); | |
4851 | error_free(local_err); | |
4852 | local_err = NULL; | |
f88e1a42 JS |
4853 | } |
4854 | ||
4855 | out: | |
83d0521a CL |
4856 | qemu_opts_del(opts); |
4857 | qemu_opts_free(create_opts); | |
621ff94d | 4858 | error_propagate(errp, local_err); |
f88e1a42 | 4859 | } |
85d126f3 SH |
4860 | |
4861 | AioContext *bdrv_get_aio_context(BlockDriverState *bs) | |
4862 | { | |
33f2a757 | 4863 | return bs ? bs->aio_context : qemu_get_aio_context(); |
dcd04228 SH |
4864 | } |
4865 | ||
7719f3c9 SH |
4866 | AioWait *bdrv_get_aio_wait(BlockDriverState *bs) |
4867 | { | |
4868 | return bs ? &bs->wait : NULL; | |
dcd04228 SH |
4869 | } |
4870 | ||
052a7572 FZ |
4871 | void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co) |
4872 | { | |
4873 | aio_co_enter(bdrv_get_aio_context(bs), co); | |
4874 | } | |
4875 | ||
e8a095da SH |
4876 | static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) |
4877 | { | |
4878 | QLIST_REMOVE(ban, list); | |
4879 | g_free(ban); | |
4880 | } | |
4881 | ||
dcd04228 SH |
4882 | void bdrv_detach_aio_context(BlockDriverState *bs) |
4883 | { | |
e8a095da | 4884 | BdrvAioNotifier *baf, *baf_tmp; |
b97511c7 | 4885 | BdrvChild *child; |
33384421 | 4886 | |
dcd04228 SH |
4887 | if (!bs->drv) { |
4888 | return; | |
4889 | } | |
4890 | ||
e8a095da SH |
4891 | assert(!bs->walking_aio_notifiers); |
4892 | bs->walking_aio_notifiers = true; | |
4893 | QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { | |
4894 | if (baf->deleted) { | |
4895 | bdrv_do_remove_aio_context_notifier(baf); | |
4896 | } else { | |
4897 | baf->detach_aio_context(baf->opaque); | |
4898 | } | |
33384421 | 4899 | } |
e8a095da SH |
4900 | /* Never mind iterating again to check for ->deleted. bdrv_close() will |
4901 | * remove remaining aio notifiers if we aren't called again. | |
4902 | */ | |
4903 | bs->walking_aio_notifiers = false; | |
33384421 | 4904 | |
dcd04228 SH |
4905 | if (bs->drv->bdrv_detach_aio_context) { |
4906 | bs->drv->bdrv_detach_aio_context(bs); | |
4907 | } | |
b97511c7 HR |
4908 | QLIST_FOREACH(child, &bs->children, next) { |
4909 | bdrv_detach_aio_context(child->bs); | |
dcd04228 SH |
4910 | } |
4911 | ||
4912 | bs->aio_context = NULL; | |
4913 | } | |
4914 | ||
4915 | void bdrv_attach_aio_context(BlockDriverState *bs, | |
4916 | AioContext *new_context) | |
4917 | { | |
e8a095da | 4918 | BdrvAioNotifier *ban, *ban_tmp; |
b97511c7 | 4919 | BdrvChild *child; |
33384421 | 4920 | |
dcd04228 SH |
4921 | if (!bs->drv) { |
4922 | return; | |
4923 | } | |
4924 | ||
4925 | bs->aio_context = new_context; | |
4926 | ||
b97511c7 HR |
4927 | QLIST_FOREACH(child, &bs->children, next) { |
4928 | bdrv_attach_aio_context(child->bs, new_context); | |
dcd04228 SH |
4929 | } |
4930 | if (bs->drv->bdrv_attach_aio_context) { | |
4931 | bs->drv->bdrv_attach_aio_context(bs, new_context); | |
4932 | } | |
33384421 | 4933 | |
e8a095da SH |
4934 | assert(!bs->walking_aio_notifiers); |
4935 | bs->walking_aio_notifiers = true; | |
4936 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { | |
4937 | if (ban->deleted) { | |
4938 | bdrv_do_remove_aio_context_notifier(ban); | |
4939 | } else { | |
4940 | ban->attached_aio_context(new_context, ban->opaque); | |
4941 | } | |
33384421 | 4942 | } |
e8a095da | 4943 | bs->walking_aio_notifiers = false; |
dcd04228 SH |
4944 | } |
4945 | ||
4946 | void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) | |
4947 | { | |
aabf5910 | 4948 | AioContext *ctx = bdrv_get_aio_context(bs); |
c2b6428d | 4949 | |
aabf5910 | 4950 | aio_disable_external(ctx); |
0152bf40 | 4951 | bdrv_parent_drained_begin(bs, NULL); |
53ec73e2 | 4952 | bdrv_drain(bs); /* ensure there are no in-flight requests */ |
dcd04228 | 4953 | |
c2b6428d PB |
4954 | while (aio_poll(ctx, false)) { |
4955 | /* wait for all bottom halves to execute */ | |
4956 | } | |
4957 | ||
dcd04228 SH |
4958 | bdrv_detach_aio_context(bs); |
4959 | ||
4960 | /* This function executes in the old AioContext so acquire the new one in | |
4961 | * case it runs in a different thread. | |
4962 | */ | |
4963 | aio_context_acquire(new_context); | |
4964 | bdrv_attach_aio_context(bs, new_context); | |
0152bf40 | 4965 | bdrv_parent_drained_end(bs, NULL); |
aabf5910 | 4966 | aio_enable_external(ctx); |
dcd04228 | 4967 | aio_context_release(new_context); |
85d126f3 | 4968 | } |
d616b224 | 4969 | |
33384421 HR |
4970 | void bdrv_add_aio_context_notifier(BlockDriverState *bs, |
4971 | void (*attached_aio_context)(AioContext *new_context, void *opaque), | |
4972 | void (*detach_aio_context)(void *opaque), void *opaque) | |
4973 | { | |
4974 | BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); | |
4975 | *ban = (BdrvAioNotifier){ | |
4976 | .attached_aio_context = attached_aio_context, | |
4977 | .detach_aio_context = detach_aio_context, | |
4978 | .opaque = opaque | |
4979 | }; | |
4980 | ||
4981 | QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); | |
4982 | } | |
4983 | ||
4984 | void bdrv_remove_aio_context_notifier(BlockDriverState *bs, | |
4985 | void (*attached_aio_context)(AioContext *, | |
4986 | void *), | |
4987 | void (*detach_aio_context)(void *), | |
4988 | void *opaque) | |
4989 | { | |
4990 | BdrvAioNotifier *ban, *ban_next; | |
4991 | ||
4992 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { | |
4993 | if (ban->attached_aio_context == attached_aio_context && | |
4994 | ban->detach_aio_context == detach_aio_context && | |
e8a095da SH |
4995 | ban->opaque == opaque && |
4996 | ban->deleted == false) | |
33384421 | 4997 | { |
e8a095da SH |
4998 | if (bs->walking_aio_notifiers) { |
4999 | ban->deleted = true; | |
5000 | } else { | |
5001 | bdrv_do_remove_aio_context_notifier(ban); | |
5002 | } | |
33384421 HR |
5003 | return; |
5004 | } | |
5005 | } | |
5006 | ||
5007 | abort(); | |
5008 | } | |
5009 | ||
77485434 | 5010 | int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, |
d1402b50 HR |
5011 | BlockDriverAmendStatusCB *status_cb, void *cb_opaque, |
5012 | Error **errp) | |
6f176b48 | 5013 | { |
d470ad42 | 5014 | if (!bs->drv) { |
d1402b50 | 5015 | error_setg(errp, "Node is ejected"); |
d470ad42 HR |
5016 | return -ENOMEDIUM; |
5017 | } | |
c282e1fd | 5018 | if (!bs->drv->bdrv_amend_options) { |
d1402b50 HR |
5019 | error_setg(errp, "Block driver '%s' does not support option amendment", |
5020 | bs->drv->format_name); | |
6f176b48 HR |
5021 | return -ENOTSUP; |
5022 | } | |
d1402b50 | 5023 | return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp); |
6f176b48 | 5024 | } |
f6186f49 | 5025 | |
b5042a36 BC |
5026 | /* This function will be called by the bdrv_recurse_is_first_non_filter method |
5027 | * of block filter and by bdrv_is_first_non_filter. | |
5028 | * It is used to test if the given bs is the candidate or recurse more in the | |
5029 | * node graph. | |
212a5a8f | 5030 | */ |
b5042a36 | 5031 | bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, |
212a5a8f | 5032 | BlockDriverState *candidate) |
f6186f49 | 5033 | { |
b5042a36 BC |
5034 | /* return false if basic checks fails */ |
5035 | if (!bs || !bs->drv) { | |
212a5a8f | 5036 | return false; |
f6186f49 BC |
5037 | } |
5038 | ||
b5042a36 BC |
5039 | /* the code reached a non block filter driver -> check if the bs is |
5040 | * the same as the candidate. It's the recursion termination condition. | |
5041 | */ | |
5042 | if (!bs->drv->is_filter) { | |
5043 | return bs == candidate; | |
212a5a8f | 5044 | } |
b5042a36 | 5045 | /* Down this path the driver is a block filter driver */ |
212a5a8f | 5046 | |
b5042a36 BC |
5047 | /* If the block filter recursion method is defined use it to recurse down |
5048 | * the node graph. | |
5049 | */ | |
5050 | if (bs->drv->bdrv_recurse_is_first_non_filter) { | |
212a5a8f | 5051 | return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate); |
f6186f49 BC |
5052 | } |
5053 | ||
b5042a36 BC |
5054 | /* the driver is a block filter but don't allow to recurse -> return false |
5055 | */ | |
5056 | return false; | |
f6186f49 BC |
5057 | } |
5058 | ||
212a5a8f BC |
5059 | /* This function checks if the candidate is the first non filter bs down it's |
5060 | * bs chain. Since we don't have pointers to parents it explore all bs chains | |
5061 | * from the top. Some filters can choose not to pass down the recursion. | |
5062 | */ | |
5063 | bool bdrv_is_first_non_filter(BlockDriverState *candidate) | |
f6186f49 | 5064 | { |
7c8eece4 | 5065 | BlockDriverState *bs; |
88be7b4b | 5066 | BdrvNextIterator it; |
212a5a8f BC |
5067 | |
5068 | /* walk down the bs forest recursively */ | |
88be7b4b | 5069 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
212a5a8f BC |
5070 | bool perm; |
5071 | ||
b5042a36 | 5072 | /* try to recurse in this top level bs */ |
e6dc8a1f | 5073 | perm = bdrv_recurse_is_first_non_filter(bs, candidate); |
212a5a8f BC |
5074 | |
5075 | /* candidate is the first non filter */ | |
5076 | if (perm) { | |
5e003f17 | 5077 | bdrv_next_cleanup(&it); |
212a5a8f BC |
5078 | return true; |
5079 | } | |
5080 | } | |
5081 | ||
5082 | return false; | |
f6186f49 | 5083 | } |
09158f00 | 5084 | |
e12f3784 WC |
5085 | BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, |
5086 | const char *node_name, Error **errp) | |
09158f00 BC |
5087 | { |
5088 | BlockDriverState *to_replace_bs = bdrv_find_node(node_name); | |
5a7e7a0b SH |
5089 | AioContext *aio_context; |
5090 | ||
09158f00 BC |
5091 | if (!to_replace_bs) { |
5092 | error_setg(errp, "Node name '%s' not found", node_name); | |
5093 | return NULL; | |
5094 | } | |
5095 | ||
5a7e7a0b SH |
5096 | aio_context = bdrv_get_aio_context(to_replace_bs); |
5097 | aio_context_acquire(aio_context); | |
5098 | ||
09158f00 | 5099 | if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { |
5a7e7a0b SH |
5100 | to_replace_bs = NULL; |
5101 | goto out; | |
09158f00 BC |
5102 | } |
5103 | ||
5104 | /* We don't want arbitrary node of the BDS chain to be replaced only the top | |
5105 | * most non filter in order to prevent data corruption. | |
5106 | * Another benefit is that this tests exclude backing files which are | |
5107 | * blocked by the backing blockers. | |
5108 | */ | |
e12f3784 | 5109 | if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) { |
09158f00 | 5110 | error_setg(errp, "Only top most non filter can be replaced"); |
5a7e7a0b SH |
5111 | to_replace_bs = NULL; |
5112 | goto out; | |
09158f00 BC |
5113 | } |
5114 | ||
5a7e7a0b SH |
5115 | out: |
5116 | aio_context_release(aio_context); | |
09158f00 BC |
5117 | return to_replace_bs; |
5118 | } | |
448ad91d | 5119 | |
91af7014 HR |
5120 | static bool append_open_options(QDict *d, BlockDriverState *bs) |
5121 | { | |
5122 | const QDictEntry *entry; | |
9e700c1a | 5123 | QemuOptDesc *desc; |
260fecf1 | 5124 | BdrvChild *child; |
91af7014 | 5125 | bool found_any = false; |
260fecf1 | 5126 | const char *p; |
91af7014 HR |
5127 | |
5128 | for (entry = qdict_first(bs->options); entry; | |
5129 | entry = qdict_next(bs->options, entry)) | |
5130 | { | |
260fecf1 KW |
5131 | /* Exclude options for children */ |
5132 | QLIST_FOREACH(child, &bs->children, next) { | |
5133 | if (strstart(qdict_entry_key(entry), child->name, &p) | |
5134 | && (!*p || *p == '.')) | |
5135 | { | |
5136 | break; | |
5137 | } | |
5138 | } | |
5139 | if (child) { | |
9e700c1a | 5140 | continue; |
91af7014 | 5141 | } |
9e700c1a KW |
5142 | |
5143 | /* And exclude all non-driver-specific options */ | |
5144 | for (desc = bdrv_runtime_opts.desc; desc->name; desc++) { | |
5145 | if (!strcmp(qdict_entry_key(entry), desc->name)) { | |
5146 | break; | |
5147 | } | |
5148 | } | |
5149 | if (desc->name) { | |
5150 | continue; | |
5151 | } | |
5152 | ||
f5a74a5a MAL |
5153 | qdict_put_obj(d, qdict_entry_key(entry), |
5154 | qobject_ref(qdict_entry_value(entry))); | |
9e700c1a | 5155 | found_any = true; |
91af7014 HR |
5156 | } |
5157 | ||
5158 | return found_any; | |
5159 | } | |
5160 | ||
5161 | /* Updates the following BDS fields: | |
5162 | * - exact_filename: A filename which may be used for opening a block device | |
5163 | * which (mostly) equals the given BDS (even without any | |
5164 | * other options; so reading and writing must return the same | |
5165 | * results, but caching etc. may be different) | |
5166 | * - full_open_options: Options which, when given when opening a block device | |
5167 | * (without a filename), result in a BDS (mostly) | |
5168 | * equalling the given one | |
5169 | * - filename: If exact_filename is set, it is copied here. Otherwise, | |
5170 | * full_open_options is converted to a JSON object, prefixed with | |
5171 | * "json:" (for use through the JSON pseudo protocol) and put here. | |
5172 | */ | |
5173 | void bdrv_refresh_filename(BlockDriverState *bs) | |
5174 | { | |
5175 | BlockDriver *drv = bs->drv; | |
5176 | QDict *opts; | |
5177 | ||
5178 | if (!drv) { | |
5179 | return; | |
5180 | } | |
5181 | ||
5182 | /* This BDS's file name will most probably depend on its file's name, so | |
5183 | * refresh that first */ | |
5184 | if (bs->file) { | |
9a4f4c31 | 5185 | bdrv_refresh_filename(bs->file->bs); |
91af7014 HR |
5186 | } |
5187 | ||
5188 | if (drv->bdrv_refresh_filename) { | |
5189 | /* Obsolete information is of no use here, so drop the old file name | |
5190 | * information before refreshing it */ | |
5191 | bs->exact_filename[0] = '\0'; | |
5192 | if (bs->full_open_options) { | |
cb3e7f08 | 5193 | qobject_unref(bs->full_open_options); |
91af7014 HR |
5194 | bs->full_open_options = NULL; |
5195 | } | |
5196 | ||
4cdd01d3 KW |
5197 | opts = qdict_new(); |
5198 | append_open_options(opts, bs); | |
5199 | drv->bdrv_refresh_filename(bs, opts); | |
cb3e7f08 | 5200 | qobject_unref(opts); |
91af7014 HR |
5201 | } else if (bs->file) { |
5202 | /* Try to reconstruct valid information from the underlying file */ | |
5203 | bool has_open_options; | |
5204 | ||
5205 | bs->exact_filename[0] = '\0'; | |
5206 | if (bs->full_open_options) { | |
cb3e7f08 | 5207 | qobject_unref(bs->full_open_options); |
91af7014 HR |
5208 | bs->full_open_options = NULL; |
5209 | } | |
5210 | ||
5211 | opts = qdict_new(); | |
5212 | has_open_options = append_open_options(opts, bs); | |
5213 | ||
5214 | /* If no specific options have been given for this BDS, the filename of | |
5215 | * the underlying file should suffice for this one as well */ | |
9a4f4c31 KW |
5216 | if (bs->file->bs->exact_filename[0] && !has_open_options) { |
5217 | strcpy(bs->exact_filename, bs->file->bs->exact_filename); | |
91af7014 HR |
5218 | } |
5219 | /* Reconstructing the full options QDict is simple for most format block | |
5220 | * drivers, as long as the full options are known for the underlying | |
5221 | * file BDS. The full options QDict of that file BDS should somehow | |
5222 | * contain a representation of the filename, therefore the following | |
5223 | * suffices without querying the (exact_)filename of this BDS. */ | |
9a4f4c31 | 5224 | if (bs->file->bs->full_open_options) { |
46f5ac20 | 5225 | qdict_put_str(opts, "driver", drv->format_name); |
f5a74a5a MAL |
5226 | qdict_put(opts, "file", |
5227 | qobject_ref(bs->file->bs->full_open_options)); | |
91af7014 HR |
5228 | |
5229 | bs->full_open_options = opts; | |
5230 | } else { | |
cb3e7f08 | 5231 | qobject_unref(opts); |
91af7014 HR |
5232 | } |
5233 | } else if (!bs->full_open_options && qdict_size(bs->options)) { | |
5234 | /* There is no underlying file BDS (at least referenced by BDS.file), | |
5235 | * so the full options QDict should be equal to the options given | |
5236 | * specifically for this block device when it was opened (plus the | |
5237 | * driver specification). | |
5238 | * Because those options don't change, there is no need to update | |
5239 | * full_open_options when it's already set. */ | |
5240 | ||
5241 | opts = qdict_new(); | |
5242 | append_open_options(opts, bs); | |
46f5ac20 | 5243 | qdict_put_str(opts, "driver", drv->format_name); |
91af7014 HR |
5244 | |
5245 | if (bs->exact_filename[0]) { | |
5246 | /* This may not work for all block protocol drivers (some may | |
5247 | * require this filename to be parsed), but we have to find some | |
5248 | * default solution here, so just include it. If some block driver | |
5249 | * does not support pure options without any filename at all or | |
5250 | * needs some special format of the options QDict, it needs to | |
5251 | * implement the driver-specific bdrv_refresh_filename() function. | |
5252 | */ | |
46f5ac20 | 5253 | qdict_put_str(opts, "filename", bs->exact_filename); |
91af7014 HR |
5254 | } |
5255 | ||
5256 | bs->full_open_options = opts; | |
5257 | } | |
5258 | ||
5259 | if (bs->exact_filename[0]) { | |
5260 | pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); | |
5261 | } else if (bs->full_open_options) { | |
5262 | QString *json = qobject_to_json(QOBJECT(bs->full_open_options)); | |
5263 | snprintf(bs->filename, sizeof(bs->filename), "json:%s", | |
5264 | qstring_get_str(json)); | |
cb3e7f08 | 5265 | qobject_unref(json); |
91af7014 HR |
5266 | } |
5267 | } | |
e06018ad WC |
5268 | |
5269 | /* | |
5270 | * Hot add/remove a BDS's child. So the user can take a child offline when | |
5271 | * it is broken and take a new child online | |
5272 | */ | |
5273 | void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, | |
5274 | Error **errp) | |
5275 | { | |
5276 | ||
5277 | if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { | |
5278 | error_setg(errp, "The node %s does not support adding a child", | |
5279 | bdrv_get_device_or_node_name(parent_bs)); | |
5280 | return; | |
5281 | } | |
5282 | ||
5283 | if (!QLIST_EMPTY(&child_bs->parents)) { | |
5284 | error_setg(errp, "The node %s already has a parent", | |
5285 | child_bs->node_name); | |
5286 | return; | |
5287 | } | |
5288 | ||
5289 | parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); | |
5290 | } | |
5291 | ||
5292 | void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) | |
5293 | { | |
5294 | BdrvChild *tmp; | |
5295 | ||
5296 | if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { | |
5297 | error_setg(errp, "The node %s does not support removing a child", | |
5298 | bdrv_get_device_or_node_name(parent_bs)); | |
5299 | return; | |
5300 | } | |
5301 | ||
5302 | QLIST_FOREACH(tmp, &parent_bs->children, next) { | |
5303 | if (tmp == child) { | |
5304 | break; | |
5305 | } | |
5306 | } | |
5307 | ||
5308 | if (!tmp) { | |
5309 | error_setg(errp, "The node %s does not have a child named %s", | |
5310 | bdrv_get_device_or_node_name(parent_bs), | |
5311 | bdrv_get_device_or_node_name(child->bs)); | |
5312 | return; | |
5313 | } | |
5314 | ||
5315 | parent_bs->drv->bdrv_del_child(parent_bs, child, errp); | |
5316 | } | |
67b792f5 VSO |
5317 | |
5318 | bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name, | |
5319 | uint32_t granularity, Error **errp) | |
5320 | { | |
5321 | BlockDriver *drv = bs->drv; | |
5322 | ||
5323 | if (!drv) { | |
5324 | error_setg_errno(errp, ENOMEDIUM, | |
5325 | "Can't store persistent bitmaps to %s", | |
5326 | bdrv_get_device_or_node_name(bs)); | |
5327 | return false; | |
5328 | } | |
5329 | ||
5330 | if (!drv->bdrv_can_store_new_dirty_bitmap) { | |
5331 | error_setg_errno(errp, ENOTSUP, | |
5332 | "Can't store persistent bitmaps to %s", | |
5333 | bdrv_get_device_or_node_name(bs)); | |
5334 | return false; | |
5335 | } | |
5336 | ||
5337 | return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp); | |
5338 | } |