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 |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 5 | * Copyright (c) 2020 Virtuozzo International GmbH. |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 6 | * |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 7 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 8 | * of this software and associated documentation files (the "Software"), to deal |
| 9 | * in the Software without restriction, including without limitation the rights |
| 10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 11 | * copies of the Software, and to permit persons to whom the Software is |
| 12 | * furnished to do so, subject to the following conditions: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice shall be included in |
| 15 | * all copies or substantial portions of the Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 23 | * THE SOFTWARE. |
| 24 | */ |
Markus Armbruster | e688df6 | 2018-02-01 12:18:31 +0100 | [diff] [blame] | 25 | |
Peter Maydell | d38ea87 | 2016-01-29 17:50:05 +0000 | [diff] [blame] | 26 | #include "qemu/osdep.h" |
Daniel P. Berrange | 0ab8ed1 | 2017-01-25 16:14:15 +0000 | [diff] [blame] | 27 | #include "block/trace.h" |
Paolo Bonzini | 737e150 | 2012-12-17 18:19:44 +0100 | [diff] [blame] | 28 | #include "block/block_int.h" |
| 29 | #include "block/blockjob.h" |
Max Reitz | 0c9b70d | 2020-10-27 20:05:42 +0100 | [diff] [blame] | 30 | #include "block/fuse.h" |
Kevin Wolf | cd7fca9 | 2016-07-06 11:22:39 +0200 | [diff] [blame] | 31 | #include "block/nbd.h" |
Max Reitz | 609f45e | 2018-06-14 21:14:28 +0200 | [diff] [blame] | 32 | #include "block/qdict.h" |
Markus Armbruster | d49b683 | 2015-03-17 18:29:20 +0100 | [diff] [blame] | 33 | #include "qemu/error-report.h" |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 34 | #include "block/module_block.h" |
Markus Armbruster | db72581 | 2019-08-12 07:23:50 +0200 | [diff] [blame] | 35 | #include "qemu/main-loop.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 36 | #include "qemu/module.h" |
Markus Armbruster | e688df6 | 2018-02-01 12:18:31 +0100 | [diff] [blame] | 37 | #include "qapi/error.h" |
Markus Armbruster | 452fcdb | 2018-02-01 12:18:39 +0100 | [diff] [blame] | 38 | #include "qapi/qmp/qdict.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 39 | #include "qapi/qmp/qjson.h" |
Max Reitz | e59a0cf | 2018-02-24 16:40:32 +0100 | [diff] [blame] | 40 | #include "qapi/qmp/qnull.h" |
Markus Armbruster | fc81fa1 | 2018-02-01 12:18:40 +0100 | [diff] [blame] | 41 | #include "qapi/qmp/qstring.h" |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 42 | #include "qapi/qobject-output-visitor.h" |
| 43 | #include "qapi/qapi-visit-block-core.h" |
Markus Armbruster | bfb197e | 2014-10-07 13:59:11 +0200 | [diff] [blame] | 44 | #include "sysemu/block-backend.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 45 | #include "qemu/notify.h" |
Markus Armbruster | 922a01a | 2018-02-01 12:18:46 +0100 | [diff] [blame] | 46 | #include "qemu/option.h" |
Daniel P. Berrange | 10817bf | 2015-09-01 14:48:02 +0100 | [diff] [blame] | 47 | #include "qemu/coroutine.h" |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 48 | #include "block/qapi.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 49 | #include "qemu/timer.h" |
Veronia Bahaa | f348b6d | 2016-03-20 19:16:19 +0200 | [diff] [blame] | 50 | #include "qemu/cutils.h" |
| 51 | #include "qemu/id.h" |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 52 | #include "qemu/range.h" |
| 53 | #include "qemu/rcu.h" |
Vladimir Sementsov-Ogievskiy | 21c2283 | 2020-09-24 21:54:10 +0300 | [diff] [blame] | 54 | #include "block/coroutines.h" |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 55 | |
Juan Quintela | 71e72a1 | 2009-07-27 16:12:56 +0200 | [diff] [blame] | 56 | #ifdef CONFIG_BSD |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 57 | #include <sys/ioctl.h> |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 58 | #include <sys/queue.h> |
Joelle van Dyne | feccdce | 2021-03-15 11:03:39 -0700 | [diff] [blame] | 59 | #if defined(HAVE_SYS_DISK_H) |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 60 | #include <sys/disk.h> |
| 61 | #endif |
blueswir1 | c5e9723 | 2009-03-07 20:06:23 +0000 | [diff] [blame] | 62 | #endif |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 63 | |
aliguori | 49dc768 | 2009-03-08 16:26:59 +0000 | [diff] [blame] | 64 | #ifdef _WIN32 |
| 65 | #include <windows.h> |
| 66 | #endif |
| 67 | |
Stefan Hajnoczi | 1c9805a | 2011-10-13 13:08:22 +0100 | [diff] [blame] | 68 | #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ |
| 69 | |
Benoît Canet | dc364f4 | 2014-01-23 21:31:32 +0100 | [diff] [blame] | 70 | static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = |
| 71 | QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); |
| 72 | |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 73 | static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states = |
| 74 | QTAILQ_HEAD_INITIALIZER(all_bdrv_states); |
| 75 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 76 | static QLIST_HEAD(, BlockDriver) bdrv_drivers = |
| 77 | QLIST_HEAD_INITIALIZER(bdrv_drivers); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 78 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 79 | static BlockDriverState *bdrv_open_inherit(const char *filename, |
| 80 | const char *reference, |
| 81 | QDict *options, int flags, |
| 82 | BlockDriverState *parent, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 83 | const BdrvChildClass *child_class, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 84 | BdrvChildRole child_role, |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 85 | Error **errp); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 86 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 87 | static void bdrv_replace_child_noperm(BdrvChild *child, |
| 88 | BlockDriverState *new_bs); |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 89 | static void bdrv_remove_file_or_backing_child(BlockDriverState *bs, |
| 90 | BdrvChild *child, |
| 91 | Transaction *tran); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 92 | static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs, |
| 93 | Transaction *tran); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 94 | |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 95 | static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, |
| 96 | BlockReopenQueue *queue, |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 97 | Transaction *change_child_tran, Error **errp); |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 98 | static void bdrv_reopen_commit(BDRVReopenState *reopen_state); |
| 99 | static void bdrv_reopen_abort(BDRVReopenState *reopen_state); |
| 100 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 101 | /* If non-zero, use only whitelisted block drivers */ |
| 102 | static int use_bdrv_whitelist; |
| 103 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 104 | #ifdef _WIN32 |
| 105 | static int is_windows_drive_prefix(const char *filename) |
| 106 | { |
| 107 | return (((filename[0] >= 'a' && filename[0] <= 'z') || |
| 108 | (filename[0] >= 'A' && filename[0] <= 'Z')) && |
| 109 | filename[1] == ':'); |
| 110 | } |
| 111 | |
| 112 | int is_windows_drive(const char *filename) |
| 113 | { |
| 114 | if (is_windows_drive_prefix(filename) && |
| 115 | filename[2] == '\0') |
| 116 | return 1; |
| 117 | if (strstart(filename, "\\\\.\\", NULL) || |
| 118 | strstart(filename, "//./", NULL)) |
| 119 | return 1; |
| 120 | return 0; |
| 121 | } |
| 122 | #endif |
| 123 | |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 124 | size_t bdrv_opt_mem_align(BlockDriverState *bs) |
| 125 | { |
| 126 | if (!bs || !bs->drv) { |
Denis V. Lunev | 459b4e6 | 2015-05-12 17:30:56 +0300 | [diff] [blame] | 127 | /* page size or 4k (hdd sector size) should be on the safe side */ |
Wei Yang | 038adc2 | 2019-10-13 10:11:45 +0800 | [diff] [blame] | 128 | return MAX(4096, qemu_real_host_page_size); |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | return bs->bl.opt_mem_alignment; |
| 132 | } |
| 133 | |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 134 | size_t bdrv_min_mem_align(BlockDriverState *bs) |
| 135 | { |
| 136 | if (!bs || !bs->drv) { |
Denis V. Lunev | 459b4e6 | 2015-05-12 17:30:56 +0300 | [diff] [blame] | 137 | /* page size or 4k (hdd sector size) should be on the safe side */ |
Wei Yang | 038adc2 | 2019-10-13 10:11:45 +0800 | [diff] [blame] | 138 | return MAX(4096, qemu_real_host_page_size); |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | return bs->bl.min_mem_alignment; |
| 142 | } |
| 143 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 144 | /* check if the path starts with "<protocol>:" */ |
Max Reitz | 5c98415 | 2014-12-03 14:57:22 +0100 | [diff] [blame] | 145 | int path_has_protocol(const char *path) |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 146 | { |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 147 | const char *p; |
| 148 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 149 | #ifdef _WIN32 |
| 150 | if (is_windows_drive(path) || |
| 151 | is_windows_drive_prefix(path)) { |
| 152 | return 0; |
| 153 | } |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 154 | p = path + strcspn(path, ":/\\"); |
| 155 | #else |
| 156 | p = path + strcspn(path, ":/"); |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 157 | #endif |
| 158 | |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 159 | return *p == ':'; |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 160 | } |
| 161 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 162 | int path_is_absolute(const char *path) |
| 163 | { |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 164 | #ifdef _WIN32 |
| 165 | /* specific case for names like: "\\.\d:" */ |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 166 | if (is_windows_drive(path) || is_windows_drive_prefix(path)) { |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 167 | return 1; |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 168 | } |
| 169 | return (*path == '/' || *path == '\\'); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 170 | #else |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 171 | return (*path == '/'); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 172 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 175 | /* if filename is absolute, just return its duplicate. Otherwise, build a |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 176 | path to it by considering it is relative to base_path. URL are |
| 177 | supported. */ |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 178 | char *path_combine(const char *base_path, const char *filename) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 179 | { |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 180 | const char *protocol_stripped = NULL; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 181 | const char *p, *p1; |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 182 | char *result; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 183 | int len; |
| 184 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 185 | if (path_is_absolute(filename)) { |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 186 | return g_strdup(filename); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 187 | } |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 188 | |
| 189 | if (path_has_protocol(base_path)) { |
| 190 | protocol_stripped = strchr(base_path, ':'); |
| 191 | if (protocol_stripped) { |
| 192 | protocol_stripped++; |
| 193 | } |
| 194 | } |
| 195 | p = protocol_stripped ?: base_path; |
| 196 | |
| 197 | p1 = strrchr(base_path, '/'); |
| 198 | #ifdef _WIN32 |
| 199 | { |
| 200 | const char *p2; |
| 201 | p2 = strrchr(base_path, '\\'); |
| 202 | if (!p1 || p2 > p1) { |
| 203 | p1 = p2; |
| 204 | } |
| 205 | } |
| 206 | #endif |
| 207 | if (p1) { |
| 208 | p1++; |
| 209 | } else { |
| 210 | p1 = base_path; |
| 211 | } |
| 212 | if (p1 > p) { |
| 213 | p = p1; |
| 214 | } |
| 215 | len = p - base_path; |
| 216 | |
| 217 | result = g_malloc(len + strlen(filename) + 1); |
| 218 | memcpy(result, base_path, len); |
| 219 | strcpy(result + len, filename); |
| 220 | |
| 221 | return result; |
| 222 | } |
| 223 | |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 224 | /* |
| 225 | * Helper function for bdrv_parse_filename() implementations to remove optional |
| 226 | * protocol prefixes (especially "file:") from a filename and for putting the |
| 227 | * stripped filename into the options QDict if there is such a prefix. |
| 228 | */ |
| 229 | void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, |
| 230 | QDict *options) |
| 231 | { |
| 232 | if (strstart(filename, prefix, &filename)) { |
| 233 | /* Stripping the explicit protocol prefix may result in a protocol |
| 234 | * prefix being (wrongly) detected (if the filename contains a colon) */ |
| 235 | if (path_has_protocol(filename)) { |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 236 | GString *fat_filename; |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 237 | |
| 238 | /* This means there is some colon before the first slash; therefore, |
| 239 | * this cannot be an absolute path */ |
| 240 | assert(!path_is_absolute(filename)); |
| 241 | |
| 242 | /* And we can thus fix the protocol detection issue by prefixing it |
| 243 | * by "./" */ |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 244 | fat_filename = g_string_new("./"); |
| 245 | g_string_append(fat_filename, filename); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 246 | |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 247 | assert(!path_has_protocol(fat_filename->str)); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 248 | |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 249 | qdict_put(options, "filename", |
| 250 | qstring_from_gstring(fat_filename)); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 251 | } else { |
| 252 | /* If no protocol prefix was detected, we can use the shortened |
| 253 | * filename as-is */ |
| 254 | qdict_put_str(options, "filename", filename); |
| 255 | } |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | |
Kevin Wolf | 9c5e659 | 2017-05-04 18:52:40 +0200 | [diff] [blame] | 260 | /* Returns whether the image file is opened as read-only. Note that this can |
| 261 | * return false and writing to the image file is still not possible because the |
| 262 | * image is inactivated. */ |
Jeff Cody | 93ed524 | 2017-04-07 16:55:28 -0400 | [diff] [blame] | 263 | bool bdrv_is_read_only(BlockDriverState *bs) |
| 264 | { |
Vladimir Sementsov-Ogievskiy | 975da07 | 2021-05-27 18:40:55 +0300 | [diff] [blame] | 265 | return !(bs->open_flags & BDRV_O_RDWR); |
Jeff Cody | 93ed524 | 2017-04-07 16:55:28 -0400 | [diff] [blame] | 266 | } |
| 267 | |
Kevin Wolf | 54a32bf | 2017-08-03 17:02:58 +0200 | [diff] [blame] | 268 | int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, |
| 269 | bool ignore_allow_rdw, Error **errp) |
Jeff Cody | fe5241b | 2017-04-07 16:55:25 -0400 | [diff] [blame] | 270 | { |
Jeff Cody | e2b8247 | 2017-04-07 16:55:26 -0400 | [diff] [blame] | 271 | /* Do not set read_only if copy_on_read is enabled */ |
| 272 | if (bs->copy_on_read && read_only) { |
| 273 | error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", |
| 274 | bdrv_get_device_or_node_name(bs)); |
| 275 | return -EINVAL; |
| 276 | } |
| 277 | |
Jeff Cody | d6fcdf0 | 2017-04-07 16:55:27 -0400 | [diff] [blame] | 278 | /* Do not clear read_only if it is prohibited */ |
Kevin Wolf | 54a32bf | 2017-08-03 17:02:58 +0200 | [diff] [blame] | 279 | if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && |
| 280 | !ignore_allow_rdw) |
| 281 | { |
Jeff Cody | d6fcdf0 | 2017-04-07 16:55:27 -0400 | [diff] [blame] | 282 | error_setg(errp, "Node '%s' is read only", |
| 283 | bdrv_get_device_or_node_name(bs)); |
| 284 | return -EPERM; |
| 285 | } |
| 286 | |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 287 | return 0; |
| 288 | } |
| 289 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 290 | /* |
| 291 | * Called by a driver that can only provide a read-only image. |
| 292 | * |
| 293 | * Returns 0 if the node is already read-only or it could switch the node to |
| 294 | * read-only because BDRV_O_AUTO_RDONLY is set. |
| 295 | * |
| 296 | * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set |
| 297 | * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg |
| 298 | * is not NULL, it is used as the error message for the Error object. |
| 299 | */ |
| 300 | int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg, |
| 301 | Error **errp) |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 302 | { |
| 303 | int ret = 0; |
| 304 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 305 | if (!(bs->open_flags & BDRV_O_RDWR)) { |
| 306 | return 0; |
| 307 | } |
| 308 | if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) { |
| 309 | goto fail; |
| 310 | } |
| 311 | |
| 312 | ret = bdrv_can_set_read_only(bs, true, false, NULL); |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 313 | if (ret < 0) { |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 314 | goto fail; |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 315 | } |
| 316 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 317 | bs->open_flags &= ~BDRV_O_RDWR; |
Kevin Wolf | eeae6a5 | 2018-10-09 16:57:12 +0200 | [diff] [blame] | 318 | |
Jeff Cody | e2b8247 | 2017-04-07 16:55:26 -0400 | [diff] [blame] | 319 | return 0; |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 320 | |
| 321 | fail: |
| 322 | error_setg(errp, "%s", errmsg ?: "Image is read-only"); |
| 323 | return -EACCES; |
Jeff Cody | fe5241b | 2017-04-07 16:55:25 -0400 | [diff] [blame] | 324 | } |
| 325 | |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 326 | /* |
| 327 | * If @backing is empty, this function returns NULL without setting |
| 328 | * @errp. In all other cases, NULL will only be returned with @errp |
| 329 | * set. |
| 330 | * |
| 331 | * Therefore, a return value of NULL without @errp set means that |
| 332 | * there is no backing file; if @errp is set, there is one but its |
| 333 | * absolute filename cannot be generated. |
| 334 | */ |
| 335 | char *bdrv_get_full_backing_filename_from_filename(const char *backed, |
| 336 | const char *backing, |
| 337 | Error **errp) |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 338 | { |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 339 | if (backing[0] == '\0') { |
| 340 | return NULL; |
| 341 | } else if (path_has_protocol(backing) || path_is_absolute(backing)) { |
| 342 | return g_strdup(backing); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 343 | } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { |
| 344 | error_setg(errp, "Cannot use relative backing file names for '%s'", |
| 345 | backed); |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 346 | return NULL; |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 347 | } else { |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 348 | return path_combine(backed, backing); |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 349 | } |
| 350 | } |
| 351 | |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 352 | /* |
| 353 | * If @filename is empty or NULL, this function returns NULL without |
| 354 | * setting @errp. In all other cases, NULL will only be returned with |
| 355 | * @errp set. |
| 356 | */ |
| 357 | static char *bdrv_make_absolute_filename(BlockDriverState *relative_to, |
| 358 | const char *filename, Error **errp) |
| 359 | { |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 360 | char *dir, *full_name; |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 361 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 362 | if (!filename || filename[0] == '\0') { |
| 363 | return NULL; |
| 364 | } else if (path_has_protocol(filename) || path_is_absolute(filename)) { |
| 365 | return g_strdup(filename); |
| 366 | } |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 367 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 368 | dir = bdrv_dirname(relative_to, errp); |
| 369 | if (!dir) { |
| 370 | return NULL; |
| 371 | } |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 372 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 373 | full_name = g_strconcat(dir, filename, NULL); |
| 374 | g_free(dir); |
| 375 | return full_name; |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 376 | } |
| 377 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 378 | char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp) |
Paolo Bonzini | dc5a137 | 2012-05-08 16:51:50 +0200 | [diff] [blame] | 379 | { |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 380 | return bdrv_make_absolute_filename(bs, bs->backing_file, errp); |
Paolo Bonzini | dc5a137 | 2012-05-08 16:51:50 +0200 | [diff] [blame] | 381 | } |
| 382 | |
Stefan Hajnoczi | 0eb7217 | 2015-04-28 14:27:51 +0100 | [diff] [blame] | 383 | void bdrv_register(BlockDriver *bdrv) |
| 384 | { |
Philippe Mathieu-Daudé | a15f08d | 2020-03-18 23:22:35 +0100 | [diff] [blame] | 385 | assert(bdrv->format_name); |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 386 | QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 387 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 388 | |
Markus Armbruster | e4e9986 | 2014-10-07 13:59:03 +0200 | [diff] [blame] | 389 | BlockDriverState *bdrv_new(void) |
| 390 | { |
| 391 | BlockDriverState *bs; |
| 392 | int i; |
| 393 | |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 394 | bs = g_new0(BlockDriverState, 1); |
Fam Zheng | e4654d2 | 2013-11-13 18:29:43 +0800 | [diff] [blame] | 395 | QLIST_INIT(&bs->dirty_bitmaps); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 396 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 397 | QLIST_INIT(&bs->op_blockers[i]); |
| 398 | } |
Paolo Bonzini | 3783fa3 | 2017-06-05 14:39:02 +0200 | [diff] [blame] | 399 | qemu_co_mutex_init(&bs->reqs_lock); |
Paolo Bonzini | 2119882 | 2017-06-05 14:39:03 +0200 | [diff] [blame] | 400 | qemu_mutex_init(&bs->dirty_bitmap_mutex); |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 401 | bs->refcnt = 1; |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 402 | bs->aio_context = qemu_get_aio_context(); |
Paolo Bonzini | d7d512f | 2012-08-23 11:20:36 +0200 | [diff] [blame] | 403 | |
Evgeny Yakovlev | 3ff2f67 | 2016-07-18 22:39:52 +0300 | [diff] [blame] | 404 | qemu_co_queue_init(&bs->flush_queue); |
| 405 | |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 406 | qemu_co_mutex_init(&bs->bsc_modify_lock); |
| 407 | bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1); |
| 408 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 409 | for (i = 0; i < bdrv_drain_all_count; i++) { |
| 410 | bdrv_drained_begin(bs); |
| 411 | } |
| 412 | |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 413 | QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); |
| 414 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 415 | return bs; |
| 416 | } |
| 417 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 418 | static BlockDriver *bdrv_do_find_format(const char *format_name) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 419 | { |
| 420 | BlockDriver *drv1; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 421 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 422 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 423 | if (!strcmp(drv1->format_name, format_name)) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 424 | return drv1; |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 425 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 426 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 427 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 428 | return NULL; |
| 429 | } |
| 430 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 431 | BlockDriver *bdrv_find_format(const char *format_name) |
| 432 | { |
| 433 | BlockDriver *drv1; |
| 434 | int i; |
| 435 | |
| 436 | drv1 = bdrv_do_find_format(format_name); |
| 437 | if (drv1) { |
| 438 | return drv1; |
| 439 | } |
| 440 | |
| 441 | /* The driver isn't registered, maybe we need to load a module */ |
| 442 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { |
| 443 | if (!strcmp(block_driver_modules[i].format_name, format_name)) { |
| 444 | block_module_load_one(block_driver_modules[i].library_name); |
| 445 | break; |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | return bdrv_do_find_format(format_name); |
| 450 | } |
| 451 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 452 | static int bdrv_format_is_whitelisted(const char *format_name, bool read_only) |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 453 | { |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 454 | static const char *whitelist_rw[] = { |
| 455 | CONFIG_BDRV_RW_WHITELIST |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 456 | NULL |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 457 | }; |
| 458 | static const char *whitelist_ro[] = { |
| 459 | CONFIG_BDRV_RO_WHITELIST |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 460 | NULL |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 461 | }; |
| 462 | const char **p; |
| 463 | |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 464 | if (!whitelist_rw[0] && !whitelist_ro[0]) { |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 465 | return 1; /* no whitelist, anything goes */ |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 466 | } |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 467 | |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 468 | for (p = whitelist_rw; *p; p++) { |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 469 | if (!strcmp(format_name, *p)) { |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 470 | return 1; |
| 471 | } |
| 472 | } |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 473 | if (read_only) { |
| 474 | for (p = whitelist_ro; *p; p++) { |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 475 | if (!strcmp(format_name, *p)) { |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 476 | return 1; |
| 477 | } |
| 478 | } |
| 479 | } |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 480 | return 0; |
| 481 | } |
| 482 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 483 | int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) |
| 484 | { |
| 485 | return bdrv_format_is_whitelisted(drv->format_name, read_only); |
| 486 | } |
| 487 | |
Daniel P. Berrange | e6ff69b | 2016-03-21 14:11:48 +0000 | [diff] [blame] | 488 | bool bdrv_uses_whitelist(void) |
| 489 | { |
| 490 | return use_bdrv_whitelist; |
| 491 | } |
| 492 | |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 493 | typedef struct CreateCo { |
| 494 | BlockDriver *drv; |
| 495 | char *filename; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 496 | QemuOpts *opts; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 497 | int ret; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 498 | Error *err; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 499 | } CreateCo; |
| 500 | |
| 501 | static void coroutine_fn bdrv_create_co_entry(void *opaque) |
| 502 | { |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 503 | Error *local_err = NULL; |
| 504 | int ret; |
| 505 | |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 506 | CreateCo *cco = opaque; |
| 507 | assert(cco->drv); |
| 508 | |
Maxim Levitsky | b92902d | 2020-03-26 03:12:17 +0200 | [diff] [blame] | 509 | ret = cco->drv->bdrv_co_create_opts(cco->drv, |
| 510 | cco->filename, cco->opts, &local_err); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 511 | error_propagate(&cco->err, local_err); |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 512 | cco->ret = ret; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 513 | } |
| 514 | |
Kevin Wolf | 0e7e198 | 2009-05-18 16:42:10 +0200 | [diff] [blame] | 515 | int bdrv_create(BlockDriver *drv, const char* filename, |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 516 | QemuOpts *opts, Error **errp) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 517 | { |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 518 | int ret; |
Kevin Wolf | 0e7e198 | 2009-05-18 16:42:10 +0200 | [diff] [blame] | 519 | |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 520 | Coroutine *co; |
| 521 | CreateCo cco = { |
| 522 | .drv = drv, |
| 523 | .filename = g_strdup(filename), |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 524 | .opts = opts, |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 525 | .ret = NOT_DONE, |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 526 | .err = NULL, |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 527 | }; |
| 528 | |
Stefan Hajnoczi | efc75e2 | 2018-01-18 13:43:45 +0100 | [diff] [blame] | 529 | if (!drv->bdrv_co_create_opts) { |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 530 | 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] | 531 | ret = -ENOTSUP; |
| 532 | goto out; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | if (qemu_in_coroutine()) { |
| 536 | /* Fast-path if already in coroutine context */ |
| 537 | bdrv_create_co_entry(&cco); |
| 538 | } else { |
Paolo Bonzini | 0b8b875 | 2016-07-04 19:10:01 +0200 | [diff] [blame] | 539 | co = qemu_coroutine_create(bdrv_create_co_entry, &cco); |
| 540 | qemu_coroutine_enter(co); |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 541 | while (cco.ret == NOT_DONE) { |
Paolo Bonzini | b47ec2c | 2014-07-07 15:18:01 +0200 | [diff] [blame] | 542 | aio_poll(qemu_get_aio_context(), true); |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 543 | } |
| 544 | } |
| 545 | |
| 546 | ret = cco.ret; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 547 | if (ret < 0) { |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 548 | if (cco.err) { |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 549 | error_propagate(errp, cco.err); |
| 550 | } else { |
| 551 | error_setg_errno(errp, -ret, "Could not create image"); |
| 552 | } |
| 553 | } |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 554 | |
Luiz Capitulino | 80168bf | 2012-10-17 16:45:25 -0300 | [diff] [blame] | 555 | out: |
| 556 | g_free(cco.filename); |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 557 | return ret; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 558 | } |
| 559 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 560 | /** |
| 561 | * Helper function for bdrv_create_file_fallback(): Resize @blk to at |
| 562 | * least the given @minimum_size. |
| 563 | * |
| 564 | * On success, return @blk's actual length. |
| 565 | * Otherwise, return -errno. |
| 566 | */ |
| 567 | static int64_t create_file_fallback_truncate(BlockBackend *blk, |
| 568 | int64_t minimum_size, Error **errp) |
| 569 | { |
| 570 | Error *local_err = NULL; |
| 571 | int64_t size; |
| 572 | int ret; |
| 573 | |
Kevin Wolf | 8c6242b | 2020-04-24 14:54:41 +0200 | [diff] [blame] | 574 | ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0, |
| 575 | &local_err); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 576 | if (ret < 0 && ret != -ENOTSUP) { |
| 577 | error_propagate(errp, local_err); |
| 578 | return ret; |
| 579 | } |
| 580 | |
| 581 | size = blk_getlength(blk); |
| 582 | if (size < 0) { |
| 583 | error_free(local_err); |
| 584 | error_setg_errno(errp, -size, |
| 585 | "Failed to inquire the new image file's length"); |
| 586 | return size; |
| 587 | } |
| 588 | |
| 589 | if (size < minimum_size) { |
| 590 | /* Need to grow the image, but we failed to do that */ |
| 591 | error_propagate(errp, local_err); |
| 592 | return -ENOTSUP; |
| 593 | } |
| 594 | |
| 595 | error_free(local_err); |
| 596 | local_err = NULL; |
| 597 | |
| 598 | return size; |
| 599 | } |
| 600 | |
| 601 | /** |
| 602 | * Helper function for bdrv_create_file_fallback(): Zero the first |
| 603 | * sector to remove any potentially pre-existing image header. |
| 604 | */ |
| 605 | static int create_file_fallback_zero_first_sector(BlockBackend *blk, |
| 606 | int64_t current_size, |
| 607 | Error **errp) |
| 608 | { |
| 609 | int64_t bytes_to_clear; |
| 610 | int ret; |
| 611 | |
| 612 | bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE); |
| 613 | if (bytes_to_clear) { |
| 614 | ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP); |
| 615 | if (ret < 0) { |
| 616 | error_setg_errno(errp, -ret, |
| 617 | "Failed to clear the new image's first sector"); |
| 618 | return ret; |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | return 0; |
| 623 | } |
| 624 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 625 | /** |
| 626 | * Simple implementation of bdrv_co_create_opts for protocol drivers |
| 627 | * which only support creation via opening a file |
| 628 | * (usually existing raw storage device) |
| 629 | */ |
| 630 | int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv, |
| 631 | const char *filename, |
| 632 | QemuOpts *opts, |
| 633 | Error **errp) |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 634 | { |
| 635 | BlockBackend *blk; |
Max Reitz | eeea1fa | 2020-02-25 16:56:18 +0100 | [diff] [blame] | 636 | QDict *options; |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 637 | int64_t size = 0; |
| 638 | char *buf = NULL; |
| 639 | PreallocMode prealloc; |
| 640 | Error *local_err = NULL; |
| 641 | int ret; |
| 642 | |
| 643 | size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); |
| 644 | buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); |
| 645 | prealloc = qapi_enum_parse(&PreallocMode_lookup, buf, |
| 646 | PREALLOC_MODE_OFF, &local_err); |
| 647 | g_free(buf); |
| 648 | if (local_err) { |
| 649 | error_propagate(errp, local_err); |
| 650 | return -EINVAL; |
| 651 | } |
| 652 | |
| 653 | if (prealloc != PREALLOC_MODE_OFF) { |
| 654 | error_setg(errp, "Unsupported preallocation mode '%s'", |
| 655 | PreallocMode_str(prealloc)); |
| 656 | return -ENOTSUP; |
| 657 | } |
| 658 | |
Max Reitz | eeea1fa | 2020-02-25 16:56:18 +0100 | [diff] [blame] | 659 | options = qdict_new(); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 660 | qdict_put_str(options, "driver", drv->format_name); |
| 661 | |
| 662 | blk = blk_new_open(filename, NULL, options, |
| 663 | BDRV_O_RDWR | BDRV_O_RESIZE, errp); |
| 664 | if (!blk) { |
| 665 | error_prepend(errp, "Protocol driver '%s' does not support image " |
| 666 | "creation, and opening the image failed: ", |
| 667 | drv->format_name); |
| 668 | return -EINVAL; |
| 669 | } |
| 670 | |
| 671 | size = create_file_fallback_truncate(blk, size, errp); |
| 672 | if (size < 0) { |
| 673 | ret = size; |
| 674 | goto out; |
| 675 | } |
| 676 | |
| 677 | ret = create_file_fallback_zero_first_sector(blk, size, errp); |
| 678 | if (ret < 0) { |
| 679 | goto out; |
| 680 | } |
| 681 | |
| 682 | ret = 0; |
| 683 | out: |
| 684 | blk_unref(blk); |
| 685 | return ret; |
| 686 | } |
| 687 | |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 688 | int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 689 | { |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 690 | QemuOpts *protocol_opts; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 691 | BlockDriver *drv; |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 692 | QDict *qdict; |
| 693 | int ret; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 694 | |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 695 | drv = bdrv_find_protocol(filename, true, errp); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 696 | if (drv == NULL) { |
Stefan Hajnoczi | 16905d7 | 2010-11-30 15:14:14 +0000 | [diff] [blame] | 697 | return -ENOENT; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 698 | } |
| 699 | |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 700 | if (!drv->create_opts) { |
| 701 | error_setg(errp, "Driver '%s' does not support image creation", |
| 702 | drv->format_name); |
| 703 | return -ENOTSUP; |
| 704 | } |
| 705 | |
| 706 | /* |
| 707 | * 'opts' contains a QemuOptsList with a combination of format and protocol |
| 708 | * default values. |
| 709 | * |
| 710 | * The format properly removes its options, but the default values remain |
| 711 | * in 'opts->list'. So if the protocol has options with the same name |
| 712 | * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values |
| 713 | * of the format, since for overlapping options, the format wins. |
| 714 | * |
| 715 | * To avoid this issue, lets convert QemuOpts to QDict, in this way we take |
| 716 | * only the set options, and then convert it back to QemuOpts, using the |
| 717 | * create_opts of the protocol. So the new QemuOpts, will contain only the |
| 718 | * protocol defaults. |
| 719 | */ |
| 720 | qdict = qemu_opts_to_qdict(opts, NULL); |
| 721 | protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp); |
| 722 | if (protocol_opts == NULL) { |
| 723 | ret = -EINVAL; |
| 724 | goto out; |
| 725 | } |
| 726 | |
| 727 | ret = bdrv_create(drv, filename, protocol_opts, errp); |
| 728 | out: |
| 729 | qemu_opts_del(protocol_opts); |
| 730 | qobject_unref(qdict); |
| 731 | return ret; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 732 | } |
| 733 | |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 734 | int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp) |
| 735 | { |
| 736 | Error *local_err = NULL; |
| 737 | int ret; |
| 738 | |
| 739 | assert(bs != NULL); |
| 740 | |
| 741 | if (!bs->drv) { |
| 742 | error_setg(errp, "Block node '%s' is not opened", bs->filename); |
| 743 | return -ENOMEDIUM; |
| 744 | } |
| 745 | |
| 746 | if (!bs->drv->bdrv_co_delete_file) { |
| 747 | error_setg(errp, "Driver '%s' does not support image deletion", |
| 748 | bs->drv->format_name); |
| 749 | return -ENOTSUP; |
| 750 | } |
| 751 | |
| 752 | ret = bs->drv->bdrv_co_delete_file(bs, &local_err); |
| 753 | if (ret < 0) { |
| 754 | error_propagate(errp, local_err); |
| 755 | } |
| 756 | |
| 757 | return ret; |
| 758 | } |
| 759 | |
Maxim Levitsky | a890f08 | 2020-12-17 19:09:03 +0200 | [diff] [blame] | 760 | void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs) |
| 761 | { |
| 762 | Error *local_err = NULL; |
| 763 | int ret; |
| 764 | |
| 765 | if (!bs) { |
| 766 | return; |
| 767 | } |
| 768 | |
| 769 | ret = bdrv_co_delete_file(bs, &local_err); |
| 770 | /* |
| 771 | * ENOTSUP will happen if the block driver doesn't support |
| 772 | * the 'bdrv_co_delete_file' interface. This is a predictable |
| 773 | * scenario and shouldn't be reported back to the user. |
| 774 | */ |
| 775 | if (ret == -ENOTSUP) { |
| 776 | error_free(local_err); |
| 777 | } else if (ret < 0) { |
| 778 | error_report_err(local_err); |
| 779 | } |
| 780 | } |
| 781 | |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 782 | /** |
| 783 | * Try to get @bs's logical and physical block size. |
| 784 | * On success, store them in @bsz struct and return 0. |
| 785 | * On failure return -errno. |
| 786 | * @bs must not be empty. |
| 787 | */ |
| 788 | int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) |
| 789 | { |
| 790 | BlockDriver *drv = bs->drv; |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 791 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 792 | |
| 793 | if (drv && drv->bdrv_probe_blocksizes) { |
| 794 | return drv->bdrv_probe_blocksizes(bs, bsz); |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 795 | } else if (filtered) { |
| 796 | return bdrv_probe_blocksizes(filtered, bsz); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 797 | } |
| 798 | |
| 799 | return -ENOTSUP; |
| 800 | } |
| 801 | |
| 802 | /** |
| 803 | * Try to get @bs's geometry (cyls, heads, sectors). |
| 804 | * On success, store them in @geo struct and return 0. |
| 805 | * On failure return -errno. |
| 806 | * @bs must not be empty. |
| 807 | */ |
| 808 | int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) |
| 809 | { |
| 810 | BlockDriver *drv = bs->drv; |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 811 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 812 | |
| 813 | if (drv && drv->bdrv_probe_geometry) { |
| 814 | return drv->bdrv_probe_geometry(bs, geo); |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 815 | } else if (filtered) { |
| 816 | return bdrv_probe_geometry(filtered, geo); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 817 | } |
| 818 | |
| 819 | return -ENOTSUP; |
| 820 | } |
| 821 | |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 822 | /* |
| 823 | * Create a uniquely-named empty temporary file. |
| 824 | * Return 0 upon success, otherwise a negative errno value. |
| 825 | */ |
| 826 | int get_tmp_filename(char *filename, int size) |
| 827 | { |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 828 | #ifdef _WIN32 |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 829 | char temp_dir[MAX_PATH]; |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 830 | /* GetTempFileName requires that its output buffer (4th param) |
| 831 | have length MAX_PATH or greater. */ |
| 832 | assert(size >= MAX_PATH); |
| 833 | return (GetTempPath(MAX_PATH, temp_dir) |
| 834 | && GetTempFileName(temp_dir, "qem", 0, filename) |
| 835 | ? 0 : -GetLastError()); |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 836 | #else |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 837 | int fd; |
blueswir1 | 7ccfb2e | 2008-09-14 06:45:34 +0000 | [diff] [blame] | 838 | const char *tmpdir; |
aurel32 | 0badc1e | 2008-03-10 00:05:34 +0000 | [diff] [blame] | 839 | tmpdir = getenv("TMPDIR"); |
Amit Shah | 69bef79 | 2014-02-26 15:12:37 +0530 | [diff] [blame] | 840 | if (!tmpdir) { |
| 841 | tmpdir = "/var/tmp"; |
| 842 | } |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 843 | if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { |
| 844 | return -EOVERFLOW; |
| 845 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 846 | fd = mkstemp(filename); |
Dunrong Huang | fe235a0 | 2012-09-05 21:26:22 +0800 | [diff] [blame] | 847 | if (fd < 0) { |
| 848 | return -errno; |
| 849 | } |
| 850 | if (close(fd) != 0) { |
| 851 | unlink(filename); |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 852 | return -errno; |
| 853 | } |
| 854 | return 0; |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 855 | #endif |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 856 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 857 | |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 858 | /* |
| 859 | * Detect host devices. By convention, /dev/cdrom[N] is always |
| 860 | * recognized as a host CDROM. |
| 861 | */ |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 862 | static BlockDriver *find_hdev_driver(const char *filename) |
| 863 | { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 864 | int score_max = 0, score; |
| 865 | BlockDriver *drv = NULL, *d; |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 866 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 867 | QLIST_FOREACH(d, &bdrv_drivers, list) { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 868 | if (d->bdrv_probe_device) { |
| 869 | score = d->bdrv_probe_device(filename); |
| 870 | if (score > score_max) { |
| 871 | score_max = score; |
| 872 | drv = d; |
| 873 | } |
| 874 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 875 | } |
| 876 | |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 877 | return drv; |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 878 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 879 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 880 | static BlockDriver *bdrv_do_find_protocol(const char *protocol) |
| 881 | { |
| 882 | BlockDriver *drv1; |
| 883 | |
| 884 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 885 | if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { |
| 886 | return drv1; |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | return NULL; |
| 891 | } |
| 892 | |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 893 | BlockDriver *bdrv_find_protocol(const char *filename, |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 894 | bool allow_protocol_prefix, |
| 895 | Error **errp) |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 896 | { |
| 897 | BlockDriver *drv1; |
| 898 | char protocol[128]; |
| 899 | int len; |
| 900 | const char *p; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 901 | int i; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 902 | |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 903 | /* TODO Drivers without bdrv_file_open must be specified explicitly */ |
| 904 | |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 905 | /* |
| 906 | * XXX(hch): we really should not let host device detection |
| 907 | * override an explicit protocol specification, but moving this |
| 908 | * later breaks access to device names with colons in them. |
| 909 | * Thanks to the brain-dead persistent naming schemes on udev- |
| 910 | * based Linux systems those actually are quite common. |
| 911 | */ |
| 912 | drv1 = find_hdev_driver(filename); |
| 913 | if (drv1) { |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 914 | return drv1; |
| 915 | } |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 916 | |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 917 | if (!path_has_protocol(filename) || !allow_protocol_prefix) { |
Max Reitz | ef81043 | 2014-12-02 18:32:42 +0100 | [diff] [blame] | 918 | return &bdrv_file; |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 919 | } |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 920 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 921 | p = strchr(filename, ':'); |
| 922 | assert(p != NULL); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 923 | len = p - filename; |
| 924 | if (len > sizeof(protocol) - 1) |
| 925 | len = sizeof(protocol) - 1; |
| 926 | memcpy(protocol, filename, len); |
| 927 | protocol[len] = '\0'; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 928 | |
| 929 | drv1 = bdrv_do_find_protocol(protocol); |
| 930 | if (drv1) { |
| 931 | return drv1; |
| 932 | } |
| 933 | |
| 934 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { |
| 935 | if (block_driver_modules[i].protocol_name && |
| 936 | !strcmp(block_driver_modules[i].protocol_name, protocol)) { |
| 937 | block_module_load_one(block_driver_modules[i].library_name); |
| 938 | break; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 939 | } |
| 940 | } |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 941 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 942 | drv1 = bdrv_do_find_protocol(protocol); |
| 943 | if (!drv1) { |
| 944 | error_setg(errp, "Unknown protocol '%s'", protocol); |
| 945 | } |
| 946 | return drv1; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 947 | } |
| 948 | |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 949 | /* |
| 950 | * Guess image format by probing its contents. |
| 951 | * This is not a good idea when your image is raw (CVE-2008-2004), but |
| 952 | * we do it anyway for backward compatibility. |
| 953 | * |
| 954 | * @buf contains the image's first @buf_size bytes. |
Kevin Wolf | 7cddd37 | 2014-11-20 16:27:11 +0100 | [diff] [blame] | 955 | * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, |
| 956 | * but can be smaller if the image file is smaller) |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 957 | * @filename is its filename. |
| 958 | * |
| 959 | * For all block drivers, call the bdrv_probe() method to get its |
| 960 | * probing score. |
| 961 | * Return the first block driver with the highest probing score. |
| 962 | */ |
Kevin Wolf | 38f3ef5 | 2014-11-20 16:27:12 +0100 | [diff] [blame] | 963 | BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, |
| 964 | const char *filename) |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 965 | { |
| 966 | int score_max = 0, score; |
| 967 | BlockDriver *drv = NULL, *d; |
| 968 | |
| 969 | QLIST_FOREACH(d, &bdrv_drivers, list) { |
| 970 | if (d->bdrv_probe) { |
| 971 | score = d->bdrv_probe(buf, buf_size, filename); |
| 972 | if (score > score_max) { |
| 973 | score_max = score; |
| 974 | drv = d; |
| 975 | } |
| 976 | } |
| 977 | } |
| 978 | |
| 979 | return drv; |
| 980 | } |
| 981 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 982 | static int find_image_format(BlockBackend *file, const char *filename, |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 983 | BlockDriver **pdrv, Error **errp) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 984 | { |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 985 | BlockDriver *drv; |
Kevin Wolf | 7cddd37 | 2014-11-20 16:27:11 +0100 | [diff] [blame] | 986 | uint8_t buf[BLOCK_PROBE_BUF_SIZE]; |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 987 | int ret = 0; |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 988 | |
Kevin Wolf | 08a0055 | 2010-06-01 18:37:31 +0200 | [diff] [blame] | 989 | /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 990 | 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] | 991 | *pdrv = &bdrv_raw; |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 992 | return ret; |
Nicholas A. Bellinger | 1a39685 | 2010-05-27 08:56:28 -0700 | [diff] [blame] | 993 | } |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 994 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 995 | ret = blk_pread(file, 0, buf, sizeof(buf)); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 996 | if (ret < 0) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 997 | error_setg_errno(errp, -ret, "Could not read image for determining its " |
| 998 | "format"); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 999 | *pdrv = NULL; |
| 1000 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1001 | } |
| 1002 | |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 1003 | drv = bdrv_probe_all(buf, ret, filename); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1004 | if (!drv) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1005 | error_setg(errp, "Could not determine image format: No compatible " |
| 1006 | "driver found"); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1007 | ret = -ENOENT; |
| 1008 | } |
| 1009 | *pdrv = drv; |
| 1010 | return ret; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1011 | } |
| 1012 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1013 | /** |
| 1014 | * Set the current 'total_sectors' value |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 1015 | * Return 0 on success, -errno on error. |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1016 | */ |
Kevin Wolf | 3d9f2d2 | 2018-06-26 13:55:20 +0200 | [diff] [blame] | 1017 | int refresh_total_sectors(BlockDriverState *bs, int64_t hint) |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1018 | { |
| 1019 | BlockDriver *drv = bs->drv; |
| 1020 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 1021 | if (!drv) { |
| 1022 | return -ENOMEDIUM; |
| 1023 | } |
| 1024 | |
Nicholas Bellinger | 396759a | 2010-05-17 09:46:04 -0700 | [diff] [blame] | 1025 | /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ |
Dimitris Aragiorgis | b192af8 | 2015-06-23 13:44:56 +0300 | [diff] [blame] | 1026 | if (bdrv_is_sg(bs)) |
Nicholas Bellinger | 396759a | 2010-05-17 09:46:04 -0700 | [diff] [blame] | 1027 | return 0; |
| 1028 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1029 | /* query actual device if possible, otherwise just trust the hint */ |
| 1030 | if (drv->bdrv_getlength) { |
| 1031 | int64_t length = drv->bdrv_getlength(bs); |
| 1032 | if (length < 0) { |
| 1033 | return length; |
| 1034 | } |
Fam Zheng | 7e38200 | 2013-11-06 19:48:06 +0800 | [diff] [blame] | 1035 | hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | bs->total_sectors = hint; |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 1039 | |
| 1040 | if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) { |
| 1041 | return -EFBIG; |
| 1042 | } |
| 1043 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1044 | return 0; |
| 1045 | } |
| 1046 | |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1047 | /** |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1048 | * Combines a QDict of new block driver @options with any missing options taken |
| 1049 | * from @old_options, so that leaving out an option defaults to its old value. |
| 1050 | */ |
| 1051 | static void bdrv_join_options(BlockDriverState *bs, QDict *options, |
| 1052 | QDict *old_options) |
| 1053 | { |
| 1054 | if (bs->drv && bs->drv->bdrv_join_options) { |
| 1055 | bs->drv->bdrv_join_options(options, old_options); |
| 1056 | } else { |
| 1057 | qdict_join(options, old_options, false); |
| 1058 | } |
| 1059 | } |
| 1060 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1061 | static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts, |
| 1062 | int open_flags, |
| 1063 | Error **errp) |
| 1064 | { |
| 1065 | Error *local_err = NULL; |
| 1066 | char *value = qemu_opt_get_del(opts, "detect-zeroes"); |
| 1067 | BlockdevDetectZeroesOptions detect_zeroes = |
| 1068 | qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value, |
| 1069 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err); |
| 1070 | g_free(value); |
| 1071 | if (local_err) { |
| 1072 | error_propagate(errp, local_err); |
| 1073 | return detect_zeroes; |
| 1074 | } |
| 1075 | |
| 1076 | if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && |
| 1077 | !(open_flags & BDRV_O_UNMAP)) |
| 1078 | { |
| 1079 | error_setg(errp, "setting detect-zeroes to unmap is not allowed " |
| 1080 | "without setting discard operation to unmap"); |
| 1081 | } |
| 1082 | |
| 1083 | return detect_zeroes; |
| 1084 | } |
| 1085 | |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1086 | /** |
Aarushi Mehta | f80f267 | 2020-01-20 14:18:50 +0000 | [diff] [blame] | 1087 | * Set open flags for aio engine |
| 1088 | * |
| 1089 | * Return 0 on success, -1 if the engine specified is invalid |
| 1090 | */ |
| 1091 | int bdrv_parse_aio(const char *mode, int *flags) |
| 1092 | { |
| 1093 | if (!strcmp(mode, "threads")) { |
| 1094 | /* do nothing, default */ |
| 1095 | } else if (!strcmp(mode, "native")) { |
| 1096 | *flags |= BDRV_O_NATIVE_AIO; |
| 1097 | #ifdef CONFIG_LINUX_IO_URING |
| 1098 | } else if (!strcmp(mode, "io_uring")) { |
| 1099 | *flags |= BDRV_O_IO_URING; |
| 1100 | #endif |
| 1101 | } else { |
| 1102 | return -1; |
| 1103 | } |
| 1104 | |
| 1105 | return 0; |
| 1106 | } |
| 1107 | |
| 1108 | /** |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 1109 | * Set open flags for a given discard mode |
| 1110 | * |
| 1111 | * Return 0 on success, -1 if the discard mode was invalid. |
| 1112 | */ |
| 1113 | int bdrv_parse_discard_flags(const char *mode, int *flags) |
| 1114 | { |
| 1115 | *flags &= ~BDRV_O_UNMAP; |
| 1116 | |
| 1117 | if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { |
| 1118 | /* do nothing */ |
| 1119 | } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { |
| 1120 | *flags |= BDRV_O_UNMAP; |
| 1121 | } else { |
| 1122 | return -1; |
| 1123 | } |
| 1124 | |
| 1125 | return 0; |
| 1126 | } |
| 1127 | |
| 1128 | /** |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1129 | * Set open flags for a given cache mode |
| 1130 | * |
| 1131 | * Return 0 on success, -1 if the cache mode was invalid. |
| 1132 | */ |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1133 | int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1134 | { |
| 1135 | *flags &= ~BDRV_O_CACHE_MASK; |
| 1136 | |
| 1137 | if (!strcmp(mode, "off") || !strcmp(mode, "none")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1138 | *writethrough = false; |
| 1139 | *flags |= BDRV_O_NOCACHE; |
Stefan Hajnoczi | 92196b2 | 2011-08-04 12:26:52 +0100 | [diff] [blame] | 1140 | } else if (!strcmp(mode, "directsync")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1141 | *writethrough = true; |
Stefan Hajnoczi | 92196b2 | 2011-08-04 12:26:52 +0100 | [diff] [blame] | 1142 | *flags |= BDRV_O_NOCACHE; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1143 | } else if (!strcmp(mode, "writeback")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1144 | *writethrough = false; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1145 | } else if (!strcmp(mode, "unsafe")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1146 | *writethrough = false; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1147 | *flags |= BDRV_O_NO_FLUSH; |
| 1148 | } else if (!strcmp(mode, "writethrough")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1149 | *writethrough = true; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1150 | } else { |
| 1151 | return -1; |
| 1152 | } |
| 1153 | |
| 1154 | return 0; |
| 1155 | } |
| 1156 | |
Kevin Wolf | b541155 | 2017-01-17 15:56:16 +0100 | [diff] [blame] | 1157 | static char *bdrv_child_get_parent_desc(BdrvChild *c) |
| 1158 | { |
| 1159 | BlockDriverState *parent = c->opaque; |
Vladimir Sementsov-Ogievskiy | 2c0a3ac | 2021-06-01 10:52:15 +0300 | [diff] [blame] | 1160 | return g_strdup_printf("node '%s'", bdrv_get_node_name(parent)); |
Kevin Wolf | b541155 | 2017-01-17 15:56:16 +0100 | [diff] [blame] | 1161 | } |
| 1162 | |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1163 | static void bdrv_child_cb_drained_begin(BdrvChild *child) |
| 1164 | { |
| 1165 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | 6cd5c9d | 2018-05-29 17:17:45 +0200 | [diff] [blame] | 1166 | bdrv_do_drained_begin_quiesce(bs, NULL, false); |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1167 | } |
| 1168 | |
Kevin Wolf | 89bd030 | 2018-03-22 14:11:20 +0100 | [diff] [blame] | 1169 | static bool bdrv_child_cb_drained_poll(BdrvChild *child) |
| 1170 | { |
| 1171 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | 6cd5c9d | 2018-05-29 17:17:45 +0200 | [diff] [blame] | 1172 | return bdrv_drain_poll(bs, false, NULL, false); |
Kevin Wolf | 89bd030 | 2018-03-22 14:11:20 +0100 | [diff] [blame] | 1173 | } |
| 1174 | |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 1175 | static void bdrv_child_cb_drained_end(BdrvChild *child, |
| 1176 | int *drained_end_counter) |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1177 | { |
| 1178 | BlockDriverState *bs = child->opaque; |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 1179 | bdrv_drained_end_no_poll(bs, drained_end_counter); |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1180 | } |
| 1181 | |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 1182 | static int bdrv_child_cb_inactivate(BdrvChild *child) |
| 1183 | { |
| 1184 | BlockDriverState *bs = child->opaque; |
| 1185 | assert(bs->open_flags & BDRV_O_INACTIVE); |
| 1186 | return 0; |
| 1187 | } |
| 1188 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 1189 | static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx, |
| 1190 | GSList **ignore, Error **errp) |
| 1191 | { |
| 1192 | BlockDriverState *bs = child->opaque; |
| 1193 | return bdrv_can_set_aio_context(bs, ctx, ignore, errp); |
| 1194 | } |
| 1195 | |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 1196 | static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx, |
| 1197 | GSList **ignore) |
| 1198 | { |
| 1199 | BlockDriverState *bs = child->opaque; |
| 1200 | return bdrv_set_aio_context_ignore(bs, ctx, ignore); |
| 1201 | } |
| 1202 | |
Kevin Wolf | 0b50cc8 | 2014-04-11 21:29:52 +0200 | [diff] [blame] | 1203 | /* |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1204 | * Returns the options and flags that a temporary snapshot should get, based on |
| 1205 | * the originally requested flags (the originally requested image will have |
| 1206 | * flags like a backing file) |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1207 | */ |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1208 | static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, |
| 1209 | int parent_flags, QDict *parent_options) |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1210 | { |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1211 | *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; |
| 1212 | |
| 1213 | /* For temporary files, unconditional cache=unsafe is fine */ |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1214 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); |
| 1215 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); |
Kevin Wolf | 4186904 | 2016-06-16 12:59:30 +0200 | [diff] [blame] | 1216 | |
Kevin Wolf | 3f48686 | 2019-04-04 17:04:43 +0200 | [diff] [blame] | 1217 | /* Copy the read-only and discard options from the parent */ |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1218 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); |
Kevin Wolf | 3f48686 | 2019-04-04 17:04:43 +0200 | [diff] [blame] | 1219 | qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1220 | |
Kevin Wolf | 4186904 | 2016-06-16 12:59:30 +0200 | [diff] [blame] | 1221 | /* aio=native doesn't work for cache.direct=off, so disable it for the |
| 1222 | * temporary snapshot */ |
| 1223 | *child_flags &= ~BDRV_O_NATIVE_AIO; |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1224 | } |
| 1225 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1226 | static void bdrv_backing_attach(BdrvChild *c) |
| 1227 | { |
| 1228 | BlockDriverState *parent = c->opaque; |
| 1229 | BlockDriverState *backing_hd = c->bs; |
| 1230 | |
| 1231 | assert(!parent->backing_blocker); |
| 1232 | error_setg(&parent->backing_blocker, |
| 1233 | "node is used as backing hd of '%s'", |
| 1234 | bdrv_get_device_or_node_name(parent)); |
| 1235 | |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 1236 | bdrv_refresh_filename(backing_hd); |
| 1237 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1238 | parent->open_flags &= ~BDRV_O_NO_BACKING; |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1239 | |
| 1240 | bdrv_op_block_all(backing_hd, parent->backing_blocker); |
| 1241 | /* Otherwise we won't be able to commit or stream */ |
| 1242 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, |
| 1243 | parent->backing_blocker); |
| 1244 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, |
| 1245 | parent->backing_blocker); |
| 1246 | /* |
| 1247 | * We do backup in 3 ways: |
| 1248 | * 1. drive backup |
| 1249 | * The target bs is new opened, and the source is top BDS |
| 1250 | * 2. blockdev backup |
| 1251 | * Both the source and the target are top BDSes. |
| 1252 | * 3. internal backup(used for block replication) |
| 1253 | * Both the source and the target are backing file |
| 1254 | * |
| 1255 | * In case 1 and 2, neither the source nor the target is the backing file. |
| 1256 | * In case 3, we will block the top BDS, so there is only one block job |
| 1257 | * for the top BDS and its backing chain. |
| 1258 | */ |
| 1259 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, |
| 1260 | parent->backing_blocker); |
| 1261 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, |
| 1262 | parent->backing_blocker); |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1263 | } |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 1264 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1265 | static void bdrv_backing_detach(BdrvChild *c) |
| 1266 | { |
| 1267 | BlockDriverState *parent = c->opaque; |
| 1268 | |
| 1269 | assert(parent->backing_blocker); |
| 1270 | bdrv_op_unblock_all(c->bs, parent->backing_blocker); |
| 1271 | error_free(parent->backing_blocker); |
| 1272 | parent->backing_blocker = NULL; |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1273 | } |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 1274 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1275 | static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, |
| 1276 | const char *filename, Error **errp) |
| 1277 | { |
| 1278 | BlockDriverState *parent = c->opaque; |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1279 | bool read_only = bdrv_is_read_only(parent); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1280 | int ret; |
| 1281 | |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1282 | if (read_only) { |
| 1283 | ret = bdrv_reopen_set_read_only(parent, false, errp); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 1284 | if (ret < 0) { |
| 1285 | return ret; |
| 1286 | } |
| 1287 | } |
| 1288 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1289 | ret = bdrv_change_backing_file(parent, filename, |
Eric Blake | e54ee1b | 2020-07-06 15:39:53 -0500 | [diff] [blame] | 1290 | base->drv ? base->drv->format_name : "", |
| 1291 | false); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1292 | if (ret < 0) { |
Kevin Wolf | 6473069 | 2017-11-06 17:52:58 +0100 | [diff] [blame] | 1293 | error_setg_errno(errp, -ret, "Could not update backing file link"); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1294 | } |
| 1295 | |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1296 | if (read_only) { |
| 1297 | bdrv_reopen_set_read_only(parent, true, NULL); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 1298 | } |
| 1299 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1300 | return ret; |
| 1301 | } |
| 1302 | |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1303 | /* |
| 1304 | * Returns the options and flags that a generic child of a BDS should |
| 1305 | * get, based on the given options and flags for the parent BDS. |
| 1306 | */ |
Max Reitz | 00ff7ff | 2020-05-13 13:05:21 +0200 | [diff] [blame] | 1307 | static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format, |
| 1308 | int *child_flags, QDict *child_options, |
| 1309 | int parent_flags, QDict *parent_options) |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1310 | { |
| 1311 | int flags = parent_flags; |
| 1312 | |
| 1313 | /* |
| 1314 | * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL. |
| 1315 | * Generally, the question to answer is: Should this child be |
| 1316 | * format-probed by default? |
| 1317 | */ |
| 1318 | |
| 1319 | /* |
| 1320 | * Pure and non-filtered data children of non-format nodes should |
| 1321 | * be probed by default (even when the node itself has BDRV_O_PROTOCOL |
| 1322 | * set). This only affects a very limited set of drivers (namely |
| 1323 | * quorum and blkverify when this comment was written). |
| 1324 | * Force-clear BDRV_O_PROTOCOL then. |
| 1325 | */ |
| 1326 | if (!parent_is_format && |
| 1327 | (role & BDRV_CHILD_DATA) && |
| 1328 | !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED))) |
| 1329 | { |
| 1330 | flags &= ~BDRV_O_PROTOCOL; |
| 1331 | } |
| 1332 | |
| 1333 | /* |
| 1334 | * All children of format nodes (except for COW children) and all |
| 1335 | * metadata children in general should never be format-probed. |
| 1336 | * Force-set BDRV_O_PROTOCOL then. |
| 1337 | */ |
| 1338 | if ((parent_is_format && !(role & BDRV_CHILD_COW)) || |
| 1339 | (role & BDRV_CHILD_METADATA)) |
| 1340 | { |
| 1341 | flags |= BDRV_O_PROTOCOL; |
| 1342 | } |
| 1343 | |
| 1344 | /* |
| 1345 | * If the cache mode isn't explicitly set, inherit direct and no-flush from |
| 1346 | * the parent. |
| 1347 | */ |
| 1348 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); |
| 1349 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); |
| 1350 | qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); |
| 1351 | |
| 1352 | if (role & BDRV_CHILD_COW) { |
| 1353 | /* backing files are opened read-only by default */ |
| 1354 | qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); |
| 1355 | qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off"); |
| 1356 | } else { |
| 1357 | /* Inherit the read-only option from the parent if it's not set */ |
| 1358 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); |
| 1359 | qdict_copy_default(child_options, parent_options, |
| 1360 | BDRV_OPT_AUTO_READ_ONLY); |
| 1361 | } |
| 1362 | |
| 1363 | /* |
| 1364 | * bdrv_co_pdiscard() respects unmap policy for the parent, so we |
| 1365 | * can default to enable it on lower layers regardless of the |
| 1366 | * parent option. |
| 1367 | */ |
| 1368 | qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); |
| 1369 | |
| 1370 | /* Clear flags that only apply to the top layer */ |
| 1371 | flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); |
| 1372 | |
| 1373 | if (role & BDRV_CHILD_METADATA) { |
| 1374 | flags &= ~BDRV_O_NO_IO; |
| 1375 | } |
| 1376 | if (role & BDRV_CHILD_COW) { |
| 1377 | flags &= ~BDRV_O_TEMPORARY; |
| 1378 | } |
| 1379 | |
| 1380 | *child_flags = flags; |
| 1381 | } |
| 1382 | |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1383 | static void bdrv_child_cb_attach(BdrvChild *child) |
| 1384 | { |
| 1385 | BlockDriverState *bs = child->opaque; |
| 1386 | |
| 1387 | if (child->role & BDRV_CHILD_COW) { |
| 1388 | bdrv_backing_attach(child); |
| 1389 | } |
| 1390 | |
| 1391 | bdrv_apply_subtree_drain(child, bs); |
| 1392 | } |
| 1393 | |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1394 | static void bdrv_child_cb_detach(BdrvChild *child) |
| 1395 | { |
| 1396 | BlockDriverState *bs = child->opaque; |
| 1397 | |
| 1398 | if (child->role & BDRV_CHILD_COW) { |
| 1399 | bdrv_backing_detach(child); |
| 1400 | } |
| 1401 | |
| 1402 | bdrv_unapply_subtree_drain(child, bs); |
| 1403 | } |
| 1404 | |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1405 | static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base, |
| 1406 | const char *filename, Error **errp) |
| 1407 | { |
| 1408 | if (c->role & BDRV_CHILD_COW) { |
| 1409 | return bdrv_backing_update_filename(c, base, filename, errp); |
| 1410 | } |
| 1411 | return 0; |
| 1412 | } |
| 1413 | |
Vladimir Sementsov-Ogievskiy | fb62b58 | 2021-05-24 13:12:56 +0300 | [diff] [blame] | 1414 | AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c) |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1415 | { |
| 1416 | BlockDriverState *bs = c->opaque; |
| 1417 | |
| 1418 | return bdrv_get_aio_context(bs); |
| 1419 | } |
| 1420 | |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1421 | const BdrvChildClass child_of_bds = { |
| 1422 | .parent_is_bds = true, |
| 1423 | .get_parent_desc = bdrv_child_get_parent_desc, |
| 1424 | .inherit_options = bdrv_inherited_options, |
| 1425 | .drained_begin = bdrv_child_cb_drained_begin, |
| 1426 | .drained_poll = bdrv_child_cb_drained_poll, |
| 1427 | .drained_end = bdrv_child_cb_drained_end, |
| 1428 | .attach = bdrv_child_cb_attach, |
| 1429 | .detach = bdrv_child_cb_detach, |
| 1430 | .inactivate = bdrv_child_cb_inactivate, |
| 1431 | .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx, |
| 1432 | .set_aio_ctx = bdrv_child_cb_set_aio_ctx, |
| 1433 | .update_filename = bdrv_child_cb_update_filename, |
Vladimir Sementsov-Ogievskiy | fb62b58 | 2021-05-24 13:12:56 +0300 | [diff] [blame] | 1434 | .get_parent_aio_context = child_of_bds_get_parent_aio_context, |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1435 | }; |
| 1436 | |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1437 | AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c) |
| 1438 | { |
| 1439 | return c->klass->get_parent_aio_context(c); |
| 1440 | } |
| 1441 | |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1442 | static int bdrv_open_flags(BlockDriverState *bs, int flags) |
| 1443 | { |
Kevin Wolf | 61de4c6 | 2016-03-18 17:46:45 +0100 | [diff] [blame] | 1444 | int open_flags = flags; |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1445 | |
| 1446 | /* |
| 1447 | * Clear flags that are internal to the block layer before opening the |
| 1448 | * image. |
| 1449 | */ |
Kevin Wolf | 20cca27 | 2014-06-04 14:33:27 +0200 | [diff] [blame] | 1450 | open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1451 | |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1452 | return open_flags; |
| 1453 | } |
| 1454 | |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1455 | static void update_flags_from_options(int *flags, QemuOpts *opts) |
| 1456 | { |
Alberto Garcia | 2a3d433 | 2018-11-12 16:00:48 +0200 | [diff] [blame] | 1457 | *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1458 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1459 | 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] | 1460 | *flags |= BDRV_O_NO_FLUSH; |
| 1461 | } |
| 1462 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1463 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1464 | *flags |= BDRV_O_NOCACHE; |
| 1465 | } |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1466 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1467 | if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) { |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1468 | *flags |= BDRV_O_RDWR; |
| 1469 | } |
| 1470 | |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1471 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) { |
| 1472 | *flags |= BDRV_O_AUTO_RDONLY; |
| 1473 | } |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1474 | } |
| 1475 | |
| 1476 | static void update_options_from_flags(QDict *options, int flags) |
| 1477 | { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1478 | if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1479 | qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1480 | } |
| 1481 | if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1482 | qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, |
| 1483 | flags & BDRV_O_NO_FLUSH); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1484 | } |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1485 | if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1486 | qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1487 | } |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1488 | if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) { |
| 1489 | qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY, |
| 1490 | flags & BDRV_O_AUTO_RDONLY); |
| 1491 | } |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1492 | } |
| 1493 | |
Kevin Wolf | 636ea37 | 2014-01-24 14:11:52 +0100 | [diff] [blame] | 1494 | static void bdrv_assign_node_name(BlockDriverState *bs, |
| 1495 | const char *node_name, |
| 1496 | Error **errp) |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1497 | { |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1498 | char *gen_node_name = NULL; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1499 | |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1500 | if (!node_name) { |
| 1501 | node_name = gen_node_name = id_generate(ID_BLOCK); |
| 1502 | } else if (!id_wellformed(node_name)) { |
| 1503 | /* |
| 1504 | * Check for empty string or invalid characters, but not if it is |
| 1505 | * generated (generated names use characters not available to the user) |
| 1506 | */ |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 1507 | error_setg(errp, "Invalid node-name: '%s'", node_name); |
Kevin Wolf | 636ea37 | 2014-01-24 14:11:52 +0100 | [diff] [blame] | 1508 | return; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1509 | } |
| 1510 | |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1511 | /* takes care of avoiding namespaces collisions */ |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 1512 | if (blk_by_name(node_name)) { |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1513 | error_setg(errp, "node-name=%s is conflicting with a device id", |
| 1514 | node_name); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1515 | goto out; |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1516 | } |
| 1517 | |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1518 | /* takes care of avoiding duplicates node names */ |
| 1519 | if (bdrv_find_node(node_name)) { |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 1520 | error_setg(errp, "Duplicate nodes with node-name='%s'", node_name); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1521 | goto out; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1522 | } |
| 1523 | |
Kevin Wolf | 824808d | 2018-07-04 13:28:29 +0200 | [diff] [blame] | 1524 | /* Make sure that the node name isn't truncated */ |
| 1525 | if (strlen(node_name) >= sizeof(bs->node_name)) { |
| 1526 | error_setg(errp, "Node name too long"); |
| 1527 | goto out; |
| 1528 | } |
| 1529 | |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1530 | /* copy node name into the bs and insert it into the graph list */ |
| 1531 | pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); |
| 1532 | QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1533 | out: |
| 1534 | g_free(gen_node_name); |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1535 | } |
| 1536 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1537 | static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, |
| 1538 | const char *node_name, QDict *options, |
| 1539 | int open_flags, Error **errp) |
| 1540 | { |
| 1541 | Error *local_err = NULL; |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1542 | int i, ret; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1543 | |
| 1544 | bdrv_assign_node_name(bs, node_name, &local_err); |
| 1545 | if (local_err) { |
| 1546 | error_propagate(errp, local_err); |
| 1547 | return -EINVAL; |
| 1548 | } |
| 1549 | |
| 1550 | bs->drv = drv; |
| 1551 | bs->opaque = g_malloc0(drv->instance_size); |
| 1552 | |
| 1553 | if (drv->bdrv_file_open) { |
| 1554 | assert(!drv->bdrv_needs_filename || bs->filename[0]); |
| 1555 | ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1556 | } else if (drv->bdrv_open) { |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1557 | ret = drv->bdrv_open(bs, options, open_flags, &local_err); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1558 | } else { |
| 1559 | ret = 0; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1560 | } |
| 1561 | |
| 1562 | if (ret < 0) { |
| 1563 | if (local_err) { |
| 1564 | error_propagate(errp, local_err); |
| 1565 | } else if (bs->filename[0]) { |
| 1566 | error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); |
| 1567 | } else { |
| 1568 | error_setg_errno(errp, -ret, "Could not open image"); |
| 1569 | } |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1570 | goto open_failed; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1571 | } |
| 1572 | |
| 1573 | ret = refresh_total_sectors(bs, bs->total_sectors); |
| 1574 | if (ret < 0) { |
| 1575 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1576 | return ret; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1577 | } |
| 1578 | |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 1579 | bdrv_refresh_limits(bs, NULL, &local_err); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1580 | if (local_err) { |
| 1581 | error_propagate(errp, local_err); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1582 | return -EINVAL; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1583 | } |
| 1584 | |
| 1585 | assert(bdrv_opt_mem_align(bs) != 0); |
| 1586 | assert(bdrv_min_mem_align(bs) != 0); |
| 1587 | assert(is_power_of_2(bs->bl.request_alignment)); |
| 1588 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1589 | for (i = 0; i < bs->quiesce_counter; i++) { |
| 1590 | if (drv->bdrv_co_drain_begin) { |
| 1591 | drv->bdrv_co_drain_begin(bs); |
| 1592 | } |
| 1593 | } |
| 1594 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1595 | return 0; |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1596 | open_failed: |
| 1597 | bs->drv = NULL; |
| 1598 | if (bs->file != NULL) { |
| 1599 | bdrv_unref_child(bs, bs->file); |
| 1600 | bs->file = NULL; |
| 1601 | } |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1602 | g_free(bs->opaque); |
| 1603 | bs->opaque = NULL; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1604 | return ret; |
| 1605 | } |
| 1606 | |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1607 | /* |
| 1608 | * Create and open a block node. |
| 1609 | * |
| 1610 | * @options is a QDict of options to pass to the block drivers, or NULL for an |
| 1611 | * empty set of options. The reference to the QDict belongs to the block layer |
| 1612 | * after the call (even on failure), so if the caller intends to reuse the |
| 1613 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
| 1614 | */ |
| 1615 | BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv, |
| 1616 | const char *node_name, |
| 1617 | QDict *options, int flags, |
| 1618 | Error **errp) |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1619 | { |
| 1620 | BlockDriverState *bs; |
| 1621 | int ret; |
| 1622 | |
| 1623 | bs = bdrv_new(); |
| 1624 | bs->open_flags = flags; |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1625 | bs->options = options ?: qdict_new(); |
| 1626 | bs->explicit_options = qdict_clone_shallow(bs->options); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1627 | bs->opaque = NULL; |
| 1628 | |
| 1629 | update_options_from_flags(bs->options, flags); |
| 1630 | |
| 1631 | ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); |
| 1632 | if (ret < 0) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1633 | qobject_unref(bs->explicit_options); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1634 | bs->explicit_options = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1635 | qobject_unref(bs->options); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1636 | bs->options = NULL; |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1637 | bdrv_unref(bs); |
| 1638 | return NULL; |
| 1639 | } |
| 1640 | |
| 1641 | return bs; |
| 1642 | } |
| 1643 | |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1644 | /* Create and open a block node. */ |
| 1645 | BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, |
| 1646 | int flags, Error **errp) |
| 1647 | { |
| 1648 | return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp); |
| 1649 | } |
| 1650 | |
Kevin Wolf | c5f3014 | 2016-10-06 11:33:17 +0200 | [diff] [blame] | 1651 | QemuOptsList bdrv_runtime_opts = { |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1652 | .name = "bdrv_common", |
| 1653 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), |
| 1654 | .desc = { |
| 1655 | { |
| 1656 | .name = "node-name", |
| 1657 | .type = QEMU_OPT_STRING, |
| 1658 | .help = "Node name of the block device node", |
| 1659 | }, |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1660 | { |
| 1661 | .name = "driver", |
| 1662 | .type = QEMU_OPT_STRING, |
| 1663 | .help = "Block driver to use for the node", |
| 1664 | }, |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1665 | { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1666 | .name = BDRV_OPT_CACHE_DIRECT, |
| 1667 | .type = QEMU_OPT_BOOL, |
| 1668 | .help = "Bypass software writeback cache on the host", |
| 1669 | }, |
| 1670 | { |
| 1671 | .name = BDRV_OPT_CACHE_NO_FLUSH, |
| 1672 | .type = QEMU_OPT_BOOL, |
| 1673 | .help = "Ignore flush requests", |
| 1674 | }, |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1675 | { |
| 1676 | .name = BDRV_OPT_READ_ONLY, |
| 1677 | .type = QEMU_OPT_BOOL, |
| 1678 | .help = "Node is opened in read-only mode", |
| 1679 | }, |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1680 | { |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1681 | .name = BDRV_OPT_AUTO_READ_ONLY, |
| 1682 | .type = QEMU_OPT_BOOL, |
| 1683 | .help = "Node can become read-only if opening read-write fails", |
| 1684 | }, |
| 1685 | { |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1686 | .name = "detect-zeroes", |
| 1687 | .type = QEMU_OPT_STRING, |
| 1688 | .help = "try to optimize zero writes (off, on, unmap)", |
| 1689 | }, |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1690 | { |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 1691 | .name = BDRV_OPT_DISCARD, |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1692 | .type = QEMU_OPT_STRING, |
| 1693 | .help = "discard operation (ignore/off, unmap/on)", |
| 1694 | }, |
Fam Zheng | 5a9347c | 2017-05-03 00:35:37 +0800 | [diff] [blame] | 1695 | { |
| 1696 | .name = BDRV_OPT_FORCE_SHARE, |
| 1697 | .type = QEMU_OPT_BOOL, |
| 1698 | .help = "always accept other writers (default: off)", |
| 1699 | }, |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1700 | { /* end of list */ } |
| 1701 | }, |
| 1702 | }; |
| 1703 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 1704 | QemuOptsList bdrv_create_opts_simple = { |
| 1705 | .name = "simple-create-opts", |
| 1706 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head), |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 1707 | .desc = { |
| 1708 | { |
| 1709 | .name = BLOCK_OPT_SIZE, |
| 1710 | .type = QEMU_OPT_SIZE, |
| 1711 | .help = "Virtual disk size" |
| 1712 | }, |
| 1713 | { |
| 1714 | .name = BLOCK_OPT_PREALLOC, |
| 1715 | .type = QEMU_OPT_STRING, |
| 1716 | .help = "Preallocation mode (allowed values: off)" |
| 1717 | }, |
| 1718 | { /* end of list */ } |
| 1719 | } |
| 1720 | }; |
| 1721 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 1722 | /* |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1723 | * Common part for opening disk images and files |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 1724 | * |
| 1725 | * Removes all processed options from *options. |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1726 | */ |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1727 | static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1728 | QDict *options, Error **errp) |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1729 | { |
| 1730 | int ret, open_flags; |
Kevin Wolf | 035fccd | 2013-04-09 14:34:19 +0200 | [diff] [blame] | 1731 | const char *filename; |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1732 | const char *driver_name = NULL; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1733 | const char *node_name = NULL; |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1734 | const char *discard; |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1735 | QemuOpts *opts; |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1736 | BlockDriver *drv; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1737 | Error *local_err = NULL; |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1738 | bool ro; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1739 | |
Paolo Bonzini | 6405875 | 2012-05-08 16:51:49 +0200 | [diff] [blame] | 1740 | assert(bs->file == NULL); |
Kevin Wolf | 707ff82 | 2013-03-06 12:20:31 +0100 | [diff] [blame] | 1741 | assert(options != NULL && bs->options != options); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1742 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1743 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 1744 | if (!qemu_opts_absorb_qdict(opts, options, errp)) { |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1745 | ret = -EINVAL; |
| 1746 | goto fail_opts; |
| 1747 | } |
| 1748 | |
Alberto Garcia | 9b7e869 | 2016-09-15 17:53:01 +0300 | [diff] [blame] | 1749 | update_flags_from_options(&bs->open_flags, opts); |
| 1750 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1751 | driver_name = qemu_opt_get(opts, "driver"); |
| 1752 | drv = bdrv_find_format(driver_name); |
| 1753 | assert(drv != NULL); |
| 1754 | |
Fam Zheng | 5a9347c | 2017-05-03 00:35:37 +0800 | [diff] [blame] | 1755 | bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); |
| 1756 | |
| 1757 | if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { |
| 1758 | error_setg(errp, |
| 1759 | BDRV_OPT_FORCE_SHARE |
| 1760 | "=on can only be used with read-only images"); |
| 1761 | ret = -EINVAL; |
| 1762 | goto fail_opts; |
| 1763 | } |
| 1764 | |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1765 | if (file != NULL) { |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 1766 | bdrv_refresh_filename(blk_bs(file)); |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1767 | filename = blk_bs(file)->filename; |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1768 | } else { |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 1769 | /* |
| 1770 | * Caution: while qdict_get_try_str() is fine, getting |
| 1771 | * non-string types would require more care. When @options |
| 1772 | * come from -blockdev or blockdev_add, its members are typed |
| 1773 | * according to the QAPI schema, but when they come from |
| 1774 | * -drive, they're all QString. |
| 1775 | */ |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1776 | filename = qdict_get_try_str(options, "filename"); |
| 1777 | } |
| 1778 | |
Max Reitz | 4a00824 | 2017-04-13 18:06:24 +0200 | [diff] [blame] | 1779 | if (drv->bdrv_needs_filename && (!filename || !filename[0])) { |
Kevin Wolf | 765003d | 2014-02-03 14:49:42 +0100 | [diff] [blame] | 1780 | error_setg(errp, "The '%s' block driver requires a file name", |
| 1781 | drv->format_name); |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1782 | ret = -EINVAL; |
| 1783 | goto fail_opts; |
| 1784 | } |
| 1785 | |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1786 | trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, |
| 1787 | drv->format_name); |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1788 | |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1789 | ro = bdrv_is_read_only(bs); |
| 1790 | |
| 1791 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) { |
| 1792 | if (!ro && bdrv_is_whitelisted(drv, true)) { |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1793 | ret = bdrv_apply_auto_read_only(bs, NULL, NULL); |
| 1794 | } else { |
| 1795 | ret = -ENOTSUP; |
| 1796 | } |
| 1797 | if (ret < 0) { |
| 1798 | error_setg(errp, |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1799 | !ro && bdrv_is_whitelisted(drv, true) |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1800 | ? "Driver '%s' can only be used for read-only devices" |
| 1801 | : "Driver '%s' is not whitelisted", |
| 1802 | drv->format_name); |
| 1803 | goto fail_opts; |
| 1804 | } |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 1805 | } |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1806 | |
Paolo Bonzini | d3faa13 | 2017-06-05 14:38:50 +0200 | [diff] [blame] | 1807 | /* bdrv_new() and bdrv_close() make it so */ |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 1808 | assert(qatomic_read(&bs->copy_on_read) == 0); |
Paolo Bonzini | d3faa13 | 2017-06-05 14:38:50 +0200 | [diff] [blame] | 1809 | |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1810 | if (bs->open_flags & BDRV_O_COPY_ON_READ) { |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1811 | if (!ro) { |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 1812 | bdrv_enable_copy_on_read(bs); |
| 1813 | } else { |
| 1814 | 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] | 1815 | ret = -EINVAL; |
| 1816 | goto fail_opts; |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 1817 | } |
Stefan Hajnoczi | 53fec9d | 2011-11-28 16:08:47 +0000 | [diff] [blame] | 1818 | } |
| 1819 | |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 1820 | discard = qemu_opt_get(opts, BDRV_OPT_DISCARD); |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1821 | if (discard != NULL) { |
| 1822 | if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { |
| 1823 | error_setg(errp, "Invalid discard option"); |
| 1824 | ret = -EINVAL; |
| 1825 | goto fail_opts; |
| 1826 | } |
| 1827 | } |
| 1828 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1829 | bs->detect_zeroes = |
| 1830 | bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err); |
| 1831 | if (local_err) { |
| 1832 | error_propagate(errp, local_err); |
| 1833 | ret = -EINVAL; |
| 1834 | goto fail_opts; |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1835 | } |
| 1836 | |
Kevin Wolf | c2ad1b0 | 2013-03-18 16:40:51 +0100 | [diff] [blame] | 1837 | if (filename != NULL) { |
| 1838 | pstrcpy(bs->filename, sizeof(bs->filename), filename); |
| 1839 | } else { |
| 1840 | bs->filename[0] = '\0'; |
| 1841 | } |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 1842 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1843 | |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 1844 | /* Open the image, either directly or using a protocol */ |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1845 | open_flags = bdrv_open_flags(bs, bs->open_flags); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1846 | node_name = qemu_opt_get(opts, "node-name"); |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 1847 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1848 | assert(!drv->bdrv_file_open || file == NULL); |
| 1849 | ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1850 | if (ret < 0) { |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1851 | goto fail_opts; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1852 | } |
| 1853 | |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1854 | qemu_opts_del(opts); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1855 | return 0; |
| 1856 | |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1857 | fail_opts: |
| 1858 | qemu_opts_del(opts); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1859 | return ret; |
| 1860 | } |
| 1861 | |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1862 | static QDict *parse_json_filename(const char *filename, Error **errp) |
| 1863 | { |
| 1864 | QObject *options_obj; |
| 1865 | QDict *options; |
| 1866 | int ret; |
| 1867 | |
| 1868 | ret = strstart(filename, "json:", &filename); |
| 1869 | assert(ret); |
| 1870 | |
Markus Armbruster | 5577fff | 2017-02-28 22:26:59 +0100 | [diff] [blame] | 1871 | options_obj = qobject_from_json(filename, errp); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1872 | if (!options_obj) { |
Markus Armbruster | 5577fff | 2017-02-28 22:26:59 +0100 | [diff] [blame] | 1873 | error_prepend(errp, "Could not parse the JSON options: "); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1874 | return NULL; |
| 1875 | } |
| 1876 | |
Max Reitz | 7dc847e | 2018-02-24 16:40:29 +0100 | [diff] [blame] | 1877 | options = qobject_to(QDict, options_obj); |
Markus Armbruster | ca6b6e1 | 2017-02-17 21:38:18 +0100 | [diff] [blame] | 1878 | if (!options) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1879 | qobject_unref(options_obj); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1880 | error_setg(errp, "Invalid JSON object given"); |
| 1881 | return NULL; |
| 1882 | } |
| 1883 | |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1884 | qdict_flatten(options); |
| 1885 | |
| 1886 | return options; |
| 1887 | } |
| 1888 | |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 1889 | static void parse_json_protocol(QDict *options, const char **pfilename, |
| 1890 | Error **errp) |
| 1891 | { |
| 1892 | QDict *json_options; |
| 1893 | Error *local_err = NULL; |
| 1894 | |
| 1895 | /* Parse json: pseudo-protocol */ |
| 1896 | if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { |
| 1897 | return; |
| 1898 | } |
| 1899 | |
| 1900 | json_options = parse_json_filename(*pfilename, &local_err); |
| 1901 | if (local_err) { |
| 1902 | error_propagate(errp, local_err); |
| 1903 | return; |
| 1904 | } |
| 1905 | |
| 1906 | /* Options given in the filename have lower priority than options |
| 1907 | * specified directly */ |
| 1908 | qdict_join(options, json_options, false); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1909 | qobject_unref(json_options); |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 1910 | *pfilename = NULL; |
| 1911 | } |
| 1912 | |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1913 | /* |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1914 | * Fills in default options for opening images and converts the legacy |
| 1915 | * filename/flags pair to option QDict entries. |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 1916 | * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a |
| 1917 | * block driver has been specified explicitly. |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1918 | */ |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 1919 | static int bdrv_fill_options(QDict **options, const char *filename, |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 1920 | int *flags, Error **errp) |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1921 | { |
| 1922 | const char *drvname; |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 1923 | bool protocol = *flags & BDRV_O_PROTOCOL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1924 | bool parse_filename = false; |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 1925 | BlockDriver *drv = NULL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1926 | Error *local_err = NULL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1927 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 1928 | /* |
| 1929 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 1930 | * types would require more care. When @options come from |
| 1931 | * -blockdev or blockdev_add, its members are typed according to |
| 1932 | * the QAPI schema, but when they come from -drive, they're all |
| 1933 | * QString. |
| 1934 | */ |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 1935 | drvname = qdict_get_try_str(*options, "driver"); |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 1936 | if (drvname) { |
| 1937 | drv = bdrv_find_format(drvname); |
| 1938 | if (!drv) { |
| 1939 | error_setg(errp, "Unknown driver '%s'", drvname); |
| 1940 | return -ENOENT; |
| 1941 | } |
| 1942 | /* If the user has explicitly specified the driver, this choice should |
| 1943 | * override the BDRV_O_PROTOCOL flag */ |
| 1944 | protocol = drv->bdrv_file_open; |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 1945 | } |
| 1946 | |
| 1947 | if (protocol) { |
| 1948 | *flags |= BDRV_O_PROTOCOL; |
| 1949 | } else { |
| 1950 | *flags &= ~BDRV_O_PROTOCOL; |
| 1951 | } |
| 1952 | |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1953 | /* Translate cache options from flags into options */ |
| 1954 | update_options_from_flags(*options, *flags); |
| 1955 | |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1956 | /* Fetch the file name from the options QDict if necessary */ |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 1957 | if (protocol && filename) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1958 | if (!qdict_haskey(*options, "filename")) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1959 | qdict_put_str(*options, "filename", filename); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1960 | parse_filename = true; |
| 1961 | } else { |
| 1962 | error_setg(errp, "Can't specify 'file' and 'filename' options at " |
| 1963 | "the same time"); |
| 1964 | return -EINVAL; |
| 1965 | } |
| 1966 | } |
| 1967 | |
| 1968 | /* Find the right block driver */ |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 1969 | /* See cautionary note on accessing @options above */ |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1970 | filename = qdict_get_try_str(*options, "filename"); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1971 | |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 1972 | if (!drvname && protocol) { |
| 1973 | if (filename) { |
| 1974 | drv = bdrv_find_protocol(filename, parse_filename, errp); |
| 1975 | if (!drv) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1976 | return -EINVAL; |
| 1977 | } |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 1978 | |
| 1979 | drvname = drv->format_name; |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1980 | qdict_put_str(*options, "driver", drvname); |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 1981 | } else { |
| 1982 | error_setg(errp, "Must specify either driver or file"); |
| 1983 | return -EINVAL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1984 | } |
| 1985 | } |
| 1986 | |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 1987 | assert(drv || !protocol); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1988 | |
| 1989 | /* Driver-specific filename parsing */ |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 1990 | if (drv && drv->bdrv_parse_filename && parse_filename) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 1991 | drv->bdrv_parse_filename(filename, *options, &local_err); |
| 1992 | if (local_err) { |
| 1993 | error_propagate(errp, local_err); |
| 1994 | return -EINVAL; |
| 1995 | } |
| 1996 | |
| 1997 | if (!drv->bdrv_needs_filename) { |
| 1998 | qdict_del(*options, "filename"); |
| 1999 | } |
| 2000 | } |
| 2001 | |
| 2002 | return 0; |
| 2003 | } |
| 2004 | |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2005 | typedef struct BlockReopenQueueEntry { |
| 2006 | bool prepared; |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 2007 | bool perms_checked; |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2008 | BDRVReopenState state; |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 2009 | QTAILQ_ENTRY(BlockReopenQueueEntry) entry; |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2010 | } BlockReopenQueueEntry; |
| 2011 | |
| 2012 | /* |
| 2013 | * Return the flags that @bs will have after the reopens in @q have |
| 2014 | * successfully completed. If @q is NULL (or @bs is not contained in @q), |
| 2015 | * return the current flags. |
| 2016 | */ |
| 2017 | static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) |
| 2018 | { |
| 2019 | BlockReopenQueueEntry *entry; |
| 2020 | |
| 2021 | if (q != NULL) { |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 2022 | QTAILQ_FOREACH(entry, q, entry) { |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2023 | if (entry->state.bs == bs) { |
| 2024 | return entry->state.flags; |
| 2025 | } |
| 2026 | } |
| 2027 | } |
| 2028 | |
| 2029 | return bs->open_flags; |
| 2030 | } |
| 2031 | |
| 2032 | /* Returns whether the image file can be written to after the reopen queue @q |
| 2033 | * has been successfully applied, or right now if @q is NULL. */ |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2034 | static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, |
| 2035 | BlockReopenQueue *q) |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2036 | { |
| 2037 | int flags = bdrv_reopen_get_flags(q, bs); |
| 2038 | |
| 2039 | return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; |
| 2040 | } |
| 2041 | |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2042 | /* |
| 2043 | * Return whether the BDS can be written to. This is not necessarily |
| 2044 | * the same as !bdrv_is_read_only(bs), as inactivated images may not |
| 2045 | * be written to but do not count as read-only images. |
| 2046 | */ |
| 2047 | bool bdrv_is_writable(BlockDriverState *bs) |
| 2048 | { |
| 2049 | return bdrv_is_writable_after_reopen(bs, NULL); |
| 2050 | } |
| 2051 | |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2052 | static char *bdrv_child_user_desc(BdrvChild *c) |
| 2053 | { |
Vladimir Sementsov-Ogievskiy | da261b6 | 2021-06-01 10:52:17 +0300 | [diff] [blame] | 2054 | return c->klass->get_parent_desc(c); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2055 | } |
| 2056 | |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2057 | /* |
| 2058 | * Check that @a allows everything that @b needs. @a and @b must reference same |
| 2059 | * child node. |
| 2060 | */ |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2061 | static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp) |
| 2062 | { |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2063 | const char *child_bs_name; |
| 2064 | g_autofree char *a_user = NULL; |
| 2065 | g_autofree char *b_user = NULL; |
| 2066 | g_autofree char *perms = NULL; |
| 2067 | |
| 2068 | assert(a->bs); |
| 2069 | assert(a->bs == b->bs); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2070 | |
| 2071 | if ((b->perm & a->shared_perm) == b->perm) { |
| 2072 | return true; |
| 2073 | } |
| 2074 | |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2075 | child_bs_name = bdrv_get_node_name(b->bs); |
| 2076 | a_user = bdrv_child_user_desc(a); |
| 2077 | b_user = bdrv_child_user_desc(b); |
| 2078 | perms = bdrv_perm_names(b->perm & ~a->shared_perm); |
| 2079 | |
| 2080 | error_setg(errp, "Permission conflict on node '%s': permissions '%s' are " |
| 2081 | "both required by %s (uses node '%s' as '%s' child) and " |
| 2082 | "unshared by %s (uses node '%s' as '%s' child).", |
| 2083 | child_bs_name, perms, |
| 2084 | b_user, child_bs_name, b->name, |
| 2085 | a_user, child_bs_name, a->name); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2086 | |
| 2087 | return false; |
| 2088 | } |
| 2089 | |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2090 | static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp) |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2091 | { |
| 2092 | BdrvChild *a, *b; |
| 2093 | |
| 2094 | /* |
| 2095 | * During the loop we'll look at each pair twice. That's correct because |
| 2096 | * bdrv_a_allow_b() is asymmetric and we should check each pair in both |
| 2097 | * directions. |
| 2098 | */ |
| 2099 | QLIST_FOREACH(a, &bs->parents, next_parent) { |
| 2100 | QLIST_FOREACH(b, &bs->parents, next_parent) { |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2101 | if (a == b) { |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2102 | continue; |
| 2103 | } |
| 2104 | |
| 2105 | if (!bdrv_a_allow_b(a, b, errp)) { |
| 2106 | return true; |
| 2107 | } |
| 2108 | } |
| 2109 | } |
| 2110 | |
| 2111 | return false; |
| 2112 | } |
| 2113 | |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2114 | static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2115 | BdrvChild *c, BdrvChildRole role, |
| 2116 | BlockReopenQueue *reopen_queue, |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2117 | uint64_t parent_perm, uint64_t parent_shared, |
| 2118 | uint64_t *nperm, uint64_t *nshared) |
| 2119 | { |
Alberto Garcia | 0b3ca76 | 2019-04-04 14:29:53 +0300 | [diff] [blame] | 2120 | assert(bs->drv && bs->drv->bdrv_child_perm); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2121 | bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, |
Alberto Garcia | 0b3ca76 | 2019-04-04 14:29:53 +0300 | [diff] [blame] | 2122 | parent_perm, parent_shared, |
| 2123 | nperm, nshared); |
Kevin Wolf | e0995dc | 2017-09-14 12:47:11 +0200 | [diff] [blame] | 2124 | /* TODO Take force_share from reopen_queue */ |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2125 | if (child_bs && child_bs->force_share) { |
| 2126 | *nshared = BLK_PERM_ALL; |
| 2127 | } |
| 2128 | } |
| 2129 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2130 | /* |
| 2131 | * Adds the whole subtree of @bs (including @bs itself) to the @list (except for |
| 2132 | * nodes that are already in the @list, of course) so that final list is |
| 2133 | * topologically sorted. Return the result (GSList @list object is updated, so |
| 2134 | * don't use old reference after function call). |
| 2135 | * |
| 2136 | * On function start @list must be already topologically sorted and for any node |
| 2137 | * in the @list the whole subtree of the node must be in the @list as well. The |
| 2138 | * simplest way to satisfy this criteria: use only result of |
| 2139 | * bdrv_topological_dfs() or NULL as @list parameter. |
| 2140 | */ |
| 2141 | static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found, |
| 2142 | BlockDriverState *bs) |
| 2143 | { |
| 2144 | BdrvChild *child; |
| 2145 | g_autoptr(GHashTable) local_found = NULL; |
| 2146 | |
| 2147 | if (!found) { |
| 2148 | assert(!list); |
| 2149 | found = local_found = g_hash_table_new(NULL, NULL); |
| 2150 | } |
| 2151 | |
| 2152 | if (g_hash_table_contains(found, bs)) { |
| 2153 | return list; |
| 2154 | } |
| 2155 | g_hash_table_add(found, bs); |
| 2156 | |
| 2157 | QLIST_FOREACH(child, &bs->children, next) { |
| 2158 | list = bdrv_topological_dfs(list, found, child->bs); |
| 2159 | } |
| 2160 | |
| 2161 | return g_slist_prepend(list, bs); |
| 2162 | } |
| 2163 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2164 | typedef struct BdrvChildSetPermState { |
| 2165 | BdrvChild *child; |
| 2166 | uint64_t old_perm; |
| 2167 | uint64_t old_shared_perm; |
| 2168 | } BdrvChildSetPermState; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2169 | |
| 2170 | static void bdrv_child_set_perm_abort(void *opaque) |
| 2171 | { |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2172 | BdrvChildSetPermState *s = opaque; |
| 2173 | |
| 2174 | s->child->perm = s->old_perm; |
| 2175 | s->child->shared_perm = s->old_shared_perm; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2176 | } |
| 2177 | |
| 2178 | static TransactionActionDrv bdrv_child_set_pem_drv = { |
| 2179 | .abort = bdrv_child_set_perm_abort, |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2180 | .clean = g_free, |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2181 | }; |
| 2182 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2183 | static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, |
| 2184 | uint64_t shared, Transaction *tran) |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2185 | { |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2186 | BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1); |
| 2187 | |
| 2188 | *s = (BdrvChildSetPermState) { |
| 2189 | .child = c, |
| 2190 | .old_perm = c->perm, |
| 2191 | .old_shared_perm = c->shared_perm, |
| 2192 | }; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2193 | |
| 2194 | c->perm = perm; |
| 2195 | c->shared_perm = shared; |
| 2196 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2197 | tran_add(tran, &bdrv_child_set_pem_drv, s); |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2198 | } |
| 2199 | |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2200 | static void bdrv_drv_set_perm_commit(void *opaque) |
| 2201 | { |
| 2202 | BlockDriverState *bs = opaque; |
| 2203 | uint64_t cumulative_perms, cumulative_shared_perms; |
| 2204 | |
| 2205 | if (bs->drv->bdrv_set_perm) { |
| 2206 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
| 2207 | &cumulative_shared_perms); |
| 2208 | bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); |
| 2209 | } |
| 2210 | } |
| 2211 | |
| 2212 | static void bdrv_drv_set_perm_abort(void *opaque) |
| 2213 | { |
| 2214 | BlockDriverState *bs = opaque; |
| 2215 | |
| 2216 | if (bs->drv->bdrv_abort_perm_update) { |
| 2217 | bs->drv->bdrv_abort_perm_update(bs); |
| 2218 | } |
| 2219 | } |
| 2220 | |
| 2221 | TransactionActionDrv bdrv_drv_set_perm_drv = { |
| 2222 | .abort = bdrv_drv_set_perm_abort, |
| 2223 | .commit = bdrv_drv_set_perm_commit, |
| 2224 | }; |
| 2225 | |
| 2226 | static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, |
| 2227 | uint64_t shared_perm, Transaction *tran, |
| 2228 | Error **errp) |
| 2229 | { |
| 2230 | if (!bs->drv) { |
| 2231 | return 0; |
| 2232 | } |
| 2233 | |
| 2234 | if (bs->drv->bdrv_check_perm) { |
| 2235 | int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp); |
| 2236 | if (ret < 0) { |
| 2237 | return ret; |
| 2238 | } |
| 2239 | } |
| 2240 | |
| 2241 | if (tran) { |
| 2242 | tran_add(tran, &bdrv_drv_set_perm_drv, bs); |
| 2243 | } |
| 2244 | |
| 2245 | return 0; |
| 2246 | } |
| 2247 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2248 | typedef struct BdrvReplaceChildState { |
| 2249 | BdrvChild *child; |
| 2250 | BlockDriverState *old_bs; |
| 2251 | } BdrvReplaceChildState; |
| 2252 | |
| 2253 | static void bdrv_replace_child_commit(void *opaque) |
| 2254 | { |
| 2255 | BdrvReplaceChildState *s = opaque; |
| 2256 | |
| 2257 | bdrv_unref(s->old_bs); |
| 2258 | } |
| 2259 | |
| 2260 | static void bdrv_replace_child_abort(void *opaque) |
| 2261 | { |
| 2262 | BdrvReplaceChildState *s = opaque; |
| 2263 | BlockDriverState *new_bs = s->child->bs; |
| 2264 | |
| 2265 | /* old_bs reference is transparently moved from @s to @s->child */ |
| 2266 | bdrv_replace_child_noperm(s->child, s->old_bs); |
| 2267 | bdrv_unref(new_bs); |
| 2268 | } |
| 2269 | |
| 2270 | static TransactionActionDrv bdrv_replace_child_drv = { |
| 2271 | .commit = bdrv_replace_child_commit, |
| 2272 | .abort = bdrv_replace_child_abort, |
| 2273 | .clean = g_free, |
| 2274 | }; |
| 2275 | |
| 2276 | /* |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2277 | * bdrv_replace_child_tran |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2278 | * |
| 2279 | * Note: real unref of old_bs is done only on commit. |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2280 | * |
| 2281 | * The function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2282 | */ |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2283 | static void bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs, |
| 2284 | Transaction *tran) |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2285 | { |
| 2286 | BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1); |
| 2287 | *s = (BdrvReplaceChildState) { |
| 2288 | .child = child, |
| 2289 | .old_bs = child->bs, |
| 2290 | }; |
| 2291 | tran_add(tran, &bdrv_replace_child_drv, s); |
| 2292 | |
| 2293 | if (new_bs) { |
| 2294 | bdrv_ref(new_bs); |
| 2295 | } |
| 2296 | bdrv_replace_child_noperm(child, new_bs); |
| 2297 | /* old_bs reference is transparently moved from @child to @s */ |
| 2298 | } |
| 2299 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2300 | /* |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2301 | * Refresh permissions in @bs subtree. The function is intended to be called |
| 2302 | * after some graph modification that was done without permission update. |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2303 | */ |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2304 | static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q, |
| 2305 | Transaction *tran, Error **errp) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2306 | { |
| 2307 | BlockDriver *drv = bs->drv; |
| 2308 | BdrvChild *c; |
| 2309 | int ret; |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2310 | uint64_t cumulative_perms, cumulative_shared_perms; |
| 2311 | |
| 2312 | bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2313 | |
| 2314 | /* Write permissions never work with read-only images */ |
| 2315 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2316 | !bdrv_is_writable_after_reopen(bs, q)) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2317 | { |
Max Reitz | 481e0ee | 2019-05-15 22:15:00 +0200 | [diff] [blame] | 2318 | if (!bdrv_is_writable_after_reopen(bs, NULL)) { |
| 2319 | error_setg(errp, "Block node is read-only"); |
| 2320 | } else { |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2321 | error_setg(errp, "Read-only block node '%s' cannot support " |
| 2322 | "read-write users", bdrv_get_node_name(bs)); |
Max Reitz | 481e0ee | 2019-05-15 22:15:00 +0200 | [diff] [blame] | 2323 | } |
| 2324 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2325 | return -EPERM; |
| 2326 | } |
| 2327 | |
Kevin Wolf | 9c60a5d | 2020-07-16 16:26:00 +0200 | [diff] [blame] | 2328 | /* |
| 2329 | * Unaligned requests will automatically be aligned to bl.request_alignment |
| 2330 | * and without RESIZE we can't extend requests to write to space beyond the |
| 2331 | * end of the image, so it's required that the image size is aligned. |
| 2332 | */ |
| 2333 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && |
| 2334 | !(cumulative_perms & BLK_PERM_RESIZE)) |
| 2335 | { |
| 2336 | if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) { |
| 2337 | error_setg(errp, "Cannot get 'write' permission without 'resize': " |
| 2338 | "Image size is not a multiple of request " |
| 2339 | "alignment"); |
| 2340 | return -EPERM; |
| 2341 | } |
| 2342 | } |
| 2343 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2344 | /* Check this node */ |
| 2345 | if (!drv) { |
| 2346 | return 0; |
| 2347 | } |
| 2348 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2349 | ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran, |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2350 | errp); |
| 2351 | if (ret < 0) { |
| 2352 | return ret; |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2353 | } |
| 2354 | |
Kevin Wolf | 78e421c | 2016-12-20 23:25:12 +0100 | [diff] [blame] | 2355 | /* Drivers that never have children can omit .bdrv_child_perm() */ |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2356 | if (!drv->bdrv_child_perm) { |
Kevin Wolf | 78e421c | 2016-12-20 23:25:12 +0100 | [diff] [blame] | 2357 | assert(QLIST_EMPTY(&bs->children)); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2358 | return 0; |
| 2359 | } |
| 2360 | |
| 2361 | /* Check all children */ |
| 2362 | QLIST_FOREACH(c, &bs->children, next) { |
| 2363 | uint64_t cur_perm, cur_shared; |
Max Reitz | 9eab154 | 2019-05-22 19:03:50 +0200 | [diff] [blame] | 2364 | |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2365 | bdrv_child_perm(bs, c->bs, c, c->role, q, |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2366 | cumulative_perms, cumulative_shared_perms, |
| 2367 | &cur_perm, &cur_shared); |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2368 | bdrv_child_set_perm(c, cur_perm, cur_shared, tran); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2369 | } |
| 2370 | |
| 2371 | return 0; |
| 2372 | } |
| 2373 | |
Vladimir Sementsov-Ogievskiy | 2540980 | 2021-04-28 18:18:00 +0300 | [diff] [blame] | 2374 | static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, |
| 2375 | Transaction *tran, Error **errp) |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2376 | { |
| 2377 | int ret; |
| 2378 | BlockDriverState *bs; |
| 2379 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2380 | for ( ; list; list = list->next) { |
| 2381 | bs = list->data; |
| 2382 | |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2383 | if (bdrv_parent_perms_conflict(bs, errp)) { |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2384 | return -EINVAL; |
| 2385 | } |
| 2386 | |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2387 | ret = bdrv_node_refresh_perm(bs, q, tran, errp); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2388 | if (ret < 0) { |
| 2389 | return ret; |
| 2390 | } |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2391 | } |
Vladimir Sementsov-Ogievskiy | 3ef45e0 | 2021-04-28 18:17:40 +0300 | [diff] [blame] | 2392 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2393 | return 0; |
| 2394 | } |
| 2395 | |
Kevin Wolf | c7a0f2b | 2020-03-10 12:38:25 +0100 | [diff] [blame] | 2396 | void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, |
| 2397 | uint64_t *shared_perm) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2398 | { |
| 2399 | BdrvChild *c; |
| 2400 | uint64_t cumulative_perms = 0; |
| 2401 | uint64_t cumulative_shared_perms = BLK_PERM_ALL; |
| 2402 | |
| 2403 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
| 2404 | cumulative_perms |= c->perm; |
| 2405 | cumulative_shared_perms &= c->shared_perm; |
| 2406 | } |
| 2407 | |
| 2408 | *perm = cumulative_perms; |
| 2409 | *shared_perm = cumulative_shared_perms; |
| 2410 | } |
| 2411 | |
Fam Zheng | 5176196 | 2017-05-03 00:35:36 +0800 | [diff] [blame] | 2412 | char *bdrv_perm_names(uint64_t perm) |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2413 | { |
| 2414 | struct perm_name { |
| 2415 | uint64_t perm; |
| 2416 | const char *name; |
| 2417 | } permissions[] = { |
| 2418 | { BLK_PERM_CONSISTENT_READ, "consistent read" }, |
| 2419 | { BLK_PERM_WRITE, "write" }, |
| 2420 | { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, |
| 2421 | { BLK_PERM_RESIZE, "resize" }, |
| 2422 | { BLK_PERM_GRAPH_MOD, "change children" }, |
| 2423 | { 0, NULL } |
| 2424 | }; |
| 2425 | |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2426 | GString *result = g_string_sized_new(30); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2427 | struct perm_name *p; |
| 2428 | |
| 2429 | for (p = permissions; p->name; p++) { |
| 2430 | if (perm & p->perm) { |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2431 | if (result->len > 0) { |
| 2432 | g_string_append(result, ", "); |
| 2433 | } |
| 2434 | g_string_append(result, p->name); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2435 | } |
| 2436 | } |
| 2437 | |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2438 | return g_string_free(result, FALSE); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2439 | } |
| 2440 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2441 | |
Vladimir Sementsov-Ogievskiy | 071b474 | 2020-11-06 15:42:41 +0300 | [diff] [blame] | 2442 | static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp) |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2443 | { |
| 2444 | int ret; |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2445 | Transaction *tran = tran_new(); |
| 2446 | g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs); |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2447 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2448 | ret = bdrv_list_refresh_perms(list, NULL, tran, errp); |
| 2449 | tran_finalize(tran, ret); |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2450 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2451 | return ret; |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2452 | } |
| 2453 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2454 | int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, |
| 2455 | Error **errp) |
| 2456 | { |
Max Reitz | 1046779 | 2019-05-22 19:03:51 +0200 | [diff] [blame] | 2457 | Error *local_err = NULL; |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2458 | Transaction *tran = tran_new(); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2459 | int ret; |
| 2460 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2461 | bdrv_child_set_perm(c, perm, shared, tran); |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2462 | |
| 2463 | ret = bdrv_refresh_perms(c->bs, &local_err); |
| 2464 | |
| 2465 | tran_finalize(tran, ret); |
| 2466 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2467 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | 071b474 | 2020-11-06 15:42:41 +0300 | [diff] [blame] | 2468 | if ((perm & ~c->perm) || (c->shared_perm & ~shared)) { |
| 2469 | /* tighten permissions */ |
Max Reitz | 1046779 | 2019-05-22 19:03:51 +0200 | [diff] [blame] | 2470 | error_propagate(errp, local_err); |
| 2471 | } else { |
| 2472 | /* |
| 2473 | * Our caller may intend to only loosen restrictions and |
| 2474 | * does not expect this function to fail. Errors are not |
| 2475 | * fatal in such a case, so we can just hide them from our |
| 2476 | * caller. |
| 2477 | */ |
| 2478 | error_free(local_err); |
| 2479 | ret = 0; |
| 2480 | } |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2481 | } |
| 2482 | |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2483 | return ret; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2484 | } |
| 2485 | |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2486 | int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp) |
| 2487 | { |
| 2488 | uint64_t parent_perms, parent_shared; |
| 2489 | uint64_t perms, shared; |
| 2490 | |
| 2491 | bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2492 | bdrv_child_perm(bs, c->bs, c, c->role, NULL, |
Max Reitz | bf8e925 | 2020-05-13 13:05:16 +0200 | [diff] [blame] | 2493 | parent_perms, parent_shared, &perms, &shared); |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2494 | |
| 2495 | return bdrv_child_try_set_perm(c, perms, shared, errp); |
| 2496 | } |
| 2497 | |
Max Reitz | 87278af | 2020-05-13 13:05:40 +0200 | [diff] [blame] | 2498 | /* |
| 2499 | * Default implementation for .bdrv_child_perm() for block filters: |
| 2500 | * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the |
| 2501 | * filtered child. |
| 2502 | */ |
| 2503 | static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 87278af | 2020-05-13 13:05:40 +0200 | [diff] [blame] | 2504 | BdrvChildRole role, |
| 2505 | BlockReopenQueue *reopen_queue, |
| 2506 | uint64_t perm, uint64_t shared, |
| 2507 | uint64_t *nperm, uint64_t *nshared) |
Kevin Wolf | 6a1b9ee | 2016-12-15 11:27:32 +0100 | [diff] [blame] | 2508 | { |
Kevin Wolf | e444fa8 | 2019-08-02 15:59:41 +0200 | [diff] [blame] | 2509 | *nperm = perm & DEFAULT_PERM_PASSTHROUGH; |
| 2510 | *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; |
Kevin Wolf | 6a1b9ee | 2016-12-15 11:27:32 +0100 | [diff] [blame] | 2511 | } |
| 2512 | |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2513 | static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2514 | BdrvChildRole role, |
| 2515 | BlockReopenQueue *reopen_queue, |
| 2516 | uint64_t perm, uint64_t shared, |
| 2517 | uint64_t *nperm, uint64_t *nshared) |
| 2518 | { |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2519 | assert(role & BDRV_CHILD_COW); |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2520 | |
| 2521 | /* |
| 2522 | * We want consistent read from backing files if the parent needs it. |
| 2523 | * No other operations are performed on backing files. |
| 2524 | */ |
| 2525 | perm &= BLK_PERM_CONSISTENT_READ; |
| 2526 | |
| 2527 | /* |
| 2528 | * If the parent can deal with changing data, we're okay with a |
| 2529 | * writable and resizable backing file. |
| 2530 | * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? |
| 2531 | */ |
| 2532 | if (shared & BLK_PERM_WRITE) { |
| 2533 | shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2534 | } else { |
| 2535 | shared = 0; |
| 2536 | } |
| 2537 | |
| 2538 | shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD | |
| 2539 | BLK_PERM_WRITE_UNCHANGED; |
| 2540 | |
| 2541 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 2542 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2543 | } |
| 2544 | |
| 2545 | *nperm = perm; |
| 2546 | *nshared = shared; |
| 2547 | } |
| 2548 | |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2549 | static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2550 | BdrvChildRole role, |
| 2551 | BlockReopenQueue *reopen_queue, |
| 2552 | uint64_t perm, uint64_t shared, |
| 2553 | uint64_t *nperm, uint64_t *nshared) |
| 2554 | { |
| 2555 | int flags; |
| 2556 | |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2557 | assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)); |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2558 | |
| 2559 | flags = bdrv_reopen_get_flags(reopen_queue, bs); |
| 2560 | |
| 2561 | /* |
| 2562 | * Apart from the modifications below, the same permissions are |
| 2563 | * forwarded and left alone as for filters |
| 2564 | */ |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2565 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2566 | perm, shared, &perm, &shared); |
| 2567 | |
Max Reitz | f889054 | 2020-05-13 13:05:28 +0200 | [diff] [blame] | 2568 | if (role & BDRV_CHILD_METADATA) { |
| 2569 | /* Format drivers may touch metadata even if the guest doesn't write */ |
| 2570 | if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { |
| 2571 | perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2572 | } |
| 2573 | |
| 2574 | /* |
| 2575 | * bs->file always needs to be consistent because of the |
| 2576 | * metadata. We can never allow other users to resize or write |
| 2577 | * to it. |
| 2578 | */ |
| 2579 | if (!(flags & BDRV_O_NO_IO)) { |
| 2580 | perm |= BLK_PERM_CONSISTENT_READ; |
| 2581 | } |
| 2582 | shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2583 | } |
| 2584 | |
Max Reitz | f889054 | 2020-05-13 13:05:28 +0200 | [diff] [blame] | 2585 | if (role & BDRV_CHILD_DATA) { |
| 2586 | /* |
| 2587 | * Technically, everything in this block is a subset of the |
| 2588 | * BDRV_CHILD_METADATA path taken above, and so this could |
| 2589 | * be an "else if" branch. However, that is not obvious, and |
| 2590 | * this function is not performance critical, therefore we let |
| 2591 | * this be an independent "if". |
| 2592 | */ |
| 2593 | |
| 2594 | /* |
| 2595 | * We cannot allow other users to resize the file because the |
| 2596 | * format driver might have some assumptions about the size |
| 2597 | * (e.g. because it is stored in metadata, or because the file |
| 2598 | * is split into fixed-size data files). |
| 2599 | */ |
| 2600 | shared &= ~BLK_PERM_RESIZE; |
| 2601 | |
| 2602 | /* |
| 2603 | * WRITE_UNCHANGED often cannot be performed as such on the |
| 2604 | * data file. For example, the qcow2 driver may still need to |
| 2605 | * write copied clusters on copy-on-read. |
| 2606 | */ |
| 2607 | if (perm & BLK_PERM_WRITE_UNCHANGED) { |
| 2608 | perm |= BLK_PERM_WRITE; |
| 2609 | } |
| 2610 | |
| 2611 | /* |
| 2612 | * If the data file is written to, the format driver may |
| 2613 | * expect to be able to resize it by writing beyond the EOF. |
| 2614 | */ |
| 2615 | if (perm & BLK_PERM_WRITE) { |
| 2616 | perm |= BLK_PERM_RESIZE; |
| 2617 | } |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2618 | } |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2619 | |
| 2620 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 2621 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2622 | } |
| 2623 | |
| 2624 | *nperm = perm; |
| 2625 | *nshared = shared; |
| 2626 | } |
| 2627 | |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2628 | void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2629 | BdrvChildRole role, BlockReopenQueue *reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2630 | uint64_t perm, uint64_t shared, |
| 2631 | uint64_t *nperm, uint64_t *nshared) |
| 2632 | { |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2633 | if (role & BDRV_CHILD_FILTERED) { |
| 2634 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | |
| 2635 | BDRV_CHILD_COW))); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2636 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2637 | perm, shared, nperm, nshared); |
| 2638 | } else if (role & BDRV_CHILD_COW) { |
| 2639 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA))); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2640 | bdrv_default_perms_for_cow(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2641 | perm, shared, nperm, nshared); |
| 2642 | } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) { |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2643 | bdrv_default_perms_for_storage(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2644 | perm, shared, nperm, nshared); |
| 2645 | } else { |
| 2646 | g_assert_not_reached(); |
| 2647 | } |
| 2648 | } |
| 2649 | |
Max Reitz | 7b1d9c4 | 2019-11-08 13:34:51 +0100 | [diff] [blame] | 2650 | uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm) |
| 2651 | { |
| 2652 | static const uint64_t permissions[] = { |
| 2653 | [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ, |
| 2654 | [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE, |
| 2655 | [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED, |
| 2656 | [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE, |
| 2657 | [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD, |
| 2658 | }; |
| 2659 | |
| 2660 | QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX); |
| 2661 | QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1); |
| 2662 | |
| 2663 | assert(qapi_perm < BLOCK_PERMISSION__MAX); |
| 2664 | |
| 2665 | return permissions[qapi_perm]; |
| 2666 | } |
| 2667 | |
Kevin Wolf | 8ee0399 | 2017-03-06 13:45:28 +0100 | [diff] [blame] | 2668 | static void bdrv_replace_child_noperm(BdrvChild *child, |
| 2669 | BlockDriverState *new_bs) |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2670 | { |
| 2671 | BlockDriverState *old_bs = child->bs; |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2672 | int new_bs_quiesce_counter; |
| 2673 | int drain_saldo; |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2674 | |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 2675 | assert(!child->frozen); |
| 2676 | |
Fam Zheng | bb2614e | 2017-04-07 14:54:10 +0800 | [diff] [blame] | 2677 | if (old_bs && new_bs) { |
| 2678 | assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); |
| 2679 | } |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2680 | |
| 2681 | new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0); |
| 2682 | drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter; |
| 2683 | |
| 2684 | /* |
| 2685 | * If the new child node is drained but the old one was not, flush |
| 2686 | * all outstanding requests to the old child node. |
| 2687 | */ |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2688 | while (drain_saldo > 0 && child->klass->drained_begin) { |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2689 | bdrv_parent_drained_begin_single(child, true); |
| 2690 | drain_saldo--; |
| 2691 | } |
| 2692 | |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2693 | if (old_bs) { |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 2694 | /* Detach first so that the recursive drain sections coming from @child |
| 2695 | * are already gone and we only end the drain sections that came from |
| 2696 | * elsewhere. */ |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2697 | if (child->klass->detach) { |
| 2698 | child->klass->detach(child); |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 2699 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2700 | QLIST_REMOVE(child, next_parent); |
| 2701 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2702 | |
| 2703 | child->bs = new_bs; |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 2704 | |
| 2705 | if (new_bs) { |
| 2706 | QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2707 | |
| 2708 | /* |
| 2709 | * Detaching the old node may have led to the new node's |
| 2710 | * quiesce_counter having been decreased. Not a problem, we |
| 2711 | * just need to recognize this here and then invoke |
| 2712 | * drained_end appropriately more often. |
| 2713 | */ |
| 2714 | assert(new_bs->quiesce_counter <= new_bs_quiesce_counter); |
| 2715 | drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter; |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2716 | |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 2717 | /* Attach only after starting new drained sections, so that recursive |
| 2718 | * drain sections coming from @child don't get an extra .drained_begin |
| 2719 | * callback. */ |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2720 | if (child->klass->attach) { |
| 2721 | child->klass->attach(child); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 2722 | } |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 2723 | } |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2724 | |
| 2725 | /* |
| 2726 | * If the old child node was drained but the new one is not, allow |
| 2727 | * requests to come in only after the new node has been attached. |
| 2728 | */ |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2729 | while (drain_saldo < 0 && child->klass->drained_end) { |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2730 | bdrv_parent_drained_end_single(child); |
| 2731 | drain_saldo++; |
| 2732 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2733 | } |
| 2734 | |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 2735 | static void bdrv_child_free(void *opaque) |
| 2736 | { |
| 2737 | BdrvChild *c = opaque; |
| 2738 | |
| 2739 | g_free(c->name); |
| 2740 | g_free(c); |
| 2741 | } |
| 2742 | |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2743 | static void bdrv_remove_empty_child(BdrvChild *child) |
| 2744 | { |
| 2745 | assert(!child->bs); |
| 2746 | QLIST_SAFE_REMOVE(child, next); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 2747 | bdrv_child_free(child); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2748 | } |
| 2749 | |
| 2750 | typedef struct BdrvAttachChildCommonState { |
| 2751 | BdrvChild **child; |
| 2752 | AioContext *old_parent_ctx; |
| 2753 | AioContext *old_child_ctx; |
| 2754 | } BdrvAttachChildCommonState; |
| 2755 | |
| 2756 | static void bdrv_attach_child_common_abort(void *opaque) |
| 2757 | { |
| 2758 | BdrvAttachChildCommonState *s = opaque; |
| 2759 | BdrvChild *child = *s->child; |
| 2760 | BlockDriverState *bs = child->bs; |
| 2761 | |
| 2762 | bdrv_replace_child_noperm(child, NULL); |
| 2763 | |
| 2764 | if (bdrv_get_aio_context(bs) != s->old_child_ctx) { |
| 2765 | bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort); |
| 2766 | } |
| 2767 | |
| 2768 | if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) { |
| 2769 | GSList *ignore = g_slist_prepend(NULL, child); |
| 2770 | |
| 2771 | child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore, |
| 2772 | &error_abort); |
| 2773 | g_slist_free(ignore); |
| 2774 | ignore = g_slist_prepend(NULL, child); |
| 2775 | child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore); |
| 2776 | |
| 2777 | g_slist_free(ignore); |
| 2778 | } |
| 2779 | |
| 2780 | bdrv_unref(bs); |
| 2781 | bdrv_remove_empty_child(child); |
| 2782 | *s->child = NULL; |
| 2783 | } |
| 2784 | |
| 2785 | static TransactionActionDrv bdrv_attach_child_common_drv = { |
| 2786 | .abort = bdrv_attach_child_common_abort, |
| 2787 | .clean = g_free, |
| 2788 | }; |
| 2789 | |
| 2790 | /* |
| 2791 | * Common part of attaching bdrv child to bs or to blk or to job |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 2792 | * |
| 2793 | * Resulting new child is returned through @child. |
| 2794 | * At start *@child must be NULL. |
| 2795 | * @child is saved to a new entry of @tran, so that *@child could be reverted to |
| 2796 | * NULL on abort(). So referenced variable must live at least until transaction |
| 2797 | * end. |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 2798 | * |
| 2799 | * Function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2800 | */ |
| 2801 | static int bdrv_attach_child_common(BlockDriverState *child_bs, |
| 2802 | const char *child_name, |
| 2803 | const BdrvChildClass *child_class, |
| 2804 | BdrvChildRole child_role, |
| 2805 | uint64_t perm, uint64_t shared_perm, |
| 2806 | void *opaque, BdrvChild **child, |
| 2807 | Transaction *tran, Error **errp) |
| 2808 | { |
| 2809 | BdrvChild *new_child; |
| 2810 | AioContext *parent_ctx; |
| 2811 | AioContext *child_ctx = bdrv_get_aio_context(child_bs); |
| 2812 | |
| 2813 | assert(child); |
| 2814 | assert(*child == NULL); |
Vladimir Sementsov-Ogievskiy | da261b6 | 2021-06-01 10:52:17 +0300 | [diff] [blame] | 2815 | assert(child_class->get_parent_desc); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2816 | |
| 2817 | new_child = g_new(BdrvChild, 1); |
| 2818 | *new_child = (BdrvChild) { |
| 2819 | .bs = NULL, |
| 2820 | .name = g_strdup(child_name), |
| 2821 | .klass = child_class, |
| 2822 | .role = child_role, |
| 2823 | .perm = perm, |
| 2824 | .shared_perm = shared_perm, |
| 2825 | .opaque = opaque, |
| 2826 | }; |
| 2827 | |
| 2828 | /* |
| 2829 | * If the AioContexts don't match, first try to move the subtree of |
| 2830 | * child_bs into the AioContext of the new parent. If this doesn't work, |
| 2831 | * try moving the parent into the AioContext of child_bs instead. |
| 2832 | */ |
| 2833 | parent_ctx = bdrv_child_get_parent_aio_context(new_child); |
| 2834 | if (child_ctx != parent_ctx) { |
| 2835 | Error *local_err = NULL; |
| 2836 | int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err); |
| 2837 | |
| 2838 | if (ret < 0 && child_class->can_set_aio_ctx) { |
| 2839 | GSList *ignore = g_slist_prepend(NULL, new_child); |
| 2840 | if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore, |
| 2841 | NULL)) |
| 2842 | { |
| 2843 | error_free(local_err); |
| 2844 | ret = 0; |
| 2845 | g_slist_free(ignore); |
| 2846 | ignore = g_slist_prepend(NULL, new_child); |
| 2847 | child_class->set_aio_ctx(new_child, child_ctx, &ignore); |
| 2848 | } |
| 2849 | g_slist_free(ignore); |
| 2850 | } |
| 2851 | |
| 2852 | if (ret < 0) { |
| 2853 | error_propagate(errp, local_err); |
| 2854 | bdrv_remove_empty_child(new_child); |
| 2855 | return ret; |
| 2856 | } |
| 2857 | } |
| 2858 | |
| 2859 | bdrv_ref(child_bs); |
| 2860 | bdrv_replace_child_noperm(new_child, child_bs); |
| 2861 | |
| 2862 | *child = new_child; |
| 2863 | |
| 2864 | BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1); |
| 2865 | *s = (BdrvAttachChildCommonState) { |
| 2866 | .child = child, |
| 2867 | .old_parent_ctx = parent_ctx, |
| 2868 | .old_child_ctx = child_ctx, |
| 2869 | }; |
| 2870 | tran_add(tran, &bdrv_attach_child_common_drv, s); |
| 2871 | |
| 2872 | return 0; |
| 2873 | } |
| 2874 | |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 2875 | /* |
| 2876 | * Variable referenced by @child must live at least until transaction end. |
| 2877 | * (see bdrv_attach_child_common() doc for details) |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 2878 | * |
| 2879 | * Function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 2880 | */ |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 2881 | static int bdrv_attach_child_noperm(BlockDriverState *parent_bs, |
| 2882 | BlockDriverState *child_bs, |
| 2883 | const char *child_name, |
| 2884 | const BdrvChildClass *child_class, |
| 2885 | BdrvChildRole child_role, |
| 2886 | BdrvChild **child, |
| 2887 | Transaction *tran, |
| 2888 | Error **errp) |
| 2889 | { |
| 2890 | int ret; |
| 2891 | uint64_t perm, shared_perm; |
| 2892 | |
| 2893 | assert(parent_bs->drv); |
| 2894 | |
| 2895 | bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); |
| 2896 | bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, |
| 2897 | perm, shared_perm, &perm, &shared_perm); |
| 2898 | |
| 2899 | ret = bdrv_attach_child_common(child_bs, child_name, child_class, |
| 2900 | child_role, perm, shared_perm, parent_bs, |
| 2901 | child, tran, errp); |
| 2902 | if (ret < 0) { |
| 2903 | return ret; |
| 2904 | } |
| 2905 | |
| 2906 | QLIST_INSERT_HEAD(&parent_bs->children, *child, next); |
| 2907 | /* |
| 2908 | * child is removed in bdrv_attach_child_common_abort(), so don't care to |
| 2909 | * abort this change separately. |
| 2910 | */ |
| 2911 | |
| 2912 | return 0; |
| 2913 | } |
| 2914 | |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2915 | static void bdrv_detach_child(BdrvChild *child) |
| 2916 | { |
Vladimir Sementsov-Ogievskiy | 4954aac | 2021-04-28 18:18:01 +0300 | [diff] [blame] | 2917 | BlockDriverState *old_bs = child->bs; |
| 2918 | |
| 2919 | bdrv_replace_child_noperm(child, NULL); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2920 | bdrv_remove_empty_child(child); |
Vladimir Sementsov-Ogievskiy | 4954aac | 2021-04-28 18:18:01 +0300 | [diff] [blame] | 2921 | |
| 2922 | if (old_bs) { |
| 2923 | /* |
| 2924 | * Update permissions for old node. We're just taking a parent away, so |
| 2925 | * we're loosening restrictions. Errors of permission update are not |
| 2926 | * fatal in this case, ignore them. |
| 2927 | */ |
| 2928 | bdrv_refresh_perms(old_bs, NULL); |
| 2929 | |
| 2930 | /* |
| 2931 | * When the parent requiring a non-default AioContext is removed, the |
| 2932 | * node moves back to the main AioContext |
| 2933 | */ |
| 2934 | bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL); |
| 2935 | } |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2936 | } |
| 2937 | |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 2938 | /* |
| 2939 | * This function steals the reference to child_bs from the caller. |
| 2940 | * That reference is later dropped by bdrv_root_unref_child(). |
| 2941 | * |
| 2942 | * On failure NULL is returned, errp is set and the reference to |
| 2943 | * child_bs is also dropped. |
Kevin Wolf | 132ada8 | 2019-04-24 17:41:46 +0200 | [diff] [blame] | 2944 | * |
| 2945 | * The caller must hold the AioContext lock @child_bs, but not that of @ctx |
| 2946 | * (unless @child_bs is already in @ctx). |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 2947 | */ |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 2948 | BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, |
| 2949 | const char *child_name, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2950 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 2951 | BdrvChildRole child_role, |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2952 | uint64_t perm, uint64_t shared_perm, |
| 2953 | void *opaque, Error **errp) |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 2954 | { |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2955 | int ret; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2956 | BdrvChild *child = NULL; |
| 2957 | Transaction *tran = tran_new(); |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2958 | |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2959 | ret = bdrv_attach_child_common(child_bs, child_name, child_class, |
| 2960 | child_role, perm, shared_perm, opaque, |
| 2961 | &child, tran, errp); |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2962 | if (ret < 0) { |
Kevin Wolf | e878bb1 | 2021-05-03 13:05:54 +0200 | [diff] [blame] | 2963 | goto out; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2964 | } |
| 2965 | |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2966 | ret = bdrv_refresh_perms(child_bs, errp); |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 2967 | |
Kevin Wolf | e878bb1 | 2021-05-03 13:05:54 +0200 | [diff] [blame] | 2968 | out: |
| 2969 | tran_finalize(tran, ret); |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 2970 | /* child is unset on failure by bdrv_attach_child_common_abort() */ |
| 2971 | assert((ret < 0) == !child); |
| 2972 | |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2973 | bdrv_unref(child_bs); |
Kevin Wolf | b4b059f | 2015-06-15 13:24:19 +0200 | [diff] [blame] | 2974 | return child; |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 2975 | } |
| 2976 | |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 2977 | /* |
| 2978 | * This function transfers the reference to child_bs from the caller |
| 2979 | * to parent_bs. That reference is later dropped by parent_bs on |
| 2980 | * bdrv_close() or if someone calls bdrv_unref_child(). |
| 2981 | * |
| 2982 | * On failure NULL is returned, errp is set and the reference to |
| 2983 | * child_bs is also dropped. |
Kevin Wolf | 132ada8 | 2019-04-24 17:41:46 +0200 | [diff] [blame] | 2984 | * |
| 2985 | * If @parent_bs and @child_bs are in different AioContexts, the caller must |
| 2986 | * hold the AioContext lock for @child_bs, but not for @parent_bs. |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 2987 | */ |
Wen Congyang | 98292c6 | 2016-05-10 15:36:38 +0800 | [diff] [blame] | 2988 | BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, |
| 2989 | BlockDriverState *child_bs, |
| 2990 | const char *child_name, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2991 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 2992 | BdrvChildRole child_role, |
Kevin Wolf | 8b2ff52 | 2016-12-20 22:21:17 +0100 | [diff] [blame] | 2993 | Error **errp) |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 2994 | { |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 2995 | int ret; |
| 2996 | BdrvChild *child = NULL; |
| 2997 | Transaction *tran = tran_new(); |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2998 | |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 2999 | ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class, |
| 3000 | child_role, &child, tran, errp); |
| 3001 | if (ret < 0) { |
| 3002 | goto out; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3003 | } |
| 3004 | |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3005 | ret = bdrv_refresh_perms(parent_bs, errp); |
| 3006 | if (ret < 0) { |
| 3007 | goto out; |
| 3008 | } |
| 3009 | |
| 3010 | out: |
| 3011 | tran_finalize(tran, ret); |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3012 | /* child is unset on failure by bdrv_attach_child_common_abort() */ |
| 3013 | assert((ret < 0) == !child); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3014 | |
| 3015 | bdrv_unref(child_bs); |
| 3016 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3017 | return child; |
| 3018 | } |
| 3019 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 3020 | /* Callers must ensure that child->frozen is false. */ |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3021 | void bdrv_root_unref_child(BdrvChild *child) |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3022 | { |
Kevin Wolf | 779020c | 2015-10-13 14:09:44 +0200 | [diff] [blame] | 3023 | BlockDriverState *child_bs; |
| 3024 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3025 | child_bs = child->bs; |
| 3026 | bdrv_detach_child(child); |
| 3027 | bdrv_unref(child_bs); |
| 3028 | } |
| 3029 | |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3030 | typedef struct BdrvSetInheritsFrom { |
| 3031 | BlockDriverState *bs; |
| 3032 | BlockDriverState *old_inherits_from; |
| 3033 | } BdrvSetInheritsFrom; |
| 3034 | |
| 3035 | static void bdrv_set_inherits_from_abort(void *opaque) |
| 3036 | { |
| 3037 | BdrvSetInheritsFrom *s = opaque; |
| 3038 | |
| 3039 | s->bs->inherits_from = s->old_inherits_from; |
| 3040 | } |
| 3041 | |
| 3042 | static TransactionActionDrv bdrv_set_inherits_from_drv = { |
| 3043 | .abort = bdrv_set_inherits_from_abort, |
| 3044 | .clean = g_free, |
| 3045 | }; |
| 3046 | |
| 3047 | /* @tran is allowed to be NULL. In this case no rollback is possible */ |
| 3048 | static void bdrv_set_inherits_from(BlockDriverState *bs, |
| 3049 | BlockDriverState *new_inherits_from, |
| 3050 | Transaction *tran) |
| 3051 | { |
| 3052 | if (tran) { |
| 3053 | BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1); |
| 3054 | |
| 3055 | *s = (BdrvSetInheritsFrom) { |
| 3056 | .bs = bs, |
| 3057 | .old_inherits_from = bs->inherits_from, |
| 3058 | }; |
| 3059 | |
| 3060 | tran_add(tran, &bdrv_set_inherits_from_drv, s); |
| 3061 | } |
| 3062 | |
| 3063 | bs->inherits_from = new_inherits_from; |
| 3064 | } |
| 3065 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3066 | /** |
| 3067 | * Clear all inherits_from pointers from children and grandchildren of |
| 3068 | * @root that point to @root, where necessary. |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3069 | * @tran is allowed to be NULL. In this case no rollback is possible |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3070 | */ |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3071 | static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child, |
| 3072 | Transaction *tran) |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3073 | { |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3074 | BdrvChild *c; |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3075 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3076 | if (child->bs->inherits_from == root) { |
| 3077 | /* |
| 3078 | * Remove inherits_from only when the last reference between root and |
| 3079 | * child->bs goes away. |
| 3080 | */ |
| 3081 | QLIST_FOREACH(c, &root->children, next) { |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3082 | if (c != child && c->bs == child->bs) { |
| 3083 | break; |
| 3084 | } |
| 3085 | } |
| 3086 | if (c == NULL) { |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3087 | bdrv_set_inherits_from(child->bs, NULL, tran); |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3088 | } |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3089 | } |
| 3090 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3091 | QLIST_FOREACH(c, &child->bs->children, next) { |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3092 | bdrv_unset_inherits_from(root, c, tran); |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3093 | } |
| 3094 | } |
| 3095 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 3096 | /* Callers must ensure that child->frozen is false. */ |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3097 | void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) |
| 3098 | { |
| 3099 | if (child == NULL) { |
| 3100 | return; |
| 3101 | } |
| 3102 | |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3103 | bdrv_unset_inherits_from(parent, child, NULL); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3104 | bdrv_root_unref_child(child); |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3105 | } |
| 3106 | |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3107 | |
| 3108 | static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) |
| 3109 | { |
| 3110 | BdrvChild *c; |
| 3111 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3112 | if (c->klass->change_media) { |
| 3113 | c->klass->change_media(c, load); |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3114 | } |
| 3115 | } |
| 3116 | } |
| 3117 | |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3118 | /* Return true if you can reach parent going through child->inherits_from |
| 3119 | * recursively. If parent or child are NULL, return false */ |
| 3120 | static bool bdrv_inherits_from_recursive(BlockDriverState *child, |
| 3121 | BlockDriverState *parent) |
| 3122 | { |
| 3123 | while (child && child != parent) { |
| 3124 | child = child->inherits_from; |
| 3125 | } |
| 3126 | |
| 3127 | return child != NULL; |
| 3128 | } |
| 3129 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3130 | /* |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 3131 | * Return the BdrvChildRole for @bs's backing child. bs->backing is |
| 3132 | * mostly used for COW backing children (role = COW), but also for |
| 3133 | * filtered children (role = FILTERED | PRIMARY). |
| 3134 | */ |
| 3135 | static BdrvChildRole bdrv_backing_role(BlockDriverState *bs) |
| 3136 | { |
| 3137 | if (bs->drv && bs->drv->is_filter) { |
| 3138 | return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; |
| 3139 | } else { |
| 3140 | return BDRV_CHILD_COW; |
| 3141 | } |
| 3142 | } |
| 3143 | |
| 3144 | /* |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3145 | * Sets the bs->backing or bs->file link of a BDS. A new reference is created; |
| 3146 | * callers which don't need their own reference any more must call bdrv_unref(). |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 3147 | * |
| 3148 | * Function doesn't update permissions, caller is responsible for this. |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3149 | */ |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3150 | static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs, |
| 3151 | BlockDriverState *child_bs, |
| 3152 | bool is_backing, |
| 3153 | Transaction *tran, Error **errp) |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3154 | { |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3155 | int ret = 0; |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3156 | bool update_inherits_from = |
| 3157 | bdrv_inherits_from_recursive(child_bs, parent_bs); |
| 3158 | BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file; |
| 3159 | BdrvChildRole role; |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3160 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3161 | if (!parent_bs->drv) { |
| 3162 | /* |
| 3163 | * Node without drv is an object without a class :/. TODO: finally fix |
| 3164 | * qcow2 driver to never clear bs->drv and implement format corruption |
| 3165 | * handling in other way. |
| 3166 | */ |
| 3167 | error_setg(errp, "Node corrupted"); |
| 3168 | return -EINVAL; |
| 3169 | } |
| 3170 | |
| 3171 | if (child && child->frozen) { |
| 3172 | error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'", |
| 3173 | child->name, parent_bs->node_name, child->bs->node_name); |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3174 | return -EPERM; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 3175 | } |
| 3176 | |
Vladimir Sementsov-Ogievskiy | 25f78d9 | 2021-06-10 15:05:34 +0300 | [diff] [blame] | 3177 | if (is_backing && !parent_bs->drv->is_filter && |
| 3178 | !parent_bs->drv->supports_backing) |
| 3179 | { |
| 3180 | error_setg(errp, "Driver '%s' of node '%s' does not support backing " |
| 3181 | "files", parent_bs->drv->format_name, parent_bs->node_name); |
| 3182 | return -EINVAL; |
| 3183 | } |
| 3184 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3185 | if (parent_bs->drv->is_filter) { |
| 3186 | role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; |
| 3187 | } else if (is_backing) { |
| 3188 | role = BDRV_CHILD_COW; |
| 3189 | } else { |
| 3190 | /* |
| 3191 | * We only can use same role as it is in existing child. We don't have |
| 3192 | * infrastructure to determine role of file child in generic way |
| 3193 | */ |
| 3194 | if (!child) { |
| 3195 | error_setg(errp, "Cannot set file child to format node without " |
| 3196 | "file child"); |
| 3197 | return -EINVAL; |
| 3198 | } |
| 3199 | role = child->role; |
Fam Zheng | 826b6ca | 2014-05-23 21:29:47 +0800 | [diff] [blame] | 3200 | } |
| 3201 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3202 | if (child) { |
| 3203 | bdrv_unset_inherits_from(parent_bs, child, tran); |
| 3204 | bdrv_remove_file_or_backing_child(parent_bs, child, tran); |
| 3205 | } |
| 3206 | |
| 3207 | if (!child_bs) { |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3208 | goto out; |
| 3209 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 3210 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3211 | ret = bdrv_attach_child_noperm(parent_bs, child_bs, |
| 3212 | is_backing ? "backing" : "file", |
| 3213 | &child_of_bds, role, |
| 3214 | is_backing ? &parent_bs->backing : |
| 3215 | &parent_bs->file, |
| 3216 | tran, errp); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3217 | if (ret < 0) { |
| 3218 | return ret; |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3219 | } |
| 3220 | |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3221 | |
| 3222 | /* |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3223 | * If inherits_from pointed recursively to bs then let's update it to |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3224 | * point directly to bs (else it will become NULL). |
| 3225 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3226 | if (update_inherits_from) { |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3227 | bdrv_set_inherits_from(child_bs, parent_bs, tran); |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3228 | } |
Fam Zheng | 826b6ca | 2014-05-23 21:29:47 +0800 | [diff] [blame] | 3229 | |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3230 | out: |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3231 | bdrv_refresh_limits(parent_bs, tran, NULL); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3232 | |
| 3233 | return 0; |
| 3234 | } |
| 3235 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3236 | static int bdrv_set_backing_noperm(BlockDriverState *bs, |
| 3237 | BlockDriverState *backing_hd, |
| 3238 | Transaction *tran, Error **errp) |
| 3239 | { |
| 3240 | return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp); |
| 3241 | } |
| 3242 | |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3243 | int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, |
| 3244 | Error **errp) |
| 3245 | { |
| 3246 | int ret; |
| 3247 | Transaction *tran = tran_new(); |
| 3248 | |
| 3249 | ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp); |
| 3250 | if (ret < 0) { |
| 3251 | goto out; |
| 3252 | } |
| 3253 | |
| 3254 | ret = bdrv_refresh_perms(bs, errp); |
| 3255 | out: |
| 3256 | tran_finalize(tran, ret); |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3257 | |
| 3258 | return ret; |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3259 | } |
| 3260 | |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3261 | /* |
| 3262 | * Opens the backing file for a BlockDriverState if not yet open |
| 3263 | * |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3264 | * bdref_key specifies the key for the image's BlockdevRef in the options QDict. |
| 3265 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict |
| 3266 | * itself, all options starting with "${bdref_key}." are considered part of the |
| 3267 | * BlockdevRef. |
| 3268 | * |
| 3269 | * TODO Can this be unified with bdrv_open_image()? |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3270 | */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3271 | int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, |
| 3272 | const char *bdref_key, Error **errp) |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3273 | { |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3274 | char *backing_filename = NULL; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3275 | char *bdref_key_dot; |
| 3276 | const char *reference = NULL; |
Kevin Wolf | 317fc44 | 2014-04-25 13:27:34 +0200 | [diff] [blame] | 3277 | int ret = 0; |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3278 | bool implicit_backing = false; |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3279 | BlockDriverState *backing_hd; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3280 | QDict *options; |
| 3281 | QDict *tmp_parent_options = NULL; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 3282 | Error *local_err = NULL; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3283 | |
Kevin Wolf | 760e006 | 2015-06-17 14:55:21 +0200 | [diff] [blame] | 3284 | if (bs->backing != NULL) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3285 | goto free_exit; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3286 | } |
| 3287 | |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3288 | /* NULL means an empty set of options */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3289 | if (parent_options == NULL) { |
| 3290 | tmp_parent_options = qdict_new(); |
| 3291 | parent_options = tmp_parent_options; |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3292 | } |
| 3293 | |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3294 | bs->open_flags &= ~BDRV_O_NO_BACKING; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3295 | |
| 3296 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
| 3297 | qdict_extract_subqdict(parent_options, &options, bdref_key_dot); |
| 3298 | g_free(bdref_key_dot); |
| 3299 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3300 | /* |
| 3301 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 3302 | * types would require more care. When @parent_options come from |
| 3303 | * -blockdev or blockdev_add, its members are typed according to |
| 3304 | * the QAPI schema, but when they come from -drive, they're all |
| 3305 | * QString. |
| 3306 | */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3307 | reference = qdict_get_try_str(parent_options, bdref_key); |
| 3308 | if (reference || qdict_haskey(options, "file.filename")) { |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3309 | /* keep backing_filename NULL */ |
Kevin Wolf | 1cb6f50 | 2013-04-12 20:27:07 +0200 | [diff] [blame] | 3310 | } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3311 | qobject_unref(options); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3312 | goto free_exit; |
Fam Zheng | dbecebd | 2013-09-22 20:05:06 +0800 | [diff] [blame] | 3313 | } else { |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3314 | if (qdict_size(options) == 0) { |
| 3315 | /* If the user specifies options that do not modify the |
| 3316 | * backing file's behavior, we might still consider it the |
| 3317 | * implicit backing file. But it's easier this way, and |
| 3318 | * just specifying some of the backing BDS's options is |
| 3319 | * only possible with -drive anyway (otherwise the QAPI |
| 3320 | * schema forces the user to specify everything). */ |
| 3321 | implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file); |
| 3322 | } |
| 3323 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3324 | backing_filename = bdrv_get_full_backing_filename(bs, &local_err); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 3325 | if (local_err) { |
| 3326 | ret = -EINVAL; |
| 3327 | error_propagate(errp, local_err); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3328 | qobject_unref(options); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 3329 | goto free_exit; |
| 3330 | } |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3331 | } |
| 3332 | |
Kevin Wolf | 8ee79e7 | 2014-06-04 15:09:35 +0200 | [diff] [blame] | 3333 | if (!bs->drv || !bs->drv->supports_backing) { |
| 3334 | ret = -EINVAL; |
| 3335 | error_setg(errp, "Driver doesn't support backing files"); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3336 | qobject_unref(options); |
Kevin Wolf | 8ee79e7 | 2014-06-04 15:09:35 +0200 | [diff] [blame] | 3337 | goto free_exit; |
| 3338 | } |
| 3339 | |
Peter Krempa | 6bff597 | 2017-10-12 16:14:10 +0200 | [diff] [blame] | 3340 | if (!reference && |
| 3341 | bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3342 | qdict_put_str(options, "driver", bs->backing_format); |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3343 | } |
| 3344 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3345 | backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs, |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 3346 | &child_of_bds, bdrv_backing_role(bs), errp); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3347 | if (!backing_hd) { |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3348 | bs->open_flags |= BDRV_O_NO_BACKING; |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3349 | error_prepend(errp, "Could not open backing file: "); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3350 | ret = -EINVAL; |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3351 | goto free_exit; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3352 | } |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3353 | |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3354 | if (implicit_backing) { |
| 3355 | bdrv_refresh_filename(backing_hd); |
| 3356 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
| 3357 | backing_hd->filename); |
| 3358 | } |
| 3359 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3360 | /* Hook up the backing file link; drop our reference, bs owns the |
| 3361 | * backing_hd reference now */ |
Vladimir Sementsov-Ogievskiy | dc9c10a | 2021-02-02 15:49:47 +0300 | [diff] [blame] | 3362 | ret = bdrv_set_backing_hd(bs, backing_hd, errp); |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3363 | bdrv_unref(backing_hd); |
Vladimir Sementsov-Ogievskiy | dc9c10a | 2021-02-02 15:49:47 +0300 | [diff] [blame] | 3364 | if (ret < 0) { |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 3365 | goto free_exit; |
| 3366 | } |
Peter Feiner | d80ac65 | 2014-01-08 19:43:25 +0000 | [diff] [blame] | 3367 | |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3368 | qdict_del(parent_options, bdref_key); |
| 3369 | |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3370 | free_exit: |
| 3371 | g_free(backing_filename); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3372 | qobject_unref(tmp_parent_options); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3373 | return ret; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3374 | } |
| 3375 | |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3376 | static BlockDriverState * |
| 3377 | bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3378 | BlockDriverState *parent, const BdrvChildClass *child_class, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3379 | BdrvChildRole child_role, bool allow_none, Error **errp) |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3380 | { |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3381 | BlockDriverState *bs = NULL; |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3382 | QDict *image_options; |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3383 | char *bdref_key_dot; |
| 3384 | const char *reference; |
| 3385 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3386 | assert(child_class != NULL); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3387 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3388 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
| 3389 | qdict_extract_subqdict(options, &image_options, bdref_key_dot); |
| 3390 | g_free(bdref_key_dot); |
| 3391 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3392 | /* |
| 3393 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 3394 | * types would require more care. When @options come from |
| 3395 | * -blockdev or blockdev_add, its members are typed according to |
| 3396 | * the QAPI schema, but when they come from -drive, they're all |
| 3397 | * QString. |
| 3398 | */ |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3399 | reference = qdict_get_try_str(options, bdref_key); |
| 3400 | if (!filename && !reference && !qdict_size(image_options)) { |
Kevin Wolf | b4b059f | 2015-06-15 13:24:19 +0200 | [diff] [blame] | 3401 | if (!allow_none) { |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3402 | error_setg(errp, "A block device must be specified for \"%s\"", |
| 3403 | bdref_key); |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3404 | } |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3405 | qobject_unref(image_options); |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3406 | goto done; |
| 3407 | } |
| 3408 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3409 | bs = bdrv_open_inherit(filename, reference, image_options, 0, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3410 | parent, child_class, child_role, errp); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3411 | if (!bs) { |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3412 | goto done; |
| 3413 | } |
| 3414 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3415 | done: |
| 3416 | qdict_del(options, bdref_key); |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3417 | return bs; |
| 3418 | } |
| 3419 | |
| 3420 | /* |
| 3421 | * Opens a disk image whose options are given as BlockdevRef in another block |
| 3422 | * device's options. |
| 3423 | * |
| 3424 | * If allow_none is true, no image will be opened if filename is false and no |
| 3425 | * BlockdevRef is given. NULL will be returned, but errp remains unset. |
| 3426 | * |
| 3427 | * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. |
| 3428 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict |
| 3429 | * itself, all options starting with "${bdref_key}." are considered part of the |
| 3430 | * BlockdevRef. |
| 3431 | * |
| 3432 | * The BlockdevRef will be removed from the options QDict. |
| 3433 | */ |
| 3434 | BdrvChild *bdrv_open_child(const char *filename, |
| 3435 | QDict *options, const char *bdref_key, |
| 3436 | BlockDriverState *parent, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3437 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3438 | BdrvChildRole child_role, |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3439 | bool allow_none, Error **errp) |
| 3440 | { |
| 3441 | BlockDriverState *bs; |
| 3442 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3443 | bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3444 | child_role, allow_none, errp); |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3445 | if (bs == NULL) { |
| 3446 | return NULL; |
| 3447 | } |
| 3448 | |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3449 | return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role, |
| 3450 | errp); |
Kevin Wolf | b4b059f | 2015-06-15 13:24:19 +0200 | [diff] [blame] | 3451 | } |
| 3452 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3453 | /* |
| 3454 | * TODO Future callers may need to specify parent/child_class in order for |
| 3455 | * option inheritance to work. Existing callers use it for the root node. |
| 3456 | */ |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3457 | BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) |
| 3458 | { |
| 3459 | BlockDriverState *bs = NULL; |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3460 | QObject *obj = NULL; |
| 3461 | QDict *qdict = NULL; |
| 3462 | const char *reference = NULL; |
| 3463 | Visitor *v = NULL; |
| 3464 | |
| 3465 | if (ref->type == QTYPE_QSTRING) { |
| 3466 | reference = ref->u.reference; |
| 3467 | } else { |
| 3468 | BlockdevOptions *options = &ref->u.definition; |
| 3469 | assert(ref->type == QTYPE_QDICT); |
| 3470 | |
| 3471 | v = qobject_output_visitor_new(&obj); |
Markus Armbruster | 1f58424 | 2020-04-24 10:43:35 +0200 | [diff] [blame] | 3472 | visit_type_BlockdevOptions(v, NULL, &options, &error_abort); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3473 | visit_complete(v, &obj); |
| 3474 | |
Max Reitz | 7dc847e | 2018-02-24 16:40:29 +0100 | [diff] [blame] | 3475 | qdict = qobject_to(QDict, obj); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3476 | qdict_flatten(qdict); |
| 3477 | |
| 3478 | /* bdrv_open_inherit() defaults to the values in bdrv_flags (for |
| 3479 | * compatibility with other callers) rather than what we want as the |
| 3480 | * real defaults. Apply the defaults here instead. */ |
| 3481 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); |
| 3482 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); |
| 3483 | qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 3484 | qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off"); |
| 3485 | |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3486 | } |
| 3487 | |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3488 | bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3489 | obj = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3490 | qobject_unref(obj); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3491 | visit_free(v); |
| 3492 | return bs; |
| 3493 | } |
| 3494 | |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 3495 | static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, |
| 3496 | int flags, |
| 3497 | QDict *snapshot_options, |
| 3498 | Error **errp) |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3499 | { |
| 3500 | /* 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] | 3501 | char *tmp_filename = g_malloc0(PATH_MAX + 1); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3502 | int64_t total_size; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3503 | QemuOpts *opts = NULL; |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3504 | BlockDriverState *bs_snapshot = NULL; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3505 | int ret; |
| 3506 | |
| 3507 | /* if snapshot, we create a temporary backing file and open it |
| 3508 | instead of opening 'filename' directly */ |
| 3509 | |
| 3510 | /* Get the required size from the image */ |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3511 | total_size = bdrv_getlength(bs); |
| 3512 | if (total_size < 0) { |
| 3513 | error_setg_errno(errp, -total_size, "Could not get image size"); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3514 | goto out; |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3515 | } |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3516 | |
| 3517 | /* Create the temporary image */ |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3518 | ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3519 | if (ret < 0) { |
| 3520 | error_setg_errno(errp, -ret, "Could not get temporary filename"); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3521 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3522 | } |
| 3523 | |
Max Reitz | ef81043 | 2014-12-02 18:32:42 +0100 | [diff] [blame] | 3524 | opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 3525 | &error_abort); |
Markus Armbruster | 39101f2 | 2015-02-12 16:46:36 +0100 | [diff] [blame] | 3526 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3527 | ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3528 | qemu_opts_del(opts); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3529 | if (ret < 0) { |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3530 | error_prepend(errp, "Could not create temporary overlay '%s': ", |
| 3531 | tmp_filename); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3532 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3533 | } |
| 3534 | |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3535 | /* Prepare options QDict for the temporary file */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3536 | qdict_put_str(snapshot_options, "file.driver", "file"); |
| 3537 | qdict_put_str(snapshot_options, "file.filename", tmp_filename); |
| 3538 | qdict_put_str(snapshot_options, "driver", "qcow2"); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3539 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3540 | bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3541 | snapshot_options = NULL; |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3542 | if (!bs_snapshot) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3543 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3544 | } |
| 3545 | |
Vladimir Sementsov-Ogievskiy | 934aee1 | 2021-02-02 15:49:44 +0300 | [diff] [blame] | 3546 | ret = bdrv_append(bs_snapshot, bs, errp); |
| 3547 | if (ret < 0) { |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3548 | bs_snapshot = NULL; |
Kevin Wolf | b2c2832 | 2017-02-20 12:46:42 +0100 | [diff] [blame] | 3549 | goto out; |
| 3550 | } |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3551 | |
| 3552 | out: |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3553 | qobject_unref(snapshot_options); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3554 | g_free(tmp_filename); |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3555 | return bs_snapshot; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3556 | } |
| 3557 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3558 | /* |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3559 | * Opens a disk image (raw, qcow2, vmdk, ...) |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 3560 | * |
| 3561 | * options is a QDict of options to pass to the block drivers, or NULL for an |
| 3562 | * empty set of options. The reference to the QDict belongs to the block layer |
| 3563 | * 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] | 3564 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3565 | * |
| 3566 | * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. |
| 3567 | * If it is not NULL, the referenced BDS will be reused. |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3568 | * |
| 3569 | * The reference parameter may be used to specify an existing block device which |
| 3570 | * should be opened. If specified, neither options nor a filename may be given, |
| 3571 | * 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] | 3572 | */ |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3573 | static BlockDriverState *bdrv_open_inherit(const char *filename, |
| 3574 | const char *reference, |
| 3575 | QDict *options, int flags, |
| 3576 | BlockDriverState *parent, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3577 | const BdrvChildClass *child_class, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3578 | BdrvChildRole child_role, |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3579 | Error **errp) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 3580 | { |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3581 | int ret; |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3582 | BlockBackend *file = NULL; |
Kevin Wolf | 9a4f4c3 | 2015-06-16 14:19:22 +0200 | [diff] [blame] | 3583 | BlockDriverState *bs; |
Max Reitz | ce34377 | 2015-08-26 19:47:50 +0200 | [diff] [blame] | 3584 | BlockDriver *drv = NULL; |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 3585 | BdrvChild *child; |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 3586 | const char *drvname; |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 3587 | const char *backing; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 3588 | Error *local_err = NULL; |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3589 | QDict *snapshot_options = NULL; |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 3590 | int snapshot_flags = 0; |
bellard | 712e787 | 2005-04-28 21:09:32 +0000 | [diff] [blame] | 3591 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3592 | assert(!child_class || !flags); |
| 3593 | assert(!child_class == !parent); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3594 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3595 | if (reference) { |
| 3596 | bool options_non_empty = options ? qdict_size(options) : false; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3597 | qobject_unref(options); |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3598 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3599 | if (filename || options_non_empty) { |
| 3600 | error_setg(errp, "Cannot reference an existing block device with " |
| 3601 | "additional options or a new filename"); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3602 | return NULL; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3603 | } |
| 3604 | |
| 3605 | bs = bdrv_lookup_bs(reference, reference, errp); |
| 3606 | if (!bs) { |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3607 | return NULL; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3608 | } |
Kevin Wolf | 76b2232 | 2016-04-04 17:11:13 +0200 | [diff] [blame] | 3609 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3610 | bdrv_ref(bs); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3611 | return bs; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3612 | } |
| 3613 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3614 | bs = bdrv_new(); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3615 | |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 3616 | /* NULL means an empty set of options */ |
| 3617 | if (options == NULL) { |
| 3618 | options = qdict_new(); |
| 3619 | } |
| 3620 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 3621 | /* json: syntax counts as explicit options, as if in the QDict */ |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 3622 | parse_json_protocol(options, &filename, &local_err); |
| 3623 | if (local_err) { |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 3624 | goto fail; |
| 3625 | } |
| 3626 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 3627 | bs->explicit_options = qdict_clone_shallow(options); |
| 3628 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3629 | if (child_class) { |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 3630 | bool parent_is_format; |
| 3631 | |
| 3632 | if (parent->drv) { |
| 3633 | parent_is_format = parent->drv->is_format; |
| 3634 | } else { |
| 3635 | /* |
| 3636 | * parent->drv is not set yet because this node is opened for |
| 3637 | * (potential) format probing. That means that @parent is going |
| 3638 | * to be a format node. |
| 3639 | */ |
| 3640 | parent_is_format = true; |
| 3641 | } |
| 3642 | |
Kevin Wolf | bddcec3 | 2015-04-09 18:47:50 +0200 | [diff] [blame] | 3643 | bs->inherits_from = parent; |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 3644 | child_class->inherit_options(child_role, parent_is_format, |
| 3645 | &flags, options, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3646 | parent->open_flags, parent->options); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 3647 | } |
| 3648 | |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 3649 | ret = bdrv_fill_options(&options, filename, &flags, &local_err); |
Philippe Mathieu-Daudé | dfde483 | 2020-04-22 15:31:44 +0200 | [diff] [blame] | 3650 | if (ret < 0) { |
Kevin Wolf | 462f5bc | 2014-05-26 11:39:55 +0200 | [diff] [blame] | 3651 | goto fail; |
| 3652 | } |
| 3653 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3654 | /* |
| 3655 | * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. |
| 3656 | * Caution: getting a boolean member of @options requires care. |
| 3657 | * When @options come from -blockdev or blockdev_add, members are |
| 3658 | * typed according to the QAPI schema, but when they come from |
| 3659 | * -drive, they're all QString. |
| 3660 | */ |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 3661 | if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && |
| 3662 | !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { |
| 3663 | flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); |
| 3664 | } else { |
| 3665 | flags &= ~BDRV_O_RDWR; |
Alberto Garcia | 14499ea | 2016-09-15 17:53:00 +0300 | [diff] [blame] | 3666 | } |
| 3667 | |
| 3668 | if (flags & BDRV_O_SNAPSHOT) { |
| 3669 | snapshot_options = qdict_new(); |
| 3670 | bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, |
| 3671 | flags, options); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 3672 | /* Let bdrv_backing_options() override "read-only" */ |
| 3673 | qdict_del(options, BDRV_OPT_READ_ONLY); |
Max Reitz | 00ff7ff | 2020-05-13 13:05:21 +0200 | [diff] [blame] | 3674 | bdrv_inherited_options(BDRV_CHILD_COW, true, |
| 3675 | &flags, options, flags, options); |
Alberto Garcia | 14499ea | 2016-09-15 17:53:00 +0300 | [diff] [blame] | 3676 | } |
| 3677 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 3678 | bs->open_flags = flags; |
| 3679 | bs->options = options; |
| 3680 | options = qdict_clone_shallow(options); |
| 3681 | |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3682 | /* Find the right image format driver */ |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3683 | /* See cautionary note on accessing @options above */ |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3684 | drvname = qdict_get_try_str(options, "driver"); |
| 3685 | if (drvname) { |
| 3686 | drv = bdrv_find_format(drvname); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3687 | if (!drv) { |
| 3688 | error_setg(errp, "Unknown driver: '%s'", drvname); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3689 | goto fail; |
| 3690 | } |
| 3691 | } |
| 3692 | |
| 3693 | assert(drvname || !(flags & BDRV_O_PROTOCOL)); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3694 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3695 | /* See cautionary note on accessing @options above */ |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 3696 | backing = qdict_get_try_str(options, "backing"); |
Max Reitz | e59a0cf | 2018-02-24 16:40:32 +0100 | [diff] [blame] | 3697 | if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || |
| 3698 | (backing && *backing == '\0')) |
| 3699 | { |
Max Reitz | 4f7be28 | 2018-02-24 16:40:33 +0100 | [diff] [blame] | 3700 | if (backing) { |
| 3701 | warn_report("Use of \"backing\": \"\" is deprecated; " |
| 3702 | "use \"backing\": null instead"); |
| 3703 | } |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 3704 | flags |= BDRV_O_NO_BACKING; |
Kevin Wolf | ae0f57f | 2019-11-08 09:36:35 +0100 | [diff] [blame] | 3705 | qdict_del(bs->explicit_options, "backing"); |
| 3706 | qdict_del(bs->options, "backing"); |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 3707 | qdict_del(options, "backing"); |
| 3708 | } |
| 3709 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3710 | /* Open image file without format layer. This BlockBackend is only used for |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3711 | * probing, the block drivers will do their own bdrv_open_child() for the |
| 3712 | * 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] | 3713 | if ((flags & BDRV_O_PROTOCOL) == 0) { |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3714 | BlockDriverState *file_bs; |
| 3715 | |
| 3716 | file_bs = bdrv_open_child_bs(filename, options, "file", bs, |
Max Reitz | 5894440 | 2020-05-13 13:05:37 +0200 | [diff] [blame] | 3717 | &child_of_bds, BDRV_CHILD_IMAGE, |
| 3718 | true, &local_err); |
Kevin Wolf | 1fdd693 | 2015-06-15 14:11:51 +0200 | [diff] [blame] | 3719 | if (local_err) { |
Max Reitz | 5469a2a | 2014-02-18 18:33:10 +0100 | [diff] [blame] | 3720 | goto fail; |
| 3721 | } |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3722 | if (file_bs != NULL) { |
Kevin Wolf | dacaa16 | 2017-11-20 14:59:13 +0100 | [diff] [blame] | 3723 | /* Not requesting BLK_PERM_CONSISTENT_READ because we're only |
| 3724 | * looking at the header to guess the image format. This works even |
| 3725 | * in cases where a guest would not see a consistent state. */ |
Kevin Wolf | d861ab3 | 2019-04-25 14:25:10 +0200 | [diff] [blame] | 3726 | file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL); |
Kevin Wolf | d708642 | 2017-01-13 19:02:32 +0100 | [diff] [blame] | 3727 | blk_insert_bs(file, file_bs, &local_err); |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3728 | bdrv_unref(file_bs); |
Kevin Wolf | d708642 | 2017-01-13 19:02:32 +0100 | [diff] [blame] | 3729 | if (local_err) { |
| 3730 | goto fail; |
| 3731 | } |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3732 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3733 | qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3734 | } |
Max Reitz | 5469a2a | 2014-02-18 18:33:10 +0100 | [diff] [blame] | 3735 | } |
| 3736 | |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3737 | /* Image format probing */ |
Kevin Wolf | 38f3ef5 | 2014-11-20 16:27:12 +0100 | [diff] [blame] | 3738 | bs->probed = !drv; |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3739 | if (!drv && file) { |
Kevin Wolf | cf2ab8f | 2016-06-20 18:24:02 +0200 | [diff] [blame] | 3740 | ret = find_image_format(file, filename, &drv, &local_err); |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 3741 | if (ret < 0) { |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 3742 | goto fail; |
Max Reitz | 2a05cbe | 2013-12-20 19:28:10 +0100 | [diff] [blame] | 3743 | } |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 3744 | /* |
| 3745 | * This option update would logically belong in bdrv_fill_options(), |
| 3746 | * but we first need to open bs->file for the probing to work, while |
| 3747 | * opening bs->file already requires the (mostly) final set of options |
| 3748 | * so that cache mode etc. can be inherited. |
| 3749 | * |
| 3750 | * Adding the driver later is somewhat ugly, but it's not an option |
| 3751 | * that would ever be inherited, so it's correct. We just need to make |
| 3752 | * sure to update both bs->options (which has the full effective |
| 3753 | * options for bs) and options (which has file.* already removed). |
| 3754 | */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3755 | qdict_put_str(bs->options, "driver", drv->format_name); |
| 3756 | qdict_put_str(options, "driver", drv->format_name); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3757 | } else if (!drv) { |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 3758 | error_setg(errp, "Must specify either driver or file"); |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 3759 | goto fail; |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 3760 | } |
| 3761 | |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 3762 | /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ |
| 3763 | assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); |
| 3764 | /* file must be NULL if a protocol BDS is about to be created |
| 3765 | * (the inverse results in an error message from bdrv_open_common()) */ |
| 3766 | assert(!(flags & BDRV_O_PROTOCOL) || !file); |
| 3767 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3768 | /* Open the image */ |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 3769 | ret = bdrv_open_common(bs, file, options, &local_err); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3770 | if (ret < 0) { |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 3771 | goto fail; |
Christoph Hellwig | 6987307 | 2010-01-20 18:13:25 +0100 | [diff] [blame] | 3772 | } |
| 3773 | |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3774 | if (file) { |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3775 | blk_unref(file); |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 3776 | file = NULL; |
| 3777 | } |
| 3778 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3779 | /* If there is a backing file, use it */ |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3780 | if ((flags & BDRV_O_NO_BACKING) == 0) { |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3781 | ret = bdrv_open_backing_file(bs, options, "backing", &local_err); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3782 | if (ret < 0) { |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 3783 | goto close_and_fail; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3784 | } |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3785 | } |
| 3786 | |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 3787 | /* Remove all children options and references |
| 3788 | * from bs->options and bs->explicit_options */ |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 3789 | QLIST_FOREACH(child, &bs->children, next) { |
| 3790 | char *child_key_dot; |
| 3791 | child_key_dot = g_strdup_printf("%s.", child->name); |
| 3792 | qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot); |
| 3793 | qdict_extract_subqdict(bs->options, NULL, child_key_dot); |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 3794 | qdict_del(bs->explicit_options, child->name); |
| 3795 | qdict_del(bs->options, child->name); |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 3796 | g_free(child_key_dot); |
| 3797 | } |
| 3798 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 3799 | /* Check if any unknown options were used */ |
Paolo Bonzini | 7ad2757 | 2017-01-04 15:59:14 +0100 | [diff] [blame] | 3800 | if (qdict_size(options) != 0) { |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 3801 | const QDictEntry *entry = qdict_first(options); |
Max Reitz | 5acd9d8 | 2014-02-18 18:33:11 +0100 | [diff] [blame] | 3802 | if (flags & BDRV_O_PROTOCOL) { |
| 3803 | error_setg(errp, "Block protocol '%s' doesn't support the option " |
| 3804 | "'%s'", drv->format_name, entry->key); |
| 3805 | } else { |
Max Reitz | d0e46a5 | 2016-03-16 19:54:34 +0100 | [diff] [blame] | 3806 | error_setg(errp, |
| 3807 | "Block format '%s' does not support the option '%s'", |
| 3808 | drv->format_name, entry->key); |
Max Reitz | 5acd9d8 | 2014-02-18 18:33:11 +0100 | [diff] [blame] | 3809 | } |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 3810 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 3811 | goto close_and_fail; |
| 3812 | } |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 3813 | |
Daniel P. Berrange | c01c214 | 2017-06-23 17:24:16 +0100 | [diff] [blame] | 3814 | bdrv_parent_cb_change_media(bs, true); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3815 | |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3816 | qobject_unref(options); |
Alberto Garcia | 8961be3 | 2018-09-06 17:25:41 +0300 | [diff] [blame] | 3817 | options = NULL; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 3818 | |
| 3819 | /* For snapshot=on, create a temporary qcow2 overlay. bs points to the |
| 3820 | * temporary snapshot afterwards. */ |
| 3821 | if (snapshot_flags) { |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 3822 | BlockDriverState *snapshot_bs; |
| 3823 | snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, |
| 3824 | snapshot_options, &local_err); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3825 | snapshot_options = NULL; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 3826 | if (local_err) { |
| 3827 | goto close_and_fail; |
| 3828 | } |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3829 | /* We are not going to return bs but the overlay on top of it |
| 3830 | * (snapshot_bs); thus, we have to drop the strong reference to bs |
| 3831 | * (which we obtained by calling bdrv_new()). bs will not be deleted, |
| 3832 | * though, because the overlay still has a reference to it. */ |
| 3833 | bdrv_unref(bs); |
| 3834 | bs = snapshot_bs; |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 3835 | } |
| 3836 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3837 | return bs; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3838 | |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 3839 | fail: |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3840 | blk_unref(file); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3841 | qobject_unref(snapshot_options); |
| 3842 | qobject_unref(bs->explicit_options); |
| 3843 | qobject_unref(bs->options); |
| 3844 | qobject_unref(options); |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 3845 | bs->options = NULL; |
Manos Pitsidianakis | 998cbd6 | 2017-07-14 17:35:47 +0300 | [diff] [blame] | 3846 | bs->explicit_options = NULL; |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3847 | bdrv_unref(bs); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 3848 | error_propagate(errp, local_err); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3849 | return NULL; |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 3850 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 3851 | close_and_fail: |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3852 | bdrv_unref(bs); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3853 | qobject_unref(snapshot_options); |
| 3854 | qobject_unref(options); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 3855 | error_propagate(errp, local_err); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3856 | return NULL; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3857 | } |
| 3858 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3859 | BlockDriverState *bdrv_open(const char *filename, const char *reference, |
| 3860 | QDict *options, int flags, Error **errp) |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 3861 | { |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3862 | return bdrv_open_inherit(filename, reference, options, flags, NULL, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3863 | NULL, 0, errp); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 3864 | } |
| 3865 | |
Alberto Garcia | faf116b | 2019-03-12 18:48:49 +0200 | [diff] [blame] | 3866 | /* Return true if the NULL-terminated @list contains @str */ |
| 3867 | static bool is_str_in_list(const char *str, const char *const *list) |
| 3868 | { |
| 3869 | if (str && list) { |
| 3870 | int i; |
| 3871 | for (i = 0; list[i] != NULL; i++) { |
| 3872 | if (!strcmp(str, list[i])) { |
| 3873 | return true; |
| 3874 | } |
| 3875 | } |
| 3876 | } |
| 3877 | return false; |
| 3878 | } |
| 3879 | |
| 3880 | /* |
| 3881 | * Check that every option set in @bs->options is also set in |
| 3882 | * @new_opts. |
| 3883 | * |
| 3884 | * Options listed in the common_options list and in |
| 3885 | * @bs->drv->mutable_opts are skipped. |
| 3886 | * |
| 3887 | * Return 0 on success, otherwise return -EINVAL and set @errp. |
| 3888 | */ |
| 3889 | static int bdrv_reset_options_allowed(BlockDriverState *bs, |
| 3890 | const QDict *new_opts, Error **errp) |
| 3891 | { |
| 3892 | const QDictEntry *e; |
| 3893 | /* These options are common to all block drivers and are handled |
| 3894 | * in bdrv_reopen_prepare() so they can be left out of @new_opts */ |
| 3895 | const char *const common_options[] = { |
| 3896 | "node-name", "discard", "cache.direct", "cache.no-flush", |
| 3897 | "read-only", "auto-read-only", "detect-zeroes", NULL |
| 3898 | }; |
| 3899 | |
| 3900 | for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) { |
| 3901 | if (!qdict_haskey(new_opts, e->key) && |
| 3902 | !is_str_in_list(e->key, common_options) && |
| 3903 | !is_str_in_list(e->key, bs->drv->mutable_opts)) { |
| 3904 | error_setg(errp, "Option '%s' cannot be reset " |
| 3905 | "to its default value", e->key); |
| 3906 | return -EINVAL; |
| 3907 | } |
| 3908 | } |
| 3909 | |
| 3910 | return 0; |
| 3911 | } |
| 3912 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 3913 | /* |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 3914 | * Returns true if @child can be reached recursively from @bs |
| 3915 | */ |
| 3916 | static bool bdrv_recurse_has_child(BlockDriverState *bs, |
| 3917 | BlockDriverState *child) |
| 3918 | { |
| 3919 | BdrvChild *c; |
| 3920 | |
| 3921 | if (bs == child) { |
| 3922 | return true; |
| 3923 | } |
| 3924 | |
| 3925 | QLIST_FOREACH(c, &bs->children, next) { |
| 3926 | if (bdrv_recurse_has_child(c->bs, child)) { |
| 3927 | return true; |
| 3928 | } |
| 3929 | } |
| 3930 | |
| 3931 | return false; |
| 3932 | } |
| 3933 | |
| 3934 | /* |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 3935 | * Adds a BlockDriverState to a simple queue for an atomic, transactional |
| 3936 | * reopen of multiple devices. |
| 3937 | * |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 3938 | * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 3939 | * already performed, or alternatively may be NULL a new BlockReopenQueue will |
| 3940 | * be created and initialized. This newly created BlockReopenQueue should be |
| 3941 | * passed back in for subsequent calls that are intended to be of the same |
| 3942 | * atomic 'set'. |
| 3943 | * |
| 3944 | * bs is the BlockDriverState to add to the reopen queue. |
| 3945 | * |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 3946 | * options contains the changed options for the associated bs |
| 3947 | * (the BlockReopenQueue takes ownership) |
| 3948 | * |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 3949 | * flags contains the open flags for the associated bs |
| 3950 | * |
| 3951 | * returns a pointer to bs_queue, which is either the newly allocated |
| 3952 | * bs_queue, or the existing bs_queue being used. |
| 3953 | * |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 3954 | * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple(). |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 3955 | */ |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 3956 | static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, |
| 3957 | BlockDriverState *bs, |
| 3958 | QDict *options, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3959 | const BdrvChildClass *klass, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3960 | BdrvChildRole role, |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 3961 | bool parent_is_format, |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 3962 | QDict *parent_options, |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 3963 | int parent_flags, |
| 3964 | bool keep_old_opts) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 3965 | { |
| 3966 | assert(bs != NULL); |
| 3967 | |
| 3968 | BlockReopenQueueEntry *bs_entry; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 3969 | BdrvChild *child; |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 3970 | QDict *old_options, *explicit_options, *options_copy; |
| 3971 | int flags; |
| 3972 | QemuOpts *opts; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 3973 | |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 3974 | /* Make sure that the caller remembered to use a drained section. This is |
| 3975 | * important to avoid graph changes between the recursive queuing here and |
| 3976 | * bdrv_reopen_multiple(). */ |
| 3977 | assert(bs->quiesce_counter > 0); |
| 3978 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 3979 | if (bs_queue == NULL) { |
| 3980 | bs_queue = g_new0(BlockReopenQueue, 1); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 3981 | QTAILQ_INIT(bs_queue); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 3982 | } |
| 3983 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 3984 | if (!options) { |
| 3985 | options = qdict_new(); |
| 3986 | } |
| 3987 | |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 3988 | /* Check if this BlockDriverState is already in the queue */ |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 3989 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 3990 | if (bs == bs_entry->state.bs) { |
| 3991 | break; |
| 3992 | } |
| 3993 | } |
| 3994 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 3995 | /* |
| 3996 | * Precedence of options: |
| 3997 | * 1. Explicitly passed in options (highest) |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 3998 | * 2. Retained from explicitly set options of bs |
| 3999 | * 3. Inherited from parent node |
| 4000 | * 4. Retained from effective options of bs |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4001 | */ |
| 4002 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4003 | /* Old explicitly set values (don't overwrite by inherited value) */ |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4004 | if (bs_entry || keep_old_opts) { |
| 4005 | old_options = qdict_clone_shallow(bs_entry ? |
| 4006 | bs_entry->state.explicit_options : |
| 4007 | bs->explicit_options); |
| 4008 | bdrv_join_options(bs, options, old_options); |
| 4009 | qobject_unref(old_options); |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4010 | } |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4011 | |
| 4012 | explicit_options = qdict_clone_shallow(options); |
| 4013 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4014 | /* Inherit from parent node */ |
| 4015 | if (parent_options) { |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4016 | flags = 0; |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4017 | klass->inherit_options(role, parent_is_format, &flags, options, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 4018 | parent_flags, parent_options); |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4019 | } else { |
| 4020 | flags = bdrv_get_flags(bs); |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4021 | } |
| 4022 | |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4023 | if (keep_old_opts) { |
| 4024 | /* Old values are used for options that aren't set yet */ |
| 4025 | old_options = qdict_clone_shallow(bs->options); |
| 4026 | bdrv_join_options(bs, options, old_options); |
| 4027 | qobject_unref(old_options); |
| 4028 | } |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4029 | |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4030 | /* We have the final set of options so let's update the flags */ |
| 4031 | options_copy = qdict_clone_shallow(options); |
| 4032 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
| 4033 | qemu_opts_absorb_qdict(opts, options_copy, NULL); |
| 4034 | update_flags_from_options(&flags, opts); |
| 4035 | qemu_opts_del(opts); |
| 4036 | qobject_unref(options_copy); |
| 4037 | |
Kevin Wolf | fd45202 | 2017-08-03 17:02:59 +0200 | [diff] [blame] | 4038 | /* bdrv_open_inherit() sets and clears some additional flags internally */ |
Kevin Wolf | f1f25a2 | 2014-04-25 19:04:55 +0200 | [diff] [blame] | 4039 | flags &= ~BDRV_O_PROTOCOL; |
Kevin Wolf | fd45202 | 2017-08-03 17:02:59 +0200 | [diff] [blame] | 4040 | if (flags & BDRV_O_RDWR) { |
| 4041 | flags |= BDRV_O_ALLOW_RDWR; |
| 4042 | } |
Kevin Wolf | f1f25a2 | 2014-04-25 19:04:55 +0200 | [diff] [blame] | 4043 | |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4044 | if (!bs_entry) { |
| 4045 | bs_entry = g_new0(BlockReopenQueueEntry, 1); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4046 | QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry); |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4047 | } else { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4048 | qobject_unref(bs_entry->state.options); |
| 4049 | qobject_unref(bs_entry->state.explicit_options); |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4050 | } |
| 4051 | |
| 4052 | bs_entry->state.bs = bs; |
| 4053 | bs_entry->state.options = options; |
| 4054 | bs_entry->state.explicit_options = explicit_options; |
| 4055 | bs_entry->state.flags = flags; |
| 4056 | |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4057 | /* |
| 4058 | * If keep_old_opts is false then it means that unspecified |
| 4059 | * options must be reset to their original value. We don't allow |
| 4060 | * resetting 'backing' but we need to know if the option is |
| 4061 | * missing in order to decide if we have to return an error. |
| 4062 | */ |
| 4063 | if (!keep_old_opts) { |
| 4064 | bs_entry->state.backing_missing = |
| 4065 | !qdict_haskey(options, "backing") && |
| 4066 | !qdict_haskey(options, "backing.driver"); |
| 4067 | } |
| 4068 | |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4069 | QLIST_FOREACH(child, &bs->children, next) { |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4070 | QDict *new_child_options = NULL; |
| 4071 | bool child_keep_old = keep_old_opts; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4072 | |
Kevin Wolf | 4c9dfe5 | 2015-05-08 15:14:15 +0200 | [diff] [blame] | 4073 | /* reopen can only change the options of block devices that were |
| 4074 | * implicitly created and inherited options. For other (referenced) |
| 4075 | * block devices, a syntax like "backing.foo" results in an error. */ |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4076 | if (child->bs->inherits_from != bs) { |
| 4077 | continue; |
| 4078 | } |
| 4079 | |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4080 | /* Check if the options contain a child reference */ |
| 4081 | if (qdict_haskey(options, child->name)) { |
| 4082 | const char *childref = qdict_get_try_str(options, child->name); |
| 4083 | /* |
| 4084 | * The current child must not be reopened if the child |
| 4085 | * reference is null or points to a different node. |
| 4086 | */ |
| 4087 | if (g_strcmp0(childref, child->bs->node_name)) { |
| 4088 | continue; |
| 4089 | } |
| 4090 | /* |
| 4091 | * If the child reference points to the current child then |
| 4092 | * reopen it with its existing set of options (note that |
| 4093 | * it can still inherit new options from the parent). |
| 4094 | */ |
| 4095 | child_keep_old = true; |
| 4096 | } else { |
| 4097 | /* Extract child options ("child-name.*") */ |
| 4098 | char *child_key_dot = g_strdup_printf("%s.", child->name); |
| 4099 | qdict_extract_subqdict(explicit_options, NULL, child_key_dot); |
| 4100 | qdict_extract_subqdict(options, &new_child_options, child_key_dot); |
| 4101 | g_free(child_key_dot); |
| 4102 | } |
Kevin Wolf | 4c9dfe5 | 2015-05-08 15:14:15 +0200 | [diff] [blame] | 4103 | |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4104 | bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4105 | child->klass, child->role, bs->drv->is_format, |
| 4106 | options, flags, child_keep_old); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4107 | } |
| 4108 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4109 | return bs_queue; |
| 4110 | } |
| 4111 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4112 | BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, |
| 4113 | BlockDriverState *bs, |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4114 | QDict *options, bool keep_old_opts) |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4115 | { |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4116 | return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false, |
| 4117 | NULL, 0, keep_old_opts); |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4118 | } |
| 4119 | |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4120 | void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue) |
| 4121 | { |
| 4122 | if (bs_queue) { |
| 4123 | BlockReopenQueueEntry *bs_entry, *next; |
| 4124 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { |
| 4125 | qobject_unref(bs_entry->state.explicit_options); |
| 4126 | qobject_unref(bs_entry->state.options); |
| 4127 | g_free(bs_entry); |
| 4128 | } |
| 4129 | g_free(bs_queue); |
| 4130 | } |
| 4131 | } |
| 4132 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4133 | /* |
| 4134 | * Reopen multiple BlockDriverStates atomically & transactionally. |
| 4135 | * |
| 4136 | * The queue passed in (bs_queue) must have been built up previous |
| 4137 | * via bdrv_reopen_queue(). |
| 4138 | * |
| 4139 | * Reopens all BDS specified in the queue, with the appropriate |
| 4140 | * flags. All devices are prepared for reopen, and failure of any |
Stefan Weil | 50d6a8a | 2018-07-12 21:51:20 +0200 | [diff] [blame] | 4141 | * device will cause all device changes to be abandoned, and intermediate |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4142 | * data cleaned up. |
| 4143 | * |
| 4144 | * If all devices prepare successfully, then the changes are committed |
| 4145 | * to all devices. |
| 4146 | * |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4147 | * All affected nodes must be drained between bdrv_reopen_queue() and |
| 4148 | * bdrv_reopen_multiple(). |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4149 | * |
| 4150 | * To be called from the main thread, with all other AioContexts unlocked. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4151 | */ |
Alberto Garcia | 5019aec | 2019-03-12 18:48:50 +0200 | [diff] [blame] | 4152 | int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4153 | { |
| 4154 | int ret = -1; |
| 4155 | BlockReopenQueueEntry *bs_entry, *next; |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4156 | AioContext *ctx; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4157 | Transaction *tran = tran_new(); |
| 4158 | g_autoptr(GHashTable) found = NULL; |
| 4159 | g_autoptr(GSList) refresh_list = NULL; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4160 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4161 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4162 | assert(bs_queue != NULL); |
| 4163 | |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4164 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4165 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
| 4166 | aio_context_acquire(ctx); |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4167 | ret = bdrv_flush(bs_entry->state.bs); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4168 | aio_context_release(ctx); |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4169 | if (ret < 0) { |
| 4170 | error_setg_errno(errp, -ret, "Error flushing drive"); |
Kevin Wolf | e3fc91a | 2021-05-03 13:05:55 +0200 | [diff] [blame] | 4171 | goto abort; |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4172 | } |
| 4173 | } |
| 4174 | |
| 4175 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4176 | assert(bs_entry->state.bs->quiesce_counter > 0); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4177 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
| 4178 | aio_context_acquire(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4179 | ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4180 | aio_context_release(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4181 | if (ret < 0) { |
| 4182 | goto abort; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4183 | } |
| 4184 | bs_entry->prepared = true; |
| 4185 | } |
| 4186 | |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4187 | found = g_hash_table_new(NULL, NULL); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4188 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4189 | BDRVReopenState *state = &bs_entry->state; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4190 | |
| 4191 | refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs); |
| 4192 | if (state->old_backing_bs) { |
| 4193 | refresh_list = bdrv_topological_dfs(refresh_list, found, |
| 4194 | state->old_backing_bs); |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4195 | } |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4196 | if (state->old_file_bs) { |
| 4197 | refresh_list = bdrv_topological_dfs(refresh_list, found, |
| 4198 | state->old_file_bs); |
| 4199 | } |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4200 | } |
| 4201 | |
| 4202 | /* |
| 4203 | * Note that file-posix driver rely on permission update done during reopen |
| 4204 | * (even if no permission changed), because it wants "new" permissions for |
| 4205 | * reconfiguring the fd and that's why it does it in raw_check_perm(), not |
| 4206 | * in raw_reopen_prepare() which is called with "old" permissions. |
| 4207 | */ |
| 4208 | ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp); |
| 4209 | if (ret < 0) { |
| 4210 | goto abort; |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4211 | } |
| 4212 | |
Vladimir Sementsov-Ogievskiy | fcd6a4f | 2019-09-27 15:23:48 +0300 | [diff] [blame] | 4213 | /* |
| 4214 | * If we reach this point, we have success and just need to apply the |
| 4215 | * changes. |
| 4216 | * |
| 4217 | * Reverse order is used to comfort qcow2 driver: on commit it need to write |
| 4218 | * IN_USE flag to the image, to mark bitmaps in the image as invalid. But |
| 4219 | * children are usually goes after parents in reopen-queue, so go from last |
| 4220 | * to first element. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4221 | */ |
Vladimir Sementsov-Ogievskiy | fcd6a4f | 2019-09-27 15:23:48 +0300 | [diff] [blame] | 4222 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4223 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
| 4224 | aio_context_acquire(ctx); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4225 | bdrv_reopen_commit(&bs_entry->state); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4226 | aio_context_release(ctx); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4227 | } |
| 4228 | |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4229 | tran_commit(tran); |
| 4230 | |
| 4231 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
| 4232 | BlockDriverState *bs = bs_entry->state.bs; |
| 4233 | |
| 4234 | if (bs->drv->bdrv_reopen_commit_post) { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4235 | ctx = bdrv_get_aio_context(bs); |
| 4236 | aio_context_acquire(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4237 | bs->drv->bdrv_reopen_commit_post(&bs_entry->state); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4238 | aio_context_release(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4239 | } |
| 4240 | } |
| 4241 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4242 | ret = 0; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4243 | goto cleanup; |
| 4244 | |
| 4245 | abort: |
| 4246 | tran_abort(tran); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4247 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4248 | if (bs_entry->prepared) { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4249 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
| 4250 | aio_context_acquire(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4251 | bdrv_reopen_abort(&bs_entry->state); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4252 | aio_context_release(ctx); |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4253 | } |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4254 | } |
Peter Krempa | 17e1e2b | 2020-02-28 13:44:46 +0100 | [diff] [blame] | 4255 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4256 | cleanup: |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4257 | bdrv_reopen_queue_free(bs_queue); |
Alberto Garcia | 40840e4 | 2016-10-28 10:08:03 +0300 | [diff] [blame] | 4258 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4259 | return ret; |
| 4260 | } |
| 4261 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4262 | int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts, |
| 4263 | Error **errp) |
| 4264 | { |
| 4265 | AioContext *ctx = bdrv_get_aio_context(bs); |
| 4266 | BlockReopenQueue *queue; |
| 4267 | int ret; |
| 4268 | |
| 4269 | bdrv_subtree_drained_begin(bs); |
| 4270 | if (ctx != qemu_get_aio_context()) { |
| 4271 | aio_context_release(ctx); |
| 4272 | } |
| 4273 | |
| 4274 | queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts); |
| 4275 | ret = bdrv_reopen_multiple(queue, errp); |
| 4276 | |
| 4277 | if (ctx != qemu_get_aio_context()) { |
| 4278 | aio_context_acquire(ctx); |
| 4279 | } |
| 4280 | bdrv_subtree_drained_end(bs); |
| 4281 | |
| 4282 | return ret; |
| 4283 | } |
| 4284 | |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4285 | int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only, |
| 4286 | Error **errp) |
| 4287 | { |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4288 | QDict *opts = qdict_new(); |
| 4289 | |
| 4290 | qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only); |
| 4291 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4292 | return bdrv_reopen(bs, opts, true, errp); |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4293 | } |
| 4294 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4295 | /* |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4296 | * Take a BDRVReopenState and check if the value of 'backing' in the |
| 4297 | * reopen_state->options QDict is valid or not. |
| 4298 | * |
| 4299 | * If 'backing' is missing from the QDict then return 0. |
| 4300 | * |
| 4301 | * If 'backing' contains the node name of the backing file of |
| 4302 | * reopen_state->bs then return 0. |
| 4303 | * |
| 4304 | * If 'backing' contains a different node name (or is null) then check |
| 4305 | * whether the current backing file can be replaced with the new one. |
| 4306 | * If that's the case then reopen_state->replace_backing_bs is set to |
| 4307 | * true and reopen_state->new_backing_bs contains a pointer to the new |
| 4308 | * backing BlockDriverState (or NULL). |
| 4309 | * |
| 4310 | * Return 0 on success, otherwise return < 0 and set @errp. |
| 4311 | */ |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4312 | static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state, |
| 4313 | bool is_backing, Transaction *tran, |
| 4314 | Error **errp) |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4315 | { |
| 4316 | BlockDriverState *bs = reopen_state->bs; |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4317 | BlockDriverState *new_child_bs; |
| 4318 | BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) : |
| 4319 | child_bs(bs->file); |
| 4320 | const char *child_name = is_backing ? "backing" : "file"; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4321 | QObject *value; |
| 4322 | const char *str; |
| 4323 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4324 | value = qdict_get(reopen_state->options, child_name); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4325 | if (value == NULL) { |
| 4326 | return 0; |
| 4327 | } |
| 4328 | |
| 4329 | switch (qobject_type(value)) { |
| 4330 | case QTYPE_QNULL: |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4331 | assert(is_backing); /* The 'file' option does not allow a null value */ |
| 4332 | new_child_bs = NULL; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4333 | break; |
| 4334 | case QTYPE_QSTRING: |
Markus Armbruster | 410f44f | 2020-12-11 18:11:42 +0100 | [diff] [blame] | 4335 | str = qstring_get_str(qobject_to(QString, value)); |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4336 | new_child_bs = bdrv_lookup_bs(NULL, str, errp); |
| 4337 | if (new_child_bs == NULL) { |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4338 | return -EINVAL; |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4339 | } else if (bdrv_recurse_has_child(new_child_bs, bs)) { |
| 4340 | error_setg(errp, "Making '%s' a %s child of '%s' would create a " |
| 4341 | "cycle", str, child_name, bs->node_name); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4342 | return -EINVAL; |
| 4343 | } |
| 4344 | break; |
| 4345 | default: |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4346 | /* |
| 4347 | * The options QDict has been flattened, so 'backing' and 'file' |
| 4348 | * do not allow any other data type here. |
| 4349 | */ |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4350 | g_assert_not_reached(); |
| 4351 | } |
| 4352 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4353 | if (old_child_bs == new_child_bs) { |
| 4354 | return 0; |
| 4355 | } |
| 4356 | |
| 4357 | if (old_child_bs) { |
| 4358 | if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) { |
Vladimir Sementsov-Ogievskiy | cbfdb98 | 2021-06-10 15:05:33 +0300 | [diff] [blame] | 4359 | return 0; |
| 4360 | } |
| 4361 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4362 | if (old_child_bs->implicit) { |
| 4363 | error_setg(errp, "Cannot replace implicit %s child of %s", |
| 4364 | child_name, bs->node_name); |
Vladimir Sementsov-Ogievskiy | cbfdb98 | 2021-06-10 15:05:33 +0300 | [diff] [blame] | 4365 | return -EPERM; |
| 4366 | } |
| 4367 | } |
| 4368 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4369 | if (bs->drv->is_filter && !old_child_bs) { |
Vladimir Sementsov-Ogievskiy | 25f78d9 | 2021-06-10 15:05:34 +0300 | [diff] [blame] | 4370 | /* |
| 4371 | * Filters always have a file or a backing child, so we are trying to |
| 4372 | * change wrong child |
| 4373 | */ |
| 4374 | error_setg(errp, "'%s' is a %s filter node that does not support a " |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4375 | "%s child", bs->node_name, bs->drv->format_name, child_name); |
Max Reitz | 1d42f48 | 2019-06-12 17:24:39 +0200 | [diff] [blame] | 4376 | return -EINVAL; |
| 4377 | } |
| 4378 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4379 | if (is_backing) { |
| 4380 | reopen_state->old_backing_bs = old_child_bs; |
| 4381 | } else { |
| 4382 | reopen_state->old_file_bs = old_child_bs; |
| 4383 | } |
| 4384 | |
| 4385 | return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing, |
| 4386 | tran, errp); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4387 | } |
| 4388 | |
| 4389 | /* |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4390 | * Prepares a BlockDriverState for reopen. All changes are staged in the |
| 4391 | * 'opaque' field of the BDRVReopenState, which is used and allocated by |
| 4392 | * the block driver layer .bdrv_reopen_prepare() |
| 4393 | * |
| 4394 | * bs is the BlockDriverState to reopen |
| 4395 | * flags are the new open flags |
| 4396 | * queue is the reopen queue |
| 4397 | * |
| 4398 | * Returns 0 on success, non-zero on error. On error errp will be set |
| 4399 | * as well. |
| 4400 | * |
| 4401 | * On failure, bdrv_reopen_abort() will be called to clean up any data. |
| 4402 | * It is the responsibility of the caller to then call the abort() or |
| 4403 | * commit() for any other BDS that have been left in a prepare() state |
| 4404 | * |
| 4405 | */ |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 4406 | static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4407 | BlockReopenQueue *queue, |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4408 | Transaction *change_child_tran, Error **errp) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4409 | { |
| 4410 | int ret = -1; |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4411 | int old_flags; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4412 | Error *local_err = NULL; |
| 4413 | BlockDriver *drv; |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4414 | QemuOpts *opts; |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4415 | QDict *orig_reopen_opts; |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4416 | char *discard = NULL; |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4417 | bool read_only; |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4418 | bool drv_prepared = false; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4419 | |
| 4420 | assert(reopen_state != NULL); |
| 4421 | assert(reopen_state->bs->drv != NULL); |
| 4422 | drv = reopen_state->bs->drv; |
| 4423 | |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4424 | /* This function and each driver's bdrv_reopen_prepare() remove |
| 4425 | * entries from reopen_state->options as they are processed, so |
| 4426 | * we need to make a copy of the original QDict. */ |
| 4427 | orig_reopen_opts = qdict_clone_shallow(reopen_state->options); |
| 4428 | |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4429 | /* Process generic block layer options */ |
| 4430 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 4431 | if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) { |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4432 | ret = -EINVAL; |
| 4433 | goto error; |
| 4434 | } |
| 4435 | |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4436 | /* This was already called in bdrv_reopen_queue_child() so the flags |
| 4437 | * are up-to-date. This time we simply want to remove the options from |
| 4438 | * QemuOpts in order to indicate that they have been processed. */ |
| 4439 | old_flags = reopen_state->flags; |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 4440 | update_flags_from_options(&reopen_state->flags, opts); |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4441 | assert(old_flags == reopen_state->flags); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 4442 | |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 4443 | discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD); |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4444 | if (discard != NULL) { |
| 4445 | if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) { |
| 4446 | error_setg(errp, "Invalid discard option"); |
| 4447 | ret = -EINVAL; |
| 4448 | goto error; |
| 4449 | } |
| 4450 | } |
| 4451 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 4452 | reopen_state->detect_zeroes = |
| 4453 | bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err); |
| 4454 | if (local_err) { |
| 4455 | error_propagate(errp, local_err); |
| 4456 | ret = -EINVAL; |
| 4457 | goto error; |
| 4458 | } |
| 4459 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 4460 | /* All other options (including node-name and driver) must be unchanged. |
| 4461 | * Put them back into the QDict, so that they are checked at the end |
| 4462 | * of this function. */ |
| 4463 | qemu_opts_to_qdict(opts, reopen_state->options); |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4464 | |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4465 | /* If we are to stay read-only, do not allow permission change |
| 4466 | * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is |
| 4467 | * not set, or if the BDS still has copy_on_read enabled */ |
| 4468 | read_only = !(reopen_state->flags & BDRV_O_RDWR); |
Kevin Wolf | 54a32bf | 2017-08-03 17:02:58 +0200 | [diff] [blame] | 4469 | 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] | 4470 | if (local_err) { |
| 4471 | error_propagate(errp, local_err); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4472 | goto error; |
| 4473 | } |
| 4474 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4475 | if (drv->bdrv_reopen_prepare) { |
Alberto Garcia | faf116b | 2019-03-12 18:48:49 +0200 | [diff] [blame] | 4476 | /* |
| 4477 | * If a driver-specific option is missing, it means that we |
| 4478 | * should reset it to its default value. |
| 4479 | * But not all options allow that, so we need to check it first. |
| 4480 | */ |
| 4481 | ret = bdrv_reset_options_allowed(reopen_state->bs, |
| 4482 | reopen_state->options, errp); |
| 4483 | if (ret) { |
| 4484 | goto error; |
| 4485 | } |
| 4486 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4487 | ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); |
| 4488 | if (ret) { |
| 4489 | if (local_err != NULL) { |
| 4490 | error_propagate(errp, local_err); |
| 4491 | } else { |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 4492 | bdrv_refresh_filename(reopen_state->bs); |
Luiz Capitulino | d8b6895 | 2013-06-10 11:29:27 -0400 | [diff] [blame] | 4493 | error_setg(errp, "failed while preparing to reopen image '%s'", |
| 4494 | reopen_state->bs->filename); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4495 | } |
| 4496 | goto error; |
| 4497 | } |
| 4498 | } else { |
| 4499 | /* It is currently mandatory to have a bdrv_reopen_prepare() |
| 4500 | * handler for each supported drv. */ |
Alberto Garcia | 81e5f78 | 2015-04-08 12:29:19 +0300 | [diff] [blame] | 4501 | error_setg(errp, "Block format '%s' used by node '%s' " |
| 4502 | "does not support reopening files", drv->format_name, |
| 4503 | bdrv_get_device_or_node_name(reopen_state->bs)); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4504 | ret = -1; |
| 4505 | goto error; |
| 4506 | } |
| 4507 | |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4508 | drv_prepared = true; |
| 4509 | |
Alberto Garcia | bacd9b8 | 2019-03-12 18:48:46 +0200 | [diff] [blame] | 4510 | /* |
| 4511 | * We must provide the 'backing' option if the BDS has a backing |
| 4512 | * file or if the image file has a backing file name as part of |
| 4513 | * its metadata. Otherwise the 'backing' option can be omitted. |
| 4514 | */ |
| 4515 | if (drv->supports_backing && reopen_state->backing_missing && |
Max Reitz | 1d42f48 | 2019-06-12 17:24:39 +0200 | [diff] [blame] | 4516 | (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) { |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4517 | error_setg(errp, "backing is missing for '%s'", |
| 4518 | reopen_state->bs->node_name); |
| 4519 | ret = -EINVAL; |
| 4520 | goto error; |
| 4521 | } |
| 4522 | |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4523 | /* |
| 4524 | * Allow changing the 'backing' option. The new value can be |
| 4525 | * either a reference to an existing node (using its node name) |
| 4526 | * or NULL to simply detach the current backing file. |
| 4527 | */ |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4528 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, true, |
| 4529 | change_child_tran, errp); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4530 | if (ret < 0) { |
| 4531 | goto error; |
| 4532 | } |
| 4533 | qdict_del(reopen_state->options, "backing"); |
| 4534 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4535 | /* Allow changing the 'file' option. In this case NULL is not allowed */ |
| 4536 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, false, |
| 4537 | change_child_tran, errp); |
| 4538 | if (ret < 0) { |
| 4539 | goto error; |
| 4540 | } |
| 4541 | qdict_del(reopen_state->options, "file"); |
| 4542 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4543 | /* Options that are not handled are only okay if they are unchanged |
| 4544 | * compared to the old state. It is expected that some options are only |
| 4545 | * used for the initial open, but not reopen (e.g. filename) */ |
| 4546 | if (qdict_size(reopen_state->options)) { |
| 4547 | const QDictEntry *entry = qdict_first(reopen_state->options); |
| 4548 | |
| 4549 | do { |
Max Reitz | 54fd1b0 | 2017-11-14 19:01:26 +0100 | [diff] [blame] | 4550 | QObject *new = entry->value; |
| 4551 | QObject *old = qdict_get(reopen_state->bs->options, entry->key); |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4552 | |
Alberto Garcia | db90528 | 2018-09-06 12:37:05 +0300 | [diff] [blame] | 4553 | /* Allow child references (child_name=node_name) as long as they |
| 4554 | * point to the current child (i.e. everything stays the same). */ |
| 4555 | if (qobject_type(new) == QTYPE_QSTRING) { |
| 4556 | BdrvChild *child; |
| 4557 | QLIST_FOREACH(child, &reopen_state->bs->children, next) { |
| 4558 | if (!strcmp(child->name, entry->key)) { |
| 4559 | break; |
| 4560 | } |
| 4561 | } |
| 4562 | |
| 4563 | if (child) { |
Markus Armbruster | 410f44f | 2020-12-11 18:11:42 +0100 | [diff] [blame] | 4564 | if (!strcmp(child->bs->node_name, |
| 4565 | qstring_get_str(qobject_to(QString, new)))) { |
Alberto Garcia | db90528 | 2018-09-06 12:37:05 +0300 | [diff] [blame] | 4566 | continue; /* Found child with this name, skip option */ |
| 4567 | } |
| 4568 | } |
| 4569 | } |
| 4570 | |
Max Reitz | 54fd1b0 | 2017-11-14 19:01:26 +0100 | [diff] [blame] | 4571 | /* |
| 4572 | * TODO: When using -drive to specify blockdev options, all values |
| 4573 | * will be strings; however, when using -blockdev, blockdev-add or |
| 4574 | * filenames using the json:{} pseudo-protocol, they will be |
| 4575 | * correctly typed. |
| 4576 | * In contrast, reopening options are (currently) always strings |
| 4577 | * (because you can only specify them through qemu-io; all other |
| 4578 | * callers do not specify any options). |
| 4579 | * Therefore, when using anything other than -drive to create a BDS, |
| 4580 | * this cannot detect non-string options as unchanged, because |
| 4581 | * qobject_is_equal() always returns false for objects of different |
| 4582 | * type. In the future, this should be remedied by correctly typing |
| 4583 | * all options. For now, this is not too big of an issue because |
| 4584 | * the user can simply omit options which cannot be changed anyway, |
| 4585 | * so they will stay unchanged. |
| 4586 | */ |
| 4587 | if (!qobject_is_equal(new, old)) { |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4588 | error_setg(errp, "Cannot change the option '%s'", entry->key); |
| 4589 | ret = -EINVAL; |
| 4590 | goto error; |
| 4591 | } |
| 4592 | } while ((entry = qdict_next(reopen_state->options, entry))); |
| 4593 | } |
| 4594 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4595 | ret = 0; |
| 4596 | |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4597 | /* Restore the original reopen_state->options QDict */ |
| 4598 | qobject_unref(reopen_state->options); |
| 4599 | reopen_state->options = qobject_ref(orig_reopen_opts); |
| 4600 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4601 | error: |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4602 | if (ret < 0 && drv_prepared) { |
| 4603 | /* drv->bdrv_reopen_prepare() has succeeded, so we need to |
| 4604 | * call drv->bdrv_reopen_abort() before signaling an error |
| 4605 | * (bdrv_reopen_multiple() will not call bdrv_reopen_abort() |
| 4606 | * when the respective bdrv_reopen_prepare() has failed) */ |
| 4607 | if (drv->bdrv_reopen_abort) { |
| 4608 | drv->bdrv_reopen_abort(reopen_state); |
| 4609 | } |
| 4610 | } |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4611 | qemu_opts_del(opts); |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4612 | qobject_unref(orig_reopen_opts); |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4613 | g_free(discard); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4614 | return ret; |
| 4615 | } |
| 4616 | |
| 4617 | /* |
| 4618 | * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and |
| 4619 | * makes them final by swapping the staging BlockDriverState contents into |
| 4620 | * the active BlockDriverState contents. |
| 4621 | */ |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 4622 | static void bdrv_reopen_commit(BDRVReopenState *reopen_state) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4623 | { |
| 4624 | BlockDriver *drv; |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 4625 | BlockDriverState *bs; |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4626 | BdrvChild *child; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4627 | |
| 4628 | assert(reopen_state != NULL); |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 4629 | bs = reopen_state->bs; |
| 4630 | drv = bs->drv; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4631 | assert(drv != NULL); |
| 4632 | |
| 4633 | /* If there are any driver level actions to take */ |
| 4634 | if (drv->bdrv_reopen_commit) { |
| 4635 | drv->bdrv_reopen_commit(reopen_state); |
| 4636 | } |
| 4637 | |
| 4638 | /* set BDS specific flags now */ |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4639 | qobject_unref(bs->explicit_options); |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4640 | qobject_unref(bs->options); |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4641 | qobject_ref(reopen_state->explicit_options); |
| 4642 | qobject_ref(reopen_state->options); |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4643 | |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 4644 | bs->explicit_options = reopen_state->explicit_options; |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4645 | bs->options = reopen_state->options; |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 4646 | bs->open_flags = reopen_state->flags; |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 4647 | bs->detect_zeroes = reopen_state->detect_zeroes; |
Kevin Wolf | 355ef4a | 2013-12-11 20:14:09 +0100 | [diff] [blame] | 4648 | |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4649 | /* Remove child references from bs->options and bs->explicit_options. |
| 4650 | * Child options were already removed in bdrv_reopen_queue_child() */ |
| 4651 | QLIST_FOREACH(child, &bs->children, next) { |
| 4652 | qdict_del(bs->explicit_options, child->name); |
| 4653 | qdict_del(bs->options, child->name); |
| 4654 | } |
Vladimir Sementsov-Ogievskiy | 3d0e874 | 2021-06-10 15:05:35 +0300 | [diff] [blame] | 4655 | /* backing is probably removed, so it's not handled by previous loop */ |
| 4656 | qdict_del(bs->explicit_options, "backing"); |
| 4657 | qdict_del(bs->options, "backing"); |
| 4658 | |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 4659 | bdrv_refresh_limits(bs, NULL, NULL); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4660 | } |
| 4661 | |
| 4662 | /* |
| 4663 | * Abort the reopen, and delete and free the staged changes in |
| 4664 | * reopen_state |
| 4665 | */ |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 4666 | static void bdrv_reopen_abort(BDRVReopenState *reopen_state) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4667 | { |
| 4668 | BlockDriver *drv; |
| 4669 | |
| 4670 | assert(reopen_state != NULL); |
| 4671 | drv = reopen_state->bs->drv; |
| 4672 | assert(drv != NULL); |
| 4673 | |
| 4674 | if (drv->bdrv_reopen_abort) { |
| 4675 | drv->bdrv_reopen_abort(reopen_state); |
| 4676 | } |
| 4677 | } |
| 4678 | |
| 4679 | |
Max Reitz | 64dff52 | 2016-01-29 16:36:10 +0100 | [diff] [blame] | 4680 | static void bdrv_close(BlockDriverState *bs) |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 4681 | { |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 4682 | BdrvAioNotifier *ban, *ban_next; |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4683 | BdrvChild *child, *next; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 4684 | |
Max Reitz | 30f55fb | 2016-05-17 16:41:32 +0200 | [diff] [blame] | 4685 | assert(!bs->refcnt); |
Alberto Garcia | 99b7e77 | 2015-09-25 16:41:44 +0300 | [diff] [blame] | 4686 | |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 4687 | bdrv_drained_begin(bs); /* complete I/O */ |
Stefan Hajnoczi | 58fda17 | 2013-07-02 15:36:25 +0200 | [diff] [blame] | 4688 | bdrv_flush(bs); |
Fam Zheng | 53ec73e | 2015-05-29 18:53:14 +0800 | [diff] [blame] | 4689 | bdrv_drain(bs); /* in case flush left pending I/O */ |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 4690 | |
Paolo Bonzini | 3cbc002 | 2012-10-19 11:36:48 +0200 | [diff] [blame] | 4691 | if (bs->drv) { |
Vladimir Sementsov-Ogievskiy | 3c00529 | 2018-08-14 15:43:19 +0300 | [diff] [blame] | 4692 | if (bs->drv->bdrv_close) { |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 4693 | /* Must unfreeze all children, so bdrv_unref_child() works */ |
Vladimir Sementsov-Ogievskiy | 3c00529 | 2018-08-14 15:43:19 +0300 | [diff] [blame] | 4694 | bs->drv->bdrv_close(bs); |
| 4695 | } |
Kevin Wolf | 9a4f4c3 | 2015-06-16 14:19:22 +0200 | [diff] [blame] | 4696 | bs->drv = NULL; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 4697 | } |
Zhi Yong Wu | 98f90db | 2011-11-08 13:00:14 +0800 | [diff] [blame] | 4698 | |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4699 | QLIST_FOREACH_SAFE(child, &bs->children, next, next) { |
Alberto Garcia | dd4118c | 2019-05-13 16:46:17 +0300 | [diff] [blame] | 4700 | bdrv_unref_child(bs, child); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4701 | } |
| 4702 | |
Alberto Garcia | dd4118c | 2019-05-13 16:46:17 +0300 | [diff] [blame] | 4703 | bs->backing = NULL; |
| 4704 | bs->file = NULL; |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4705 | g_free(bs->opaque); |
| 4706 | bs->opaque = NULL; |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 4707 | qatomic_set(&bs->copy_on_read, 0); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4708 | bs->backing_file[0] = '\0'; |
| 4709 | bs->backing_format[0] = '\0'; |
| 4710 | bs->total_sectors = 0; |
| 4711 | bs->encrypted = false; |
| 4712 | bs->sg = false; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4713 | qobject_unref(bs->options); |
| 4714 | qobject_unref(bs->explicit_options); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4715 | bs->options = NULL; |
| 4716 | bs->explicit_options = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4717 | qobject_unref(bs->full_open_options); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4718 | bs->full_open_options = NULL; |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 4719 | g_free(bs->block_status_cache); |
| 4720 | bs->block_status_cache = NULL; |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4721 | |
Vladimir Sementsov-Ogievskiy | cca43ae | 2017-06-28 15:05:16 +0300 | [diff] [blame] | 4722 | bdrv_release_named_dirty_bitmaps(bs); |
| 4723 | assert(QLIST_EMPTY(&bs->dirty_bitmaps)); |
| 4724 | |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 4725 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
| 4726 | g_free(ban); |
| 4727 | } |
| 4728 | QLIST_INIT(&bs->aio_notifiers); |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 4729 | bdrv_drained_end(bs); |
Greg Kurz | 1a6d3bd | 2020-10-23 17:01:10 +0200 | [diff] [blame] | 4730 | |
| 4731 | /* |
| 4732 | * If we're still inside some bdrv_drain_all_begin()/end() sections, end |
| 4733 | * them now since this BDS won't exist anymore when bdrv_drain_all_end() |
| 4734 | * gets called. |
| 4735 | */ |
| 4736 | if (bs->quiesce_counter) { |
| 4737 | bdrv_drain_all_end_quiesce(bs); |
| 4738 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 4739 | } |
| 4740 | |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 4741 | void bdrv_close_all(void) |
| 4742 | { |
Kevin Wolf | b3b5299 | 2018-05-16 13:46:37 +0200 | [diff] [blame] | 4743 | assert(job_next(NULL) == NULL); |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 4744 | |
Max Reitz | ca9bd24 | 2016-01-29 16:36:14 +0100 | [diff] [blame] | 4745 | /* Drop references from requests still in flight, such as canceled block |
| 4746 | * jobs whose AIO context has not been polled yet */ |
| 4747 | bdrv_drain_all(); |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 4748 | |
Max Reitz | ca9bd24 | 2016-01-29 16:36:14 +0100 | [diff] [blame] | 4749 | blk_remove_all_bs(); |
| 4750 | blockdev_close_all_bdrv_states(); |
| 4751 | |
Kevin Wolf | a1a2af0 | 2016-04-08 18:26:37 +0200 | [diff] [blame] | 4752 | assert(QTAILQ_EMPTY(&all_bdrv_states)); |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 4753 | } |
| 4754 | |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 4755 | static bool should_update_child(BdrvChild *c, BlockDriverState *to) |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4756 | { |
Vladimir Sementsov-Ogievskiy | 2f30b7c | 2019-02-23 22:20:39 +0300 | [diff] [blame] | 4757 | GQueue *queue; |
| 4758 | GHashTable *found; |
| 4759 | bool ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4760 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 4761 | if (c->klass->stay_at_node) { |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 4762 | return false; |
| 4763 | } |
| 4764 | |
Max Reitz | ec9f10f | 2018-06-13 20:18:15 +0200 | [diff] [blame] | 4765 | /* If the child @c belongs to the BDS @to, replacing the current |
| 4766 | * c->bs by @to would mean to create a loop. |
| 4767 | * |
| 4768 | * Such a case occurs when appending a BDS to a backing chain. |
| 4769 | * For instance, imagine the following chain: |
| 4770 | * |
| 4771 | * guest device -> node A -> further backing chain... |
| 4772 | * |
| 4773 | * Now we create a new BDS B which we want to put on top of this |
| 4774 | * chain, so we first attach A as its backing node: |
| 4775 | * |
| 4776 | * node B |
| 4777 | * | |
| 4778 | * v |
| 4779 | * guest device -> node A -> further backing chain... |
| 4780 | * |
| 4781 | * Finally we want to replace A by B. When doing that, we want to |
| 4782 | * replace all pointers to A by pointers to B -- except for the |
| 4783 | * pointer from B because (1) that would create a loop, and (2) |
| 4784 | * that pointer should simply stay intact: |
| 4785 | * |
| 4786 | * guest device -> node B |
| 4787 | * | |
| 4788 | * v |
| 4789 | * node A -> further backing chain... |
| 4790 | * |
| 4791 | * In general, when replacing a node A (c->bs) by a node B (@to), |
| 4792 | * if A is a child of B, that means we cannot replace A by B there |
| 4793 | * because that would create a loop. Silently detaching A from B |
| 4794 | * is also not really an option. So overall just leaving A in |
Vladimir Sementsov-Ogievskiy | 2f30b7c | 2019-02-23 22:20:39 +0300 | [diff] [blame] | 4795 | * place there is the most sensible choice. |
| 4796 | * |
| 4797 | * We would also create a loop in any cases where @c is only |
| 4798 | * indirectly referenced by @to. Prevent this by returning false |
| 4799 | * if @c is found (by breadth-first search) anywhere in the whole |
| 4800 | * subtree of @to. |
| 4801 | */ |
| 4802 | |
| 4803 | ret = true; |
| 4804 | found = g_hash_table_new(NULL, NULL); |
| 4805 | g_hash_table_add(found, to); |
| 4806 | queue = g_queue_new(); |
| 4807 | g_queue_push_tail(queue, to); |
| 4808 | |
| 4809 | while (!g_queue_is_empty(queue)) { |
| 4810 | BlockDriverState *v = g_queue_pop_head(queue); |
| 4811 | BdrvChild *c2; |
| 4812 | |
| 4813 | QLIST_FOREACH(c2, &v->children, next) { |
| 4814 | if (c2 == c) { |
| 4815 | ret = false; |
| 4816 | break; |
| 4817 | } |
| 4818 | |
| 4819 | if (g_hash_table_contains(found, c2->bs)) { |
| 4820 | continue; |
| 4821 | } |
| 4822 | |
| 4823 | g_queue_push_tail(queue, c2->bs); |
| 4824 | g_hash_table_add(found, c2->bs); |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 4825 | } |
| 4826 | } |
| 4827 | |
Vladimir Sementsov-Ogievskiy | 2f30b7c | 2019-02-23 22:20:39 +0300 | [diff] [blame] | 4828 | g_queue_free(queue); |
| 4829 | g_hash_table_destroy(found); |
| 4830 | |
| 4831 | return ret; |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 4832 | } |
| 4833 | |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 4834 | typedef struct BdrvRemoveFilterOrCowChild { |
| 4835 | BdrvChild *child; |
| 4836 | bool is_backing; |
| 4837 | } BdrvRemoveFilterOrCowChild; |
| 4838 | |
| 4839 | static void bdrv_remove_filter_or_cow_child_abort(void *opaque) |
| 4840 | { |
| 4841 | BdrvRemoveFilterOrCowChild *s = opaque; |
| 4842 | BlockDriverState *parent_bs = s->child->opaque; |
| 4843 | |
| 4844 | QLIST_INSERT_HEAD(&parent_bs->children, s->child, next); |
| 4845 | if (s->is_backing) { |
| 4846 | parent_bs->backing = s->child; |
| 4847 | } else { |
| 4848 | parent_bs->file = s->child; |
| 4849 | } |
| 4850 | |
| 4851 | /* |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 4852 | * We don't have to restore child->bs here to undo bdrv_replace_child_tran() |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 4853 | * because that function is transactionable and it registered own completion |
| 4854 | * entries in @tran, so .abort() for bdrv_replace_child_safe() will be |
| 4855 | * called automatically. |
| 4856 | */ |
| 4857 | } |
| 4858 | |
| 4859 | static void bdrv_remove_filter_or_cow_child_commit(void *opaque) |
| 4860 | { |
| 4861 | BdrvRemoveFilterOrCowChild *s = opaque; |
| 4862 | |
| 4863 | bdrv_child_free(s->child); |
| 4864 | } |
| 4865 | |
| 4866 | static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = { |
| 4867 | .abort = bdrv_remove_filter_or_cow_child_abort, |
| 4868 | .commit = bdrv_remove_filter_or_cow_child_commit, |
| 4869 | .clean = g_free, |
| 4870 | }; |
| 4871 | |
| 4872 | /* |
Vladimir Sementsov-Ogievskiy | 5b99501 | 2021-06-10 15:05:29 +0300 | [diff] [blame] | 4873 | * A function to remove backing or file child of @bs. |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 4874 | * Function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 4875 | */ |
Vladimir Sementsov-Ogievskiy | 5b99501 | 2021-06-10 15:05:29 +0300 | [diff] [blame] | 4876 | static void bdrv_remove_file_or_backing_child(BlockDriverState *bs, |
| 4877 | BdrvChild *child, |
| 4878 | Transaction *tran) |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 4879 | { |
| 4880 | BdrvRemoveFilterOrCowChild *s; |
Vladimir Sementsov-Ogievskiy | 5b99501 | 2021-06-10 15:05:29 +0300 | [diff] [blame] | 4881 | |
| 4882 | assert(child == bs->backing || child == bs->file); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 4883 | |
| 4884 | if (!child) { |
| 4885 | return; |
| 4886 | } |
| 4887 | |
| 4888 | if (child->bs) { |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 4889 | bdrv_replace_child_tran(child, NULL, tran); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 4890 | } |
| 4891 | |
| 4892 | s = g_new(BdrvRemoveFilterOrCowChild, 1); |
| 4893 | *s = (BdrvRemoveFilterOrCowChild) { |
| 4894 | .child = child, |
| 4895 | .is_backing = (child == bs->backing), |
| 4896 | }; |
| 4897 | tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s); |
| 4898 | |
| 4899 | QLIST_SAFE_REMOVE(child, next); |
| 4900 | if (s->is_backing) { |
| 4901 | bs->backing = NULL; |
| 4902 | } else { |
| 4903 | bs->file = NULL; |
| 4904 | } |
| 4905 | } |
| 4906 | |
Vladimir Sementsov-Ogievskiy | 5b99501 | 2021-06-10 15:05:29 +0300 | [diff] [blame] | 4907 | /* |
| 4908 | * A function to remove backing-chain child of @bs if exists: cow child for |
| 4909 | * format nodes (always .backing) and filter child for filters (may be .file or |
| 4910 | * .backing) |
| 4911 | */ |
| 4912 | static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs, |
| 4913 | Transaction *tran) |
| 4914 | { |
| 4915 | bdrv_remove_file_or_backing_child(bs, bdrv_filter_or_cow_child(bs), tran); |
| 4916 | } |
| 4917 | |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 4918 | static int bdrv_replace_node_noperm(BlockDriverState *from, |
| 4919 | BlockDriverState *to, |
| 4920 | bool auto_skip, Transaction *tran, |
| 4921 | Error **errp) |
| 4922 | { |
| 4923 | BdrvChild *c, *next; |
| 4924 | |
| 4925 | QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { |
| 4926 | assert(c->bs == from); |
| 4927 | if (!should_update_child(c, to)) { |
| 4928 | if (auto_skip) { |
| 4929 | continue; |
| 4930 | } |
| 4931 | error_setg(errp, "Should not change '%s' link to '%s'", |
| 4932 | c->name, from->node_name); |
| 4933 | return -EINVAL; |
| 4934 | } |
| 4935 | if (c->frozen) { |
| 4936 | error_setg(errp, "Cannot change '%s' link to '%s'", |
| 4937 | c->name, from->node_name); |
| 4938 | return -EPERM; |
| 4939 | } |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 4940 | bdrv_replace_child_tran(c, to, tran); |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 4941 | } |
| 4942 | |
| 4943 | return 0; |
| 4944 | } |
| 4945 | |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 4946 | /* |
| 4947 | * With auto_skip=true bdrv_replace_node_common skips updating from parents |
| 4948 | * if it creates a parent-child relation loop or if parent is block-job. |
| 4949 | * |
| 4950 | * With auto_skip=false the error is returned if from has a parent which should |
| 4951 | * not be updated. |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 4952 | * |
| 4953 | * With @detach_subchain=true @to must be in a backing chain of @from. In this |
| 4954 | * case backing link of the cow-parent of @to is removed. |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 4955 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 4956 | static int bdrv_replace_node_common(BlockDriverState *from, |
| 4957 | BlockDriverState *to, |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 4958 | bool auto_skip, bool detach_subchain, |
| 4959 | Error **errp) |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4960 | { |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 4961 | Transaction *tran = tran_new(); |
| 4962 | g_autoptr(GHashTable) found = NULL; |
| 4963 | g_autoptr(GSList) refresh_list = NULL; |
Miroslav Rezanina | 2d369d6 | 2021-05-05 03:59:03 -0400 | [diff] [blame] | 4964 | BlockDriverState *to_cow_parent = NULL; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 4965 | int ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4966 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 4967 | if (detach_subchain) { |
| 4968 | assert(bdrv_chain_contains(from, to)); |
| 4969 | assert(from != to); |
| 4970 | for (to_cow_parent = from; |
| 4971 | bdrv_filter_or_cow_bs(to_cow_parent) != to; |
| 4972 | to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent)) |
| 4973 | { |
| 4974 | ; |
| 4975 | } |
| 4976 | } |
| 4977 | |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 4978 | /* Make sure that @from doesn't go away until we have successfully attached |
| 4979 | * all of its parents to @to. */ |
| 4980 | bdrv_ref(from); |
| 4981 | |
Kevin Wolf | f871abd | 2019-05-21 19:00:25 +0200 | [diff] [blame] | 4982 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
Kevin Wolf | 30dd65f | 2020-03-10 12:38:29 +0100 | [diff] [blame] | 4983 | assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to)); |
Kevin Wolf | f871abd | 2019-05-21 19:00:25 +0200 | [diff] [blame] | 4984 | bdrv_drained_begin(from); |
| 4985 | |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 4986 | /* |
| 4987 | * Do the replacement without permission update. |
| 4988 | * Replacement may influence the permissions, we should calculate new |
| 4989 | * permissions based on new graph. If we fail, we'll roll-back the |
| 4990 | * replacement. |
| 4991 | */ |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 4992 | ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp); |
| 4993 | if (ret < 0) { |
| 4994 | goto out; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 4995 | } |
| 4996 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 4997 | if (detach_subchain) { |
| 4998 | bdrv_remove_filter_or_cow_child(to_cow_parent, tran); |
| 4999 | } |
| 5000 | |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5001 | found = g_hash_table_new(NULL, NULL); |
| 5002 | |
| 5003 | refresh_list = bdrv_topological_dfs(refresh_list, found, to); |
| 5004 | refresh_list = bdrv_topological_dfs(refresh_list, found, from); |
| 5005 | |
| 5006 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5007 | if (ret < 0) { |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5008 | goto out; |
| 5009 | } |
| 5010 | |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5011 | ret = 0; |
| 5012 | |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5013 | out: |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5014 | tran_finalize(tran, ret); |
| 5015 | |
Kevin Wolf | f871abd | 2019-05-21 19:00:25 +0200 | [diff] [blame] | 5016 | bdrv_drained_end(from); |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5017 | bdrv_unref(from); |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5018 | |
| 5019 | return ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5020 | } |
| 5021 | |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5022 | int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, |
| 5023 | Error **errp) |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5024 | { |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5025 | return bdrv_replace_node_common(from, to, true, false, errp); |
| 5026 | } |
| 5027 | |
| 5028 | int bdrv_drop_filter(BlockDriverState *bs, Error **errp) |
| 5029 | { |
| 5030 | return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true, |
| 5031 | errp); |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5032 | } |
| 5033 | |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5034 | /* |
| 5035 | * Add new bs contents at the top of an image chain while the chain is |
| 5036 | * live, while keeping required fields on the top layer. |
| 5037 | * |
| 5038 | * This will modify the BlockDriverState fields, and swap contents |
| 5039 | * between bs_new and bs_top. Both bs_new and bs_top are modified. |
| 5040 | * |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5041 | * bs_new must not be attached to a BlockBackend and must not have backing |
| 5042 | * child. |
Jeff Cody | f6801b8 | 2012-03-27 16:30:19 -0400 | [diff] [blame] | 5043 | * |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5044 | * This function does not create any image files. |
| 5045 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5046 | int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, |
| 5047 | Error **errp) |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5048 | { |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5049 | int ret; |
| 5050 | Transaction *tran = tran_new(); |
| 5051 | |
| 5052 | assert(!bs_new->backing); |
| 5053 | |
| 5054 | ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing", |
| 5055 | &child_of_bds, bdrv_backing_role(bs_new), |
| 5056 | &bs_new->backing, tran, errp); |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5057 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5058 | goto out; |
Kevin Wolf | b2c2832 | 2017-02-20 12:46:42 +0100 | [diff] [blame] | 5059 | } |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5060 | |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5061 | ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp); |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5062 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5063 | goto out; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5064 | } |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5065 | |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5066 | ret = bdrv_refresh_perms(bs_new, errp); |
| 5067 | out: |
| 5068 | tran_finalize(tran, ret); |
| 5069 | |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 5070 | bdrv_refresh_limits(bs_top, NULL, NULL); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5071 | |
| 5072 | return ret; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5073 | } |
| 5074 | |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5075 | /* Not for empty child */ |
| 5076 | int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs, |
| 5077 | Error **errp) |
| 5078 | { |
| 5079 | int ret; |
| 5080 | Transaction *tran = tran_new(); |
| 5081 | g_autoptr(GHashTable) found = NULL; |
| 5082 | g_autoptr(GSList) refresh_list = NULL; |
| 5083 | BlockDriverState *old_bs = child->bs; |
| 5084 | |
| 5085 | bdrv_ref(old_bs); |
| 5086 | bdrv_drained_begin(old_bs); |
| 5087 | bdrv_drained_begin(new_bs); |
| 5088 | |
| 5089 | bdrv_replace_child_tran(child, new_bs, tran); |
| 5090 | |
| 5091 | found = g_hash_table_new(NULL, NULL); |
| 5092 | refresh_list = bdrv_topological_dfs(refresh_list, found, old_bs); |
| 5093 | refresh_list = bdrv_topological_dfs(refresh_list, found, new_bs); |
| 5094 | |
| 5095 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
| 5096 | |
| 5097 | tran_finalize(tran, ret); |
| 5098 | |
| 5099 | bdrv_drained_end(old_bs); |
| 5100 | bdrv_drained_end(new_bs); |
| 5101 | bdrv_unref(old_bs); |
| 5102 | |
| 5103 | return ret; |
| 5104 | } |
| 5105 | |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 5106 | static void bdrv_delete(BlockDriverState *bs) |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 5107 | { |
Fam Zheng | 3718d8a | 2014-05-23 21:29:43 +0800 | [diff] [blame] | 5108 | assert(bdrv_op_blocker_is_empty(bs)); |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 5109 | assert(!bs->refcnt); |
Markus Armbruster | 18846de | 2010-06-29 16:58:30 +0200 | [diff] [blame] | 5110 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 5111 | /* remove from list, if necessary */ |
Kevin Wolf | 63eaaae | 2016-03-18 10:46:57 +0100 | [diff] [blame] | 5112 | if (bs->node_name[0] != '\0') { |
| 5113 | QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); |
| 5114 | } |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 5115 | QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); |
| 5116 | |
Anton Kuchin | 30c321f | 2019-05-07 11:12:56 +0300 | [diff] [blame] | 5117 | bdrv_close(bs); |
| 5118 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 5119 | g_free(bs); |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5120 | } |
| 5121 | |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5122 | BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *node_options, |
| 5123 | int flags, Error **errp) |
| 5124 | { |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame^] | 5125 | ERRP_GUARD(); |
| 5126 | int ret; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5127 | BlockDriverState *new_node_bs; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5128 | |
| 5129 | new_node_bs = bdrv_open(NULL, NULL, node_options, flags, errp); |
| 5130 | if (new_node_bs == NULL) { |
| 5131 | error_prepend(errp, "Could not create node: "); |
| 5132 | return NULL; |
| 5133 | } |
| 5134 | |
| 5135 | bdrv_drained_begin(bs); |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame^] | 5136 | ret = bdrv_replace_node(bs, new_node_bs, errp); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5137 | bdrv_drained_end(bs); |
| 5138 | |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame^] | 5139 | if (ret < 0) { |
| 5140 | error_prepend(errp, "Could not replace node: "); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5141 | bdrv_unref(new_node_bs); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5142 | return NULL; |
| 5143 | } |
| 5144 | |
| 5145 | return new_node_bs; |
| 5146 | } |
| 5147 | |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5148 | /* |
| 5149 | * Run consistency checks on an image |
| 5150 | * |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 5151 | * 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] | 5152 | * 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] | 5153 | * check are stored in res. |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5154 | */ |
Vladimir Sementsov-Ogievskiy | 21c2283 | 2020-09-24 21:54:10 +0300 | [diff] [blame] | 5155 | int coroutine_fn bdrv_co_check(BlockDriverState *bs, |
| 5156 | BdrvCheckResult *res, BdrvCheckMode fix) |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5157 | { |
Max Reitz | 908bcd5 | 2014-08-07 22:47:55 +0200 | [diff] [blame] | 5158 | if (bs->drv == NULL) { |
| 5159 | return -ENOMEDIUM; |
| 5160 | } |
Paolo Bonzini | 2fd6163 | 2018-03-01 17:36:19 +0100 | [diff] [blame] | 5161 | if (bs->drv->bdrv_co_check == NULL) { |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5162 | return -ENOTSUP; |
| 5163 | } |
| 5164 | |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 5165 | memset(res, 0, sizeof(*res)); |
Paolo Bonzini | 2fd6163 | 2018-03-01 17:36:19 +0100 | [diff] [blame] | 5166 | return bs->drv->bdrv_co_check(bs, res, fix); |
| 5167 | } |
| 5168 | |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5169 | /* |
| 5170 | * Return values: |
| 5171 | * 0 - success |
| 5172 | * -EINVAL - backing format specified, but no file |
| 5173 | * -ENOSPC - can't update the backing file because no space is left in the |
| 5174 | * image file header |
| 5175 | * -ENOTSUP - format driver doesn't support changing the backing file |
| 5176 | */ |
Eric Blake | e54ee1b | 2020-07-06 15:39:53 -0500 | [diff] [blame] | 5177 | int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file, |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 5178 | const char *backing_fmt, bool require) |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5179 | { |
| 5180 | BlockDriver *drv = bs->drv; |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5181 | int ret; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5182 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 5183 | if (!drv) { |
| 5184 | return -ENOMEDIUM; |
| 5185 | } |
| 5186 | |
Paolo Bonzini | 5f37779 | 2012-04-12 14:01:01 +0200 | [diff] [blame] | 5187 | /* Backing file format doesn't make sense without a backing file */ |
| 5188 | if (backing_fmt && !backing_file) { |
| 5189 | return -EINVAL; |
| 5190 | } |
| 5191 | |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 5192 | if (require && backing_file && !backing_fmt) { |
| 5193 | return -EINVAL; |
Eric Blake | e54ee1b | 2020-07-06 15:39:53 -0500 | [diff] [blame] | 5194 | } |
| 5195 | |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5196 | if (drv->bdrv_change_backing_file != NULL) { |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5197 | ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5198 | } else { |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5199 | ret = -ENOTSUP; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5200 | } |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5201 | |
| 5202 | if (ret == 0) { |
| 5203 | pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); |
| 5204 | pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 5205 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
| 5206 | backing_file ?: ""); |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5207 | } |
| 5208 | return ret; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5209 | } |
| 5210 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5211 | /* |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5212 | * Finds the first non-filter node above bs in the chain between |
| 5213 | * active and bs. The returned node is either an immediate parent of |
| 5214 | * bs, or there are only filter nodes between the two. |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5215 | * |
| 5216 | * Returns NULL if bs is not found in active's image chain, |
| 5217 | * or if active == bs. |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5218 | * |
| 5219 | * Returns the bottommost base image if bs == NULL. |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5220 | */ |
| 5221 | BlockDriverState *bdrv_find_overlay(BlockDriverState *active, |
| 5222 | BlockDriverState *bs) |
| 5223 | { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5224 | bs = bdrv_skip_filters(bs); |
| 5225 | active = bdrv_skip_filters(active); |
| 5226 | |
| 5227 | while (active) { |
| 5228 | BlockDriverState *next = bdrv_backing_chain_next(active); |
| 5229 | if (bs == next) { |
| 5230 | return active; |
| 5231 | } |
| 5232 | active = next; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5233 | } |
| 5234 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5235 | return NULL; |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5236 | } |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5237 | |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5238 | /* Given a BDS, searches for the base layer. */ |
| 5239 | BlockDriverState *bdrv_find_base(BlockDriverState *bs) |
| 5240 | { |
| 5241 | return bdrv_find_overlay(bs, NULL); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5242 | } |
| 5243 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5244 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5245 | * Return true if at least one of the COW (backing) and filter links |
| 5246 | * between @bs and @base is frozen. @errp is set if that's the case. |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5247 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5248 | */ |
| 5249 | bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base, |
| 5250 | Error **errp) |
| 5251 | { |
| 5252 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5253 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5254 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5255 | for (i = bs; i != base; i = child_bs(child)) { |
| 5256 | child = bdrv_filter_or_cow_child(i); |
| 5257 | |
| 5258 | if (child && child->frozen) { |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5259 | error_setg(errp, "Cannot change '%s' link from '%s' to '%s'", |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5260 | child->name, i->node_name, child->bs->node_name); |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5261 | return true; |
| 5262 | } |
| 5263 | } |
| 5264 | |
| 5265 | return false; |
| 5266 | } |
| 5267 | |
| 5268 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5269 | * Freeze all COW (backing) and filter links between @bs and @base. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5270 | * If any of the links is already frozen the operation is aborted and |
| 5271 | * none of the links are modified. |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5272 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5273 | * Returns 0 on success. On failure returns < 0 and sets @errp. |
| 5274 | */ |
| 5275 | int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base, |
| 5276 | Error **errp) |
| 5277 | { |
| 5278 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5279 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5280 | |
| 5281 | if (bdrv_is_backing_chain_frozen(bs, base, errp)) { |
| 5282 | return -EPERM; |
| 5283 | } |
| 5284 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5285 | for (i = bs; i != base; i = child_bs(child)) { |
| 5286 | child = bdrv_filter_or_cow_child(i); |
| 5287 | if (child && child->bs->never_freeze) { |
Max Reitz | e5182c1 | 2019-07-03 19:28:02 +0200 | [diff] [blame] | 5288 | error_setg(errp, "Cannot freeze '%s' link to '%s'", |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5289 | child->name, child->bs->node_name); |
Max Reitz | e5182c1 | 2019-07-03 19:28:02 +0200 | [diff] [blame] | 5290 | return -EPERM; |
| 5291 | } |
| 5292 | } |
| 5293 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5294 | for (i = bs; i != base; i = child_bs(child)) { |
| 5295 | child = bdrv_filter_or_cow_child(i); |
| 5296 | if (child) { |
| 5297 | child->frozen = true; |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5298 | } |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5299 | } |
| 5300 | |
| 5301 | return 0; |
| 5302 | } |
| 5303 | |
| 5304 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5305 | * Unfreeze all COW (backing) and filter links between @bs and @base. |
| 5306 | * The caller must ensure that all links are frozen before using this |
| 5307 | * function. |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5308 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5309 | */ |
| 5310 | void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base) |
| 5311 | { |
| 5312 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5313 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5314 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5315 | for (i = bs; i != base; i = child_bs(child)) { |
| 5316 | child = bdrv_filter_or_cow_child(i); |
| 5317 | if (child) { |
| 5318 | assert(child->frozen); |
| 5319 | child->frozen = false; |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5320 | } |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5321 | } |
| 5322 | } |
| 5323 | |
| 5324 | /* |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5325 | * Drops images above 'base' up to and including 'top', and sets the image |
| 5326 | * above 'top' to have base as its backing file. |
| 5327 | * |
| 5328 | * Requires that the overlay to 'top' is opened r/w, so that the backing file |
| 5329 | * information in 'bs' can be properly updated. |
| 5330 | * |
| 5331 | * E.g., this will convert the following chain: |
| 5332 | * bottom <- base <- intermediate <- top <- active |
| 5333 | * |
| 5334 | * to |
| 5335 | * |
| 5336 | * bottom <- base <- active |
| 5337 | * |
| 5338 | * It is allowed for bottom==base, in which case it converts: |
| 5339 | * |
| 5340 | * base <- intermediate <- top <- active |
| 5341 | * |
| 5342 | * to |
| 5343 | * |
| 5344 | * base <- active |
| 5345 | * |
Jeff Cody | 54e2690 | 2014-06-25 15:40:10 -0400 | [diff] [blame] | 5346 | * If backing_file_str is non-NULL, it will be used when modifying top's |
| 5347 | * overlay image metadata. |
| 5348 | * |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5349 | * Error conditions: |
| 5350 | * if active == top, that is considered an error |
| 5351 | * |
| 5352 | */ |
Kevin Wolf | bde7071 | 2017-06-27 20:36:18 +0200 | [diff] [blame] | 5353 | int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, |
| 5354 | const char *backing_file_str) |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5355 | { |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5356 | BlockDriverState *explicit_top = top; |
| 5357 | bool update_inherits_from; |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5358 | BdrvChild *c; |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5359 | Error *local_err = NULL; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5360 | int ret = -EIO; |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5361 | g_autoptr(GSList) updated_children = NULL; |
| 5362 | GSList *p; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5363 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5364 | bdrv_ref(top); |
Max Reitz | 637d54a | 2019-07-22 15:33:43 +0200 | [diff] [blame] | 5365 | bdrv_subtree_drained_begin(top); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5366 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5367 | if (!top->drv || !base->drv) { |
| 5368 | goto exit; |
| 5369 | } |
| 5370 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 5371 | /* Make sure that base is in the backing chain of top */ |
| 5372 | if (!bdrv_chain_contains(top, base)) { |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5373 | goto exit; |
| 5374 | } |
| 5375 | |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5376 | /* If 'base' recursively inherits from 'top' then we should set |
| 5377 | * base->inherits_from to top->inherits_from after 'top' and all |
| 5378 | * other intermediate nodes have been dropped. |
| 5379 | * If 'top' is an implicit node (e.g. "commit_top") we should skip |
| 5380 | * it because no one inherits from it. We use explicit_top for that. */ |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5381 | explicit_top = bdrv_skip_implicit_filters(explicit_top); |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5382 | update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top); |
| 5383 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5384 | /* success - we can delete the intermediate states, and link top->base */ |
Kevin Wolf | bde7071 | 2017-06-27 20:36:18 +0200 | [diff] [blame] | 5385 | /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once |
| 5386 | * we've figured out how they should work. */ |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 5387 | if (!backing_file_str) { |
| 5388 | bdrv_refresh_filename(base); |
| 5389 | backing_file_str = base->filename; |
| 5390 | } |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5391 | |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5392 | QLIST_FOREACH(c, &top->parents, next_parent) { |
| 5393 | updated_children = g_slist_prepend(updated_children, c); |
| 5394 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5395 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5396 | /* |
| 5397 | * It seems correct to pass detach_subchain=true here, but it triggers |
| 5398 | * one more yet not fixed bug, when due to nested aio_poll loop we switch to |
| 5399 | * another drained section, which modify the graph (for example, removing |
| 5400 | * the child, which we keep in updated_children list). So, it's a TODO. |
| 5401 | * |
| 5402 | * Note, bug triggered if pass detach_subchain=true here and run |
| 5403 | * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash. |
| 5404 | * That's a FIXME. |
| 5405 | */ |
| 5406 | bdrv_replace_node_common(top, base, false, false, &local_err); |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5407 | if (local_err) { |
| 5408 | error_report_err(local_err); |
| 5409 | goto exit; |
| 5410 | } |
| 5411 | |
| 5412 | for (p = updated_children; p; p = p->next) { |
| 5413 | c = p->data; |
| 5414 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5415 | if (c->klass->update_filename) { |
| 5416 | ret = c->klass->update_filename(c, base, backing_file_str, |
| 5417 | &local_err); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5418 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5419 | /* |
| 5420 | * TODO: Actually, we want to rollback all previous iterations |
| 5421 | * of this loop, and (which is almost impossible) previous |
| 5422 | * bdrv_replace_node()... |
| 5423 | * |
| 5424 | * Note, that c->klass->update_filename may lead to permission |
| 5425 | * update, so it's a bad idea to call it inside permission |
| 5426 | * update transaction of bdrv_replace_node. |
| 5427 | */ |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5428 | error_report_err(local_err); |
| 5429 | goto exit; |
| 5430 | } |
| 5431 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5432 | } |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5433 | |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5434 | if (update_inherits_from) { |
| 5435 | base->inherits_from = explicit_top->inherits_from; |
| 5436 | } |
| 5437 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5438 | ret = 0; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5439 | exit: |
Max Reitz | 637d54a | 2019-07-22 15:33:43 +0200 | [diff] [blame] | 5440 | bdrv_subtree_drained_end(top); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5441 | bdrv_unref(top); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5442 | return ret; |
| 5443 | } |
| 5444 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5445 | /** |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5446 | * Implementation of BlockDriver.bdrv_get_allocated_file_size() that |
| 5447 | * sums the size of all data-bearing children. (This excludes backing |
| 5448 | * children.) |
| 5449 | */ |
| 5450 | static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs) |
| 5451 | { |
| 5452 | BdrvChild *child; |
| 5453 | int64_t child_size, sum = 0; |
| 5454 | |
| 5455 | QLIST_FOREACH(child, &bs->children, next) { |
| 5456 | if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | |
| 5457 | BDRV_CHILD_FILTERED)) |
| 5458 | { |
| 5459 | child_size = bdrv_get_allocated_file_size(child->bs); |
| 5460 | if (child_size < 0) { |
| 5461 | return child_size; |
| 5462 | } |
| 5463 | sum += child_size; |
| 5464 | } |
| 5465 | } |
| 5466 | |
| 5467 | return sum; |
| 5468 | } |
| 5469 | |
| 5470 | /** |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5471 | * Length of a allocated file in bytes. Sparse files are counted by actual |
| 5472 | * allocated space. Return < 0 if error or unknown. |
| 5473 | */ |
| 5474 | int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) |
| 5475 | { |
| 5476 | BlockDriver *drv = bs->drv; |
| 5477 | if (!drv) { |
| 5478 | return -ENOMEDIUM; |
| 5479 | } |
| 5480 | if (drv->bdrv_get_allocated_file_size) { |
| 5481 | return drv->bdrv_get_allocated_file_size(bs); |
| 5482 | } |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5483 | |
| 5484 | if (drv->bdrv_file_open) { |
| 5485 | /* |
| 5486 | * Protocol drivers default to -ENOTSUP (most of their data is |
| 5487 | * not stored in any of their children (if they even have any), |
| 5488 | * so there is no generic way to figure it out). |
| 5489 | */ |
| 5490 | return -ENOTSUP; |
| 5491 | } else if (drv->is_filter) { |
| 5492 | /* Filter drivers default to the size of their filtered child */ |
| 5493 | return bdrv_get_allocated_file_size(bdrv_filter_bs(bs)); |
| 5494 | } else { |
| 5495 | /* Other drivers default to summing their children's sizes */ |
| 5496 | return bdrv_sum_allocated_file_size(bs); |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5497 | } |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5498 | } |
| 5499 | |
Stefan Hajnoczi | 90880ff | 2017-07-05 13:57:30 +0100 | [diff] [blame] | 5500 | /* |
| 5501 | * bdrv_measure: |
| 5502 | * @drv: Format driver |
| 5503 | * @opts: Creation options for new image |
| 5504 | * @in_bs: Existing image containing data for new image (may be NULL) |
| 5505 | * @errp: Error object |
| 5506 | * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) |
| 5507 | * or NULL on error |
| 5508 | * |
| 5509 | * Calculate file size required to create a new image. |
| 5510 | * |
| 5511 | * If @in_bs is given then space for allocated clusters and zero clusters |
| 5512 | * from that image are included in the calculation. If @opts contains a |
| 5513 | * backing file that is shared by @in_bs then backing clusters may be omitted |
| 5514 | * from the calculation. |
| 5515 | * |
| 5516 | * If @in_bs is NULL then the calculation includes no allocated clusters |
| 5517 | * unless a preallocation option is given in @opts. |
| 5518 | * |
| 5519 | * Note that @in_bs may use a different BlockDriver from @drv. |
| 5520 | * |
| 5521 | * If an error occurs the @errp pointer is set. |
| 5522 | */ |
| 5523 | BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, |
| 5524 | BlockDriverState *in_bs, Error **errp) |
| 5525 | { |
| 5526 | if (!drv->bdrv_measure) { |
| 5527 | error_setg(errp, "Block driver '%s' does not support size measurement", |
| 5528 | drv->format_name); |
| 5529 | return NULL; |
| 5530 | } |
| 5531 | |
| 5532 | return drv->bdrv_measure(opts, in_bs, errp); |
| 5533 | } |
| 5534 | |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5535 | /** |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5536 | * Return number of sectors on success, -errno on error. |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5537 | */ |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5538 | int64_t bdrv_nb_sectors(BlockDriverState *bs) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5539 | { |
| 5540 | BlockDriver *drv = bs->drv; |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5541 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5542 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 5543 | return -ENOMEDIUM; |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 5544 | |
Kevin Wolf | b94a261 | 2013-10-29 12:18:58 +0100 | [diff] [blame] | 5545 | if (drv->has_variable_length) { |
| 5546 | int ret = refresh_total_sectors(bs, bs->total_sectors); |
| 5547 | if (ret < 0) { |
| 5548 | return ret; |
Stefan Hajnoczi | 46a4e4e | 2011-03-29 20:04:41 +0100 | [diff] [blame] | 5549 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5550 | } |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5551 | return bs->total_sectors; |
| 5552 | } |
| 5553 | |
| 5554 | /** |
| 5555 | * Return length in bytes on success, -errno on error. |
| 5556 | * The length is always a multiple of BDRV_SECTOR_SIZE. |
| 5557 | */ |
| 5558 | int64_t bdrv_getlength(BlockDriverState *bs) |
| 5559 | { |
| 5560 | int64_t ret = bdrv_nb_sectors(bs); |
| 5561 | |
Eric Blake | 122860b | 2020-11-05 09:51:22 -0600 | [diff] [blame] | 5562 | if (ret < 0) { |
| 5563 | return ret; |
| 5564 | } |
| 5565 | if (ret > INT64_MAX / BDRV_SECTOR_SIZE) { |
| 5566 | return -EFBIG; |
| 5567 | } |
| 5568 | return ret * BDRV_SECTOR_SIZE; |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5569 | } |
| 5570 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 5571 | /* return 0 as number of sectors if no device present or error */ |
ths | 96b8f13 | 2007-12-17 01:35:20 +0000 | [diff] [blame] | 5572 | void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5573 | { |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5574 | int64_t nb_sectors = bdrv_nb_sectors(bs); |
| 5575 | |
| 5576 | *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5577 | } |
bellard | cf98951 | 2004-02-16 21:56:36 +0000 | [diff] [blame] | 5578 | |
Eric Blake | 5411541 | 2016-06-23 16:37:26 -0600 | [diff] [blame] | 5579 | bool bdrv_is_sg(BlockDriverState *bs) |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 5580 | { |
| 5581 | return bs->sg; |
| 5582 | } |
| 5583 | |
Max Reitz | ae23f78 | 2019-06-12 22:57:15 +0200 | [diff] [blame] | 5584 | /** |
| 5585 | * Return whether the given node supports compressed writes. |
| 5586 | */ |
| 5587 | bool bdrv_supports_compressed_writes(BlockDriverState *bs) |
| 5588 | { |
| 5589 | BlockDriverState *filtered; |
| 5590 | |
| 5591 | if (!bs->drv || !block_driver_can_compress(bs->drv)) { |
| 5592 | return false; |
| 5593 | } |
| 5594 | |
| 5595 | filtered = bdrv_filter_bs(bs); |
| 5596 | if (filtered) { |
| 5597 | /* |
| 5598 | * Filters can only forward compressed writes, so we have to |
| 5599 | * check the child. |
| 5600 | */ |
| 5601 | return bdrv_supports_compressed_writes(filtered); |
| 5602 | } |
| 5603 | |
| 5604 | return true; |
| 5605 | } |
| 5606 | |
Markus Armbruster | f8d6bba | 2012-06-13 10:11:48 +0200 | [diff] [blame] | 5607 | const char *bdrv_get_format_name(BlockDriverState *bs) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5608 | { |
Markus Armbruster | f8d6bba | 2012-06-13 10:11:48 +0200 | [diff] [blame] | 5609 | return bs->drv ? bs->drv->format_name : NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5610 | } |
| 5611 | |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 5612 | static int qsort_strcmp(const void *a, const void *b) |
| 5613 | { |
Max Reitz | ceff5bd | 2016-10-12 22:49:05 +0200 | [diff] [blame] | 5614 | return strcmp(*(char *const *)a, *(char *const *)b); |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 5615 | } |
| 5616 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5617 | void bdrv_iterate_format(void (*it)(void *opaque, const char *name), |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 5618 | void *opaque, bool read_only) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5619 | { |
| 5620 | BlockDriver *drv; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5621 | int count = 0; |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 5622 | int i; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5623 | const char **formats = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5624 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 5625 | QLIST_FOREACH(drv, &bdrv_drivers, list) { |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5626 | if (drv->format_name) { |
| 5627 | bool found = false; |
| 5628 | int i = count; |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 5629 | |
| 5630 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) { |
| 5631 | continue; |
| 5632 | } |
| 5633 | |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5634 | while (formats && i && !found) { |
| 5635 | found = !strcmp(formats[--i], drv->format_name); |
| 5636 | } |
| 5637 | |
| 5638 | if (!found) { |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 5639 | formats = g_renew(const char *, formats, count + 1); |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5640 | formats[count++] = drv->format_name; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5641 | } |
| 5642 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5643 | } |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 5644 | |
Max Reitz | eb0df69 | 2016-10-12 22:49:06 +0200 | [diff] [blame] | 5645 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { |
| 5646 | const char *format_name = block_driver_modules[i].format_name; |
| 5647 | |
| 5648 | if (format_name) { |
| 5649 | bool found = false; |
| 5650 | int j = count; |
| 5651 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 5652 | if (use_bdrv_whitelist && |
| 5653 | !bdrv_format_is_whitelisted(format_name, read_only)) { |
| 5654 | continue; |
| 5655 | } |
| 5656 | |
Max Reitz | eb0df69 | 2016-10-12 22:49:06 +0200 | [diff] [blame] | 5657 | while (formats && j && !found) { |
| 5658 | found = !strcmp(formats[--j], format_name); |
| 5659 | } |
| 5660 | |
| 5661 | if (!found) { |
| 5662 | formats = g_renew(const char *, formats, count + 1); |
| 5663 | formats[count++] = format_name; |
| 5664 | } |
| 5665 | } |
| 5666 | } |
| 5667 | |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 5668 | qsort(formats, count, sizeof(formats[0]), qsort_strcmp); |
| 5669 | |
| 5670 | for (i = 0; i < count; i++) { |
| 5671 | it(opaque, formats[i]); |
| 5672 | } |
| 5673 | |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5674 | g_free(formats); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5675 | } |
| 5676 | |
Benoît Canet | dc364f4 | 2014-01-23 21:31:32 +0100 | [diff] [blame] | 5677 | /* This function is to find a node in the bs graph */ |
| 5678 | BlockDriverState *bdrv_find_node(const char *node_name) |
| 5679 | { |
| 5680 | BlockDriverState *bs; |
| 5681 | |
| 5682 | assert(node_name); |
| 5683 | |
| 5684 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
| 5685 | if (!strcmp(node_name, bs->node_name)) { |
| 5686 | return bs; |
| 5687 | } |
| 5688 | } |
| 5689 | return NULL; |
| 5690 | } |
| 5691 | |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 5692 | /* Put this QMP function here so it can access the static graph_bdrv_states. */ |
Peter Krempa | facda54 | 2020-01-20 09:50:49 +0100 | [diff] [blame] | 5693 | BlockDeviceInfoList *bdrv_named_nodes_list(bool flat, |
| 5694 | Error **errp) |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 5695 | { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 5696 | BlockDeviceInfoList *list; |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 5697 | BlockDriverState *bs; |
| 5698 | |
| 5699 | list = NULL; |
| 5700 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
Peter Krempa | facda54 | 2020-01-20 09:50:49 +0100 | [diff] [blame] | 5701 | BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp); |
Alberto Garcia | d5a8ee6 | 2015-04-17 14:52:43 +0300 | [diff] [blame] | 5702 | if (!info) { |
| 5703 | qapi_free_BlockDeviceInfoList(list); |
| 5704 | return NULL; |
| 5705 | } |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 5706 | QAPI_LIST_PREPEND(list, info); |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 5707 | } |
| 5708 | |
| 5709 | return list; |
| 5710 | } |
| 5711 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 5712 | typedef struct XDbgBlockGraphConstructor { |
| 5713 | XDbgBlockGraph *graph; |
| 5714 | GHashTable *graph_nodes; |
| 5715 | } XDbgBlockGraphConstructor; |
| 5716 | |
| 5717 | static XDbgBlockGraphConstructor *xdbg_graph_new(void) |
| 5718 | { |
| 5719 | XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1); |
| 5720 | |
| 5721 | gr->graph = g_new0(XDbgBlockGraph, 1); |
| 5722 | gr->graph_nodes = g_hash_table_new(NULL, NULL); |
| 5723 | |
| 5724 | return gr; |
| 5725 | } |
| 5726 | |
| 5727 | static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr) |
| 5728 | { |
| 5729 | XDbgBlockGraph *graph = gr->graph; |
| 5730 | |
| 5731 | g_hash_table_destroy(gr->graph_nodes); |
| 5732 | g_free(gr); |
| 5733 | |
| 5734 | return graph; |
| 5735 | } |
| 5736 | |
| 5737 | static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node) |
| 5738 | { |
| 5739 | uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node); |
| 5740 | |
| 5741 | if (ret != 0) { |
| 5742 | return ret; |
| 5743 | } |
| 5744 | |
| 5745 | /* |
| 5746 | * Start counting from 1, not 0, because 0 interferes with not-found (NULL) |
| 5747 | * answer of g_hash_table_lookup. |
| 5748 | */ |
| 5749 | ret = g_hash_table_size(gr->graph_nodes) + 1; |
| 5750 | g_hash_table_insert(gr->graph_nodes, node, (void *)ret); |
| 5751 | |
| 5752 | return ret; |
| 5753 | } |
| 5754 | |
| 5755 | static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node, |
| 5756 | XDbgBlockGraphNodeType type, const char *name) |
| 5757 | { |
| 5758 | XDbgBlockGraphNode *n; |
| 5759 | |
| 5760 | n = g_new0(XDbgBlockGraphNode, 1); |
| 5761 | |
| 5762 | n->id = xdbg_graph_node_num(gr, node); |
| 5763 | n->type = type; |
| 5764 | n->name = g_strdup(name); |
| 5765 | |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 5766 | QAPI_LIST_PREPEND(gr->graph->nodes, n); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 5767 | } |
| 5768 | |
| 5769 | static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent, |
| 5770 | const BdrvChild *child) |
| 5771 | { |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 5772 | BlockPermission qapi_perm; |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 5773 | XDbgBlockGraphEdge *edge; |
| 5774 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 5775 | edge = g_new0(XDbgBlockGraphEdge, 1); |
| 5776 | |
| 5777 | edge->parent = xdbg_graph_node_num(gr, parent); |
| 5778 | edge->child = xdbg_graph_node_num(gr, child->bs); |
| 5779 | edge->name = g_strdup(child->name); |
| 5780 | |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 5781 | for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) { |
| 5782 | uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm); |
| 5783 | |
| 5784 | if (flag & child->perm) { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 5785 | QAPI_LIST_PREPEND(edge->perm, qapi_perm); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 5786 | } |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 5787 | if (flag & child->shared_perm) { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 5788 | QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 5789 | } |
| 5790 | } |
| 5791 | |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 5792 | QAPI_LIST_PREPEND(gr->graph->edges, edge); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 5793 | } |
| 5794 | |
| 5795 | |
| 5796 | XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp) |
| 5797 | { |
| 5798 | BlockBackend *blk; |
| 5799 | BlockJob *job; |
| 5800 | BlockDriverState *bs; |
| 5801 | BdrvChild *child; |
| 5802 | XDbgBlockGraphConstructor *gr = xdbg_graph_new(); |
| 5803 | |
| 5804 | for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) { |
| 5805 | char *allocated_name = NULL; |
| 5806 | const char *name = blk_name(blk); |
| 5807 | |
| 5808 | if (!*name) { |
| 5809 | name = allocated_name = blk_get_attached_dev_id(blk); |
| 5810 | } |
| 5811 | xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND, |
| 5812 | name); |
| 5813 | g_free(allocated_name); |
| 5814 | if (blk_root(blk)) { |
| 5815 | xdbg_graph_add_edge(gr, blk, blk_root(blk)); |
| 5816 | } |
| 5817 | } |
| 5818 | |
| 5819 | for (job = block_job_next(NULL); job; job = block_job_next(job)) { |
| 5820 | GSList *el; |
| 5821 | |
| 5822 | xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB, |
| 5823 | job->job.id); |
| 5824 | for (el = job->nodes; el; el = el->next) { |
| 5825 | xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data); |
| 5826 | } |
| 5827 | } |
| 5828 | |
| 5829 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
| 5830 | xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER, |
| 5831 | bs->node_name); |
| 5832 | QLIST_FOREACH(child, &bs->children, next) { |
| 5833 | xdbg_graph_add_edge(gr, bs, child); |
| 5834 | } |
| 5835 | } |
| 5836 | |
| 5837 | return xdbg_graph_finalize(gr); |
| 5838 | } |
| 5839 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 5840 | BlockDriverState *bdrv_lookup_bs(const char *device, |
| 5841 | const char *node_name, |
| 5842 | Error **errp) |
| 5843 | { |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 5844 | BlockBackend *blk; |
| 5845 | BlockDriverState *bs; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 5846 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 5847 | if (device) { |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 5848 | blk = blk_by_name(device); |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 5849 | |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 5850 | if (blk) { |
Alberto Garcia | 9f4ed6f | 2015-10-26 16:46:49 +0200 | [diff] [blame] | 5851 | bs = blk_bs(blk); |
| 5852 | if (!bs) { |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 5853 | error_setg(errp, "Device '%s' has no medium", device); |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 5854 | } |
| 5855 | |
Alberto Garcia | 9f4ed6f | 2015-10-26 16:46:49 +0200 | [diff] [blame] | 5856 | return bs; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 5857 | } |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 5858 | } |
| 5859 | |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 5860 | if (node_name) { |
| 5861 | bs = bdrv_find_node(node_name); |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 5862 | |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 5863 | if (bs) { |
| 5864 | return bs; |
| 5865 | } |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 5866 | } |
| 5867 | |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 5868 | error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'", |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 5869 | device ? device : "", |
| 5870 | node_name ? node_name : ""); |
| 5871 | return NULL; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 5872 | } |
| 5873 | |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 5874 | /* If 'base' is in the same chain as 'top', return true. Otherwise, |
| 5875 | * return false. If either argument is NULL, return false. */ |
| 5876 | bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) |
| 5877 | { |
| 5878 | while (top && top != base) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5879 | top = bdrv_filter_or_cow_bs(top); |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 5880 | } |
| 5881 | |
| 5882 | return top != NULL; |
| 5883 | } |
| 5884 | |
Fam Zheng | 04df765 | 2014-10-31 11:32:54 +0800 | [diff] [blame] | 5885 | BlockDriverState *bdrv_next_node(BlockDriverState *bs) |
| 5886 | { |
| 5887 | if (!bs) { |
| 5888 | return QTAILQ_FIRST(&graph_bdrv_states); |
| 5889 | } |
| 5890 | return QTAILQ_NEXT(bs, node_list); |
| 5891 | } |
| 5892 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 5893 | BlockDriverState *bdrv_next_all_states(BlockDriverState *bs) |
| 5894 | { |
| 5895 | if (!bs) { |
| 5896 | return QTAILQ_FIRST(&all_bdrv_states); |
| 5897 | } |
| 5898 | return QTAILQ_NEXT(bs, bs_list); |
| 5899 | } |
| 5900 | |
Fam Zheng | 20a9e77 | 2014-10-31 11:32:55 +0800 | [diff] [blame] | 5901 | const char *bdrv_get_node_name(const BlockDriverState *bs) |
| 5902 | { |
| 5903 | return bs->node_name; |
| 5904 | } |
| 5905 | |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 5906 | const char *bdrv_get_parent_name(const BlockDriverState *bs) |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 5907 | { |
| 5908 | BdrvChild *c; |
| 5909 | const char *name; |
| 5910 | |
| 5911 | /* If multiple parents have a name, just pick the first one. */ |
| 5912 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5913 | if (c->klass->get_name) { |
| 5914 | name = c->klass->get_name(c); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 5915 | if (name && *name) { |
| 5916 | return name; |
| 5917 | } |
| 5918 | } |
| 5919 | } |
| 5920 | |
| 5921 | return NULL; |
| 5922 | } |
| 5923 | |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 5924 | /* TODO check what callers really want: bs->node_name or blk_name() */ |
Markus Armbruster | bfb197e | 2014-10-07 13:59:11 +0200 | [diff] [blame] | 5925 | const char *bdrv_get_device_name(const BlockDriverState *bs) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5926 | { |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 5927 | return bdrv_get_parent_name(bs) ?: ""; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5928 | } |
| 5929 | |
Alberto Garcia | 9b2aa84 | 2015-04-08 12:29:18 +0300 | [diff] [blame] | 5930 | /* This can be used to identify nodes that might not have a device |
| 5931 | * name associated. Since node and device names live in the same |
| 5932 | * namespace, the result is unambiguous. The exception is if both are |
| 5933 | * absent, then this returns an empty (non-null) string. */ |
| 5934 | const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) |
| 5935 | { |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 5936 | return bdrv_get_parent_name(bs) ?: bs->node_name; |
Alberto Garcia | 9b2aa84 | 2015-04-08 12:29:18 +0300 | [diff] [blame] | 5937 | } |
| 5938 | |
Markus Armbruster | c843328 | 2012-06-05 16:49:24 +0200 | [diff] [blame] | 5939 | int bdrv_get_flags(BlockDriverState *bs) |
| 5940 | { |
| 5941 | return bs->open_flags; |
| 5942 | } |
| 5943 | |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 5944 | int bdrv_has_zero_init_1(BlockDriverState *bs) |
| 5945 | { |
| 5946 | return 1; |
| 5947 | } |
| 5948 | |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 5949 | int bdrv_has_zero_init(BlockDriverState *bs) |
| 5950 | { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 5951 | BlockDriverState *filtered; |
| 5952 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 5953 | if (!bs->drv) { |
| 5954 | return 0; |
| 5955 | } |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 5956 | |
Paolo Bonzini | 11212d8 | 2013-09-04 19:00:27 +0200 | [diff] [blame] | 5957 | /* If BS is a copy on write image, it is initialized to |
| 5958 | the contents of the base image, which may not be zeroes. */ |
Max Reitz | 3477817 | 2019-06-12 17:10:46 +0200 | [diff] [blame] | 5959 | if (bdrv_cow_child(bs)) { |
Paolo Bonzini | 11212d8 | 2013-09-04 19:00:27 +0200 | [diff] [blame] | 5960 | return 0; |
| 5961 | } |
Kevin Wolf | 336c1c1 | 2010-07-28 11:26:29 +0200 | [diff] [blame] | 5962 | if (bs->drv->bdrv_has_zero_init) { |
| 5963 | return bs->drv->bdrv_has_zero_init(bs); |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 5964 | } |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 5965 | |
| 5966 | filtered = bdrv_filter_bs(bs); |
| 5967 | if (filtered) { |
| 5968 | return bdrv_has_zero_init(filtered); |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 5969 | } |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 5970 | |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 5971 | /* safe default */ |
| 5972 | return 0; |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 5973 | } |
| 5974 | |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 5975 | bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) |
| 5976 | { |
Denis V. Lunev | 2f0342e | 2016-07-14 16:33:26 +0300 | [diff] [blame] | 5977 | if (!(bs->open_flags & BDRV_O_UNMAP)) { |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 5978 | return false; |
| 5979 | } |
| 5980 | |
Eric Blake | e24d813 | 2018-01-26 13:34:39 -0600 | [diff] [blame] | 5981 | return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 5982 | } |
| 5983 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5984 | void bdrv_get_backing_filename(BlockDriverState *bs, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5985 | char *filename, int filename_size) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5986 | { |
Kevin Wolf | 3574c60 | 2011-10-26 11:02:11 +0200 | [diff] [blame] | 5987 | pstrcpy(filename, filename_size, bs->backing_file); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5988 | } |
| 5989 | |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 5990 | int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
| 5991 | { |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 5992 | int ret; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 5993 | BlockDriver *drv = bs->drv; |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 5994 | /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ |
| 5995 | if (!drv) { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 5996 | return -ENOMEDIUM; |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 5997 | } |
| 5998 | if (!drv->bdrv_get_info) { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 5999 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
| 6000 | if (filtered) { |
| 6001 | return bdrv_get_info(filtered, bdi); |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6002 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6003 | return -ENOTSUP; |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6004 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6005 | memset(bdi, 0, sizeof(*bdi)); |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 6006 | ret = drv->bdrv_get_info(bs, bdi); |
| 6007 | if (ret < 0) { |
| 6008 | return ret; |
| 6009 | } |
| 6010 | |
| 6011 | if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) { |
| 6012 | return -EINVAL; |
| 6013 | } |
| 6014 | |
| 6015 | return 0; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6016 | } |
| 6017 | |
Andrey Shinkevich | 1bf6e9c | 2019-02-08 18:06:06 +0300 | [diff] [blame] | 6018 | ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs, |
| 6019 | Error **errp) |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6020 | { |
| 6021 | BlockDriver *drv = bs->drv; |
| 6022 | if (drv && drv->bdrv_get_specific_info) { |
Andrey Shinkevich | 1bf6e9c | 2019-02-08 18:06:06 +0300 | [diff] [blame] | 6023 | return drv->bdrv_get_specific_info(bs, errp); |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6024 | } |
| 6025 | return NULL; |
| 6026 | } |
| 6027 | |
Anton Nefedov | d924559 | 2019-09-23 15:17:37 +0300 | [diff] [blame] | 6028 | BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs) |
| 6029 | { |
| 6030 | BlockDriver *drv = bs->drv; |
| 6031 | if (!drv || !drv->bdrv_get_specific_stats) { |
| 6032 | return NULL; |
| 6033 | } |
| 6034 | return drv->bdrv_get_specific_stats(bs); |
| 6035 | } |
| 6036 | |
Eric Blake | a31939e | 2015-11-18 01:52:54 -0700 | [diff] [blame] | 6037 | void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6038 | { |
Kevin Wolf | bf736fe | 2013-06-05 15:17:55 +0200 | [diff] [blame] | 6039 | if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6040 | return; |
| 6041 | } |
| 6042 | |
Kevin Wolf | bf736fe | 2013-06-05 15:17:55 +0200 | [diff] [blame] | 6043 | bs->drv->bdrv_debug_event(bs, event); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6044 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6045 | |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6046 | static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs) |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6047 | { |
| 6048 | while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6049 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6050 | } |
| 6051 | |
| 6052 | if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6053 | assert(bs->drv->bdrv_debug_remove_breakpoint); |
| 6054 | return bs; |
| 6055 | } |
| 6056 | |
| 6057 | return NULL; |
| 6058 | } |
| 6059 | |
| 6060 | int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, |
| 6061 | const char *tag) |
| 6062 | { |
| 6063 | bs = bdrv_find_debug_node(bs); |
| 6064 | if (bs) { |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6065 | return bs->drv->bdrv_debug_breakpoint(bs, event, tag); |
| 6066 | } |
| 6067 | |
| 6068 | return -ENOTSUP; |
| 6069 | } |
| 6070 | |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 6071 | int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) |
| 6072 | { |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6073 | bs = bdrv_find_debug_node(bs); |
| 6074 | if (bs) { |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 6075 | return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); |
| 6076 | } |
| 6077 | |
| 6078 | return -ENOTSUP; |
| 6079 | } |
| 6080 | |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6081 | int bdrv_debug_resume(BlockDriverState *bs, const char *tag) |
| 6082 | { |
Max Reitz | 938789e | 2014-03-10 23:44:08 +0100 | [diff] [blame] | 6083 | while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6084 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6085 | } |
| 6086 | |
| 6087 | if (bs && bs->drv && bs->drv->bdrv_debug_resume) { |
| 6088 | return bs->drv->bdrv_debug_resume(bs, tag); |
| 6089 | } |
| 6090 | |
| 6091 | return -ENOTSUP; |
| 6092 | } |
| 6093 | |
| 6094 | bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) |
| 6095 | { |
| 6096 | while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6097 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6098 | } |
| 6099 | |
| 6100 | if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { |
| 6101 | return bs->drv->bdrv_debug_is_suspended(bs, tag); |
| 6102 | } |
| 6103 | |
| 6104 | return false; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6105 | } |
| 6106 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6107 | /* backing_file can either be relative, or absolute, or a protocol. If it is |
| 6108 | * relative, it must be relative to the chain. So, passing in bs->filename |
| 6109 | * from a BDS as backing_file should not be done, as that may be relative to |
| 6110 | * the CWD rather than the chain. */ |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6111 | BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, |
| 6112 | const char *backing_file) |
| 6113 | { |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6114 | char *filename_full = NULL; |
| 6115 | char *backing_file_full = NULL; |
| 6116 | char *filename_tmp = NULL; |
| 6117 | int is_protocol = 0; |
Max Reitz | 0b877d0 | 2018-08-01 20:34:11 +0200 | [diff] [blame] | 6118 | bool filenames_refreshed = false; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6119 | BlockDriverState *curr_bs = NULL; |
| 6120 | BlockDriverState *retval = NULL; |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6121 | BlockDriverState *bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6122 | |
| 6123 | if (!bs || !bs->drv || !backing_file) { |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6124 | return NULL; |
| 6125 | } |
| 6126 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6127 | filename_full = g_malloc(PATH_MAX); |
| 6128 | backing_file_full = g_malloc(PATH_MAX); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6129 | |
| 6130 | is_protocol = path_has_protocol(backing_file); |
| 6131 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6132 | /* |
| 6133 | * Being largely a legacy function, skip any filters here |
| 6134 | * (because filters do not have normal filenames, so they cannot |
| 6135 | * match anyway; and allowing json:{} filenames is a bit out of |
| 6136 | * scope). |
| 6137 | */ |
| 6138 | for (curr_bs = bdrv_skip_filters(bs); |
| 6139 | bdrv_cow_child(curr_bs) != NULL; |
| 6140 | curr_bs = bs_below) |
| 6141 | { |
| 6142 | bs_below = bdrv_backing_chain_next(curr_bs); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6143 | |
Max Reitz | 0b877d0 | 2018-08-01 20:34:11 +0200 | [diff] [blame] | 6144 | if (bdrv_backing_overridden(curr_bs)) { |
| 6145 | /* |
| 6146 | * If the backing file was overridden, we can only compare |
| 6147 | * directly against the backing node's filename. |
| 6148 | */ |
| 6149 | |
| 6150 | if (!filenames_refreshed) { |
| 6151 | /* |
| 6152 | * This will automatically refresh all of the |
| 6153 | * filenames in the rest of the backing chain, so we |
| 6154 | * only need to do this once. |
| 6155 | */ |
| 6156 | bdrv_refresh_filename(bs_below); |
| 6157 | filenames_refreshed = true; |
| 6158 | } |
| 6159 | |
| 6160 | if (strcmp(backing_file, bs_below->filename) == 0) { |
| 6161 | retval = bs_below; |
| 6162 | break; |
| 6163 | } |
| 6164 | } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) { |
| 6165 | /* |
| 6166 | * If either of the filename paths is actually a protocol, then |
| 6167 | * compare unmodified paths; otherwise make paths relative. |
| 6168 | */ |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 6169 | char *backing_file_full_ret; |
| 6170 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6171 | if (strcmp(backing_file, curr_bs->backing_file) == 0) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6172 | retval = bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6173 | break; |
| 6174 | } |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6175 | /* Also check against the full backing filename for the image */ |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 6176 | backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs, |
| 6177 | NULL); |
| 6178 | if (backing_file_full_ret) { |
| 6179 | bool equal = strcmp(backing_file, backing_file_full_ret) == 0; |
| 6180 | g_free(backing_file_full_ret); |
| 6181 | if (equal) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6182 | retval = bs_below; |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6183 | break; |
| 6184 | } |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6185 | } |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6186 | } else { |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6187 | /* If not an absolute filename path, make it relative to the current |
| 6188 | * image's filename path */ |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6189 | filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file, |
| 6190 | NULL); |
| 6191 | /* We are going to compare canonicalized absolute pathnames */ |
| 6192 | if (!filename_tmp || !realpath(filename_tmp, filename_full)) { |
| 6193 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6194 | continue; |
| 6195 | } |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6196 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6197 | |
| 6198 | /* We need to make sure the backing filename we are comparing against |
| 6199 | * is relative to the current image filename (or absolute) */ |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6200 | filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL); |
| 6201 | if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) { |
| 6202 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6203 | continue; |
| 6204 | } |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6205 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6206 | |
| 6207 | if (strcmp(backing_file_full, filename_full) == 0) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6208 | retval = bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6209 | break; |
| 6210 | } |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6211 | } |
| 6212 | } |
| 6213 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6214 | g_free(filename_full); |
| 6215 | g_free(backing_file_full); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6216 | return retval; |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6217 | } |
| 6218 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6219 | void bdrv_init(void) |
| 6220 | { |
Kevin Wolf | e5f05f8 | 2021-07-09 18:41:41 +0200 | [diff] [blame] | 6221 | #ifdef CONFIG_BDRV_WHITELIST_TOOLS |
| 6222 | use_bdrv_whitelist = 1; |
| 6223 | #endif |
Anthony Liguori | 5efa9d5 | 2009-05-09 17:03:42 -0500 | [diff] [blame] | 6224 | module_call_init(MODULE_INIT_BLOCK); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6225 | } |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 6226 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 6227 | void bdrv_init_with_whitelist(void) |
| 6228 | { |
| 6229 | use_bdrv_whitelist = 1; |
| 6230 | bdrv_init(); |
| 6231 | } |
| 6232 | |
Vladimir Sementsov-Ogievskiy | 21c2283 | 2020-09-24 21:54:10 +0300 | [diff] [blame] | 6233 | int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp) |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6234 | { |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6235 | BdrvChild *child, *parent; |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6236 | Error *local_err = NULL; |
| 6237 | int ret; |
Vladimir Sementsov-Ogievskiy | 9c98f14 | 2018-10-29 16:23:17 -0400 | [diff] [blame] | 6238 | BdrvDirtyBitmap *bm; |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6239 | |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6240 | if (!bs->drv) { |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6241 | return -ENOMEDIUM; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6242 | } |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6243 | |
Vladimir Sementsov-Ogievskiy | 16e977d | 2017-01-31 14:23:08 +0300 | [diff] [blame] | 6244 | QLIST_FOREACH(child, &bs->children, next) { |
Paolo Bonzini | 2b148f3 | 2018-03-01 17:36:18 +0100 | [diff] [blame] | 6245 | bdrv_co_invalidate_cache(child->bs, &local_err); |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6246 | if (local_err) { |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6247 | error_propagate(errp, local_err); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6248 | return -EINVAL; |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6249 | } |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6250 | } |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6251 | |
Kevin Wolf | dafe096 | 2017-11-16 13:00:01 +0100 | [diff] [blame] | 6252 | /* |
| 6253 | * Update permissions, they may differ for inactive nodes. |
| 6254 | * |
| 6255 | * Note that the required permissions of inactive images are always a |
| 6256 | * subset of the permissions required after activating the image. This |
| 6257 | * allows us to just get the permissions upfront without restricting |
| 6258 | * drv->bdrv_invalidate_cache(). |
| 6259 | * |
| 6260 | * It also means that in error cases, we don't have to try and revert to |
| 6261 | * the old permissions (which is an operation that could fail, too). We can |
| 6262 | * just keep the extended permissions for the next time that an activation |
| 6263 | * of the image is tried. |
| 6264 | */ |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6265 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 6266 | bs->open_flags &= ~BDRV_O_INACTIVE; |
Vladimir Sementsov-Ogievskiy | 071b474 | 2020-11-06 15:42:41 +0300 | [diff] [blame] | 6267 | ret = bdrv_refresh_perms(bs, errp); |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6268 | if (ret < 0) { |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6269 | bs->open_flags |= BDRV_O_INACTIVE; |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6270 | return ret; |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6271 | } |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6272 | |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6273 | if (bs->drv->bdrv_co_invalidate_cache) { |
| 6274 | bs->drv->bdrv_co_invalidate_cache(bs, &local_err); |
| 6275 | if (local_err) { |
| 6276 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6277 | error_propagate(errp, local_err); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6278 | return -EINVAL; |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6279 | } |
| 6280 | } |
Vladimir Sementsov-Ogievskiy | 9c98f14 | 2018-10-29 16:23:17 -0400 | [diff] [blame] | 6281 | |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6282 | FOR_EACH_DIRTY_BITMAP(bs, bm) { |
| 6283 | bdrv_dirty_bitmap_skip_store(bm, false); |
| 6284 | } |
| 6285 | |
| 6286 | ret = refresh_total_sectors(bs, bs->total_sectors); |
| 6287 | if (ret < 0) { |
| 6288 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6289 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6290 | return ret; |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6291 | } |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6292 | } |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6293 | |
| 6294 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6295 | if (parent->klass->activate) { |
| 6296 | parent->klass->activate(parent, &local_err); |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6297 | if (local_err) { |
Kevin Wolf | 78fc3b3 | 2019-01-31 15:16:10 +0100 | [diff] [blame] | 6298 | bs->open_flags |= BDRV_O_INACTIVE; |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6299 | error_propagate(errp, local_err); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6300 | return -EINVAL; |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6301 | } |
| 6302 | } |
| 6303 | } |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6304 | |
| 6305 | return 0; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6306 | } |
| 6307 | |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6308 | void bdrv_invalidate_cache_all(Error **errp) |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6309 | { |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 6310 | BlockDriverState *bs; |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6311 | BdrvNextIterator it; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6312 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6313 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 6314 | AioContext *aio_context = bdrv_get_aio_context(bs); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6315 | int ret; |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 6316 | |
| 6317 | aio_context_acquire(aio_context); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6318 | ret = bdrv_invalidate_cache(bs, errp); |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 6319 | aio_context_release(aio_context); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6320 | if (ret < 0) { |
Max Reitz | 5e003f1 | 2017-11-10 18:25:45 +0100 | [diff] [blame] | 6321 | bdrv_next_cleanup(&it); |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6322 | return; |
| 6323 | } |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6324 | } |
| 6325 | } |
| 6326 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6327 | static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active) |
| 6328 | { |
| 6329 | BdrvChild *parent; |
| 6330 | |
| 6331 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6332 | if (parent->klass->parent_is_bds) { |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6333 | BlockDriverState *parent_bs = parent->opaque; |
| 6334 | if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) { |
| 6335 | return true; |
| 6336 | } |
| 6337 | } |
| 6338 | } |
| 6339 | |
| 6340 | return false; |
| 6341 | } |
| 6342 | |
| 6343 | static int bdrv_inactivate_recurse(BlockDriverState *bs) |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6344 | { |
Kevin Wolf | cfa1a57 | 2017-05-04 18:52:38 +0200 | [diff] [blame] | 6345 | BdrvChild *child, *parent; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6346 | int ret; |
Vladimir Sementsov-Ogievskiy | a13de40 | 2021-09-11 15:00:27 +0300 | [diff] [blame] | 6347 | uint64_t cumulative_perms, cumulative_shared_perms; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6348 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 6349 | if (!bs->drv) { |
| 6350 | return -ENOMEDIUM; |
| 6351 | } |
| 6352 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6353 | /* Make sure that we don't inactivate a child before its parent. |
| 6354 | * It will be covered by recursion from the yet active parent. */ |
| 6355 | if (bdrv_has_bds_parent(bs, true)) { |
| 6356 | return 0; |
| 6357 | } |
| 6358 | |
| 6359 | assert(!(bs->open_flags & BDRV_O_INACTIVE)); |
| 6360 | |
| 6361 | /* Inactivate this node */ |
| 6362 | if (bs->drv->bdrv_inactivate) { |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6363 | ret = bs->drv->bdrv_inactivate(bs); |
| 6364 | if (ret < 0) { |
| 6365 | return ret; |
| 6366 | } |
| 6367 | } |
| 6368 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6369 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6370 | if (parent->klass->inactivate) { |
| 6371 | ret = parent->klass->inactivate(parent); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6372 | if (ret < 0) { |
| 6373 | return ret; |
Kevin Wolf | cfa1a57 | 2017-05-04 18:52:38 +0200 | [diff] [blame] | 6374 | } |
| 6375 | } |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6376 | } |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 6377 | |
Vladimir Sementsov-Ogievskiy | a13de40 | 2021-09-11 15:00:27 +0300 | [diff] [blame] | 6378 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
| 6379 | &cumulative_shared_perms); |
| 6380 | if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) { |
| 6381 | /* Our inactive parents still need write access. Inactivation failed. */ |
| 6382 | return -EPERM; |
| 6383 | } |
| 6384 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6385 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6386 | |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 6387 | /* |
| 6388 | * Update permissions, they may differ for inactive nodes. |
| 6389 | * We only tried to loosen restrictions, so errors are not fatal, ignore |
| 6390 | * them. |
| 6391 | */ |
Vladimir Sementsov-Ogievskiy | 071b474 | 2020-11-06 15:42:41 +0300 | [diff] [blame] | 6392 | bdrv_refresh_perms(bs, NULL); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6393 | |
| 6394 | /* Recursively inactivate children */ |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 6395 | QLIST_FOREACH(child, &bs->children, next) { |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6396 | ret = bdrv_inactivate_recurse(child->bs); |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 6397 | if (ret < 0) { |
| 6398 | return ret; |
| 6399 | } |
| 6400 | } |
| 6401 | |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6402 | return 0; |
| 6403 | } |
| 6404 | |
| 6405 | int bdrv_inactivate_all(void) |
| 6406 | { |
Max Reitz | 79720af | 2016-03-16 19:54:44 +0100 | [diff] [blame] | 6407 | BlockDriverState *bs = NULL; |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6408 | BdrvNextIterator it; |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6409 | int ret = 0; |
Paolo Bonzini | bd6458e | 2017-12-07 20:13:15 +0000 | [diff] [blame] | 6410 | GSList *aio_ctxs = NULL, *ctx; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6411 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6412 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
Paolo Bonzini | bd6458e | 2017-12-07 20:13:15 +0000 | [diff] [blame] | 6413 | AioContext *aio_context = bdrv_get_aio_context(bs); |
| 6414 | |
| 6415 | if (!g_slist_find(aio_ctxs, aio_context)) { |
| 6416 | aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); |
| 6417 | aio_context_acquire(aio_context); |
| 6418 | } |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6419 | } |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6420 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6421 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
| 6422 | /* Nodes with BDS parents are covered by recursion from the last |
| 6423 | * parent that gets inactivated. Don't inactivate them a second |
| 6424 | * time if that has already happened. */ |
| 6425 | if (bdrv_has_bds_parent(bs, false)) { |
| 6426 | continue; |
| 6427 | } |
| 6428 | ret = bdrv_inactivate_recurse(bs); |
| 6429 | if (ret < 0) { |
| 6430 | bdrv_next_cleanup(&it); |
| 6431 | goto out; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6432 | } |
| 6433 | } |
| 6434 | |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6435 | out: |
Paolo Bonzini | bd6458e | 2017-12-07 20:13:15 +0000 | [diff] [blame] | 6436 | for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { |
| 6437 | AioContext *aio_context = ctx->data; |
| 6438 | aio_context_release(aio_context); |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6439 | } |
Paolo Bonzini | bd6458e | 2017-12-07 20:13:15 +0000 | [diff] [blame] | 6440 | g_slist_free(aio_ctxs); |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6441 | |
| 6442 | return ret; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6443 | } |
| 6444 | |
Kevin Wolf | f9f05dc | 2011-07-15 13:50:26 +0200 | [diff] [blame] | 6445 | /**************************************************************/ |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6446 | /* removable device support */ |
| 6447 | |
| 6448 | /** |
| 6449 | * Return TRUE if the media is present |
| 6450 | */ |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 6451 | bool bdrv_is_inserted(BlockDriverState *bs) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6452 | { |
| 6453 | BlockDriver *drv = bs->drv; |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 6454 | BdrvChild *child; |
Markus Armbruster | a1aff5b | 2011-09-06 18:58:41 +0200 | [diff] [blame] | 6455 | |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 6456 | if (!drv) { |
| 6457 | return false; |
| 6458 | } |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 6459 | if (drv->bdrv_is_inserted) { |
| 6460 | return drv->bdrv_is_inserted(bs); |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 6461 | } |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 6462 | QLIST_FOREACH(child, &bs->children, next) { |
| 6463 | if (!bdrv_is_inserted(child->bs)) { |
| 6464 | return false; |
| 6465 | } |
| 6466 | } |
| 6467 | return true; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6468 | } |
| 6469 | |
| 6470 | /** |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6471 | * If eject_flag is TRUE, eject the media. Otherwise, close the tray |
| 6472 | */ |
Luiz Capitulino | f36f394 | 2012-02-03 16:24:53 -0200 | [diff] [blame] | 6473 | void bdrv_eject(BlockDriverState *bs, bool eject_flag) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6474 | { |
| 6475 | BlockDriver *drv = bs->drv; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6476 | |
Markus Armbruster | 822e1cd | 2011-07-20 18:23:42 +0200 | [diff] [blame] | 6477 | if (drv && drv->bdrv_eject) { |
| 6478 | drv->bdrv_eject(bs, eject_flag); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6479 | } |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6480 | } |
| 6481 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6482 | /** |
| 6483 | * Lock or unlock the media (if it is locked, the user won't be able |
| 6484 | * to eject it manually). |
| 6485 | */ |
Markus Armbruster | 025e849 | 2011-09-06 18:58:47 +0200 | [diff] [blame] | 6486 | void bdrv_lock_medium(BlockDriverState *bs, bool locked) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6487 | { |
| 6488 | BlockDriver *drv = bs->drv; |
| 6489 | |
Markus Armbruster | 025e849 | 2011-09-06 18:58:47 +0200 | [diff] [blame] | 6490 | trace_bdrv_lock_medium(bs, locked); |
Stefan Hajnoczi | b8c6d09 | 2011-03-29 20:04:40 +0100 | [diff] [blame] | 6491 | |
Markus Armbruster | 025e849 | 2011-09-06 18:58:47 +0200 | [diff] [blame] | 6492 | if (drv && drv->bdrv_lock_medium) { |
| 6493 | drv->bdrv_lock_medium(bs, locked); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6494 | } |
| 6495 | } |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 6496 | |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 6497 | /* Get a reference to bs */ |
| 6498 | void bdrv_ref(BlockDriverState *bs) |
| 6499 | { |
| 6500 | bs->refcnt++; |
| 6501 | } |
| 6502 | |
| 6503 | /* Release a previously grabbed reference to bs. |
| 6504 | * If after releasing, reference count is zero, the BlockDriverState is |
| 6505 | * deleted. */ |
| 6506 | void bdrv_unref(BlockDriverState *bs) |
| 6507 | { |
Jeff Cody | 9a4d5ca | 2014-07-23 17:22:57 -0400 | [diff] [blame] | 6508 | if (!bs) { |
| 6509 | return; |
| 6510 | } |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 6511 | assert(bs->refcnt > 0); |
| 6512 | if (--bs->refcnt == 0) { |
| 6513 | bdrv_delete(bs); |
| 6514 | } |
| 6515 | } |
| 6516 | |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6517 | struct BdrvOpBlocker { |
| 6518 | Error *reason; |
| 6519 | QLIST_ENTRY(BdrvOpBlocker) list; |
| 6520 | }; |
| 6521 | |
| 6522 | bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) |
| 6523 | { |
| 6524 | BdrvOpBlocker *blocker; |
| 6525 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 6526 | if (!QLIST_EMPTY(&bs->op_blockers[op])) { |
| 6527 | blocker = QLIST_FIRST(&bs->op_blockers[op]); |
Markus Armbruster | 4b57664 | 2018-10-17 10:26:25 +0200 | [diff] [blame] | 6528 | error_propagate_prepend(errp, error_copy(blocker->reason), |
| 6529 | "Node '%s' is busy: ", |
| 6530 | bdrv_get_device_or_node_name(bs)); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6531 | return true; |
| 6532 | } |
| 6533 | return false; |
| 6534 | } |
| 6535 | |
| 6536 | void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) |
| 6537 | { |
| 6538 | BdrvOpBlocker *blocker; |
| 6539 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 6540 | |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 6541 | blocker = g_new0(BdrvOpBlocker, 1); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6542 | blocker->reason = reason; |
| 6543 | QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); |
| 6544 | } |
| 6545 | |
| 6546 | void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) |
| 6547 | { |
| 6548 | BdrvOpBlocker *blocker, *next; |
| 6549 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 6550 | QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { |
| 6551 | if (blocker->reason == reason) { |
| 6552 | QLIST_REMOVE(blocker, list); |
| 6553 | g_free(blocker); |
| 6554 | } |
| 6555 | } |
| 6556 | } |
| 6557 | |
| 6558 | void bdrv_op_block_all(BlockDriverState *bs, Error *reason) |
| 6559 | { |
| 6560 | int i; |
| 6561 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 6562 | bdrv_op_block(bs, i, reason); |
| 6563 | } |
| 6564 | } |
| 6565 | |
| 6566 | void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) |
| 6567 | { |
| 6568 | int i; |
| 6569 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 6570 | bdrv_op_unblock(bs, i, reason); |
| 6571 | } |
| 6572 | } |
| 6573 | |
| 6574 | bool bdrv_op_blocker_is_empty(BlockDriverState *bs) |
| 6575 | { |
| 6576 | int i; |
| 6577 | |
| 6578 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 6579 | if (!QLIST_EMPTY(&bs->op_blockers[i])) { |
| 6580 | return false; |
| 6581 | } |
| 6582 | } |
| 6583 | return true; |
| 6584 | } |
| 6585 | |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 6586 | void bdrv_img_create(const char *filename, const char *fmt, |
| 6587 | const char *base_filename, const char *base_fmt, |
Fam Zheng | 9217283 | 2017-04-21 20:27:01 +0800 | [diff] [blame] | 6588 | char *options, uint64_t img_size, int flags, bool quiet, |
| 6589 | Error **errp) |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6590 | { |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 6591 | QemuOptsList *create_opts = NULL; |
| 6592 | QemuOpts *opts = NULL; |
| 6593 | const char *backing_fmt, *backing_file; |
| 6594 | int64_t size; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6595 | BlockDriver *drv, *proto_drv; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 6596 | Error *local_err = NULL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6597 | int ret = 0; |
| 6598 | |
| 6599 | /* Find driver and parse its options */ |
| 6600 | drv = bdrv_find_format(fmt); |
| 6601 | if (!drv) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 6602 | error_setg(errp, "Unknown file format '%s'", fmt); |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 6603 | return; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6604 | } |
| 6605 | |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 6606 | proto_drv = bdrv_find_protocol(filename, true, errp); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6607 | if (!proto_drv) { |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 6608 | return; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6609 | } |
| 6610 | |
Max Reitz | c614972 | 2014-12-02 18:32:45 +0100 | [diff] [blame] | 6611 | if (!drv->create_opts) { |
| 6612 | error_setg(errp, "Format driver '%s' does not support image creation", |
| 6613 | drv->format_name); |
| 6614 | return; |
| 6615 | } |
| 6616 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 6617 | if (!proto_drv->create_opts) { |
| 6618 | error_setg(errp, "Protocol driver '%s' does not support image creation", |
| 6619 | proto_drv->format_name); |
| 6620 | return; |
| 6621 | } |
| 6622 | |
Kevin Wolf | f6dc1c3 | 2019-11-26 16:45:49 +0100 | [diff] [blame] | 6623 | /* Create parameter list */ |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 6624 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 6625 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6626 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 6627 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6628 | |
| 6629 | /* Parse -o options */ |
| 6630 | if (options) { |
Markus Armbruster | a5f9b9d | 2020-07-07 18:06:05 +0200 | [diff] [blame] | 6631 | if (!qemu_opts_do_parse(opts, options, NULL, errp)) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6632 | goto out; |
| 6633 | } |
| 6634 | } |
| 6635 | |
Kevin Wolf | f6dc1c3 | 2019-11-26 16:45:49 +0100 | [diff] [blame] | 6636 | if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) { |
| 6637 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); |
| 6638 | } else if (img_size != UINT64_C(-1)) { |
| 6639 | error_setg(errp, "The image size must be specified only once"); |
| 6640 | goto out; |
| 6641 | } |
| 6642 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6643 | if (base_filename) { |
Markus Armbruster | 235e59c | 2020-07-07 18:05:42 +0200 | [diff] [blame] | 6644 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, |
Markus Armbruster | 3882578 | 2020-07-07 18:05:43 +0200 | [diff] [blame] | 6645 | NULL)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 6646 | error_setg(errp, "Backing file not supported for file format '%s'", |
| 6647 | fmt); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6648 | goto out; |
| 6649 | } |
| 6650 | } |
| 6651 | |
| 6652 | if (base_fmt) { |
Markus Armbruster | 3882578 | 2020-07-07 18:05:43 +0200 | [diff] [blame] | 6653 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 6654 | error_setg(errp, "Backing file format not supported for file " |
| 6655 | "format '%s'", fmt); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6656 | goto out; |
| 6657 | } |
| 6658 | } |
| 6659 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 6660 | backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); |
| 6661 | if (backing_file) { |
| 6662 | if (!strcmp(filename, backing_file)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 6663 | error_setg(errp, "Error: Trying to create an image with the " |
| 6664 | "same filename as the backing file"); |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 6665 | goto out; |
| 6666 | } |
Connor Kuehl | 975a7bd | 2020-08-13 08:47:22 -0500 | [diff] [blame] | 6667 | if (backing_file[0] == '\0') { |
| 6668 | error_setg(errp, "Expected backing file name, got empty string"); |
| 6669 | goto out; |
| 6670 | } |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 6671 | } |
| 6672 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 6673 | backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6674 | |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6675 | /* The size for the image must always be specified, unless we have a backing |
| 6676 | * file and we have not been forbidden from opening it. */ |
Eric Blake | a8b42a1 | 2017-09-25 09:55:07 -0500 | [diff] [blame] | 6677 | size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6678 | if (backing_file && !(flags & BDRV_O_NO_BACKING)) { |
| 6679 | BlockDriverState *bs; |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 6680 | char *full_backing; |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6681 | int back_flags; |
| 6682 | QDict *backing_options = NULL; |
Paolo Bonzini | 63090da | 2012-04-12 14:01:03 +0200 | [diff] [blame] | 6683 | |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 6684 | full_backing = |
| 6685 | bdrv_get_full_backing_filename_from_filename(filename, backing_file, |
| 6686 | &local_err); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6687 | if (local_err) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6688 | goto out; |
| 6689 | } |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 6690 | assert(full_backing); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6691 | |
Max Reitz | d5b2399 | 2021-06-22 16:00:30 +0200 | [diff] [blame] | 6692 | /* |
| 6693 | * No need to do I/O here, which allows us to open encrypted |
| 6694 | * backing images without needing the secret |
| 6695 | */ |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6696 | back_flags = flags; |
| 6697 | back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); |
Max Reitz | d5b2399 | 2021-06-22 16:00:30 +0200 | [diff] [blame] | 6698 | back_flags |= BDRV_O_NO_IO; |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6699 | |
Fam Zheng | cc954f0 | 2017-12-15 16:04:45 +0800 | [diff] [blame] | 6700 | backing_options = qdict_new(); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6701 | if (backing_fmt) { |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6702 | qdict_put_str(backing_options, "driver", backing_fmt); |
| 6703 | } |
Fam Zheng | cc954f0 | 2017-12-15 16:04:45 +0800 | [diff] [blame] | 6704 | qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6705 | |
| 6706 | bs = bdrv_open(full_backing, NULL, backing_options, back_flags, |
| 6707 | &local_err); |
| 6708 | g_free(full_backing); |
Eric Blake | add8200 | 2020-07-06 15:39:50 -0500 | [diff] [blame] | 6709 | if (!bs) { |
| 6710 | error_append_hint(&local_err, "Could not open backing image.\n"); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6711 | goto out; |
| 6712 | } else { |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 6713 | if (!backing_fmt) { |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 6714 | error_setg(&local_err, |
| 6715 | "Backing file specified without backing format"); |
| 6716 | error_append_hint(&local_err, "Detected format of %s.", |
| 6717 | bs->drv->format_name); |
| 6718 | goto out; |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 6719 | } |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6720 | if (size == -1) { |
| 6721 | /* Opened BS, have no size */ |
| 6722 | size = bdrv_getlength(bs); |
| 6723 | if (size < 0) { |
| 6724 | error_setg_errno(errp, -size, "Could not get size of '%s'", |
| 6725 | backing_file); |
| 6726 | bdrv_unref(bs); |
| 6727 | goto out; |
| 6728 | } |
| 6729 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); |
| 6730 | } |
| 6731 | bdrv_unref(bs); |
| 6732 | } |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 6733 | /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ |
| 6734 | } else if (backing_file && !backing_fmt) { |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 6735 | error_setg(&local_err, |
| 6736 | "Backing file specified without backing format"); |
| 6737 | goto out; |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 6738 | } |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 6739 | |
| 6740 | if (size == -1) { |
| 6741 | error_setg(errp, "Image creation needs a size parameter"); |
| 6742 | goto out; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6743 | } |
| 6744 | |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 6745 | if (!quiet) { |
Kővágó, Zoltán | fe64669 | 2015-07-07 16:42:10 +0200 | [diff] [blame] | 6746 | printf("Formatting '%s', fmt=%s ", filename, fmt); |
Fam Zheng | 43c5d8f | 2014-12-09 15:38:04 +0800 | [diff] [blame] | 6747 | qemu_opts_print(opts, " "); |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 6748 | puts(""); |
Eric Blake | 4e2f441 | 2020-07-06 15:39:45 -0500 | [diff] [blame] | 6749 | fflush(stdout); |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 6750 | } |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 6751 | |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 6752 | ret = bdrv_create(drv, filename, opts, &local_err); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 6753 | |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 6754 | if (ret == -EFBIG) { |
| 6755 | /* This is generally a better message than whatever the driver would |
| 6756 | * deliver (especially because of the cluster_size_hint), since that |
| 6757 | * is most probably not much different from "image too large". */ |
| 6758 | const char *cluster_size_hint = ""; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 6759 | if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 6760 | cluster_size_hint = " (try using a larger cluster size)"; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6761 | } |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 6762 | error_setg(errp, "The image size is too large for file format '%s'" |
| 6763 | "%s", fmt, cluster_size_hint); |
| 6764 | error_free(local_err); |
| 6765 | local_err = NULL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6766 | } |
| 6767 | |
| 6768 | out: |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 6769 | qemu_opts_del(opts); |
| 6770 | qemu_opts_free(create_opts); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 6771 | error_propagate(errp, local_err); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 6772 | } |
Stefan Hajnoczi | 85d126f | 2013-03-07 13:41:48 +0100 | [diff] [blame] | 6773 | |
| 6774 | AioContext *bdrv_get_aio_context(BlockDriverState *bs) |
| 6775 | { |
Stefan Hajnoczi | 33f2a75 | 2018-02-16 16:50:13 +0000 | [diff] [blame] | 6776 | return bs ? bs->aio_context : qemu_get_aio_context(); |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6777 | } |
| 6778 | |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 6779 | AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs) |
| 6780 | { |
| 6781 | Coroutine *self = qemu_coroutine_self(); |
| 6782 | AioContext *old_ctx = qemu_coroutine_get_aio_context(self); |
| 6783 | AioContext *new_ctx; |
| 6784 | |
| 6785 | /* |
| 6786 | * Increase bs->in_flight to ensure that this operation is completed before |
| 6787 | * moving the node to a different AioContext. Read new_ctx only afterwards. |
| 6788 | */ |
| 6789 | bdrv_inc_in_flight(bs); |
| 6790 | |
| 6791 | new_ctx = bdrv_get_aio_context(bs); |
| 6792 | aio_co_reschedule_self(new_ctx); |
| 6793 | return old_ctx; |
| 6794 | } |
| 6795 | |
| 6796 | void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx) |
| 6797 | { |
| 6798 | aio_co_reschedule_self(old_ctx); |
| 6799 | bdrv_dec_in_flight(bs); |
| 6800 | } |
| 6801 | |
Kevin Wolf | 18c6ac1 | 2020-10-05 17:58:54 +0200 | [diff] [blame] | 6802 | void coroutine_fn bdrv_co_lock(BlockDriverState *bs) |
| 6803 | { |
| 6804 | AioContext *ctx = bdrv_get_aio_context(bs); |
| 6805 | |
| 6806 | /* In the main thread, bs->aio_context won't change concurrently */ |
| 6807 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
| 6808 | |
| 6809 | /* |
| 6810 | * We're in coroutine context, so we already hold the lock of the main |
| 6811 | * loop AioContext. Don't lock it twice to avoid deadlocks. |
| 6812 | */ |
| 6813 | assert(qemu_in_coroutine()); |
| 6814 | if (ctx != qemu_get_aio_context()) { |
| 6815 | aio_context_acquire(ctx); |
| 6816 | } |
| 6817 | } |
| 6818 | |
| 6819 | void coroutine_fn bdrv_co_unlock(BlockDriverState *bs) |
| 6820 | { |
| 6821 | AioContext *ctx = bdrv_get_aio_context(bs); |
| 6822 | |
| 6823 | assert(qemu_in_coroutine()); |
| 6824 | if (ctx != qemu_get_aio_context()) { |
| 6825 | aio_context_release(ctx); |
| 6826 | } |
| 6827 | } |
| 6828 | |
Fam Zheng | 052a757 | 2017-04-10 20:09:25 +0800 | [diff] [blame] | 6829 | void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co) |
| 6830 | { |
| 6831 | aio_co_enter(bdrv_get_aio_context(bs), co); |
| 6832 | } |
| 6833 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 6834 | static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) |
| 6835 | { |
| 6836 | QLIST_REMOVE(ban, list); |
| 6837 | g_free(ban); |
| 6838 | } |
| 6839 | |
Kevin Wolf | a3a683c | 2019-05-06 19:17:57 +0200 | [diff] [blame] | 6840 | static void bdrv_detach_aio_context(BlockDriverState *bs) |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6841 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 6842 | BdrvAioNotifier *baf, *baf_tmp; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 6843 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 6844 | assert(!bs->walking_aio_notifiers); |
| 6845 | bs->walking_aio_notifiers = true; |
| 6846 | QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { |
| 6847 | if (baf->deleted) { |
| 6848 | bdrv_do_remove_aio_context_notifier(baf); |
| 6849 | } else { |
| 6850 | baf->detach_aio_context(baf->opaque); |
| 6851 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 6852 | } |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 6853 | /* Never mind iterating again to check for ->deleted. bdrv_close() will |
| 6854 | * remove remaining aio notifiers if we aren't called again. |
| 6855 | */ |
| 6856 | bs->walking_aio_notifiers = false; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 6857 | |
Kevin Wolf | 1bffe1a | 2019-04-17 17:15:25 +0200 | [diff] [blame] | 6858 | if (bs->drv && bs->drv->bdrv_detach_aio_context) { |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6859 | bs->drv->bdrv_detach_aio_context(bs); |
| 6860 | } |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6861 | |
Kevin Wolf | e64f25f | 2019-02-08 16:51:17 +0100 | [diff] [blame] | 6862 | if (bs->quiesce_counter) { |
| 6863 | aio_enable_external(bs->aio_context); |
| 6864 | } |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6865 | bs->aio_context = NULL; |
| 6866 | } |
| 6867 | |
Kevin Wolf | a3a683c | 2019-05-06 19:17:57 +0200 | [diff] [blame] | 6868 | static void bdrv_attach_aio_context(BlockDriverState *bs, |
| 6869 | AioContext *new_context) |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6870 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 6871 | BdrvAioNotifier *ban, *ban_tmp; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 6872 | |
Kevin Wolf | e64f25f | 2019-02-08 16:51:17 +0100 | [diff] [blame] | 6873 | if (bs->quiesce_counter) { |
| 6874 | aio_disable_external(new_context); |
| 6875 | } |
| 6876 | |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6877 | bs->aio_context = new_context; |
| 6878 | |
Kevin Wolf | 1bffe1a | 2019-04-17 17:15:25 +0200 | [diff] [blame] | 6879 | if (bs->drv && bs->drv->bdrv_attach_aio_context) { |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6880 | bs->drv->bdrv_attach_aio_context(bs, new_context); |
| 6881 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 6882 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 6883 | assert(!bs->walking_aio_notifiers); |
| 6884 | bs->walking_aio_notifiers = true; |
| 6885 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { |
| 6886 | if (ban->deleted) { |
| 6887 | bdrv_do_remove_aio_context_notifier(ban); |
| 6888 | } else { |
| 6889 | ban->attached_aio_context(new_context, ban->opaque); |
| 6890 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 6891 | } |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 6892 | bs->walking_aio_notifiers = false; |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6893 | } |
| 6894 | |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 6895 | /* |
| 6896 | * Changes the AioContext used for fd handlers, timers, and BHs by this |
| 6897 | * BlockDriverState and all its children and parents. |
| 6898 | * |
Max Reitz | 43eaaae | 2019-07-22 15:30:54 +0200 | [diff] [blame] | 6899 | * Must be called from the main AioContext. |
| 6900 | * |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 6901 | * The caller must own the AioContext lock for the old AioContext of bs, but it |
| 6902 | * must not own the AioContext lock for new_context (unless new_context is the |
| 6903 | * same as the current context of bs). |
| 6904 | * |
| 6905 | * @ignore will accumulate all visited BdrvChild object. The caller is |
| 6906 | * responsible for freeing the list afterwards. |
| 6907 | */ |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 6908 | void bdrv_set_aio_context_ignore(BlockDriverState *bs, |
| 6909 | AioContext *new_context, GSList **ignore) |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6910 | { |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 6911 | AioContext *old_context = bdrv_get_aio_context(bs); |
Sergio Lopez | 722d8e7 | 2021-02-01 13:50:31 +0100 | [diff] [blame] | 6912 | GSList *children_to_process = NULL; |
| 6913 | GSList *parents_to_process = NULL; |
| 6914 | GSList *entry; |
| 6915 | BdrvChild *child, *parent; |
Kevin Wolf | 0d83708 | 2019-05-06 19:17:58 +0200 | [diff] [blame] | 6916 | |
Max Reitz | 43eaaae | 2019-07-22 15:30:54 +0200 | [diff] [blame] | 6917 | g_assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
| 6918 | |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 6919 | if (old_context == new_context) { |
Denis Plotnikov | 57830a4 | 2019-02-15 16:03:25 +0300 | [diff] [blame] | 6920 | return; |
| 6921 | } |
| 6922 | |
Kevin Wolf | d70d595 | 2019-02-08 16:53:37 +0100 | [diff] [blame] | 6923 | bdrv_drained_begin(bs); |
Kevin Wolf | 0d83708 | 2019-05-06 19:17:58 +0200 | [diff] [blame] | 6924 | |
| 6925 | QLIST_FOREACH(child, &bs->children, next) { |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 6926 | if (g_slist_find(*ignore, child)) { |
| 6927 | continue; |
| 6928 | } |
| 6929 | *ignore = g_slist_prepend(*ignore, child); |
Sergio Lopez | 722d8e7 | 2021-02-01 13:50:31 +0100 | [diff] [blame] | 6930 | children_to_process = g_slist_prepend(children_to_process, child); |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 6931 | } |
Sergio Lopez | 722d8e7 | 2021-02-01 13:50:31 +0100 | [diff] [blame] | 6932 | |
| 6933 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
| 6934 | if (g_slist_find(*ignore, parent)) { |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 6935 | continue; |
| 6936 | } |
Sergio Lopez | 722d8e7 | 2021-02-01 13:50:31 +0100 | [diff] [blame] | 6937 | *ignore = g_slist_prepend(*ignore, parent); |
| 6938 | parents_to_process = g_slist_prepend(parents_to_process, parent); |
Kevin Wolf | 0d83708 | 2019-05-06 19:17:58 +0200 | [diff] [blame] | 6939 | } |
| 6940 | |
Sergio Lopez | 722d8e7 | 2021-02-01 13:50:31 +0100 | [diff] [blame] | 6941 | for (entry = children_to_process; |
| 6942 | entry != NULL; |
| 6943 | entry = g_slist_next(entry)) { |
| 6944 | child = entry->data; |
| 6945 | bdrv_set_aio_context_ignore(child->bs, new_context, ignore); |
| 6946 | } |
| 6947 | g_slist_free(children_to_process); |
| 6948 | |
| 6949 | for (entry = parents_to_process; |
| 6950 | entry != NULL; |
| 6951 | entry = g_slist_next(entry)) { |
| 6952 | parent = entry->data; |
| 6953 | assert(parent->klass->set_aio_ctx); |
| 6954 | parent->klass->set_aio_ctx(parent, new_context, ignore); |
| 6955 | } |
| 6956 | g_slist_free(parents_to_process); |
| 6957 | |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6958 | bdrv_detach_aio_context(bs); |
| 6959 | |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 6960 | /* Acquire the new context, if necessary */ |
Max Reitz | 43eaaae | 2019-07-22 15:30:54 +0200 | [diff] [blame] | 6961 | if (qemu_get_aio_context() != new_context) { |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 6962 | aio_context_acquire(new_context); |
| 6963 | } |
| 6964 | |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 6965 | bdrv_attach_aio_context(bs, new_context); |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 6966 | |
| 6967 | /* |
| 6968 | * If this function was recursively called from |
| 6969 | * bdrv_set_aio_context_ignore(), there may be nodes in the |
| 6970 | * subtree that have not yet been moved to the new AioContext. |
| 6971 | * Release the old one so bdrv_drained_end() can poll them. |
| 6972 | */ |
Max Reitz | 43eaaae | 2019-07-22 15:30:54 +0200 | [diff] [blame] | 6973 | if (qemu_get_aio_context() != old_context) { |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 6974 | aio_context_release(old_context); |
| 6975 | } |
| 6976 | |
Kevin Wolf | d70d595 | 2019-02-08 16:53:37 +0100 | [diff] [blame] | 6977 | bdrv_drained_end(bs); |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 6978 | |
Max Reitz | 43eaaae | 2019-07-22 15:30:54 +0200 | [diff] [blame] | 6979 | if (qemu_get_aio_context() != old_context) { |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 6980 | aio_context_acquire(old_context); |
| 6981 | } |
Max Reitz | 43eaaae | 2019-07-22 15:30:54 +0200 | [diff] [blame] | 6982 | if (qemu_get_aio_context() != new_context) { |
Max Reitz | e037c09 | 2019-07-19 11:26:14 +0200 | [diff] [blame] | 6983 | aio_context_release(new_context); |
| 6984 | } |
Stefan Hajnoczi | 85d126f | 2013-03-07 13:41:48 +0100 | [diff] [blame] | 6985 | } |
Stefan Hajnoczi | d616b22 | 2013-06-24 17:13:10 +0200 | [diff] [blame] | 6986 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 6987 | static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx, |
| 6988 | GSList **ignore, Error **errp) |
| 6989 | { |
| 6990 | if (g_slist_find(*ignore, c)) { |
| 6991 | return true; |
| 6992 | } |
| 6993 | *ignore = g_slist_prepend(*ignore, c); |
| 6994 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6995 | /* |
| 6996 | * A BdrvChildClass that doesn't handle AioContext changes cannot |
| 6997 | * tolerate any AioContext changes |
| 6998 | */ |
| 6999 | if (!c->klass->can_set_aio_ctx) { |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7000 | char *user = bdrv_child_user_desc(c); |
| 7001 | error_setg(errp, "Changing iothreads is not supported by %s", user); |
| 7002 | g_free(user); |
| 7003 | return false; |
| 7004 | } |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 7005 | if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) { |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7006 | assert(!errp || *errp); |
| 7007 | return false; |
| 7008 | } |
| 7009 | return true; |
| 7010 | } |
| 7011 | |
| 7012 | bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx, |
| 7013 | GSList **ignore, Error **errp) |
| 7014 | { |
| 7015 | if (g_slist_find(*ignore, c)) { |
| 7016 | return true; |
| 7017 | } |
| 7018 | *ignore = g_slist_prepend(*ignore, c); |
| 7019 | return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp); |
| 7020 | } |
| 7021 | |
| 7022 | /* @ignore will accumulate all visited BdrvChild object. The caller is |
| 7023 | * responsible for freeing the list afterwards. */ |
| 7024 | bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx, |
| 7025 | GSList **ignore, Error **errp) |
| 7026 | { |
| 7027 | BdrvChild *c; |
| 7028 | |
| 7029 | if (bdrv_get_aio_context(bs) == ctx) { |
| 7030 | return true; |
| 7031 | } |
| 7032 | |
| 7033 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
| 7034 | if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) { |
| 7035 | return false; |
| 7036 | } |
| 7037 | } |
| 7038 | QLIST_FOREACH(c, &bs->children, next) { |
| 7039 | if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) { |
| 7040 | return false; |
| 7041 | } |
| 7042 | } |
| 7043 | |
| 7044 | return true; |
| 7045 | } |
| 7046 | |
| 7047 | int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx, |
| 7048 | BdrvChild *ignore_child, Error **errp) |
| 7049 | { |
| 7050 | GSList *ignore; |
| 7051 | bool ret; |
| 7052 | |
| 7053 | ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL; |
| 7054 | ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp); |
| 7055 | g_slist_free(ignore); |
| 7056 | |
| 7057 | if (!ret) { |
| 7058 | return -EPERM; |
| 7059 | } |
| 7060 | |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 7061 | ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL; |
| 7062 | bdrv_set_aio_context_ignore(bs, ctx, &ignore); |
| 7063 | g_slist_free(ignore); |
| 7064 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7065 | return 0; |
| 7066 | } |
| 7067 | |
| 7068 | int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx, |
| 7069 | Error **errp) |
| 7070 | { |
| 7071 | return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp); |
| 7072 | } |
| 7073 | |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7074 | void bdrv_add_aio_context_notifier(BlockDriverState *bs, |
| 7075 | void (*attached_aio_context)(AioContext *new_context, void *opaque), |
| 7076 | void (*detach_aio_context)(void *opaque), void *opaque) |
| 7077 | { |
| 7078 | BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); |
| 7079 | *ban = (BdrvAioNotifier){ |
| 7080 | .attached_aio_context = attached_aio_context, |
| 7081 | .detach_aio_context = detach_aio_context, |
| 7082 | .opaque = opaque |
| 7083 | }; |
| 7084 | |
| 7085 | QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); |
| 7086 | } |
| 7087 | |
| 7088 | void bdrv_remove_aio_context_notifier(BlockDriverState *bs, |
| 7089 | void (*attached_aio_context)(AioContext *, |
| 7090 | void *), |
| 7091 | void (*detach_aio_context)(void *), |
| 7092 | void *opaque) |
| 7093 | { |
| 7094 | BdrvAioNotifier *ban, *ban_next; |
| 7095 | |
| 7096 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
| 7097 | if (ban->attached_aio_context == attached_aio_context && |
| 7098 | ban->detach_aio_context == detach_aio_context && |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7099 | ban->opaque == opaque && |
| 7100 | ban->deleted == false) |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7101 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7102 | if (bs->walking_aio_notifiers) { |
| 7103 | ban->deleted = true; |
| 7104 | } else { |
| 7105 | bdrv_do_remove_aio_context_notifier(ban); |
| 7106 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7107 | return; |
| 7108 | } |
| 7109 | } |
| 7110 | |
| 7111 | abort(); |
| 7112 | } |
| 7113 | |
Max Reitz | 7748543 | 2014-10-27 11:12:50 +0100 | [diff] [blame] | 7114 | int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7115 | BlockDriverAmendStatusCB *status_cb, void *cb_opaque, |
Maxim Levitsky | a3579bf | 2020-06-25 14:55:38 +0200 | [diff] [blame] | 7116 | bool force, |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7117 | Error **errp) |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7118 | { |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 7119 | if (!bs->drv) { |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7120 | error_setg(errp, "Node is ejected"); |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 7121 | return -ENOMEDIUM; |
| 7122 | } |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7123 | if (!bs->drv->bdrv_amend_options) { |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7124 | error_setg(errp, "Block driver '%s' does not support option amendment", |
| 7125 | bs->drv->format_name); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7126 | return -ENOTSUP; |
| 7127 | } |
Maxim Levitsky | a3579bf | 2020-06-25 14:55:38 +0200 | [diff] [blame] | 7128 | return bs->drv->bdrv_amend_options(bs, opts, status_cb, |
| 7129 | cb_opaque, force, errp); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7130 | } |
Benoît Canet | f6186f4 | 2013-10-02 14:33:48 +0200 | [diff] [blame] | 7131 | |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7132 | /* |
| 7133 | * This function checks whether the given @to_replace is allowed to be |
| 7134 | * replaced by a node that always shows the same data as @bs. This is |
| 7135 | * used for example to verify whether the mirror job can replace |
| 7136 | * @to_replace by the target mirrored from @bs. |
| 7137 | * To be replaceable, @bs and @to_replace may either be guaranteed to |
| 7138 | * always show the same data (because they are only connected through |
| 7139 | * filters), or some driver may allow replacing one of its children |
| 7140 | * because it can guarantee that this child's data is not visible at |
| 7141 | * all (for example, for dissenting quorum children that have no other |
| 7142 | * parents). |
| 7143 | */ |
| 7144 | bool bdrv_recurse_can_replace(BlockDriverState *bs, |
| 7145 | BlockDriverState *to_replace) |
| 7146 | { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 7147 | BlockDriverState *filtered; |
| 7148 | |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7149 | if (!bs || !bs->drv) { |
| 7150 | return false; |
| 7151 | } |
| 7152 | |
| 7153 | if (bs == to_replace) { |
| 7154 | return true; |
| 7155 | } |
| 7156 | |
| 7157 | /* See what the driver can do */ |
| 7158 | if (bs->drv->bdrv_recurse_can_replace) { |
| 7159 | return bs->drv->bdrv_recurse_can_replace(bs, to_replace); |
| 7160 | } |
| 7161 | |
| 7162 | /* For filters without an own implementation, we can recurse on our own */ |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 7163 | filtered = bdrv_filter_bs(bs); |
| 7164 | if (filtered) { |
| 7165 | return bdrv_recurse_can_replace(filtered, to_replace); |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7166 | } |
| 7167 | |
| 7168 | /* Safe default */ |
| 7169 | return false; |
| 7170 | } |
| 7171 | |
Max Reitz | 810803a | 2020-02-18 11:34:44 +0100 | [diff] [blame] | 7172 | /* |
| 7173 | * Check whether the given @node_name can be replaced by a node that |
| 7174 | * has the same data as @parent_bs. If so, return @node_name's BDS; |
| 7175 | * NULL otherwise. |
| 7176 | * |
| 7177 | * @node_name must be a (recursive) *child of @parent_bs (or this |
| 7178 | * function will return NULL). |
| 7179 | * |
| 7180 | * The result (whether the node can be replaced or not) is only valid |
| 7181 | * for as long as no graph or permission changes occur. |
| 7182 | */ |
Wen Congyang | e12f378 | 2015-07-17 10:12:22 +0800 | [diff] [blame] | 7183 | BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, |
| 7184 | const char *node_name, Error **errp) |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7185 | { |
| 7186 | BlockDriverState *to_replace_bs = bdrv_find_node(node_name); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7187 | AioContext *aio_context; |
| 7188 | |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7189 | if (!to_replace_bs) { |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 7190 | error_setg(errp, "Failed to find node with node-name='%s'", node_name); |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7191 | return NULL; |
| 7192 | } |
| 7193 | |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7194 | aio_context = bdrv_get_aio_context(to_replace_bs); |
| 7195 | aio_context_acquire(aio_context); |
| 7196 | |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7197 | 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] | 7198 | to_replace_bs = NULL; |
| 7199 | goto out; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7200 | } |
| 7201 | |
| 7202 | /* We don't want arbitrary node of the BDS chain to be replaced only the top |
| 7203 | * most non filter in order to prevent data corruption. |
| 7204 | * Another benefit is that this tests exclude backing files which are |
| 7205 | * blocked by the backing blockers. |
| 7206 | */ |
Max Reitz | 810803a | 2020-02-18 11:34:44 +0100 | [diff] [blame] | 7207 | if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) { |
| 7208 | error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', " |
| 7209 | "because it cannot be guaranteed that doing so would not " |
| 7210 | "lead to an abrupt change of visible data", |
| 7211 | node_name, parent_bs->node_name); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7212 | to_replace_bs = NULL; |
| 7213 | goto out; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7214 | } |
| 7215 | |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7216 | out: |
| 7217 | aio_context_release(aio_context); |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7218 | return to_replace_bs; |
| 7219 | } |
Ming Lei | 448ad91 | 2014-07-04 18:04:33 +0800 | [diff] [blame] | 7220 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7221 | /** |
| 7222 | * Iterates through the list of runtime option keys that are said to |
| 7223 | * be "strong" for a BDS. An option is called "strong" if it changes |
| 7224 | * a BDS's data. For example, the null block driver's "size" and |
| 7225 | * "read-zeroes" options are strong, but its "latency-ns" option is |
| 7226 | * not. |
| 7227 | * |
| 7228 | * If a key returned by this function ends with a dot, all options |
| 7229 | * starting with that prefix are strong. |
| 7230 | */ |
| 7231 | static const char *const *strong_options(BlockDriverState *bs, |
| 7232 | const char *const *curopt) |
| 7233 | { |
| 7234 | static const char *const global_options[] = { |
| 7235 | "driver", "filename", NULL |
| 7236 | }; |
| 7237 | |
| 7238 | if (!curopt) { |
| 7239 | return &global_options[0]; |
| 7240 | } |
| 7241 | |
| 7242 | curopt++; |
| 7243 | if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) { |
| 7244 | curopt = bs->drv->strong_runtime_opts; |
| 7245 | } |
| 7246 | |
| 7247 | return (curopt && *curopt) ? curopt : NULL; |
| 7248 | } |
| 7249 | |
| 7250 | /** |
| 7251 | * Copies all strong runtime options from bs->options to the given |
| 7252 | * QDict. The set of strong option keys is determined by invoking |
| 7253 | * strong_options(). |
| 7254 | * |
| 7255 | * Returns true iff any strong option was present in bs->options (and |
| 7256 | * thus copied to the target QDict) with the exception of "filename" |
| 7257 | * and "driver". The caller is expected to use this value to decide |
| 7258 | * whether the existence of strong options prevents the generation of |
| 7259 | * a plain filename. |
| 7260 | */ |
| 7261 | static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs) |
| 7262 | { |
| 7263 | bool found_any = false; |
| 7264 | const char *const *option_name = NULL; |
| 7265 | |
| 7266 | if (!bs->drv) { |
| 7267 | return false; |
| 7268 | } |
| 7269 | |
| 7270 | while ((option_name = strong_options(bs, option_name))) { |
| 7271 | bool option_given = false; |
| 7272 | |
| 7273 | assert(strlen(*option_name) > 0); |
| 7274 | if ((*option_name)[strlen(*option_name) - 1] != '.') { |
| 7275 | QObject *entry = qdict_get(bs->options, *option_name); |
| 7276 | if (!entry) { |
| 7277 | continue; |
| 7278 | } |
| 7279 | |
| 7280 | qdict_put_obj(d, *option_name, qobject_ref(entry)); |
| 7281 | option_given = true; |
| 7282 | } else { |
| 7283 | const QDictEntry *entry; |
| 7284 | for (entry = qdict_first(bs->options); entry; |
| 7285 | entry = qdict_next(bs->options, entry)) |
| 7286 | { |
| 7287 | if (strstart(qdict_entry_key(entry), *option_name, NULL)) { |
| 7288 | qdict_put_obj(d, qdict_entry_key(entry), |
| 7289 | qobject_ref(qdict_entry_value(entry))); |
| 7290 | option_given = true; |
| 7291 | } |
| 7292 | } |
| 7293 | } |
| 7294 | |
| 7295 | /* While "driver" and "filename" need to be included in a JSON filename, |
| 7296 | * their existence does not prohibit generation of a plain filename. */ |
| 7297 | if (!found_any && option_given && |
| 7298 | strcmp(*option_name, "driver") && strcmp(*option_name, "filename")) |
| 7299 | { |
| 7300 | found_any = true; |
| 7301 | } |
| 7302 | } |
| 7303 | |
Max Reitz | 62a01a27 | 2019-02-01 20:29:34 +0100 | [diff] [blame] | 7304 | if (!qdict_haskey(d, "driver")) { |
| 7305 | /* Drivers created with bdrv_new_open_driver() may not have a |
| 7306 | * @driver option. Add it here. */ |
| 7307 | qdict_put_str(d, "driver", bs->drv->format_name); |
| 7308 | } |
| 7309 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7310 | return found_any; |
| 7311 | } |
| 7312 | |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7313 | /* Note: This function may return false positives; it may return true |
| 7314 | * even if opening the backing file specified by bs's image header |
| 7315 | * would result in exactly bs->backing. */ |
Max Reitz | 0b877d0 | 2018-08-01 20:34:11 +0200 | [diff] [blame] | 7316 | bool bdrv_backing_overridden(BlockDriverState *bs) |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7317 | { |
| 7318 | if (bs->backing) { |
| 7319 | return strcmp(bs->auto_backing_file, |
| 7320 | bs->backing->bs->filename); |
| 7321 | } else { |
| 7322 | /* No backing BDS, so if the image header reports any backing |
| 7323 | * file, it must have been suppressed */ |
| 7324 | return bs->auto_backing_file[0] != '\0'; |
| 7325 | } |
| 7326 | } |
| 7327 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7328 | /* Updates the following BDS fields: |
| 7329 | * - exact_filename: A filename which may be used for opening a block device |
| 7330 | * which (mostly) equals the given BDS (even without any |
| 7331 | * other options; so reading and writing must return the same |
| 7332 | * results, but caching etc. may be different) |
| 7333 | * - full_open_options: Options which, when given when opening a block device |
| 7334 | * (without a filename), result in a BDS (mostly) |
| 7335 | * equalling the given one |
| 7336 | * - filename: If exact_filename is set, it is copied here. Otherwise, |
| 7337 | * full_open_options is converted to a JSON object, prefixed with |
| 7338 | * "json:" (for use through the JSON pseudo protocol) and put here. |
| 7339 | */ |
| 7340 | void bdrv_refresh_filename(BlockDriverState *bs) |
| 7341 | { |
| 7342 | BlockDriver *drv = bs->drv; |
Max Reitz | e24518e | 2019-02-01 20:29:06 +0100 | [diff] [blame] | 7343 | BdrvChild *child; |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7344 | BlockDriverState *primary_child_bs; |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7345 | QDict *opts; |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7346 | bool backing_overridden; |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7347 | bool generate_json_filename; /* Whether our default implementation should |
| 7348 | fill exact_filename (false) or not (true) */ |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7349 | |
| 7350 | if (!drv) { |
| 7351 | return; |
| 7352 | } |
| 7353 | |
Max Reitz | e24518e | 2019-02-01 20:29:06 +0100 | [diff] [blame] | 7354 | /* This BDS's file name may depend on any of its children's file names, so |
| 7355 | * refresh those first */ |
| 7356 | QLIST_FOREACH(child, &bs->children, next) { |
| 7357 | bdrv_refresh_filename(child->bs); |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7358 | } |
| 7359 | |
Max Reitz | bb808d5 | 2019-02-01 20:29:07 +0100 | [diff] [blame] | 7360 | if (bs->implicit) { |
| 7361 | /* For implicit nodes, just copy everything from the single child */ |
| 7362 | child = QLIST_FIRST(&bs->children); |
| 7363 | assert(QLIST_NEXT(child, next) == NULL); |
| 7364 | |
| 7365 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), |
| 7366 | child->bs->exact_filename); |
| 7367 | pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename); |
| 7368 | |
Pan Nengyuan | cb89561 | 2020-01-16 16:56:00 +0800 | [diff] [blame] | 7369 | qobject_unref(bs->full_open_options); |
Max Reitz | bb808d5 | 2019-02-01 20:29:07 +0100 | [diff] [blame] | 7370 | bs->full_open_options = qobject_ref(child->bs->full_open_options); |
| 7371 | |
| 7372 | return; |
| 7373 | } |
| 7374 | |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7375 | backing_overridden = bdrv_backing_overridden(bs); |
| 7376 | |
| 7377 | if (bs->open_flags & BDRV_O_NO_IO) { |
| 7378 | /* Without I/O, the backing file does not change anything. |
| 7379 | * Therefore, in such a case (primarily qemu-img), we can |
| 7380 | * pretend the backing file has not been overridden even if |
| 7381 | * it technically has been. */ |
| 7382 | backing_overridden = false; |
| 7383 | } |
| 7384 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7385 | /* Gather the options QDict */ |
| 7386 | opts = qdict_new(); |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7387 | generate_json_filename = append_strong_runtime_options(opts, bs); |
| 7388 | generate_json_filename |= backing_overridden; |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7389 | |
| 7390 | if (drv->bdrv_gather_child_options) { |
| 7391 | /* Some block drivers may not want to present all of their children's |
| 7392 | * options, or name them differently from BdrvChild.name */ |
| 7393 | drv->bdrv_gather_child_options(bs, opts, backing_overridden); |
| 7394 | } else { |
| 7395 | QLIST_FOREACH(child, &bs->children, next) { |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 7396 | if (child == bs->backing && !backing_overridden) { |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7397 | /* We can skip the backing BDS if it has not been overridden */ |
| 7398 | continue; |
| 7399 | } |
| 7400 | |
| 7401 | qdict_put(opts, child->name, |
| 7402 | qobject_ref(child->bs->full_open_options)); |
| 7403 | } |
| 7404 | |
| 7405 | if (backing_overridden && !bs->backing) { |
| 7406 | /* Force no backing file */ |
| 7407 | qdict_put_null(opts, "backing"); |
| 7408 | } |
| 7409 | } |
| 7410 | |
| 7411 | qobject_unref(bs->full_open_options); |
| 7412 | bs->full_open_options = opts; |
| 7413 | |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7414 | primary_child_bs = bdrv_primary_bs(bs); |
| 7415 | |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7416 | if (drv->bdrv_refresh_filename) { |
| 7417 | /* Obsolete information is of no use here, so drop the old file name |
| 7418 | * information before refreshing it */ |
| 7419 | bs->exact_filename[0] = '\0'; |
| 7420 | |
| 7421 | drv->bdrv_refresh_filename(bs); |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7422 | } else if (primary_child_bs) { |
| 7423 | /* |
| 7424 | * Try to reconstruct valid information from the underlying |
| 7425 | * file -- this only works for format nodes (filter nodes |
| 7426 | * cannot be probed and as such must be selected by the user |
| 7427 | * either through an options dict, or through a special |
| 7428 | * filename which the filter driver must construct in its |
| 7429 | * .bdrv_refresh_filename() implementation). |
| 7430 | */ |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7431 | |
| 7432 | bs->exact_filename[0] = '\0'; |
| 7433 | |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 7434 | /* |
| 7435 | * We can use the underlying file's filename if: |
| 7436 | * - it has a filename, |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7437 | * - the current BDS is not a filter, |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 7438 | * - the file is a protocol BDS, and |
| 7439 | * - opening that file (as this BDS's format) will automatically create |
| 7440 | * the BDS tree we have right now, that is: |
| 7441 | * - the user did not significantly change this BDS's behavior with |
| 7442 | * some explicit (strong) options |
| 7443 | * - no non-file child of this BDS has been overridden by the user |
| 7444 | * Both of these conditions are represented by generate_json_filename. |
| 7445 | */ |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7446 | if (primary_child_bs->exact_filename[0] && |
| 7447 | primary_child_bs->drv->bdrv_file_open && |
| 7448 | !drv->is_filter && !generate_json_filename) |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 7449 | { |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7450 | strcpy(bs->exact_filename, primary_child_bs->exact_filename); |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7451 | } |
| 7452 | } |
| 7453 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7454 | if (bs->exact_filename[0]) { |
| 7455 | pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7456 | } else { |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 7457 | GString *json = qobject_to_json(QOBJECT(bs->full_open_options)); |
Eric Blake | 5c86bdf | 2020-06-08 13:26:38 -0500 | [diff] [blame] | 7458 | if (snprintf(bs->filename, sizeof(bs->filename), "json:%s", |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 7459 | json->str) >= sizeof(bs->filename)) { |
Eric Blake | 5c86bdf | 2020-06-08 13:26:38 -0500 | [diff] [blame] | 7460 | /* Give user a hint if we truncated things. */ |
| 7461 | strcpy(bs->filename + sizeof(bs->filename) - 4, "..."); |
| 7462 | } |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 7463 | g_string_free(json, true); |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7464 | } |
| 7465 | } |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 7466 | |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 7467 | char *bdrv_dirname(BlockDriverState *bs, Error **errp) |
| 7468 | { |
| 7469 | BlockDriver *drv = bs->drv; |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7470 | BlockDriverState *child_bs; |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 7471 | |
| 7472 | if (!drv) { |
| 7473 | error_setg(errp, "Node '%s' is ejected", bs->node_name); |
| 7474 | return NULL; |
| 7475 | } |
| 7476 | |
| 7477 | if (drv->bdrv_dirname) { |
| 7478 | return drv->bdrv_dirname(bs, errp); |
| 7479 | } |
| 7480 | |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7481 | child_bs = bdrv_primary_bs(bs); |
| 7482 | if (child_bs) { |
| 7483 | return bdrv_dirname(child_bs, errp); |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 7484 | } |
| 7485 | |
| 7486 | bdrv_refresh_filename(bs); |
| 7487 | if (bs->exact_filename[0] != '\0') { |
| 7488 | return path_combine(bs->exact_filename, ""); |
| 7489 | } |
| 7490 | |
| 7491 | error_setg(errp, "Cannot generate a base directory for %s nodes", |
| 7492 | drv->format_name); |
| 7493 | return NULL; |
| 7494 | } |
| 7495 | |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 7496 | /* |
| 7497 | * Hot add/remove a BDS's child. So the user can take a child offline when |
| 7498 | * it is broken and take a new child online |
| 7499 | */ |
| 7500 | void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, |
| 7501 | Error **errp) |
| 7502 | { |
| 7503 | |
| 7504 | if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { |
| 7505 | error_setg(errp, "The node %s does not support adding a child", |
| 7506 | bdrv_get_device_or_node_name(parent_bs)); |
| 7507 | return; |
| 7508 | } |
| 7509 | |
| 7510 | if (!QLIST_EMPTY(&child_bs->parents)) { |
| 7511 | error_setg(errp, "The node %s already has a parent", |
| 7512 | child_bs->node_name); |
| 7513 | return; |
| 7514 | } |
| 7515 | |
| 7516 | parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); |
| 7517 | } |
| 7518 | |
| 7519 | void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) |
| 7520 | { |
| 7521 | BdrvChild *tmp; |
| 7522 | |
| 7523 | if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { |
| 7524 | error_setg(errp, "The node %s does not support removing a child", |
| 7525 | bdrv_get_device_or_node_name(parent_bs)); |
| 7526 | return; |
| 7527 | } |
| 7528 | |
| 7529 | QLIST_FOREACH(tmp, &parent_bs->children, next) { |
| 7530 | if (tmp == child) { |
| 7531 | break; |
| 7532 | } |
| 7533 | } |
| 7534 | |
| 7535 | if (!tmp) { |
| 7536 | error_setg(errp, "The node %s does not have a child named %s", |
| 7537 | bdrv_get_device_or_node_name(parent_bs), |
| 7538 | bdrv_get_device_or_node_name(child->bs)); |
| 7539 | return; |
| 7540 | } |
| 7541 | |
| 7542 | parent_bs->drv->bdrv_del_child(parent_bs, child, errp); |
| 7543 | } |
Max Reitz | 6f7a3b5 | 2020-04-29 16:11:23 +0200 | [diff] [blame] | 7544 | |
| 7545 | int bdrv_make_empty(BdrvChild *c, Error **errp) |
| 7546 | { |
| 7547 | BlockDriver *drv = c->bs->drv; |
| 7548 | int ret; |
| 7549 | |
| 7550 | assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)); |
| 7551 | |
| 7552 | if (!drv->bdrv_make_empty) { |
| 7553 | error_setg(errp, "%s does not support emptying nodes", |
| 7554 | drv->format_name); |
| 7555 | return -ENOTSUP; |
| 7556 | } |
| 7557 | |
| 7558 | ret = drv->bdrv_make_empty(c->bs); |
| 7559 | if (ret < 0) { |
| 7560 | error_setg_errno(errp, -ret, "Failed to empty %s", |
| 7561 | c->bs->filename); |
| 7562 | return ret; |
| 7563 | } |
| 7564 | |
| 7565 | return 0; |
| 7566 | } |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 7567 | |
| 7568 | /* |
| 7569 | * Return the child that @bs acts as an overlay for, and from which data may be |
| 7570 | * copied in COW or COR operations. Usually this is the backing file. |
| 7571 | */ |
| 7572 | BdrvChild *bdrv_cow_child(BlockDriverState *bs) |
| 7573 | { |
| 7574 | if (!bs || !bs->drv) { |
| 7575 | return NULL; |
| 7576 | } |
| 7577 | |
| 7578 | if (bs->drv->is_filter) { |
| 7579 | return NULL; |
| 7580 | } |
| 7581 | |
| 7582 | if (!bs->backing) { |
| 7583 | return NULL; |
| 7584 | } |
| 7585 | |
| 7586 | assert(bs->backing->role & BDRV_CHILD_COW); |
| 7587 | return bs->backing; |
| 7588 | } |
| 7589 | |
| 7590 | /* |
| 7591 | * If @bs acts as a filter for exactly one of its children, return |
| 7592 | * that child. |
| 7593 | */ |
| 7594 | BdrvChild *bdrv_filter_child(BlockDriverState *bs) |
| 7595 | { |
| 7596 | BdrvChild *c; |
| 7597 | |
| 7598 | if (!bs || !bs->drv) { |
| 7599 | return NULL; |
| 7600 | } |
| 7601 | |
| 7602 | if (!bs->drv->is_filter) { |
| 7603 | return NULL; |
| 7604 | } |
| 7605 | |
| 7606 | /* Only one of @backing or @file may be used */ |
| 7607 | assert(!(bs->backing && bs->file)); |
| 7608 | |
| 7609 | c = bs->backing ?: bs->file; |
| 7610 | if (!c) { |
| 7611 | return NULL; |
| 7612 | } |
| 7613 | |
| 7614 | assert(c->role & BDRV_CHILD_FILTERED); |
| 7615 | return c; |
| 7616 | } |
| 7617 | |
| 7618 | /* |
| 7619 | * Return either the result of bdrv_cow_child() or bdrv_filter_child(), |
| 7620 | * whichever is non-NULL. |
| 7621 | * |
| 7622 | * Return NULL if both are NULL. |
| 7623 | */ |
| 7624 | BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs) |
| 7625 | { |
| 7626 | BdrvChild *cow_child = bdrv_cow_child(bs); |
| 7627 | BdrvChild *filter_child = bdrv_filter_child(bs); |
| 7628 | |
| 7629 | /* Filter nodes cannot have COW backing files */ |
| 7630 | assert(!(cow_child && filter_child)); |
| 7631 | |
| 7632 | return cow_child ?: filter_child; |
| 7633 | } |
| 7634 | |
| 7635 | /* |
| 7636 | * Return the primary child of this node: For filters, that is the |
| 7637 | * filtered child. For other nodes, that is usually the child storing |
| 7638 | * metadata. |
| 7639 | * (A generally more helpful description is that this is (usually) the |
| 7640 | * child that has the same filename as @bs.) |
| 7641 | * |
| 7642 | * Drivers do not necessarily have a primary child; for example quorum |
| 7643 | * does not. |
| 7644 | */ |
| 7645 | BdrvChild *bdrv_primary_child(BlockDriverState *bs) |
| 7646 | { |
| 7647 | BdrvChild *c, *found = NULL; |
| 7648 | |
| 7649 | QLIST_FOREACH(c, &bs->children, next) { |
| 7650 | if (c->role & BDRV_CHILD_PRIMARY) { |
| 7651 | assert(!found); |
| 7652 | found = c; |
| 7653 | } |
| 7654 | } |
| 7655 | |
| 7656 | return found; |
| 7657 | } |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 7658 | |
| 7659 | static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs, |
| 7660 | bool stop_on_explicit_filter) |
| 7661 | { |
| 7662 | BdrvChild *c; |
| 7663 | |
| 7664 | if (!bs) { |
| 7665 | return NULL; |
| 7666 | } |
| 7667 | |
| 7668 | while (!(stop_on_explicit_filter && !bs->implicit)) { |
| 7669 | c = bdrv_filter_child(bs); |
| 7670 | if (!c) { |
| 7671 | /* |
| 7672 | * A filter that is embedded in a working block graph must |
| 7673 | * have a child. Assert this here so this function does |
| 7674 | * not return a filter node that is not expected by the |
| 7675 | * caller. |
| 7676 | */ |
| 7677 | assert(!bs->drv || !bs->drv->is_filter); |
| 7678 | break; |
| 7679 | } |
| 7680 | bs = c->bs; |
| 7681 | } |
| 7682 | /* |
| 7683 | * Note that this treats nodes with bs->drv == NULL as not being |
| 7684 | * filters (bs->drv == NULL should be replaced by something else |
| 7685 | * anyway). |
| 7686 | * The advantage of this behavior is that this function will thus |
| 7687 | * always return a non-NULL value (given a non-NULL @bs). |
| 7688 | */ |
| 7689 | |
| 7690 | return bs; |
| 7691 | } |
| 7692 | |
| 7693 | /* |
| 7694 | * Return the first BDS that has not been added implicitly or that |
| 7695 | * does not have a filtered child down the chain starting from @bs |
| 7696 | * (including @bs itself). |
| 7697 | */ |
| 7698 | BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs) |
| 7699 | { |
| 7700 | return bdrv_do_skip_filters(bs, true); |
| 7701 | } |
| 7702 | |
| 7703 | /* |
| 7704 | * Return the first BDS that does not have a filtered child down the |
| 7705 | * chain starting from @bs (including @bs itself). |
| 7706 | */ |
| 7707 | BlockDriverState *bdrv_skip_filters(BlockDriverState *bs) |
| 7708 | { |
| 7709 | return bdrv_do_skip_filters(bs, false); |
| 7710 | } |
| 7711 | |
| 7712 | /* |
| 7713 | * For a backing chain, return the first non-filter backing image of |
| 7714 | * the first non-filter image. |
| 7715 | */ |
| 7716 | BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs) |
| 7717 | { |
| 7718 | return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs))); |
| 7719 | } |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 7720 | |
| 7721 | /** |
| 7722 | * Check whether [offset, offset + bytes) overlaps with the cached |
| 7723 | * block-status data region. |
| 7724 | * |
| 7725 | * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`, |
| 7726 | * which is what bdrv_bsc_is_data()'s interface needs. |
| 7727 | * Otherwise, *pnum is not touched. |
| 7728 | */ |
| 7729 | static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs, |
| 7730 | int64_t offset, int64_t bytes, |
| 7731 | int64_t *pnum) |
| 7732 | { |
| 7733 | BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache); |
| 7734 | bool overlaps; |
| 7735 | |
| 7736 | overlaps = |
| 7737 | qatomic_read(&bsc->valid) && |
| 7738 | ranges_overlap(offset, bytes, bsc->data_start, |
| 7739 | bsc->data_end - bsc->data_start); |
| 7740 | |
| 7741 | if (overlaps && pnum) { |
| 7742 | *pnum = bsc->data_end - offset; |
| 7743 | } |
| 7744 | |
| 7745 | return overlaps; |
| 7746 | } |
| 7747 | |
| 7748 | /** |
| 7749 | * See block_int.h for this function's documentation. |
| 7750 | */ |
| 7751 | bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum) |
| 7752 | { |
| 7753 | RCU_READ_LOCK_GUARD(); |
| 7754 | |
| 7755 | return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum); |
| 7756 | } |
| 7757 | |
| 7758 | /** |
| 7759 | * See block_int.h for this function's documentation. |
| 7760 | */ |
| 7761 | void bdrv_bsc_invalidate_range(BlockDriverState *bs, |
| 7762 | int64_t offset, int64_t bytes) |
| 7763 | { |
| 7764 | RCU_READ_LOCK_GUARD(); |
| 7765 | |
| 7766 | if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) { |
| 7767 | qatomic_set(&bs->block_status_cache->valid, false); |
| 7768 | } |
| 7769 | } |
| 7770 | |
| 7771 | /** |
| 7772 | * See block_int.h for this function's documentation. |
| 7773 | */ |
| 7774 | void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes) |
| 7775 | { |
| 7776 | BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1); |
| 7777 | BdrvBlockStatusCache *old_bsc; |
| 7778 | |
| 7779 | *new_bsc = (BdrvBlockStatusCache) { |
| 7780 | .valid = true, |
| 7781 | .data_start = offset, |
| 7782 | .data_end = offset + bytes, |
| 7783 | }; |
| 7784 | |
| 7785 | QEMU_LOCK_GUARD(&bs->bsc_modify_lock); |
| 7786 | |
| 7787 | old_bsc = qatomic_rcu_read(&bs->block_status_cache); |
| 7788 | qatomic_rcu_set(&bs->block_status_cache, new_bsc); |
| 7789 | if (old_bsc) { |
| 7790 | g_free_rcu(old_bsc, rcu); |
| 7791 | } |
| 7792 | } |