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" |
Markus Armbruster | e2c1c34 | 2022-12-21 14:35:49 +0100 | [diff] [blame] | 30 | #include "block/dirty-bitmap.h" |
Max Reitz | 0c9b70d | 2020-10-27 20:05:42 +0100 | [diff] [blame] | 31 | #include "block/fuse.h" |
Kevin Wolf | cd7fca9 | 2016-07-06 11:22:39 +0200 | [diff] [blame] | 32 | #include "block/nbd.h" |
Max Reitz | 609f45e | 2018-06-14 21:14:28 +0200 | [diff] [blame] | 33 | #include "block/qdict.h" |
Markus Armbruster | d49b683 | 2015-03-17 18:29:20 +0100 | [diff] [blame] | 34 | #include "qemu/error-report.h" |
Marc-André Lureau | 5e5733e | 2019-08-29 22:34:43 +0400 | [diff] [blame] | 35 | #include "block/module_block.h" |
Markus Armbruster | db72581 | 2019-08-12 07:23:50 +0200 | [diff] [blame] | 36 | #include "qemu/main-loop.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 37 | #include "qemu/module.h" |
Markus Armbruster | e688df6 | 2018-02-01 12:18:31 +0100 | [diff] [blame] | 38 | #include "qapi/error.h" |
Daniel P. Berrangé | 407bc4b | 2024-11-18 16:12:34 +0100 | [diff] [blame] | 39 | #include "qobject/qdict.h" |
| 40 | #include "qobject/qjson.h" |
| 41 | #include "qobject/qnull.h" |
| 42 | #include "qobject/qstring.h" |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 43 | #include "qapi/qobject-output-visitor.h" |
| 44 | #include "qapi/qapi-visit-block-core.h" |
Philippe Mathieu-Daudé | 32cad1f | 2024-12-03 15:20:13 +0100 | [diff] [blame] | 45 | #include "system/block-backend.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 46 | #include "qemu/notify.h" |
Markus Armbruster | 922a01a | 2018-02-01 12:18:46 +0100 | [diff] [blame] | 47 | #include "qemu/option.h" |
Daniel P. Berrange | 10817bf | 2015-09-01 14:48:02 +0100 | [diff] [blame] | 48 | #include "qemu/coroutine.h" |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 49 | #include "block/qapi.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 50 | #include "qemu/timer.h" |
Veronia Bahaa | f348b6d | 2016-03-20 19:16:19 +0200 | [diff] [blame] | 51 | #include "qemu/cutils.h" |
| 52 | #include "qemu/id.h" |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 53 | #include "qemu/range.h" |
| 54 | #include "qemu/rcu.h" |
Vladimir Sementsov-Ogievskiy | 21c2283 | 2020-09-24 21:54:10 +0300 | [diff] [blame] | 55 | #include "block/coroutines.h" |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 56 | |
Juan Quintela | 71e72a1 | 2009-07-27 16:12:56 +0200 | [diff] [blame] | 57 | #ifdef CONFIG_BSD |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 58 | #include <sys/ioctl.h> |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 59 | #include <sys/queue.h> |
Joelle van Dyne | feccdce | 2021-03-15 11:03:39 -0700 | [diff] [blame] | 60 | #if defined(HAVE_SYS_DISK_H) |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 61 | #include <sys/disk.h> |
| 62 | #endif |
blueswir1 | c5e9723 | 2009-03-07 20:06:23 +0000 | [diff] [blame] | 63 | #endif |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 64 | |
aliguori | 49dc768 | 2009-03-08 16:26:59 +0000 | [diff] [blame] | 65 | #ifdef _WIN32 |
| 66 | #include <windows.h> |
| 67 | #endif |
| 68 | |
Stefan Hajnoczi | 1c9805a | 2011-10-13 13:08:22 +0100 | [diff] [blame] | 69 | #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ |
| 70 | |
Emanuele Giuseppe Esposito | 3b491a9 | 2022-03-03 10:15:48 -0500 | [diff] [blame] | 71 | /* Protected by BQL */ |
Benoît Canet | dc364f4 | 2014-01-23 21:31:32 +0100 | [diff] [blame] | 72 | static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = |
| 73 | QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); |
| 74 | |
Emanuele Giuseppe Esposito | 3b491a9 | 2022-03-03 10:15:48 -0500 | [diff] [blame] | 75 | /* Protected by BQL */ |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 76 | static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states = |
| 77 | QTAILQ_HEAD_INITIALIZER(all_bdrv_states); |
| 78 | |
Emanuele Giuseppe Esposito | 3b491a9 | 2022-03-03 10:15:48 -0500 | [diff] [blame] | 79 | /* Protected by BQL */ |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 80 | static QLIST_HEAD(, BlockDriver) bdrv_drivers = |
| 81 | QLIST_HEAD_INITIALIZER(bdrv_drivers); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 82 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 83 | static BlockDriverState *bdrv_open_inherit(const char *filename, |
| 84 | const char *reference, |
| 85 | QDict *options, int flags, |
| 86 | BlockDriverState *parent, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 87 | const BdrvChildClass *child_class, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 88 | BdrvChildRole child_role, |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 89 | bool parse_filename, |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 90 | Error **errp); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 91 | |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 92 | static bool bdrv_recurse_has_child(BlockDriverState *bs, |
| 93 | BlockDriverState *child); |
| 94 | |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 95 | static void GRAPH_WRLOCK |
| 96 | bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs); |
| 97 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 98 | static void GRAPH_WRLOCK |
| 99 | bdrv_remove_child(BdrvChild *child, Transaction *tran); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 100 | |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 101 | static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, |
| 102 | BlockReopenQueue *queue, |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 103 | Transaction *change_child_tran, Error **errp); |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 104 | static void bdrv_reopen_commit(BDRVReopenState *reopen_state); |
| 105 | static void bdrv_reopen_abort(BDRVReopenState *reopen_state); |
| 106 | |
Emanuele Giuseppe Esposito | fa8fc1d | 2021-12-15 07:11:38 -0500 | [diff] [blame] | 107 | static bool bdrv_backing_overridden(BlockDriverState *bs); |
| 108 | |
Fiona Ebner | 91ba0e1 | 2025-05-30 17:10:45 +0200 | [diff] [blame] | 109 | static bool GRAPH_RDLOCK |
| 110 | bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx, |
| 111 | GHashTable *visited, Transaction *tran, Error **errp); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 112 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 113 | /* If non-zero, use only whitelisted block drivers */ |
| 114 | static int use_bdrv_whitelist; |
| 115 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 116 | #ifdef _WIN32 |
| 117 | static int is_windows_drive_prefix(const char *filename) |
| 118 | { |
| 119 | return (((filename[0] >= 'a' && filename[0] <= 'z') || |
| 120 | (filename[0] >= 'A' && filename[0] <= 'Z')) && |
| 121 | filename[1] == ':'); |
| 122 | } |
| 123 | |
| 124 | int is_windows_drive(const char *filename) |
| 125 | { |
| 126 | if (is_windows_drive_prefix(filename) && |
| 127 | filename[2] == '\0') |
| 128 | return 1; |
| 129 | if (strstart(filename, "\\\\.\\", NULL) || |
| 130 | strstart(filename, "//./", NULL)) |
| 131 | return 1; |
| 132 | return 0; |
| 133 | } |
| 134 | #endif |
| 135 | |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 136 | size_t bdrv_opt_mem_align(BlockDriverState *bs) |
| 137 | { |
| 138 | if (!bs || !bs->drv) { |
Denis V. Lunev | 459b4e6 | 2015-05-12 17:30:56 +0300 | [diff] [blame] | 139 | /* page size or 4k (hdd sector size) should be on the safe side */ |
Marc-André Lureau | 8e3b0cb | 2022-03-23 19:57:22 +0400 | [diff] [blame] | 140 | return MAX(4096, qemu_real_host_page_size()); |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 141 | } |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 142 | IO_CODE(); |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 143 | |
| 144 | return bs->bl.opt_mem_alignment; |
| 145 | } |
| 146 | |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 147 | size_t bdrv_min_mem_align(BlockDriverState *bs) |
| 148 | { |
| 149 | if (!bs || !bs->drv) { |
Denis V. Lunev | 459b4e6 | 2015-05-12 17:30:56 +0300 | [diff] [blame] | 150 | /* page size or 4k (hdd sector size) should be on the safe side */ |
Marc-André Lureau | 8e3b0cb | 2022-03-23 19:57:22 +0400 | [diff] [blame] | 151 | return MAX(4096, qemu_real_host_page_size()); |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 152 | } |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 153 | IO_CODE(); |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 154 | |
| 155 | return bs->bl.min_mem_alignment; |
| 156 | } |
| 157 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 158 | /* check if the path starts with "<protocol>:" */ |
Max Reitz | 5c98415 | 2014-12-03 14:57:22 +0100 | [diff] [blame] | 159 | int path_has_protocol(const char *path) |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 160 | { |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 161 | const char *p; |
| 162 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 163 | #ifdef _WIN32 |
| 164 | if (is_windows_drive(path) || |
| 165 | is_windows_drive_prefix(path)) { |
| 166 | return 0; |
| 167 | } |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 168 | p = path + strcspn(path, ":/\\"); |
| 169 | #else |
| 170 | p = path + strcspn(path, ":/"); |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 171 | #endif |
| 172 | |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 173 | return *p == ':'; |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 174 | } |
| 175 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 176 | int path_is_absolute(const char *path) |
| 177 | { |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 178 | #ifdef _WIN32 |
| 179 | /* specific case for names like: "\\.\d:" */ |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 180 | if (is_windows_drive(path) || is_windows_drive_prefix(path)) { |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 181 | return 1; |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 182 | } |
| 183 | return (*path == '/' || *path == '\\'); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 184 | #else |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 185 | return (*path == '/'); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 186 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 189 | /* if filename is absolute, just return its duplicate. Otherwise, build a |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 190 | path to it by considering it is relative to base_path. URL are |
| 191 | supported. */ |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 192 | char *path_combine(const char *base_path, const char *filename) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 193 | { |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 194 | const char *protocol_stripped = NULL; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 195 | const char *p, *p1; |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 196 | char *result; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 197 | int len; |
| 198 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 199 | if (path_is_absolute(filename)) { |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 200 | return g_strdup(filename); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 201 | } |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 202 | |
| 203 | if (path_has_protocol(base_path)) { |
| 204 | protocol_stripped = strchr(base_path, ':'); |
| 205 | if (protocol_stripped) { |
| 206 | protocol_stripped++; |
| 207 | } |
| 208 | } |
| 209 | p = protocol_stripped ?: base_path; |
| 210 | |
| 211 | p1 = strrchr(base_path, '/'); |
| 212 | #ifdef _WIN32 |
| 213 | { |
| 214 | const char *p2; |
| 215 | p2 = strrchr(base_path, '\\'); |
| 216 | if (!p1 || p2 > p1) { |
| 217 | p1 = p2; |
| 218 | } |
| 219 | } |
| 220 | #endif |
| 221 | if (p1) { |
| 222 | p1++; |
| 223 | } else { |
| 224 | p1 = base_path; |
| 225 | } |
| 226 | if (p1 > p) { |
| 227 | p = p1; |
| 228 | } |
| 229 | len = p - base_path; |
| 230 | |
| 231 | result = g_malloc(len + strlen(filename) + 1); |
| 232 | memcpy(result, base_path, len); |
| 233 | strcpy(result + len, filename); |
| 234 | |
| 235 | return result; |
| 236 | } |
| 237 | |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 238 | /* |
| 239 | * Helper function for bdrv_parse_filename() implementations to remove optional |
| 240 | * protocol prefixes (especially "file:") from a filename and for putting the |
| 241 | * stripped filename into the options QDict if there is such a prefix. |
| 242 | */ |
| 243 | void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, |
| 244 | QDict *options) |
| 245 | { |
| 246 | if (strstart(filename, prefix, &filename)) { |
| 247 | /* Stripping the explicit protocol prefix may result in a protocol |
| 248 | * prefix being (wrongly) detected (if the filename contains a colon) */ |
| 249 | if (path_has_protocol(filename)) { |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 250 | GString *fat_filename; |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 251 | |
| 252 | /* This means there is some colon before the first slash; therefore, |
| 253 | * this cannot be an absolute path */ |
| 254 | assert(!path_is_absolute(filename)); |
| 255 | |
| 256 | /* And we can thus fix the protocol detection issue by prefixing it |
| 257 | * by "./" */ |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 258 | fat_filename = g_string_new("./"); |
| 259 | g_string_append(fat_filename, filename); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 260 | |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 261 | assert(!path_has_protocol(fat_filename->str)); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 262 | |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 263 | qdict_put(options, "filename", |
| 264 | qstring_from_gstring(fat_filename)); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 265 | } else { |
| 266 | /* If no protocol prefix was detected, we can use the shortened |
| 267 | * filename as-is */ |
| 268 | qdict_put_str(options, "filename", filename); |
| 269 | } |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | |
Kevin Wolf | 9c5e659 | 2017-05-04 18:52:40 +0200 | [diff] [blame] | 274 | /* Returns whether the image file is opened as read-only. Note that this can |
| 275 | * return false and writing to the image file is still not possible because the |
| 276 | * image is inactivated. */ |
Jeff Cody | 93ed524 | 2017-04-07 16:55:28 -0400 | [diff] [blame] | 277 | bool bdrv_is_read_only(BlockDriverState *bs) |
| 278 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 279 | IO_CODE(); |
Vladimir Sementsov-Ogievskiy | 975da07 | 2021-05-27 18:40:55 +0300 | [diff] [blame] | 280 | return !(bs->open_flags & BDRV_O_RDWR); |
Jeff Cody | 93ed524 | 2017-04-07 16:55:28 -0400 | [diff] [blame] | 281 | } |
| 282 | |
Kevin Wolf | 4026f1c | 2023-09-29 16:51:47 +0200 | [diff] [blame] | 283 | static int GRAPH_RDLOCK |
| 284 | bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, |
| 285 | bool ignore_allow_rdw, Error **errp) |
Jeff Cody | fe5241b | 2017-04-07 16:55:25 -0400 | [diff] [blame] | 286 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 287 | IO_CODE(); |
| 288 | |
Jeff Cody | e2b8247 | 2017-04-07 16:55:26 -0400 | [diff] [blame] | 289 | /* Do not set read_only if copy_on_read is enabled */ |
| 290 | if (bs->copy_on_read && read_only) { |
| 291 | error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", |
| 292 | bdrv_get_device_or_node_name(bs)); |
| 293 | return -EINVAL; |
| 294 | } |
| 295 | |
Jeff Cody | d6fcdf0 | 2017-04-07 16:55:27 -0400 | [diff] [blame] | 296 | /* Do not clear read_only if it is prohibited */ |
Kevin Wolf | 54a32bf | 2017-08-03 17:02:58 +0200 | [diff] [blame] | 297 | if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && |
| 298 | !ignore_allow_rdw) |
| 299 | { |
Jeff Cody | d6fcdf0 | 2017-04-07 16:55:27 -0400 | [diff] [blame] | 300 | error_setg(errp, "Node '%s' is read only", |
| 301 | bdrv_get_device_or_node_name(bs)); |
| 302 | return -EPERM; |
| 303 | } |
| 304 | |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 305 | return 0; |
| 306 | } |
| 307 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 308 | /* |
| 309 | * Called by a driver that can only provide a read-only image. |
| 310 | * |
| 311 | * Returns 0 if the node is already read-only or it could switch the node to |
| 312 | * read-only because BDRV_O_AUTO_RDONLY is set. |
| 313 | * |
| 314 | * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set |
| 315 | * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg |
| 316 | * is not NULL, it is used as the error message for the Error object. |
| 317 | */ |
| 318 | int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg, |
| 319 | Error **errp) |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 320 | { |
| 321 | int ret = 0; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 322 | IO_CODE(); |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 323 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 324 | if (!(bs->open_flags & BDRV_O_RDWR)) { |
| 325 | return 0; |
| 326 | } |
| 327 | if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) { |
| 328 | goto fail; |
| 329 | } |
| 330 | |
| 331 | ret = bdrv_can_set_read_only(bs, true, false, NULL); |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 332 | if (ret < 0) { |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 333 | goto fail; |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 334 | } |
| 335 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 336 | bs->open_flags &= ~BDRV_O_RDWR; |
Kevin Wolf | eeae6a5 | 2018-10-09 16:57:12 +0200 | [diff] [blame] | 337 | |
Jeff Cody | e2b8247 | 2017-04-07 16:55:26 -0400 | [diff] [blame] | 338 | return 0; |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 339 | |
| 340 | fail: |
| 341 | error_setg(errp, "%s", errmsg ?: "Image is read-only"); |
| 342 | return -EACCES; |
Jeff Cody | fe5241b | 2017-04-07 16:55:25 -0400 | [diff] [blame] | 343 | } |
| 344 | |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 345 | /* |
| 346 | * If @backing is empty, this function returns NULL without setting |
| 347 | * @errp. In all other cases, NULL will only be returned with @errp |
| 348 | * set. |
| 349 | * |
| 350 | * Therefore, a return value of NULL without @errp set means that |
| 351 | * there is no backing file; if @errp is set, there is one but its |
| 352 | * absolute filename cannot be generated. |
| 353 | */ |
| 354 | char *bdrv_get_full_backing_filename_from_filename(const char *backed, |
| 355 | const char *backing, |
| 356 | Error **errp) |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 357 | { |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 358 | if (backing[0] == '\0') { |
| 359 | return NULL; |
| 360 | } else if (path_has_protocol(backing) || path_is_absolute(backing)) { |
| 361 | return g_strdup(backing); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 362 | } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { |
| 363 | error_setg(errp, "Cannot use relative backing file names for '%s'", |
| 364 | backed); |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 365 | return NULL; |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 366 | } else { |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 367 | return path_combine(backed, backing); |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 368 | } |
| 369 | } |
| 370 | |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 371 | /* |
| 372 | * If @filename is empty or NULL, this function returns NULL without |
| 373 | * setting @errp. In all other cases, NULL will only be returned with |
| 374 | * @errp set. |
| 375 | */ |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 376 | static char * GRAPH_RDLOCK |
| 377 | bdrv_make_absolute_filename(BlockDriverState *relative_to, |
| 378 | const char *filename, Error **errp) |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 379 | { |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 380 | char *dir, *full_name; |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 381 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 382 | if (!filename || filename[0] == '\0') { |
| 383 | return NULL; |
| 384 | } else if (path_has_protocol(filename) || path_is_absolute(filename)) { |
| 385 | return g_strdup(filename); |
| 386 | } |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 387 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 388 | dir = bdrv_dirname(relative_to, errp); |
| 389 | if (!dir) { |
| 390 | return NULL; |
| 391 | } |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 392 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 393 | full_name = g_strconcat(dir, filename, NULL); |
| 394 | g_free(dir); |
| 395 | return full_name; |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 396 | } |
| 397 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 398 | char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp) |
Paolo Bonzini | dc5a137 | 2012-05-08 16:51:50 +0200 | [diff] [blame] | 399 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 400 | GLOBAL_STATE_CODE(); |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 401 | return bdrv_make_absolute_filename(bs, bs->backing_file, errp); |
Paolo Bonzini | dc5a137 | 2012-05-08 16:51:50 +0200 | [diff] [blame] | 402 | } |
| 403 | |
Stefan Hajnoczi | 0eb7217 | 2015-04-28 14:27:51 +0100 | [diff] [blame] | 404 | void bdrv_register(BlockDriver *bdrv) |
| 405 | { |
Philippe Mathieu-Daudé | a15f08d | 2020-03-18 23:22:35 +0100 | [diff] [blame] | 406 | assert(bdrv->format_name); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 407 | GLOBAL_STATE_CODE(); |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 408 | QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 409 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 410 | |
Markus Armbruster | e4e9986 | 2014-10-07 13:59:03 +0200 | [diff] [blame] | 411 | BlockDriverState *bdrv_new(void) |
| 412 | { |
| 413 | BlockDriverState *bs; |
| 414 | int i; |
| 415 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 416 | GLOBAL_STATE_CODE(); |
| 417 | |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 418 | bs = g_new0(BlockDriverState, 1); |
Fam Zheng | e4654d2 | 2013-11-13 18:29:43 +0800 | [diff] [blame] | 419 | QLIST_INIT(&bs->dirty_bitmaps); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 420 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 421 | QLIST_INIT(&bs->op_blockers[i]); |
| 422 | } |
Stefan Hajnoczi | fa9185f | 2023-08-08 11:58:52 -0400 | [diff] [blame] | 423 | qemu_mutex_init(&bs->reqs_lock); |
Paolo Bonzini | 2119882 | 2017-06-05 14:39:03 +0200 | [diff] [blame] | 424 | qemu_mutex_init(&bs->dirty_bitmap_mutex); |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 425 | bs->refcnt = 1; |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 426 | bs->aio_context = qemu_get_aio_context(); |
Paolo Bonzini | d7d512f | 2012-08-23 11:20:36 +0200 | [diff] [blame] | 427 | |
Evgeny Yakovlev | 3ff2f67 | 2016-07-18 22:39:52 +0300 | [diff] [blame] | 428 | qemu_co_queue_init(&bs->flush_queue); |
| 429 | |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 430 | qemu_co_mutex_init(&bs->bsc_modify_lock); |
| 431 | bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1); |
| 432 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 433 | for (i = 0; i < bdrv_drain_all_count; i++) { |
| 434 | bdrv_drained_begin(bs); |
| 435 | } |
| 436 | |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 437 | QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); |
| 438 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 439 | return bs; |
| 440 | } |
| 441 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 442 | static BlockDriver *bdrv_do_find_format(const char *format_name) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 443 | { |
| 444 | BlockDriver *drv1; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 445 | GLOBAL_STATE_CODE(); |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 446 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 447 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 448 | if (!strcmp(drv1->format_name, format_name)) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 449 | return drv1; |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 450 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 451 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 452 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 453 | return NULL; |
| 454 | } |
| 455 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 456 | BlockDriver *bdrv_find_format(const char *format_name) |
| 457 | { |
| 458 | BlockDriver *drv1; |
| 459 | int i; |
| 460 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 461 | GLOBAL_STATE_CODE(); |
| 462 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 463 | drv1 = bdrv_do_find_format(format_name); |
| 464 | if (drv1) { |
| 465 | return drv1; |
| 466 | } |
| 467 | |
| 468 | /* The driver isn't registered, maybe we need to load a module */ |
| 469 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { |
| 470 | if (!strcmp(block_driver_modules[i].format_name, format_name)) { |
Claudio Fontana | c551fb0 | 2022-09-29 11:30:33 +0200 | [diff] [blame] | 471 | Error *local_err = NULL; |
| 472 | int rv = block_module_load(block_driver_modules[i].library_name, |
| 473 | &local_err); |
| 474 | if (rv > 0) { |
| 475 | return bdrv_do_find_format(format_name); |
| 476 | } else if (rv < 0) { |
| 477 | error_report_err(local_err); |
| 478 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 479 | break; |
| 480 | } |
| 481 | } |
Claudio Fontana | c551fb0 | 2022-09-29 11:30:33 +0200 | [diff] [blame] | 482 | return NULL; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 483 | } |
| 484 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 485 | 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] | 486 | { |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 487 | static const char *whitelist_rw[] = { |
| 488 | CONFIG_BDRV_RW_WHITELIST |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 489 | NULL |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 490 | }; |
| 491 | static const char *whitelist_ro[] = { |
| 492 | CONFIG_BDRV_RO_WHITELIST |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 493 | NULL |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 494 | }; |
| 495 | const char **p; |
| 496 | |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 497 | if (!whitelist_rw[0] && !whitelist_ro[0]) { |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 498 | return 1; /* no whitelist, anything goes */ |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 499 | } |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 500 | |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 501 | for (p = whitelist_rw; *p; p++) { |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 502 | if (!strcmp(format_name, *p)) { |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 503 | return 1; |
| 504 | } |
| 505 | } |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 506 | if (read_only) { |
| 507 | for (p = whitelist_ro; *p; p++) { |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 508 | if (!strcmp(format_name, *p)) { |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 509 | return 1; |
| 510 | } |
| 511 | } |
| 512 | } |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 513 | return 0; |
| 514 | } |
| 515 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 516 | int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) |
| 517 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 518 | GLOBAL_STATE_CODE(); |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 519 | return bdrv_format_is_whitelisted(drv->format_name, read_only); |
| 520 | } |
| 521 | |
Daniel P. Berrange | e6ff69b | 2016-03-21 14:11:48 +0000 | [diff] [blame] | 522 | bool bdrv_uses_whitelist(void) |
| 523 | { |
| 524 | return use_bdrv_whitelist; |
| 525 | } |
| 526 | |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 527 | typedef struct CreateCo { |
| 528 | BlockDriver *drv; |
| 529 | char *filename; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 530 | QemuOpts *opts; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 531 | int ret; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 532 | Error *err; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 533 | } CreateCo; |
| 534 | |
Emanuele Giuseppe Esposito | 741443e | 2022-11-28 09:23:36 -0500 | [diff] [blame] | 535 | int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename, |
| 536 | QemuOpts *opts, Error **errp) |
Emanuele Giuseppe Esposito | 84bdf21 | 2022-11-28 09:23:30 -0500 | [diff] [blame] | 537 | { |
Zhao Liu | 46ff64a | 2024-03-12 14:03:37 +0800 | [diff] [blame] | 538 | ERRP_GUARD(); |
Emanuele Giuseppe Esposito | 84bdf21 | 2022-11-28 09:23:30 -0500 | [diff] [blame] | 539 | int ret; |
| 540 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | 84bdf21 | 2022-11-28 09:23:30 -0500 | [diff] [blame] | 541 | |
| 542 | if (!drv->bdrv_co_create_opts) { |
| 543 | error_setg(errp, "Driver '%s' does not support image creation", |
| 544 | drv->format_name); |
| 545 | return -ENOTSUP; |
| 546 | } |
| 547 | |
| 548 | ret = drv->bdrv_co_create_opts(drv, filename, opts, errp); |
| 549 | if (ret < 0 && !*errp) { |
| 550 | error_setg_errno(errp, -ret, "Could not create image"); |
| 551 | } |
| 552 | |
| 553 | return ret; |
| 554 | } |
| 555 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 556 | /** |
| 557 | * Helper function for bdrv_create_file_fallback(): Resize @blk to at |
| 558 | * least the given @minimum_size. |
| 559 | * |
| 560 | * On success, return @blk's actual length. |
| 561 | * Otherwise, return -errno. |
| 562 | */ |
Paolo Bonzini | 84569a7 | 2023-06-01 13:51:38 +0200 | [diff] [blame] | 563 | static int64_t coroutine_fn GRAPH_UNLOCKED |
| 564 | create_file_fallback_truncate(BlockBackend *blk, int64_t minimum_size, |
| 565 | Error **errp) |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 566 | { |
| 567 | Error *local_err = NULL; |
| 568 | int64_t size; |
| 569 | int ret; |
| 570 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 571 | GLOBAL_STATE_CODE(); |
| 572 | |
Paolo Bonzini | 84569a7 | 2023-06-01 13:51:38 +0200 | [diff] [blame] | 573 | ret = blk_co_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0, |
| 574 | &local_err); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 575 | if (ret < 0 && ret != -ENOTSUP) { |
| 576 | error_propagate(errp, local_err); |
| 577 | return ret; |
| 578 | } |
| 579 | |
Paolo Bonzini | 84569a7 | 2023-06-01 13:51:38 +0200 | [diff] [blame] | 580 | size = blk_co_getlength(blk); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 581 | if (size < 0) { |
| 582 | error_free(local_err); |
| 583 | error_setg_errno(errp, -size, |
| 584 | "Failed to inquire the new image file's length"); |
| 585 | return size; |
| 586 | } |
| 587 | |
| 588 | if (size < minimum_size) { |
| 589 | /* Need to grow the image, but we failed to do that */ |
| 590 | error_propagate(errp, local_err); |
| 591 | return -ENOTSUP; |
| 592 | } |
| 593 | |
| 594 | error_free(local_err); |
| 595 | local_err = NULL; |
| 596 | |
| 597 | return size; |
| 598 | } |
| 599 | |
| 600 | /** |
| 601 | * Helper function for bdrv_create_file_fallback(): Zero the first |
| 602 | * sector to remove any potentially pre-existing image header. |
| 603 | */ |
Paolo Bonzini | 881a4c5 | 2022-09-22 10:49:00 +0200 | [diff] [blame] | 604 | static int coroutine_fn |
| 605 | create_file_fallback_zero_first_sector(BlockBackend *blk, |
| 606 | int64_t current_size, |
| 607 | Error **errp) |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 608 | { |
| 609 | int64_t bytes_to_clear; |
| 610 | int ret; |
| 611 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 612 | GLOBAL_STATE_CODE(); |
| 613 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 614 | bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE); |
| 615 | if (bytes_to_clear) { |
Alberto Faria | ce47ff2 | 2022-10-13 14:37:02 +0200 | [diff] [blame] | 616 | ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 617 | if (ret < 0) { |
| 618 | error_setg_errno(errp, -ret, |
| 619 | "Failed to clear the new image's first sector"); |
| 620 | return ret; |
| 621 | } |
| 622 | } |
| 623 | |
| 624 | return 0; |
| 625 | } |
| 626 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 627 | /** |
| 628 | * Simple implementation of bdrv_co_create_opts for protocol drivers |
| 629 | * which only support creation via opening a file |
| 630 | * (usually existing raw storage device) |
| 631 | */ |
| 632 | int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv, |
| 633 | const char *filename, |
| 634 | QemuOpts *opts, |
| 635 | Error **errp) |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 636 | { |
Zhao Liu | 7b22e05 | 2024-03-11 11:37:56 +0800 | [diff] [blame] | 637 | ERRP_GUARD(); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 638 | BlockBackend *blk; |
Max Reitz | eeea1fa | 2020-02-25 16:56:18 +0100 | [diff] [blame] | 639 | QDict *options; |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 640 | int64_t size = 0; |
| 641 | char *buf = NULL; |
| 642 | PreallocMode prealloc; |
| 643 | Error *local_err = NULL; |
| 644 | int ret; |
| 645 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 646 | GLOBAL_STATE_CODE(); |
| 647 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 648 | size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); |
| 649 | buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); |
| 650 | prealloc = qapi_enum_parse(&PreallocMode_lookup, buf, |
| 651 | PREALLOC_MODE_OFF, &local_err); |
| 652 | g_free(buf); |
| 653 | if (local_err) { |
| 654 | error_propagate(errp, local_err); |
| 655 | return -EINVAL; |
| 656 | } |
| 657 | |
| 658 | if (prealloc != PREALLOC_MODE_OFF) { |
| 659 | error_setg(errp, "Unsupported preallocation mode '%s'", |
| 660 | PreallocMode_str(prealloc)); |
| 661 | return -ENOTSUP; |
| 662 | } |
| 663 | |
Max Reitz | eeea1fa | 2020-02-25 16:56:18 +0100 | [diff] [blame] | 664 | options = qdict_new(); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 665 | qdict_put_str(options, "driver", drv->format_name); |
| 666 | |
Kevin Wolf | be1a732 | 2023-01-26 18:24:31 +0100 | [diff] [blame] | 667 | blk = blk_co_new_open(filename, NULL, options, |
| 668 | BDRV_O_RDWR | BDRV_O_RESIZE, errp); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 669 | if (!blk) { |
Hanna Czenczek | 8162486 | 2023-07-20 16:00:24 +0200 | [diff] [blame] | 670 | error_prepend(errp, "Protocol driver '%s' does not support creating " |
| 671 | "new images, so an existing image must be selected as " |
| 672 | "the target; however, opening the given target as an " |
| 673 | "existing image failed: ", |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 674 | drv->format_name); |
| 675 | return -EINVAL; |
| 676 | } |
| 677 | |
| 678 | size = create_file_fallback_truncate(blk, size, errp); |
| 679 | if (size < 0) { |
| 680 | ret = size; |
| 681 | goto out; |
| 682 | } |
| 683 | |
| 684 | ret = create_file_fallback_zero_first_sector(blk, size, errp); |
| 685 | if (ret < 0) { |
| 686 | goto out; |
| 687 | } |
| 688 | |
| 689 | ret = 0; |
| 690 | out: |
Kevin Wolf | b2ab5f5 | 2023-05-04 13:57:33 +0200 | [diff] [blame] | 691 | blk_co_unref(blk); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 692 | return ret; |
| 693 | } |
| 694 | |
Emanuele Giuseppe Esposito | 2475a0d | 2022-11-28 09:23:31 -0500 | [diff] [blame] | 695 | int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts, |
| 696 | Error **errp) |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 697 | { |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 698 | QemuOpts *protocol_opts; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 699 | BlockDriver *drv; |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 700 | QDict *qdict; |
| 701 | int ret; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 702 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 703 | GLOBAL_STATE_CODE(); |
| 704 | |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 705 | drv = bdrv_find_protocol(filename, true, errp); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 706 | if (drv == NULL) { |
Stefan Hajnoczi | 16905d7 | 2010-11-30 15:14:14 +0000 | [diff] [blame] | 707 | return -ENOENT; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 708 | } |
| 709 | |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 710 | if (!drv->create_opts) { |
| 711 | error_setg(errp, "Driver '%s' does not support image creation", |
| 712 | drv->format_name); |
| 713 | return -ENOTSUP; |
| 714 | } |
| 715 | |
| 716 | /* |
| 717 | * 'opts' contains a QemuOptsList with a combination of format and protocol |
| 718 | * default values. |
| 719 | * |
| 720 | * The format properly removes its options, but the default values remain |
| 721 | * in 'opts->list'. So if the protocol has options with the same name |
| 722 | * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values |
| 723 | * of the format, since for overlapping options, the format wins. |
| 724 | * |
| 725 | * To avoid this issue, lets convert QemuOpts to QDict, in this way we take |
| 726 | * only the set options, and then convert it back to QemuOpts, using the |
| 727 | * create_opts of the protocol. So the new QemuOpts, will contain only the |
| 728 | * protocol defaults. |
| 729 | */ |
| 730 | qdict = qemu_opts_to_qdict(opts, NULL); |
| 731 | protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp); |
| 732 | if (protocol_opts == NULL) { |
| 733 | ret = -EINVAL; |
| 734 | goto out; |
| 735 | } |
| 736 | |
Emanuele Giuseppe Esposito | 2475a0d | 2022-11-28 09:23:31 -0500 | [diff] [blame] | 737 | ret = bdrv_co_create(drv, filename, protocol_opts, errp); |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 738 | out: |
| 739 | qemu_opts_del(protocol_opts); |
| 740 | qobject_unref(qdict); |
| 741 | return ret; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 742 | } |
| 743 | |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 744 | int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp) |
| 745 | { |
| 746 | Error *local_err = NULL; |
| 747 | int ret; |
| 748 | |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 749 | IO_CODE(); |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 750 | assert(bs != NULL); |
Kevin Wolf | 48aef79 | 2023-02-03 16:22:00 +0100 | [diff] [blame] | 751 | assert_bdrv_graph_readable(); |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 752 | |
| 753 | if (!bs->drv) { |
| 754 | error_setg(errp, "Block node '%s' is not opened", bs->filename); |
| 755 | return -ENOMEDIUM; |
| 756 | } |
| 757 | |
| 758 | if (!bs->drv->bdrv_co_delete_file) { |
| 759 | error_setg(errp, "Driver '%s' does not support image deletion", |
| 760 | bs->drv->format_name); |
| 761 | return -ENOTSUP; |
| 762 | } |
| 763 | |
| 764 | ret = bs->drv->bdrv_co_delete_file(bs, &local_err); |
| 765 | if (ret < 0) { |
| 766 | error_propagate(errp, local_err); |
| 767 | } |
| 768 | |
| 769 | return ret; |
| 770 | } |
| 771 | |
Maxim Levitsky | a890f08 | 2020-12-17 19:09:03 +0200 | [diff] [blame] | 772 | void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs) |
| 773 | { |
| 774 | Error *local_err = NULL; |
| 775 | int ret; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 776 | IO_CODE(); |
Maxim Levitsky | a890f08 | 2020-12-17 19:09:03 +0200 | [diff] [blame] | 777 | |
| 778 | if (!bs) { |
| 779 | return; |
| 780 | } |
| 781 | |
| 782 | ret = bdrv_co_delete_file(bs, &local_err); |
| 783 | /* |
| 784 | * ENOTSUP will happen if the block driver doesn't support |
| 785 | * the 'bdrv_co_delete_file' interface. This is a predictable |
| 786 | * scenario and shouldn't be reported back to the user. |
| 787 | */ |
| 788 | if (ret == -ENOTSUP) { |
| 789 | error_free(local_err); |
| 790 | } else if (ret < 0) { |
| 791 | error_report_err(local_err); |
| 792 | } |
| 793 | } |
| 794 | |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 795 | /** |
| 796 | * Try to get @bs's logical and physical block size. |
| 797 | * On success, store them in @bsz struct and return 0. |
| 798 | * On failure return -errno. |
| 799 | * @bs must not be empty. |
| 800 | */ |
| 801 | int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) |
| 802 | { |
| 803 | BlockDriver *drv = bs->drv; |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 804 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 805 | GLOBAL_STATE_CODE(); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 806 | |
| 807 | if (drv && drv->bdrv_probe_blocksizes) { |
| 808 | return drv->bdrv_probe_blocksizes(bs, bsz); |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 809 | } else if (filtered) { |
| 810 | return bdrv_probe_blocksizes(filtered, bsz); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | return -ENOTSUP; |
| 814 | } |
| 815 | |
| 816 | /** |
| 817 | * Try to get @bs's geometry (cyls, heads, sectors). |
| 818 | * On success, store them in @geo struct and return 0. |
| 819 | * On failure return -errno. |
| 820 | * @bs must not be empty. |
| 821 | */ |
| 822 | int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) |
| 823 | { |
| 824 | BlockDriver *drv = bs->drv; |
Kevin Wolf | f5a3a27 | 2023-10-27 17:53:12 +0200 | [diff] [blame] | 825 | BlockDriverState *filtered; |
| 826 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 827 | GLOBAL_STATE_CODE(); |
Kevin Wolf | f5a3a27 | 2023-10-27 17:53:12 +0200 | [diff] [blame] | 828 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 829 | |
| 830 | if (drv && drv->bdrv_probe_geometry) { |
| 831 | return drv->bdrv_probe_geometry(bs, geo); |
Kevin Wolf | f5a3a27 | 2023-10-27 17:53:12 +0200 | [diff] [blame] | 832 | } |
| 833 | |
| 834 | filtered = bdrv_filter_bs(bs); |
| 835 | if (filtered) { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 836 | return bdrv_probe_geometry(filtered, geo); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 837 | } |
| 838 | |
| 839 | return -ENOTSUP; |
| 840 | } |
| 841 | |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 842 | /* |
| 843 | * Create a uniquely-named empty temporary file. |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 844 | * Return the actual file name used upon success, otherwise NULL. |
| 845 | * This string should be freed with g_free() when not needed any longer. |
| 846 | * |
| 847 | * Note: creating a temporary file for the caller to (re)open is |
| 848 | * inherently racy. Use g_file_open_tmp() instead whenever practical. |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 849 | */ |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 850 | char *create_tmp_file(Error **errp) |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 851 | { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 852 | int fd; |
blueswir1 | 7ccfb2e | 2008-09-14 06:45:34 +0000 | [diff] [blame] | 853 | const char *tmpdir; |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 854 | g_autofree char *filename = NULL; |
| 855 | |
| 856 | tmpdir = g_get_tmp_dir(); |
| 857 | #ifndef _WIN32 |
| 858 | /* |
| 859 | * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot") |
| 860 | * |
| 861 | * This function is used to create temporary disk images (like -snapshot), |
| 862 | * so the files can become very large. /tmp is often a tmpfs where as |
| 863 | * /var/tmp is usually on a disk, so more appropriate for disk images. |
| 864 | */ |
| 865 | if (!g_strcmp0(tmpdir, "/tmp")) { |
Amit Shah | 69bef79 | 2014-02-26 15:12:37 +0530 | [diff] [blame] | 866 | tmpdir = "/var/tmp"; |
| 867 | } |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 868 | #endif |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 869 | |
| 870 | filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir); |
| 871 | fd = g_mkstemp(filename); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 872 | if (fd < 0) { |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 873 | error_setg_errno(errp, errno, "Could not open temporary file '%s'", |
| 874 | filename); |
| 875 | return NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 876 | } |
Bin Meng | 6b6471e | 2022-10-10 12:04:30 +0800 | [diff] [blame] | 877 | close(fd); |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 878 | |
| 879 | return g_steal_pointer(&filename); |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 880 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 881 | |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 882 | /* |
| 883 | * Detect host devices. By convention, /dev/cdrom[N] is always |
| 884 | * recognized as a host CDROM. |
| 885 | */ |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 886 | static BlockDriver *find_hdev_driver(const char *filename) |
| 887 | { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 888 | int score_max = 0, score; |
| 889 | BlockDriver *drv = NULL, *d; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 890 | GLOBAL_STATE_CODE(); |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 891 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 892 | QLIST_FOREACH(d, &bdrv_drivers, list) { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 893 | if (d->bdrv_probe_device) { |
| 894 | score = d->bdrv_probe_device(filename); |
| 895 | if (score > score_max) { |
| 896 | score_max = score; |
| 897 | drv = d; |
| 898 | } |
| 899 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 900 | } |
| 901 | |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 902 | return drv; |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 903 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 904 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 905 | static BlockDriver *bdrv_do_find_protocol(const char *protocol) |
| 906 | { |
| 907 | BlockDriver *drv1; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 908 | GLOBAL_STATE_CODE(); |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 909 | |
| 910 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 911 | if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { |
| 912 | return drv1; |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | return NULL; |
| 917 | } |
| 918 | |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 919 | BlockDriver *bdrv_find_protocol(const char *filename, |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 920 | bool allow_protocol_prefix, |
| 921 | Error **errp) |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 922 | { |
| 923 | BlockDriver *drv1; |
| 924 | char protocol[128]; |
| 925 | int len; |
| 926 | const char *p; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 927 | int i; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 928 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 929 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 930 | |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 931 | /* |
| 932 | * XXX(hch): we really should not let host device detection |
| 933 | * override an explicit protocol specification, but moving this |
| 934 | * later breaks access to device names with colons in them. |
| 935 | * Thanks to the brain-dead persistent naming schemes on udev- |
| 936 | * based Linux systems those actually are quite common. |
| 937 | */ |
| 938 | drv1 = find_hdev_driver(filename); |
| 939 | if (drv1) { |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 940 | return drv1; |
| 941 | } |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 942 | |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 943 | if (!path_has_protocol(filename) || !allow_protocol_prefix) { |
Max Reitz | ef81043 | 2014-12-02 18:32:42 +0100 | [diff] [blame] | 944 | return &bdrv_file; |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 945 | } |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 946 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 947 | p = strchr(filename, ':'); |
| 948 | assert(p != NULL); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 949 | len = p - filename; |
| 950 | if (len > sizeof(protocol) - 1) |
| 951 | len = sizeof(protocol) - 1; |
| 952 | memcpy(protocol, filename, len); |
| 953 | protocol[len] = '\0'; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 954 | |
| 955 | drv1 = bdrv_do_find_protocol(protocol); |
| 956 | if (drv1) { |
| 957 | return drv1; |
| 958 | } |
| 959 | |
| 960 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { |
| 961 | if (block_driver_modules[i].protocol_name && |
| 962 | !strcmp(block_driver_modules[i].protocol_name, protocol)) { |
Claudio Fontana | c551fb0 | 2022-09-29 11:30:33 +0200 | [diff] [blame] | 963 | int rv = block_module_load(block_driver_modules[i].library_name, errp); |
| 964 | if (rv > 0) { |
| 965 | drv1 = bdrv_do_find_protocol(protocol); |
| 966 | } else if (rv < 0) { |
| 967 | return NULL; |
| 968 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 969 | break; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 970 | } |
| 971 | } |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 972 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 973 | if (!drv1) { |
| 974 | error_setg(errp, "Unknown protocol '%s'", protocol); |
| 975 | } |
| 976 | return drv1; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 977 | } |
| 978 | |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 979 | /* |
| 980 | * Guess image format by probing its contents. |
| 981 | * This is not a good idea when your image is raw (CVE-2008-2004), but |
| 982 | * we do it anyway for backward compatibility. |
| 983 | * |
| 984 | * @buf contains the image's first @buf_size bytes. |
Kevin Wolf | 7cddd37 | 2014-11-20 16:27:11 +0100 | [diff] [blame] | 985 | * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, |
| 986 | * but can be smaller if the image file is smaller) |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 987 | * @filename is its filename. |
| 988 | * |
| 989 | * For all block drivers, call the bdrv_probe() method to get its |
| 990 | * probing score. |
| 991 | * Return the first block driver with the highest probing score. |
| 992 | */ |
Kevin Wolf | 38f3ef5 | 2014-11-20 16:27:12 +0100 | [diff] [blame] | 993 | BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, |
| 994 | const char *filename) |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 995 | { |
| 996 | int score_max = 0, score; |
| 997 | BlockDriver *drv = NULL, *d; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 998 | IO_CODE(); |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 999 | |
| 1000 | QLIST_FOREACH(d, &bdrv_drivers, list) { |
| 1001 | if (d->bdrv_probe) { |
| 1002 | score = d->bdrv_probe(buf, buf_size, filename); |
| 1003 | if (score > score_max) { |
| 1004 | score_max = score; |
| 1005 | drv = d; |
| 1006 | } |
| 1007 | } |
| 1008 | } |
| 1009 | |
| 1010 | return drv; |
| 1011 | } |
| 1012 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1013 | static int find_image_format(BlockBackend *file, const char *filename, |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1014 | BlockDriver **pdrv, Error **errp) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1015 | { |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 1016 | BlockDriver *drv; |
Kevin Wolf | 7cddd37 | 2014-11-20 16:27:11 +0100 | [diff] [blame] | 1017 | uint8_t buf[BLOCK_PROBE_BUF_SIZE]; |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 1018 | int ret = 0; |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 1019 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1020 | GLOBAL_STATE_CODE(); |
| 1021 | |
Kevin Wolf | 08a0055 | 2010-06-01 18:37:31 +0200 | [diff] [blame] | 1022 | /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1023 | 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] | 1024 | *pdrv = &bdrv_raw; |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1025 | return ret; |
Nicholas A. Bellinger | 1a39685 | 2010-05-27 08:56:28 -0700 | [diff] [blame] | 1026 | } |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 1027 | |
Alberto Faria | a9262f5 | 2022-07-05 17:15:11 +0100 | [diff] [blame] | 1028 | ret = blk_pread(file, 0, sizeof(buf), buf, 0); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1029 | if (ret < 0) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1030 | error_setg_errno(errp, -ret, "Could not read image for determining its " |
| 1031 | "format"); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1032 | *pdrv = NULL; |
| 1033 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1036 | drv = bdrv_probe_all(buf, sizeof(buf), filename); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1037 | if (!drv) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1038 | error_setg(errp, "Could not determine image format: No compatible " |
| 1039 | "driver found"); |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1040 | *pdrv = NULL; |
| 1041 | return -ENOENT; |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1042 | } |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1043 | |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1044 | *pdrv = drv; |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1045 | return 0; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1046 | } |
| 1047 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1048 | /** |
| 1049 | * Set the current 'total_sectors' value |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 1050 | * Return 0 on success, -errno on error. |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1051 | */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1052 | int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs, |
| 1053 | int64_t hint) |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1054 | { |
| 1055 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 1056 | IO_CODE(); |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 1057 | assert_bdrv_graph_readable(); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1058 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 1059 | if (!drv) { |
| 1060 | return -ENOMEDIUM; |
| 1061 | } |
| 1062 | |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1063 | /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */ |
Dimitris Aragiorgis | b192af8 | 2015-06-23 13:44:56 +0300 | [diff] [blame] | 1064 | if (bdrv_is_sg(bs)) |
Nicholas Bellinger | 396759a | 2010-05-17 09:46:04 -0700 | [diff] [blame] | 1065 | return 0; |
| 1066 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1067 | /* query actual device if possible, otherwise just trust the hint */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1068 | if (drv->bdrv_co_getlength) { |
| 1069 | int64_t length = drv->bdrv_co_getlength(bs); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1070 | if (length < 0) { |
| 1071 | return length; |
| 1072 | } |
Fam Zheng | 7e38200 | 2013-11-06 19:48:06 +0800 | [diff] [blame] | 1073 | hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | bs->total_sectors = hint; |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 1077 | |
| 1078 | if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) { |
| 1079 | return -EFBIG; |
| 1080 | } |
| 1081 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1082 | return 0; |
| 1083 | } |
| 1084 | |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1085 | /** |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1086 | * Combines a QDict of new block driver @options with any missing options taken |
| 1087 | * from @old_options, so that leaving out an option defaults to its old value. |
| 1088 | */ |
| 1089 | static void bdrv_join_options(BlockDriverState *bs, QDict *options, |
| 1090 | QDict *old_options) |
| 1091 | { |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 1092 | GLOBAL_STATE_CODE(); |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1093 | if (bs->drv && bs->drv->bdrv_join_options) { |
| 1094 | bs->drv->bdrv_join_options(options, old_options); |
| 1095 | } else { |
| 1096 | qdict_join(options, old_options, false); |
| 1097 | } |
| 1098 | } |
| 1099 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1100 | static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts, |
| 1101 | int open_flags, |
| 1102 | Error **errp) |
| 1103 | { |
| 1104 | Error *local_err = NULL; |
| 1105 | char *value = qemu_opt_get_del(opts, "detect-zeroes"); |
| 1106 | BlockdevDetectZeroesOptions detect_zeroes = |
| 1107 | qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value, |
| 1108 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1109 | GLOBAL_STATE_CODE(); |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1110 | g_free(value); |
| 1111 | if (local_err) { |
| 1112 | error_propagate(errp, local_err); |
| 1113 | return detect_zeroes; |
| 1114 | } |
| 1115 | |
| 1116 | if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && |
| 1117 | !(open_flags & BDRV_O_UNMAP)) |
| 1118 | { |
| 1119 | error_setg(errp, "setting detect-zeroes to unmap is not allowed " |
| 1120 | "without setting discard operation to unmap"); |
| 1121 | } |
| 1122 | |
| 1123 | return detect_zeroes; |
| 1124 | } |
| 1125 | |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1126 | /** |
Aarushi Mehta | f80f267 | 2020-01-20 14:18:50 +0000 | [diff] [blame] | 1127 | * Set open flags for aio engine |
| 1128 | * |
| 1129 | * Return 0 on success, -1 if the engine specified is invalid |
| 1130 | */ |
| 1131 | int bdrv_parse_aio(const char *mode, int *flags) |
| 1132 | { |
| 1133 | if (!strcmp(mode, "threads")) { |
| 1134 | /* do nothing, default */ |
| 1135 | } else if (!strcmp(mode, "native")) { |
| 1136 | *flags |= BDRV_O_NATIVE_AIO; |
| 1137 | #ifdef CONFIG_LINUX_IO_URING |
| 1138 | } else if (!strcmp(mode, "io_uring")) { |
| 1139 | *flags |= BDRV_O_IO_URING; |
| 1140 | #endif |
| 1141 | } else { |
| 1142 | return -1; |
| 1143 | } |
| 1144 | |
| 1145 | return 0; |
| 1146 | } |
| 1147 | |
| 1148 | /** |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 1149 | * Set open flags for a given discard mode |
| 1150 | * |
| 1151 | * Return 0 on success, -1 if the discard mode was invalid. |
| 1152 | */ |
| 1153 | int bdrv_parse_discard_flags(const char *mode, int *flags) |
| 1154 | { |
| 1155 | *flags &= ~BDRV_O_UNMAP; |
| 1156 | |
| 1157 | if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { |
| 1158 | /* do nothing */ |
| 1159 | } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { |
| 1160 | *flags |= BDRV_O_UNMAP; |
| 1161 | } else { |
| 1162 | return -1; |
| 1163 | } |
| 1164 | |
| 1165 | return 0; |
| 1166 | } |
| 1167 | |
| 1168 | /** |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1169 | * Set open flags for a given cache mode |
| 1170 | * |
| 1171 | * Return 0 on success, -1 if the cache mode was invalid. |
| 1172 | */ |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1173 | int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1174 | { |
| 1175 | *flags &= ~BDRV_O_CACHE_MASK; |
| 1176 | |
| 1177 | if (!strcmp(mode, "off") || !strcmp(mode, "none")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1178 | *writethrough = false; |
| 1179 | *flags |= BDRV_O_NOCACHE; |
Stefan Hajnoczi | 92196b2 | 2011-08-04 12:26:52 +0100 | [diff] [blame] | 1180 | } else if (!strcmp(mode, "directsync")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1181 | *writethrough = true; |
Stefan Hajnoczi | 92196b2 | 2011-08-04 12:26:52 +0100 | [diff] [blame] | 1182 | *flags |= BDRV_O_NOCACHE; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1183 | } else if (!strcmp(mode, "writeback")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1184 | *writethrough = false; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1185 | } else if (!strcmp(mode, "unsafe")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1186 | *writethrough = false; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1187 | *flags |= BDRV_O_NO_FLUSH; |
| 1188 | } else if (!strcmp(mode, "writethrough")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1189 | *writethrough = true; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1190 | } else { |
| 1191 | return -1; |
| 1192 | } |
| 1193 | |
| 1194 | return 0; |
| 1195 | } |
| 1196 | |
Kevin Wolf | b541155 | 2017-01-17 15:56:16 +0100 | [diff] [blame] | 1197 | static char *bdrv_child_get_parent_desc(BdrvChild *c) |
| 1198 | { |
| 1199 | BlockDriverState *parent = c->opaque; |
Vladimir Sementsov-Ogievskiy | 2c0a3ac | 2021-06-01 10:52:15 +0300 | [diff] [blame] | 1200 | return g_strdup_printf("node '%s'", bdrv_get_node_name(parent)); |
Kevin Wolf | b541155 | 2017-01-17 15:56:16 +0100 | [diff] [blame] | 1201 | } |
| 1202 | |
Emanuele Giuseppe Esposito | d05ab38 | 2023-09-29 16:51:40 +0200 | [diff] [blame] | 1203 | static void GRAPH_RDLOCK bdrv_child_cb_drained_begin(BdrvChild *child) |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1204 | { |
| 1205 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | a82a3bd | 2022-11-18 18:41:07 +0100 | [diff] [blame] | 1206 | bdrv_do_drained_begin_quiesce(bs, NULL); |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1207 | } |
| 1208 | |
Emanuele Giuseppe Esposito | d05ab38 | 2023-09-29 16:51:40 +0200 | [diff] [blame] | 1209 | static bool GRAPH_RDLOCK bdrv_child_cb_drained_poll(BdrvChild *child) |
Kevin Wolf | 89bd030 | 2018-03-22 14:11:20 +0100 | [diff] [blame] | 1210 | { |
| 1211 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | 299403a | 2022-11-18 18:41:05 +0100 | [diff] [blame] | 1212 | return bdrv_drain_poll(bs, NULL, false); |
Kevin Wolf | 89bd030 | 2018-03-22 14:11:20 +0100 | [diff] [blame] | 1213 | } |
| 1214 | |
Emanuele Giuseppe Esposito | d05ab38 | 2023-09-29 16:51:40 +0200 | [diff] [blame] | 1215 | static void GRAPH_RDLOCK bdrv_child_cb_drained_end(BdrvChild *child) |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1216 | { |
| 1217 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | 2f65df6 | 2022-11-18 18:40:59 +0100 | [diff] [blame] | 1218 | bdrv_drained_end(bs); |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1219 | } |
| 1220 | |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 1221 | static int bdrv_child_cb_inactivate(BdrvChild *child) |
| 1222 | { |
| 1223 | BlockDriverState *bs = child->opaque; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1224 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 1225 | assert(bs->open_flags & BDRV_O_INACTIVE); |
| 1226 | return 0; |
| 1227 | } |
| 1228 | |
Fiona Ebner | 844d550 | 2025-05-30 17:10:43 +0200 | [diff] [blame] | 1229 | static bool GRAPH_RDLOCK |
| 1230 | bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx, |
| 1231 | GHashTable *visited, Transaction *tran, |
| 1232 | Error **errp) |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 1233 | { |
| 1234 | BlockDriverState *bs = child->opaque; |
Emanuele Giuseppe Esposito | 27633e7 | 2022-10-25 04:49:47 -0400 | [diff] [blame] | 1235 | return bdrv_change_aio_context(bs, ctx, visited, tran, errp); |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 1236 | } |
| 1237 | |
Kevin Wolf | 0b50cc8 | 2014-04-11 21:29:52 +0200 | [diff] [blame] | 1238 | /* |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1239 | * Returns the options and flags that a temporary snapshot should get, based on |
| 1240 | * the originally requested flags (the originally requested image will have |
| 1241 | * flags like a backing file) |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1242 | */ |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1243 | static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, |
| 1244 | int parent_flags, QDict *parent_options) |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1245 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1246 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1247 | *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; |
| 1248 | |
| 1249 | /* For temporary files, unconditional cache=unsafe is fine */ |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1250 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); |
| 1251 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); |
Kevin Wolf | 4186904 | 2016-06-16 12:59:30 +0200 | [diff] [blame] | 1252 | |
Kevin Wolf | 3f48686 | 2019-04-04 17:04:43 +0200 | [diff] [blame] | 1253 | /* Copy the read-only and discard options from the parent */ |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1254 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); |
Kevin Wolf | 3f48686 | 2019-04-04 17:04:43 +0200 | [diff] [blame] | 1255 | qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1256 | |
Kevin Wolf | 4186904 | 2016-06-16 12:59:30 +0200 | [diff] [blame] | 1257 | /* aio=native doesn't work for cache.direct=off, so disable it for the |
| 1258 | * temporary snapshot */ |
| 1259 | *child_flags &= ~BDRV_O_NATIVE_AIO; |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1260 | } |
| 1261 | |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 1262 | static void GRAPH_WRLOCK bdrv_backing_attach(BdrvChild *c) |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1263 | { |
| 1264 | BlockDriverState *parent = c->opaque; |
| 1265 | BlockDriverState *backing_hd = c->bs; |
| 1266 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1267 | GLOBAL_STATE_CODE(); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1268 | assert(!parent->backing_blocker); |
| 1269 | error_setg(&parent->backing_blocker, |
| 1270 | "node is used as backing hd of '%s'", |
| 1271 | bdrv_get_device_or_node_name(parent)); |
| 1272 | |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 1273 | bdrv_refresh_filename(backing_hd); |
| 1274 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1275 | parent->open_flags &= ~BDRV_O_NO_BACKING; |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1276 | |
| 1277 | bdrv_op_block_all(backing_hd, parent->backing_blocker); |
| 1278 | /* Otherwise we won't be able to commit or stream */ |
| 1279 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, |
| 1280 | parent->backing_blocker); |
| 1281 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, |
| 1282 | parent->backing_blocker); |
| 1283 | /* |
| 1284 | * We do backup in 3 ways: |
| 1285 | * 1. drive backup |
| 1286 | * The target bs is new opened, and the source is top BDS |
| 1287 | * 2. blockdev backup |
| 1288 | * Both the source and the target are top BDSes. |
| 1289 | * 3. internal backup(used for block replication) |
| 1290 | * Both the source and the target are backing file |
| 1291 | * |
| 1292 | * In case 1 and 2, neither the source nor the target is the backing file. |
| 1293 | * In case 3, we will block the top BDS, so there is only one block job |
| 1294 | * for the top BDS and its backing chain. |
| 1295 | */ |
| 1296 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, |
| 1297 | parent->backing_blocker); |
| 1298 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, |
| 1299 | parent->backing_blocker); |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1300 | } |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 1301 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1302 | static void bdrv_backing_detach(BdrvChild *c) |
| 1303 | { |
| 1304 | BlockDriverState *parent = c->opaque; |
| 1305 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1306 | GLOBAL_STATE_CODE(); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1307 | assert(parent->backing_blocker); |
| 1308 | bdrv_op_unblock_all(c->bs, parent->backing_blocker); |
| 1309 | error_free(parent->backing_blocker); |
| 1310 | parent->backing_blocker = NULL; |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1311 | } |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 1312 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1313 | static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1314 | const char *filename, |
| 1315 | bool backing_mask_protocol, |
| 1316 | Error **errp) |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1317 | { |
| 1318 | BlockDriverState *parent = c->opaque; |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1319 | bool read_only = bdrv_is_read_only(parent); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1320 | int ret; |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1321 | const char *format_name; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1322 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1323 | |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1324 | if (read_only) { |
| 1325 | ret = bdrv_reopen_set_read_only(parent, false, errp); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 1326 | if (ret < 0) { |
| 1327 | return ret; |
| 1328 | } |
| 1329 | } |
| 1330 | |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1331 | if (base->drv) { |
| 1332 | /* |
| 1333 | * If the new base image doesn't have a format driver layer, which we |
| 1334 | * detect by the fact that @base is a protocol driver, we record |
| 1335 | * 'raw' as the format instead of putting the protocol name as the |
| 1336 | * backing format |
| 1337 | */ |
| 1338 | if (backing_mask_protocol && base->drv->protocol_name) { |
| 1339 | format_name = "raw"; |
| 1340 | } else { |
| 1341 | format_name = base->drv->format_name; |
| 1342 | } |
| 1343 | } else { |
| 1344 | format_name = ""; |
| 1345 | } |
| 1346 | |
| 1347 | ret = bdrv_change_backing_file(parent, filename, format_name, false); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1348 | if (ret < 0) { |
Kevin Wolf | 6473069 | 2017-11-06 17:52:58 +0100 | [diff] [blame] | 1349 | error_setg_errno(errp, -ret, "Could not update backing file link"); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1350 | } |
| 1351 | |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1352 | if (read_only) { |
| 1353 | bdrv_reopen_set_read_only(parent, true, NULL); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 1354 | } |
| 1355 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1356 | return ret; |
| 1357 | } |
| 1358 | |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1359 | /* |
| 1360 | * Returns the options and flags that a generic child of a BDS should |
| 1361 | * get, based on the given options and flags for the parent BDS. |
| 1362 | */ |
Max Reitz | 00ff7ff | 2020-05-13 13:05:21 +0200 | [diff] [blame] | 1363 | static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format, |
| 1364 | int *child_flags, QDict *child_options, |
| 1365 | int parent_flags, QDict *parent_options) |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1366 | { |
| 1367 | int flags = parent_flags; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1368 | GLOBAL_STATE_CODE(); |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1369 | |
| 1370 | /* |
| 1371 | * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL. |
| 1372 | * Generally, the question to answer is: Should this child be |
| 1373 | * format-probed by default? |
| 1374 | */ |
| 1375 | |
| 1376 | /* |
| 1377 | * Pure and non-filtered data children of non-format nodes should |
| 1378 | * be probed by default (even when the node itself has BDRV_O_PROTOCOL |
| 1379 | * set). This only affects a very limited set of drivers (namely |
| 1380 | * quorum and blkverify when this comment was written). |
| 1381 | * Force-clear BDRV_O_PROTOCOL then. |
| 1382 | */ |
| 1383 | if (!parent_is_format && |
| 1384 | (role & BDRV_CHILD_DATA) && |
| 1385 | !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED))) |
| 1386 | { |
| 1387 | flags &= ~BDRV_O_PROTOCOL; |
| 1388 | } |
| 1389 | |
| 1390 | /* |
| 1391 | * All children of format nodes (except for COW children) and all |
| 1392 | * metadata children in general should never be format-probed. |
| 1393 | * Force-set BDRV_O_PROTOCOL then. |
| 1394 | */ |
| 1395 | if ((parent_is_format && !(role & BDRV_CHILD_COW)) || |
| 1396 | (role & BDRV_CHILD_METADATA)) |
| 1397 | { |
| 1398 | flags |= BDRV_O_PROTOCOL; |
| 1399 | } |
| 1400 | |
| 1401 | /* |
| 1402 | * If the cache mode isn't explicitly set, inherit direct and no-flush from |
| 1403 | * the parent. |
| 1404 | */ |
| 1405 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); |
| 1406 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); |
| 1407 | qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); |
| 1408 | |
| 1409 | if (role & BDRV_CHILD_COW) { |
| 1410 | /* backing files are opened read-only by default */ |
| 1411 | qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); |
| 1412 | qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off"); |
| 1413 | } else { |
| 1414 | /* Inherit the read-only option from the parent if it's not set */ |
| 1415 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); |
| 1416 | qdict_copy_default(child_options, parent_options, |
| 1417 | BDRV_OPT_AUTO_READ_ONLY); |
| 1418 | } |
| 1419 | |
| 1420 | /* |
| 1421 | * bdrv_co_pdiscard() respects unmap policy for the parent, so we |
| 1422 | * can default to enable it on lower layers regardless of the |
| 1423 | * parent option. |
| 1424 | */ |
| 1425 | qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); |
| 1426 | |
| 1427 | /* Clear flags that only apply to the top layer */ |
| 1428 | flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); |
| 1429 | |
| 1430 | if (role & BDRV_CHILD_METADATA) { |
| 1431 | flags &= ~BDRV_O_NO_IO; |
| 1432 | } |
| 1433 | if (role & BDRV_CHILD_COW) { |
| 1434 | flags &= ~BDRV_O_TEMPORARY; |
| 1435 | } |
| 1436 | |
| 1437 | *child_flags = flags; |
| 1438 | } |
| 1439 | |
Kevin Wolf | 303de47 | 2022-12-07 14:18:35 +0100 | [diff] [blame] | 1440 | static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child) |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1441 | { |
| 1442 | BlockDriverState *bs = child->opaque; |
| 1443 | |
Emanuele Giuseppe Esposito | 3f35f82 | 2022-12-07 14:18:33 +0100 | [diff] [blame] | 1444 | assert_bdrv_graph_writable(); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 1445 | QLIST_INSERT_HEAD(&bs->children, child, next); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1446 | if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) { |
| 1447 | /* |
| 1448 | * Here we handle filters and block/raw-format.c when it behave like |
| 1449 | * filter. They generally have a single PRIMARY child, which is also the |
| 1450 | * FILTERED child, and that they may have multiple more children, which |
| 1451 | * are neither PRIMARY nor FILTERED. And never we have a COW child here. |
| 1452 | * So bs->file will be the PRIMARY child, unless the PRIMARY child goes |
| 1453 | * into bs->backing on exceptional cases; and bs->backing will be |
| 1454 | * nothing else. |
| 1455 | */ |
| 1456 | assert(!(child->role & BDRV_CHILD_COW)); |
| 1457 | if (child->role & BDRV_CHILD_PRIMARY) { |
| 1458 | assert(child->role & BDRV_CHILD_FILTERED); |
| 1459 | assert(!bs->backing); |
| 1460 | assert(!bs->file); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 1461 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1462 | if (bs->drv->filtered_child_is_backing) { |
| 1463 | bs->backing = child; |
| 1464 | } else { |
| 1465 | bs->file = child; |
| 1466 | } |
| 1467 | } else { |
| 1468 | assert(!(child->role & BDRV_CHILD_FILTERED)); |
| 1469 | } |
| 1470 | } else if (child->role & BDRV_CHILD_COW) { |
| 1471 | assert(bs->drv->supports_backing); |
| 1472 | assert(!(child->role & BDRV_CHILD_PRIMARY)); |
| 1473 | assert(!bs->backing); |
| 1474 | bs->backing = child; |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1475 | bdrv_backing_attach(child); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1476 | } else if (child->role & BDRV_CHILD_PRIMARY) { |
| 1477 | assert(!bs->file); |
| 1478 | bs->file = child; |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1479 | } |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1480 | } |
| 1481 | |
Kevin Wolf | 303de47 | 2022-12-07 14:18:35 +0100 | [diff] [blame] | 1482 | static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child) |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1483 | { |
| 1484 | BlockDriverState *bs = child->opaque; |
| 1485 | |
| 1486 | if (child->role & BDRV_CHILD_COW) { |
| 1487 | bdrv_backing_detach(child); |
| 1488 | } |
| 1489 | |
Emanuele Giuseppe Esposito | 3f35f82 | 2022-12-07 14:18:33 +0100 | [diff] [blame] | 1490 | assert_bdrv_graph_writable(); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 1491 | QLIST_REMOVE(child, next); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1492 | if (child == bs->backing) { |
| 1493 | assert(child != bs->file); |
| 1494 | bs->backing = NULL; |
| 1495 | } else if (child == bs->file) { |
| 1496 | bs->file = NULL; |
| 1497 | } |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1498 | } |
| 1499 | |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1500 | static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base, |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1501 | const char *filename, |
| 1502 | bool backing_mask_protocol, |
| 1503 | Error **errp) |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1504 | { |
| 1505 | if (c->role & BDRV_CHILD_COW) { |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1506 | return bdrv_backing_update_filename(c, base, filename, |
| 1507 | backing_mask_protocol, |
| 1508 | errp); |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1509 | } |
| 1510 | return 0; |
| 1511 | } |
| 1512 | |
Vladimir Sementsov-Ogievskiy | fb62b58 | 2021-05-24 13:12:56 +0300 | [diff] [blame] | 1513 | AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c) |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1514 | { |
| 1515 | BlockDriverState *bs = c->opaque; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 1516 | IO_CODE(); |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1517 | |
| 1518 | return bdrv_get_aio_context(bs); |
| 1519 | } |
| 1520 | |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1521 | const BdrvChildClass child_of_bds = { |
| 1522 | .parent_is_bds = true, |
| 1523 | .get_parent_desc = bdrv_child_get_parent_desc, |
| 1524 | .inherit_options = bdrv_inherited_options, |
| 1525 | .drained_begin = bdrv_child_cb_drained_begin, |
| 1526 | .drained_poll = bdrv_child_cb_drained_poll, |
| 1527 | .drained_end = bdrv_child_cb_drained_end, |
| 1528 | .attach = bdrv_child_cb_attach, |
| 1529 | .detach = bdrv_child_cb_detach, |
| 1530 | .inactivate = bdrv_child_cb_inactivate, |
Emanuele Giuseppe Esposito | 27633e7 | 2022-10-25 04:49:47 -0400 | [diff] [blame] | 1531 | .change_aio_ctx = bdrv_child_cb_change_aio_ctx, |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1532 | .update_filename = bdrv_child_cb_update_filename, |
Vladimir Sementsov-Ogievskiy | fb62b58 | 2021-05-24 13:12:56 +0300 | [diff] [blame] | 1533 | .get_parent_aio_context = child_of_bds_get_parent_aio_context, |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1534 | }; |
| 1535 | |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1536 | AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c) |
| 1537 | { |
Hanna Reitz | d5f8d79 | 2022-11-07 16:13:19 +0100 | [diff] [blame] | 1538 | IO_CODE(); |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1539 | return c->klass->get_parent_aio_context(c); |
| 1540 | } |
| 1541 | |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1542 | static int bdrv_open_flags(BlockDriverState *bs, int flags) |
| 1543 | { |
Kevin Wolf | 61de4c6 | 2016-03-18 17:46:45 +0100 | [diff] [blame] | 1544 | int open_flags = flags; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1545 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1546 | |
| 1547 | /* |
| 1548 | * Clear flags that are internal to the block layer before opening the |
| 1549 | * image. |
| 1550 | */ |
Kevin Wolf | 20cca27 | 2014-06-04 14:33:27 +0200 | [diff] [blame] | 1551 | open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1552 | |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1553 | return open_flags; |
| 1554 | } |
| 1555 | |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1556 | static void update_flags_from_options(int *flags, QemuOpts *opts) |
| 1557 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1558 | GLOBAL_STATE_CODE(); |
| 1559 | |
Alberto Garcia | 2a3d433 | 2018-11-12 16:00:48 +0200 | [diff] [blame] | 1560 | *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1561 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1562 | 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] | 1563 | *flags |= BDRV_O_NO_FLUSH; |
| 1564 | } |
| 1565 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1566 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1567 | *flags |= BDRV_O_NOCACHE; |
| 1568 | } |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1569 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1570 | if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) { |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1571 | *flags |= BDRV_O_RDWR; |
| 1572 | } |
| 1573 | |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1574 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) { |
| 1575 | *flags |= BDRV_O_AUTO_RDONLY; |
| 1576 | } |
Kevin Wolf | faecd16 | 2025-02-04 22:13:58 +0100 | [diff] [blame] | 1577 | |
| 1578 | if (!qemu_opt_get_bool_del(opts, BDRV_OPT_ACTIVE, true)) { |
| 1579 | *flags |= BDRV_O_INACTIVE; |
| 1580 | } |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1581 | } |
| 1582 | |
| 1583 | static void update_options_from_flags(QDict *options, int flags) |
| 1584 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1585 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1586 | if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1587 | qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1588 | } |
| 1589 | if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1590 | qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, |
| 1591 | flags & BDRV_O_NO_FLUSH); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1592 | } |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1593 | if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1594 | qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1595 | } |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1596 | if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) { |
| 1597 | qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY, |
| 1598 | flags & BDRV_O_AUTO_RDONLY); |
| 1599 | } |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1600 | } |
| 1601 | |
Kevin Wolf | 636ea37 | 2014-01-24 14:11:52 +0100 | [diff] [blame] | 1602 | static void bdrv_assign_node_name(BlockDriverState *bs, |
| 1603 | const char *node_name, |
| 1604 | Error **errp) |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1605 | { |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1606 | char *gen_node_name = NULL; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1607 | GLOBAL_STATE_CODE(); |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1608 | |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1609 | if (!node_name) { |
| 1610 | node_name = gen_node_name = id_generate(ID_BLOCK); |
| 1611 | } else if (!id_wellformed(node_name)) { |
| 1612 | /* |
| 1613 | * Check for empty string or invalid characters, but not if it is |
| 1614 | * generated (generated names use characters not available to the user) |
| 1615 | */ |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 1616 | error_setg(errp, "Invalid node-name: '%s'", node_name); |
Kevin Wolf | 636ea37 | 2014-01-24 14:11:52 +0100 | [diff] [blame] | 1617 | return; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1618 | } |
| 1619 | |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1620 | /* takes care of avoiding namespaces collisions */ |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 1621 | if (blk_by_name(node_name)) { |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1622 | error_setg(errp, "node-name=%s is conflicting with a device id", |
| 1623 | node_name); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1624 | goto out; |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1625 | } |
| 1626 | |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1627 | /* takes care of avoiding duplicates node names */ |
| 1628 | if (bdrv_find_node(node_name)) { |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 1629 | error_setg(errp, "Duplicate nodes with node-name='%s'", node_name); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1630 | goto out; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1631 | } |
| 1632 | |
Kevin Wolf | 824808d | 2018-07-04 13:28:29 +0200 | [diff] [blame] | 1633 | /* Make sure that the node name isn't truncated */ |
| 1634 | if (strlen(node_name) >= sizeof(bs->node_name)) { |
| 1635 | error_setg(errp, "Node name too long"); |
| 1636 | goto out; |
| 1637 | } |
| 1638 | |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1639 | /* copy node name into the bs and insert it into the graph list */ |
| 1640 | pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); |
| 1641 | QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1642 | out: |
| 1643 | g_free(gen_node_name); |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1644 | } |
| 1645 | |
Kevin Wolf | 1a30b0f | 2023-05-04 13:57:38 +0200 | [diff] [blame] | 1646 | static int no_coroutine_fn GRAPH_UNLOCKED |
| 1647 | bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, const char *node_name, |
| 1648 | QDict *options, int open_flags, Error **errp) |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1649 | { |
| 1650 | Error *local_err = NULL; |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1651 | int i, ret; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 1652 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1653 | |
| 1654 | bdrv_assign_node_name(bs, node_name, &local_err); |
| 1655 | if (local_err) { |
| 1656 | error_propagate(errp, local_err); |
| 1657 | return -EINVAL; |
| 1658 | } |
| 1659 | |
| 1660 | bs->drv = drv; |
| 1661 | bs->opaque = g_malloc0(drv->instance_size); |
| 1662 | |
Paolo Bonzini | ae8b45d | 2022-11-24 16:29:06 +0100 | [diff] [blame] | 1663 | assert(!drv->bdrv_needs_filename || bs->filename[0]); |
Paolo Bonzini | 44b424d | 2022-11-24 16:22:22 +0100 | [diff] [blame] | 1664 | if (drv->bdrv_open) { |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1665 | ret = drv->bdrv_open(bs, options, open_flags, &local_err); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1666 | } else { |
| 1667 | ret = 0; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1668 | } |
| 1669 | |
| 1670 | if (ret < 0) { |
| 1671 | if (local_err) { |
| 1672 | error_propagate(errp, local_err); |
| 1673 | } else if (bs->filename[0]) { |
| 1674 | error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); |
| 1675 | } else { |
| 1676 | error_setg_errno(errp, -ret, "Could not open image"); |
| 1677 | } |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1678 | goto open_failed; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1679 | } |
| 1680 | |
Stefan Hajnoczi | e8b6535 | 2022-10-13 14:59:01 -0400 | [diff] [blame] | 1681 | assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK)); |
| 1682 | assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK)); |
| 1683 | |
| 1684 | /* |
| 1685 | * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves |
| 1686 | * drivers that pass read/write requests through to a child the trouble of |
| 1687 | * declaring support explicitly. |
| 1688 | * |
| 1689 | * Drivers must not propagate this flag accidentally when they initiate I/O |
| 1690 | * to a bounce buffer. That case should be rare though. |
| 1691 | */ |
| 1692 | bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF; |
| 1693 | bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF; |
| 1694 | |
Emanuele Giuseppe Esposito | c057960 | 2023-01-13 21:42:03 +0100 | [diff] [blame] | 1695 | ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1696 | if (ret < 0) { |
| 1697 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1698 | return ret; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1699 | } |
| 1700 | |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 1701 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 1702 | bdrv_refresh_limits(bs, NULL, &local_err); |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 1703 | bdrv_graph_rdunlock_main_loop(); |
| 1704 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1705 | if (local_err) { |
| 1706 | error_propagate(errp, local_err); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1707 | return -EINVAL; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1708 | } |
| 1709 | |
| 1710 | assert(bdrv_opt_mem_align(bs) != 0); |
| 1711 | assert(bdrv_min_mem_align(bs) != 0); |
| 1712 | assert(is_power_of_2(bs->bl.request_alignment)); |
| 1713 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1714 | for (i = 0; i < bs->quiesce_counter; i++) { |
Kevin Wolf | 5e8ac21 | 2022-11-18 18:40:58 +0100 | [diff] [blame] | 1715 | if (drv->bdrv_drain_begin) { |
| 1716 | drv->bdrv_drain_begin(bs); |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1717 | } |
| 1718 | } |
| 1719 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1720 | return 0; |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1721 | open_failed: |
| 1722 | bs->drv = NULL; |
Kevin Wolf | 1f051dc | 2023-10-27 17:53:33 +0200 | [diff] [blame] | 1723 | |
Fiona Ebner | b13f546 | 2025-05-30 17:10:52 +0200 | [diff] [blame] | 1724 | bdrv_drain_all_begin(); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 1725 | bdrv_graph_wrlock(); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1726 | if (bs->file != NULL) { |
| 1727 | bdrv_unref_child(bs, bs->file); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1728 | assert(!bs->file); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1729 | } |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 1730 | bdrv_graph_wrunlock(); |
Fiona Ebner | b13f546 | 2025-05-30 17:10:52 +0200 | [diff] [blame] | 1731 | bdrv_drain_all_end(); |
Kevin Wolf | 1f051dc | 2023-10-27 17:53:33 +0200 | [diff] [blame] | 1732 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1733 | g_free(bs->opaque); |
| 1734 | bs->opaque = NULL; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1735 | return ret; |
| 1736 | } |
| 1737 | |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1738 | /* |
| 1739 | * Create and open a block node. |
| 1740 | * |
| 1741 | * @options is a QDict of options to pass to the block drivers, or NULL for an |
| 1742 | * empty set of options. The reference to the QDict belongs to the block layer |
| 1743 | * after the call (even on failure), so if the caller intends to reuse the |
| 1744 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
| 1745 | */ |
| 1746 | BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv, |
| 1747 | const char *node_name, |
| 1748 | QDict *options, int flags, |
| 1749 | Error **errp) |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1750 | { |
| 1751 | BlockDriverState *bs; |
| 1752 | int ret; |
| 1753 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 1754 | GLOBAL_STATE_CODE(); |
| 1755 | |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1756 | bs = bdrv_new(); |
| 1757 | bs->open_flags = flags; |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1758 | bs->options = options ?: qdict_new(); |
| 1759 | bs->explicit_options = qdict_clone_shallow(bs->options); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1760 | bs->opaque = NULL; |
| 1761 | |
| 1762 | update_options_from_flags(bs->options, flags); |
| 1763 | |
| 1764 | ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); |
| 1765 | if (ret < 0) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1766 | qobject_unref(bs->explicit_options); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1767 | bs->explicit_options = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1768 | qobject_unref(bs->options); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1769 | bs->options = NULL; |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1770 | bdrv_unref(bs); |
| 1771 | return NULL; |
| 1772 | } |
| 1773 | |
| 1774 | return bs; |
| 1775 | } |
| 1776 | |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1777 | /* Create and open a block node. */ |
| 1778 | BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, |
| 1779 | int flags, Error **errp) |
| 1780 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 1781 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1782 | return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp); |
| 1783 | } |
| 1784 | |
Kevin Wolf | c5f3014 | 2016-10-06 11:33:17 +0200 | [diff] [blame] | 1785 | QemuOptsList bdrv_runtime_opts = { |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1786 | .name = "bdrv_common", |
| 1787 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), |
| 1788 | .desc = { |
| 1789 | { |
| 1790 | .name = "node-name", |
| 1791 | .type = QEMU_OPT_STRING, |
| 1792 | .help = "Node name of the block device node", |
| 1793 | }, |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1794 | { |
| 1795 | .name = "driver", |
| 1796 | .type = QEMU_OPT_STRING, |
| 1797 | .help = "Block driver to use for the node", |
| 1798 | }, |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1799 | { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1800 | .name = BDRV_OPT_CACHE_DIRECT, |
| 1801 | .type = QEMU_OPT_BOOL, |
| 1802 | .help = "Bypass software writeback cache on the host", |
| 1803 | }, |
| 1804 | { |
| 1805 | .name = BDRV_OPT_CACHE_NO_FLUSH, |
| 1806 | .type = QEMU_OPT_BOOL, |
| 1807 | .help = "Ignore flush requests", |
| 1808 | }, |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1809 | { |
Kevin Wolf | faecd16 | 2025-02-04 22:13:58 +0100 | [diff] [blame] | 1810 | .name = BDRV_OPT_ACTIVE, |
| 1811 | .type = QEMU_OPT_BOOL, |
| 1812 | .help = "Node is activated", |
| 1813 | }, |
| 1814 | { |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1815 | .name = BDRV_OPT_READ_ONLY, |
| 1816 | .type = QEMU_OPT_BOOL, |
| 1817 | .help = "Node is opened in read-only mode", |
| 1818 | }, |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1819 | { |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1820 | .name = BDRV_OPT_AUTO_READ_ONLY, |
| 1821 | .type = QEMU_OPT_BOOL, |
| 1822 | .help = "Node can become read-only if opening read-write fails", |
| 1823 | }, |
| 1824 | { |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1825 | .name = "detect-zeroes", |
| 1826 | .type = QEMU_OPT_STRING, |
| 1827 | .help = "try to optimize zero writes (off, on, unmap)", |
| 1828 | }, |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1829 | { |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 1830 | .name = BDRV_OPT_DISCARD, |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1831 | .type = QEMU_OPT_STRING, |
| 1832 | .help = "discard operation (ignore/off, unmap/on)", |
| 1833 | }, |
Fam Zheng | 5a9347c | 2017-05-03 00:35:37 +0800 | [diff] [blame] | 1834 | { |
| 1835 | .name = BDRV_OPT_FORCE_SHARE, |
| 1836 | .type = QEMU_OPT_BOOL, |
| 1837 | .help = "always accept other writers (default: off)", |
| 1838 | }, |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1839 | { /* end of list */ } |
| 1840 | }, |
| 1841 | }; |
| 1842 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 1843 | QemuOptsList bdrv_create_opts_simple = { |
| 1844 | .name = "simple-create-opts", |
| 1845 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head), |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 1846 | .desc = { |
| 1847 | { |
| 1848 | .name = BLOCK_OPT_SIZE, |
| 1849 | .type = QEMU_OPT_SIZE, |
| 1850 | .help = "Virtual disk size" |
| 1851 | }, |
| 1852 | { |
| 1853 | .name = BLOCK_OPT_PREALLOC, |
| 1854 | .type = QEMU_OPT_STRING, |
| 1855 | .help = "Preallocation mode (allowed values: off)" |
| 1856 | }, |
| 1857 | { /* end of list */ } |
| 1858 | } |
| 1859 | }; |
| 1860 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 1861 | /* |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1862 | * Common part for opening disk images and files |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 1863 | * |
| 1864 | * Removes all processed options from *options. |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1865 | */ |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1866 | static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1867 | QDict *options, Error **errp) |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1868 | { |
| 1869 | int ret, open_flags; |
Kevin Wolf | 035fccd | 2013-04-09 14:34:19 +0200 | [diff] [blame] | 1870 | const char *filename; |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1871 | const char *driver_name = NULL; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1872 | const char *node_name = NULL; |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1873 | const char *discard; |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1874 | QemuOpts *opts; |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1875 | BlockDriver *drv; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1876 | Error *local_err = NULL; |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1877 | bool ro; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1878 | |
Kevin Wolf | 1f051dc | 2023-10-27 17:53:33 +0200 | [diff] [blame] | 1879 | GLOBAL_STATE_CODE(); |
| 1880 | |
| 1881 | bdrv_graph_rdlock_main_loop(); |
Paolo Bonzini | 6405875 | 2012-05-08 16:51:49 +0200 | [diff] [blame] | 1882 | assert(bs->file == NULL); |
Kevin Wolf | 707ff82 | 2013-03-06 12:20:31 +0100 | [diff] [blame] | 1883 | assert(options != NULL && bs->options != options); |
Kevin Wolf | 1f051dc | 2023-10-27 17:53:33 +0200 | [diff] [blame] | 1884 | bdrv_graph_rdunlock_main_loop(); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1885 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1886 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 1887 | if (!qemu_opts_absorb_qdict(opts, options, errp)) { |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1888 | ret = -EINVAL; |
| 1889 | goto fail_opts; |
| 1890 | } |
| 1891 | |
Alberto Garcia | 9b7e869 | 2016-09-15 17:53:01 +0300 | [diff] [blame] | 1892 | update_flags_from_options(&bs->open_flags, opts); |
| 1893 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1894 | driver_name = qemu_opt_get(opts, "driver"); |
| 1895 | drv = bdrv_find_format(driver_name); |
| 1896 | assert(drv != NULL); |
| 1897 | |
Fam Zheng | 5a9347c | 2017-05-03 00:35:37 +0800 | [diff] [blame] | 1898 | bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); |
| 1899 | |
| 1900 | if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { |
| 1901 | error_setg(errp, |
| 1902 | BDRV_OPT_FORCE_SHARE |
| 1903 | "=on can only be used with read-only images"); |
| 1904 | ret = -EINVAL; |
| 1905 | goto fail_opts; |
| 1906 | } |
| 1907 | |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1908 | if (file != NULL) { |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 1909 | bdrv_graph_rdlock_main_loop(); |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 1910 | bdrv_refresh_filename(blk_bs(file)); |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 1911 | bdrv_graph_rdunlock_main_loop(); |
| 1912 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1913 | filename = blk_bs(file)->filename; |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1914 | } else { |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 1915 | /* |
| 1916 | * Caution: while qdict_get_try_str() is fine, getting |
| 1917 | * non-string types would require more care. When @options |
| 1918 | * come from -blockdev or blockdev_add, its members are typed |
| 1919 | * according to the QAPI schema, but when they come from |
| 1920 | * -drive, they're all QString. |
| 1921 | */ |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1922 | filename = qdict_get_try_str(options, "filename"); |
| 1923 | } |
| 1924 | |
Max Reitz | 4a00824 | 2017-04-13 18:06:24 +0200 | [diff] [blame] | 1925 | if (drv->bdrv_needs_filename && (!filename || !filename[0])) { |
Kevin Wolf | 765003d | 2014-02-03 14:49:42 +0100 | [diff] [blame] | 1926 | error_setg(errp, "The '%s' block driver requires a file name", |
| 1927 | drv->format_name); |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1928 | ret = -EINVAL; |
| 1929 | goto fail_opts; |
| 1930 | } |
| 1931 | |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1932 | trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, |
| 1933 | drv->format_name); |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1934 | |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1935 | ro = bdrv_is_read_only(bs); |
| 1936 | |
| 1937 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) { |
| 1938 | if (!ro && bdrv_is_whitelisted(drv, true)) { |
Kevin Wolf | 018f9de | 2023-09-29 16:51:53 +0200 | [diff] [blame] | 1939 | bdrv_graph_rdlock_main_loop(); |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1940 | ret = bdrv_apply_auto_read_only(bs, NULL, NULL); |
Kevin Wolf | 018f9de | 2023-09-29 16:51:53 +0200 | [diff] [blame] | 1941 | bdrv_graph_rdunlock_main_loop(); |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1942 | } else { |
| 1943 | ret = -ENOTSUP; |
| 1944 | } |
| 1945 | if (ret < 0) { |
| 1946 | error_setg(errp, |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1947 | !ro && bdrv_is_whitelisted(drv, true) |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1948 | ? "Driver '%s' can only be used for read-only devices" |
| 1949 | : "Driver '%s' is not whitelisted", |
| 1950 | drv->format_name); |
| 1951 | goto fail_opts; |
| 1952 | } |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 1953 | } |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1954 | |
Paolo Bonzini | d3faa13 | 2017-06-05 14:38:50 +0200 | [diff] [blame] | 1955 | /* bdrv_new() and bdrv_close() make it so */ |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 1956 | assert(qatomic_read(&bs->copy_on_read) == 0); |
Paolo Bonzini | d3faa13 | 2017-06-05 14:38:50 +0200 | [diff] [blame] | 1957 | |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1958 | if (bs->open_flags & BDRV_O_COPY_ON_READ) { |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1959 | if (!ro) { |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 1960 | bdrv_enable_copy_on_read(bs); |
| 1961 | } else { |
| 1962 | 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] | 1963 | ret = -EINVAL; |
| 1964 | goto fail_opts; |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 1965 | } |
Stefan Hajnoczi | 53fec9d | 2011-11-28 16:08:47 +0000 | [diff] [blame] | 1966 | } |
| 1967 | |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 1968 | discard = qemu_opt_get(opts, BDRV_OPT_DISCARD); |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1969 | if (discard != NULL) { |
| 1970 | if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { |
| 1971 | error_setg(errp, "Invalid discard option"); |
| 1972 | ret = -EINVAL; |
| 1973 | goto fail_opts; |
| 1974 | } |
| 1975 | } |
| 1976 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1977 | bs->detect_zeroes = |
| 1978 | bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err); |
| 1979 | if (local_err) { |
| 1980 | error_propagate(errp, local_err); |
| 1981 | ret = -EINVAL; |
| 1982 | goto fail_opts; |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1983 | } |
| 1984 | |
Kevin Wolf | c2ad1b0 | 2013-03-18 16:40:51 +0100 | [diff] [blame] | 1985 | if (filename != NULL) { |
| 1986 | pstrcpy(bs->filename, sizeof(bs->filename), filename); |
| 1987 | } else { |
| 1988 | bs->filename[0] = '\0'; |
| 1989 | } |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 1990 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1991 | |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 1992 | /* Open the image, either directly or using a protocol */ |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1993 | open_flags = bdrv_open_flags(bs, bs->open_flags); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1994 | node_name = qemu_opt_get(opts, "node-name"); |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 1995 | |
Paolo Bonzini | 41770f6 | 2022-11-24 16:21:18 +0100 | [diff] [blame] | 1996 | assert(!drv->protocol_name || file == NULL); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1997 | ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1998 | if (ret < 0) { |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1999 | goto fail_opts; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 2000 | } |
| 2001 | |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 2002 | qemu_opts_del(opts); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 2003 | return 0; |
| 2004 | |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 2005 | fail_opts: |
| 2006 | qemu_opts_del(opts); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 2007 | return ret; |
| 2008 | } |
| 2009 | |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2010 | static QDict *parse_json_filename(const char *filename, Error **errp) |
| 2011 | { |
Zhao Liu | 7b22e05 | 2024-03-11 11:37:56 +0800 | [diff] [blame] | 2012 | ERRP_GUARD(); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2013 | QObject *options_obj; |
| 2014 | QDict *options; |
| 2015 | int ret; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2016 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2017 | |
| 2018 | ret = strstart(filename, "json:", &filename); |
| 2019 | assert(ret); |
| 2020 | |
Markus Armbruster | 5577fff | 2017-02-28 22:26:59 +0100 | [diff] [blame] | 2021 | options_obj = qobject_from_json(filename, errp); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2022 | if (!options_obj) { |
Markus Armbruster | 5577fff | 2017-02-28 22:26:59 +0100 | [diff] [blame] | 2023 | error_prepend(errp, "Could not parse the JSON options: "); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2024 | return NULL; |
| 2025 | } |
| 2026 | |
Max Reitz | 7dc847e | 2018-02-24 16:40:29 +0100 | [diff] [blame] | 2027 | options = qobject_to(QDict, options_obj); |
Markus Armbruster | ca6b6e1 | 2017-02-17 21:38:18 +0100 | [diff] [blame] | 2028 | if (!options) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 2029 | qobject_unref(options_obj); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2030 | error_setg(errp, "Invalid JSON object given"); |
| 2031 | return NULL; |
| 2032 | } |
| 2033 | |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2034 | qdict_flatten(options); |
| 2035 | |
| 2036 | return options; |
| 2037 | } |
| 2038 | |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2039 | static void parse_json_protocol(QDict *options, const char **pfilename, |
| 2040 | Error **errp) |
| 2041 | { |
| 2042 | QDict *json_options; |
| 2043 | Error *local_err = NULL; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2044 | GLOBAL_STATE_CODE(); |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2045 | |
| 2046 | /* Parse json: pseudo-protocol */ |
| 2047 | if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { |
| 2048 | return; |
| 2049 | } |
| 2050 | |
| 2051 | json_options = parse_json_filename(*pfilename, &local_err); |
| 2052 | if (local_err) { |
| 2053 | error_propagate(errp, local_err); |
| 2054 | return; |
| 2055 | } |
| 2056 | |
| 2057 | /* Options given in the filename have lower priority than options |
| 2058 | * specified directly */ |
| 2059 | qdict_join(options, json_options, false); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 2060 | qobject_unref(json_options); |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2061 | *pfilename = NULL; |
| 2062 | } |
| 2063 | |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 2064 | /* |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2065 | * Fills in default options for opening images and converts the legacy |
| 2066 | * filename/flags pair to option QDict entries. |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2067 | * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a |
| 2068 | * block driver has been specified explicitly. |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2069 | */ |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2070 | static int bdrv_fill_options(QDict **options, const char *filename, |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 2071 | int *flags, bool allow_parse_filename, |
| 2072 | Error **errp) |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2073 | { |
| 2074 | const char *drvname; |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2075 | bool protocol = *flags & BDRV_O_PROTOCOL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2076 | bool parse_filename = false; |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2077 | BlockDriver *drv = NULL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2078 | Error *local_err = NULL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2079 | |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2080 | GLOBAL_STATE_CODE(); |
| 2081 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 2082 | /* |
| 2083 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 2084 | * types would require more care. When @options come from |
| 2085 | * -blockdev or blockdev_add, its members are typed according to |
| 2086 | * the QAPI schema, but when they come from -drive, they're all |
| 2087 | * QString. |
| 2088 | */ |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2089 | drvname = qdict_get_try_str(*options, "driver"); |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2090 | if (drvname) { |
| 2091 | drv = bdrv_find_format(drvname); |
| 2092 | if (!drv) { |
| 2093 | error_setg(errp, "Unknown driver '%s'", drvname); |
| 2094 | return -ENOENT; |
| 2095 | } |
| 2096 | /* If the user has explicitly specified the driver, this choice should |
| 2097 | * override the BDRV_O_PROTOCOL flag */ |
Paolo Bonzini | 41770f6 | 2022-11-24 16:21:18 +0100 | [diff] [blame] | 2098 | protocol = drv->protocol_name; |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2099 | } |
| 2100 | |
| 2101 | if (protocol) { |
| 2102 | *flags |= BDRV_O_PROTOCOL; |
| 2103 | } else { |
| 2104 | *flags &= ~BDRV_O_PROTOCOL; |
| 2105 | } |
| 2106 | |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 2107 | /* Translate cache options from flags into options */ |
| 2108 | update_options_from_flags(*options, *flags); |
| 2109 | |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2110 | /* Fetch the file name from the options QDict if necessary */ |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 2111 | if (protocol && filename) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2112 | if (!qdict_haskey(*options, "filename")) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 2113 | qdict_put_str(*options, "filename", filename); |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 2114 | parse_filename = allow_parse_filename; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2115 | } else { |
| 2116 | error_setg(errp, "Can't specify 'file' and 'filename' options at " |
| 2117 | "the same time"); |
| 2118 | return -EINVAL; |
| 2119 | } |
| 2120 | } |
| 2121 | |
| 2122 | /* Find the right block driver */ |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 2123 | /* See cautionary note on accessing @options above */ |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2124 | filename = qdict_get_try_str(*options, "filename"); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2125 | |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2126 | if (!drvname && protocol) { |
| 2127 | if (filename) { |
| 2128 | drv = bdrv_find_protocol(filename, parse_filename, errp); |
| 2129 | if (!drv) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2130 | return -EINVAL; |
| 2131 | } |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2132 | |
| 2133 | drvname = drv->format_name; |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 2134 | qdict_put_str(*options, "driver", drvname); |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2135 | } else { |
| 2136 | error_setg(errp, "Must specify either driver or file"); |
| 2137 | return -EINVAL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2138 | } |
| 2139 | } |
| 2140 | |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 2141 | assert(drv || !protocol); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2142 | |
| 2143 | /* Driver-specific filename parsing */ |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 2144 | if (drv && drv->bdrv_parse_filename && parse_filename) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2145 | drv->bdrv_parse_filename(filename, *options, &local_err); |
| 2146 | if (local_err) { |
| 2147 | error_propagate(errp, local_err); |
| 2148 | return -EINVAL; |
| 2149 | } |
| 2150 | |
| 2151 | if (!drv->bdrv_needs_filename) { |
| 2152 | qdict_del(*options, "filename"); |
| 2153 | } |
| 2154 | } |
| 2155 | |
| 2156 | return 0; |
| 2157 | } |
| 2158 | |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2159 | typedef struct BlockReopenQueueEntry { |
| 2160 | bool prepared; |
| 2161 | BDRVReopenState state; |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 2162 | QTAILQ_ENTRY(BlockReopenQueueEntry) entry; |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2163 | } BlockReopenQueueEntry; |
| 2164 | |
| 2165 | /* |
| 2166 | * Return the flags that @bs will have after the reopens in @q have |
| 2167 | * successfully completed. If @q is NULL (or @bs is not contained in @q), |
| 2168 | * return the current flags. |
| 2169 | */ |
| 2170 | static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) |
| 2171 | { |
| 2172 | BlockReopenQueueEntry *entry; |
| 2173 | |
| 2174 | if (q != NULL) { |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 2175 | QTAILQ_FOREACH(entry, q, entry) { |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2176 | if (entry->state.bs == bs) { |
| 2177 | return entry->state.flags; |
| 2178 | } |
| 2179 | } |
| 2180 | } |
| 2181 | |
| 2182 | return bs->open_flags; |
| 2183 | } |
| 2184 | |
| 2185 | /* Returns whether the image file can be written to after the reopen queue @q |
| 2186 | * has been successfully applied, or right now if @q is NULL. */ |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2187 | static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, |
| 2188 | BlockReopenQueue *q) |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2189 | { |
| 2190 | int flags = bdrv_reopen_get_flags(q, bs); |
| 2191 | |
| 2192 | return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; |
| 2193 | } |
| 2194 | |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2195 | /* |
| 2196 | * Return whether the BDS can be written to. This is not necessarily |
| 2197 | * the same as !bdrv_is_read_only(bs), as inactivated images may not |
| 2198 | * be written to but do not count as read-only images. |
| 2199 | */ |
| 2200 | bool bdrv_is_writable(BlockDriverState *bs) |
| 2201 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 2202 | IO_CODE(); |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2203 | return bdrv_is_writable_after_reopen(bs, NULL); |
| 2204 | } |
| 2205 | |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2206 | static char *bdrv_child_user_desc(BdrvChild *c) |
| 2207 | { |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 2208 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | da261b6 | 2021-06-01 10:52:17 +0300 | [diff] [blame] | 2209 | return c->klass->get_parent_desc(c); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2210 | } |
| 2211 | |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2212 | /* |
| 2213 | * Check that @a allows everything that @b needs. @a and @b must reference same |
| 2214 | * child node. |
| 2215 | */ |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2216 | static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp) |
| 2217 | { |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2218 | const char *child_bs_name; |
| 2219 | g_autofree char *a_user = NULL; |
| 2220 | g_autofree char *b_user = NULL; |
| 2221 | g_autofree char *perms = NULL; |
| 2222 | |
| 2223 | assert(a->bs); |
| 2224 | assert(a->bs == b->bs); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2225 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2226 | |
| 2227 | if ((b->perm & a->shared_perm) == b->perm) { |
| 2228 | return true; |
| 2229 | } |
| 2230 | |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2231 | child_bs_name = bdrv_get_node_name(b->bs); |
| 2232 | a_user = bdrv_child_user_desc(a); |
| 2233 | b_user = bdrv_child_user_desc(b); |
| 2234 | perms = bdrv_perm_names(b->perm & ~a->shared_perm); |
| 2235 | |
| 2236 | error_setg(errp, "Permission conflict on node '%s': permissions '%s' are " |
| 2237 | "both required by %s (uses node '%s' as '%s' child) and " |
| 2238 | "unshared by %s (uses node '%s' as '%s' child).", |
| 2239 | child_bs_name, perms, |
| 2240 | b_user, child_bs_name, b->name, |
| 2241 | a_user, child_bs_name, a->name); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2242 | |
| 2243 | return false; |
| 2244 | } |
| 2245 | |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2246 | static bool GRAPH_RDLOCK |
| 2247 | bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp) |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2248 | { |
| 2249 | BdrvChild *a, *b; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2250 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2251 | |
| 2252 | /* |
| 2253 | * During the loop we'll look at each pair twice. That's correct because |
| 2254 | * bdrv_a_allow_b() is asymmetric and we should check each pair in both |
| 2255 | * directions. |
| 2256 | */ |
| 2257 | QLIST_FOREACH(a, &bs->parents, next_parent) { |
| 2258 | QLIST_FOREACH(b, &bs->parents, next_parent) { |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2259 | if (a == b) { |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2260 | continue; |
| 2261 | } |
| 2262 | |
| 2263 | if (!bdrv_a_allow_b(a, b, errp)) { |
| 2264 | return true; |
| 2265 | } |
| 2266 | } |
| 2267 | } |
| 2268 | |
| 2269 | return false; |
| 2270 | } |
| 2271 | |
Kevin Wolf | c629b6d | 2023-09-11 11:46:14 +0200 | [diff] [blame] | 2272 | static void GRAPH_RDLOCK |
| 2273 | bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, |
| 2274 | BdrvChild *c, BdrvChildRole role, |
| 2275 | BlockReopenQueue *reopen_queue, |
| 2276 | uint64_t parent_perm, uint64_t parent_shared, |
| 2277 | uint64_t *nperm, uint64_t *nshared) |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2278 | { |
Alberto Garcia | 0b3ca76 | 2019-04-04 14:29:53 +0300 | [diff] [blame] | 2279 | assert(bs->drv && bs->drv->bdrv_child_perm); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2280 | GLOBAL_STATE_CODE(); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2281 | bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, |
Alberto Garcia | 0b3ca76 | 2019-04-04 14:29:53 +0300 | [diff] [blame] | 2282 | parent_perm, parent_shared, |
| 2283 | nperm, nshared); |
Kevin Wolf | e0995dc | 2017-09-14 12:47:11 +0200 | [diff] [blame] | 2284 | /* TODO Take force_share from reopen_queue */ |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2285 | if (child_bs && child_bs->force_share) { |
| 2286 | *nshared = BLK_PERM_ALL; |
| 2287 | } |
| 2288 | } |
| 2289 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2290 | /* |
| 2291 | * Adds the whole subtree of @bs (including @bs itself) to the @list (except for |
| 2292 | * nodes that are already in the @list, of course) so that final list is |
| 2293 | * topologically sorted. Return the result (GSList @list object is updated, so |
| 2294 | * don't use old reference after function call). |
| 2295 | * |
| 2296 | * On function start @list must be already topologically sorted and for any node |
| 2297 | * in the @list the whole subtree of the node must be in the @list as well. The |
| 2298 | * simplest way to satisfy this criteria: use only result of |
| 2299 | * bdrv_topological_dfs() or NULL as @list parameter. |
| 2300 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2301 | static GSList * GRAPH_RDLOCK |
| 2302 | bdrv_topological_dfs(GSList *list, GHashTable *found, BlockDriverState *bs) |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2303 | { |
| 2304 | BdrvChild *child; |
| 2305 | g_autoptr(GHashTable) local_found = NULL; |
| 2306 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2307 | GLOBAL_STATE_CODE(); |
| 2308 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2309 | if (!found) { |
| 2310 | assert(!list); |
| 2311 | found = local_found = g_hash_table_new(NULL, NULL); |
| 2312 | } |
| 2313 | |
| 2314 | if (g_hash_table_contains(found, bs)) { |
| 2315 | return list; |
| 2316 | } |
| 2317 | g_hash_table_add(found, bs); |
| 2318 | |
| 2319 | QLIST_FOREACH(child, &bs->children, next) { |
| 2320 | list = bdrv_topological_dfs(list, found, child->bs); |
| 2321 | } |
| 2322 | |
| 2323 | return g_slist_prepend(list, bs); |
| 2324 | } |
| 2325 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2326 | typedef struct BdrvChildSetPermState { |
| 2327 | BdrvChild *child; |
| 2328 | uint64_t old_perm; |
| 2329 | uint64_t old_shared_perm; |
| 2330 | } BdrvChildSetPermState; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2331 | |
| 2332 | static void bdrv_child_set_perm_abort(void *opaque) |
| 2333 | { |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2334 | BdrvChildSetPermState *s = opaque; |
| 2335 | |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2336 | GLOBAL_STATE_CODE(); |
| 2337 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2338 | s->child->perm = s->old_perm; |
| 2339 | s->child->shared_perm = s->old_shared_perm; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2340 | } |
| 2341 | |
| 2342 | static TransactionActionDrv bdrv_child_set_pem_drv = { |
| 2343 | .abort = bdrv_child_set_perm_abort, |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2344 | .clean = g_free, |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2345 | }; |
| 2346 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2347 | static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, |
| 2348 | uint64_t shared, Transaction *tran) |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2349 | { |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2350 | BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2351 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2352 | |
| 2353 | *s = (BdrvChildSetPermState) { |
| 2354 | .child = c, |
| 2355 | .old_perm = c->perm, |
| 2356 | .old_shared_perm = c->shared_perm, |
| 2357 | }; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2358 | |
| 2359 | c->perm = perm; |
| 2360 | c->shared_perm = shared; |
| 2361 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2362 | tran_add(tran, &bdrv_child_set_pem_drv, s); |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2363 | } |
| 2364 | |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2365 | static void GRAPH_RDLOCK bdrv_drv_set_perm_commit(void *opaque) |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2366 | { |
| 2367 | BlockDriverState *bs = opaque; |
| 2368 | uint64_t cumulative_perms, cumulative_shared_perms; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2369 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2370 | |
| 2371 | if (bs->drv->bdrv_set_perm) { |
| 2372 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
| 2373 | &cumulative_shared_perms); |
| 2374 | bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); |
| 2375 | } |
| 2376 | } |
| 2377 | |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2378 | static void GRAPH_RDLOCK bdrv_drv_set_perm_abort(void *opaque) |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2379 | { |
| 2380 | BlockDriverState *bs = opaque; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2381 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2382 | |
| 2383 | if (bs->drv->bdrv_abort_perm_update) { |
| 2384 | bs->drv->bdrv_abort_perm_update(bs); |
| 2385 | } |
| 2386 | } |
| 2387 | |
| 2388 | TransactionActionDrv bdrv_drv_set_perm_drv = { |
| 2389 | .abort = bdrv_drv_set_perm_abort, |
| 2390 | .commit = bdrv_drv_set_perm_commit, |
| 2391 | }; |
| 2392 | |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2393 | /* |
| 2394 | * After calling this function, the transaction @tran may only be completed |
| 2395 | * while holding a reader lock for the graph. |
| 2396 | */ |
| 2397 | static int GRAPH_RDLOCK |
| 2398 | bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared_perm, |
| 2399 | Transaction *tran, Error **errp) |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2400 | { |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2401 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2402 | if (!bs->drv) { |
| 2403 | return 0; |
| 2404 | } |
| 2405 | |
| 2406 | if (bs->drv->bdrv_check_perm) { |
| 2407 | int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp); |
| 2408 | if (ret < 0) { |
| 2409 | return ret; |
| 2410 | } |
| 2411 | } |
| 2412 | |
| 2413 | if (tran) { |
| 2414 | tran_add(tran, &bdrv_drv_set_perm_drv, bs); |
| 2415 | } |
| 2416 | |
| 2417 | return 0; |
| 2418 | } |
| 2419 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2420 | typedef struct BdrvReplaceChildState { |
| 2421 | BdrvChild *child; |
| 2422 | BlockDriverState *old_bs; |
| 2423 | } BdrvReplaceChildState; |
| 2424 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2425 | static void GRAPH_WRLOCK bdrv_replace_child_commit(void *opaque) |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2426 | { |
| 2427 | BdrvReplaceChildState *s = opaque; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2428 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2429 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2430 | bdrv_schedule_unref(s->old_bs); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2431 | } |
| 2432 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2433 | static void GRAPH_WRLOCK bdrv_replace_child_abort(void *opaque) |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2434 | { |
| 2435 | BdrvReplaceChildState *s = opaque; |
| 2436 | BlockDriverState *new_bs = s->child->bs; |
| 2437 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2438 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2439 | assert_bdrv_graph_writable(); |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 2440 | |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2441 | /* old_bs reference is transparently moved from @s to @s->child */ |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2442 | if (!s->child->bs) { |
| 2443 | /* |
| 2444 | * The parents were undrained when removing old_bs from the child. New |
| 2445 | * requests can't have been made, though, because the child was empty. |
| 2446 | * |
| 2447 | * TODO Make bdrv_replace_child_noperm() transactionable to avoid |
| 2448 | * undraining the parent in the first place. Once this is done, having |
| 2449 | * new_bs drained when calling bdrv_replace_child_tran() is not a |
| 2450 | * requirement any more. |
| 2451 | */ |
Kevin Wolf | 606ed75 | 2022-11-18 18:41:10 +0100 | [diff] [blame] | 2452 | bdrv_parent_drained_begin_single(s->child); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2453 | assert(!bdrv_parent_drained_poll_single(s->child)); |
| 2454 | } |
| 2455 | assert(s->child->quiesced_parent); |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 2456 | bdrv_replace_child_noperm(s->child, s->old_bs); |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 2457 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2458 | bdrv_unref(new_bs); |
| 2459 | } |
| 2460 | |
| 2461 | static TransactionActionDrv bdrv_replace_child_drv = { |
| 2462 | .commit = bdrv_replace_child_commit, |
| 2463 | .abort = bdrv_replace_child_abort, |
| 2464 | .clean = g_free, |
| 2465 | }; |
| 2466 | |
| 2467 | /* |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2468 | * bdrv_replace_child_tran |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2469 | * |
| 2470 | * Note: real unref of old_bs is done only on commit. |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2471 | * |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2472 | * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be |
| 2473 | * kept drained until the transaction is completed. |
| 2474 | * |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2475 | * After calling this function, the transaction @tran may only be completed |
| 2476 | * while holding a writer lock for the graph. |
| 2477 | * |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2478 | * The function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2479 | */ |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 2480 | static void GRAPH_WRLOCK |
| 2481 | bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs, |
| 2482 | Transaction *tran) |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2483 | { |
| 2484 | BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2485 | |
| 2486 | assert(child->quiesced_parent); |
| 2487 | assert(!new_bs || new_bs->quiesce_counter); |
| 2488 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2489 | *s = (BdrvReplaceChildState) { |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2490 | .child = child, |
| 2491 | .old_bs = child->bs, |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2492 | }; |
| 2493 | tran_add(tran, &bdrv_replace_child_drv, s); |
| 2494 | |
| 2495 | if (new_bs) { |
| 2496 | bdrv_ref(new_bs); |
| 2497 | } |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 2498 | |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 2499 | bdrv_replace_child_noperm(child, new_bs); |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2500 | /* old_bs reference is transparently moved from @child to @s */ |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2501 | } |
| 2502 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2503 | /* |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2504 | * Refresh permissions in @bs subtree. The function is intended to be called |
| 2505 | * after some graph modification that was done without permission update. |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2506 | * |
| 2507 | * After calling this function, the transaction @tran may only be completed |
| 2508 | * while holding a reader lock for the graph. |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2509 | */ |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2510 | static int GRAPH_RDLOCK |
| 2511 | bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q, |
| 2512 | Transaction *tran, Error **errp) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2513 | { |
| 2514 | BlockDriver *drv = bs->drv; |
| 2515 | BdrvChild *c; |
| 2516 | int ret; |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2517 | uint64_t cumulative_perms, cumulative_shared_perms; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2518 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2519 | |
| 2520 | bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2521 | |
| 2522 | /* Write permissions never work with read-only images */ |
| 2523 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2524 | !bdrv_is_writable_after_reopen(bs, q)) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2525 | { |
Max Reitz | 481e0ee | 2019-05-15 22:15:00 +0200 | [diff] [blame] | 2526 | if (!bdrv_is_writable_after_reopen(bs, NULL)) { |
| 2527 | error_setg(errp, "Block node is read-only"); |
| 2528 | } else { |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2529 | error_setg(errp, "Read-only block node '%s' cannot support " |
| 2530 | "read-write users", bdrv_get_node_name(bs)); |
Max Reitz | 481e0ee | 2019-05-15 22:15:00 +0200 | [diff] [blame] | 2531 | } |
| 2532 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2533 | return -EPERM; |
| 2534 | } |
| 2535 | |
Kevin Wolf | 9c60a5d | 2020-07-16 16:26:00 +0200 | [diff] [blame] | 2536 | /* |
| 2537 | * Unaligned requests will automatically be aligned to bl.request_alignment |
| 2538 | * and without RESIZE we can't extend requests to write to space beyond the |
| 2539 | * end of the image, so it's required that the image size is aligned. |
| 2540 | */ |
| 2541 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && |
| 2542 | !(cumulative_perms & BLK_PERM_RESIZE)) |
| 2543 | { |
| 2544 | if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) { |
| 2545 | error_setg(errp, "Cannot get 'write' permission without 'resize': " |
| 2546 | "Image size is not a multiple of request " |
| 2547 | "alignment"); |
| 2548 | return -EPERM; |
| 2549 | } |
| 2550 | } |
| 2551 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2552 | /* Check this node */ |
| 2553 | if (!drv) { |
| 2554 | return 0; |
| 2555 | } |
| 2556 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2557 | 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] | 2558 | errp); |
| 2559 | if (ret < 0) { |
| 2560 | return ret; |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2561 | } |
| 2562 | |
Kevin Wolf | 78e421c | 2016-12-20 23:25:12 +0100 | [diff] [blame] | 2563 | /* Drivers that never have children can omit .bdrv_child_perm() */ |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2564 | if (!drv->bdrv_child_perm) { |
Kevin Wolf | 78e421c | 2016-12-20 23:25:12 +0100 | [diff] [blame] | 2565 | assert(QLIST_EMPTY(&bs->children)); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2566 | return 0; |
| 2567 | } |
| 2568 | |
| 2569 | /* Check all children */ |
| 2570 | QLIST_FOREACH(c, &bs->children, next) { |
| 2571 | uint64_t cur_perm, cur_shared; |
Max Reitz | 9eab154 | 2019-05-22 19:03:50 +0200 | [diff] [blame] | 2572 | |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2573 | bdrv_child_perm(bs, c->bs, c, c->role, q, |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2574 | cumulative_perms, cumulative_shared_perms, |
| 2575 | &cur_perm, &cur_shared); |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2576 | bdrv_child_set_perm(c, cur_perm, cur_shared, tran); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2577 | } |
| 2578 | |
| 2579 | return 0; |
| 2580 | } |
| 2581 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2582 | /* |
| 2583 | * @list is a product of bdrv_topological_dfs() (may be called several times) - |
| 2584 | * a topologically sorted subgraph. |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2585 | * |
| 2586 | * After calling this function, the transaction @tran may only be completed |
| 2587 | * while holding a reader lock for the graph. |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2588 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2589 | static int GRAPH_RDLOCK |
| 2590 | bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran, |
| 2591 | Error **errp) |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2592 | { |
| 2593 | int ret; |
| 2594 | BlockDriverState *bs; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2595 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2596 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2597 | for ( ; list; list = list->next) { |
| 2598 | bs = list->data; |
| 2599 | |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2600 | if (bdrv_parent_perms_conflict(bs, errp)) { |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2601 | return -EINVAL; |
| 2602 | } |
| 2603 | |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2604 | ret = bdrv_node_refresh_perm(bs, q, tran, errp); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2605 | if (ret < 0) { |
| 2606 | return ret; |
| 2607 | } |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2608 | } |
Vladimir Sementsov-Ogievskiy | 3ef45e0 | 2021-04-28 18:17:40 +0300 | [diff] [blame] | 2609 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2610 | return 0; |
| 2611 | } |
| 2612 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2613 | /* |
| 2614 | * @list is any list of nodes. List is completed by all subtrees and |
| 2615 | * topologically sorted. It's not a problem if some node occurs in the @list |
| 2616 | * several times. |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2617 | * |
| 2618 | * After calling this function, the transaction @tran may only be completed |
| 2619 | * while holding a reader lock for the graph. |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2620 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2621 | static int GRAPH_RDLOCK |
| 2622 | bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran, |
| 2623 | Error **errp) |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2624 | { |
| 2625 | g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL); |
| 2626 | g_autoptr(GSList) refresh_list = NULL; |
| 2627 | |
| 2628 | for ( ; list; list = list->next) { |
| 2629 | refresh_list = bdrv_topological_dfs(refresh_list, found, list->data); |
| 2630 | } |
| 2631 | |
| 2632 | return bdrv_do_refresh_perms(refresh_list, q, tran, errp); |
| 2633 | } |
| 2634 | |
Kevin Wolf | c7a0f2b | 2020-03-10 12:38:25 +0100 | [diff] [blame] | 2635 | void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, |
| 2636 | uint64_t *shared_perm) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2637 | { |
| 2638 | BdrvChild *c; |
| 2639 | uint64_t cumulative_perms = 0; |
| 2640 | uint64_t cumulative_shared_perms = BLK_PERM_ALL; |
| 2641 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2642 | GLOBAL_STATE_CODE(); |
| 2643 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2644 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
| 2645 | cumulative_perms |= c->perm; |
| 2646 | cumulative_shared_perms &= c->shared_perm; |
| 2647 | } |
| 2648 | |
| 2649 | *perm = cumulative_perms; |
| 2650 | *shared_perm = cumulative_shared_perms; |
| 2651 | } |
| 2652 | |
Fam Zheng | 5176196 | 2017-05-03 00:35:36 +0800 | [diff] [blame] | 2653 | char *bdrv_perm_names(uint64_t perm) |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2654 | { |
| 2655 | struct perm_name { |
| 2656 | uint64_t perm; |
| 2657 | const char *name; |
| 2658 | } permissions[] = { |
| 2659 | { BLK_PERM_CONSISTENT_READ, "consistent read" }, |
| 2660 | { BLK_PERM_WRITE, "write" }, |
| 2661 | { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, |
| 2662 | { BLK_PERM_RESIZE, "resize" }, |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2663 | { 0, NULL } |
| 2664 | }; |
| 2665 | |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2666 | GString *result = g_string_sized_new(30); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2667 | struct perm_name *p; |
| 2668 | |
| 2669 | for (p = permissions; p->name; p++) { |
| 2670 | if (perm & p->perm) { |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2671 | if (result->len > 0) { |
| 2672 | g_string_append(result, ", "); |
| 2673 | } |
| 2674 | g_string_append(result, p->name); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2675 | } |
| 2676 | } |
| 2677 | |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2678 | return g_string_free(result, FALSE); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2679 | } |
| 2680 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2681 | |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2682 | /* |
| 2683 | * @tran is allowed to be NULL. In this case no rollback is possible. |
| 2684 | * |
| 2685 | * After calling this function, the transaction @tran may only be completed |
| 2686 | * while holding a reader lock for the graph. |
| 2687 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2688 | static int GRAPH_RDLOCK |
| 2689 | bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran, Error **errp) |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2690 | { |
| 2691 | int ret; |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2692 | Transaction *local_tran = NULL; |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2693 | g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2694 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2695 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2696 | if (!tran) { |
| 2697 | tran = local_tran = tran_new(); |
| 2698 | } |
| 2699 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2700 | ret = bdrv_do_refresh_perms(list, NULL, tran, errp); |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2701 | |
| 2702 | if (local_tran) { |
| 2703 | tran_finalize(local_tran, ret); |
| 2704 | } |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2705 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2706 | return ret; |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2707 | } |
| 2708 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2709 | int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, |
| 2710 | Error **errp) |
| 2711 | { |
Max Reitz | 1046779 | 2019-05-22 19:03:51 +0200 | [diff] [blame] | 2712 | Error *local_err = NULL; |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2713 | Transaction *tran = tran_new(); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2714 | int ret; |
| 2715 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2716 | GLOBAL_STATE_CODE(); |
| 2717 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2718 | bdrv_child_set_perm(c, perm, shared, tran); |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2719 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2720 | ret = bdrv_refresh_perms(c->bs, tran, &local_err); |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2721 | |
| 2722 | tran_finalize(tran, ret); |
| 2723 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2724 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | 071b474 | 2020-11-06 15:42:41 +0300 | [diff] [blame] | 2725 | if ((perm & ~c->perm) || (c->shared_perm & ~shared)) { |
| 2726 | /* tighten permissions */ |
Max Reitz | 1046779 | 2019-05-22 19:03:51 +0200 | [diff] [blame] | 2727 | error_propagate(errp, local_err); |
| 2728 | } else { |
| 2729 | /* |
| 2730 | * Our caller may intend to only loosen restrictions and |
| 2731 | * does not expect this function to fail. Errors are not |
| 2732 | * fatal in such a case, so we can just hide them from our |
| 2733 | * caller. |
| 2734 | */ |
| 2735 | error_free(local_err); |
| 2736 | ret = 0; |
| 2737 | } |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2738 | } |
| 2739 | |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2740 | return ret; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2741 | } |
| 2742 | |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2743 | int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp) |
| 2744 | { |
| 2745 | uint64_t parent_perms, parent_shared; |
| 2746 | uint64_t perms, shared; |
| 2747 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2748 | GLOBAL_STATE_CODE(); |
| 2749 | |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2750 | bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2751 | bdrv_child_perm(bs, c->bs, c, c->role, NULL, |
Max Reitz | bf8e925 | 2020-05-13 13:05:16 +0200 | [diff] [blame] | 2752 | parent_perms, parent_shared, &perms, &shared); |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2753 | |
| 2754 | return bdrv_child_try_set_perm(c, perms, shared, errp); |
| 2755 | } |
| 2756 | |
Max Reitz | 87278af | 2020-05-13 13:05:40 +0200 | [diff] [blame] | 2757 | /* |
| 2758 | * Default implementation for .bdrv_child_perm() for block filters: |
| 2759 | * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the |
| 2760 | * filtered child. |
| 2761 | */ |
| 2762 | static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 87278af | 2020-05-13 13:05:40 +0200 | [diff] [blame] | 2763 | BdrvChildRole role, |
| 2764 | BlockReopenQueue *reopen_queue, |
| 2765 | uint64_t perm, uint64_t shared, |
| 2766 | uint64_t *nperm, uint64_t *nshared) |
Kevin Wolf | 6a1b9ee | 2016-12-15 11:27:32 +0100 | [diff] [blame] | 2767 | { |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2768 | GLOBAL_STATE_CODE(); |
Kevin Wolf | e444fa8 | 2019-08-02 15:59:41 +0200 | [diff] [blame] | 2769 | *nperm = perm & DEFAULT_PERM_PASSTHROUGH; |
| 2770 | *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; |
Kevin Wolf | 6a1b9ee | 2016-12-15 11:27:32 +0100 | [diff] [blame] | 2771 | } |
| 2772 | |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2773 | static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2774 | BdrvChildRole role, |
| 2775 | BlockReopenQueue *reopen_queue, |
| 2776 | uint64_t perm, uint64_t shared, |
| 2777 | uint64_t *nperm, uint64_t *nshared) |
| 2778 | { |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2779 | assert(role & BDRV_CHILD_COW); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2780 | GLOBAL_STATE_CODE(); |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2781 | |
| 2782 | /* |
| 2783 | * We want consistent read from backing files if the parent needs it. |
| 2784 | * No other operations are performed on backing files. |
| 2785 | */ |
| 2786 | perm &= BLK_PERM_CONSISTENT_READ; |
| 2787 | |
| 2788 | /* |
| 2789 | * If the parent can deal with changing data, we're okay with a |
| 2790 | * writable and resizable backing file. |
| 2791 | * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? |
| 2792 | */ |
| 2793 | if (shared & BLK_PERM_WRITE) { |
| 2794 | shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2795 | } else { |
| 2796 | shared = 0; |
| 2797 | } |
| 2798 | |
Vladimir Sementsov-Ogievskiy | 64631f3 | 2021-09-02 12:37:54 +0300 | [diff] [blame] | 2799 | shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED; |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2800 | |
| 2801 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 2802 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2803 | } |
| 2804 | |
| 2805 | *nperm = perm; |
| 2806 | *nshared = shared; |
| 2807 | } |
| 2808 | |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2809 | static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2810 | BdrvChildRole role, |
| 2811 | BlockReopenQueue *reopen_queue, |
| 2812 | uint64_t perm, uint64_t shared, |
| 2813 | uint64_t *nperm, uint64_t *nshared) |
| 2814 | { |
| 2815 | int flags; |
| 2816 | |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2817 | GLOBAL_STATE_CODE(); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2818 | assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)); |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2819 | |
| 2820 | flags = bdrv_reopen_get_flags(reopen_queue, bs); |
| 2821 | |
| 2822 | /* |
| 2823 | * Apart from the modifications below, the same permissions are |
| 2824 | * forwarded and left alone as for filters |
| 2825 | */ |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2826 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2827 | perm, shared, &perm, &shared); |
| 2828 | |
Max Reitz | f889054 | 2020-05-13 13:05:28 +0200 | [diff] [blame] | 2829 | if (role & BDRV_CHILD_METADATA) { |
| 2830 | /* Format drivers may touch metadata even if the guest doesn't write */ |
| 2831 | if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { |
| 2832 | perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2833 | } |
| 2834 | |
| 2835 | /* |
| 2836 | * bs->file always needs to be consistent because of the |
| 2837 | * metadata. We can never allow other users to resize or write |
| 2838 | * to it. |
| 2839 | */ |
| 2840 | if (!(flags & BDRV_O_NO_IO)) { |
| 2841 | perm |= BLK_PERM_CONSISTENT_READ; |
| 2842 | } |
| 2843 | shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2844 | } |
| 2845 | |
Max Reitz | f889054 | 2020-05-13 13:05:28 +0200 | [diff] [blame] | 2846 | if (role & BDRV_CHILD_DATA) { |
| 2847 | /* |
| 2848 | * Technically, everything in this block is a subset of the |
| 2849 | * BDRV_CHILD_METADATA path taken above, and so this could |
| 2850 | * be an "else if" branch. However, that is not obvious, and |
| 2851 | * this function is not performance critical, therefore we let |
| 2852 | * this be an independent "if". |
| 2853 | */ |
| 2854 | |
| 2855 | /* |
| 2856 | * We cannot allow other users to resize the file because the |
| 2857 | * format driver might have some assumptions about the size |
| 2858 | * (e.g. because it is stored in metadata, or because the file |
| 2859 | * is split into fixed-size data files). |
| 2860 | */ |
| 2861 | shared &= ~BLK_PERM_RESIZE; |
| 2862 | |
| 2863 | /* |
| 2864 | * WRITE_UNCHANGED often cannot be performed as such on the |
| 2865 | * data file. For example, the qcow2 driver may still need to |
| 2866 | * write copied clusters on copy-on-read. |
| 2867 | */ |
| 2868 | if (perm & BLK_PERM_WRITE_UNCHANGED) { |
| 2869 | perm |= BLK_PERM_WRITE; |
| 2870 | } |
| 2871 | |
| 2872 | /* |
| 2873 | * If the data file is written to, the format driver may |
| 2874 | * expect to be able to resize it by writing beyond the EOF. |
| 2875 | */ |
| 2876 | if (perm & BLK_PERM_WRITE) { |
| 2877 | perm |= BLK_PERM_RESIZE; |
| 2878 | } |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2879 | } |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2880 | |
| 2881 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 2882 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2883 | } |
| 2884 | |
| 2885 | *nperm = perm; |
| 2886 | *nshared = shared; |
| 2887 | } |
| 2888 | |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2889 | void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2890 | BdrvChildRole role, BlockReopenQueue *reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2891 | uint64_t perm, uint64_t shared, |
| 2892 | uint64_t *nperm, uint64_t *nshared) |
| 2893 | { |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2894 | GLOBAL_STATE_CODE(); |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2895 | if (role & BDRV_CHILD_FILTERED) { |
| 2896 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | |
| 2897 | BDRV_CHILD_COW))); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2898 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2899 | perm, shared, nperm, nshared); |
| 2900 | } else if (role & BDRV_CHILD_COW) { |
| 2901 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA))); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2902 | bdrv_default_perms_for_cow(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2903 | perm, shared, nperm, nshared); |
| 2904 | } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) { |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2905 | bdrv_default_perms_for_storage(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2906 | perm, shared, nperm, nshared); |
| 2907 | } else { |
| 2908 | g_assert_not_reached(); |
| 2909 | } |
| 2910 | } |
| 2911 | |
Max Reitz | 7b1d9c4 | 2019-11-08 13:34:51 +0100 | [diff] [blame] | 2912 | uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm) |
| 2913 | { |
| 2914 | static const uint64_t permissions[] = { |
| 2915 | [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ, |
| 2916 | [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE, |
| 2917 | [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED, |
| 2918 | [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE, |
Max Reitz | 7b1d9c4 | 2019-11-08 13:34:51 +0100 | [diff] [blame] | 2919 | }; |
| 2920 | |
| 2921 | QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX); |
| 2922 | QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1); |
| 2923 | |
| 2924 | assert(qapi_perm < BLOCK_PERMISSION__MAX); |
| 2925 | |
| 2926 | return permissions[qapi_perm]; |
| 2927 | } |
| 2928 | |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2929 | /* |
| 2930 | * Replaces the node that a BdrvChild points to without updating permissions. |
| 2931 | * |
| 2932 | * If @new_bs is non-NULL, the parent of @child must already be drained through |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 2933 | * @child. |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2934 | */ |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 2935 | static void GRAPH_WRLOCK |
| 2936 | bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs) |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2937 | { |
| 2938 | BlockDriverState *old_bs = child->bs; |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2939 | int new_bs_quiesce_counter; |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2940 | |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 2941 | assert(!child->frozen); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2942 | |
| 2943 | /* |
| 2944 | * If we want to change the BdrvChild to point to a drained node as its new |
| 2945 | * child->bs, we need to make sure that its new parent is drained, too. In |
| 2946 | * other words, either child->quiesce_parent must already be true or we must |
| 2947 | * be able to set it and keep the parent's quiesce_counter consistent with |
| 2948 | * that, but without polling or starting new requests (this function |
| 2949 | * guarantees that it doesn't poll, and starting new requests would be |
| 2950 | * against the invariants of drain sections). |
| 2951 | * |
| 2952 | * To keep things simple, we pick the first option (child->quiesce_parent |
| 2953 | * must already be true). We also generalise the rule a bit to make it |
| 2954 | * easier to verify in callers and more likely to be covered in test cases: |
| 2955 | * The parent must be quiesced through this child even if new_bs isn't |
| 2956 | * currently drained. |
| 2957 | * |
| 2958 | * The only exception is for callers that always pass new_bs == NULL. In |
| 2959 | * this case, we obviously never need to consider the case of a drained |
| 2960 | * new_bs, so we can keep the callers simpler by allowing them not to drain |
| 2961 | * the parent. |
| 2962 | */ |
| 2963 | assert(!new_bs || child->quiesced_parent); |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 2964 | assert(old_bs != new_bs); |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 2965 | GLOBAL_STATE_CODE(); |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 2966 | |
Fam Zheng | bb2614e | 2017-04-07 14:54:10 +0800 | [diff] [blame] | 2967 | if (old_bs && new_bs) { |
| 2968 | assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); |
| 2969 | } |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2970 | |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2971 | if (old_bs) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2972 | if (child->klass->detach) { |
| 2973 | child->klass->detach(child); |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 2974 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2975 | QLIST_REMOVE(child, next_parent); |
| 2976 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2977 | |
| 2978 | child->bs = new_bs; |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 2979 | |
| 2980 | if (new_bs) { |
| 2981 | QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2982 | if (child->klass->attach) { |
| 2983 | child->klass->attach(child); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 2984 | } |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 2985 | } |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2986 | |
| 2987 | /* |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2988 | * If the parent was drained through this BdrvChild previously, but new_bs |
| 2989 | * is not drained, allow requests to come in only after the new node has |
| 2990 | * been attached. |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2991 | */ |
Kevin Wolf | 57e05be | 2022-11-18 18:41:06 +0100 | [diff] [blame] | 2992 | new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0); |
| 2993 | if (!new_bs_quiesce_counter && child->quiesced_parent) { |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2994 | bdrv_parent_drained_end_single(child); |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2995 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2996 | } |
| 2997 | |
Hanna Reitz | 04c9c3a | 2021-11-15 15:53:59 +0100 | [diff] [blame] | 2998 | /** |
| 2999 | * Free the given @child. |
| 3000 | * |
| 3001 | * The child must be empty (i.e. `child->bs == NULL`) and it must be |
| 3002 | * unused (i.e. not in a children list). |
| 3003 | */ |
| 3004 | static void bdrv_child_free(BdrvChild *child) |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3005 | { |
| 3006 | assert(!child->bs); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3007 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 680e0cc | 2023-09-29 16:51:56 +0200 | [diff] [blame] | 3008 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 3009 | |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 3010 | assert(!child->next.le_prev); /* not in children list */ |
Hanna Reitz | 04c9c3a | 2021-11-15 15:53:59 +0100 | [diff] [blame] | 3011 | |
| 3012 | g_free(child->name); |
| 3013 | g_free(child); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3014 | } |
| 3015 | |
| 3016 | typedef struct BdrvAttachChildCommonState { |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3017 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3018 | AioContext *old_parent_ctx; |
| 3019 | AioContext *old_child_ctx; |
| 3020 | } BdrvAttachChildCommonState; |
| 3021 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3022 | static void GRAPH_WRLOCK bdrv_attach_child_common_abort(void *opaque) |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3023 | { |
| 3024 | BdrvAttachChildCommonState *s = opaque; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3025 | BlockDriverState *bs = s->child->bs; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3026 | |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 3027 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3028 | assert_bdrv_graph_writable(); |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 3029 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3030 | bdrv_replace_child_noperm(s->child, NULL); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3031 | |
| 3032 | if (bdrv_get_aio_context(bs) != s->old_child_ctx) { |
Fiona Ebner | a1ea8eb | 2025-05-30 17:10:46 +0200 | [diff] [blame] | 3033 | bdrv_try_change_aio_context_locked(bs, s->old_child_ctx, NULL, |
| 3034 | &error_abort); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3035 | } |
| 3036 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3037 | if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) { |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3038 | Transaction *tran; |
| 3039 | GHashTable *visited; |
| 3040 | bool ret; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3041 | |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3042 | tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3043 | |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3044 | /* No need to visit `child`, because it has been detached already */ |
| 3045 | visited = g_hash_table_new(NULL, NULL); |
| 3046 | ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx, |
| 3047 | visited, tran, &error_abort); |
| 3048 | g_hash_table_destroy(visited); |
| 3049 | |
| 3050 | /* transaction is supposed to always succeed */ |
| 3051 | assert(ret == true); |
| 3052 | tran_commit(tran); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3053 | } |
| 3054 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3055 | bdrv_schedule_unref(bs); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3056 | bdrv_child_free(s->child); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3057 | } |
| 3058 | |
| 3059 | static TransactionActionDrv bdrv_attach_child_common_drv = { |
| 3060 | .abort = bdrv_attach_child_common_abort, |
| 3061 | .clean = g_free, |
| 3062 | }; |
| 3063 | |
| 3064 | /* |
| 3065 | * 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] | 3066 | * |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 3067 | * Function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3068 | * |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3069 | * After calling this function, the transaction @tran may only be completed |
| 3070 | * while holding a writer lock for the graph. |
| 3071 | * |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3072 | * Returns new created child. |
Kevin Wolf | c066e80 | 2023-06-05 10:57:05 +0200 | [diff] [blame] | 3073 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3074 | * Both @parent_bs and @child_bs can move to a different AioContext in this |
| 3075 | * function. |
Fiona Ebner | 2b83359 | 2025-05-30 17:10:47 +0200 | [diff] [blame] | 3076 | * |
| 3077 | * All block nodes must be drained before this function is called until after |
| 3078 | * the transaction is finalized. |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3079 | */ |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3080 | static BdrvChild * GRAPH_WRLOCK |
| 3081 | bdrv_attach_child_common(BlockDriverState *child_bs, |
| 3082 | const char *child_name, |
| 3083 | const BdrvChildClass *child_class, |
| 3084 | BdrvChildRole child_role, |
| 3085 | uint64_t perm, uint64_t shared_perm, |
| 3086 | void *opaque, |
| 3087 | Transaction *tran, Error **errp) |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3088 | { |
| 3089 | BdrvChild *new_child; |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 3090 | AioContext *parent_ctx; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3091 | AioContext *child_ctx = bdrv_get_aio_context(child_bs); |
| 3092 | |
Vladimir Sementsov-Ogievskiy | da261b6 | 2021-06-01 10:52:17 +0300 | [diff] [blame] | 3093 | assert(child_class->get_parent_desc); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3094 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3095 | |
Kevin Wolf | 8c2c72a | 2025-02-04 22:13:57 +0100 | [diff] [blame] | 3096 | if (bdrv_is_inactive(child_bs) && (perm & ~BLK_PERM_CONSISTENT_READ)) { |
| 3097 | g_autofree char *perm_names = bdrv_perm_names(perm); |
| 3098 | error_setg(errp, "Permission '%s' unavailable on inactive node", |
| 3099 | perm_names); |
| 3100 | return NULL; |
| 3101 | } |
| 3102 | |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3103 | new_child = g_new(BdrvChild, 1); |
| 3104 | *new_child = (BdrvChild) { |
| 3105 | .bs = NULL, |
| 3106 | .name = g_strdup(child_name), |
| 3107 | .klass = child_class, |
| 3108 | .role = child_role, |
| 3109 | .perm = perm, |
| 3110 | .shared_perm = shared_perm, |
| 3111 | .opaque = opaque, |
| 3112 | }; |
| 3113 | |
| 3114 | /* |
| 3115 | * If the AioContexts don't match, first try to move the subtree of |
| 3116 | * child_bs into the AioContext of the new parent. If this doesn't work, |
| 3117 | * try moving the parent into the AioContext of child_bs instead. |
| 3118 | */ |
| 3119 | parent_ctx = bdrv_child_get_parent_aio_context(new_child); |
| 3120 | if (child_ctx != parent_ctx) { |
| 3121 | Error *local_err = NULL; |
Fiona Ebner | a1ea8eb | 2025-05-30 17:10:46 +0200 | [diff] [blame] | 3122 | int ret = bdrv_try_change_aio_context_locked(child_bs, parent_ctx, NULL, |
| 3123 | &local_err); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3124 | |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3125 | if (ret < 0 && child_class->change_aio_ctx) { |
Markus Armbruster | fb2575f | 2023-09-21 14:13:11 +0200 | [diff] [blame] | 3126 | Transaction *aio_ctx_tran = tran_new(); |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3127 | GHashTable *visited = g_hash_table_new(NULL, NULL); |
| 3128 | bool ret_child; |
| 3129 | |
| 3130 | g_hash_table_add(visited, new_child); |
| 3131 | ret_child = child_class->change_aio_ctx(new_child, child_ctx, |
Markus Armbruster | fb2575f | 2023-09-21 14:13:11 +0200 | [diff] [blame] | 3132 | visited, aio_ctx_tran, |
| 3133 | NULL); |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3134 | if (ret_child == true) { |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3135 | error_free(local_err); |
| 3136 | ret = 0; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3137 | } |
Markus Armbruster | fb2575f | 2023-09-21 14:13:11 +0200 | [diff] [blame] | 3138 | tran_finalize(aio_ctx_tran, ret_child == true ? 0 : -1); |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3139 | g_hash_table_destroy(visited); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3140 | } |
| 3141 | |
| 3142 | if (ret < 0) { |
| 3143 | error_propagate(errp, local_err); |
Hanna Reitz | 04c9c3a | 2021-11-15 15:53:59 +0100 | [diff] [blame] | 3144 | bdrv_child_free(new_child); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3145 | return NULL; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3146 | } |
| 3147 | } |
| 3148 | |
| 3149 | bdrv_ref(child_bs); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 3150 | /* |
| 3151 | * Let every new BdrvChild start with a drained parent. Inserting the child |
| 3152 | * in the graph with bdrv_replace_child_noperm() will undrain it if |
| 3153 | * @child_bs is not drained. |
| 3154 | * |
| 3155 | * The child was only just created and is not yet visible in global state |
| 3156 | * until bdrv_replace_child_noperm() inserts it into the graph, so nobody |
| 3157 | * could have sent requests and polling is not necessary. |
| 3158 | * |
| 3159 | * Note that this means that the parent isn't fully drained yet, we only |
| 3160 | * stop new requests from coming in. This is fine, we don't care about the |
| 3161 | * old requests here, they are not for this child. If another place enters a |
| 3162 | * drain section for the same parent, but wants it to be fully quiesced, it |
Michael Tokarev | 8c3edfa | 2025-05-07 20:03:13 +0300 | [diff] [blame] | 3163 | * will not run most of the code in .drained_begin() again (which is not |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 3164 | * a problem, we already did this), but it will still poll until the parent |
| 3165 | * is fully quiesced, so it will not be negatively affected either. |
| 3166 | */ |
Kevin Wolf | 606ed75 | 2022-11-18 18:41:10 +0100 | [diff] [blame] | 3167 | bdrv_parent_drained_begin_single(new_child); |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 3168 | bdrv_replace_child_noperm(new_child, child_bs); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3169 | |
| 3170 | BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1); |
| 3171 | *s = (BdrvAttachChildCommonState) { |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3172 | .child = new_child, |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3173 | .old_parent_ctx = parent_ctx, |
| 3174 | .old_child_ctx = child_ctx, |
| 3175 | }; |
| 3176 | tran_add(tran, &bdrv_attach_child_common_drv, s); |
| 3177 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3178 | return new_child; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3179 | } |
| 3180 | |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3181 | /* |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 3182 | * Function doesn't update permissions, caller is responsible for this. |
Kevin Wolf | c066e80 | 2023-06-05 10:57:05 +0200 | [diff] [blame] | 3183 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3184 | * Both @parent_bs and @child_bs can move to a different AioContext in this |
| 3185 | * function. |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3186 | * |
| 3187 | * After calling this function, the transaction @tran may only be completed |
| 3188 | * while holding a writer lock for the graph. |
Fiona Ebner | 2b83359 | 2025-05-30 17:10:47 +0200 | [diff] [blame] | 3189 | * |
| 3190 | * All block nodes must be drained before this function is called until after |
| 3191 | * the transaction is finalized. |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3192 | */ |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3193 | static BdrvChild * GRAPH_WRLOCK |
| 3194 | bdrv_attach_child_noperm(BlockDriverState *parent_bs, |
| 3195 | BlockDriverState *child_bs, |
| 3196 | const char *child_name, |
| 3197 | const BdrvChildClass *child_class, |
| 3198 | BdrvChildRole child_role, |
| 3199 | Transaction *tran, |
| 3200 | Error **errp) |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3201 | { |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3202 | uint64_t perm, shared_perm; |
| 3203 | |
| 3204 | assert(parent_bs->drv); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3205 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3206 | |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 3207 | if (bdrv_recurse_has_child(child_bs, parent_bs)) { |
| 3208 | error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle", |
| 3209 | child_bs->node_name, child_name, parent_bs->node_name); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3210 | return NULL; |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 3211 | } |
Kevin Wolf | 9b81361 | 2025-02-04 22:13:56 +0100 | [diff] [blame] | 3212 | if (bdrv_is_inactive(child_bs) && !bdrv_is_inactive(parent_bs)) { |
| 3213 | error_setg(errp, "Inactive '%s' can't be a %s child of active '%s'", |
| 3214 | child_bs->node_name, child_name, parent_bs->node_name); |
| 3215 | return NULL; |
| 3216 | } |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 3217 | |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3218 | bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); |
| 3219 | bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, |
| 3220 | perm, shared_perm, &perm, &shared_perm); |
| 3221 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3222 | return bdrv_attach_child_common(child_bs, child_name, child_class, |
| 3223 | child_role, perm, shared_perm, parent_bs, |
| 3224 | tran, errp); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3225 | } |
| 3226 | |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3227 | /* |
| 3228 | * This function steals the reference to child_bs from the caller. |
| 3229 | * That reference is later dropped by bdrv_root_unref_child(). |
| 3230 | * |
| 3231 | * On failure NULL is returned, errp is set and the reference to |
| 3232 | * child_bs is also dropped. |
Fiona Ebner | ffdcd08 | 2025-05-30 17:10:49 +0200 | [diff] [blame] | 3233 | * |
| 3234 | * All block nodes must be drained. |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3235 | */ |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3236 | BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, |
| 3237 | const char *child_name, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3238 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3239 | BdrvChildRole child_role, |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3240 | uint64_t perm, uint64_t shared_perm, |
| 3241 | void *opaque, Error **errp) |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3242 | { |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3243 | int ret; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3244 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3245 | Transaction *tran = tran_new(); |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3246 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 3247 | GLOBAL_STATE_CODE(); |
| 3248 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3249 | child = bdrv_attach_child_common(child_bs, child_name, child_class, |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3250 | child_role, perm, shared_perm, opaque, |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3251 | tran, errp); |
| 3252 | if (!child) { |
| 3253 | ret = -EINVAL; |
Kevin Wolf | e878bb1 | 2021-05-03 13:05:54 +0200 | [diff] [blame] | 3254 | goto out; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3255 | } |
| 3256 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3257 | ret = bdrv_refresh_perms(child_bs, tran, errp); |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3258 | |
Kevin Wolf | e878bb1 | 2021-05-03 13:05:54 +0200 | [diff] [blame] | 3259 | out: |
| 3260 | tran_finalize(tran, ret); |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3261 | |
Kevin Wolf | 03b9eac | 2023-10-27 17:53:13 +0200 | [diff] [blame] | 3262 | bdrv_schedule_unref(child_bs); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3263 | |
| 3264 | return ret < 0 ? NULL : child; |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3265 | } |
| 3266 | |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3267 | /* |
| 3268 | * This function transfers the reference to child_bs from the caller |
| 3269 | * to parent_bs. That reference is later dropped by parent_bs on |
| 3270 | * bdrv_close() or if someone calls bdrv_unref_child(). |
| 3271 | * |
| 3272 | * On failure NULL is returned, errp is set and the reference to |
| 3273 | * child_bs is also dropped. |
Fiona Ebner | 77f3965 | 2025-05-30 17:10:50 +0200 | [diff] [blame] | 3274 | * |
| 3275 | * All block nodes must be drained. |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3276 | */ |
Wen Congyang | 98292c6 | 2016-05-10 15:36:38 +0800 | [diff] [blame] | 3277 | BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, |
| 3278 | BlockDriverState *child_bs, |
| 3279 | const char *child_name, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3280 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3281 | BdrvChildRole child_role, |
Kevin Wolf | 8b2ff52 | 2016-12-20 22:21:17 +0100 | [diff] [blame] | 3282 | Error **errp) |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3283 | { |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3284 | int ret; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3285 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3286 | Transaction *tran = tran_new(); |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3287 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3288 | GLOBAL_STATE_CODE(); |
| 3289 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3290 | child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, |
| 3291 | child_class, child_role, tran, errp); |
| 3292 | if (!child) { |
| 3293 | ret = -EINVAL; |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3294 | goto out; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3295 | } |
| 3296 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3297 | ret = bdrv_refresh_perms(parent_bs, tran, errp); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3298 | if (ret < 0) { |
| 3299 | goto out; |
| 3300 | } |
| 3301 | |
| 3302 | out: |
| 3303 | tran_finalize(tran, ret); |
| 3304 | |
Kevin Wolf | afdaeb9 | 2023-09-11 11:46:11 +0200 | [diff] [blame] | 3305 | bdrv_schedule_unref(child_bs); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3306 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3307 | return ret < 0 ? NULL : child; |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3308 | } |
| 3309 | |
Fiona Ebner | b13f546 | 2025-05-30 17:10:52 +0200 | [diff] [blame] | 3310 | /* |
| 3311 | * Callers must ensure that child->frozen is false. |
| 3312 | * |
| 3313 | * All block nodes must be drained. |
| 3314 | */ |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3315 | void bdrv_root_unref_child(BdrvChild *child) |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3316 | { |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3317 | BlockDriverState *child_bs = child->bs; |
Kevin Wolf | 779020c | 2015-10-13 14:09:44 +0200 | [diff] [blame] | 3318 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3319 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3320 | bdrv_replace_child_noperm(child, NULL); |
| 3321 | bdrv_child_free(child); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3322 | |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3323 | if (child_bs) { |
| 3324 | /* |
| 3325 | * Update permissions for old node. We're just taking a parent away, so |
| 3326 | * we're loosening restrictions. Errors of permission update are not |
| 3327 | * fatal in this case, ignore them. |
| 3328 | */ |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3329 | bdrv_refresh_perms(child_bs, NULL, NULL); |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3330 | |
| 3331 | /* |
| 3332 | * When the parent requiring a non-default AioContext is removed, the |
| 3333 | * node moves back to the main AioContext |
| 3334 | */ |
Fiona Ebner | a1ea8eb | 2025-05-30 17:10:46 +0200 | [diff] [blame] | 3335 | bdrv_try_change_aio_context_locked(child_bs, qemu_get_aio_context(), |
| 3336 | NULL, NULL); |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3337 | } |
| 3338 | |
Kevin Wolf | ede01e4 | 2023-09-11 11:46:18 +0200 | [diff] [blame] | 3339 | bdrv_schedule_unref(child_bs); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3340 | } |
| 3341 | |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3342 | typedef struct BdrvSetInheritsFrom { |
| 3343 | BlockDriverState *bs; |
| 3344 | BlockDriverState *old_inherits_from; |
| 3345 | } BdrvSetInheritsFrom; |
| 3346 | |
| 3347 | static void bdrv_set_inherits_from_abort(void *opaque) |
| 3348 | { |
| 3349 | BdrvSetInheritsFrom *s = opaque; |
| 3350 | |
| 3351 | s->bs->inherits_from = s->old_inherits_from; |
| 3352 | } |
| 3353 | |
| 3354 | static TransactionActionDrv bdrv_set_inherits_from_drv = { |
| 3355 | .abort = bdrv_set_inherits_from_abort, |
| 3356 | .clean = g_free, |
| 3357 | }; |
| 3358 | |
| 3359 | /* @tran is allowed to be NULL. In this case no rollback is possible */ |
| 3360 | static void bdrv_set_inherits_from(BlockDriverState *bs, |
| 3361 | BlockDriverState *new_inherits_from, |
| 3362 | Transaction *tran) |
| 3363 | { |
| 3364 | if (tran) { |
| 3365 | BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1); |
| 3366 | |
| 3367 | *s = (BdrvSetInheritsFrom) { |
| 3368 | .bs = bs, |
| 3369 | .old_inherits_from = bs->inherits_from, |
| 3370 | }; |
| 3371 | |
| 3372 | tran_add(tran, &bdrv_set_inherits_from_drv, s); |
| 3373 | } |
| 3374 | |
| 3375 | bs->inherits_from = new_inherits_from; |
| 3376 | } |
| 3377 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3378 | /** |
| 3379 | * Clear all inherits_from pointers from children and grandchildren of |
| 3380 | * @root that point to @root, where necessary. |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3381 | * @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] | 3382 | */ |
Kevin Wolf | 32a8aba | 2023-09-11 11:46:19 +0200 | [diff] [blame] | 3383 | static void GRAPH_WRLOCK |
| 3384 | bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child, |
| 3385 | Transaction *tran) |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3386 | { |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3387 | BdrvChild *c; |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3388 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3389 | if (child->bs->inherits_from == root) { |
| 3390 | /* |
| 3391 | * Remove inherits_from only when the last reference between root and |
| 3392 | * child->bs goes away. |
| 3393 | */ |
| 3394 | QLIST_FOREACH(c, &root->children, next) { |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3395 | if (c != child && c->bs == child->bs) { |
| 3396 | break; |
| 3397 | } |
| 3398 | } |
| 3399 | if (c == NULL) { |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3400 | bdrv_set_inherits_from(child->bs, NULL, tran); |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3401 | } |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3402 | } |
| 3403 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3404 | QLIST_FOREACH(c, &child->bs->children, next) { |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3405 | bdrv_unset_inherits_from(root, c, tran); |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3406 | } |
| 3407 | } |
| 3408 | |
Fiona Ebner | b13f546 | 2025-05-30 17:10:52 +0200 | [diff] [blame] | 3409 | /* |
| 3410 | * Callers must ensure that child->frozen is false. |
| 3411 | * |
| 3412 | * All block nodes must be drained. |
| 3413 | */ |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3414 | void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) |
| 3415 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3416 | GLOBAL_STATE_CODE(); |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3417 | if (child == NULL) { |
| 3418 | return; |
| 3419 | } |
| 3420 | |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3421 | bdrv_unset_inherits_from(parent, child, NULL); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3422 | bdrv_root_unref_child(child); |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3423 | } |
| 3424 | |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3425 | |
Kevin Wolf | 356f4ef | 2023-09-11 11:46:15 +0200 | [diff] [blame] | 3426 | static void GRAPH_RDLOCK |
| 3427 | bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3428 | { |
| 3429 | BdrvChild *c; |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 3430 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3431 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3432 | if (c->klass->change_media) { |
| 3433 | c->klass->change_media(c, load); |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3434 | } |
| 3435 | } |
| 3436 | } |
| 3437 | |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3438 | /* Return true if you can reach parent going through child->inherits_from |
| 3439 | * recursively. If parent or child are NULL, return false */ |
| 3440 | static bool bdrv_inherits_from_recursive(BlockDriverState *child, |
| 3441 | BlockDriverState *parent) |
| 3442 | { |
| 3443 | while (child && child != parent) { |
| 3444 | child = child->inherits_from; |
| 3445 | } |
| 3446 | |
| 3447 | return child != NULL; |
| 3448 | } |
| 3449 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3450 | /* |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 3451 | * Return the BdrvChildRole for @bs's backing child. bs->backing is |
| 3452 | * mostly used for COW backing children (role = COW), but also for |
| 3453 | * filtered children (role = FILTERED | PRIMARY). |
| 3454 | */ |
| 3455 | static BdrvChildRole bdrv_backing_role(BlockDriverState *bs) |
| 3456 | { |
| 3457 | if (bs->drv && bs->drv->is_filter) { |
| 3458 | return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; |
| 3459 | } else { |
| 3460 | return BDRV_CHILD_COW; |
| 3461 | } |
| 3462 | } |
| 3463 | |
| 3464 | /* |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3465 | * Sets the bs->backing or bs->file link of a BDS. A new reference is created; |
| 3466 | * 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] | 3467 | * |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3468 | * If the respective child is already present (i.e. we're detaching a node), |
| 3469 | * that child node must be drained. |
| 3470 | * |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 3471 | * Function doesn't update permissions, caller is responsible for this. |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 3472 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3473 | * Both @parent_bs and @child_bs can move to a different AioContext in this |
| 3474 | * function. |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3475 | * |
| 3476 | * After calling this function, the transaction @tran may only be completed |
| 3477 | * while holding a writer lock for the graph. |
Fiona Ebner | 2b83359 | 2025-05-30 17:10:47 +0200 | [diff] [blame] | 3478 | * |
| 3479 | * All block nodes must be drained before this function is called until after |
| 3480 | * the transaction is finalized. |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3481 | */ |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3482 | static int GRAPH_WRLOCK |
| 3483 | bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs, |
| 3484 | BlockDriverState *child_bs, |
| 3485 | bool is_backing, |
| 3486 | Transaction *tran, Error **errp) |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3487 | { |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3488 | bool update_inherits_from = |
| 3489 | bdrv_inherits_from_recursive(child_bs, parent_bs); |
| 3490 | BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file; |
| 3491 | BdrvChildRole role; |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3492 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3493 | GLOBAL_STATE_CODE(); |
| 3494 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3495 | if (!parent_bs->drv) { |
| 3496 | /* |
| 3497 | * Node without drv is an object without a class :/. TODO: finally fix |
| 3498 | * qcow2 driver to never clear bs->drv and implement format corruption |
| 3499 | * handling in other way. |
| 3500 | */ |
| 3501 | error_setg(errp, "Node corrupted"); |
| 3502 | return -EINVAL; |
| 3503 | } |
| 3504 | |
| 3505 | if (child && child->frozen) { |
| 3506 | error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'", |
| 3507 | child->name, parent_bs->node_name, child->bs->node_name); |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3508 | return -EPERM; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 3509 | } |
| 3510 | |
Vladimir Sementsov-Ogievskiy | 25f78d9 | 2021-06-10 15:05:34 +0300 | [diff] [blame] | 3511 | if (is_backing && !parent_bs->drv->is_filter && |
| 3512 | !parent_bs->drv->supports_backing) |
| 3513 | { |
| 3514 | error_setg(errp, "Driver '%s' of node '%s' does not support backing " |
| 3515 | "files", parent_bs->drv->format_name, parent_bs->node_name); |
| 3516 | return -EINVAL; |
| 3517 | } |
| 3518 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3519 | if (parent_bs->drv->is_filter) { |
| 3520 | role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; |
| 3521 | } else if (is_backing) { |
| 3522 | role = BDRV_CHILD_COW; |
| 3523 | } else { |
| 3524 | /* |
| 3525 | * We only can use same role as it is in existing child. We don't have |
| 3526 | * infrastructure to determine role of file child in generic way |
| 3527 | */ |
| 3528 | if (!child) { |
| 3529 | error_setg(errp, "Cannot set file child to format node without " |
| 3530 | "file child"); |
| 3531 | return -EINVAL; |
| 3532 | } |
| 3533 | role = child->role; |
Fam Zheng | 826b6ca | 2014-05-23 21:29:47 +0800 | [diff] [blame] | 3534 | } |
| 3535 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3536 | if (child) { |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3537 | assert(child->bs->quiesce_counter); |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3538 | bdrv_unset_inherits_from(parent_bs, child, tran); |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 3539 | bdrv_remove_child(child, tran); |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3540 | } |
| 3541 | |
| 3542 | if (!child_bs) { |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3543 | goto out; |
| 3544 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 3545 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3546 | child = bdrv_attach_child_noperm(parent_bs, child_bs, |
| 3547 | is_backing ? "backing" : "file", |
| 3548 | &child_of_bds, role, |
| 3549 | tran, errp); |
| 3550 | if (!child) { |
| 3551 | return -EINVAL; |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3552 | } |
| 3553 | |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3554 | |
| 3555 | /* |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3556 | * 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] | 3557 | * point directly to bs (else it will become NULL). |
| 3558 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3559 | if (update_inherits_from) { |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3560 | bdrv_set_inherits_from(child_bs, parent_bs, tran); |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3561 | } |
Fam Zheng | 826b6ca | 2014-05-23 21:29:47 +0800 | [diff] [blame] | 3562 | |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3563 | out: |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3564 | bdrv_refresh_limits(parent_bs, tran, NULL); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3565 | |
| 3566 | return 0; |
| 3567 | } |
| 3568 | |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 3569 | /* |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3570 | * Both @bs and @backing_hd can move to a different AioContext in this |
| 3571 | * function. |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3572 | * |
Fiona Ebner | e66dbda | 2025-05-30 17:10:48 +0200 | [diff] [blame] | 3573 | * All block nodes must be drained. |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 3574 | */ |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3575 | int bdrv_set_backing_hd_drained(BlockDriverState *bs, |
| 3576 | BlockDriverState *backing_hd, |
| 3577 | Error **errp) |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3578 | { |
| 3579 | int ret; |
| 3580 | Transaction *tran = tran_new(); |
| 3581 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3582 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3583 | assert(bs->quiesce_counter > 0); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3584 | if (bs->backing) { |
| 3585 | assert(bs->backing->bs->quiesce_counter > 0); |
| 3586 | } |
Vladimir Sementsov-Ogievskiy | c0829cb | 2022-01-24 18:37:41 +0100 | [diff] [blame] | 3587 | |
Kevin Wolf | 3204c2e | 2023-10-27 17:53:23 +0200 | [diff] [blame] | 3588 | ret = bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3589 | if (ret < 0) { |
| 3590 | goto out; |
| 3591 | } |
| 3592 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3593 | ret = bdrv_refresh_perms(bs, tran, errp); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3594 | out: |
| 3595 | tran_finalize(tran, ret); |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3596 | return ret; |
| 3597 | } |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3598 | |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3599 | int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, |
| 3600 | Error **errp) |
| 3601 | { |
| 3602 | int ret; |
| 3603 | GLOBAL_STATE_CODE(); |
| 3604 | |
Fiona Ebner | e66dbda | 2025-05-30 17:10:48 +0200 | [diff] [blame] | 3605 | bdrv_drain_all_begin(); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 3606 | bdrv_graph_wrlock(); |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3607 | ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 3608 | bdrv_graph_wrunlock(); |
Fiona Ebner | e66dbda | 2025-05-30 17:10:48 +0200 | [diff] [blame] | 3609 | bdrv_drain_all_end(); |
Vladimir Sementsov-Ogievskiy | c0829cb | 2022-01-24 18:37:41 +0100 | [diff] [blame] | 3610 | |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3611 | return ret; |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3612 | } |
| 3613 | |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3614 | /* |
| 3615 | * Opens the backing file for a BlockDriverState if not yet open |
| 3616 | * |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3617 | * bdref_key specifies the key for the image's BlockdevRef in the options QDict. |
| 3618 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict |
| 3619 | * itself, all options starting with "${bdref_key}." are considered part of the |
| 3620 | * BlockdevRef. |
| 3621 | * |
| 3622 | * TODO Can this be unified with bdrv_open_image()? |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3623 | */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3624 | int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, |
| 3625 | const char *bdref_key, Error **errp) |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3626 | { |
Zhao Liu | 7b22e05 | 2024-03-11 11:37:56 +0800 | [diff] [blame] | 3627 | ERRP_GUARD(); |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3628 | char *backing_filename = NULL; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3629 | char *bdref_key_dot; |
| 3630 | const char *reference = NULL; |
Kevin Wolf | 317fc44 | 2014-04-25 13:27:34 +0200 | [diff] [blame] | 3631 | int ret = 0; |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3632 | bool implicit_backing = false; |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3633 | BlockDriverState *backing_hd; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3634 | QDict *options; |
| 3635 | QDict *tmp_parent_options = NULL; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 3636 | Error *local_err = NULL; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3637 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3638 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 3639 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3640 | |
Kevin Wolf | 760e006 | 2015-06-17 14:55:21 +0200 | [diff] [blame] | 3641 | if (bs->backing != NULL) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3642 | goto free_exit; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3643 | } |
| 3644 | |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3645 | /* NULL means an empty set of options */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3646 | if (parent_options == NULL) { |
| 3647 | tmp_parent_options = qdict_new(); |
| 3648 | parent_options = tmp_parent_options; |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3649 | } |
| 3650 | |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3651 | bs->open_flags &= ~BDRV_O_NO_BACKING; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3652 | |
| 3653 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
| 3654 | qdict_extract_subqdict(parent_options, &options, bdref_key_dot); |
| 3655 | g_free(bdref_key_dot); |
| 3656 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3657 | /* |
| 3658 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 3659 | * types would require more care. When @parent_options come from |
| 3660 | * -blockdev or blockdev_add, its members are typed according to |
| 3661 | * the QAPI schema, but when they come from -drive, they're all |
| 3662 | * QString. |
| 3663 | */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3664 | reference = qdict_get_try_str(parent_options, bdref_key); |
| 3665 | if (reference || qdict_haskey(options, "file.filename")) { |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3666 | /* keep backing_filename NULL */ |
Kevin Wolf | 1cb6f50 | 2013-04-12 20:27:07 +0200 | [diff] [blame] | 3667 | } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3668 | qobject_unref(options); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3669 | goto free_exit; |
Fam Zheng | dbecebd | 2013-09-22 20:05:06 +0800 | [diff] [blame] | 3670 | } else { |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3671 | if (qdict_size(options) == 0) { |
| 3672 | /* If the user specifies options that do not modify the |
| 3673 | * backing file's behavior, we might still consider it the |
| 3674 | * implicit backing file. But it's easier this way, and |
| 3675 | * just specifying some of the backing BDS's options is |
| 3676 | * only possible with -drive anyway (otherwise the QAPI |
| 3677 | * schema forces the user to specify everything). */ |
| 3678 | implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file); |
| 3679 | } |
| 3680 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3681 | backing_filename = bdrv_get_full_backing_filename(bs, &local_err); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 3682 | if (local_err) { |
| 3683 | ret = -EINVAL; |
| 3684 | error_propagate(errp, local_err); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3685 | qobject_unref(options); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 3686 | goto free_exit; |
| 3687 | } |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3688 | } |
| 3689 | |
Kevin Wolf | 8ee79e7 | 2014-06-04 15:09:35 +0200 | [diff] [blame] | 3690 | if (!bs->drv || !bs->drv->supports_backing) { |
| 3691 | ret = -EINVAL; |
| 3692 | error_setg(errp, "Driver doesn't support backing files"); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3693 | qobject_unref(options); |
Kevin Wolf | 8ee79e7 | 2014-06-04 15:09:35 +0200 | [diff] [blame] | 3694 | goto free_exit; |
| 3695 | } |
| 3696 | |
Peter Krempa | 6bff597 | 2017-10-12 16:14:10 +0200 | [diff] [blame] | 3697 | if (!reference && |
| 3698 | bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3699 | qdict_put_str(options, "driver", bs->backing_format); |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3700 | } |
| 3701 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3702 | backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs, |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3703 | &child_of_bds, bdrv_backing_role(bs), true, |
| 3704 | errp); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3705 | if (!backing_hd) { |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3706 | bs->open_flags |= BDRV_O_NO_BACKING; |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3707 | error_prepend(errp, "Could not open backing file: "); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3708 | ret = -EINVAL; |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3709 | goto free_exit; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3710 | } |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3711 | |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3712 | if (implicit_backing) { |
| 3713 | bdrv_refresh_filename(backing_hd); |
| 3714 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
| 3715 | backing_hd->filename); |
| 3716 | } |
| 3717 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3718 | /* Hook up the backing file link; drop our reference, bs owns the |
| 3719 | * backing_hd reference now */ |
Vladimir Sementsov-Ogievskiy | dc9c10a | 2021-02-02 15:49:47 +0300 | [diff] [blame] | 3720 | ret = bdrv_set_backing_hd(bs, backing_hd, errp); |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3721 | bdrv_unref(backing_hd); |
Kevin Wolf | 8aa0454 | 2023-06-05 10:57:08 +0200 | [diff] [blame] | 3722 | |
Vladimir Sementsov-Ogievskiy | dc9c10a | 2021-02-02 15:49:47 +0300 | [diff] [blame] | 3723 | if (ret < 0) { |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 3724 | goto free_exit; |
| 3725 | } |
Peter Feiner | d80ac65 | 2014-01-08 19:43:25 +0000 | [diff] [blame] | 3726 | |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3727 | qdict_del(parent_options, bdref_key); |
| 3728 | |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3729 | free_exit: |
| 3730 | g_free(backing_filename); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3731 | qobject_unref(tmp_parent_options); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3732 | return ret; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3733 | } |
| 3734 | |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3735 | static BlockDriverState * |
| 3736 | 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] | 3737 | BlockDriverState *parent, const BdrvChildClass *child_class, |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3738 | BdrvChildRole child_role, bool allow_none, |
| 3739 | bool parse_filename, Error **errp) |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3740 | { |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3741 | BlockDriverState *bs = NULL; |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3742 | QDict *image_options; |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3743 | char *bdref_key_dot; |
| 3744 | const char *reference; |
| 3745 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3746 | assert(child_class != NULL); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3747 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3748 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
| 3749 | qdict_extract_subqdict(options, &image_options, bdref_key_dot); |
| 3750 | g_free(bdref_key_dot); |
| 3751 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3752 | /* |
| 3753 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 3754 | * types would require more care. When @options come from |
| 3755 | * -blockdev or blockdev_add, its members are typed according to |
| 3756 | * the QAPI schema, but when they come from -drive, they're all |
| 3757 | * QString. |
| 3758 | */ |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3759 | reference = qdict_get_try_str(options, bdref_key); |
| 3760 | if (!filename && !reference && !qdict_size(image_options)) { |
Kevin Wolf | b4b059f | 2015-06-15 13:24:19 +0200 | [diff] [blame] | 3761 | if (!allow_none) { |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3762 | error_setg(errp, "A block device must be specified for \"%s\"", |
| 3763 | bdref_key); |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3764 | } |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3765 | qobject_unref(image_options); |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3766 | goto done; |
| 3767 | } |
| 3768 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3769 | bs = bdrv_open_inherit(filename, reference, image_options, 0, |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3770 | parent, child_class, child_role, parse_filename, |
| 3771 | errp); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3772 | if (!bs) { |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3773 | goto done; |
| 3774 | } |
| 3775 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3776 | done: |
| 3777 | qdict_del(options, bdref_key); |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3778 | return bs; |
| 3779 | } |
| 3780 | |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3781 | static BdrvChild *bdrv_open_child_common(const char *filename, |
| 3782 | QDict *options, const char *bdref_key, |
| 3783 | BlockDriverState *parent, |
| 3784 | const BdrvChildClass *child_class, |
| 3785 | BdrvChildRole child_role, |
| 3786 | bool allow_none, bool parse_filename, |
| 3787 | Error **errp) |
| 3788 | { |
| 3789 | BlockDriverState *bs; |
| 3790 | BdrvChild *child; |
| 3791 | |
| 3792 | GLOBAL_STATE_CODE(); |
| 3793 | |
| 3794 | bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class, |
| 3795 | child_role, allow_none, parse_filename, errp); |
| 3796 | if (bs == NULL) { |
| 3797 | return NULL; |
| 3798 | } |
| 3799 | |
Fiona Ebner | 77f3965 | 2025-05-30 17:10:50 +0200 | [diff] [blame] | 3800 | bdrv_drain_all_begin(); |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3801 | bdrv_graph_wrlock(); |
| 3802 | child = bdrv_attach_child(parent, bs, bdref_key, child_class, child_role, |
| 3803 | errp); |
| 3804 | bdrv_graph_wrunlock(); |
Fiona Ebner | 77f3965 | 2025-05-30 17:10:50 +0200 | [diff] [blame] | 3805 | bdrv_drain_all_end(); |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3806 | |
| 3807 | return child; |
| 3808 | } |
| 3809 | |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3810 | /* |
| 3811 | * Opens a disk image whose options are given as BlockdevRef in another block |
| 3812 | * device's options. |
| 3813 | * |
| 3814 | * If allow_none is true, no image will be opened if filename is false and no |
| 3815 | * BlockdevRef is given. NULL will be returned, but errp remains unset. |
| 3816 | * |
| 3817 | * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. |
| 3818 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict |
| 3819 | * itself, all options starting with "${bdref_key}." are considered part of the |
| 3820 | * BlockdevRef. |
| 3821 | * |
| 3822 | * The BlockdevRef will be removed from the options QDict. |
Kevin Wolf | aa269ff | 2023-05-25 14:47:07 +0200 | [diff] [blame] | 3823 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3824 | * @parent can move to a different AioContext in this function. |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3825 | */ |
| 3826 | BdrvChild *bdrv_open_child(const char *filename, |
| 3827 | QDict *options, const char *bdref_key, |
| 3828 | BlockDriverState *parent, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3829 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3830 | BdrvChildRole child_role, |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3831 | bool allow_none, Error **errp) |
| 3832 | { |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3833 | return bdrv_open_child_common(filename, options, bdref_key, parent, |
| 3834 | child_class, child_role, allow_none, false, |
| 3835 | errp); |
Kevin Wolf | b4b059f | 2015-06-15 13:24:19 +0200 | [diff] [blame] | 3836 | } |
| 3837 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3838 | /* |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3839 | * This does mostly the same as bdrv_open_child(), but for opening the primary |
| 3840 | * child of a node. A notable difference from bdrv_open_child() is that it |
| 3841 | * enables filename parsing for protocol names (including json:). |
Kevin Wolf | aa269ff | 2023-05-25 14:47:07 +0200 | [diff] [blame] | 3842 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3843 | * @parent can move to a different AioContext in this function. |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3844 | */ |
| 3845 | int bdrv_open_file_child(const char *filename, |
| 3846 | QDict *options, const char *bdref_key, |
| 3847 | BlockDriverState *parent, Error **errp) |
| 3848 | { |
| 3849 | BdrvChildRole role; |
| 3850 | |
| 3851 | /* commit_top and mirror_top don't use this function */ |
| 3852 | assert(!parent->drv->filtered_child_is_backing); |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3853 | role = parent->drv->is_filter ? |
| 3854 | (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE; |
| 3855 | |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3856 | if (!bdrv_open_child_common(filename, options, bdref_key, parent, |
| 3857 | &child_of_bds, role, false, true, errp)) |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3858 | { |
| 3859 | return -EINVAL; |
| 3860 | } |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3861 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3862 | return 0; |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3863 | } |
| 3864 | |
| 3865 | /* |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3866 | * TODO Future callers may need to specify parent/child_class in order for |
| 3867 | * option inheritance to work. Existing callers use it for the root node. |
| 3868 | */ |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3869 | BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) |
| 3870 | { |
| 3871 | BlockDriverState *bs = NULL; |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3872 | QObject *obj = NULL; |
| 3873 | QDict *qdict = NULL; |
| 3874 | const char *reference = NULL; |
| 3875 | Visitor *v = NULL; |
| 3876 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3877 | GLOBAL_STATE_CODE(); |
| 3878 | |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3879 | if (ref->type == QTYPE_QSTRING) { |
| 3880 | reference = ref->u.reference; |
| 3881 | } else { |
| 3882 | BlockdevOptions *options = &ref->u.definition; |
| 3883 | assert(ref->type == QTYPE_QDICT); |
| 3884 | |
| 3885 | v = qobject_output_visitor_new(&obj); |
Markus Armbruster | 1f58424 | 2020-04-24 10:43:35 +0200 | [diff] [blame] | 3886 | visit_type_BlockdevOptions(v, NULL, &options, &error_abort); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3887 | visit_complete(v, &obj); |
| 3888 | |
Max Reitz | 7dc847e | 2018-02-24 16:40:29 +0100 | [diff] [blame] | 3889 | qdict = qobject_to(QDict, obj); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3890 | qdict_flatten(qdict); |
| 3891 | |
| 3892 | /* bdrv_open_inherit() defaults to the values in bdrv_flags (for |
| 3893 | * compatibility with other callers) rather than what we want as the |
| 3894 | * real defaults. Apply the defaults here instead. */ |
| 3895 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); |
| 3896 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); |
| 3897 | qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 3898 | qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off"); |
| 3899 | |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3900 | } |
| 3901 | |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3902 | bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, false, |
| 3903 | errp); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3904 | obj = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3905 | qobject_unref(obj); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3906 | visit_free(v); |
| 3907 | return bs; |
| 3908 | } |
| 3909 | |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 3910 | static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, |
| 3911 | int flags, |
| 3912 | QDict *snapshot_options, |
| 3913 | Error **errp) |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3914 | { |
Zhao Liu | 7b22e05 | 2024-03-11 11:37:56 +0800 | [diff] [blame] | 3915 | ERRP_GUARD(); |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 3916 | g_autofree char *tmp_filename = NULL; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3917 | int64_t total_size; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3918 | QemuOpts *opts = NULL; |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3919 | BlockDriverState *bs_snapshot = NULL; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3920 | int ret; |
| 3921 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3922 | GLOBAL_STATE_CODE(); |
| 3923 | |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3924 | /* if snapshot, we create a temporary backing file and open it |
| 3925 | instead of opening 'filename' directly */ |
| 3926 | |
| 3927 | /* Get the required size from the image */ |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3928 | total_size = bdrv_getlength(bs); |
Kevin Wolf | f665f01 | 2023-06-05 10:57:07 +0200 | [diff] [blame] | 3929 | |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3930 | if (total_size < 0) { |
| 3931 | error_setg_errno(errp, -total_size, "Could not get image size"); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3932 | goto out; |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3933 | } |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3934 | |
| 3935 | /* Create the temporary image */ |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 3936 | tmp_filename = create_tmp_file(errp); |
| 3937 | if (!tmp_filename) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3938 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3939 | } |
| 3940 | |
Max Reitz | ef81043 | 2014-12-02 18:32:42 +0100 | [diff] [blame] | 3941 | opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 3942 | &error_abort); |
Markus Armbruster | 39101f2 | 2015-02-12 16:46:36 +0100 | [diff] [blame] | 3943 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3944 | ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3945 | qemu_opts_del(opts); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3946 | if (ret < 0) { |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3947 | error_prepend(errp, "Could not create temporary overlay '%s': ", |
| 3948 | tmp_filename); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3949 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3950 | } |
| 3951 | |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3952 | /* Prepare options QDict for the temporary file */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3953 | qdict_put_str(snapshot_options, "file.driver", "file"); |
| 3954 | qdict_put_str(snapshot_options, "file.filename", tmp_filename); |
| 3955 | qdict_put_str(snapshot_options, "driver", "qcow2"); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3956 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3957 | bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3958 | snapshot_options = NULL; |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3959 | if (!bs_snapshot) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3960 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3961 | } |
| 3962 | |
Vladimir Sementsov-Ogievskiy | 934aee1 | 2021-02-02 15:49:44 +0300 | [diff] [blame] | 3963 | ret = bdrv_append(bs_snapshot, bs, errp); |
| 3964 | if (ret < 0) { |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3965 | bs_snapshot = NULL; |
Kevin Wolf | b2c2832 | 2017-02-20 12:46:42 +0100 | [diff] [blame] | 3966 | goto out; |
| 3967 | } |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3968 | |
| 3969 | out: |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3970 | qobject_unref(snapshot_options); |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3971 | return bs_snapshot; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3972 | } |
| 3973 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3974 | /* |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3975 | * Opens a disk image (raw, qcow2, vmdk, ...) |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 3976 | * |
| 3977 | * options is a QDict of options to pass to the block drivers, or NULL for an |
| 3978 | * empty set of options. The reference to the QDict belongs to the block layer |
| 3979 | * 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] | 3980 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3981 | * |
| 3982 | * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. |
| 3983 | * If it is not NULL, the referenced BDS will be reused. |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3984 | * |
| 3985 | * The reference parameter may be used to specify an existing block device which |
| 3986 | * should be opened. If specified, neither options nor a filename may be given, |
| 3987 | * 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] | 3988 | */ |
Kevin Wolf | 3219230 | 2023-01-26 18:24:32 +0100 | [diff] [blame] | 3989 | static BlockDriverState * no_coroutine_fn |
| 3990 | bdrv_open_inherit(const char *filename, const char *reference, QDict *options, |
| 3991 | int flags, BlockDriverState *parent, |
| 3992 | const BdrvChildClass *child_class, BdrvChildRole child_role, |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 3993 | bool parse_filename, Error **errp) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 3994 | { |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3995 | int ret; |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3996 | BlockBackend *file = NULL; |
Kevin Wolf | 9a4f4c3 | 2015-06-16 14:19:22 +0200 | [diff] [blame] | 3997 | BlockDriverState *bs; |
Max Reitz | ce34377 | 2015-08-26 19:47:50 +0200 | [diff] [blame] | 3998 | BlockDriver *drv = NULL; |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 3999 | BdrvChild *child; |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 4000 | const char *drvname; |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 4001 | const char *backing; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 4002 | Error *local_err = NULL; |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 4003 | QDict *snapshot_options = NULL; |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 4004 | int snapshot_flags = 0; |
bellard | 712e787 | 2005-04-28 21:09:32 +0000 | [diff] [blame] | 4005 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 4006 | assert(!child_class || !flags); |
| 4007 | assert(!child_class == !parent); |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 4008 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 3219230 | 2023-01-26 18:24:32 +0100 | [diff] [blame] | 4009 | assert(!qemu_in_coroutine()); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 4010 | |
Kevin Wolf | 356f4ef | 2023-09-11 11:46:15 +0200 | [diff] [blame] | 4011 | /* TODO We'll eventually have to take a writer lock in this function */ |
| 4012 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 4013 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 4014 | if (reference) { |
| 4015 | bool options_non_empty = options ? qdict_size(options) : false; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4016 | qobject_unref(options); |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 4017 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 4018 | if (filename || options_non_empty) { |
| 4019 | error_setg(errp, "Cannot reference an existing block device with " |
| 4020 | "additional options or a new filename"); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4021 | return NULL; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 4022 | } |
| 4023 | |
| 4024 | bs = bdrv_lookup_bs(reference, reference, errp); |
| 4025 | if (!bs) { |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4026 | return NULL; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 4027 | } |
Kevin Wolf | 76b2232 | 2016-04-04 17:11:13 +0200 | [diff] [blame] | 4028 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 4029 | bdrv_ref(bs); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4030 | return bs; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 4031 | } |
| 4032 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4033 | bs = bdrv_new(); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 4034 | |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 4035 | /* NULL means an empty set of options */ |
| 4036 | if (options == NULL) { |
| 4037 | options = qdict_new(); |
| 4038 | } |
| 4039 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4040 | /* json: syntax counts as explicit options, as if in the QDict */ |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 4041 | if (parse_filename) { |
| 4042 | parse_json_protocol(options, &filename, &local_err); |
| 4043 | if (local_err) { |
| 4044 | goto fail; |
| 4045 | } |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 4046 | } |
| 4047 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4048 | bs->explicit_options = qdict_clone_shallow(options); |
| 4049 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 4050 | if (child_class) { |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4051 | bool parent_is_format; |
| 4052 | |
| 4053 | if (parent->drv) { |
| 4054 | parent_is_format = parent->drv->is_format; |
| 4055 | } else { |
| 4056 | /* |
| 4057 | * parent->drv is not set yet because this node is opened for |
| 4058 | * (potential) format probing. That means that @parent is going |
| 4059 | * to be a format node. |
| 4060 | */ |
| 4061 | parent_is_format = true; |
| 4062 | } |
| 4063 | |
Kevin Wolf | bddcec3 | 2015-04-09 18:47:50 +0200 | [diff] [blame] | 4064 | bs->inherits_from = parent; |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4065 | child_class->inherit_options(child_role, parent_is_format, |
| 4066 | &flags, options, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 4067 | parent->open_flags, parent->options); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 4068 | } |
| 4069 | |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 4070 | ret = bdrv_fill_options(&options, filename, &flags, parse_filename, |
| 4071 | &local_err); |
Philippe Mathieu-Daudé | dfde483 | 2020-04-22 15:31:44 +0200 | [diff] [blame] | 4072 | if (ret < 0) { |
Kevin Wolf | 462f5bc | 2014-05-26 11:39:55 +0200 | [diff] [blame] | 4073 | goto fail; |
| 4074 | } |
| 4075 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 4076 | /* |
| 4077 | * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. |
| 4078 | * Caution: getting a boolean member of @options requires care. |
| 4079 | * When @options come from -blockdev or blockdev_add, members are |
| 4080 | * typed according to the QAPI schema, but when they come from |
| 4081 | * -drive, they're all QString. |
| 4082 | */ |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 4083 | if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && |
| 4084 | !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { |
| 4085 | flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); |
| 4086 | } else { |
| 4087 | flags &= ~BDRV_O_RDWR; |
Alberto Garcia | 14499ea | 2016-09-15 17:53:00 +0300 | [diff] [blame] | 4088 | } |
| 4089 | |
| 4090 | if (flags & BDRV_O_SNAPSHOT) { |
| 4091 | snapshot_options = qdict_new(); |
| 4092 | bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, |
| 4093 | flags, options); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 4094 | /* Let bdrv_backing_options() override "read-only" */ |
| 4095 | qdict_del(options, BDRV_OPT_READ_ONLY); |
Max Reitz | 00ff7ff | 2020-05-13 13:05:21 +0200 | [diff] [blame] | 4096 | bdrv_inherited_options(BDRV_CHILD_COW, true, |
| 4097 | &flags, options, flags, options); |
Alberto Garcia | 14499ea | 2016-09-15 17:53:00 +0300 | [diff] [blame] | 4098 | } |
| 4099 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 4100 | bs->open_flags = flags; |
| 4101 | bs->options = options; |
| 4102 | options = qdict_clone_shallow(options); |
| 4103 | |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4104 | /* Find the right image format driver */ |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 4105 | /* See cautionary note on accessing @options above */ |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4106 | drvname = qdict_get_try_str(options, "driver"); |
| 4107 | if (drvname) { |
| 4108 | drv = bdrv_find_format(drvname); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4109 | if (!drv) { |
| 4110 | error_setg(errp, "Unknown driver: '%s'", drvname); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4111 | goto fail; |
| 4112 | } |
| 4113 | } |
| 4114 | |
| 4115 | assert(drvname || !(flags & BDRV_O_PROTOCOL)); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4116 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 4117 | /* See cautionary note on accessing @options above */ |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 4118 | backing = qdict_get_try_str(options, "backing"); |
Max Reitz | e59a0cf | 2018-02-24 16:40:32 +0100 | [diff] [blame] | 4119 | if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || |
| 4120 | (backing && *backing == '\0')) |
| 4121 | { |
Max Reitz | 4f7be28 | 2018-02-24 16:40:33 +0100 | [diff] [blame] | 4122 | if (backing) { |
| 4123 | warn_report("Use of \"backing\": \"\" is deprecated; " |
| 4124 | "use \"backing\": null instead"); |
| 4125 | } |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 4126 | flags |= BDRV_O_NO_BACKING; |
Kevin Wolf | ae0f57f | 2019-11-08 09:36:35 +0100 | [diff] [blame] | 4127 | qdict_del(bs->explicit_options, "backing"); |
| 4128 | qdict_del(bs->options, "backing"); |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 4129 | qdict_del(options, "backing"); |
| 4130 | } |
| 4131 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4132 | /* Open image file without format layer. This BlockBackend is only used for |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 4133 | * probing, the block drivers will do their own bdrv_open_child() for the |
| 4134 | * 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] | 4135 | if ((flags & BDRV_O_PROTOCOL) == 0) { |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4136 | BlockDriverState *file_bs; |
| 4137 | |
| 4138 | file_bs = bdrv_open_child_bs(filename, options, "file", bs, |
Max Reitz | 5894440 | 2020-05-13 13:05:37 +0200 | [diff] [blame] | 4139 | &child_of_bds, BDRV_CHILD_IMAGE, |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 4140 | true, true, &local_err); |
Kevin Wolf | 1fdd693 | 2015-06-15 14:11:51 +0200 | [diff] [blame] | 4141 | if (local_err) { |
Max Reitz | 5469a2a | 2014-02-18 18:33:10 +0100 | [diff] [blame] | 4142 | goto fail; |
| 4143 | } |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4144 | if (file_bs != NULL) { |
Kevin Wolf | dacaa16 | 2017-11-20 14:59:13 +0100 | [diff] [blame] | 4145 | /* Not requesting BLK_PERM_CONSISTENT_READ because we're only |
| 4146 | * looking at the header to guess the image format. This works even |
| 4147 | * in cases where a guest would not see a consistent state. */ |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 4148 | AioContext *ctx = bdrv_get_aio_context(file_bs); |
Kevin Wolf | f665f01 | 2023-06-05 10:57:07 +0200 | [diff] [blame] | 4149 | file = blk_new(ctx, 0, BLK_PERM_ALL); |
Kevin Wolf | d708642 | 2017-01-13 19:02:32 +0100 | [diff] [blame] | 4150 | blk_insert_bs(file, file_bs, &local_err); |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4151 | bdrv_unref(file_bs); |
Kevin Wolf | f665f01 | 2023-06-05 10:57:07 +0200 | [diff] [blame] | 4152 | |
Kevin Wolf | d708642 | 2017-01-13 19:02:32 +0100 | [diff] [blame] | 4153 | if (local_err) { |
| 4154 | goto fail; |
| 4155 | } |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4156 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 4157 | qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 4158 | } |
Max Reitz | 5469a2a | 2014-02-18 18:33:10 +0100 | [diff] [blame] | 4159 | } |
| 4160 | |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4161 | /* Image format probing */ |
Kevin Wolf | 38f3ef5 | 2014-11-20 16:27:12 +0100 | [diff] [blame] | 4162 | bs->probed = !drv; |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4163 | if (!drv && file) { |
Kevin Wolf | cf2ab8f | 2016-06-20 18:24:02 +0200 | [diff] [blame] | 4164 | ret = find_image_format(file, filename, &drv, &local_err); |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 4165 | if (ret < 0) { |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4166 | goto fail; |
Max Reitz | 2a05cbe | 2013-12-20 19:28:10 +0100 | [diff] [blame] | 4167 | } |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 4168 | /* |
| 4169 | * This option update would logically belong in bdrv_fill_options(), |
| 4170 | * but we first need to open bs->file for the probing to work, while |
| 4171 | * opening bs->file already requires the (mostly) final set of options |
| 4172 | * so that cache mode etc. can be inherited. |
| 4173 | * |
| 4174 | * Adding the driver later is somewhat ugly, but it's not an option |
| 4175 | * that would ever be inherited, so it's correct. We just need to make |
| 4176 | * sure to update both bs->options (which has the full effective |
| 4177 | * options for bs) and options (which has file.* already removed). |
| 4178 | */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 4179 | qdict_put_str(bs->options, "driver", drv->format_name); |
| 4180 | qdict_put_str(options, "driver", drv->format_name); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4181 | } else if (!drv) { |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 4182 | error_setg(errp, "Must specify either driver or file"); |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4183 | goto fail; |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 4184 | } |
| 4185 | |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 4186 | /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ |
Paolo Bonzini | 41770f6 | 2022-11-24 16:21:18 +0100 | [diff] [blame] | 4187 | assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->protocol_name); |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 4188 | /* file must be NULL if a protocol BDS is about to be created |
| 4189 | * (the inverse results in an error message from bdrv_open_common()) */ |
| 4190 | assert(!(flags & BDRV_O_PROTOCOL) || !file); |
| 4191 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4192 | /* Open the image */ |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 4193 | ret = bdrv_open_common(bs, file, options, &local_err); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4194 | if (ret < 0) { |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4195 | goto fail; |
Christoph Hellwig | 6987307 | 2010-01-20 18:13:25 +0100 | [diff] [blame] | 4196 | } |
| 4197 | |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 4198 | if (file) { |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4199 | blk_unref(file); |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 4200 | file = NULL; |
| 4201 | } |
| 4202 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4203 | /* If there is a backing file, use it */ |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 4204 | if ((flags & BDRV_O_NO_BACKING) == 0) { |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 4205 | ret = bdrv_open_backing_file(bs, options, "backing", &local_err); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4206 | if (ret < 0) { |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4207 | goto close_and_fail; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4208 | } |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4209 | } |
| 4210 | |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4211 | /* Remove all children options and references |
| 4212 | * from bs->options and bs->explicit_options */ |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 4213 | QLIST_FOREACH(child, &bs->children, next) { |
| 4214 | char *child_key_dot; |
| 4215 | child_key_dot = g_strdup_printf("%s.", child->name); |
| 4216 | qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot); |
| 4217 | qdict_extract_subqdict(bs->options, NULL, child_key_dot); |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4218 | qdict_del(bs->explicit_options, child->name); |
| 4219 | qdict_del(bs->options, child->name); |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 4220 | g_free(child_key_dot); |
| 4221 | } |
| 4222 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4223 | /* Check if any unknown options were used */ |
Paolo Bonzini | 7ad2757 | 2017-01-04 15:59:14 +0100 | [diff] [blame] | 4224 | if (qdict_size(options) != 0) { |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4225 | const QDictEntry *entry = qdict_first(options); |
Max Reitz | 5acd9d8 | 2014-02-18 18:33:11 +0100 | [diff] [blame] | 4226 | if (flags & BDRV_O_PROTOCOL) { |
| 4227 | error_setg(errp, "Block protocol '%s' doesn't support the option " |
| 4228 | "'%s'", drv->format_name, entry->key); |
| 4229 | } else { |
Max Reitz | d0e46a5 | 2016-03-16 19:54:34 +0100 | [diff] [blame] | 4230 | error_setg(errp, |
| 4231 | "Block format '%s' does not support the option '%s'", |
| 4232 | drv->format_name, entry->key); |
Max Reitz | 5acd9d8 | 2014-02-18 18:33:11 +0100 | [diff] [blame] | 4233 | } |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4234 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4235 | goto close_and_fail; |
| 4236 | } |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4237 | |
Daniel P. Berrange | c01c214 | 2017-06-23 17:24:16 +0100 | [diff] [blame] | 4238 | bdrv_parent_cb_change_media(bs, true); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4239 | |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4240 | qobject_unref(options); |
Alberto Garcia | 8961be3 | 2018-09-06 17:25:41 +0300 | [diff] [blame] | 4241 | options = NULL; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4242 | |
| 4243 | /* For snapshot=on, create a temporary qcow2 overlay. bs points to the |
| 4244 | * temporary snapshot afterwards. */ |
| 4245 | if (snapshot_flags) { |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 4246 | BlockDriverState *snapshot_bs; |
| 4247 | snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, |
| 4248 | snapshot_options, &local_err); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 4249 | snapshot_options = NULL; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4250 | if (local_err) { |
| 4251 | goto close_and_fail; |
| 4252 | } |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4253 | /* We are not going to return bs but the overlay on top of it |
| 4254 | * (snapshot_bs); thus, we have to drop the strong reference to bs |
| 4255 | * (which we obtained by calling bdrv_new()). bs will not be deleted, |
| 4256 | * though, because the overlay still has a reference to it. */ |
| 4257 | bdrv_unref(bs); |
| 4258 | bs = snapshot_bs; |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 4259 | } |
| 4260 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4261 | return bs; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4262 | |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4263 | fail: |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4264 | blk_unref(file); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4265 | qobject_unref(snapshot_options); |
| 4266 | qobject_unref(bs->explicit_options); |
| 4267 | qobject_unref(bs->options); |
| 4268 | qobject_unref(options); |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 4269 | bs->options = NULL; |
Manos Pitsidianakis | 998cbd6 | 2017-07-14 17:35:47 +0300 | [diff] [blame] | 4270 | bs->explicit_options = NULL; |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4271 | bdrv_unref(bs); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 4272 | error_propagate(errp, local_err); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4273 | return NULL; |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 4274 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4275 | close_and_fail: |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4276 | bdrv_unref(bs); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4277 | qobject_unref(snapshot_options); |
| 4278 | qobject_unref(options); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 4279 | error_propagate(errp, local_err); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4280 | return NULL; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4281 | } |
| 4282 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4283 | BlockDriverState *bdrv_open(const char *filename, const char *reference, |
| 4284 | QDict *options, int flags, Error **errp) |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 4285 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4286 | GLOBAL_STATE_CODE(); |
| 4287 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4288 | return bdrv_open_inherit(filename, reference, options, flags, NULL, |
Kevin Wolf | 7ead946 | 2024-04-25 14:56:02 +0200 | [diff] [blame] | 4289 | NULL, 0, true, errp); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 4290 | } |
| 4291 | |
Alberto Garcia | faf116b | 2019-03-12 18:48:49 +0200 | [diff] [blame] | 4292 | /* Return true if the NULL-terminated @list contains @str */ |
| 4293 | static bool is_str_in_list(const char *str, const char *const *list) |
| 4294 | { |
| 4295 | if (str && list) { |
| 4296 | int i; |
| 4297 | for (i = 0; list[i] != NULL; i++) { |
| 4298 | if (!strcmp(str, list[i])) { |
| 4299 | return true; |
| 4300 | } |
| 4301 | } |
| 4302 | } |
| 4303 | return false; |
| 4304 | } |
| 4305 | |
| 4306 | /* |
| 4307 | * Check that every option set in @bs->options is also set in |
| 4308 | * @new_opts. |
| 4309 | * |
| 4310 | * Options listed in the common_options list and in |
| 4311 | * @bs->drv->mutable_opts are skipped. |
| 4312 | * |
| 4313 | * Return 0 on success, otherwise return -EINVAL and set @errp. |
| 4314 | */ |
| 4315 | static int bdrv_reset_options_allowed(BlockDriverState *bs, |
| 4316 | const QDict *new_opts, Error **errp) |
| 4317 | { |
| 4318 | const QDictEntry *e; |
| 4319 | /* These options are common to all block drivers and are handled |
| 4320 | * in bdrv_reopen_prepare() so they can be left out of @new_opts */ |
| 4321 | const char *const common_options[] = { |
| 4322 | "node-name", "discard", "cache.direct", "cache.no-flush", |
| 4323 | "read-only", "auto-read-only", "detect-zeroes", NULL |
| 4324 | }; |
| 4325 | |
| 4326 | for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) { |
| 4327 | if (!qdict_haskey(new_opts, e->key) && |
| 4328 | !is_str_in_list(e->key, common_options) && |
| 4329 | !is_str_in_list(e->key, bs->drv->mutable_opts)) { |
| 4330 | error_setg(errp, "Option '%s' cannot be reset " |
| 4331 | "to its default value", e->key); |
| 4332 | return -EINVAL; |
| 4333 | } |
| 4334 | } |
| 4335 | |
| 4336 | return 0; |
| 4337 | } |
| 4338 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4339 | /* |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4340 | * Returns true if @child can be reached recursively from @bs |
| 4341 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4342 | static bool GRAPH_RDLOCK |
| 4343 | bdrv_recurse_has_child(BlockDriverState *bs, BlockDriverState *child) |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4344 | { |
| 4345 | BdrvChild *c; |
| 4346 | |
| 4347 | if (bs == child) { |
| 4348 | return true; |
| 4349 | } |
| 4350 | |
| 4351 | QLIST_FOREACH(c, &bs->children, next) { |
| 4352 | if (bdrv_recurse_has_child(c->bs, child)) { |
| 4353 | return true; |
| 4354 | } |
| 4355 | } |
| 4356 | |
| 4357 | return false; |
| 4358 | } |
| 4359 | |
| 4360 | /* |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4361 | * Adds a BlockDriverState to a simple queue for an atomic, transactional |
| 4362 | * reopen of multiple devices. |
| 4363 | * |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4364 | * 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] | 4365 | * already performed, or alternatively may be NULL a new BlockReopenQueue will |
| 4366 | * be created and initialized. This newly created BlockReopenQueue should be |
| 4367 | * passed back in for subsequent calls that are intended to be of the same |
| 4368 | * atomic 'set'. |
| 4369 | * |
| 4370 | * bs is the BlockDriverState to add to the reopen queue. |
| 4371 | * |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4372 | * options contains the changed options for the associated bs |
| 4373 | * (the BlockReopenQueue takes ownership) |
| 4374 | * |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4375 | * flags contains the open flags for the associated bs |
| 4376 | * |
| 4377 | * returns a pointer to bs_queue, which is either the newly allocated |
| 4378 | * bs_queue, or the existing bs_queue being used. |
| 4379 | * |
Fiona Ebner | e1d681b | 2025-05-30 17:10:39 +0200 | [diff] [blame] | 4380 | * bs must be drained. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4381 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4382 | static BlockReopenQueue * GRAPH_RDLOCK |
| 4383 | bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, BlockDriverState *bs, |
| 4384 | QDict *options, const BdrvChildClass *klass, |
| 4385 | BdrvChildRole role, bool parent_is_format, |
| 4386 | QDict *parent_options, int parent_flags, |
| 4387 | bool keep_old_opts) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4388 | { |
| 4389 | assert(bs != NULL); |
| 4390 | |
| 4391 | BlockReopenQueueEntry *bs_entry; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4392 | BdrvChild *child; |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4393 | QDict *old_options, *explicit_options, *options_copy; |
| 4394 | int flags; |
| 4395 | QemuOpts *opts; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4396 | |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 4397 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4398 | |
Fiona Ebner | e1d681b | 2025-05-30 17:10:39 +0200 | [diff] [blame] | 4399 | assert(bs->quiesce_counter > 0); |
Kevin Wolf | d22933a | 2022-11-18 18:41:02 +0100 | [diff] [blame] | 4400 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4401 | if (bs_queue == NULL) { |
| 4402 | bs_queue = g_new0(BlockReopenQueue, 1); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4403 | QTAILQ_INIT(bs_queue); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4404 | } |
| 4405 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4406 | if (!options) { |
| 4407 | options = qdict_new(); |
| 4408 | } |
| 4409 | |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4410 | /* Check if this BlockDriverState is already in the queue */ |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4411 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4412 | if (bs == bs_entry->state.bs) { |
| 4413 | break; |
| 4414 | } |
| 4415 | } |
| 4416 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4417 | /* |
| 4418 | * Precedence of options: |
| 4419 | * 1. Explicitly passed in options (highest) |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4420 | * 2. Retained from explicitly set options of bs |
| 4421 | * 3. Inherited from parent node |
| 4422 | * 4. Retained from effective options of bs |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4423 | */ |
| 4424 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4425 | /* Old explicitly set values (don't overwrite by inherited value) */ |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4426 | if (bs_entry || keep_old_opts) { |
| 4427 | old_options = qdict_clone_shallow(bs_entry ? |
| 4428 | bs_entry->state.explicit_options : |
| 4429 | bs->explicit_options); |
| 4430 | bdrv_join_options(bs, options, old_options); |
| 4431 | qobject_unref(old_options); |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4432 | } |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4433 | |
| 4434 | explicit_options = qdict_clone_shallow(options); |
| 4435 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4436 | /* Inherit from parent node */ |
| 4437 | if (parent_options) { |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4438 | flags = 0; |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4439 | klass->inherit_options(role, parent_is_format, &flags, options, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 4440 | parent_flags, parent_options); |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4441 | } else { |
| 4442 | flags = bdrv_get_flags(bs); |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4443 | } |
| 4444 | |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4445 | if (keep_old_opts) { |
| 4446 | /* Old values are used for options that aren't set yet */ |
| 4447 | old_options = qdict_clone_shallow(bs->options); |
| 4448 | bdrv_join_options(bs, options, old_options); |
| 4449 | qobject_unref(old_options); |
| 4450 | } |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4451 | |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4452 | /* We have the final set of options so let's update the flags */ |
| 4453 | options_copy = qdict_clone_shallow(options); |
| 4454 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
| 4455 | qemu_opts_absorb_qdict(opts, options_copy, NULL); |
| 4456 | update_flags_from_options(&flags, opts); |
| 4457 | qemu_opts_del(opts); |
| 4458 | qobject_unref(options_copy); |
| 4459 | |
Kevin Wolf | fd45202 | 2017-08-03 17:02:59 +0200 | [diff] [blame] | 4460 | /* bdrv_open_inherit() sets and clears some additional flags internally */ |
Kevin Wolf | f1f25a2 | 2014-04-25 19:04:55 +0200 | [diff] [blame] | 4461 | flags &= ~BDRV_O_PROTOCOL; |
Kevin Wolf | fd45202 | 2017-08-03 17:02:59 +0200 | [diff] [blame] | 4462 | if (flags & BDRV_O_RDWR) { |
| 4463 | flags |= BDRV_O_ALLOW_RDWR; |
| 4464 | } |
Kevin Wolf | f1f25a2 | 2014-04-25 19:04:55 +0200 | [diff] [blame] | 4465 | |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4466 | if (!bs_entry) { |
| 4467 | bs_entry = g_new0(BlockReopenQueueEntry, 1); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4468 | QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry); |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4469 | } else { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4470 | qobject_unref(bs_entry->state.options); |
| 4471 | qobject_unref(bs_entry->state.explicit_options); |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4472 | } |
| 4473 | |
| 4474 | bs_entry->state.bs = bs; |
| 4475 | bs_entry->state.options = options; |
| 4476 | bs_entry->state.explicit_options = explicit_options; |
| 4477 | bs_entry->state.flags = flags; |
| 4478 | |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4479 | /* |
| 4480 | * If keep_old_opts is false then it means that unspecified |
| 4481 | * options must be reset to their original value. We don't allow |
| 4482 | * resetting 'backing' but we need to know if the option is |
| 4483 | * missing in order to decide if we have to return an error. |
| 4484 | */ |
| 4485 | if (!keep_old_opts) { |
| 4486 | bs_entry->state.backing_missing = |
| 4487 | !qdict_haskey(options, "backing") && |
| 4488 | !qdict_haskey(options, "backing.driver"); |
| 4489 | } |
| 4490 | |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4491 | QLIST_FOREACH(child, &bs->children, next) { |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4492 | QDict *new_child_options = NULL; |
| 4493 | bool child_keep_old = keep_old_opts; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4494 | |
Kevin Wolf | 4c9dfe5 | 2015-05-08 15:14:15 +0200 | [diff] [blame] | 4495 | /* reopen can only change the options of block devices that were |
| 4496 | * implicitly created and inherited options. For other (referenced) |
| 4497 | * block devices, a syntax like "backing.foo" results in an error. */ |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4498 | if (child->bs->inherits_from != bs) { |
| 4499 | continue; |
| 4500 | } |
| 4501 | |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4502 | /* Check if the options contain a child reference */ |
| 4503 | if (qdict_haskey(options, child->name)) { |
| 4504 | const char *childref = qdict_get_try_str(options, child->name); |
| 4505 | /* |
| 4506 | * The current child must not be reopened if the child |
| 4507 | * reference is null or points to a different node. |
| 4508 | */ |
| 4509 | if (g_strcmp0(childref, child->bs->node_name)) { |
| 4510 | continue; |
| 4511 | } |
| 4512 | /* |
| 4513 | * If the child reference points to the current child then |
| 4514 | * reopen it with its existing set of options (note that |
| 4515 | * it can still inherit new options from the parent). |
| 4516 | */ |
| 4517 | child_keep_old = true; |
| 4518 | } else { |
| 4519 | /* Extract child options ("child-name.*") */ |
| 4520 | char *child_key_dot = g_strdup_printf("%s.", child->name); |
| 4521 | qdict_extract_subqdict(explicit_options, NULL, child_key_dot); |
| 4522 | qdict_extract_subqdict(options, &new_child_options, child_key_dot); |
| 4523 | g_free(child_key_dot); |
| 4524 | } |
Kevin Wolf | 4c9dfe5 | 2015-05-08 15:14:15 +0200 | [diff] [blame] | 4525 | |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4526 | bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4527 | child->klass, child->role, bs->drv->is_format, |
| 4528 | options, flags, child_keep_old); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4529 | } |
| 4530 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4531 | return bs_queue; |
| 4532 | } |
| 4533 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4534 | BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, |
| 4535 | BlockDriverState *bs, |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4536 | QDict *options, bool keep_old_opts) |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4537 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4538 | GLOBAL_STATE_CODE(); |
Fiona Ebner | e1d681b | 2025-05-30 17:10:39 +0200 | [diff] [blame] | 4539 | |
| 4540 | if (bs_queue == NULL) { |
| 4541 | /* Paired with bdrv_drain_all_end() in bdrv_reopen_queue_free(). */ |
| 4542 | bdrv_drain_all_begin(); |
| 4543 | } |
| 4544 | |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4545 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4546 | |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4547 | return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false, |
| 4548 | NULL, 0, keep_old_opts); |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4549 | } |
| 4550 | |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4551 | void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue) |
| 4552 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4553 | GLOBAL_STATE_CODE(); |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4554 | if (bs_queue) { |
| 4555 | BlockReopenQueueEntry *bs_entry, *next; |
| 4556 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { |
| 4557 | qobject_unref(bs_entry->state.explicit_options); |
| 4558 | qobject_unref(bs_entry->state.options); |
| 4559 | g_free(bs_entry); |
| 4560 | } |
| 4561 | g_free(bs_queue); |
Fiona Ebner | e1d681b | 2025-05-30 17:10:39 +0200 | [diff] [blame] | 4562 | |
| 4563 | /* Paired with bdrv_drain_all_begin() in bdrv_reopen_queue(). */ |
| 4564 | bdrv_drain_all_end(); |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4565 | } |
| 4566 | } |
| 4567 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4568 | /* |
| 4569 | * Reopen multiple BlockDriverStates atomically & transactionally. |
| 4570 | * |
| 4571 | * The queue passed in (bs_queue) must have been built up previous |
| 4572 | * via bdrv_reopen_queue(). |
| 4573 | * |
| 4574 | * Reopens all BDS specified in the queue, with the appropriate |
| 4575 | * flags. All devices are prepared for reopen, and failure of any |
Stefan Weil | 50d6a8a | 2018-07-12 21:51:20 +0200 | [diff] [blame] | 4576 | * device will cause all device changes to be abandoned, and intermediate |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4577 | * data cleaned up. |
| 4578 | * |
| 4579 | * If all devices prepare successfully, then the changes are committed |
| 4580 | * to all devices. |
| 4581 | * |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4582 | * All affected nodes must be drained between bdrv_reopen_queue() and |
| 4583 | * bdrv_reopen_multiple(). |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4584 | * |
| 4585 | * To be called from the main thread, with all other AioContexts unlocked. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4586 | */ |
Alberto Garcia | 5019aec | 2019-03-12 18:48:50 +0200 | [diff] [blame] | 4587 | int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4588 | { |
| 4589 | int ret = -1; |
| 4590 | BlockReopenQueueEntry *bs_entry, *next; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4591 | Transaction *tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4592 | g_autoptr(GSList) refresh_list = NULL; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4593 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4594 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4595 | assert(bs_queue != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 4596 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4597 | |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4598 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4599 | ret = bdrv_flush(bs_entry->state.bs); |
| 4600 | if (ret < 0) { |
| 4601 | error_setg_errno(errp, -ret, "Error flushing drive"); |
Kevin Wolf | e3fc91a | 2021-05-03 13:05:55 +0200 | [diff] [blame] | 4602 | goto abort; |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4603 | } |
| 4604 | } |
| 4605 | |
| 4606 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4607 | assert(bs_entry->state.bs->quiesce_counter > 0); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4608 | ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp); |
| 4609 | if (ret < 0) { |
| 4610 | goto abort; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4611 | } |
| 4612 | bs_entry->prepared = true; |
| 4613 | } |
| 4614 | |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4615 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4616 | BDRVReopenState *state = &bs_entry->state; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4617 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 4618 | refresh_list = g_slist_prepend(refresh_list, state->bs); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4619 | if (state->old_backing_bs) { |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 4620 | refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs); |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4621 | } |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4622 | if (state->old_file_bs) { |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 4623 | refresh_list = g_slist_prepend(refresh_list, state->old_file_bs); |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4624 | } |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4625 | } |
| 4626 | |
| 4627 | /* |
| 4628 | * Note that file-posix driver rely on permission update done during reopen |
| 4629 | * (even if no permission changed), because it wants "new" permissions for |
| 4630 | * reconfiguring the fd and that's why it does it in raw_check_perm(), not |
| 4631 | * in raw_reopen_prepare() which is called with "old" permissions. |
| 4632 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 4633 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4634 | ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp); |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 4635 | bdrv_graph_rdunlock_main_loop(); |
| 4636 | |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4637 | if (ret < 0) { |
| 4638 | goto abort; |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4639 | } |
| 4640 | |
Vladimir Sementsov-Ogievskiy | fcd6a4f | 2019-09-27 15:23:48 +0300 | [diff] [blame] | 4641 | /* |
| 4642 | * If we reach this point, we have success and just need to apply the |
| 4643 | * changes. |
| 4644 | * |
| 4645 | * Reverse order is used to comfort qcow2 driver: on commit it need to write |
| 4646 | * IN_USE flag to the image, to mark bitmaps in the image as invalid. But |
| 4647 | * children are usually goes after parents in reopen-queue, so go from last |
| 4648 | * to first element. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4649 | */ |
Vladimir Sementsov-Ogievskiy | fcd6a4f | 2019-09-27 15:23:48 +0300 | [diff] [blame] | 4650 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4651 | bdrv_reopen_commit(&bs_entry->state); |
| 4652 | } |
| 4653 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4654 | bdrv_graph_wrlock(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4655 | tran_commit(tran); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4656 | bdrv_graph_wrunlock(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4657 | |
| 4658 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
| 4659 | BlockDriverState *bs = bs_entry->state.bs; |
| 4660 | |
| 4661 | if (bs->drv->bdrv_reopen_commit_post) { |
| 4662 | bs->drv->bdrv_reopen_commit_post(&bs_entry->state); |
| 4663 | } |
| 4664 | } |
| 4665 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4666 | ret = 0; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4667 | goto cleanup; |
| 4668 | |
| 4669 | abort: |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4670 | bdrv_graph_wrlock(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4671 | tran_abort(tran); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4672 | bdrv_graph_wrunlock(); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4673 | |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4674 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4675 | if (bs_entry->prepared) { |
| 4676 | bdrv_reopen_abort(&bs_entry->state); |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4677 | } |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4678 | } |
Peter Krempa | 17e1e2b | 2020-02-28 13:44:46 +0100 | [diff] [blame] | 4679 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4680 | cleanup: |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4681 | bdrv_reopen_queue_free(bs_queue); |
Alberto Garcia | 40840e4 | 2016-10-28 10:08:03 +0300 | [diff] [blame] | 4682 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4683 | return ret; |
| 4684 | } |
| 4685 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4686 | int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts, |
| 4687 | Error **errp) |
| 4688 | { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4689 | BlockReopenQueue *queue; |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4690 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4691 | GLOBAL_STATE_CODE(); |
| 4692 | |
Kevin Wolf | 2e11786 | 2022-11-18 18:41:01 +0100 | [diff] [blame] | 4693 | queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts); |
| 4694 | |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 4695 | return bdrv_reopen_multiple(queue, errp); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4696 | } |
| 4697 | |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4698 | int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only, |
| 4699 | Error **errp) |
| 4700 | { |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4701 | QDict *opts = qdict_new(); |
| 4702 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4703 | GLOBAL_STATE_CODE(); |
| 4704 | |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4705 | qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only); |
| 4706 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4707 | return bdrv_reopen(bs, opts, true, errp); |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4708 | } |
| 4709 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4710 | /* |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4711 | * Take a BDRVReopenState and check if the value of 'backing' in the |
| 4712 | * reopen_state->options QDict is valid or not. |
| 4713 | * |
| 4714 | * If 'backing' is missing from the QDict then return 0. |
| 4715 | * |
| 4716 | * If 'backing' contains the node name of the backing file of |
| 4717 | * reopen_state->bs then return 0. |
| 4718 | * |
| 4719 | * If 'backing' contains a different node name (or is null) then check |
| 4720 | * whether the current backing file can be replaced with the new one. |
| 4721 | * If that's the case then reopen_state->replace_backing_bs is set to |
| 4722 | * true and reopen_state->new_backing_bs contains a pointer to the new |
| 4723 | * backing BlockDriverState (or NULL). |
| 4724 | * |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 4725 | * After calling this function, the transaction @tran may only be completed |
| 4726 | * while holding a writer lock for the graph. |
| 4727 | * |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4728 | * Return 0 on success, otherwise return < 0 and set @errp. |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4729 | * |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4730 | * @reopen_state->bs can move to a different AioContext in this function. |
Fiona Ebner | 2b83359 | 2025-05-30 17:10:47 +0200 | [diff] [blame] | 4731 | * |
| 4732 | * All block nodes must be drained before this function is called until after |
| 4733 | * the transaction is finalized. |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4734 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4735 | static int GRAPH_UNLOCKED |
| 4736 | bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state, |
| 4737 | bool is_backing, Transaction *tran, |
| 4738 | Error **errp) |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4739 | { |
| 4740 | BlockDriverState *bs = reopen_state->bs; |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4741 | BlockDriverState *new_child_bs; |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4742 | BlockDriverState *old_child_bs; |
| 4743 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4744 | const char *child_name = is_backing ? "backing" : "file"; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4745 | QObject *value; |
| 4746 | const char *str; |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4747 | bool has_child; |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4748 | int ret; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4749 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 4750 | GLOBAL_STATE_CODE(); |
| 4751 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4752 | value = qdict_get(reopen_state->options, child_name); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4753 | if (value == NULL) { |
| 4754 | return 0; |
| 4755 | } |
| 4756 | |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4757 | bdrv_graph_rdlock_main_loop(); |
| 4758 | |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4759 | switch (qobject_type(value)) { |
| 4760 | case QTYPE_QNULL: |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4761 | assert(is_backing); /* The 'file' option does not allow a null value */ |
| 4762 | new_child_bs = NULL; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4763 | break; |
| 4764 | case QTYPE_QSTRING: |
Markus Armbruster | 410f44f | 2020-12-11 18:11:42 +0100 | [diff] [blame] | 4765 | str = qstring_get_str(qobject_to(QString, value)); |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4766 | new_child_bs = bdrv_lookup_bs(NULL, str, errp); |
| 4767 | if (new_child_bs == NULL) { |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4768 | ret = -EINVAL; |
| 4769 | goto out_rdlock; |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4770 | } |
| 4771 | |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4772 | has_child = bdrv_recurse_has_child(new_child_bs, bs); |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4773 | if (has_child) { |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4774 | error_setg(errp, "Making '%s' a %s child of '%s' would create a " |
| 4775 | "cycle", str, child_name, bs->node_name); |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4776 | ret = -EINVAL; |
| 4777 | goto out_rdlock; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4778 | } |
| 4779 | break; |
| 4780 | default: |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4781 | /* |
| 4782 | * The options QDict has been flattened, so 'backing' and 'file' |
| 4783 | * do not allow any other data type here. |
| 4784 | */ |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4785 | g_assert_not_reached(); |
| 4786 | } |
| 4787 | |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4788 | old_child_bs = is_backing ? child_bs(bs->backing) : child_bs(bs->file); |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4789 | if (old_child_bs == new_child_bs) { |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4790 | ret = 0; |
| 4791 | goto out_rdlock; |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4792 | } |
| 4793 | |
| 4794 | if (old_child_bs) { |
| 4795 | if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) { |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4796 | ret = 0; |
| 4797 | goto out_rdlock; |
Vladimir Sementsov-Ogievskiy | cbfdb98 | 2021-06-10 15:05:33 +0300 | [diff] [blame] | 4798 | } |
| 4799 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4800 | if (old_child_bs->implicit) { |
| 4801 | error_setg(errp, "Cannot replace implicit %s child of %s", |
| 4802 | child_name, bs->node_name); |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4803 | ret = -EPERM; |
| 4804 | goto out_rdlock; |
Vladimir Sementsov-Ogievskiy | cbfdb98 | 2021-06-10 15:05:33 +0300 | [diff] [blame] | 4805 | } |
| 4806 | } |
| 4807 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4808 | if (bs->drv->is_filter && !old_child_bs) { |
Vladimir Sementsov-Ogievskiy | 25f78d9 | 2021-06-10 15:05:34 +0300 | [diff] [blame] | 4809 | /* |
| 4810 | * Filters always have a file or a backing child, so we are trying to |
| 4811 | * change wrong child |
| 4812 | */ |
| 4813 | 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] | 4814 | "%s child", bs->node_name, bs->drv->format_name, child_name); |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4815 | ret = -EINVAL; |
| 4816 | goto out_rdlock; |
Max Reitz | 1d42f48 | 2019-06-12 17:24:39 +0200 | [diff] [blame] | 4817 | } |
| 4818 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4819 | if (is_backing) { |
| 4820 | reopen_state->old_backing_bs = old_child_bs; |
| 4821 | } else { |
| 4822 | reopen_state->old_file_bs = old_child_bs; |
| 4823 | } |
| 4824 | |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4825 | if (old_child_bs) { |
| 4826 | bdrv_ref(old_child_bs); |
Fiona Ebner | 2b83359 | 2025-05-30 17:10:47 +0200 | [diff] [blame] | 4827 | assert(old_child_bs->quiesce_counter > 0); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4828 | } |
| 4829 | |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4830 | bdrv_graph_rdunlock_main_loop(); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4831 | bdrv_graph_wrlock(); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4832 | |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4833 | ret = bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing, |
| 4834 | tran, errp); |
| 4835 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4836 | bdrv_graph_wrunlock(); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4837 | |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4838 | if (old_child_bs) { |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4839 | bdrv_unref(old_child_bs); |
| 4840 | } |
| 4841 | |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4842 | return ret; |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4843 | |
| 4844 | out_rdlock: |
| 4845 | bdrv_graph_rdunlock_main_loop(); |
| 4846 | return ret; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4847 | } |
| 4848 | |
| 4849 | /* |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4850 | * Prepares a BlockDriverState for reopen. All changes are staged in the |
| 4851 | * 'opaque' field of the BDRVReopenState, which is used and allocated by |
| 4852 | * the block driver layer .bdrv_reopen_prepare() |
| 4853 | * |
| 4854 | * bs is the BlockDriverState to reopen |
| 4855 | * flags are the new open flags |
| 4856 | * queue is the reopen queue |
| 4857 | * |
| 4858 | * Returns 0 on success, non-zero on error. On error errp will be set |
| 4859 | * as well. |
| 4860 | * |
| 4861 | * On failure, bdrv_reopen_abort() will be called to clean up any data. |
| 4862 | * It is the responsibility of the caller to then call the abort() or |
| 4863 | * commit() for any other BDS that have been left in a prepare() state |
| 4864 | * |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 4865 | * After calling this function, the transaction @change_child_tran may only be |
| 4866 | * completed while holding a writer lock for the graph. |
Fiona Ebner | 2b83359 | 2025-05-30 17:10:47 +0200 | [diff] [blame] | 4867 | * |
| 4868 | * All block nodes must be drained before this function is called until after |
| 4869 | * the transaction is finalized. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4870 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4871 | static int GRAPH_UNLOCKED |
| 4872 | bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, |
| 4873 | Transaction *change_child_tran, Error **errp) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4874 | { |
| 4875 | int ret = -1; |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4876 | int old_flags; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4877 | Error *local_err = NULL; |
| 4878 | BlockDriver *drv; |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4879 | QemuOpts *opts; |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4880 | QDict *orig_reopen_opts; |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4881 | char *discard = NULL; |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4882 | bool read_only; |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4883 | bool drv_prepared = false; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4884 | |
| 4885 | assert(reopen_state != NULL); |
| 4886 | assert(reopen_state->bs->drv != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 4887 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4888 | drv = reopen_state->bs->drv; |
| 4889 | |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4890 | /* This function and each driver's bdrv_reopen_prepare() remove |
| 4891 | * entries from reopen_state->options as they are processed, so |
| 4892 | * we need to make a copy of the original QDict. */ |
| 4893 | orig_reopen_opts = qdict_clone_shallow(reopen_state->options); |
| 4894 | |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4895 | /* Process generic block layer options */ |
| 4896 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 4897 | if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) { |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4898 | ret = -EINVAL; |
| 4899 | goto error; |
| 4900 | } |
| 4901 | |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4902 | /* This was already called in bdrv_reopen_queue_child() so the flags |
| 4903 | * are up-to-date. This time we simply want to remove the options from |
| 4904 | * QemuOpts in order to indicate that they have been processed. */ |
| 4905 | old_flags = reopen_state->flags; |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 4906 | update_flags_from_options(&reopen_state->flags, opts); |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4907 | assert(old_flags == reopen_state->flags); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 4908 | |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 4909 | discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD); |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4910 | if (discard != NULL) { |
| 4911 | if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) { |
| 4912 | error_setg(errp, "Invalid discard option"); |
| 4913 | ret = -EINVAL; |
| 4914 | goto error; |
| 4915 | } |
| 4916 | } |
| 4917 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 4918 | reopen_state->detect_zeroes = |
| 4919 | bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err); |
| 4920 | if (local_err) { |
| 4921 | error_propagate(errp, local_err); |
| 4922 | ret = -EINVAL; |
| 4923 | goto error; |
| 4924 | } |
| 4925 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 4926 | /* All other options (including node-name and driver) must be unchanged. |
| 4927 | * Put them back into the QDict, so that they are checked at the end |
| 4928 | * of this function. */ |
| 4929 | qemu_opts_to_qdict(opts, reopen_state->options); |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4930 | |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4931 | /* If we are to stay read-only, do not allow permission change |
| 4932 | * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is |
| 4933 | * not set, or if the BDS still has copy_on_read enabled */ |
| 4934 | read_only = !(reopen_state->flags & BDRV_O_RDWR); |
Kevin Wolf | 4026f1c | 2023-09-29 16:51:47 +0200 | [diff] [blame] | 4935 | |
| 4936 | bdrv_graph_rdlock_main_loop(); |
Kevin Wolf | 54a32bf | 2017-08-03 17:02:58 +0200 | [diff] [blame] | 4937 | ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); |
Kevin Wolf | 4026f1c | 2023-09-29 16:51:47 +0200 | [diff] [blame] | 4938 | bdrv_graph_rdunlock_main_loop(); |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4939 | if (local_err) { |
| 4940 | error_propagate(errp, local_err); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4941 | goto error; |
| 4942 | } |
| 4943 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4944 | if (drv->bdrv_reopen_prepare) { |
Alberto Garcia | faf116b | 2019-03-12 18:48:49 +0200 | [diff] [blame] | 4945 | /* |
| 4946 | * If a driver-specific option is missing, it means that we |
| 4947 | * should reset it to its default value. |
| 4948 | * But not all options allow that, so we need to check it first. |
| 4949 | */ |
| 4950 | ret = bdrv_reset_options_allowed(reopen_state->bs, |
| 4951 | reopen_state->options, errp); |
| 4952 | if (ret) { |
| 4953 | goto error; |
| 4954 | } |
| 4955 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4956 | ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); |
| 4957 | if (ret) { |
| 4958 | if (local_err != NULL) { |
| 4959 | error_propagate(errp, local_err); |
| 4960 | } else { |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 4961 | bdrv_graph_rdlock_main_loop(); |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 4962 | bdrv_refresh_filename(reopen_state->bs); |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 4963 | bdrv_graph_rdunlock_main_loop(); |
Luiz Capitulino | d8b6895 | 2013-06-10 11:29:27 -0400 | [diff] [blame] | 4964 | error_setg(errp, "failed while preparing to reopen image '%s'", |
| 4965 | reopen_state->bs->filename); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4966 | } |
| 4967 | goto error; |
| 4968 | } |
| 4969 | } else { |
| 4970 | /* It is currently mandatory to have a bdrv_reopen_prepare() |
| 4971 | * handler for each supported drv. */ |
Kevin Wolf | 4026f1c | 2023-09-29 16:51:47 +0200 | [diff] [blame] | 4972 | bdrv_graph_rdlock_main_loop(); |
Alberto Garcia | 81e5f78 | 2015-04-08 12:29:19 +0300 | [diff] [blame] | 4973 | error_setg(errp, "Block format '%s' used by node '%s' " |
| 4974 | "does not support reopening files", drv->format_name, |
| 4975 | bdrv_get_device_or_node_name(reopen_state->bs)); |
Kevin Wolf | 4026f1c | 2023-09-29 16:51:47 +0200 | [diff] [blame] | 4976 | bdrv_graph_rdunlock_main_loop(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4977 | ret = -1; |
| 4978 | goto error; |
| 4979 | } |
| 4980 | |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4981 | drv_prepared = true; |
| 4982 | |
Alberto Garcia | bacd9b8 | 2019-03-12 18:48:46 +0200 | [diff] [blame] | 4983 | /* |
| 4984 | * We must provide the 'backing' option if the BDS has a backing |
| 4985 | * file or if the image file has a backing file name as part of |
| 4986 | * its metadata. Otherwise the 'backing' option can be omitted. |
| 4987 | */ |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4988 | bdrv_graph_rdlock_main_loop(); |
Alberto Garcia | bacd9b8 | 2019-03-12 18:48:46 +0200 | [diff] [blame] | 4989 | if (drv->supports_backing && reopen_state->backing_missing && |
Max Reitz | 1d42f48 | 2019-06-12 17:24:39 +0200 | [diff] [blame] | 4990 | (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) { |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4991 | error_setg(errp, "backing is missing for '%s'", |
| 4992 | reopen_state->bs->node_name); |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4993 | bdrv_graph_rdunlock_main_loop(); |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4994 | ret = -EINVAL; |
| 4995 | goto error; |
| 4996 | } |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4997 | bdrv_graph_rdunlock_main_loop(); |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4998 | |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4999 | /* |
| 5000 | * Allow changing the 'backing' option. The new value can be |
| 5001 | * either a reference to an existing node (using its node name) |
| 5002 | * or NULL to simply detach the current backing file. |
| 5003 | */ |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 5004 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, true, |
| 5005 | change_child_tran, errp); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 5006 | if (ret < 0) { |
| 5007 | goto error; |
| 5008 | } |
| 5009 | qdict_del(reopen_state->options, "backing"); |
| 5010 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 5011 | /* Allow changing the 'file' option. In this case NULL is not allowed */ |
| 5012 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, false, |
| 5013 | change_child_tran, errp); |
| 5014 | if (ret < 0) { |
| 5015 | goto error; |
| 5016 | } |
| 5017 | qdict_del(reopen_state->options, "file"); |
| 5018 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 5019 | /* Options that are not handled are only okay if they are unchanged |
| 5020 | * compared to the old state. It is expected that some options are only |
| 5021 | * used for the initial open, but not reopen (e.g. filename) */ |
| 5022 | if (qdict_size(reopen_state->options)) { |
| 5023 | const QDictEntry *entry = qdict_first(reopen_state->options); |
| 5024 | |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 5025 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 5026 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 5027 | do { |
Max Reitz | 54fd1b0 | 2017-11-14 19:01:26 +0100 | [diff] [blame] | 5028 | QObject *new = entry->value; |
| 5029 | QObject *old = qdict_get(reopen_state->bs->options, entry->key); |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 5030 | |
Alberto Garcia | db90528 | 2018-09-06 12:37:05 +0300 | [diff] [blame] | 5031 | /* Allow child references (child_name=node_name) as long as they |
| 5032 | * point to the current child (i.e. everything stays the same). */ |
| 5033 | if (qobject_type(new) == QTYPE_QSTRING) { |
| 5034 | BdrvChild *child; |
| 5035 | QLIST_FOREACH(child, &reopen_state->bs->children, next) { |
| 5036 | if (!strcmp(child->name, entry->key)) { |
| 5037 | break; |
| 5038 | } |
| 5039 | } |
| 5040 | |
| 5041 | if (child) { |
Markus Armbruster | 410f44f | 2020-12-11 18:11:42 +0100 | [diff] [blame] | 5042 | if (!strcmp(child->bs->node_name, |
| 5043 | qstring_get_str(qobject_to(QString, new)))) { |
Alberto Garcia | db90528 | 2018-09-06 12:37:05 +0300 | [diff] [blame] | 5044 | continue; /* Found child with this name, skip option */ |
| 5045 | } |
| 5046 | } |
| 5047 | } |
| 5048 | |
Max Reitz | 54fd1b0 | 2017-11-14 19:01:26 +0100 | [diff] [blame] | 5049 | /* |
| 5050 | * TODO: When using -drive to specify blockdev options, all values |
| 5051 | * will be strings; however, when using -blockdev, blockdev-add or |
| 5052 | * filenames using the json:{} pseudo-protocol, they will be |
| 5053 | * correctly typed. |
| 5054 | * In contrast, reopening options are (currently) always strings |
| 5055 | * (because you can only specify them through qemu-io; all other |
| 5056 | * callers do not specify any options). |
| 5057 | * Therefore, when using anything other than -drive to create a BDS, |
| 5058 | * this cannot detect non-string options as unchanged, because |
| 5059 | * qobject_is_equal() always returns false for objects of different |
| 5060 | * type. In the future, this should be remedied by correctly typing |
| 5061 | * all options. For now, this is not too big of an issue because |
| 5062 | * the user can simply omit options which cannot be changed anyway, |
| 5063 | * so they will stay unchanged. |
| 5064 | */ |
| 5065 | if (!qobject_is_equal(new, old)) { |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 5066 | error_setg(errp, "Cannot change the option '%s'", entry->key); |
| 5067 | ret = -EINVAL; |
| 5068 | goto error; |
| 5069 | } |
| 5070 | } while ((entry = qdict_next(reopen_state->options, entry))); |
| 5071 | } |
| 5072 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5073 | ret = 0; |
| 5074 | |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 5075 | /* Restore the original reopen_state->options QDict */ |
| 5076 | qobject_unref(reopen_state->options); |
| 5077 | reopen_state->options = qobject_ref(orig_reopen_opts); |
| 5078 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5079 | error: |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 5080 | if (ret < 0 && drv_prepared) { |
| 5081 | /* drv->bdrv_reopen_prepare() has succeeded, so we need to |
| 5082 | * call drv->bdrv_reopen_abort() before signaling an error |
| 5083 | * (bdrv_reopen_multiple() will not call bdrv_reopen_abort() |
| 5084 | * when the respective bdrv_reopen_prepare() has failed) */ |
| 5085 | if (drv->bdrv_reopen_abort) { |
| 5086 | drv->bdrv_reopen_abort(reopen_state); |
| 5087 | } |
| 5088 | } |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 5089 | qemu_opts_del(opts); |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 5090 | qobject_unref(orig_reopen_opts); |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 5091 | g_free(discard); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5092 | return ret; |
| 5093 | } |
| 5094 | |
| 5095 | /* |
| 5096 | * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and |
| 5097 | * makes them final by swapping the staging BlockDriverState contents into |
| 5098 | * the active BlockDriverState contents. |
| 5099 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 5100 | static void GRAPH_UNLOCKED bdrv_reopen_commit(BDRVReopenState *reopen_state) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5101 | { |
| 5102 | BlockDriver *drv; |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 5103 | BlockDriverState *bs; |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 5104 | BdrvChild *child; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5105 | |
| 5106 | assert(reopen_state != NULL); |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 5107 | bs = reopen_state->bs; |
| 5108 | drv = bs->drv; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5109 | assert(drv != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 5110 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5111 | |
| 5112 | /* If there are any driver level actions to take */ |
| 5113 | if (drv->bdrv_reopen_commit) { |
| 5114 | drv->bdrv_reopen_commit(reopen_state); |
| 5115 | } |
| 5116 | |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 5117 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 5118 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5119 | /* set BDS specific flags now */ |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 5120 | qobject_unref(bs->explicit_options); |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 5121 | qobject_unref(bs->options); |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 5122 | qobject_ref(reopen_state->explicit_options); |
| 5123 | qobject_ref(reopen_state->options); |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 5124 | |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 5125 | bs->explicit_options = reopen_state->explicit_options; |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 5126 | bs->options = reopen_state->options; |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 5127 | bs->open_flags = reopen_state->flags; |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 5128 | bs->detect_zeroes = reopen_state->detect_zeroes; |
Kevin Wolf | 355ef4a | 2013-12-11 20:14:09 +0100 | [diff] [blame] | 5129 | |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 5130 | /* Remove child references from bs->options and bs->explicit_options. |
| 5131 | * Child options were already removed in bdrv_reopen_queue_child() */ |
| 5132 | QLIST_FOREACH(child, &bs->children, next) { |
| 5133 | qdict_del(bs->explicit_options, child->name); |
| 5134 | qdict_del(bs->options, child->name); |
| 5135 | } |
Vladimir Sementsov-Ogievskiy | 3d0e874 | 2021-06-10 15:05:35 +0300 | [diff] [blame] | 5136 | /* backing is probably removed, so it's not handled by previous loop */ |
| 5137 | qdict_del(bs->explicit_options, "backing"); |
| 5138 | qdict_del(bs->options, "backing"); |
| 5139 | |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 5140 | bdrv_refresh_limits(bs, NULL, NULL); |
Paolo Bonzini | 439cc33 | 2023-04-07 17:32:58 +0200 | [diff] [blame] | 5141 | bdrv_refresh_total_sectors(bs, bs->total_sectors); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5142 | } |
| 5143 | |
| 5144 | /* |
| 5145 | * Abort the reopen, and delete and free the staged changes in |
| 5146 | * reopen_state |
| 5147 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 5148 | static void GRAPH_UNLOCKED bdrv_reopen_abort(BDRVReopenState *reopen_state) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5149 | { |
| 5150 | BlockDriver *drv; |
| 5151 | |
| 5152 | assert(reopen_state != NULL); |
| 5153 | drv = reopen_state->bs->drv; |
| 5154 | assert(drv != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 5155 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5156 | |
| 5157 | if (drv->bdrv_reopen_abort) { |
| 5158 | drv->bdrv_reopen_abort(reopen_state); |
| 5159 | } |
| 5160 | } |
| 5161 | |
| 5162 | |
Max Reitz | 64dff52 | 2016-01-29 16:36:10 +0100 | [diff] [blame] | 5163 | static void bdrv_close(BlockDriverState *bs) |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5164 | { |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 5165 | BdrvAioNotifier *ban, *ban_next; |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5166 | BdrvChild *child, *next; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 5167 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5168 | GLOBAL_STATE_CODE(); |
Max Reitz | 30f55fb | 2016-05-17 16:41:32 +0200 | [diff] [blame] | 5169 | assert(!bs->refcnt); |
Alberto Garcia | 99b7e77 | 2015-09-25 16:41:44 +0300 | [diff] [blame] | 5170 | |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 5171 | bdrv_drained_begin(bs); /* complete I/O */ |
Stefan Hajnoczi | 58fda17 | 2013-07-02 15:36:25 +0200 | [diff] [blame] | 5172 | bdrv_flush(bs); |
Fam Zheng | 53ec73e | 2015-05-29 18:53:14 +0800 | [diff] [blame] | 5173 | bdrv_drain(bs); /* in case flush left pending I/O */ |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 5174 | |
Paolo Bonzini | 3cbc002 | 2012-10-19 11:36:48 +0200 | [diff] [blame] | 5175 | if (bs->drv) { |
Vladimir Sementsov-Ogievskiy | 3c00529 | 2018-08-14 15:43:19 +0300 | [diff] [blame] | 5176 | if (bs->drv->bdrv_close) { |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5177 | /* Must unfreeze all children, so bdrv_unref_child() works */ |
Vladimir Sementsov-Ogievskiy | 3c00529 | 2018-08-14 15:43:19 +0300 | [diff] [blame] | 5178 | bs->drv->bdrv_close(bs); |
| 5179 | } |
Kevin Wolf | 9a4f4c3 | 2015-06-16 14:19:22 +0200 | [diff] [blame] | 5180 | bs->drv = NULL; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 5181 | } |
Zhi Yong Wu | 98f90db | 2011-11-08 13:00:14 +0800 | [diff] [blame] | 5182 | |
Fiona Ebner | b13f546 | 2025-05-30 17:10:52 +0200 | [diff] [blame] | 5183 | bdrv_drain_all_begin(); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5184 | bdrv_graph_wrlock(); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5185 | QLIST_FOREACH_SAFE(child, &bs->children, next, next) { |
Alberto Garcia | dd4118c | 2019-05-13 16:46:17 +0300 | [diff] [blame] | 5186 | bdrv_unref_child(bs, child); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5187 | } |
| 5188 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5189 | assert(!bs->backing); |
| 5190 | assert(!bs->file); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5191 | bdrv_graph_wrunlock(); |
Fiona Ebner | b13f546 | 2025-05-30 17:10:52 +0200 | [diff] [blame] | 5192 | bdrv_drain_all_end(); |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 5193 | |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5194 | g_free(bs->opaque); |
| 5195 | bs->opaque = NULL; |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 5196 | qatomic_set(&bs->copy_on_read, 0); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5197 | bs->backing_file[0] = '\0'; |
| 5198 | bs->backing_format[0] = '\0'; |
| 5199 | bs->total_sectors = 0; |
| 5200 | bs->encrypted = false; |
| 5201 | bs->sg = false; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 5202 | qobject_unref(bs->options); |
| 5203 | qobject_unref(bs->explicit_options); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5204 | bs->options = NULL; |
| 5205 | bs->explicit_options = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 5206 | qobject_unref(bs->full_open_options); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5207 | bs->full_open_options = NULL; |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 5208 | g_free(bs->block_status_cache); |
| 5209 | bs->block_status_cache = NULL; |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5210 | |
Vladimir Sementsov-Ogievskiy | cca43ae | 2017-06-28 15:05:16 +0300 | [diff] [blame] | 5211 | bdrv_release_named_dirty_bitmaps(bs); |
| 5212 | assert(QLIST_EMPTY(&bs->dirty_bitmaps)); |
| 5213 | |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 5214 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
| 5215 | g_free(ban); |
| 5216 | } |
| 5217 | QLIST_INIT(&bs->aio_notifiers); |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 5218 | bdrv_drained_end(bs); |
Greg Kurz | 1a6d3bd | 2020-10-23 17:01:10 +0200 | [diff] [blame] | 5219 | |
| 5220 | /* |
| 5221 | * If we're still inside some bdrv_drain_all_begin()/end() sections, end |
| 5222 | * them now since this BDS won't exist anymore when bdrv_drain_all_end() |
| 5223 | * gets called. |
| 5224 | */ |
| 5225 | if (bs->quiesce_counter) { |
| 5226 | bdrv_drain_all_end_quiesce(bs); |
| 5227 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 5228 | } |
| 5229 | |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 5230 | void bdrv_close_all(void) |
| 5231 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5232 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | 880eeec | 2022-09-26 05:32:04 -0400 | [diff] [blame] | 5233 | assert(job_next(NULL) == NULL); |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 5234 | |
Max Reitz | ca9bd24 | 2016-01-29 16:36:14 +0100 | [diff] [blame] | 5235 | /* Drop references from requests still in flight, such as canceled block |
| 5236 | * jobs whose AIO context has not been polled yet */ |
| 5237 | bdrv_drain_all(); |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 5238 | |
Max Reitz | ca9bd24 | 2016-01-29 16:36:14 +0100 | [diff] [blame] | 5239 | blk_remove_all_bs(); |
| 5240 | blockdev_close_all_bdrv_states(); |
| 5241 | |
Kevin Wolf | a1a2af0 | 2016-04-08 18:26:37 +0200 | [diff] [blame] | 5242 | assert(QTAILQ_EMPTY(&all_bdrv_states)); |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 5243 | } |
| 5244 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5245 | static bool GRAPH_RDLOCK should_update_child(BdrvChild *c, BlockDriverState *to) |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5246 | { |
Vladimir Sementsov-Ogievskiy | 2f30b7c | 2019-02-23 22:20:39 +0300 | [diff] [blame] | 5247 | GQueue *queue; |
| 5248 | GHashTable *found; |
| 5249 | bool ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5250 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5251 | if (c->klass->stay_at_node) { |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5252 | return false; |
| 5253 | } |
| 5254 | |
Max Reitz | ec9f10f | 2018-06-13 20:18:15 +0200 | [diff] [blame] | 5255 | /* If the child @c belongs to the BDS @to, replacing the current |
| 5256 | * c->bs by @to would mean to create a loop. |
| 5257 | * |
| 5258 | * Such a case occurs when appending a BDS to a backing chain. |
| 5259 | * For instance, imagine the following chain: |
| 5260 | * |
| 5261 | * guest device -> node A -> further backing chain... |
| 5262 | * |
| 5263 | * Now we create a new BDS B which we want to put on top of this |
| 5264 | * chain, so we first attach A as its backing node: |
| 5265 | * |
| 5266 | * node B |
| 5267 | * | |
| 5268 | * v |
| 5269 | * guest device -> node A -> further backing chain... |
| 5270 | * |
| 5271 | * Finally we want to replace A by B. When doing that, we want to |
| 5272 | * replace all pointers to A by pointers to B -- except for the |
| 5273 | * pointer from B because (1) that would create a loop, and (2) |
| 5274 | * that pointer should simply stay intact: |
| 5275 | * |
| 5276 | * guest device -> node B |
| 5277 | * | |
| 5278 | * v |
| 5279 | * node A -> further backing chain... |
| 5280 | * |
| 5281 | * In general, when replacing a node A (c->bs) by a node B (@to), |
| 5282 | * if A is a child of B, that means we cannot replace A by B there |
| 5283 | * because that would create a loop. Silently detaching A from B |
| 5284 | * 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] | 5285 | * place there is the most sensible choice. |
| 5286 | * |
| 5287 | * We would also create a loop in any cases where @c is only |
| 5288 | * indirectly referenced by @to. Prevent this by returning false |
| 5289 | * if @c is found (by breadth-first search) anywhere in the whole |
| 5290 | * subtree of @to. |
| 5291 | */ |
| 5292 | |
| 5293 | ret = true; |
| 5294 | found = g_hash_table_new(NULL, NULL); |
| 5295 | g_hash_table_add(found, to); |
| 5296 | queue = g_queue_new(); |
| 5297 | g_queue_push_tail(queue, to); |
| 5298 | |
| 5299 | while (!g_queue_is_empty(queue)) { |
| 5300 | BlockDriverState *v = g_queue_pop_head(queue); |
| 5301 | BdrvChild *c2; |
| 5302 | |
| 5303 | QLIST_FOREACH(c2, &v->children, next) { |
| 5304 | if (c2 == c) { |
| 5305 | ret = false; |
| 5306 | break; |
| 5307 | } |
| 5308 | |
| 5309 | if (g_hash_table_contains(found, c2->bs)) { |
| 5310 | continue; |
| 5311 | } |
| 5312 | |
| 5313 | g_queue_push_tail(queue, c2->bs); |
| 5314 | g_hash_table_add(found, c2->bs); |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5315 | } |
| 5316 | } |
| 5317 | |
Vladimir Sementsov-Ogievskiy | 2f30b7c | 2019-02-23 22:20:39 +0300 | [diff] [blame] | 5318 | g_queue_free(queue); |
| 5319 | g_hash_table_destroy(found); |
| 5320 | |
| 5321 | return ret; |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5322 | } |
| 5323 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5324 | static void bdrv_remove_child_commit(void *opaque) |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5325 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 5326 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5327 | bdrv_child_free(opaque); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5328 | } |
| 5329 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5330 | static TransactionActionDrv bdrv_remove_child_drv = { |
| 5331 | .commit = bdrv_remove_child_commit, |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5332 | }; |
| 5333 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5334 | /* |
| 5335 | * Function doesn't update permissions, caller is responsible for this. |
| 5336 | * |
| 5337 | * @child->bs (if non-NULL) must be drained. |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 5338 | * |
| 5339 | * After calling this function, the transaction @tran may only be completed |
| 5340 | * while holding a writer lock for the graph. |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5341 | */ |
| 5342 | static void GRAPH_WRLOCK bdrv_remove_child(BdrvChild *child, Transaction *tran) |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5343 | { |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5344 | if (!child) { |
| 5345 | return; |
| 5346 | } |
| 5347 | |
| 5348 | if (child->bs) { |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5349 | assert(child->quiesced_parent); |
Vladimir Sementsov-Ogievskiy | a2c37a3 | 2022-07-26 23:11:30 +0300 | [diff] [blame] | 5350 | bdrv_replace_child_tran(child, NULL, tran); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5351 | } |
| 5352 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5353 | tran_add(tran, &bdrv_remove_child_drv, child); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5354 | } |
| 5355 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5356 | /* |
| 5357 | * Both @from and @to (if non-NULL) must be drained. @to must be kept drained |
| 5358 | * until the transaction is completed. |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 5359 | * |
| 5360 | * After calling this function, the transaction @tran may only be completed |
| 5361 | * while holding a writer lock for the graph. |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5362 | */ |
| 5363 | static int GRAPH_WRLOCK |
| 5364 | bdrv_replace_node_noperm(BlockDriverState *from, |
| 5365 | BlockDriverState *to, |
| 5366 | bool auto_skip, Transaction *tran, |
| 5367 | Error **errp) |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5368 | { |
| 5369 | BdrvChild *c, *next; |
| 5370 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 5371 | GLOBAL_STATE_CODE(); |
Hanna Reitz | 82b54cf | 2021-11-15 15:54:04 +0100 | [diff] [blame] | 5372 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5373 | assert(from->quiesce_counter); |
| 5374 | assert(to->quiesce_counter); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 5375 | |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5376 | QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { |
| 5377 | assert(c->bs == from); |
| 5378 | if (!should_update_child(c, to)) { |
| 5379 | if (auto_skip) { |
| 5380 | continue; |
| 5381 | } |
| 5382 | error_setg(errp, "Should not change '%s' link to '%s'", |
| 5383 | c->name, from->node_name); |
| 5384 | return -EINVAL; |
| 5385 | } |
| 5386 | if (c->frozen) { |
| 5387 | error_setg(errp, "Cannot change '%s' link to '%s'", |
| 5388 | c->name, from->node_name); |
| 5389 | return -EPERM; |
| 5390 | } |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 5391 | bdrv_replace_child_tran(c, to, tran); |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5392 | } |
| 5393 | |
| 5394 | return 0; |
| 5395 | } |
| 5396 | |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5397 | /* |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5398 | * Switch all parents of @from to point to @to instead. @from and @to must be in |
| 5399 | * the same AioContext and both must be drained. |
| 5400 | * |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5401 | * With auto_skip=true bdrv_replace_node_common skips updating from parents |
| 5402 | * if it creates a parent-child relation loop or if parent is block-job. |
| 5403 | * |
| 5404 | * With auto_skip=false the error is returned if from has a parent which should |
| 5405 | * not be updated. |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5406 | * |
| 5407 | * With @detach_subchain=true @to must be in a backing chain of @from. In this |
| 5408 | * case backing link of the cow-parent of @to is removed. |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5409 | */ |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5410 | static int GRAPH_WRLOCK |
| 5411 | bdrv_replace_node_common(BlockDriverState *from, BlockDriverState *to, |
| 5412 | bool auto_skip, bool detach_subchain, Error **errp) |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5413 | { |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5414 | Transaction *tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5415 | g_autoptr(GSList) refresh_list = NULL; |
Miroslav Rezanina | 2d369d6 | 2021-05-05 03:59:03 -0400 | [diff] [blame] | 5416 | BlockDriverState *to_cow_parent = NULL; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5417 | int ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5418 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 5419 | GLOBAL_STATE_CODE(); |
Hanna Reitz | 82b54cf | 2021-11-15 15:54:04 +0100 | [diff] [blame] | 5420 | |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5421 | assert(from->quiesce_counter); |
| 5422 | assert(to->quiesce_counter); |
Kevin Wolf | 30dd65f | 2020-03-10 12:38:29 +0100 | [diff] [blame] | 5423 | assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to)); |
Kevin Wolf | f871abd | 2019-05-21 19:00:25 +0200 | [diff] [blame] | 5424 | |
Kevin Wolf | 372b69f | 2023-10-27 17:53:15 +0200 | [diff] [blame] | 5425 | if (detach_subchain) { |
| 5426 | assert(bdrv_chain_contains(from, to)); |
| 5427 | assert(from != to); |
| 5428 | for (to_cow_parent = from; |
| 5429 | bdrv_filter_or_cow_bs(to_cow_parent) != to; |
| 5430 | to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent)) |
| 5431 | { |
| 5432 | ; |
| 5433 | } |
| 5434 | } |
| 5435 | |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5436 | /* |
| 5437 | * Do the replacement without permission update. |
| 5438 | * Replacement may influence the permissions, we should calculate new |
| 5439 | * permissions based on new graph. If we fail, we'll roll-back the |
| 5440 | * replacement. |
| 5441 | */ |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5442 | ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp); |
| 5443 | if (ret < 0) { |
| 5444 | goto out; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5445 | } |
| 5446 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5447 | if (detach_subchain) { |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5448 | /* to_cow_parent is already drained because from is drained */ |
Vladimir Sementsov-Ogievskiy | f38eaec | 2022-11-07 19:35:56 +0300 | [diff] [blame] | 5449 | bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran); |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5450 | } |
| 5451 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 5452 | refresh_list = g_slist_prepend(refresh_list, to); |
| 5453 | refresh_list = g_slist_prepend(refresh_list, from); |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5454 | |
| 5455 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5456 | if (ret < 0) { |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5457 | goto out; |
| 5458 | } |
| 5459 | |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5460 | ret = 0; |
| 5461 | |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5462 | out: |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5463 | tran_finalize(tran, ret); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5464 | return ret; |
| 5465 | } |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5466 | |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5467 | int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, |
| 5468 | Error **errp) |
| 5469 | { |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5470 | return bdrv_replace_node_common(from, to, true, false, errp); |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5471 | } |
| 5472 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5473 | int bdrv_drop_filter(BlockDriverState *bs, Error **errp) |
| 5474 | { |
Kevin Wolf | 372b69f | 2023-10-27 17:53:15 +0200 | [diff] [blame] | 5475 | BlockDriverState *child_bs; |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5476 | int ret; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5477 | |
Kevin Wolf | 372b69f | 2023-10-27 17:53:15 +0200 | [diff] [blame] | 5478 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5479 | |
Kevin Wolf | 372b69f | 2023-10-27 17:53:15 +0200 | [diff] [blame] | 5480 | bdrv_graph_rdlock_main_loop(); |
| 5481 | child_bs = bdrv_filter_or_cow_bs(bs); |
| 5482 | bdrv_graph_rdunlock_main_loop(); |
| 5483 | |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5484 | bdrv_drained_begin(child_bs); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5485 | bdrv_graph_wrlock(); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5486 | ret = bdrv_replace_node_common(bs, child_bs, true, true, errp); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5487 | bdrv_graph_wrunlock(); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5488 | bdrv_drained_end(child_bs); |
| 5489 | |
| 5490 | return ret; |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5491 | } |
| 5492 | |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5493 | /* |
| 5494 | * Add new bs contents at the top of an image chain while the chain is |
| 5495 | * live, while keeping required fields on the top layer. |
| 5496 | * |
| 5497 | * This will modify the BlockDriverState fields, and swap contents |
| 5498 | * between bs_new and bs_top. Both bs_new and bs_top are modified. |
| 5499 | * |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5500 | * bs_new must not be attached to a BlockBackend and must not have backing |
| 5501 | * child. |
Jeff Cody | f6801b8 | 2012-03-27 16:30:19 -0400 | [diff] [blame] | 5502 | * |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5503 | * This function does not create any image files. |
| 5504 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5505 | int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, |
| 5506 | Error **errp) |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5507 | { |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5508 | int ret; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5509 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5510 | Transaction *tran = tran_new(); |
| 5511 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5512 | GLOBAL_STATE_CODE(); |
| 5513 | |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 5514 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5515 | assert(!bs_new->backing); |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 5516 | bdrv_graph_rdunlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5517 | |
Fiona Ebner | 2b83359 | 2025-05-30 17:10:47 +0200 | [diff] [blame] | 5518 | bdrv_drain_all_begin(); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5519 | bdrv_graph_wrlock(); |
Stefano Garzarella | 60d90bf | 2023-02-14 18:16:21 +0100 | [diff] [blame] | 5520 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5521 | child = bdrv_attach_child_noperm(bs_new, bs_top, "backing", |
| 5522 | &child_of_bds, bdrv_backing_role(bs_new), |
| 5523 | tran, errp); |
| 5524 | if (!child) { |
| 5525 | ret = -EINVAL; |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5526 | goto out; |
Kevin Wolf | b2c2832 | 2017-02-20 12:46:42 +0100 | [diff] [blame] | 5527 | } |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5528 | |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5529 | 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] | 5530 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5531 | goto out; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5532 | } |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5533 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 5534 | ret = bdrv_refresh_perms(bs_new, tran, errp); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5535 | out: |
| 5536 | tran_finalize(tran, ret); |
| 5537 | |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 5538 | bdrv_refresh_limits(bs_top, NULL, NULL); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5539 | bdrv_graph_wrunlock(); |
Fiona Ebner | 2b83359 | 2025-05-30 17:10:47 +0200 | [diff] [blame] | 5540 | bdrv_drain_all_end(); |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5541 | |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5542 | return ret; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5543 | } |
| 5544 | |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5545 | /* Not for empty child */ |
| 5546 | int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs, |
| 5547 | Error **errp) |
| 5548 | { |
| 5549 | int ret; |
| 5550 | Transaction *tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5551 | g_autoptr(GSList) refresh_list = NULL; |
| 5552 | BlockDriverState *old_bs = child->bs; |
| 5553 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5554 | GLOBAL_STATE_CODE(); |
| 5555 | |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5556 | bdrv_ref(old_bs); |
| 5557 | bdrv_drained_begin(old_bs); |
| 5558 | bdrv_drained_begin(new_bs); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5559 | bdrv_graph_wrlock(); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5560 | |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 5561 | bdrv_replace_child_tran(child, new_bs, tran); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5562 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 5563 | refresh_list = g_slist_prepend(refresh_list, old_bs); |
| 5564 | refresh_list = g_slist_prepend(refresh_list, new_bs); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5565 | |
| 5566 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
| 5567 | |
| 5568 | tran_finalize(tran, ret); |
| 5569 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5570 | bdrv_graph_wrunlock(); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5571 | bdrv_drained_end(old_bs); |
| 5572 | bdrv_drained_end(new_bs); |
| 5573 | bdrv_unref(old_bs); |
| 5574 | |
| 5575 | return ret; |
| 5576 | } |
| 5577 | |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 5578 | static void bdrv_delete(BlockDriverState *bs) |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 5579 | { |
Fam Zheng | 3718d8a | 2014-05-23 21:29:43 +0800 | [diff] [blame] | 5580 | assert(bdrv_op_blocker_is_empty(bs)); |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 5581 | assert(!bs->refcnt); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5582 | GLOBAL_STATE_CODE(); |
Markus Armbruster | 18846de | 2010-06-29 16:58:30 +0200 | [diff] [blame] | 5583 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 5584 | /* remove from list, if necessary */ |
Kevin Wolf | 63eaaae | 2016-03-18 10:46:57 +0100 | [diff] [blame] | 5585 | if (bs->node_name[0] != '\0') { |
| 5586 | QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); |
| 5587 | } |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 5588 | QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); |
| 5589 | |
Anton Kuchin | 30c321f | 2019-05-07 11:12:56 +0300 | [diff] [blame] | 5590 | bdrv_close(bs); |
| 5591 | |
Stefan Hajnoczi | fa9185f | 2023-08-08 11:58:52 -0400 | [diff] [blame] | 5592 | qemu_mutex_destroy(&bs->reqs_lock); |
| 5593 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 5594 | g_free(bs); |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5595 | } |
| 5596 | |
Vladimir Sementsov-Ogievskiy | 96796fa | 2021-09-20 14:55:36 +0300 | [diff] [blame] | 5597 | |
| 5598 | /* |
| 5599 | * Replace @bs by newly created block node. |
| 5600 | * |
| 5601 | * @options is a QDict of options to pass to the block drivers, or NULL for an |
| 5602 | * empty set of options. The reference to the QDict belongs to the block layer |
| 5603 | * after the call (even on failure), so if the caller intends to reuse the |
| 5604 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
Kevin Wolf | 8823407 | 2023-05-25 14:47:11 +0200 | [diff] [blame] | 5605 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 5606 | * The caller must make sure that @bs stays in the same AioContext, i.e. |
| 5607 | * @options must not refer to nodes in a different AioContext. |
Vladimir Sementsov-Ogievskiy | 96796fa | 2021-09-20 14:55:36 +0300 | [diff] [blame] | 5608 | */ |
| 5609 | BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options, |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5610 | int flags, Error **errp) |
| 5611 | { |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame] | 5612 | ERRP_GUARD(); |
| 5613 | int ret; |
Kevin Wolf | 8823407 | 2023-05-25 14:47:11 +0200 | [diff] [blame] | 5614 | AioContext *ctx = bdrv_get_aio_context(bs); |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5615 | BlockDriverState *new_node_bs = NULL; |
| 5616 | const char *drvname, *node_name; |
| 5617 | BlockDriver *drv; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5618 | |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5619 | drvname = qdict_get_try_str(options, "driver"); |
| 5620 | if (!drvname) { |
| 5621 | error_setg(errp, "driver is not specified"); |
| 5622 | goto fail; |
| 5623 | } |
| 5624 | |
| 5625 | drv = bdrv_find_format(drvname); |
| 5626 | if (!drv) { |
| 5627 | error_setg(errp, "Unknown driver: '%s'", drvname); |
| 5628 | goto fail; |
| 5629 | } |
| 5630 | |
| 5631 | node_name = qdict_get_try_str(options, "node-name"); |
| 5632 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5633 | GLOBAL_STATE_CODE(); |
| 5634 | |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5635 | new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags, |
| 5636 | errp); |
Kevin Wolf | 8823407 | 2023-05-25 14:47:11 +0200 | [diff] [blame] | 5637 | assert(bdrv_get_aio_context(bs) == ctx); |
| 5638 | |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5639 | options = NULL; /* bdrv_new_open_driver() eats options */ |
| 5640 | if (!new_node_bs) { |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5641 | error_prepend(errp, "Could not create node: "); |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5642 | goto fail; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5643 | } |
| 5644 | |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5645 | /* |
| 5646 | * Make sure that @bs doesn't go away until we have successfully attached |
| 5647 | * all of its parents to @new_node_bs and undrained it again. |
| 5648 | */ |
| 5649 | bdrv_ref(bs); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5650 | bdrv_drained_begin(bs); |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5651 | bdrv_drained_begin(new_node_bs); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5652 | bdrv_graph_wrlock(); |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame] | 5653 | ret = bdrv_replace_node(bs, new_node_bs, errp); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5654 | bdrv_graph_wrunlock(); |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5655 | bdrv_drained_end(new_node_bs); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5656 | bdrv_drained_end(bs); |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5657 | bdrv_unref(bs); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5658 | |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame] | 5659 | if (ret < 0) { |
| 5660 | error_prepend(errp, "Could not replace node: "); |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5661 | goto fail; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5662 | } |
| 5663 | |
| 5664 | return new_node_bs; |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5665 | |
| 5666 | fail: |
| 5667 | qobject_unref(options); |
| 5668 | bdrv_unref(new_node_bs); |
| 5669 | return NULL; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5670 | } |
| 5671 | |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5672 | /* |
| 5673 | * Run consistency checks on an image |
| 5674 | * |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 5675 | * 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] | 5676 | * 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] | 5677 | * check are stored in res. |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5678 | */ |
Vladimir Sementsov-Ogievskiy | 21c2283 | 2020-09-24 21:54:10 +0300 | [diff] [blame] | 5679 | int coroutine_fn bdrv_co_check(BlockDriverState *bs, |
| 5680 | BdrvCheckResult *res, BdrvCheckMode fix) |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5681 | { |
Emanuele Giuseppe Esposito | 1581a70 | 2022-03-03 10:16:09 -0500 | [diff] [blame] | 5682 | IO_CODE(); |
Kevin Wolf | 1b3ff9f | 2022-12-07 14:18:38 +0100 | [diff] [blame] | 5683 | assert_bdrv_graph_readable(); |
Max Reitz | 908bcd5 | 2014-08-07 22:47:55 +0200 | [diff] [blame] | 5684 | if (bs->drv == NULL) { |
| 5685 | return -ENOMEDIUM; |
| 5686 | } |
Paolo Bonzini | 2fd6163 | 2018-03-01 17:36:19 +0100 | [diff] [blame] | 5687 | if (bs->drv->bdrv_co_check == NULL) { |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5688 | return -ENOTSUP; |
| 5689 | } |
| 5690 | |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 5691 | memset(res, 0, sizeof(*res)); |
Paolo Bonzini | 2fd6163 | 2018-03-01 17:36:19 +0100 | [diff] [blame] | 5692 | return bs->drv->bdrv_co_check(bs, res, fix); |
| 5693 | } |
| 5694 | |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5695 | /* |
| 5696 | * Return values: |
| 5697 | * 0 - success |
| 5698 | * -EINVAL - backing format specified, but no file |
| 5699 | * -ENOSPC - can't update the backing file because no space is left in the |
| 5700 | * image file header |
| 5701 | * -ENOTSUP - format driver doesn't support changing the backing file |
| 5702 | */ |
Kevin Wolf | e2dd273 | 2023-10-27 17:53:28 +0200 | [diff] [blame] | 5703 | int coroutine_fn |
| 5704 | bdrv_co_change_backing_file(BlockDriverState *bs, const char *backing_file, |
| 5705 | const char *backing_fmt, bool require) |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5706 | { |
| 5707 | BlockDriver *drv = bs->drv; |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5708 | int ret; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5709 | |
Kevin Wolf | e2dd273 | 2023-10-27 17:53:28 +0200 | [diff] [blame] | 5710 | IO_CODE(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5711 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 5712 | if (!drv) { |
| 5713 | return -ENOMEDIUM; |
| 5714 | } |
| 5715 | |
Paolo Bonzini | 5f37779 | 2012-04-12 14:01:01 +0200 | [diff] [blame] | 5716 | /* Backing file format doesn't make sense without a backing file */ |
| 5717 | if (backing_fmt && !backing_file) { |
| 5718 | return -EINVAL; |
| 5719 | } |
| 5720 | |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 5721 | if (require && backing_file && !backing_fmt) { |
| 5722 | return -EINVAL; |
Eric Blake | e54ee1b | 2020-07-06 15:39:53 -0500 | [diff] [blame] | 5723 | } |
| 5724 | |
Kevin Wolf | e2dd273 | 2023-10-27 17:53:28 +0200 | [diff] [blame] | 5725 | if (drv->bdrv_co_change_backing_file != NULL) { |
| 5726 | ret = drv->bdrv_co_change_backing_file(bs, backing_file, backing_fmt); |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5727 | } else { |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5728 | ret = -ENOTSUP; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5729 | } |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5730 | |
| 5731 | if (ret == 0) { |
| 5732 | pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); |
| 5733 | pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 5734 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
| 5735 | backing_file ?: ""); |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5736 | } |
| 5737 | return ret; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5738 | } |
| 5739 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5740 | /* |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5741 | * Finds the first non-filter node above bs in the chain between |
| 5742 | * active and bs. The returned node is either an immediate parent of |
| 5743 | * bs, or there are only filter nodes between the two. |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5744 | * |
| 5745 | * Returns NULL if bs is not found in active's image chain, |
| 5746 | * or if active == bs. |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5747 | * |
| 5748 | * Returns the bottommost base image if bs == NULL. |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5749 | */ |
| 5750 | BlockDriverState *bdrv_find_overlay(BlockDriverState *active, |
| 5751 | BlockDriverState *bs) |
| 5752 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5753 | |
| 5754 | GLOBAL_STATE_CODE(); |
| 5755 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5756 | bs = bdrv_skip_filters(bs); |
| 5757 | active = bdrv_skip_filters(active); |
| 5758 | |
| 5759 | while (active) { |
| 5760 | BlockDriverState *next = bdrv_backing_chain_next(active); |
| 5761 | if (bs == next) { |
| 5762 | return active; |
| 5763 | } |
| 5764 | active = next; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5765 | } |
| 5766 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5767 | return NULL; |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5768 | } |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5769 | |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5770 | /* Given a BDS, searches for the base layer. */ |
| 5771 | BlockDriverState *bdrv_find_base(BlockDriverState *bs) |
| 5772 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5773 | GLOBAL_STATE_CODE(); |
| 5774 | |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5775 | return bdrv_find_overlay(bs, NULL); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5776 | } |
| 5777 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5778 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5779 | * Return true if at least one of the COW (backing) and filter links |
| 5780 | * 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] | 5781 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5782 | */ |
Kevin Wolf | 9275fc7 | 2023-10-27 17:53:18 +0200 | [diff] [blame] | 5783 | static bool GRAPH_RDLOCK |
| 5784 | bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base, |
| 5785 | Error **errp) |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5786 | { |
| 5787 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5788 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5789 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5790 | GLOBAL_STATE_CODE(); |
| 5791 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5792 | for (i = bs; i != base; i = child_bs(child)) { |
| 5793 | child = bdrv_filter_or_cow_child(i); |
| 5794 | |
| 5795 | if (child && child->frozen) { |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5796 | error_setg(errp, "Cannot change '%s' link from '%s' to '%s'", |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5797 | child->name, i->node_name, child->bs->node_name); |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5798 | return true; |
| 5799 | } |
| 5800 | } |
| 5801 | |
| 5802 | return false; |
| 5803 | } |
| 5804 | |
| 5805 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5806 | * Freeze all COW (backing) and filter links between @bs and @base. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5807 | * If any of the links is already frozen the operation is aborted and |
| 5808 | * none of the links are modified. |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5809 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5810 | * Returns 0 on success. On failure returns < 0 and sets @errp. |
| 5811 | */ |
| 5812 | int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base, |
| 5813 | Error **errp) |
| 5814 | { |
| 5815 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5816 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5817 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5818 | GLOBAL_STATE_CODE(); |
| 5819 | |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5820 | if (bdrv_is_backing_chain_frozen(bs, base, errp)) { |
| 5821 | return -EPERM; |
| 5822 | } |
| 5823 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5824 | for (i = bs; i != base; i = child_bs(child)) { |
| 5825 | child = bdrv_filter_or_cow_child(i); |
| 5826 | if (child && child->bs->never_freeze) { |
Max Reitz | e5182c1 | 2019-07-03 19:28:02 +0200 | [diff] [blame] | 5827 | error_setg(errp, "Cannot freeze '%s' link to '%s'", |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5828 | child->name, child->bs->node_name); |
Max Reitz | e5182c1 | 2019-07-03 19:28:02 +0200 | [diff] [blame] | 5829 | return -EPERM; |
| 5830 | } |
| 5831 | } |
| 5832 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5833 | for (i = bs; i != base; i = child_bs(child)) { |
| 5834 | child = bdrv_filter_or_cow_child(i); |
| 5835 | if (child) { |
| 5836 | child->frozen = true; |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5837 | } |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5838 | } |
| 5839 | |
| 5840 | return 0; |
| 5841 | } |
| 5842 | |
| 5843 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5844 | * Unfreeze all COW (backing) and filter links between @bs and @base. |
| 5845 | * The caller must ensure that all links are frozen before using this |
| 5846 | * function. |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5847 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5848 | */ |
| 5849 | void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base) |
| 5850 | { |
| 5851 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5852 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5853 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5854 | GLOBAL_STATE_CODE(); |
| 5855 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5856 | for (i = bs; i != base; i = child_bs(child)) { |
| 5857 | child = bdrv_filter_or_cow_child(i); |
| 5858 | if (child) { |
| 5859 | assert(child->frozen); |
| 5860 | child->frozen = false; |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5861 | } |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5862 | } |
| 5863 | } |
| 5864 | |
| 5865 | /* |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5866 | * Drops images above 'base' up to and including 'top', and sets the image |
| 5867 | * above 'top' to have base as its backing file. |
| 5868 | * |
| 5869 | * Requires that the overlay to 'top' is opened r/w, so that the backing file |
| 5870 | * information in 'bs' can be properly updated. |
| 5871 | * |
| 5872 | * E.g., this will convert the following chain: |
| 5873 | * bottom <- base <- intermediate <- top <- active |
| 5874 | * |
| 5875 | * to |
| 5876 | * |
| 5877 | * bottom <- base <- active |
| 5878 | * |
| 5879 | * It is allowed for bottom==base, in which case it converts: |
| 5880 | * |
| 5881 | * base <- intermediate <- top <- active |
| 5882 | * |
| 5883 | * to |
| 5884 | * |
| 5885 | * base <- active |
| 5886 | * |
Jeff Cody | 54e2690 | 2014-06-25 15:40:10 -0400 | [diff] [blame] | 5887 | * If backing_file_str is non-NULL, it will be used when modifying top's |
| 5888 | * overlay image metadata. |
| 5889 | * |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5890 | * Error conditions: |
| 5891 | * if active == top, that is considered an error |
| 5892 | * |
| 5893 | */ |
Kevin Wolf | bde7071 | 2017-06-27 20:36:18 +0200 | [diff] [blame] | 5894 | int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 5895 | const char *backing_file_str, |
| 5896 | bool backing_mask_protocol) |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5897 | { |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5898 | BlockDriverState *explicit_top = top; |
| 5899 | bool update_inherits_from; |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5900 | BdrvChild *c; |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5901 | Error *local_err = NULL; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5902 | int ret = -EIO; |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5903 | g_autoptr(GSList) updated_children = NULL; |
| 5904 | GSList *p; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5905 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5906 | GLOBAL_STATE_CODE(); |
| 5907 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5908 | bdrv_ref(top); |
Kevin Wolf | 631086d | 2022-11-18 18:41:03 +0100 | [diff] [blame] | 5909 | bdrv_drained_begin(base); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5910 | bdrv_graph_wrlock(); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5911 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5912 | if (!top->drv || !base->drv) { |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5913 | goto exit_wrlock; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5914 | } |
| 5915 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 5916 | /* Make sure that base is in the backing chain of top */ |
| 5917 | if (!bdrv_chain_contains(top, base)) { |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5918 | goto exit_wrlock; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5919 | } |
| 5920 | |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5921 | /* If 'base' recursively inherits from 'top' then we should set |
| 5922 | * base->inherits_from to top->inherits_from after 'top' and all |
| 5923 | * other intermediate nodes have been dropped. |
| 5924 | * If 'top' is an implicit node (e.g. "commit_top") we should skip |
| 5925 | * 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] | 5926 | explicit_top = bdrv_skip_implicit_filters(explicit_top); |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5927 | update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top); |
| 5928 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5929 | /* success - we can delete the intermediate states, and link top->base */ |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 5930 | if (!backing_file_str) { |
| 5931 | bdrv_refresh_filename(base); |
| 5932 | backing_file_str = base->filename; |
| 5933 | } |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5934 | |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5935 | QLIST_FOREACH(c, &top->parents, next_parent) { |
| 5936 | updated_children = g_slist_prepend(updated_children, c); |
| 5937 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5938 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5939 | /* |
| 5940 | * It seems correct to pass detach_subchain=true here, but it triggers |
| 5941 | * one more yet not fixed bug, when due to nested aio_poll loop we switch to |
| 5942 | * another drained section, which modify the graph (for example, removing |
| 5943 | * the child, which we keep in updated_children list). So, it's a TODO. |
| 5944 | * |
| 5945 | * Note, bug triggered if pass detach_subchain=true here and run |
| 5946 | * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash. |
| 5947 | * That's a FIXME. |
| 5948 | */ |
| 5949 | bdrv_replace_node_common(top, base, false, false, &local_err); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5950 | bdrv_graph_wrunlock(); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5951 | |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5952 | if (local_err) { |
| 5953 | error_report_err(local_err); |
| 5954 | goto exit; |
| 5955 | } |
| 5956 | |
| 5957 | for (p = updated_children; p; p = p->next) { |
| 5958 | c = p->data; |
| 5959 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5960 | if (c->klass->update_filename) { |
| 5961 | ret = c->klass->update_filename(c, base, backing_file_str, |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 5962 | backing_mask_protocol, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5963 | &local_err); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5964 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5965 | /* |
| 5966 | * TODO: Actually, we want to rollback all previous iterations |
| 5967 | * of this loop, and (which is almost impossible) previous |
| 5968 | * bdrv_replace_node()... |
| 5969 | * |
| 5970 | * Note, that c->klass->update_filename may lead to permission |
| 5971 | * update, so it's a bad idea to call it inside permission |
| 5972 | * update transaction of bdrv_replace_node. |
| 5973 | */ |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5974 | error_report_err(local_err); |
| 5975 | goto exit; |
| 5976 | } |
| 5977 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5978 | } |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5979 | |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5980 | if (update_inherits_from) { |
| 5981 | base->inherits_from = explicit_top->inherits_from; |
| 5982 | } |
| 5983 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5984 | ret = 0; |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5985 | goto exit; |
| 5986 | |
| 5987 | exit_wrlock: |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5988 | bdrv_graph_wrunlock(); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5989 | exit: |
Kevin Wolf | 631086d | 2022-11-18 18:41:03 +0100 | [diff] [blame] | 5990 | bdrv_drained_end(base); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5991 | bdrv_unref(top); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5992 | return ret; |
| 5993 | } |
| 5994 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5995 | /** |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5996 | * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5997 | * sums the size of all data-bearing children. (This excludes backing |
| 5998 | * children.) |
| 5999 | */ |
Emanuele Giuseppe Esposito | de33563 | 2023-05-04 13:57:43 +0200 | [diff] [blame] | 6000 | static int64_t coroutine_fn GRAPH_RDLOCK |
| 6001 | bdrv_sum_allocated_file_size(BlockDriverState *bs) |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 6002 | { |
| 6003 | BdrvChild *child; |
| 6004 | int64_t child_size, sum = 0; |
| 6005 | |
| 6006 | QLIST_FOREACH(child, &bs->children, next) { |
| 6007 | if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | |
| 6008 | BDRV_CHILD_FILTERED)) |
| 6009 | { |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 6010 | child_size = bdrv_co_get_allocated_file_size(child->bs); |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 6011 | if (child_size < 0) { |
| 6012 | return child_size; |
| 6013 | } |
| 6014 | sum += child_size; |
| 6015 | } |
| 6016 | } |
| 6017 | |
| 6018 | return sum; |
| 6019 | } |
| 6020 | |
| 6021 | /** |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 6022 | * Length of a allocated file in bytes. Sparse files are counted by actual |
| 6023 | * allocated space. Return < 0 if error or unknown. |
| 6024 | */ |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 6025 | int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs) |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 6026 | { |
| 6027 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6028 | IO_CODE(); |
Emanuele Giuseppe Esposito | de33563 | 2023-05-04 13:57:43 +0200 | [diff] [blame] | 6029 | assert_bdrv_graph_readable(); |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6030 | |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 6031 | if (!drv) { |
| 6032 | return -ENOMEDIUM; |
| 6033 | } |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 6034 | if (drv->bdrv_co_get_allocated_file_size) { |
| 6035 | return drv->bdrv_co_get_allocated_file_size(bs); |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 6036 | } |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 6037 | |
Paolo Bonzini | 41770f6 | 2022-11-24 16:21:18 +0100 | [diff] [blame] | 6038 | if (drv->protocol_name) { |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 6039 | /* |
| 6040 | * Protocol drivers default to -ENOTSUP (most of their data is |
| 6041 | * not stored in any of their children (if they even have any), |
| 6042 | * so there is no generic way to figure it out). |
| 6043 | */ |
| 6044 | return -ENOTSUP; |
| 6045 | } else if (drv->is_filter) { |
| 6046 | /* Filter drivers default to the size of their filtered child */ |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 6047 | return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs)); |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 6048 | } else { |
| 6049 | /* Other drivers default to summing their children's sizes */ |
| 6050 | return bdrv_sum_allocated_file_size(bs); |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 6051 | } |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 6052 | } |
| 6053 | |
Stefan Hajnoczi | 90880ff | 2017-07-05 13:57:30 +0100 | [diff] [blame] | 6054 | /* |
| 6055 | * bdrv_measure: |
| 6056 | * @drv: Format driver |
| 6057 | * @opts: Creation options for new image |
| 6058 | * @in_bs: Existing image containing data for new image (may be NULL) |
| 6059 | * @errp: Error object |
| 6060 | * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) |
| 6061 | * or NULL on error |
| 6062 | * |
| 6063 | * Calculate file size required to create a new image. |
| 6064 | * |
| 6065 | * If @in_bs is given then space for allocated clusters and zero clusters |
| 6066 | * from that image are included in the calculation. If @opts contains a |
| 6067 | * backing file that is shared by @in_bs then backing clusters may be omitted |
| 6068 | * from the calculation. |
| 6069 | * |
| 6070 | * If @in_bs is NULL then the calculation includes no allocated clusters |
| 6071 | * unless a preallocation option is given in @opts. |
| 6072 | * |
| 6073 | * Note that @in_bs may use a different BlockDriver from @drv. |
| 6074 | * |
| 6075 | * If an error occurs the @errp pointer is set. |
| 6076 | */ |
| 6077 | BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, |
| 6078 | BlockDriverState *in_bs, Error **errp) |
| 6079 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6080 | IO_CODE(); |
Stefan Hajnoczi | 90880ff | 2017-07-05 13:57:30 +0100 | [diff] [blame] | 6081 | if (!drv->bdrv_measure) { |
| 6082 | error_setg(errp, "Block driver '%s' does not support size measurement", |
| 6083 | drv->format_name); |
| 6084 | return NULL; |
| 6085 | } |
| 6086 | |
| 6087 | return drv->bdrv_measure(opts, in_bs, errp); |
| 6088 | } |
| 6089 | |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 6090 | /** |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6091 | * Return number of sectors on success, -errno on error. |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6092 | */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6093 | int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6094 | { |
| 6095 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6096 | IO_CODE(); |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 6097 | assert_bdrv_graph_readable(); |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6098 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6099 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6100 | return -ENOMEDIUM; |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 6101 | |
Paolo Bonzini | 160a29e | 2023-04-07 17:32:56 +0200 | [diff] [blame] | 6102 | if (bs->bl.has_variable_length) { |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6103 | int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors); |
Kevin Wolf | b94a261 | 2013-10-29 12:18:58 +0100 | [diff] [blame] | 6104 | if (ret < 0) { |
| 6105 | return ret; |
Stefan Hajnoczi | 46a4e4e | 2011-03-29 20:04:41 +0100 | [diff] [blame] | 6106 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6107 | } |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6108 | return bs->total_sectors; |
| 6109 | } |
| 6110 | |
Paolo Bonzini | 81f730d | 2023-04-07 17:33:03 +0200 | [diff] [blame] | 6111 | /* |
| 6112 | * This wrapper is written by hand because this function is in the hot I/O path, |
| 6113 | * via blk_get_geometry. |
| 6114 | */ |
| 6115 | int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs) |
| 6116 | { |
| 6117 | BlockDriver *drv = bs->drv; |
| 6118 | IO_CODE(); |
| 6119 | |
| 6120 | if (!drv) |
| 6121 | return -ENOMEDIUM; |
| 6122 | |
| 6123 | if (bs->bl.has_variable_length) { |
| 6124 | int ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); |
| 6125 | if (ret < 0) { |
| 6126 | return ret; |
| 6127 | } |
| 6128 | } |
| 6129 | |
| 6130 | return bs->total_sectors; |
| 6131 | } |
| 6132 | |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6133 | /** |
| 6134 | * Return length in bytes on success, -errno on error. |
| 6135 | * The length is always a multiple of BDRV_SECTOR_SIZE. |
| 6136 | */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6137 | int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs) |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6138 | { |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6139 | int64_t ret; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6140 | IO_CODE(); |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 6141 | assert_bdrv_graph_readable(); |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6142 | |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6143 | ret = bdrv_co_nb_sectors(bs); |
Eric Blake | 122860b | 2020-11-05 09:51:22 -0600 | [diff] [blame] | 6144 | if (ret < 0) { |
| 6145 | return ret; |
| 6146 | } |
| 6147 | if (ret > INT64_MAX / BDRV_SECTOR_SIZE) { |
| 6148 | return -EFBIG; |
| 6149 | } |
| 6150 | return ret * BDRV_SECTOR_SIZE; |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 6151 | } |
| 6152 | |
Eric Blake | 5411541 | 2016-06-23 16:37:26 -0600 | [diff] [blame] | 6153 | bool bdrv_is_sg(BlockDriverState *bs) |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 6154 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6155 | IO_CODE(); |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 6156 | return bs->sg; |
| 6157 | } |
| 6158 | |
Max Reitz | ae23f78 | 2019-06-12 22:57:15 +0200 | [diff] [blame] | 6159 | /** |
| 6160 | * Return whether the given node supports compressed writes. |
| 6161 | */ |
| 6162 | bool bdrv_supports_compressed_writes(BlockDriverState *bs) |
| 6163 | { |
| 6164 | BlockDriverState *filtered; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6165 | IO_CODE(); |
Max Reitz | ae23f78 | 2019-06-12 22:57:15 +0200 | [diff] [blame] | 6166 | |
| 6167 | if (!bs->drv || !block_driver_can_compress(bs->drv)) { |
| 6168 | return false; |
| 6169 | } |
| 6170 | |
| 6171 | filtered = bdrv_filter_bs(bs); |
| 6172 | if (filtered) { |
| 6173 | /* |
| 6174 | * Filters can only forward compressed writes, so we have to |
| 6175 | * check the child. |
| 6176 | */ |
| 6177 | return bdrv_supports_compressed_writes(filtered); |
| 6178 | } |
| 6179 | |
| 6180 | return true; |
| 6181 | } |
| 6182 | |
Markus Armbruster | f8d6bba | 2012-06-13 10:11:48 +0200 | [diff] [blame] | 6183 | const char *bdrv_get_format_name(BlockDriverState *bs) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6184 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6185 | IO_CODE(); |
Markus Armbruster | f8d6bba | 2012-06-13 10:11:48 +0200 | [diff] [blame] | 6186 | return bs->drv ? bs->drv->format_name : NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6187 | } |
| 6188 | |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6189 | static int qsort_strcmp(const void *a, const void *b) |
| 6190 | { |
Max Reitz | ceff5bd | 2016-10-12 22:49:05 +0200 | [diff] [blame] | 6191 | return strcmp(*(char *const *)a, *(char *const *)b); |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6192 | } |
| 6193 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 6194 | void bdrv_iterate_format(void (*it)(void *opaque, const char *name), |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 6195 | void *opaque, bool read_only) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6196 | { |
| 6197 | BlockDriver *drv; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6198 | int count = 0; |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6199 | int i; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6200 | const char **formats = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6201 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6202 | GLOBAL_STATE_CODE(); |
| 6203 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 6204 | QLIST_FOREACH(drv, &bdrv_drivers, list) { |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6205 | if (drv->format_name) { |
| 6206 | bool found = false; |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 6207 | |
| 6208 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) { |
| 6209 | continue; |
| 6210 | } |
| 6211 | |
Markus Armbruster | fb2575f | 2023-09-21 14:13:11 +0200 | [diff] [blame] | 6212 | i = count; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6213 | while (formats && i && !found) { |
| 6214 | found = !strcmp(formats[--i], drv->format_name); |
| 6215 | } |
| 6216 | |
| 6217 | if (!found) { |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 6218 | formats = g_renew(const char *, formats, count + 1); |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6219 | formats[count++] = drv->format_name; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6220 | } |
| 6221 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6222 | } |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6223 | |
Max Reitz | eb0df69 | 2016-10-12 22:49:06 +0200 | [diff] [blame] | 6224 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { |
| 6225 | const char *format_name = block_driver_modules[i].format_name; |
| 6226 | |
| 6227 | if (format_name) { |
| 6228 | bool found = false; |
| 6229 | int j = count; |
| 6230 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 6231 | if (use_bdrv_whitelist && |
| 6232 | !bdrv_format_is_whitelisted(format_name, read_only)) { |
| 6233 | continue; |
| 6234 | } |
| 6235 | |
Max Reitz | eb0df69 | 2016-10-12 22:49:06 +0200 | [diff] [blame] | 6236 | while (formats && j && !found) { |
| 6237 | found = !strcmp(formats[--j], format_name); |
| 6238 | } |
| 6239 | |
| 6240 | if (!found) { |
| 6241 | formats = g_renew(const char *, formats, count + 1); |
| 6242 | formats[count++] = format_name; |
| 6243 | } |
| 6244 | } |
| 6245 | } |
| 6246 | |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6247 | qsort(formats, count, sizeof(formats[0]), qsort_strcmp); |
| 6248 | |
| 6249 | for (i = 0; i < count; i++) { |
| 6250 | it(opaque, formats[i]); |
| 6251 | } |
| 6252 | |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6253 | g_free(formats); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6254 | } |
| 6255 | |
Benoît Canet | dc364f4 | 2014-01-23 21:31:32 +0100 | [diff] [blame] | 6256 | /* This function is to find a node in the bs graph */ |
| 6257 | BlockDriverState *bdrv_find_node(const char *node_name) |
| 6258 | { |
| 6259 | BlockDriverState *bs; |
| 6260 | |
| 6261 | assert(node_name); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6262 | GLOBAL_STATE_CODE(); |
Benoît Canet | dc364f4 | 2014-01-23 21:31:32 +0100 | [diff] [blame] | 6263 | |
| 6264 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
| 6265 | if (!strcmp(node_name, bs->node_name)) { |
| 6266 | return bs; |
| 6267 | } |
| 6268 | } |
| 6269 | return NULL; |
| 6270 | } |
| 6271 | |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6272 | /* 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] | 6273 | BlockDeviceInfoList *bdrv_named_nodes_list(bool flat, |
| 6274 | Error **errp) |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6275 | { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6276 | BlockDeviceInfoList *list; |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6277 | BlockDriverState *bs; |
| 6278 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6279 | GLOBAL_STATE_CODE(); |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 6280 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6281 | |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6282 | list = NULL; |
| 6283 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
Peter Krempa | facda54 | 2020-01-20 09:50:49 +0100 | [diff] [blame] | 6284 | BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp); |
Alberto Garcia | d5a8ee6 | 2015-04-17 14:52:43 +0300 | [diff] [blame] | 6285 | if (!info) { |
| 6286 | qapi_free_BlockDeviceInfoList(list); |
| 6287 | return NULL; |
| 6288 | } |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6289 | QAPI_LIST_PREPEND(list, info); |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6290 | } |
| 6291 | |
| 6292 | return list; |
| 6293 | } |
| 6294 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6295 | typedef struct XDbgBlockGraphConstructor { |
| 6296 | XDbgBlockGraph *graph; |
| 6297 | GHashTable *graph_nodes; |
| 6298 | } XDbgBlockGraphConstructor; |
| 6299 | |
| 6300 | static XDbgBlockGraphConstructor *xdbg_graph_new(void) |
| 6301 | { |
| 6302 | XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1); |
| 6303 | |
| 6304 | gr->graph = g_new0(XDbgBlockGraph, 1); |
| 6305 | gr->graph_nodes = g_hash_table_new(NULL, NULL); |
| 6306 | |
| 6307 | return gr; |
| 6308 | } |
| 6309 | |
| 6310 | static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr) |
| 6311 | { |
| 6312 | XDbgBlockGraph *graph = gr->graph; |
| 6313 | |
| 6314 | g_hash_table_destroy(gr->graph_nodes); |
| 6315 | g_free(gr); |
| 6316 | |
| 6317 | return graph; |
| 6318 | } |
| 6319 | |
| 6320 | static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node) |
| 6321 | { |
| 6322 | uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node); |
| 6323 | |
| 6324 | if (ret != 0) { |
| 6325 | return ret; |
| 6326 | } |
| 6327 | |
| 6328 | /* |
| 6329 | * Start counting from 1, not 0, because 0 interferes with not-found (NULL) |
| 6330 | * answer of g_hash_table_lookup. |
| 6331 | */ |
| 6332 | ret = g_hash_table_size(gr->graph_nodes) + 1; |
| 6333 | g_hash_table_insert(gr->graph_nodes, node, (void *)ret); |
| 6334 | |
| 6335 | return ret; |
| 6336 | } |
| 6337 | |
| 6338 | static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node, |
| 6339 | XDbgBlockGraphNodeType type, const char *name) |
| 6340 | { |
| 6341 | XDbgBlockGraphNode *n; |
| 6342 | |
| 6343 | n = g_new0(XDbgBlockGraphNode, 1); |
| 6344 | |
| 6345 | n->id = xdbg_graph_node_num(gr, node); |
| 6346 | n->type = type; |
| 6347 | n->name = g_strdup(name); |
| 6348 | |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6349 | QAPI_LIST_PREPEND(gr->graph->nodes, n); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6350 | } |
| 6351 | |
| 6352 | static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent, |
| 6353 | const BdrvChild *child) |
| 6354 | { |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 6355 | BlockPermission qapi_perm; |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6356 | XDbgBlockGraphEdge *edge; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 6357 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6358 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6359 | edge = g_new0(XDbgBlockGraphEdge, 1); |
| 6360 | |
| 6361 | edge->parent = xdbg_graph_node_num(gr, parent); |
| 6362 | edge->child = xdbg_graph_node_num(gr, child->bs); |
| 6363 | edge->name = g_strdup(child->name); |
| 6364 | |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 6365 | for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) { |
| 6366 | uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm); |
| 6367 | |
| 6368 | if (flag & child->perm) { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6369 | QAPI_LIST_PREPEND(edge->perm, qapi_perm); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6370 | } |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 6371 | if (flag & child->shared_perm) { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6372 | QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6373 | } |
| 6374 | } |
| 6375 | |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6376 | QAPI_LIST_PREPEND(gr->graph->edges, edge); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6377 | } |
| 6378 | |
| 6379 | |
| 6380 | XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp) |
| 6381 | { |
| 6382 | BlockBackend *blk; |
| 6383 | BlockJob *job; |
| 6384 | BlockDriverState *bs; |
| 6385 | BdrvChild *child; |
| 6386 | XDbgBlockGraphConstructor *gr = xdbg_graph_new(); |
| 6387 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6388 | GLOBAL_STATE_CODE(); |
| 6389 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6390 | for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) { |
| 6391 | char *allocated_name = NULL; |
| 6392 | const char *name = blk_name(blk); |
| 6393 | |
| 6394 | if (!*name) { |
| 6395 | name = allocated_name = blk_get_attached_dev_id(blk); |
| 6396 | } |
Markus Armbruster | bcd63b5 | 2024-09-04 13:18:20 +0200 | [diff] [blame] | 6397 | xdbg_graph_add_node(gr, blk, XDBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND, |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6398 | name); |
| 6399 | g_free(allocated_name); |
| 6400 | if (blk_root(blk)) { |
| 6401 | xdbg_graph_add_edge(gr, blk, blk_root(blk)); |
| 6402 | } |
| 6403 | } |
| 6404 | |
Emanuele Giuseppe Esposito | 880eeec | 2022-09-26 05:32:04 -0400 | [diff] [blame] | 6405 | WITH_JOB_LOCK_GUARD() { |
| 6406 | for (job = block_job_next_locked(NULL); job; |
| 6407 | job = block_job_next_locked(job)) { |
| 6408 | GSList *el; |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6409 | |
Markus Armbruster | bcd63b5 | 2024-09-04 13:18:20 +0200 | [diff] [blame] | 6410 | xdbg_graph_add_node(gr, job, XDBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB, |
Emanuele Giuseppe Esposito | 880eeec | 2022-09-26 05:32:04 -0400 | [diff] [blame] | 6411 | job->job.id); |
| 6412 | for (el = job->nodes; el; el = el->next) { |
| 6413 | xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data); |
| 6414 | } |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6415 | } |
| 6416 | } |
| 6417 | |
| 6418 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
Markus Armbruster | bcd63b5 | 2024-09-04 13:18:20 +0200 | [diff] [blame] | 6419 | xdbg_graph_add_node(gr, bs, XDBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER, |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6420 | bs->node_name); |
| 6421 | QLIST_FOREACH(child, &bs->children, next) { |
| 6422 | xdbg_graph_add_edge(gr, bs, child); |
| 6423 | } |
| 6424 | } |
| 6425 | |
| 6426 | return xdbg_graph_finalize(gr); |
| 6427 | } |
| 6428 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6429 | BlockDriverState *bdrv_lookup_bs(const char *device, |
| 6430 | const char *node_name, |
| 6431 | Error **errp) |
| 6432 | { |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6433 | BlockBackend *blk; |
| 6434 | BlockDriverState *bs; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6435 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6436 | GLOBAL_STATE_CODE(); |
| 6437 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6438 | if (device) { |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6439 | blk = blk_by_name(device); |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6440 | |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6441 | if (blk) { |
Alberto Garcia | 9f4ed6f | 2015-10-26 16:46:49 +0200 | [diff] [blame] | 6442 | bs = blk_bs(blk); |
| 6443 | if (!bs) { |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 6444 | error_setg(errp, "Device '%s' has no medium", device); |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 6445 | } |
| 6446 | |
Alberto Garcia | 9f4ed6f | 2015-10-26 16:46:49 +0200 | [diff] [blame] | 6447 | return bs; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6448 | } |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6449 | } |
| 6450 | |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 6451 | if (node_name) { |
| 6452 | bs = bdrv_find_node(node_name); |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6453 | |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 6454 | if (bs) { |
| 6455 | return bs; |
| 6456 | } |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6457 | } |
| 6458 | |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 6459 | error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'", |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 6460 | device ? device : "", |
| 6461 | node_name ? node_name : ""); |
| 6462 | return NULL; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6463 | } |
| 6464 | |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 6465 | /* If 'base' is in the same chain as 'top', return true. Otherwise, |
| 6466 | * return false. If either argument is NULL, return false. */ |
| 6467 | bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) |
| 6468 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6469 | |
| 6470 | GLOBAL_STATE_CODE(); |
| 6471 | |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 6472 | while (top && top != base) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6473 | top = bdrv_filter_or_cow_bs(top); |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 6474 | } |
| 6475 | |
| 6476 | return top != NULL; |
| 6477 | } |
| 6478 | |
Fam Zheng | 04df765 | 2014-10-31 11:32:54 +0800 | [diff] [blame] | 6479 | BlockDriverState *bdrv_next_node(BlockDriverState *bs) |
| 6480 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6481 | GLOBAL_STATE_CODE(); |
Fam Zheng | 04df765 | 2014-10-31 11:32:54 +0800 | [diff] [blame] | 6482 | if (!bs) { |
| 6483 | return QTAILQ_FIRST(&graph_bdrv_states); |
| 6484 | } |
| 6485 | return QTAILQ_NEXT(bs, node_list); |
| 6486 | } |
| 6487 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 6488 | BlockDriverState *bdrv_next_all_states(BlockDriverState *bs) |
| 6489 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6490 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 6491 | if (!bs) { |
| 6492 | return QTAILQ_FIRST(&all_bdrv_states); |
| 6493 | } |
| 6494 | return QTAILQ_NEXT(bs, bs_list); |
| 6495 | } |
| 6496 | |
Fam Zheng | 20a9e77 | 2014-10-31 11:32:55 +0800 | [diff] [blame] | 6497 | const char *bdrv_get_node_name(const BlockDriverState *bs) |
| 6498 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6499 | IO_CODE(); |
Fam Zheng | 20a9e77 | 2014-10-31 11:32:55 +0800 | [diff] [blame] | 6500 | return bs->node_name; |
| 6501 | } |
| 6502 | |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 6503 | const char *bdrv_get_parent_name(const BlockDriverState *bs) |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6504 | { |
| 6505 | BdrvChild *c; |
| 6506 | const char *name; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 6507 | IO_CODE(); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6508 | |
| 6509 | /* If multiple parents have a name, just pick the first one. */ |
| 6510 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6511 | if (c->klass->get_name) { |
| 6512 | name = c->klass->get_name(c); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6513 | if (name && *name) { |
| 6514 | return name; |
| 6515 | } |
| 6516 | } |
| 6517 | } |
| 6518 | |
| 6519 | return NULL; |
| 6520 | } |
| 6521 | |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6522 | /* TODO check what callers really want: bs->node_name or blk_name() */ |
Markus Armbruster | bfb197e | 2014-10-07 13:59:11 +0200 | [diff] [blame] | 6523 | const char *bdrv_get_device_name(const BlockDriverState *bs) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6524 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6525 | IO_CODE(); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6526 | return bdrv_get_parent_name(bs) ?: ""; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6527 | } |
| 6528 | |
Alberto Garcia | 9b2aa84 | 2015-04-08 12:29:18 +0300 | [diff] [blame] | 6529 | /* This can be used to identify nodes that might not have a device |
| 6530 | * name associated. Since node and device names live in the same |
| 6531 | * namespace, the result is unambiguous. The exception is if both are |
| 6532 | * absent, then this returns an empty (non-null) string. */ |
| 6533 | const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) |
| 6534 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6535 | IO_CODE(); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6536 | return bdrv_get_parent_name(bs) ?: bs->node_name; |
Alberto Garcia | 9b2aa84 | 2015-04-08 12:29:18 +0300 | [diff] [blame] | 6537 | } |
| 6538 | |
Markus Armbruster | c843328 | 2012-06-05 16:49:24 +0200 | [diff] [blame] | 6539 | int bdrv_get_flags(BlockDriverState *bs) |
| 6540 | { |
Hanna Reitz | 15aee7a | 2022-04-27 13:40:54 +0200 | [diff] [blame] | 6541 | IO_CODE(); |
Markus Armbruster | c843328 | 2012-06-05 16:49:24 +0200 | [diff] [blame] | 6542 | return bs->open_flags; |
| 6543 | } |
| 6544 | |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 6545 | int bdrv_has_zero_init_1(BlockDriverState *bs) |
| 6546 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6547 | GLOBAL_STATE_CODE(); |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 6548 | return 1; |
| 6549 | } |
| 6550 | |
Kevin Wolf | 0671798 | 2023-10-27 17:53:11 +0200 | [diff] [blame] | 6551 | int coroutine_mixed_fn bdrv_has_zero_init(BlockDriverState *bs) |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6552 | { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6553 | BlockDriverState *filtered; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6554 | GLOBAL_STATE_CODE(); |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6555 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 6556 | if (!bs->drv) { |
| 6557 | return 0; |
| 6558 | } |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6559 | |
Paolo Bonzini | 11212d8 | 2013-09-04 19:00:27 +0200 | [diff] [blame] | 6560 | /* If BS is a copy on write image, it is initialized to |
| 6561 | the contents of the base image, which may not be zeroes. */ |
Max Reitz | 3477817 | 2019-06-12 17:10:46 +0200 | [diff] [blame] | 6562 | if (bdrv_cow_child(bs)) { |
Paolo Bonzini | 11212d8 | 2013-09-04 19:00:27 +0200 | [diff] [blame] | 6563 | return 0; |
| 6564 | } |
Kevin Wolf | 336c1c1 | 2010-07-28 11:26:29 +0200 | [diff] [blame] | 6565 | if (bs->drv->bdrv_has_zero_init) { |
| 6566 | return bs->drv->bdrv_has_zero_init(bs); |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6567 | } |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6568 | |
| 6569 | filtered = bdrv_filter_bs(bs); |
| 6570 | if (filtered) { |
| 6571 | return bdrv_has_zero_init(filtered); |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6572 | } |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6573 | |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 6574 | /* safe default */ |
| 6575 | return 0; |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6576 | } |
| 6577 | |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 6578 | bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) |
| 6579 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6580 | IO_CODE(); |
Denis V. Lunev | 2f0342e | 2016-07-14 16:33:26 +0300 | [diff] [blame] | 6581 | if (!(bs->open_flags & BDRV_O_UNMAP)) { |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 6582 | return false; |
| 6583 | } |
| 6584 | |
Eric Blake | e24d813 | 2018-01-26 13:34:39 -0600 | [diff] [blame] | 6585 | return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 6586 | } |
| 6587 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 6588 | void bdrv_get_backing_filename(BlockDriverState *bs, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6589 | char *filename, int filename_size) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6590 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6591 | IO_CODE(); |
Kevin Wolf | 3574c60 | 2011-10-26 11:02:11 +0200 | [diff] [blame] | 6592 | pstrcpy(filename, filename_size, bs->backing_file); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6593 | } |
| 6594 | |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6595 | int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6596 | { |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 6597 | int ret; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6598 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6599 | IO_CODE(); |
Emanuele Giuseppe Esposito | a00e70c | 2023-05-04 13:57:44 +0200 | [diff] [blame] | 6600 | assert_bdrv_graph_readable(); |
| 6601 | |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6602 | /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ |
| 6603 | if (!drv) { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6604 | return -ENOMEDIUM; |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6605 | } |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6606 | if (!drv->bdrv_co_get_info) { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6607 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
| 6608 | if (filtered) { |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6609 | return bdrv_co_get_info(filtered, bdi); |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6610 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6611 | return -ENOTSUP; |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6612 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6613 | memset(bdi, 0, sizeof(*bdi)); |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6614 | ret = drv->bdrv_co_get_info(bs, bdi); |
Andrey Drobyshev | c54483b | 2023-07-11 20:25:51 +0300 | [diff] [blame] | 6615 | if (bdi->subcluster_size == 0) { |
| 6616 | /* |
| 6617 | * If the driver left this unset, subclusters are not supported. |
| 6618 | * Then it is safe to treat each cluster as having only one subcluster. |
| 6619 | */ |
| 6620 | bdi->subcluster_size = bdi->cluster_size; |
| 6621 | } |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 6622 | if (ret < 0) { |
| 6623 | return ret; |
| 6624 | } |
| 6625 | |
| 6626 | if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) { |
| 6627 | return -EINVAL; |
| 6628 | } |
| 6629 | |
| 6630 | return 0; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6631 | } |
| 6632 | |
Andrey Shinkevich | 1bf6e9c | 2019-02-08 18:06:06 +0300 | [diff] [blame] | 6633 | ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs, |
| 6634 | Error **errp) |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6635 | { |
| 6636 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6637 | IO_CODE(); |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6638 | if (drv && drv->bdrv_get_specific_info) { |
Andrey Shinkevich | 1bf6e9c | 2019-02-08 18:06:06 +0300 | [diff] [blame] | 6639 | return drv->bdrv_get_specific_info(bs, errp); |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6640 | } |
| 6641 | return NULL; |
| 6642 | } |
| 6643 | |
Anton Nefedov | d924559 | 2019-09-23 15:17:37 +0300 | [diff] [blame] | 6644 | BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs) |
| 6645 | { |
| 6646 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6647 | IO_CODE(); |
Anton Nefedov | d924559 | 2019-09-23 15:17:37 +0300 | [diff] [blame] | 6648 | if (!drv || !drv->bdrv_get_specific_stats) { |
| 6649 | return NULL; |
| 6650 | } |
| 6651 | return drv->bdrv_get_specific_stats(bs); |
| 6652 | } |
| 6653 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 6654 | void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event) |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6655 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6656 | IO_CODE(); |
Emanuele Giuseppe Esposito | cb2bfaa | 2023-05-04 13:57:45 +0200 | [diff] [blame] | 6657 | assert_bdrv_graph_readable(); |
| 6658 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 6659 | if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) { |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6660 | return; |
| 6661 | } |
| 6662 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 6663 | bs->drv->bdrv_co_debug_event(bs, event); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6664 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6665 | |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6666 | static BlockDriverState * GRAPH_RDLOCK |
| 6667 | bdrv_find_debug_node(BlockDriverState *bs) |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6668 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 6669 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6670 | while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6671 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6672 | } |
| 6673 | |
| 6674 | if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6675 | assert(bs->drv->bdrv_debug_remove_breakpoint); |
| 6676 | return bs; |
| 6677 | } |
| 6678 | |
| 6679 | return NULL; |
| 6680 | } |
| 6681 | |
| 6682 | int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, |
| 6683 | const char *tag) |
| 6684 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6685 | GLOBAL_STATE_CODE(); |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6686 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 6687 | |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6688 | bs = bdrv_find_debug_node(bs); |
| 6689 | if (bs) { |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6690 | return bs->drv->bdrv_debug_breakpoint(bs, event, tag); |
| 6691 | } |
| 6692 | |
| 6693 | return -ENOTSUP; |
| 6694 | } |
| 6695 | |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 6696 | int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) |
| 6697 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6698 | GLOBAL_STATE_CODE(); |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6699 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 6700 | |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6701 | bs = bdrv_find_debug_node(bs); |
| 6702 | if (bs) { |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 6703 | return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); |
| 6704 | } |
| 6705 | |
| 6706 | return -ENOTSUP; |
| 6707 | } |
| 6708 | |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6709 | int bdrv_debug_resume(BlockDriverState *bs, const char *tag) |
| 6710 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6711 | GLOBAL_STATE_CODE(); |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6712 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 6713 | |
Max Reitz | 938789e | 2014-03-10 23:44:08 +0100 | [diff] [blame] | 6714 | while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6715 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6716 | } |
| 6717 | |
| 6718 | if (bs && bs->drv && bs->drv->bdrv_debug_resume) { |
| 6719 | return bs->drv->bdrv_debug_resume(bs, tag); |
| 6720 | } |
| 6721 | |
| 6722 | return -ENOTSUP; |
| 6723 | } |
| 6724 | |
| 6725 | bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) |
| 6726 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6727 | GLOBAL_STATE_CODE(); |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6728 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 6729 | |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6730 | while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6731 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6732 | } |
| 6733 | |
| 6734 | if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { |
| 6735 | return bs->drv->bdrv_debug_is_suspended(bs, tag); |
| 6736 | } |
| 6737 | |
| 6738 | return false; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6739 | } |
| 6740 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6741 | /* backing_file can either be relative, or absolute, or a protocol. If it is |
| 6742 | * relative, it must be relative to the chain. So, passing in bs->filename |
| 6743 | * from a BDS as backing_file should not be done, as that may be relative to |
| 6744 | * the CWD rather than the chain. */ |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6745 | BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, |
| 6746 | const char *backing_file) |
| 6747 | { |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6748 | char *filename_full = NULL; |
| 6749 | char *backing_file_full = NULL; |
| 6750 | char *filename_tmp = NULL; |
| 6751 | int is_protocol = 0; |
Max Reitz | 0b877d0 | 2018-08-01 20:34:11 +0200 | [diff] [blame] | 6752 | bool filenames_refreshed = false; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6753 | BlockDriverState *curr_bs = NULL; |
| 6754 | BlockDriverState *retval = NULL; |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6755 | BlockDriverState *bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6756 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6757 | GLOBAL_STATE_CODE(); |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 6758 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6759 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6760 | if (!bs || !bs->drv || !backing_file) { |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6761 | return NULL; |
| 6762 | } |
| 6763 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6764 | filename_full = g_malloc(PATH_MAX); |
| 6765 | backing_file_full = g_malloc(PATH_MAX); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6766 | |
| 6767 | is_protocol = path_has_protocol(backing_file); |
| 6768 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6769 | /* |
| 6770 | * Being largely a legacy function, skip any filters here |
| 6771 | * (because filters do not have normal filenames, so they cannot |
| 6772 | * match anyway; and allowing json:{} filenames is a bit out of |
| 6773 | * scope). |
| 6774 | */ |
| 6775 | for (curr_bs = bdrv_skip_filters(bs); |
| 6776 | bdrv_cow_child(curr_bs) != NULL; |
| 6777 | curr_bs = bs_below) |
| 6778 | { |
| 6779 | bs_below = bdrv_backing_chain_next(curr_bs); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6780 | |
Max Reitz | 0b877d0 | 2018-08-01 20:34:11 +0200 | [diff] [blame] | 6781 | if (bdrv_backing_overridden(curr_bs)) { |
| 6782 | /* |
| 6783 | * If the backing file was overridden, we can only compare |
| 6784 | * directly against the backing node's filename. |
| 6785 | */ |
| 6786 | |
| 6787 | if (!filenames_refreshed) { |
| 6788 | /* |
| 6789 | * This will automatically refresh all of the |
| 6790 | * filenames in the rest of the backing chain, so we |
| 6791 | * only need to do this once. |
| 6792 | */ |
| 6793 | bdrv_refresh_filename(bs_below); |
| 6794 | filenames_refreshed = true; |
| 6795 | } |
| 6796 | |
| 6797 | if (strcmp(backing_file, bs_below->filename) == 0) { |
| 6798 | retval = bs_below; |
| 6799 | break; |
| 6800 | } |
| 6801 | } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) { |
| 6802 | /* |
| 6803 | * If either of the filename paths is actually a protocol, then |
| 6804 | * compare unmodified paths; otherwise make paths relative. |
| 6805 | */ |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 6806 | char *backing_file_full_ret; |
| 6807 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6808 | if (strcmp(backing_file, curr_bs->backing_file) == 0) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6809 | retval = bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6810 | break; |
| 6811 | } |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6812 | /* Also check against the full backing filename for the image */ |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 6813 | backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs, |
| 6814 | NULL); |
| 6815 | if (backing_file_full_ret) { |
| 6816 | bool equal = strcmp(backing_file, backing_file_full_ret) == 0; |
| 6817 | g_free(backing_file_full_ret); |
| 6818 | if (equal) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6819 | retval = bs_below; |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6820 | break; |
| 6821 | } |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6822 | } |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6823 | } else { |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6824 | /* If not an absolute filename path, make it relative to the current |
| 6825 | * image's filename path */ |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6826 | filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file, |
| 6827 | NULL); |
| 6828 | /* We are going to compare canonicalized absolute pathnames */ |
| 6829 | if (!filename_tmp || !realpath(filename_tmp, filename_full)) { |
| 6830 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6831 | continue; |
| 6832 | } |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6833 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6834 | |
| 6835 | /* We need to make sure the backing filename we are comparing against |
| 6836 | * is relative to the current image filename (or absolute) */ |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6837 | filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL); |
| 6838 | if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) { |
| 6839 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6840 | continue; |
| 6841 | } |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6842 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6843 | |
| 6844 | if (strcmp(backing_file_full, filename_full) == 0) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6845 | retval = bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6846 | break; |
| 6847 | } |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6848 | } |
| 6849 | } |
| 6850 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6851 | g_free(filename_full); |
| 6852 | g_free(backing_file_full); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6853 | return retval; |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6854 | } |
| 6855 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6856 | void bdrv_init(void) |
| 6857 | { |
Kevin Wolf | e5f05f8 | 2021-07-09 18:41:41 +0200 | [diff] [blame] | 6858 | #ifdef CONFIG_BDRV_WHITELIST_TOOLS |
| 6859 | use_bdrv_whitelist = 1; |
| 6860 | #endif |
Anthony Liguori | 5efa9d5 | 2009-05-09 17:03:42 -0500 | [diff] [blame] | 6861 | module_call_init(MODULE_INIT_BLOCK); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6862 | } |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 6863 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 6864 | void bdrv_init_with_whitelist(void) |
| 6865 | { |
| 6866 | use_bdrv_whitelist = 1; |
| 6867 | bdrv_init(); |
| 6868 | } |
| 6869 | |
Kevin Wolf | aec8104 | 2025-02-04 22:13:52 +0100 | [diff] [blame] | 6870 | bool bdrv_is_inactive(BlockDriverState *bs) { |
| 6871 | return bs->open_flags & BDRV_O_INACTIVE; |
| 6872 | } |
| 6873 | |
Emanuele Giuseppe Esposito | a94750d | 2022-02-09 05:54:50 -0500 | [diff] [blame] | 6874 | int bdrv_activate(BlockDriverState *bs, Error **errp) |
| 6875 | { |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6876 | BdrvChild *child, *parent; |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6877 | Error *local_err = NULL; |
| 6878 | int ret; |
Vladimir Sementsov-Ogievskiy | 9c98f14 | 2018-10-29 16:23:17 -0400 | [diff] [blame] | 6879 | BdrvDirtyBitmap *bm; |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6880 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6881 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 6882 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6883 | |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6884 | if (!bs->drv) { |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6885 | return -ENOMEDIUM; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6886 | } |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6887 | |
Vladimir Sementsov-Ogievskiy | 16e977d | 2017-01-31 14:23:08 +0300 | [diff] [blame] | 6888 | QLIST_FOREACH(child, &bs->children, next) { |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6889 | bdrv_activate(child->bs, &local_err); |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6890 | if (local_err) { |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6891 | error_propagate(errp, local_err); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6892 | return -EINVAL; |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6893 | } |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6894 | } |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6895 | |
Kevin Wolf | dafe096 | 2017-11-16 13:00:01 +0100 | [diff] [blame] | 6896 | /* |
| 6897 | * Update permissions, they may differ for inactive nodes. |
| 6898 | * |
| 6899 | * Note that the required permissions of inactive images are always a |
| 6900 | * subset of the permissions required after activating the image. This |
| 6901 | * allows us to just get the permissions upfront without restricting |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6902 | * bdrv_co_invalidate_cache(). |
Kevin Wolf | dafe096 | 2017-11-16 13:00:01 +0100 | [diff] [blame] | 6903 | * |
| 6904 | * It also means that in error cases, we don't have to try and revert to |
| 6905 | * the old permissions (which is an operation that could fail, too). We can |
| 6906 | * just keep the extended permissions for the next time that an activation |
| 6907 | * of the image is tried. |
| 6908 | */ |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6909 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 6910 | bs->open_flags &= ~BDRV_O_INACTIVE; |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 6911 | ret = bdrv_refresh_perms(bs, NULL, errp); |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6912 | if (ret < 0) { |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6913 | bs->open_flags |= BDRV_O_INACTIVE; |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6914 | return ret; |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6915 | } |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6916 | |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6917 | ret = bdrv_invalidate_cache(bs, errp); |
| 6918 | if (ret < 0) { |
| 6919 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6920 | return ret; |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6921 | } |
Vladimir Sementsov-Ogievskiy | 9c98f14 | 2018-10-29 16:23:17 -0400 | [diff] [blame] | 6922 | |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6923 | FOR_EACH_DIRTY_BITMAP(bs, bm) { |
| 6924 | bdrv_dirty_bitmap_skip_store(bm, false); |
| 6925 | } |
| 6926 | |
Emanuele Giuseppe Esposito | c057960 | 2023-01-13 21:42:03 +0100 | [diff] [blame] | 6927 | ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6928 | if (ret < 0) { |
| 6929 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6930 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6931 | return ret; |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6932 | } |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6933 | } |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6934 | |
| 6935 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6936 | if (parent->klass->activate) { |
| 6937 | parent->klass->activate(parent, &local_err); |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6938 | if (local_err) { |
Kevin Wolf | 78fc3b3 | 2019-01-31 15:16:10 +0100 | [diff] [blame] | 6939 | bs->open_flags |= BDRV_O_INACTIVE; |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6940 | error_propagate(errp, local_err); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6941 | return -EINVAL; |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6942 | } |
| 6943 | } |
| 6944 | } |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6945 | |
| 6946 | return 0; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6947 | } |
| 6948 | |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6949 | int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp) |
| 6950 | { |
| 6951 | Error *local_err = NULL; |
Emanuele Giuseppe Esposito | 1581a70 | 2022-03-03 10:16:09 -0500 | [diff] [blame] | 6952 | IO_CODE(); |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6953 | |
| 6954 | assert(!(bs->open_flags & BDRV_O_INACTIVE)); |
Kevin Wolf | 1b3ff9f | 2022-12-07 14:18:38 +0100 | [diff] [blame] | 6955 | assert_bdrv_graph_readable(); |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6956 | |
| 6957 | if (bs->drv->bdrv_co_invalidate_cache) { |
| 6958 | bs->drv->bdrv_co_invalidate_cache(bs, &local_err); |
| 6959 | if (local_err) { |
| 6960 | error_propagate(errp, local_err); |
| 6961 | return -EINVAL; |
| 6962 | } |
| 6963 | } |
| 6964 | |
| 6965 | return 0; |
| 6966 | } |
| 6967 | |
Emanuele Giuseppe Esposito | 3b71719 | 2022-02-09 05:54:51 -0500 | [diff] [blame] | 6968 | void bdrv_activate_all(Error **errp) |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6969 | { |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 6970 | BlockDriverState *bs; |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6971 | BdrvNextIterator it; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6972 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6973 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 2b3912f | 2023-09-29 16:51:39 +0200 | [diff] [blame] | 6974 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6975 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6976 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6977 | int ret; |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 6978 | |
Emanuele Giuseppe Esposito | a94750d | 2022-02-09 05:54:50 -0500 | [diff] [blame] | 6979 | ret = bdrv_activate(bs, errp); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6980 | if (ret < 0) { |
Max Reitz | 5e003f1 | 2017-11-10 18:25:45 +0100 | [diff] [blame] | 6981 | bdrv_next_cleanup(&it); |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6982 | return; |
| 6983 | } |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6984 | } |
| 6985 | } |
| 6986 | |
Kevin Wolf | 0e6bad1 | 2023-09-29 16:51:38 +0200 | [diff] [blame] | 6987 | static bool GRAPH_RDLOCK |
| 6988 | bdrv_has_bds_parent(BlockDriverState *bs, bool only_active) |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6989 | { |
| 6990 | BdrvChild *parent; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 6991 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6992 | |
| 6993 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6994 | if (parent->klass->parent_is_bds) { |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6995 | BlockDriverState *parent_bs = parent->opaque; |
| 6996 | if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) { |
| 6997 | return true; |
| 6998 | } |
| 6999 | } |
| 7000 | } |
| 7001 | |
| 7002 | return false; |
| 7003 | } |
| 7004 | |
Kevin Wolf | a6490ec | 2025-02-04 22:13:53 +0100 | [diff] [blame] | 7005 | static int GRAPH_RDLOCK |
| 7006 | bdrv_inactivate_recurse(BlockDriverState *bs, bool top_level) |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7007 | { |
Kevin Wolf | cfa1a57 | 2017-05-04 18:52:38 +0200 | [diff] [blame] | 7008 | BdrvChild *child, *parent; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7009 | int ret; |
Vladimir Sementsov-Ogievskiy | a13de40 | 2021-09-11 15:00:27 +0300 | [diff] [blame] | 7010 | uint64_t cumulative_perms, cumulative_shared_perms; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7011 | |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 7012 | GLOBAL_STATE_CODE(); |
| 7013 | |
Fiona Ebner | 841998e | 2025-05-30 17:10:41 +0200 | [diff] [blame] | 7014 | assert(bs->quiesce_counter > 0); |
| 7015 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 7016 | if (!bs->drv) { |
| 7017 | return -ENOMEDIUM; |
| 7018 | } |
| 7019 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 7020 | /* Make sure that we don't inactivate a child before its parent. |
| 7021 | * It will be covered by recursion from the yet active parent. */ |
| 7022 | if (bdrv_has_bds_parent(bs, true)) { |
| 7023 | return 0; |
| 7024 | } |
| 7025 | |
Kevin Wolf | a6490ec | 2025-02-04 22:13:53 +0100 | [diff] [blame] | 7026 | /* |
| 7027 | * Inactivating an already inactive node on user request is harmless, but if |
| 7028 | * a child is already inactive before its parent, that's bad. |
| 7029 | */ |
| 7030 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 7031 | assert(top_level); |
| 7032 | return 0; |
| 7033 | } |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 7034 | |
| 7035 | /* Inactivate this node */ |
| 7036 | if (bs->drv->bdrv_inactivate) { |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7037 | ret = bs->drv->bdrv_inactivate(bs); |
| 7038 | if (ret < 0) { |
| 7039 | return ret; |
| 7040 | } |
| 7041 | } |
| 7042 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 7043 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 7044 | if (parent->klass->inactivate) { |
| 7045 | ret = parent->klass->inactivate(parent); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 7046 | if (ret < 0) { |
| 7047 | return ret; |
Kevin Wolf | cfa1a57 | 2017-05-04 18:52:38 +0200 | [diff] [blame] | 7048 | } |
| 7049 | } |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 7050 | } |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 7051 | |
Vladimir Sementsov-Ogievskiy | a13de40 | 2021-09-11 15:00:27 +0300 | [diff] [blame] | 7052 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
| 7053 | &cumulative_shared_perms); |
| 7054 | if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) { |
| 7055 | /* Our inactive parents still need write access. Inactivation failed. */ |
| 7056 | return -EPERM; |
| 7057 | } |
| 7058 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 7059 | bs->open_flags |= BDRV_O_INACTIVE; |
| 7060 | |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 7061 | /* |
| 7062 | * Update permissions, they may differ for inactive nodes. |
| 7063 | * We only tried to loosen restrictions, so errors are not fatal, ignore |
| 7064 | * them. |
| 7065 | */ |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 7066 | bdrv_refresh_perms(bs, NULL, NULL); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 7067 | |
| 7068 | /* Recursively inactivate children */ |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 7069 | QLIST_FOREACH(child, &bs->children, next) { |
Kevin Wolf | a6490ec | 2025-02-04 22:13:53 +0100 | [diff] [blame] | 7070 | ret = bdrv_inactivate_recurse(child->bs, false); |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 7071 | if (ret < 0) { |
| 7072 | return ret; |
| 7073 | } |
| 7074 | } |
| 7075 | |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7076 | return 0; |
| 7077 | } |
| 7078 | |
Kevin Wolf | 8cd3720 | 2025-02-04 22:13:59 +0100 | [diff] [blame] | 7079 | int bdrv_inactivate(BlockDriverState *bs, Error **errp) |
| 7080 | { |
| 7081 | int ret; |
| 7082 | |
| 7083 | GLOBAL_STATE_CODE(); |
Fiona Ebner | 841998e | 2025-05-30 17:10:41 +0200 | [diff] [blame] | 7084 | |
| 7085 | bdrv_drain_all_begin(); |
| 7086 | bdrv_graph_rdlock_main_loop(); |
Kevin Wolf | 8cd3720 | 2025-02-04 22:13:59 +0100 | [diff] [blame] | 7087 | |
| 7088 | if (bdrv_has_bds_parent(bs, true)) { |
| 7089 | error_setg(errp, "Node has active parent node"); |
Fiona Ebner | 841998e | 2025-05-30 17:10:41 +0200 | [diff] [blame] | 7090 | ret = -EPERM; |
| 7091 | goto out; |
Kevin Wolf | 8cd3720 | 2025-02-04 22:13:59 +0100 | [diff] [blame] | 7092 | } |
| 7093 | |
| 7094 | ret = bdrv_inactivate_recurse(bs, true); |
| 7095 | if (ret < 0) { |
| 7096 | error_setg_errno(errp, -ret, "Failed to inactivate node"); |
Fiona Ebner | 841998e | 2025-05-30 17:10:41 +0200 | [diff] [blame] | 7097 | goto out; |
Kevin Wolf | 8cd3720 | 2025-02-04 22:13:59 +0100 | [diff] [blame] | 7098 | } |
| 7099 | |
Fiona Ebner | 841998e | 2025-05-30 17:10:41 +0200 | [diff] [blame] | 7100 | out: |
| 7101 | bdrv_graph_rdunlock_main_loop(); |
| 7102 | bdrv_drain_all_end(); |
| 7103 | return ret; |
Kevin Wolf | 8cd3720 | 2025-02-04 22:13:59 +0100 | [diff] [blame] | 7104 | } |
| 7105 | |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7106 | int bdrv_inactivate_all(void) |
| 7107 | { |
Max Reitz | 79720af | 2016-03-16 19:54:44 +0100 | [diff] [blame] | 7108 | BlockDriverState *bs = NULL; |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 7109 | BdrvNextIterator it; |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 7110 | int ret = 0; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7111 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7112 | GLOBAL_STATE_CODE(); |
Fiona Ebner | 841998e | 2025-05-30 17:10:41 +0200 | [diff] [blame] | 7113 | |
| 7114 | bdrv_drain_all_begin(); |
| 7115 | bdrv_graph_rdlock_main_loop(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7116 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 7117 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 7118 | /* Nodes with BDS parents are covered by recursion from the last |
| 7119 | * parent that gets inactivated. Don't inactivate them a second |
| 7120 | * time if that has already happened. */ |
| 7121 | if (bdrv_has_bds_parent(bs, false)) { |
| 7122 | continue; |
| 7123 | } |
Kevin Wolf | a6490ec | 2025-02-04 22:13:53 +0100 | [diff] [blame] | 7124 | ret = bdrv_inactivate_recurse(bs, true); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 7125 | if (ret < 0) { |
| 7126 | bdrv_next_cleanup(&it); |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 7127 | break; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7128 | } |
| 7129 | } |
| 7130 | |
Fiona Ebner | 841998e | 2025-05-30 17:10:41 +0200 | [diff] [blame] | 7131 | bdrv_graph_rdunlock_main_loop(); |
| 7132 | bdrv_drain_all_end(); |
| 7133 | |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 7134 | return ret; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7135 | } |
| 7136 | |
Kevin Wolf | f9f05dc | 2011-07-15 13:50:26 +0200 | [diff] [blame] | 7137 | /**************************************************************/ |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7138 | /* removable device support */ |
| 7139 | |
| 7140 | /** |
| 7141 | * Return TRUE if the media is present |
| 7142 | */ |
Emanuele Giuseppe Esposito | 1e97be9 | 2023-01-13 21:42:02 +0100 | [diff] [blame] | 7143 | bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7144 | { |
| 7145 | BlockDriver *drv = bs->drv; |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 7146 | BdrvChild *child; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7147 | IO_CODE(); |
Emanuele Giuseppe Esposito | c73ff92 | 2023-02-03 16:21:57 +0100 | [diff] [blame] | 7148 | assert_bdrv_graph_readable(); |
Markus Armbruster | a1aff5b | 2011-09-06 18:58:41 +0200 | [diff] [blame] | 7149 | |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 7150 | if (!drv) { |
| 7151 | return false; |
| 7152 | } |
Emanuele Giuseppe Esposito | 1e97be9 | 2023-01-13 21:42:02 +0100 | [diff] [blame] | 7153 | if (drv->bdrv_co_is_inserted) { |
| 7154 | return drv->bdrv_co_is_inserted(bs); |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 7155 | } |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 7156 | QLIST_FOREACH(child, &bs->children, next) { |
Emanuele Giuseppe Esposito | 1e97be9 | 2023-01-13 21:42:02 +0100 | [diff] [blame] | 7157 | if (!bdrv_co_is_inserted(child->bs)) { |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 7158 | return false; |
| 7159 | } |
| 7160 | } |
| 7161 | return true; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7162 | } |
| 7163 | |
| 7164 | /** |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7165 | * If eject_flag is TRUE, eject the media. Otherwise, close the tray |
| 7166 | */ |
Emanuele Giuseppe Esposito | 2531b39 | 2023-01-13 21:42:09 +0100 | [diff] [blame] | 7167 | void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7168 | { |
| 7169 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7170 | IO_CODE(); |
Kevin Wolf | 79a292e | 2023-02-03 16:21:58 +0100 | [diff] [blame] | 7171 | assert_bdrv_graph_readable(); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7172 | |
Emanuele Giuseppe Esposito | 2531b39 | 2023-01-13 21:42:09 +0100 | [diff] [blame] | 7173 | if (drv && drv->bdrv_co_eject) { |
| 7174 | drv->bdrv_co_eject(bs, eject_flag); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7175 | } |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7176 | } |
| 7177 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7178 | /** |
| 7179 | * Lock or unlock the media (if it is locked, the user won't be able |
| 7180 | * to eject it manually). |
| 7181 | */ |
Emanuele Giuseppe Esposito | 2c75261 | 2023-01-13 21:42:10 +0100 | [diff] [blame] | 7182 | void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7183 | { |
| 7184 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7185 | IO_CODE(); |
Kevin Wolf | 79a292e | 2023-02-03 16:21:58 +0100 | [diff] [blame] | 7186 | assert_bdrv_graph_readable(); |
Markus Armbruster | 025e849 | 2011-09-06 18:58:47 +0200 | [diff] [blame] | 7187 | trace_bdrv_lock_medium(bs, locked); |
Stefan Hajnoczi | b8c6d09 | 2011-03-29 20:04:40 +0100 | [diff] [blame] | 7188 | |
Emanuele Giuseppe Esposito | 2c75261 | 2023-01-13 21:42:10 +0100 | [diff] [blame] | 7189 | if (drv && drv->bdrv_co_lock_medium) { |
| 7190 | drv->bdrv_co_lock_medium(bs, locked); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7191 | } |
| 7192 | } |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 7193 | |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 7194 | /* Get a reference to bs */ |
| 7195 | void bdrv_ref(BlockDriverState *bs) |
| 7196 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7197 | GLOBAL_STATE_CODE(); |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 7198 | bs->refcnt++; |
| 7199 | } |
| 7200 | |
| 7201 | /* Release a previously grabbed reference to bs. |
| 7202 | * If after releasing, reference count is zero, the BlockDriverState is |
| 7203 | * deleted. */ |
| 7204 | void bdrv_unref(BlockDriverState *bs) |
| 7205 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7206 | GLOBAL_STATE_CODE(); |
Jeff Cody | 9a4d5ca | 2014-07-23 17:22:57 -0400 | [diff] [blame] | 7207 | if (!bs) { |
| 7208 | return; |
| 7209 | } |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 7210 | assert(bs->refcnt > 0); |
| 7211 | if (--bs->refcnt == 0) { |
| 7212 | bdrv_delete(bs); |
| 7213 | } |
| 7214 | } |
| 7215 | |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7216 | static void bdrv_schedule_unref_bh(void *opaque) |
| 7217 | { |
| 7218 | BlockDriverState *bs = opaque; |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7219 | |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7220 | bdrv_unref(bs); |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7221 | } |
| 7222 | |
Kevin Wolf | ac2ae23 | 2023-09-11 11:46:04 +0200 | [diff] [blame] | 7223 | /* |
| 7224 | * Release a BlockDriverState reference while holding the graph write lock. |
| 7225 | * |
| 7226 | * Calling bdrv_unref() directly is forbidden while holding the graph lock |
| 7227 | * because bdrv_close() both involves polling and taking the graph lock |
| 7228 | * internally. bdrv_schedule_unref() instead delays decreasing the refcount and |
| 7229 | * possibly closing @bs until the graph lock is released. |
| 7230 | */ |
| 7231 | void bdrv_schedule_unref(BlockDriverState *bs) |
| 7232 | { |
| 7233 | if (!bs) { |
| 7234 | return; |
| 7235 | } |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7236 | aio_bh_schedule_oneshot(qemu_get_aio_context(), bdrv_schedule_unref_bh, bs); |
Kevin Wolf | ac2ae23 | 2023-09-11 11:46:04 +0200 | [diff] [blame] | 7237 | } |
| 7238 | |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7239 | struct BdrvOpBlocker { |
| 7240 | Error *reason; |
| 7241 | QLIST_ENTRY(BdrvOpBlocker) list; |
| 7242 | }; |
| 7243 | |
| 7244 | bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) |
| 7245 | { |
| 7246 | BdrvOpBlocker *blocker; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7247 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 0bb79c9 | 2023-09-29 16:51:49 +0200 | [diff] [blame] | 7248 | |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7249 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 7250 | if (!QLIST_EMPTY(&bs->op_blockers[op])) { |
| 7251 | blocker = QLIST_FIRST(&bs->op_blockers[op]); |
Markus Armbruster | 4b57664 | 2018-10-17 10:26:25 +0200 | [diff] [blame] | 7252 | error_propagate_prepend(errp, error_copy(blocker->reason), |
| 7253 | "Node '%s' is busy: ", |
| 7254 | bdrv_get_device_or_node_name(bs)); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7255 | return true; |
| 7256 | } |
| 7257 | return false; |
| 7258 | } |
| 7259 | |
| 7260 | void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) |
| 7261 | { |
| 7262 | BdrvOpBlocker *blocker; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7263 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7264 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 7265 | |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 7266 | blocker = g_new0(BdrvOpBlocker, 1); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7267 | blocker->reason = reason; |
| 7268 | QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); |
| 7269 | } |
| 7270 | |
| 7271 | void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) |
| 7272 | { |
| 7273 | BdrvOpBlocker *blocker, *next; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7274 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7275 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 7276 | QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { |
| 7277 | if (blocker->reason == reason) { |
| 7278 | QLIST_REMOVE(blocker, list); |
| 7279 | g_free(blocker); |
| 7280 | } |
| 7281 | } |
| 7282 | } |
| 7283 | |
| 7284 | void bdrv_op_block_all(BlockDriverState *bs, Error *reason) |
| 7285 | { |
| 7286 | int i; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7287 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7288 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 7289 | bdrv_op_block(bs, i, reason); |
| 7290 | } |
| 7291 | } |
| 7292 | |
| 7293 | void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) |
| 7294 | { |
| 7295 | int i; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7296 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7297 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 7298 | bdrv_op_unblock(bs, i, reason); |
| 7299 | } |
| 7300 | } |
| 7301 | |
| 7302 | bool bdrv_op_blocker_is_empty(BlockDriverState *bs) |
| 7303 | { |
| 7304 | int i; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7305 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7306 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 7307 | if (!QLIST_EMPTY(&bs->op_blockers[i])) { |
| 7308 | return false; |
| 7309 | } |
| 7310 | } |
| 7311 | return true; |
| 7312 | } |
| 7313 | |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 7314 | void bdrv_img_create(const char *filename, const char *fmt, |
| 7315 | const char *base_filename, const char *base_fmt, |
Fam Zheng | 9217283 | 2017-04-21 20:27:01 +0800 | [diff] [blame] | 7316 | char *options, uint64_t img_size, int flags, bool quiet, |
| 7317 | Error **errp) |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7318 | { |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7319 | QemuOptsList *create_opts = NULL; |
| 7320 | QemuOpts *opts = NULL; |
| 7321 | const char *backing_fmt, *backing_file; |
| 7322 | int64_t size; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7323 | BlockDriver *drv, *proto_drv; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7324 | Error *local_err = NULL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7325 | int ret = 0; |
| 7326 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7327 | GLOBAL_STATE_CODE(); |
| 7328 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7329 | /* Find driver and parse its options */ |
| 7330 | drv = bdrv_find_format(fmt); |
| 7331 | if (!drv) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7332 | error_setg(errp, "Unknown file format '%s'", fmt); |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 7333 | return; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7334 | } |
| 7335 | |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 7336 | proto_drv = bdrv_find_protocol(filename, true, errp); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7337 | if (!proto_drv) { |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 7338 | return; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7339 | } |
| 7340 | |
Max Reitz | c614972 | 2014-12-02 18:32:45 +0100 | [diff] [blame] | 7341 | if (!drv->create_opts) { |
| 7342 | error_setg(errp, "Format driver '%s' does not support image creation", |
| 7343 | drv->format_name); |
| 7344 | return; |
| 7345 | } |
| 7346 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 7347 | if (!proto_drv->create_opts) { |
| 7348 | error_setg(errp, "Protocol driver '%s' does not support image creation", |
| 7349 | proto_drv->format_name); |
| 7350 | return; |
| 7351 | } |
| 7352 | |
Kevin Wolf | f6dc1c3 | 2019-11-26 16:45:49 +0100 | [diff] [blame] | 7353 | /* Create parameter list */ |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7354 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 7355 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7356 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7357 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7358 | |
| 7359 | /* Parse -o options */ |
| 7360 | if (options) { |
Markus Armbruster | a5f9b9d | 2020-07-07 18:06:05 +0200 | [diff] [blame] | 7361 | if (!qemu_opts_do_parse(opts, options, NULL, errp)) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7362 | goto out; |
| 7363 | } |
| 7364 | } |
| 7365 | |
Kevin Wolf | f6dc1c3 | 2019-11-26 16:45:49 +0100 | [diff] [blame] | 7366 | if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) { |
| 7367 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); |
| 7368 | } else if (img_size != UINT64_C(-1)) { |
| 7369 | error_setg(errp, "The image size must be specified only once"); |
| 7370 | goto out; |
| 7371 | } |
| 7372 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7373 | if (base_filename) { |
Markus Armbruster | 235e59c | 2020-07-07 18:05:42 +0200 | [diff] [blame] | 7374 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, |
Markus Armbruster | 3882578 | 2020-07-07 18:05:43 +0200 | [diff] [blame] | 7375 | NULL)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7376 | error_setg(errp, "Backing file not supported for file format '%s'", |
| 7377 | fmt); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7378 | goto out; |
| 7379 | } |
| 7380 | } |
| 7381 | |
| 7382 | if (base_fmt) { |
Markus Armbruster | 3882578 | 2020-07-07 18:05:43 +0200 | [diff] [blame] | 7383 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7384 | error_setg(errp, "Backing file format not supported for file " |
| 7385 | "format '%s'", fmt); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7386 | goto out; |
| 7387 | } |
| 7388 | } |
| 7389 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7390 | backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); |
| 7391 | if (backing_file) { |
| 7392 | if (!strcmp(filename, backing_file)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7393 | error_setg(errp, "Error: Trying to create an image with the " |
| 7394 | "same filename as the backing file"); |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 7395 | goto out; |
| 7396 | } |
Connor Kuehl | 975a7bd | 2020-08-13 08:47:22 -0500 | [diff] [blame] | 7397 | if (backing_file[0] == '\0') { |
| 7398 | error_setg(errp, "Expected backing file name, got empty string"); |
| 7399 | goto out; |
| 7400 | } |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 7401 | } |
| 7402 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7403 | backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7404 | |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7405 | /* The size for the image must always be specified, unless we have a backing |
| 7406 | * file and we have not been forbidden from opening it. */ |
Eric Blake | a8b42a1 | 2017-09-25 09:55:07 -0500 | [diff] [blame] | 7407 | size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7408 | if (backing_file && !(flags & BDRV_O_NO_BACKING)) { |
| 7409 | BlockDriverState *bs; |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 7410 | char *full_backing; |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7411 | int back_flags; |
| 7412 | QDict *backing_options = NULL; |
Paolo Bonzini | 63090da | 2012-04-12 14:01:03 +0200 | [diff] [blame] | 7413 | |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 7414 | full_backing = |
| 7415 | bdrv_get_full_backing_filename_from_filename(filename, backing_file, |
| 7416 | &local_err); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7417 | if (local_err) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7418 | goto out; |
| 7419 | } |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 7420 | assert(full_backing); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7421 | |
Max Reitz | d5b2399 | 2021-06-22 16:00:30 +0200 | [diff] [blame] | 7422 | /* |
| 7423 | * No need to do I/O here, which allows us to open encrypted |
| 7424 | * backing images without needing the secret |
| 7425 | */ |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7426 | back_flags = flags; |
| 7427 | back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); |
Max Reitz | d5b2399 | 2021-06-22 16:00:30 +0200 | [diff] [blame] | 7428 | back_flags |= BDRV_O_NO_IO; |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7429 | |
Fam Zheng | cc954f0 | 2017-12-15 16:04:45 +0800 | [diff] [blame] | 7430 | backing_options = qdict_new(); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7431 | if (backing_fmt) { |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7432 | qdict_put_str(backing_options, "driver", backing_fmt); |
| 7433 | } |
Fam Zheng | cc954f0 | 2017-12-15 16:04:45 +0800 | [diff] [blame] | 7434 | qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7435 | |
| 7436 | bs = bdrv_open(full_backing, NULL, backing_options, back_flags, |
| 7437 | &local_err); |
| 7438 | g_free(full_backing); |
Eric Blake | add8200 | 2020-07-06 15:39:50 -0500 | [diff] [blame] | 7439 | if (!bs) { |
| 7440 | error_append_hint(&local_err, "Could not open backing image.\n"); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7441 | goto out; |
| 7442 | } else { |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7443 | if (!backing_fmt) { |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 7444 | error_setg(&local_err, |
| 7445 | "Backing file specified without backing format"); |
Michael Tokarev | fbdffb0 | 2023-04-05 16:34:04 +0300 | [diff] [blame] | 7446 | error_append_hint(&local_err, "Detected format of %s.\n", |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 7447 | bs->drv->format_name); |
| 7448 | goto out; |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7449 | } |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7450 | if (size == -1) { |
| 7451 | /* Opened BS, have no size */ |
| 7452 | size = bdrv_getlength(bs); |
| 7453 | if (size < 0) { |
| 7454 | error_setg_errno(errp, -size, "Could not get size of '%s'", |
| 7455 | backing_file); |
| 7456 | bdrv_unref(bs); |
| 7457 | goto out; |
| 7458 | } |
| 7459 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); |
| 7460 | } |
| 7461 | bdrv_unref(bs); |
| 7462 | } |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7463 | /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ |
| 7464 | } else if (backing_file && !backing_fmt) { |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 7465 | error_setg(&local_err, |
| 7466 | "Backing file specified without backing format"); |
| 7467 | goto out; |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7468 | } |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7469 | |
Hyman Huang | 35286da | 2024-01-30 13:37:23 +0800 | [diff] [blame] | 7470 | /* Parameter 'size' is not needed for detached LUKS header */ |
| 7471 | if (size == -1 && |
| 7472 | !(!strcmp(fmt, "luks") && |
| 7473 | qemu_opt_get_bool(opts, "detached-header", false))) { |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7474 | error_setg(errp, "Image creation needs a size parameter"); |
| 7475 | goto out; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7476 | } |
| 7477 | |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 7478 | if (!quiet) { |
Kővágó, Zoltán | fe64669 | 2015-07-07 16:42:10 +0200 | [diff] [blame] | 7479 | printf("Formatting '%s', fmt=%s ", filename, fmt); |
Fam Zheng | 43c5d8f | 2014-12-09 15:38:04 +0800 | [diff] [blame] | 7480 | qemu_opts_print(opts, " "); |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 7481 | puts(""); |
Eric Blake | 4e2f441 | 2020-07-06 15:39:45 -0500 | [diff] [blame] | 7482 | fflush(stdout); |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 7483 | } |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7484 | |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7485 | ret = bdrv_create(drv, filename, opts, &local_err); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7486 | |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7487 | if (ret == -EFBIG) { |
| 7488 | /* This is generally a better message than whatever the driver would |
| 7489 | * deliver (especially because of the cluster_size_hint), since that |
| 7490 | * is most probably not much different from "image too large". */ |
| 7491 | const char *cluster_size_hint = ""; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7492 | if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7493 | cluster_size_hint = " (try using a larger cluster size)"; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7494 | } |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7495 | error_setg(errp, "The image size is too large for file format '%s'" |
| 7496 | "%s", fmt, cluster_size_hint); |
| 7497 | error_free(local_err); |
| 7498 | local_err = NULL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7499 | } |
| 7500 | |
| 7501 | out: |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7502 | qemu_opts_del(opts); |
| 7503 | qemu_opts_free(create_opts); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 7504 | error_propagate(errp, local_err); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7505 | } |
Stefan Hajnoczi | 85d126f | 2013-03-07 13:41:48 +0100 | [diff] [blame] | 7506 | |
| 7507 | AioContext *bdrv_get_aio_context(BlockDriverState *bs) |
| 7508 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7509 | IO_CODE(); |
Stefan Hajnoczi | 33f2a75 | 2018-02-16 16:50:13 +0000 | [diff] [blame] | 7510 | return bs ? bs->aio_context : qemu_get_aio_context(); |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7511 | } |
| 7512 | |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 7513 | AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs) |
| 7514 | { |
| 7515 | Coroutine *self = qemu_coroutine_self(); |
| 7516 | AioContext *old_ctx = qemu_coroutine_get_aio_context(self); |
| 7517 | AioContext *new_ctx; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7518 | IO_CODE(); |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 7519 | |
| 7520 | /* |
| 7521 | * Increase bs->in_flight to ensure that this operation is completed before |
| 7522 | * moving the node to a different AioContext. Read new_ctx only afterwards. |
| 7523 | */ |
| 7524 | bdrv_inc_in_flight(bs); |
| 7525 | |
| 7526 | new_ctx = bdrv_get_aio_context(bs); |
| 7527 | aio_co_reschedule_self(new_ctx); |
| 7528 | return old_ctx; |
| 7529 | } |
| 7530 | |
| 7531 | void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx) |
| 7532 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7533 | IO_CODE(); |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 7534 | aio_co_reschedule_self(old_ctx); |
| 7535 | bdrv_dec_in_flight(bs); |
| 7536 | } |
| 7537 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7538 | static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) |
| 7539 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 7540 | GLOBAL_STATE_CODE(); |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7541 | QLIST_REMOVE(ban, list); |
| 7542 | g_free(ban); |
| 7543 | } |
| 7544 | |
Kevin Wolf | a3a683c | 2019-05-06 19:17:57 +0200 | [diff] [blame] | 7545 | static void bdrv_detach_aio_context(BlockDriverState *bs) |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7546 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7547 | BdrvAioNotifier *baf, *baf_tmp; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7548 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7549 | assert(!bs->walking_aio_notifiers); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 7550 | GLOBAL_STATE_CODE(); |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7551 | bs->walking_aio_notifiers = true; |
| 7552 | QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { |
| 7553 | if (baf->deleted) { |
| 7554 | bdrv_do_remove_aio_context_notifier(baf); |
| 7555 | } else { |
| 7556 | baf->detach_aio_context(baf->opaque); |
| 7557 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7558 | } |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7559 | /* Never mind iterating again to check for ->deleted. bdrv_close() will |
| 7560 | * remove remaining aio notifiers if we aren't called again. |
| 7561 | */ |
| 7562 | bs->walking_aio_notifiers = false; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7563 | |
Kevin Wolf | 1bffe1a | 2019-04-17 17:15:25 +0200 | [diff] [blame] | 7564 | if (bs->drv && bs->drv->bdrv_detach_aio_context) { |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7565 | bs->drv->bdrv_detach_aio_context(bs); |
| 7566 | } |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7567 | |
| 7568 | bs->aio_context = NULL; |
| 7569 | } |
| 7570 | |
Kevin Wolf | a3a683c | 2019-05-06 19:17:57 +0200 | [diff] [blame] | 7571 | static void bdrv_attach_aio_context(BlockDriverState *bs, |
| 7572 | AioContext *new_context) |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7573 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7574 | BdrvAioNotifier *ban, *ban_tmp; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 7575 | GLOBAL_STATE_CODE(); |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7576 | |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7577 | bs->aio_context = new_context; |
| 7578 | |
Kevin Wolf | 1bffe1a | 2019-04-17 17:15:25 +0200 | [diff] [blame] | 7579 | if (bs->drv && bs->drv->bdrv_attach_aio_context) { |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7580 | bs->drv->bdrv_attach_aio_context(bs, new_context); |
| 7581 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7582 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7583 | assert(!bs->walking_aio_notifiers); |
| 7584 | bs->walking_aio_notifiers = true; |
| 7585 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { |
| 7586 | if (ban->deleted) { |
| 7587 | bdrv_do_remove_aio_context_notifier(ban); |
| 7588 | } else { |
| 7589 | ban->attached_aio_context(new_context, ban->opaque); |
| 7590 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7591 | } |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7592 | bs->walking_aio_notifiers = false; |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7593 | } |
| 7594 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7595 | typedef struct BdrvStateSetAioContext { |
| 7596 | AioContext *new_ctx; |
| 7597 | BlockDriverState *bs; |
| 7598 | } BdrvStateSetAioContext; |
| 7599 | |
Fiona Ebner | 91ba0e1 | 2025-05-30 17:10:45 +0200 | [diff] [blame] | 7600 | /* |
| 7601 | * Changes the AioContext of @child to @ctx and recursively for the associated |
| 7602 | * block nodes and all their children and parents. Returns true if the change is |
| 7603 | * possible and the transaction @tran can be continued. Returns false and sets |
| 7604 | * @errp if not and the transaction must be aborted. |
| 7605 | * |
| 7606 | * @visited will accumulate all visited BdrvChild objects. The caller is |
| 7607 | * responsible for freeing the list afterwards. |
| 7608 | * |
| 7609 | * Must be called with the affected block nodes drained. |
| 7610 | */ |
Fiona Ebner | 3758733 | 2025-05-30 17:10:42 +0200 | [diff] [blame] | 7611 | static bool GRAPH_RDLOCK |
| 7612 | bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx, |
| 7613 | GHashTable *visited, Transaction *tran, |
| 7614 | Error **errp) |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7615 | { |
| 7616 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7617 | if (g_hash_table_contains(visited, c)) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7618 | return true; |
| 7619 | } |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7620 | g_hash_table_add(visited, c); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7621 | |
| 7622 | /* |
| 7623 | * A BdrvChildClass that doesn't handle AioContext changes cannot |
| 7624 | * tolerate any AioContext changes |
| 7625 | */ |
| 7626 | if (!c->klass->change_aio_ctx) { |
| 7627 | char *user = bdrv_child_user_desc(c); |
| 7628 | error_setg(errp, "Changing iothreads is not supported by %s", user); |
| 7629 | g_free(user); |
| 7630 | return false; |
| 7631 | } |
| 7632 | if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) { |
| 7633 | assert(!errp || *errp); |
| 7634 | return false; |
| 7635 | } |
| 7636 | return true; |
| 7637 | } |
| 7638 | |
Fiona Ebner | 91ba0e1 | 2025-05-30 17:10:45 +0200 | [diff] [blame] | 7639 | /* |
| 7640 | * Changes the AioContext of @c->bs to @ctx and recursively for all its children |
| 7641 | * and parents. Returns true if the change is possible and the transaction @tran |
| 7642 | * can be continued. Returns false and sets @errp if not and the transaction |
| 7643 | * must be aborted. |
| 7644 | * |
| 7645 | * @visited will accumulate all visited BdrvChild objects. The caller is |
| 7646 | * responsible for freeing the list afterwards. |
| 7647 | * |
| 7648 | * Must be called with the affected block nodes drained. |
| 7649 | */ |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7650 | bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx, |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7651 | GHashTable *visited, Transaction *tran, |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7652 | Error **errp) |
| 7653 | { |
| 7654 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7655 | if (g_hash_table_contains(visited, c)) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7656 | return true; |
| 7657 | } |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7658 | g_hash_table_add(visited, c); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7659 | return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp); |
| 7660 | } |
| 7661 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7662 | static void bdrv_set_aio_context_clean(void *opaque) |
| 7663 | { |
| 7664 | BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque; |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7665 | |
| 7666 | g_free(state); |
| 7667 | } |
| 7668 | |
| 7669 | static void bdrv_set_aio_context_commit(void *opaque) |
| 7670 | { |
| 7671 | BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque; |
| 7672 | BlockDriverState *bs = (BlockDriverState *) state->bs; |
| 7673 | AioContext *new_context = state->new_ctx; |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7674 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7675 | bdrv_detach_aio_context(bs); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7676 | bdrv_attach_aio_context(bs, new_context); |
| 7677 | } |
| 7678 | |
| 7679 | static TransactionActionDrv set_aio_context = { |
| 7680 | .commit = bdrv_set_aio_context_commit, |
| 7681 | .clean = bdrv_set_aio_context_clean, |
| 7682 | }; |
| 7683 | |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 7684 | /* |
| 7685 | * Changes the AioContext used for fd handlers, timers, and BHs by this |
| 7686 | * BlockDriverState and all its children and parents. |
| 7687 | * |
Max Reitz | 43eaaae | 2019-07-22 15:30:54 +0200 | [diff] [blame] | 7688 | * Must be called from the main AioContext. |
| 7689 | * |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7690 | * @visited will accumulate all visited BdrvChild objects. The caller is |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 7691 | * responsible for freeing the list afterwards. |
Fiona Ebner | 91ba0e1 | 2025-05-30 17:10:45 +0200 | [diff] [blame] | 7692 | * |
| 7693 | * @bs must be drained. |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 7694 | */ |
Fiona Ebner | 91ba0e1 | 2025-05-30 17:10:45 +0200 | [diff] [blame] | 7695 | static bool GRAPH_RDLOCK |
| 7696 | bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx, |
| 7697 | GHashTable *visited, Transaction *tran, Error **errp) |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7698 | { |
| 7699 | BdrvChild *c; |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7700 | BdrvStateSetAioContext *state; |
| 7701 | |
| 7702 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7703 | |
| 7704 | if (bdrv_get_aio_context(bs) == ctx) { |
| 7705 | return true; |
| 7706 | } |
| 7707 | |
| 7708 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7709 | if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) { |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7710 | return false; |
| 7711 | } |
| 7712 | } |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7713 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7714 | QLIST_FOREACH(c, &bs->children, next) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7715 | if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) { |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7716 | return false; |
| 7717 | } |
| 7718 | } |
| 7719 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7720 | state = g_new(BdrvStateSetAioContext, 1); |
| 7721 | *state = (BdrvStateSetAioContext) { |
| 7722 | .new_ctx = ctx, |
| 7723 | .bs = bs, |
| 7724 | }; |
| 7725 | |
Fiona Ebner | 91ba0e1 | 2025-05-30 17:10:45 +0200 | [diff] [blame] | 7726 | assert(bs->quiesce_counter > 0); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7727 | |
| 7728 | tran_add(tran, &set_aio_context, state); |
| 7729 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7730 | return true; |
| 7731 | } |
| 7732 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7733 | /* |
| 7734 | * Change bs's and recursively all of its parents' and children's AioContext |
| 7735 | * to the given new context, returning an error if that isn't possible. |
| 7736 | * |
| 7737 | * If ignore_child is not NULL, that child (and its subgraph) will not |
| 7738 | * be touched. |
Fiona Ebner | a1ea8eb | 2025-05-30 17:10:46 +0200 | [diff] [blame] | 7739 | * |
| 7740 | * Called with the graph lock held. |
| 7741 | * |
| 7742 | * Called while all bs are drained. |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7743 | */ |
Fiona Ebner | a1ea8eb | 2025-05-30 17:10:46 +0200 | [diff] [blame] | 7744 | int bdrv_try_change_aio_context_locked(BlockDriverState *bs, AioContext *ctx, |
| 7745 | BdrvChild *ignore_child, Error **errp) |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7746 | { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7747 | Transaction *tran; |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7748 | GHashTable *visited; |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7749 | int ret; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7750 | GLOBAL_STATE_CODE(); |
| 7751 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7752 | /* |
| 7753 | * Recursion phase: go through all nodes of the graph. |
Fiona Ebner | a1ea8eb | 2025-05-30 17:10:46 +0200 | [diff] [blame] | 7754 | * Take care of checking that all nodes support changing AioContext, |
| 7755 | * building a linear list of callbacks to run if everything is successful |
| 7756 | * (the transaction itself). |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7757 | */ |
| 7758 | tran = tran_new(); |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7759 | visited = g_hash_table_new(NULL, NULL); |
| 7760 | if (ignore_child) { |
| 7761 | g_hash_table_add(visited, ignore_child); |
| 7762 | } |
| 7763 | ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp); |
| 7764 | g_hash_table_destroy(visited); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7765 | |
| 7766 | /* |
| 7767 | * Linear phase: go through all callbacks collected in the transaction. |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 7768 | * Run all callbacks collected in the recursion to switch every node's |
| 7769 | * AioContext (transaction commit), or undo all changes done in the |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7770 | * recursion (transaction abort). |
| 7771 | */ |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7772 | |
| 7773 | if (!ret) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7774 | /* Just run clean() callbacks. No AioContext changed. */ |
| 7775 | tran_abort(tran); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7776 | return -EPERM; |
| 7777 | } |
| 7778 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7779 | tran_commit(tran); |
Fiona Ebner | a1ea8eb | 2025-05-30 17:10:46 +0200 | [diff] [blame] | 7780 | return 0; |
| 7781 | } |
| 7782 | |
| 7783 | /* |
| 7784 | * Change bs's and recursively all of its parents' and children's AioContext |
| 7785 | * to the given new context, returning an error if that isn't possible. |
| 7786 | * |
| 7787 | * If ignore_child is not NULL, that child (and its subgraph) will not |
| 7788 | * be touched. |
| 7789 | */ |
| 7790 | int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx, |
| 7791 | BdrvChild *ignore_child, Error **errp) |
| 7792 | { |
| 7793 | int ret; |
| 7794 | |
| 7795 | GLOBAL_STATE_CODE(); |
| 7796 | |
| 7797 | bdrv_drain_all_begin(); |
| 7798 | bdrv_graph_rdlock_main_loop(); |
| 7799 | ret = bdrv_try_change_aio_context_locked(bs, ctx, ignore_child, errp); |
Fiona Ebner | 91ba0e1 | 2025-05-30 17:10:45 +0200 | [diff] [blame] | 7800 | bdrv_graph_rdunlock_main_loop(); |
| 7801 | bdrv_drain_all_end(); |
Fiona Ebner | a1ea8eb | 2025-05-30 17:10:46 +0200 | [diff] [blame] | 7802 | |
| 7803 | return ret; |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7804 | } |
| 7805 | |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7806 | void bdrv_add_aio_context_notifier(BlockDriverState *bs, |
| 7807 | void (*attached_aio_context)(AioContext *new_context, void *opaque), |
| 7808 | void (*detach_aio_context)(void *opaque), void *opaque) |
| 7809 | { |
| 7810 | BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); |
| 7811 | *ban = (BdrvAioNotifier){ |
| 7812 | .attached_aio_context = attached_aio_context, |
| 7813 | .detach_aio_context = detach_aio_context, |
| 7814 | .opaque = opaque |
| 7815 | }; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7816 | GLOBAL_STATE_CODE(); |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7817 | |
| 7818 | QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); |
| 7819 | } |
| 7820 | |
| 7821 | void bdrv_remove_aio_context_notifier(BlockDriverState *bs, |
| 7822 | void (*attached_aio_context)(AioContext *, |
| 7823 | void *), |
| 7824 | void (*detach_aio_context)(void *), |
| 7825 | void *opaque) |
| 7826 | { |
| 7827 | BdrvAioNotifier *ban, *ban_next; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7828 | GLOBAL_STATE_CODE(); |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7829 | |
| 7830 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
| 7831 | if (ban->attached_aio_context == attached_aio_context && |
| 7832 | ban->detach_aio_context == detach_aio_context && |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7833 | ban->opaque == opaque && |
| 7834 | ban->deleted == false) |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7835 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7836 | if (bs->walking_aio_notifiers) { |
| 7837 | ban->deleted = true; |
| 7838 | } else { |
| 7839 | bdrv_do_remove_aio_context_notifier(ban); |
| 7840 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7841 | return; |
| 7842 | } |
| 7843 | } |
| 7844 | |
| 7845 | abort(); |
| 7846 | } |
| 7847 | |
Max Reitz | 7748543 | 2014-10-27 11:12:50 +0100 | [diff] [blame] | 7848 | int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7849 | BlockDriverAmendStatusCB *status_cb, void *cb_opaque, |
Maxim Levitsky | a3579bf | 2020-06-25 14:55:38 +0200 | [diff] [blame] | 7850 | bool force, |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7851 | Error **errp) |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7852 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7853 | GLOBAL_STATE_CODE(); |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 7854 | if (!bs->drv) { |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7855 | error_setg(errp, "Node is ejected"); |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 7856 | return -ENOMEDIUM; |
| 7857 | } |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7858 | if (!bs->drv->bdrv_amend_options) { |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7859 | error_setg(errp, "Block driver '%s' does not support option amendment", |
| 7860 | bs->drv->format_name); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7861 | return -ENOTSUP; |
| 7862 | } |
Maxim Levitsky | a3579bf | 2020-06-25 14:55:38 +0200 | [diff] [blame] | 7863 | return bs->drv->bdrv_amend_options(bs, opts, status_cb, |
| 7864 | cb_opaque, force, errp); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7865 | } |
Benoît Canet | f6186f4 | 2013-10-02 14:33:48 +0200 | [diff] [blame] | 7866 | |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7867 | /* |
| 7868 | * This function checks whether the given @to_replace is allowed to be |
| 7869 | * replaced by a node that always shows the same data as @bs. This is |
| 7870 | * used for example to verify whether the mirror job can replace |
| 7871 | * @to_replace by the target mirrored from @bs. |
| 7872 | * To be replaceable, @bs and @to_replace may either be guaranteed to |
| 7873 | * always show the same data (because they are only connected through |
| 7874 | * filters), or some driver may allow replacing one of its children |
| 7875 | * because it can guarantee that this child's data is not visible at |
| 7876 | * all (for example, for dissenting quorum children that have no other |
| 7877 | * parents). |
| 7878 | */ |
| 7879 | bool bdrv_recurse_can_replace(BlockDriverState *bs, |
| 7880 | BlockDriverState *to_replace) |
| 7881 | { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 7882 | BlockDriverState *filtered; |
| 7883 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 7884 | GLOBAL_STATE_CODE(); |
| 7885 | |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7886 | if (!bs || !bs->drv) { |
| 7887 | return false; |
| 7888 | } |
| 7889 | |
| 7890 | if (bs == to_replace) { |
| 7891 | return true; |
| 7892 | } |
| 7893 | |
| 7894 | /* See what the driver can do */ |
| 7895 | if (bs->drv->bdrv_recurse_can_replace) { |
| 7896 | return bs->drv->bdrv_recurse_can_replace(bs, to_replace); |
| 7897 | } |
| 7898 | |
| 7899 | /* For filters without an own implementation, we can recurse on our own */ |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 7900 | filtered = bdrv_filter_bs(bs); |
| 7901 | if (filtered) { |
| 7902 | return bdrv_recurse_can_replace(filtered, to_replace); |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7903 | } |
| 7904 | |
| 7905 | /* Safe default */ |
| 7906 | return false; |
| 7907 | } |
| 7908 | |
Max Reitz | 810803a | 2020-02-18 11:34:44 +0100 | [diff] [blame] | 7909 | /* |
| 7910 | * Check whether the given @node_name can be replaced by a node that |
| 7911 | * has the same data as @parent_bs. If so, return @node_name's BDS; |
| 7912 | * NULL otherwise. |
| 7913 | * |
| 7914 | * @node_name must be a (recursive) *child of @parent_bs (or this |
| 7915 | * function will return NULL). |
| 7916 | * |
| 7917 | * The result (whether the node can be replaced or not) is only valid |
| 7918 | * for as long as no graph or permission changes occur. |
| 7919 | */ |
Wen Congyang | e12f378 | 2015-07-17 10:12:22 +0800 | [diff] [blame] | 7920 | BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, |
| 7921 | const char *node_name, Error **errp) |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7922 | { |
| 7923 | BlockDriverState *to_replace_bs = bdrv_find_node(node_name); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7924 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7925 | GLOBAL_STATE_CODE(); |
| 7926 | |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7927 | if (!to_replace_bs) { |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 7928 | 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] | 7929 | return NULL; |
| 7930 | } |
| 7931 | |
| 7932 | if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 7933 | return NULL; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7934 | } |
| 7935 | |
| 7936 | /* We don't want arbitrary node of the BDS chain to be replaced only the top |
| 7937 | * most non filter in order to prevent data corruption. |
| 7938 | * Another benefit is that this tests exclude backing files which are |
| 7939 | * blocked by the backing blockers. |
| 7940 | */ |
Max Reitz | 810803a | 2020-02-18 11:34:44 +0100 | [diff] [blame] | 7941 | if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) { |
| 7942 | error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', " |
| 7943 | "because it cannot be guaranteed that doing so would not " |
| 7944 | "lead to an abrupt change of visible data", |
| 7945 | node_name, parent_bs->node_name); |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 7946 | return NULL; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7947 | } |
| 7948 | |
| 7949 | return to_replace_bs; |
| 7950 | } |
Ming Lei | 448ad91 | 2014-07-04 18:04:33 +0800 | [diff] [blame] | 7951 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7952 | /** |
| 7953 | * Iterates through the list of runtime option keys that are said to |
| 7954 | * be "strong" for a BDS. An option is called "strong" if it changes |
| 7955 | * a BDS's data. For example, the null block driver's "size" and |
| 7956 | * "read-zeroes" options are strong, but its "latency-ns" option is |
| 7957 | * not. |
| 7958 | * |
| 7959 | * If a key returned by this function ends with a dot, all options |
| 7960 | * starting with that prefix are strong. |
| 7961 | */ |
| 7962 | static const char *const *strong_options(BlockDriverState *bs, |
| 7963 | const char *const *curopt) |
| 7964 | { |
| 7965 | static const char *const global_options[] = { |
| 7966 | "driver", "filename", NULL |
| 7967 | }; |
| 7968 | |
| 7969 | if (!curopt) { |
| 7970 | return &global_options[0]; |
| 7971 | } |
| 7972 | |
| 7973 | curopt++; |
| 7974 | if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) { |
| 7975 | curopt = bs->drv->strong_runtime_opts; |
| 7976 | } |
| 7977 | |
| 7978 | return (curopt && *curopt) ? curopt : NULL; |
| 7979 | } |
| 7980 | |
| 7981 | /** |
| 7982 | * Copies all strong runtime options from bs->options to the given |
| 7983 | * QDict. The set of strong option keys is determined by invoking |
| 7984 | * strong_options(). |
| 7985 | * |
| 7986 | * Returns true iff any strong option was present in bs->options (and |
| 7987 | * thus copied to the target QDict) with the exception of "filename" |
| 7988 | * and "driver". The caller is expected to use this value to decide |
| 7989 | * whether the existence of strong options prevents the generation of |
| 7990 | * a plain filename. |
| 7991 | */ |
| 7992 | static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs) |
| 7993 | { |
| 7994 | bool found_any = false; |
| 7995 | const char *const *option_name = NULL; |
| 7996 | |
| 7997 | if (!bs->drv) { |
| 7998 | return false; |
| 7999 | } |
| 8000 | |
| 8001 | while ((option_name = strong_options(bs, option_name))) { |
| 8002 | bool option_given = false; |
| 8003 | |
| 8004 | assert(strlen(*option_name) > 0); |
| 8005 | if ((*option_name)[strlen(*option_name) - 1] != '.') { |
| 8006 | QObject *entry = qdict_get(bs->options, *option_name); |
| 8007 | if (!entry) { |
| 8008 | continue; |
| 8009 | } |
| 8010 | |
| 8011 | qdict_put_obj(d, *option_name, qobject_ref(entry)); |
| 8012 | option_given = true; |
| 8013 | } else { |
| 8014 | const QDictEntry *entry; |
| 8015 | for (entry = qdict_first(bs->options); entry; |
| 8016 | entry = qdict_next(bs->options, entry)) |
| 8017 | { |
| 8018 | if (strstart(qdict_entry_key(entry), *option_name, NULL)) { |
| 8019 | qdict_put_obj(d, qdict_entry_key(entry), |
| 8020 | qobject_ref(qdict_entry_value(entry))); |
| 8021 | option_given = true; |
| 8022 | } |
| 8023 | } |
| 8024 | } |
| 8025 | |
| 8026 | /* While "driver" and "filename" need to be included in a JSON filename, |
| 8027 | * their existence does not prohibit generation of a plain filename. */ |
| 8028 | if (!found_any && option_given && |
| 8029 | strcmp(*option_name, "driver") && strcmp(*option_name, "filename")) |
| 8030 | { |
| 8031 | found_any = true; |
| 8032 | } |
| 8033 | } |
| 8034 | |
Max Reitz | 62a01a27 | 2019-02-01 20:29:34 +0100 | [diff] [blame] | 8035 | if (!qdict_haskey(d, "driver")) { |
| 8036 | /* Drivers created with bdrv_new_open_driver() may not have a |
| 8037 | * @driver option. Add it here. */ |
| 8038 | qdict_put_str(d, "driver", bs->drv->format_name); |
| 8039 | } |
| 8040 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 8041 | return found_any; |
| 8042 | } |
| 8043 | |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 8044 | /* Note: This function may return false positives; it may return true |
| 8045 | * even if opening the backing file specified by bs's image header |
| 8046 | * would result in exactly bs->backing. */ |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 8047 | static bool GRAPH_RDLOCK bdrv_backing_overridden(BlockDriverState *bs) |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 8048 | { |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 8049 | GLOBAL_STATE_CODE(); |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 8050 | if (bs->backing) { |
| 8051 | return strcmp(bs->auto_backing_file, |
| 8052 | bs->backing->bs->filename); |
| 8053 | } else { |
| 8054 | /* No backing BDS, so if the image header reports any backing |
| 8055 | * file, it must have been suppressed */ |
| 8056 | return bs->auto_backing_file[0] != '\0'; |
| 8057 | } |
| 8058 | } |
| 8059 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 8060 | /* Updates the following BDS fields: |
| 8061 | * - exact_filename: A filename which may be used for opening a block device |
| 8062 | * which (mostly) equals the given BDS (even without any |
| 8063 | * other options; so reading and writing must return the same |
| 8064 | * results, but caching etc. may be different) |
| 8065 | * - full_open_options: Options which, when given when opening a block device |
| 8066 | * (without a filename), result in a BDS (mostly) |
| 8067 | * equalling the given one |
| 8068 | * - filename: If exact_filename is set, it is copied here. Otherwise, |
| 8069 | * full_open_options is converted to a JSON object, prefixed with |
| 8070 | * "json:" (for use through the JSON pseudo protocol) and put here. |
| 8071 | */ |
| 8072 | void bdrv_refresh_filename(BlockDriverState *bs) |
| 8073 | { |
| 8074 | BlockDriver *drv = bs->drv; |
Max Reitz | e24518e | 2019-02-01 20:29:06 +0100 | [diff] [blame] | 8075 | BdrvChild *child; |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8076 | BlockDriverState *primary_child_bs; |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 8077 | QDict *opts; |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 8078 | bool backing_overridden; |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 8079 | bool generate_json_filename; /* Whether our default implementation should |
| 8080 | fill exact_filename (false) or not (true) */ |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 8081 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8082 | GLOBAL_STATE_CODE(); |
| 8083 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 8084 | if (!drv) { |
| 8085 | return; |
| 8086 | } |
| 8087 | |
Max Reitz | e24518e | 2019-02-01 20:29:06 +0100 | [diff] [blame] | 8088 | /* This BDS's file name may depend on any of its children's file names, so |
| 8089 | * refresh those first */ |
| 8090 | QLIST_FOREACH(child, &bs->children, next) { |
| 8091 | bdrv_refresh_filename(child->bs); |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 8092 | } |
| 8093 | |
Max Reitz | bb808d5 | 2019-02-01 20:29:07 +0100 | [diff] [blame] | 8094 | if (bs->implicit) { |
| 8095 | /* For implicit nodes, just copy everything from the single child */ |
| 8096 | child = QLIST_FIRST(&bs->children); |
| 8097 | assert(QLIST_NEXT(child, next) == NULL); |
| 8098 | |
| 8099 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), |
| 8100 | child->bs->exact_filename); |
| 8101 | pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename); |
| 8102 | |
Pan Nengyuan | cb89561 | 2020-01-16 16:56:00 +0800 | [diff] [blame] | 8103 | qobject_unref(bs->full_open_options); |
Max Reitz | bb808d5 | 2019-02-01 20:29:07 +0100 | [diff] [blame] | 8104 | bs->full_open_options = qobject_ref(child->bs->full_open_options); |
| 8105 | |
| 8106 | return; |
| 8107 | } |
| 8108 | |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 8109 | backing_overridden = bdrv_backing_overridden(bs); |
| 8110 | |
| 8111 | if (bs->open_flags & BDRV_O_NO_IO) { |
| 8112 | /* Without I/O, the backing file does not change anything. |
| 8113 | * Therefore, in such a case (primarily qemu-img), we can |
| 8114 | * pretend the backing file has not been overridden even if |
| 8115 | * it technically has been. */ |
| 8116 | backing_overridden = false; |
| 8117 | } |
| 8118 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 8119 | /* Gather the options QDict */ |
| 8120 | opts = qdict_new(); |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 8121 | generate_json_filename = append_strong_runtime_options(opts, bs); |
| 8122 | generate_json_filename |= backing_overridden; |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 8123 | |
| 8124 | if (drv->bdrv_gather_child_options) { |
| 8125 | /* Some block drivers may not want to present all of their children's |
| 8126 | * options, or name them differently from BdrvChild.name */ |
| 8127 | drv->bdrv_gather_child_options(bs, opts, backing_overridden); |
| 8128 | } else { |
| 8129 | QLIST_FOREACH(child, &bs->children, next) { |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 8130 | if (child == bs->backing && !backing_overridden) { |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 8131 | /* We can skip the backing BDS if it has not been overridden */ |
| 8132 | continue; |
| 8133 | } |
| 8134 | |
| 8135 | qdict_put(opts, child->name, |
| 8136 | qobject_ref(child->bs->full_open_options)); |
| 8137 | } |
| 8138 | |
| 8139 | if (backing_overridden && !bs->backing) { |
| 8140 | /* Force no backing file */ |
| 8141 | qdict_put_null(opts, "backing"); |
| 8142 | } |
| 8143 | } |
| 8144 | |
| 8145 | qobject_unref(bs->full_open_options); |
| 8146 | bs->full_open_options = opts; |
| 8147 | |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8148 | primary_child_bs = bdrv_primary_bs(bs); |
| 8149 | |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 8150 | if (drv->bdrv_refresh_filename) { |
| 8151 | /* Obsolete information is of no use here, so drop the old file name |
| 8152 | * information before refreshing it */ |
| 8153 | bs->exact_filename[0] = '\0'; |
| 8154 | |
| 8155 | drv->bdrv_refresh_filename(bs); |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8156 | } else if (primary_child_bs) { |
| 8157 | /* |
| 8158 | * Try to reconstruct valid information from the underlying |
| 8159 | * file -- this only works for format nodes (filter nodes |
| 8160 | * cannot be probed and as such must be selected by the user |
| 8161 | * either through an options dict, or through a special |
| 8162 | * filename which the filter driver must construct in its |
| 8163 | * .bdrv_refresh_filename() implementation). |
| 8164 | */ |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 8165 | |
| 8166 | bs->exact_filename[0] = '\0'; |
| 8167 | |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 8168 | /* |
| 8169 | * We can use the underlying file's filename if: |
| 8170 | * - it has a filename, |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8171 | * - the current BDS is not a filter, |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 8172 | * - the file is a protocol BDS, and |
| 8173 | * - opening that file (as this BDS's format) will automatically create |
| 8174 | * the BDS tree we have right now, that is: |
| 8175 | * - the user did not significantly change this BDS's behavior with |
| 8176 | * some explicit (strong) options |
| 8177 | * - no non-file child of this BDS has been overridden by the user |
| 8178 | * Both of these conditions are represented by generate_json_filename. |
| 8179 | */ |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8180 | if (primary_child_bs->exact_filename[0] && |
Paolo Bonzini | 41770f6 | 2022-11-24 16:21:18 +0100 | [diff] [blame] | 8181 | primary_child_bs->drv->protocol_name && |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8182 | !drv->is_filter && !generate_json_filename) |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 8183 | { |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8184 | strcpy(bs->exact_filename, primary_child_bs->exact_filename); |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 8185 | } |
| 8186 | } |
| 8187 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 8188 | if (bs->exact_filename[0]) { |
| 8189 | pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 8190 | } else { |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 8191 | GString *json = qobject_to_json(QOBJECT(bs->full_open_options)); |
Eric Blake | 5c86bdf | 2020-06-08 13:26:38 -0500 | [diff] [blame] | 8192 | if (snprintf(bs->filename, sizeof(bs->filename), "json:%s", |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 8193 | json->str) >= sizeof(bs->filename)) { |
Eric Blake | 5c86bdf | 2020-06-08 13:26:38 -0500 | [diff] [blame] | 8194 | /* Give user a hint if we truncated things. */ |
| 8195 | strcpy(bs->filename + sizeof(bs->filename) - 4, "..."); |
| 8196 | } |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 8197 | g_string_free(json, true); |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 8198 | } |
| 8199 | } |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8200 | |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 8201 | char *bdrv_dirname(BlockDriverState *bs, Error **errp) |
| 8202 | { |
| 8203 | BlockDriver *drv = bs->drv; |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8204 | BlockDriverState *child_bs; |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 8205 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8206 | GLOBAL_STATE_CODE(); |
| 8207 | |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 8208 | if (!drv) { |
| 8209 | error_setg(errp, "Node '%s' is ejected", bs->node_name); |
| 8210 | return NULL; |
| 8211 | } |
| 8212 | |
| 8213 | if (drv->bdrv_dirname) { |
| 8214 | return drv->bdrv_dirname(bs, errp); |
| 8215 | } |
| 8216 | |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8217 | child_bs = bdrv_primary_bs(bs); |
| 8218 | if (child_bs) { |
| 8219 | return bdrv_dirname(child_bs, errp); |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 8220 | } |
| 8221 | |
| 8222 | bdrv_refresh_filename(bs); |
| 8223 | if (bs->exact_filename[0] != '\0') { |
| 8224 | return path_combine(bs->exact_filename, ""); |
| 8225 | } |
| 8226 | |
| 8227 | error_setg(errp, "Cannot generate a base directory for %s nodes", |
| 8228 | drv->format_name); |
| 8229 | return NULL; |
| 8230 | } |
| 8231 | |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8232 | /* |
Fiona Ebner | 0414930 | 2025-05-30 17:10:51 +0200 | [diff] [blame] | 8233 | * Hot add a BDS's child. Used in combination with bdrv_del_child, so the user |
| 8234 | * can take a child offline when it is broken and take a new child online. |
| 8235 | * |
| 8236 | * All block nodes must be drained. |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8237 | */ |
| 8238 | void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, |
| 8239 | Error **errp) |
| 8240 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8241 | GLOBAL_STATE_CODE(); |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8242 | if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { |
| 8243 | error_setg(errp, "The node %s does not support adding a child", |
| 8244 | bdrv_get_device_or_node_name(parent_bs)); |
| 8245 | return; |
| 8246 | } |
| 8247 | |
Sam Li | 774c726 | 2023-05-08 12:55:30 +0800 | [diff] [blame] | 8248 | /* |
| 8249 | * Non-zoned block drivers do not follow zoned storage constraints |
| 8250 | * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned |
| 8251 | * drivers in a graph. |
| 8252 | */ |
| 8253 | if (!parent_bs->drv->supports_zoned_children && |
| 8254 | child_bs->bl.zoned == BLK_Z_HM) { |
| 8255 | /* |
| 8256 | * The host-aware model allows zoned storage constraints and random |
| 8257 | * write. Allow mixing host-aware and non-zoned drivers. Using |
| 8258 | * host-aware device as a regular device. |
| 8259 | */ |
| 8260 | error_setg(errp, "Cannot add a %s child to a %s parent", |
| 8261 | child_bs->bl.zoned == BLK_Z_HM ? "zoned" : "non-zoned", |
| 8262 | parent_bs->drv->supports_zoned_children ? |
| 8263 | "support zoned children" : "not support zoned children"); |
| 8264 | return; |
| 8265 | } |
| 8266 | |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8267 | if (!QLIST_EMPTY(&child_bs->parents)) { |
| 8268 | error_setg(errp, "The node %s already has a parent", |
| 8269 | child_bs->node_name); |
| 8270 | return; |
| 8271 | } |
| 8272 | |
| 8273 | parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); |
| 8274 | } |
| 8275 | |
Fiona Ebner | 0414930 | 2025-05-30 17:10:51 +0200 | [diff] [blame] | 8276 | /* |
| 8277 | * Hot remove a BDS's child. Used in combination with bdrv_add_child, so the |
| 8278 | * user can take a child offline when it is broken and take a new child online. |
Fiona Ebner | d75f8ed | 2025-05-30 17:10:53 +0200 | [diff] [blame] | 8279 | * |
| 8280 | * All block nodes must be drained. |
Fiona Ebner | 0414930 | 2025-05-30 17:10:51 +0200 | [diff] [blame] | 8281 | */ |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8282 | void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) |
| 8283 | { |
| 8284 | BdrvChild *tmp; |
| 8285 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8286 | GLOBAL_STATE_CODE(); |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8287 | if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { |
| 8288 | error_setg(errp, "The node %s does not support removing a child", |
| 8289 | bdrv_get_device_or_node_name(parent_bs)); |
| 8290 | return; |
| 8291 | } |
| 8292 | |
| 8293 | QLIST_FOREACH(tmp, &parent_bs->children, next) { |
| 8294 | if (tmp == child) { |
| 8295 | break; |
| 8296 | } |
| 8297 | } |
| 8298 | |
| 8299 | if (!tmp) { |
| 8300 | error_setg(errp, "The node %s does not have a child named %s", |
| 8301 | bdrv_get_device_or_node_name(parent_bs), |
| 8302 | bdrv_get_device_or_node_name(child->bs)); |
| 8303 | return; |
| 8304 | } |
| 8305 | |
| 8306 | parent_bs->drv->bdrv_del_child(parent_bs, child, errp); |
| 8307 | } |
Max Reitz | 6f7a3b5 | 2020-04-29 16:11:23 +0200 | [diff] [blame] | 8308 | |
| 8309 | int bdrv_make_empty(BdrvChild *c, Error **errp) |
| 8310 | { |
| 8311 | BlockDriver *drv = c->bs->drv; |
| 8312 | int ret; |
| 8313 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8314 | GLOBAL_STATE_CODE(); |
Max Reitz | 6f7a3b5 | 2020-04-29 16:11:23 +0200 | [diff] [blame] | 8315 | assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)); |
| 8316 | |
| 8317 | if (!drv->bdrv_make_empty) { |
| 8318 | error_setg(errp, "%s does not support emptying nodes", |
| 8319 | drv->format_name); |
| 8320 | return -ENOTSUP; |
| 8321 | } |
| 8322 | |
| 8323 | ret = drv->bdrv_make_empty(c->bs); |
| 8324 | if (ret < 0) { |
| 8325 | error_setg_errno(errp, -ret, "Failed to empty %s", |
| 8326 | c->bs->filename); |
| 8327 | return ret; |
| 8328 | } |
| 8329 | |
| 8330 | return 0; |
| 8331 | } |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8332 | |
| 8333 | /* |
| 8334 | * Return the child that @bs acts as an overlay for, and from which data may be |
| 8335 | * copied in COW or COR operations. Usually this is the backing file. |
| 8336 | */ |
| 8337 | BdrvChild *bdrv_cow_child(BlockDriverState *bs) |
| 8338 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8339 | IO_CODE(); |
| 8340 | |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8341 | if (!bs || !bs->drv) { |
| 8342 | return NULL; |
| 8343 | } |
| 8344 | |
| 8345 | if (bs->drv->is_filter) { |
| 8346 | return NULL; |
| 8347 | } |
| 8348 | |
| 8349 | if (!bs->backing) { |
| 8350 | return NULL; |
| 8351 | } |
| 8352 | |
| 8353 | assert(bs->backing->role & BDRV_CHILD_COW); |
| 8354 | return bs->backing; |
| 8355 | } |
| 8356 | |
| 8357 | /* |
| 8358 | * If @bs acts as a filter for exactly one of its children, return |
| 8359 | * that child. |
| 8360 | */ |
| 8361 | BdrvChild *bdrv_filter_child(BlockDriverState *bs) |
| 8362 | { |
| 8363 | BdrvChild *c; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8364 | IO_CODE(); |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8365 | |
| 8366 | if (!bs || !bs->drv) { |
| 8367 | return NULL; |
| 8368 | } |
| 8369 | |
| 8370 | if (!bs->drv->is_filter) { |
| 8371 | return NULL; |
| 8372 | } |
| 8373 | |
| 8374 | /* Only one of @backing or @file may be used */ |
| 8375 | assert(!(bs->backing && bs->file)); |
| 8376 | |
| 8377 | c = bs->backing ?: bs->file; |
| 8378 | if (!c) { |
| 8379 | return NULL; |
| 8380 | } |
| 8381 | |
| 8382 | assert(c->role & BDRV_CHILD_FILTERED); |
| 8383 | return c; |
| 8384 | } |
| 8385 | |
| 8386 | /* |
| 8387 | * Return either the result of bdrv_cow_child() or bdrv_filter_child(), |
| 8388 | * whichever is non-NULL. |
| 8389 | * |
| 8390 | * Return NULL if both are NULL. |
| 8391 | */ |
| 8392 | BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs) |
| 8393 | { |
| 8394 | BdrvChild *cow_child = bdrv_cow_child(bs); |
| 8395 | BdrvChild *filter_child = bdrv_filter_child(bs); |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8396 | IO_CODE(); |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8397 | |
| 8398 | /* Filter nodes cannot have COW backing files */ |
| 8399 | assert(!(cow_child && filter_child)); |
| 8400 | |
| 8401 | return cow_child ?: filter_child; |
| 8402 | } |
| 8403 | |
| 8404 | /* |
| 8405 | * Return the primary child of this node: For filters, that is the |
| 8406 | * filtered child. For other nodes, that is usually the child storing |
| 8407 | * metadata. |
| 8408 | * (A generally more helpful description is that this is (usually) the |
| 8409 | * child that has the same filename as @bs.) |
| 8410 | * |
| 8411 | * Drivers do not necessarily have a primary child; for example quorum |
| 8412 | * does not. |
| 8413 | */ |
| 8414 | BdrvChild *bdrv_primary_child(BlockDriverState *bs) |
| 8415 | { |
| 8416 | BdrvChild *c, *found = NULL; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8417 | IO_CODE(); |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8418 | |
| 8419 | QLIST_FOREACH(c, &bs->children, next) { |
| 8420 | if (c->role & BDRV_CHILD_PRIMARY) { |
| 8421 | assert(!found); |
| 8422 | found = c; |
| 8423 | } |
| 8424 | } |
| 8425 | |
| 8426 | return found; |
| 8427 | } |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8428 | |
Kevin Wolf | ec82cc4 | 2023-10-27 17:53:20 +0200 | [diff] [blame] | 8429 | static BlockDriverState * GRAPH_RDLOCK |
| 8430 | bdrv_do_skip_filters(BlockDriverState *bs, bool stop_on_explicit_filter) |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8431 | { |
| 8432 | BdrvChild *c; |
| 8433 | |
| 8434 | if (!bs) { |
| 8435 | return NULL; |
| 8436 | } |
| 8437 | |
| 8438 | while (!(stop_on_explicit_filter && !bs->implicit)) { |
| 8439 | c = bdrv_filter_child(bs); |
| 8440 | if (!c) { |
| 8441 | /* |
| 8442 | * A filter that is embedded in a working block graph must |
| 8443 | * have a child. Assert this here so this function does |
| 8444 | * not return a filter node that is not expected by the |
| 8445 | * caller. |
| 8446 | */ |
| 8447 | assert(!bs->drv || !bs->drv->is_filter); |
| 8448 | break; |
| 8449 | } |
| 8450 | bs = c->bs; |
| 8451 | } |
| 8452 | /* |
| 8453 | * Note that this treats nodes with bs->drv == NULL as not being |
| 8454 | * filters (bs->drv == NULL should be replaced by something else |
| 8455 | * anyway). |
| 8456 | * The advantage of this behavior is that this function will thus |
| 8457 | * always return a non-NULL value (given a non-NULL @bs). |
| 8458 | */ |
| 8459 | |
| 8460 | return bs; |
| 8461 | } |
| 8462 | |
| 8463 | /* |
| 8464 | * Return the first BDS that has not been added implicitly or that |
| 8465 | * does not have a filtered child down the chain starting from @bs |
| 8466 | * (including @bs itself). |
| 8467 | */ |
| 8468 | BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs) |
| 8469 | { |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 8470 | GLOBAL_STATE_CODE(); |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8471 | return bdrv_do_skip_filters(bs, true); |
| 8472 | } |
| 8473 | |
| 8474 | /* |
| 8475 | * Return the first BDS that does not have a filtered child down the |
| 8476 | * chain starting from @bs (including @bs itself). |
| 8477 | */ |
| 8478 | BlockDriverState *bdrv_skip_filters(BlockDriverState *bs) |
| 8479 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8480 | IO_CODE(); |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8481 | return bdrv_do_skip_filters(bs, false); |
| 8482 | } |
| 8483 | |
| 8484 | /* |
| 8485 | * For a backing chain, return the first non-filter backing image of |
| 8486 | * the first non-filter image. |
| 8487 | */ |
| 8488 | BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs) |
| 8489 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8490 | IO_CODE(); |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8491 | return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs))); |
| 8492 | } |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8493 | |
| 8494 | /** |
| 8495 | * Check whether [offset, offset + bytes) overlaps with the cached |
| 8496 | * block-status data region. |
| 8497 | * |
| 8498 | * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`, |
| 8499 | * which is what bdrv_bsc_is_data()'s interface needs. |
| 8500 | * Otherwise, *pnum is not touched. |
| 8501 | */ |
| 8502 | static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs, |
| 8503 | int64_t offset, int64_t bytes, |
| 8504 | int64_t *pnum) |
| 8505 | { |
| 8506 | BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache); |
| 8507 | bool overlaps; |
| 8508 | |
| 8509 | overlaps = |
| 8510 | qatomic_read(&bsc->valid) && |
| 8511 | ranges_overlap(offset, bytes, bsc->data_start, |
| 8512 | bsc->data_end - bsc->data_start); |
| 8513 | |
| 8514 | if (overlaps && pnum) { |
| 8515 | *pnum = bsc->data_end - offset; |
| 8516 | } |
| 8517 | |
| 8518 | return overlaps; |
| 8519 | } |
| 8520 | |
| 8521 | /** |
| 8522 | * See block_int.h for this function's documentation. |
| 8523 | */ |
| 8524 | bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum) |
| 8525 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8526 | IO_CODE(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8527 | RCU_READ_LOCK_GUARD(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8528 | return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum); |
| 8529 | } |
| 8530 | |
| 8531 | /** |
| 8532 | * See block_int.h for this function's documentation. |
| 8533 | */ |
| 8534 | void bdrv_bsc_invalidate_range(BlockDriverState *bs, |
| 8535 | int64_t offset, int64_t bytes) |
| 8536 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8537 | IO_CODE(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8538 | RCU_READ_LOCK_GUARD(); |
| 8539 | |
| 8540 | if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) { |
| 8541 | qatomic_set(&bs->block_status_cache->valid, false); |
| 8542 | } |
| 8543 | } |
| 8544 | |
| 8545 | /** |
| 8546 | * See block_int.h for this function's documentation. |
| 8547 | */ |
| 8548 | void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes) |
| 8549 | { |
| 8550 | BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1); |
| 8551 | BdrvBlockStatusCache *old_bsc; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8552 | IO_CODE(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8553 | |
| 8554 | *new_bsc = (BdrvBlockStatusCache) { |
| 8555 | .valid = true, |
| 8556 | .data_start = offset, |
| 8557 | .data_end = offset + bytes, |
| 8558 | }; |
| 8559 | |
| 8560 | QEMU_LOCK_GUARD(&bs->bsc_modify_lock); |
| 8561 | |
| 8562 | old_bsc = qatomic_rcu_read(&bs->block_status_cache); |
| 8563 | qatomic_rcu_set(&bs->block_status_cache, new_bsc); |
| 8564 | if (old_bsc) { |
| 8565 | g_free_rcu(old_bsc, rcu); |
| 8566 | } |
| 8567 | } |