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