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" |
Markus Armbruster | 452fcdb | 2018-02-01 12:18:39 +0100 | [diff] [blame] | 39 | #include "qapi/qmp/qdict.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 40 | #include "qapi/qmp/qjson.h" |
Max Reitz | e59a0cf | 2018-02-24 16:40:32 +0100 | [diff] [blame] | 41 | #include "qapi/qmp/qnull.h" |
Markus Armbruster | fc81fa1 | 2018-02-01 12:18:40 +0100 | [diff] [blame] | 42 | #include "qapi/qmp/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" |
Markus Armbruster | bfb197e | 2014-10-07 13:59:11 +0200 | [diff] [blame] | 45 | #include "sysemu/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, |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 89 | Error **errp); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 90 | |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 91 | static bool bdrv_recurse_has_child(BlockDriverState *bs, |
| 92 | BlockDriverState *child); |
| 93 | |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 94 | static void GRAPH_WRLOCK |
| 95 | bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs); |
| 96 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 97 | static void GRAPH_WRLOCK |
| 98 | bdrv_remove_child(BdrvChild *child, Transaction *tran); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 99 | |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 100 | static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, |
| 101 | BlockReopenQueue *queue, |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 102 | Transaction *change_child_tran, Error **errp); |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 103 | static void bdrv_reopen_commit(BDRVReopenState *reopen_state); |
| 104 | static void bdrv_reopen_abort(BDRVReopenState *reopen_state); |
| 105 | |
Emanuele Giuseppe Esposito | fa8fc1d | 2021-12-15 07:11:38 -0500 | [diff] [blame] | 106 | static bool bdrv_backing_overridden(BlockDriverState *bs); |
| 107 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 108 | static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx, |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 109 | GHashTable *visited, Transaction *tran, |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 110 | Error **errp); |
| 111 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 112 | /* If non-zero, use only whitelisted block drivers */ |
| 113 | static int use_bdrv_whitelist; |
| 114 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 115 | #ifdef _WIN32 |
| 116 | static int is_windows_drive_prefix(const char *filename) |
| 117 | { |
| 118 | return (((filename[0] >= 'a' && filename[0] <= 'z') || |
| 119 | (filename[0] >= 'A' && filename[0] <= 'Z')) && |
| 120 | filename[1] == ':'); |
| 121 | } |
| 122 | |
| 123 | int is_windows_drive(const char *filename) |
| 124 | { |
| 125 | if (is_windows_drive_prefix(filename) && |
| 126 | filename[2] == '\0') |
| 127 | return 1; |
| 128 | if (strstart(filename, "\\\\.\\", NULL) || |
| 129 | strstart(filename, "//./", NULL)) |
| 130 | return 1; |
| 131 | return 0; |
| 132 | } |
| 133 | #endif |
| 134 | |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 135 | size_t bdrv_opt_mem_align(BlockDriverState *bs) |
| 136 | { |
| 137 | if (!bs || !bs->drv) { |
Denis V. Lunev | 459b4e6 | 2015-05-12 17:30:56 +0300 | [diff] [blame] | 138 | /* 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] | 139 | return MAX(4096, qemu_real_host_page_size()); |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 140 | } |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 141 | IO_CODE(); |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 142 | |
| 143 | return bs->bl.opt_mem_alignment; |
| 144 | } |
| 145 | |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 146 | size_t bdrv_min_mem_align(BlockDriverState *bs) |
| 147 | { |
| 148 | if (!bs || !bs->drv) { |
Denis V. Lunev | 459b4e6 | 2015-05-12 17:30:56 +0300 | [diff] [blame] | 149 | /* 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] | 150 | return MAX(4096, qemu_real_host_page_size()); |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 151 | } |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 152 | IO_CODE(); |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 153 | |
| 154 | return bs->bl.min_mem_alignment; |
| 155 | } |
| 156 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 157 | /* check if the path starts with "<protocol>:" */ |
Max Reitz | 5c98415 | 2014-12-03 14:57:22 +0100 | [diff] [blame] | 158 | int path_has_protocol(const char *path) |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 159 | { |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 160 | const char *p; |
| 161 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 162 | #ifdef _WIN32 |
| 163 | if (is_windows_drive(path) || |
| 164 | is_windows_drive_prefix(path)) { |
| 165 | return 0; |
| 166 | } |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 167 | p = path + strcspn(path, ":/\\"); |
| 168 | #else |
| 169 | p = path + strcspn(path, ":/"); |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 170 | #endif |
| 171 | |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 172 | return *p == ':'; |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 173 | } |
| 174 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 175 | int path_is_absolute(const char *path) |
| 176 | { |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 177 | #ifdef _WIN32 |
| 178 | /* specific case for names like: "\\.\d:" */ |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 179 | if (is_windows_drive(path) || is_windows_drive_prefix(path)) { |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 180 | return 1; |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 181 | } |
| 182 | return (*path == '/' || *path == '\\'); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 183 | #else |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 184 | return (*path == '/'); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 185 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 188 | /* if filename is absolute, just return its duplicate. Otherwise, build a |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 189 | path to it by considering it is relative to base_path. URL are |
| 190 | supported. */ |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 191 | char *path_combine(const char *base_path, const char *filename) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 192 | { |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 193 | const char *protocol_stripped = NULL; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 194 | const char *p, *p1; |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 195 | char *result; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 196 | int len; |
| 197 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 198 | if (path_is_absolute(filename)) { |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 199 | return g_strdup(filename); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 200 | } |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 201 | |
| 202 | if (path_has_protocol(base_path)) { |
| 203 | protocol_stripped = strchr(base_path, ':'); |
| 204 | if (protocol_stripped) { |
| 205 | protocol_stripped++; |
| 206 | } |
| 207 | } |
| 208 | p = protocol_stripped ?: base_path; |
| 209 | |
| 210 | p1 = strrchr(base_path, '/'); |
| 211 | #ifdef _WIN32 |
| 212 | { |
| 213 | const char *p2; |
| 214 | p2 = strrchr(base_path, '\\'); |
| 215 | if (!p1 || p2 > p1) { |
| 216 | p1 = p2; |
| 217 | } |
| 218 | } |
| 219 | #endif |
| 220 | if (p1) { |
| 221 | p1++; |
| 222 | } else { |
| 223 | p1 = base_path; |
| 224 | } |
| 225 | if (p1 > p) { |
| 226 | p = p1; |
| 227 | } |
| 228 | len = p - base_path; |
| 229 | |
| 230 | result = g_malloc(len + strlen(filename) + 1); |
| 231 | memcpy(result, base_path, len); |
| 232 | strcpy(result + len, filename); |
| 233 | |
| 234 | return result; |
| 235 | } |
| 236 | |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 237 | /* |
| 238 | * Helper function for bdrv_parse_filename() implementations to remove optional |
| 239 | * protocol prefixes (especially "file:") from a filename and for putting the |
| 240 | * stripped filename into the options QDict if there is such a prefix. |
| 241 | */ |
| 242 | void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, |
| 243 | QDict *options) |
| 244 | { |
| 245 | if (strstart(filename, prefix, &filename)) { |
| 246 | /* Stripping the explicit protocol prefix may result in a protocol |
| 247 | * prefix being (wrongly) detected (if the filename contains a colon) */ |
| 248 | if (path_has_protocol(filename)) { |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 249 | GString *fat_filename; |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 250 | |
| 251 | /* This means there is some colon before the first slash; therefore, |
| 252 | * this cannot be an absolute path */ |
| 253 | assert(!path_is_absolute(filename)); |
| 254 | |
| 255 | /* And we can thus fix the protocol detection issue by prefixing it |
| 256 | * by "./" */ |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 257 | fat_filename = g_string_new("./"); |
| 258 | g_string_append(fat_filename, filename); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 259 | |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 260 | assert(!path_has_protocol(fat_filename->str)); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 261 | |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 262 | qdict_put(options, "filename", |
| 263 | qstring_from_gstring(fat_filename)); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 264 | } else { |
| 265 | /* If no protocol prefix was detected, we can use the shortened |
| 266 | * filename as-is */ |
| 267 | qdict_put_str(options, "filename", filename); |
| 268 | } |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | |
Kevin Wolf | 9c5e659 | 2017-05-04 18:52:40 +0200 | [diff] [blame] | 273 | /* Returns whether the image file is opened as read-only. Note that this can |
| 274 | * return false and writing to the image file is still not possible because the |
| 275 | * image is inactivated. */ |
Jeff Cody | 93ed524 | 2017-04-07 16:55:28 -0400 | [diff] [blame] | 276 | bool bdrv_is_read_only(BlockDriverState *bs) |
| 277 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 278 | IO_CODE(); |
Vladimir Sementsov-Ogievskiy | 975da07 | 2021-05-27 18:40:55 +0300 | [diff] [blame] | 279 | return !(bs->open_flags & BDRV_O_RDWR); |
Jeff Cody | 93ed524 | 2017-04-07 16:55:28 -0400 | [diff] [blame] | 280 | } |
| 281 | |
Kevin Wolf | 4026f1c | 2023-09-29 16:51:47 +0200 | [diff] [blame] | 282 | static int GRAPH_RDLOCK |
| 283 | bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, |
| 284 | bool ignore_allow_rdw, Error **errp) |
Jeff Cody | fe5241b | 2017-04-07 16:55:25 -0400 | [diff] [blame] | 285 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 286 | IO_CODE(); |
| 287 | |
Jeff Cody | e2b8247 | 2017-04-07 16:55:26 -0400 | [diff] [blame] | 288 | /* Do not set read_only if copy_on_read is enabled */ |
| 289 | if (bs->copy_on_read && read_only) { |
| 290 | error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", |
| 291 | bdrv_get_device_or_node_name(bs)); |
| 292 | return -EINVAL; |
| 293 | } |
| 294 | |
Jeff Cody | d6fcdf0 | 2017-04-07 16:55:27 -0400 | [diff] [blame] | 295 | /* Do not clear read_only if it is prohibited */ |
Kevin Wolf | 54a32bf | 2017-08-03 17:02:58 +0200 | [diff] [blame] | 296 | if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && |
| 297 | !ignore_allow_rdw) |
| 298 | { |
Jeff Cody | d6fcdf0 | 2017-04-07 16:55:27 -0400 | [diff] [blame] | 299 | error_setg(errp, "Node '%s' is read only", |
| 300 | bdrv_get_device_or_node_name(bs)); |
| 301 | return -EPERM; |
| 302 | } |
| 303 | |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 304 | return 0; |
| 305 | } |
| 306 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 307 | /* |
| 308 | * Called by a driver that can only provide a read-only image. |
| 309 | * |
| 310 | * Returns 0 if the node is already read-only or it could switch the node to |
| 311 | * read-only because BDRV_O_AUTO_RDONLY is set. |
| 312 | * |
| 313 | * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set |
| 314 | * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg |
| 315 | * is not NULL, it is used as the error message for the Error object. |
| 316 | */ |
| 317 | int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg, |
| 318 | Error **errp) |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 319 | { |
| 320 | int ret = 0; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 321 | IO_CODE(); |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 322 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 323 | if (!(bs->open_flags & BDRV_O_RDWR)) { |
| 324 | return 0; |
| 325 | } |
| 326 | if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) { |
| 327 | goto fail; |
| 328 | } |
| 329 | |
| 330 | ret = bdrv_can_set_read_only(bs, true, false, NULL); |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 331 | if (ret < 0) { |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 332 | goto fail; |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 333 | } |
| 334 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 335 | bs->open_flags &= ~BDRV_O_RDWR; |
Kevin Wolf | eeae6a5 | 2018-10-09 16:57:12 +0200 | [diff] [blame] | 336 | |
Jeff Cody | e2b8247 | 2017-04-07 16:55:26 -0400 | [diff] [blame] | 337 | return 0; |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 338 | |
| 339 | fail: |
| 340 | error_setg(errp, "%s", errmsg ?: "Image is read-only"); |
| 341 | return -EACCES; |
Jeff Cody | fe5241b | 2017-04-07 16:55:25 -0400 | [diff] [blame] | 342 | } |
| 343 | |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 344 | /* |
| 345 | * If @backing is empty, this function returns NULL without setting |
| 346 | * @errp. In all other cases, NULL will only be returned with @errp |
| 347 | * set. |
| 348 | * |
| 349 | * Therefore, a return value of NULL without @errp set means that |
| 350 | * there is no backing file; if @errp is set, there is one but its |
| 351 | * absolute filename cannot be generated. |
| 352 | */ |
| 353 | char *bdrv_get_full_backing_filename_from_filename(const char *backed, |
| 354 | const char *backing, |
| 355 | Error **errp) |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 356 | { |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 357 | if (backing[0] == '\0') { |
| 358 | return NULL; |
| 359 | } else if (path_has_protocol(backing) || path_is_absolute(backing)) { |
| 360 | return g_strdup(backing); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 361 | } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { |
| 362 | error_setg(errp, "Cannot use relative backing file names for '%s'", |
| 363 | backed); |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 364 | return NULL; |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 365 | } else { |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 366 | return path_combine(backed, backing); |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 367 | } |
| 368 | } |
| 369 | |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 370 | /* |
| 371 | * If @filename is empty or NULL, this function returns NULL without |
| 372 | * setting @errp. In all other cases, NULL will only be returned with |
| 373 | * @errp set. |
| 374 | */ |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 375 | static char * GRAPH_RDLOCK |
| 376 | bdrv_make_absolute_filename(BlockDriverState *relative_to, |
| 377 | const char *filename, Error **errp) |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 378 | { |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 379 | char *dir, *full_name; |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 380 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 381 | if (!filename || filename[0] == '\0') { |
| 382 | return NULL; |
| 383 | } else if (path_has_protocol(filename) || path_is_absolute(filename)) { |
| 384 | return g_strdup(filename); |
| 385 | } |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 386 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 387 | dir = bdrv_dirname(relative_to, errp); |
| 388 | if (!dir) { |
| 389 | return NULL; |
| 390 | } |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 391 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 392 | full_name = g_strconcat(dir, filename, NULL); |
| 393 | g_free(dir); |
| 394 | return full_name; |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 395 | } |
| 396 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 397 | char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp) |
Paolo Bonzini | dc5a137 | 2012-05-08 16:51:50 +0200 | [diff] [blame] | 398 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 399 | GLOBAL_STATE_CODE(); |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 400 | return bdrv_make_absolute_filename(bs, bs->backing_file, errp); |
Paolo Bonzini | dc5a137 | 2012-05-08 16:51:50 +0200 | [diff] [blame] | 401 | } |
| 402 | |
Stefan Hajnoczi | 0eb7217 | 2015-04-28 14:27:51 +0100 | [diff] [blame] | 403 | void bdrv_register(BlockDriver *bdrv) |
| 404 | { |
Philippe Mathieu-Daudé | a15f08d | 2020-03-18 23:22:35 +0100 | [diff] [blame] | 405 | assert(bdrv->format_name); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 406 | GLOBAL_STATE_CODE(); |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 407 | QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 408 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 409 | |
Markus Armbruster | e4e9986 | 2014-10-07 13:59:03 +0200 | [diff] [blame] | 410 | BlockDriverState *bdrv_new(void) |
| 411 | { |
| 412 | BlockDriverState *bs; |
| 413 | int i; |
| 414 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 415 | GLOBAL_STATE_CODE(); |
| 416 | |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 417 | bs = g_new0(BlockDriverState, 1); |
Fam Zheng | e4654d2 | 2013-11-13 18:29:43 +0800 | [diff] [blame] | 418 | QLIST_INIT(&bs->dirty_bitmaps); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 419 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 420 | QLIST_INIT(&bs->op_blockers[i]); |
| 421 | } |
Stefan Hajnoczi | fa9185f | 2023-08-08 11:58:52 -0400 | [diff] [blame] | 422 | qemu_mutex_init(&bs->reqs_lock); |
Paolo Bonzini | 2119882 | 2017-06-05 14:39:03 +0200 | [diff] [blame] | 423 | qemu_mutex_init(&bs->dirty_bitmap_mutex); |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 424 | bs->refcnt = 1; |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 425 | bs->aio_context = qemu_get_aio_context(); |
Paolo Bonzini | d7d512f | 2012-08-23 11:20:36 +0200 | [diff] [blame] | 426 | |
Evgeny Yakovlev | 3ff2f67 | 2016-07-18 22:39:52 +0300 | [diff] [blame] | 427 | qemu_co_queue_init(&bs->flush_queue); |
| 428 | |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 429 | qemu_co_mutex_init(&bs->bsc_modify_lock); |
| 430 | bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1); |
| 431 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 432 | for (i = 0; i < bdrv_drain_all_count; i++) { |
| 433 | bdrv_drained_begin(bs); |
| 434 | } |
| 435 | |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 436 | QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); |
| 437 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 438 | return bs; |
| 439 | } |
| 440 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 441 | static BlockDriver *bdrv_do_find_format(const char *format_name) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 442 | { |
| 443 | BlockDriver *drv1; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 444 | GLOBAL_STATE_CODE(); |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 445 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 446 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 447 | if (!strcmp(drv1->format_name, format_name)) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 448 | return drv1; |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 449 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 450 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 451 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 452 | return NULL; |
| 453 | } |
| 454 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 455 | BlockDriver *bdrv_find_format(const char *format_name) |
| 456 | { |
| 457 | BlockDriver *drv1; |
| 458 | int i; |
| 459 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 460 | GLOBAL_STATE_CODE(); |
| 461 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 462 | drv1 = bdrv_do_find_format(format_name); |
| 463 | if (drv1) { |
| 464 | return drv1; |
| 465 | } |
| 466 | |
| 467 | /* The driver isn't registered, maybe we need to load a module */ |
| 468 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { |
| 469 | if (!strcmp(block_driver_modules[i].format_name, format_name)) { |
Claudio Fontana | c551fb0 | 2022-09-29 11:30:33 +0200 | [diff] [blame] | 470 | Error *local_err = NULL; |
| 471 | int rv = block_module_load(block_driver_modules[i].library_name, |
| 472 | &local_err); |
| 473 | if (rv > 0) { |
| 474 | return bdrv_do_find_format(format_name); |
| 475 | } else if (rv < 0) { |
| 476 | error_report_err(local_err); |
| 477 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 478 | break; |
| 479 | } |
| 480 | } |
Claudio Fontana | c551fb0 | 2022-09-29 11:30:33 +0200 | [diff] [blame] | 481 | return NULL; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 482 | } |
| 483 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 484 | 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] | 485 | { |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 486 | static const char *whitelist_rw[] = { |
| 487 | CONFIG_BDRV_RW_WHITELIST |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 488 | NULL |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 489 | }; |
| 490 | static const char *whitelist_ro[] = { |
| 491 | CONFIG_BDRV_RO_WHITELIST |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 492 | NULL |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 493 | }; |
| 494 | const char **p; |
| 495 | |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 496 | if (!whitelist_rw[0] && !whitelist_ro[0]) { |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 497 | return 1; /* no whitelist, anything goes */ |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 498 | } |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 499 | |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 500 | for (p = whitelist_rw; *p; p++) { |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 501 | if (!strcmp(format_name, *p)) { |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 502 | return 1; |
| 503 | } |
| 504 | } |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 505 | if (read_only) { |
| 506 | for (p = whitelist_ro; *p; p++) { |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 507 | if (!strcmp(format_name, *p)) { |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 508 | return 1; |
| 509 | } |
| 510 | } |
| 511 | } |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 512 | return 0; |
| 513 | } |
| 514 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 515 | int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) |
| 516 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 517 | GLOBAL_STATE_CODE(); |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 518 | return bdrv_format_is_whitelisted(drv->format_name, read_only); |
| 519 | } |
| 520 | |
Daniel P. Berrange | e6ff69b | 2016-03-21 14:11:48 +0000 | [diff] [blame] | 521 | bool bdrv_uses_whitelist(void) |
| 522 | { |
| 523 | return use_bdrv_whitelist; |
| 524 | } |
| 525 | |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 526 | typedef struct CreateCo { |
| 527 | BlockDriver *drv; |
| 528 | char *filename; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 529 | QemuOpts *opts; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 530 | int ret; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 531 | Error *err; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 532 | } CreateCo; |
| 533 | |
Emanuele Giuseppe Esposito | 741443e | 2022-11-28 09:23:36 -0500 | [diff] [blame] | 534 | int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename, |
| 535 | QemuOpts *opts, Error **errp) |
Emanuele Giuseppe Esposito | 84bdf21 | 2022-11-28 09:23:30 -0500 | [diff] [blame] | 536 | { |
Zhao Liu | 46ff64a | 2024-03-12 14:03:37 +0800 | [diff] [blame] | 537 | ERRP_GUARD(); |
Emanuele Giuseppe Esposito | 84bdf21 | 2022-11-28 09:23:30 -0500 | [diff] [blame] | 538 | int ret; |
| 539 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | 84bdf21 | 2022-11-28 09:23:30 -0500 | [diff] [blame] | 540 | |
| 541 | if (!drv->bdrv_co_create_opts) { |
| 542 | error_setg(errp, "Driver '%s' does not support image creation", |
| 543 | drv->format_name); |
| 544 | return -ENOTSUP; |
| 545 | } |
| 546 | |
| 547 | ret = drv->bdrv_co_create_opts(drv, filename, opts, errp); |
| 548 | if (ret < 0 && !*errp) { |
| 549 | error_setg_errno(errp, -ret, "Could not create image"); |
| 550 | } |
| 551 | |
| 552 | return ret; |
| 553 | } |
| 554 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 555 | /** |
| 556 | * Helper function for bdrv_create_file_fallback(): Resize @blk to at |
| 557 | * least the given @minimum_size. |
| 558 | * |
| 559 | * On success, return @blk's actual length. |
| 560 | * Otherwise, return -errno. |
| 561 | */ |
Paolo Bonzini | 84569a7 | 2023-06-01 13:51:38 +0200 | [diff] [blame] | 562 | static int64_t coroutine_fn GRAPH_UNLOCKED |
| 563 | create_file_fallback_truncate(BlockBackend *blk, int64_t minimum_size, |
| 564 | Error **errp) |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 565 | { |
| 566 | Error *local_err = NULL; |
| 567 | int64_t size; |
| 568 | int ret; |
| 569 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 570 | GLOBAL_STATE_CODE(); |
| 571 | |
Paolo Bonzini | 84569a7 | 2023-06-01 13:51:38 +0200 | [diff] [blame] | 572 | ret = blk_co_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0, |
| 573 | &local_err); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 574 | if (ret < 0 && ret != -ENOTSUP) { |
| 575 | error_propagate(errp, local_err); |
| 576 | return ret; |
| 577 | } |
| 578 | |
Paolo Bonzini | 84569a7 | 2023-06-01 13:51:38 +0200 | [diff] [blame] | 579 | size = blk_co_getlength(blk); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 580 | if (size < 0) { |
| 581 | error_free(local_err); |
| 582 | error_setg_errno(errp, -size, |
| 583 | "Failed to inquire the new image file's length"); |
| 584 | return size; |
| 585 | } |
| 586 | |
| 587 | if (size < minimum_size) { |
| 588 | /* Need to grow the image, but we failed to do that */ |
| 589 | error_propagate(errp, local_err); |
| 590 | return -ENOTSUP; |
| 591 | } |
| 592 | |
| 593 | error_free(local_err); |
| 594 | local_err = NULL; |
| 595 | |
| 596 | return size; |
| 597 | } |
| 598 | |
| 599 | /** |
| 600 | * Helper function for bdrv_create_file_fallback(): Zero the first |
| 601 | * sector to remove any potentially pre-existing image header. |
| 602 | */ |
Paolo Bonzini | 881a4c5 | 2022-09-22 10:49:00 +0200 | [diff] [blame] | 603 | static int coroutine_fn |
| 604 | create_file_fallback_zero_first_sector(BlockBackend *blk, |
| 605 | int64_t current_size, |
| 606 | Error **errp) |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 607 | { |
| 608 | int64_t bytes_to_clear; |
| 609 | int ret; |
| 610 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 611 | GLOBAL_STATE_CODE(); |
| 612 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 613 | bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE); |
| 614 | if (bytes_to_clear) { |
Alberto Faria | ce47ff2 | 2022-10-13 14:37:02 +0200 | [diff] [blame] | 615 | 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] | 616 | if (ret < 0) { |
| 617 | error_setg_errno(errp, -ret, |
| 618 | "Failed to clear the new image's first sector"); |
| 619 | return ret; |
| 620 | } |
| 621 | } |
| 622 | |
| 623 | return 0; |
| 624 | } |
| 625 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 626 | /** |
| 627 | * Simple implementation of bdrv_co_create_opts for protocol drivers |
| 628 | * which only support creation via opening a file |
| 629 | * (usually existing raw storage device) |
| 630 | */ |
| 631 | int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv, |
| 632 | const char *filename, |
| 633 | QemuOpts *opts, |
| 634 | Error **errp) |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 635 | { |
Zhao Liu | 7b22e05 | 2024-03-11 11:37:56 +0800 | [diff] [blame] | 636 | ERRP_GUARD(); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 637 | BlockBackend *blk; |
Max Reitz | eeea1fa | 2020-02-25 16:56:18 +0100 | [diff] [blame] | 638 | QDict *options; |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 639 | int64_t size = 0; |
| 640 | char *buf = NULL; |
| 641 | PreallocMode prealloc; |
| 642 | Error *local_err = NULL; |
| 643 | int ret; |
| 644 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 645 | GLOBAL_STATE_CODE(); |
| 646 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 647 | size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); |
| 648 | buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); |
| 649 | prealloc = qapi_enum_parse(&PreallocMode_lookup, buf, |
| 650 | PREALLOC_MODE_OFF, &local_err); |
| 651 | g_free(buf); |
| 652 | if (local_err) { |
| 653 | error_propagate(errp, local_err); |
| 654 | return -EINVAL; |
| 655 | } |
| 656 | |
| 657 | if (prealloc != PREALLOC_MODE_OFF) { |
| 658 | error_setg(errp, "Unsupported preallocation mode '%s'", |
| 659 | PreallocMode_str(prealloc)); |
| 660 | return -ENOTSUP; |
| 661 | } |
| 662 | |
Max Reitz | eeea1fa | 2020-02-25 16:56:18 +0100 | [diff] [blame] | 663 | options = qdict_new(); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 664 | qdict_put_str(options, "driver", drv->format_name); |
| 665 | |
Kevin Wolf | be1a732 | 2023-01-26 18:24:31 +0100 | [diff] [blame] | 666 | blk = blk_co_new_open(filename, NULL, options, |
| 667 | BDRV_O_RDWR | BDRV_O_RESIZE, errp); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 668 | if (!blk) { |
Hanna Czenczek | 8162486 | 2023-07-20 16:00:24 +0200 | [diff] [blame] | 669 | error_prepend(errp, "Protocol driver '%s' does not support creating " |
| 670 | "new images, so an existing image must be selected as " |
| 671 | "the target; however, opening the given target as an " |
| 672 | "existing image failed: ", |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 673 | drv->format_name); |
| 674 | return -EINVAL; |
| 675 | } |
| 676 | |
| 677 | size = create_file_fallback_truncate(blk, size, errp); |
| 678 | if (size < 0) { |
| 679 | ret = size; |
| 680 | goto out; |
| 681 | } |
| 682 | |
| 683 | ret = create_file_fallback_zero_first_sector(blk, size, errp); |
| 684 | if (ret < 0) { |
| 685 | goto out; |
| 686 | } |
| 687 | |
| 688 | ret = 0; |
| 689 | out: |
Kevin Wolf | b2ab5f5 | 2023-05-04 13:57:33 +0200 | [diff] [blame] | 690 | blk_co_unref(blk); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 691 | return ret; |
| 692 | } |
| 693 | |
Emanuele Giuseppe Esposito | 2475a0d | 2022-11-28 09:23:31 -0500 | [diff] [blame] | 694 | int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts, |
| 695 | Error **errp) |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 696 | { |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 697 | QemuOpts *protocol_opts; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 698 | BlockDriver *drv; |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 699 | QDict *qdict; |
| 700 | int ret; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 701 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 702 | GLOBAL_STATE_CODE(); |
| 703 | |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 704 | drv = bdrv_find_protocol(filename, true, errp); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 705 | if (drv == NULL) { |
Stefan Hajnoczi | 16905d7 | 2010-11-30 15:14:14 +0000 | [diff] [blame] | 706 | return -ENOENT; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 707 | } |
| 708 | |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 709 | if (!drv->create_opts) { |
| 710 | error_setg(errp, "Driver '%s' does not support image creation", |
| 711 | drv->format_name); |
| 712 | return -ENOTSUP; |
| 713 | } |
| 714 | |
| 715 | /* |
| 716 | * 'opts' contains a QemuOptsList with a combination of format and protocol |
| 717 | * default values. |
| 718 | * |
| 719 | * The format properly removes its options, but the default values remain |
| 720 | * in 'opts->list'. So if the protocol has options with the same name |
| 721 | * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values |
| 722 | * of the format, since for overlapping options, the format wins. |
| 723 | * |
| 724 | * To avoid this issue, lets convert QemuOpts to QDict, in this way we take |
| 725 | * only the set options, and then convert it back to QemuOpts, using the |
| 726 | * create_opts of the protocol. So the new QemuOpts, will contain only the |
| 727 | * protocol defaults. |
| 728 | */ |
| 729 | qdict = qemu_opts_to_qdict(opts, NULL); |
| 730 | protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp); |
| 731 | if (protocol_opts == NULL) { |
| 732 | ret = -EINVAL; |
| 733 | goto out; |
| 734 | } |
| 735 | |
Emanuele Giuseppe Esposito | 2475a0d | 2022-11-28 09:23:31 -0500 | [diff] [blame] | 736 | ret = bdrv_co_create(drv, filename, protocol_opts, errp); |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 737 | out: |
| 738 | qemu_opts_del(protocol_opts); |
| 739 | qobject_unref(qdict); |
| 740 | return ret; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 741 | } |
| 742 | |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 743 | int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp) |
| 744 | { |
| 745 | Error *local_err = NULL; |
| 746 | int ret; |
| 747 | |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 748 | IO_CODE(); |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 749 | assert(bs != NULL); |
Kevin Wolf | 48aef79 | 2023-02-03 16:22:00 +0100 | [diff] [blame] | 750 | assert_bdrv_graph_readable(); |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 751 | |
| 752 | if (!bs->drv) { |
| 753 | error_setg(errp, "Block node '%s' is not opened", bs->filename); |
| 754 | return -ENOMEDIUM; |
| 755 | } |
| 756 | |
| 757 | if (!bs->drv->bdrv_co_delete_file) { |
| 758 | error_setg(errp, "Driver '%s' does not support image deletion", |
| 759 | bs->drv->format_name); |
| 760 | return -ENOTSUP; |
| 761 | } |
| 762 | |
| 763 | ret = bs->drv->bdrv_co_delete_file(bs, &local_err); |
| 764 | if (ret < 0) { |
| 765 | error_propagate(errp, local_err); |
| 766 | } |
| 767 | |
| 768 | return ret; |
| 769 | } |
| 770 | |
Maxim Levitsky | a890f08 | 2020-12-17 19:09:03 +0200 | [diff] [blame] | 771 | void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs) |
| 772 | { |
| 773 | Error *local_err = NULL; |
| 774 | int ret; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 775 | IO_CODE(); |
Maxim Levitsky | a890f08 | 2020-12-17 19:09:03 +0200 | [diff] [blame] | 776 | |
| 777 | if (!bs) { |
| 778 | return; |
| 779 | } |
| 780 | |
| 781 | ret = bdrv_co_delete_file(bs, &local_err); |
| 782 | /* |
| 783 | * ENOTSUP will happen if the block driver doesn't support |
| 784 | * the 'bdrv_co_delete_file' interface. This is a predictable |
| 785 | * scenario and shouldn't be reported back to the user. |
| 786 | */ |
| 787 | if (ret == -ENOTSUP) { |
| 788 | error_free(local_err); |
| 789 | } else if (ret < 0) { |
| 790 | error_report_err(local_err); |
| 791 | } |
| 792 | } |
| 793 | |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 794 | /** |
| 795 | * Try to get @bs's logical and physical block size. |
| 796 | * On success, store them in @bsz struct and return 0. |
| 797 | * On failure return -errno. |
| 798 | * @bs must not be empty. |
| 799 | */ |
| 800 | int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) |
| 801 | { |
| 802 | BlockDriver *drv = bs->drv; |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 803 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 804 | GLOBAL_STATE_CODE(); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 805 | |
| 806 | if (drv && drv->bdrv_probe_blocksizes) { |
| 807 | return drv->bdrv_probe_blocksizes(bs, bsz); |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 808 | } else if (filtered) { |
| 809 | return bdrv_probe_blocksizes(filtered, bsz); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | return -ENOTSUP; |
| 813 | } |
| 814 | |
| 815 | /** |
| 816 | * Try to get @bs's geometry (cyls, heads, sectors). |
| 817 | * On success, store them in @geo struct and return 0. |
| 818 | * On failure return -errno. |
| 819 | * @bs must not be empty. |
| 820 | */ |
| 821 | int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) |
| 822 | { |
| 823 | BlockDriver *drv = bs->drv; |
Kevin Wolf | f5a3a27 | 2023-10-27 17:53:12 +0200 | [diff] [blame] | 824 | BlockDriverState *filtered; |
| 825 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 826 | GLOBAL_STATE_CODE(); |
Kevin Wolf | f5a3a27 | 2023-10-27 17:53:12 +0200 | [diff] [blame] | 827 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 828 | |
| 829 | if (drv && drv->bdrv_probe_geometry) { |
| 830 | return drv->bdrv_probe_geometry(bs, geo); |
Kevin Wolf | f5a3a27 | 2023-10-27 17:53:12 +0200 | [diff] [blame] | 831 | } |
| 832 | |
| 833 | filtered = bdrv_filter_bs(bs); |
| 834 | if (filtered) { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 835 | return bdrv_probe_geometry(filtered, geo); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | return -ENOTSUP; |
| 839 | } |
| 840 | |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 841 | /* |
| 842 | * Create a uniquely-named empty temporary file. |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 843 | * Return the actual file name used upon success, otherwise NULL. |
| 844 | * This string should be freed with g_free() when not needed any longer. |
| 845 | * |
| 846 | * Note: creating a temporary file for the caller to (re)open is |
| 847 | * inherently racy. Use g_file_open_tmp() instead whenever practical. |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 848 | */ |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 849 | char *create_tmp_file(Error **errp) |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 850 | { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 851 | int fd; |
blueswir1 | 7ccfb2e | 2008-09-14 06:45:34 +0000 | [diff] [blame] | 852 | const char *tmpdir; |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 853 | g_autofree char *filename = NULL; |
| 854 | |
| 855 | tmpdir = g_get_tmp_dir(); |
| 856 | #ifndef _WIN32 |
| 857 | /* |
| 858 | * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot") |
| 859 | * |
| 860 | * This function is used to create temporary disk images (like -snapshot), |
| 861 | * so the files can become very large. /tmp is often a tmpfs where as |
| 862 | * /var/tmp is usually on a disk, so more appropriate for disk images. |
| 863 | */ |
| 864 | if (!g_strcmp0(tmpdir, "/tmp")) { |
Amit Shah | 69bef79 | 2014-02-26 15:12:37 +0530 | [diff] [blame] | 865 | tmpdir = "/var/tmp"; |
| 866 | } |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 867 | #endif |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 868 | |
| 869 | filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir); |
| 870 | fd = g_mkstemp(filename); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 871 | if (fd < 0) { |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 872 | error_setg_errno(errp, errno, "Could not open temporary file '%s'", |
| 873 | filename); |
| 874 | return NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 875 | } |
Bin Meng | 6b6471e | 2022-10-10 12:04:30 +0800 | [diff] [blame] | 876 | close(fd); |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 877 | |
| 878 | return g_steal_pointer(&filename); |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 879 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 880 | |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 881 | /* |
| 882 | * Detect host devices. By convention, /dev/cdrom[N] is always |
| 883 | * recognized as a host CDROM. |
| 884 | */ |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 885 | static BlockDriver *find_hdev_driver(const char *filename) |
| 886 | { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 887 | int score_max = 0, score; |
| 888 | BlockDriver *drv = NULL, *d; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 889 | GLOBAL_STATE_CODE(); |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 890 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 891 | QLIST_FOREACH(d, &bdrv_drivers, list) { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 892 | if (d->bdrv_probe_device) { |
| 893 | score = d->bdrv_probe_device(filename); |
| 894 | if (score > score_max) { |
| 895 | score_max = score; |
| 896 | drv = d; |
| 897 | } |
| 898 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 899 | } |
| 900 | |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 901 | return drv; |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 902 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 903 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 904 | static BlockDriver *bdrv_do_find_protocol(const char *protocol) |
| 905 | { |
| 906 | BlockDriver *drv1; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 907 | GLOBAL_STATE_CODE(); |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 908 | |
| 909 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 910 | if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { |
| 911 | return drv1; |
| 912 | } |
| 913 | } |
| 914 | |
| 915 | return NULL; |
| 916 | } |
| 917 | |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 918 | BlockDriver *bdrv_find_protocol(const char *filename, |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 919 | bool allow_protocol_prefix, |
| 920 | Error **errp) |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 921 | { |
| 922 | BlockDriver *drv1; |
| 923 | char protocol[128]; |
| 924 | int len; |
| 925 | const char *p; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 926 | int i; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 927 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 928 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 929 | |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 930 | /* |
| 931 | * XXX(hch): we really should not let host device detection |
| 932 | * override an explicit protocol specification, but moving this |
| 933 | * later breaks access to device names with colons in them. |
| 934 | * Thanks to the brain-dead persistent naming schemes on udev- |
| 935 | * based Linux systems those actually are quite common. |
| 936 | */ |
| 937 | drv1 = find_hdev_driver(filename); |
| 938 | if (drv1) { |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 939 | return drv1; |
| 940 | } |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 941 | |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 942 | if (!path_has_protocol(filename) || !allow_protocol_prefix) { |
Max Reitz | ef81043 | 2014-12-02 18:32:42 +0100 | [diff] [blame] | 943 | return &bdrv_file; |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 944 | } |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 945 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 946 | p = strchr(filename, ':'); |
| 947 | assert(p != NULL); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 948 | len = p - filename; |
| 949 | if (len > sizeof(protocol) - 1) |
| 950 | len = sizeof(protocol) - 1; |
| 951 | memcpy(protocol, filename, len); |
| 952 | protocol[len] = '\0'; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 953 | |
| 954 | drv1 = bdrv_do_find_protocol(protocol); |
| 955 | if (drv1) { |
| 956 | return drv1; |
| 957 | } |
| 958 | |
| 959 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { |
| 960 | if (block_driver_modules[i].protocol_name && |
| 961 | !strcmp(block_driver_modules[i].protocol_name, protocol)) { |
Claudio Fontana | c551fb0 | 2022-09-29 11:30:33 +0200 | [diff] [blame] | 962 | int rv = block_module_load(block_driver_modules[i].library_name, errp); |
| 963 | if (rv > 0) { |
| 964 | drv1 = bdrv_do_find_protocol(protocol); |
| 965 | } else if (rv < 0) { |
| 966 | return NULL; |
| 967 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 968 | break; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 969 | } |
| 970 | } |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 971 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 972 | if (!drv1) { |
| 973 | error_setg(errp, "Unknown protocol '%s'", protocol); |
| 974 | } |
| 975 | return drv1; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 976 | } |
| 977 | |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 978 | /* |
| 979 | * Guess image format by probing its contents. |
| 980 | * This is not a good idea when your image is raw (CVE-2008-2004), but |
| 981 | * we do it anyway for backward compatibility. |
| 982 | * |
| 983 | * @buf contains the image's first @buf_size bytes. |
Kevin Wolf | 7cddd37 | 2014-11-20 16:27:11 +0100 | [diff] [blame] | 984 | * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, |
| 985 | * but can be smaller if the image file is smaller) |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 986 | * @filename is its filename. |
| 987 | * |
| 988 | * For all block drivers, call the bdrv_probe() method to get its |
| 989 | * probing score. |
| 990 | * Return the first block driver with the highest probing score. |
| 991 | */ |
Kevin Wolf | 38f3ef5 | 2014-11-20 16:27:12 +0100 | [diff] [blame] | 992 | BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, |
| 993 | const char *filename) |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 994 | { |
| 995 | int score_max = 0, score; |
| 996 | BlockDriver *drv = NULL, *d; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 997 | IO_CODE(); |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 998 | |
| 999 | QLIST_FOREACH(d, &bdrv_drivers, list) { |
| 1000 | if (d->bdrv_probe) { |
| 1001 | score = d->bdrv_probe(buf, buf_size, filename); |
| 1002 | if (score > score_max) { |
| 1003 | score_max = score; |
| 1004 | drv = d; |
| 1005 | } |
| 1006 | } |
| 1007 | } |
| 1008 | |
| 1009 | return drv; |
| 1010 | } |
| 1011 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1012 | static int find_image_format(BlockBackend *file, const char *filename, |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1013 | BlockDriver **pdrv, Error **errp) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1014 | { |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 1015 | BlockDriver *drv; |
Kevin Wolf | 7cddd37 | 2014-11-20 16:27:11 +0100 | [diff] [blame] | 1016 | uint8_t buf[BLOCK_PROBE_BUF_SIZE]; |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 1017 | int ret = 0; |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 1018 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1019 | GLOBAL_STATE_CODE(); |
| 1020 | |
Kevin Wolf | 08a0055 | 2010-06-01 18:37:31 +0200 | [diff] [blame] | 1021 | /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1022 | 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] | 1023 | *pdrv = &bdrv_raw; |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1024 | return ret; |
Nicholas A. Bellinger | 1a39685 | 2010-05-27 08:56:28 -0700 | [diff] [blame] | 1025 | } |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 1026 | |
Alberto Faria | a9262f5 | 2022-07-05 17:15:11 +0100 | [diff] [blame] | 1027 | ret = blk_pread(file, 0, sizeof(buf), buf, 0); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1028 | if (ret < 0) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1029 | error_setg_errno(errp, -ret, "Could not read image for determining its " |
| 1030 | "format"); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1031 | *pdrv = NULL; |
| 1032 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1035 | drv = bdrv_probe_all(buf, sizeof(buf), filename); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1036 | if (!drv) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1037 | error_setg(errp, "Could not determine image format: No compatible " |
| 1038 | "driver found"); |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1039 | *pdrv = NULL; |
| 1040 | return -ENOENT; |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1041 | } |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1042 | |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1043 | *pdrv = drv; |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1044 | return 0; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1045 | } |
| 1046 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1047 | /** |
| 1048 | * Set the current 'total_sectors' value |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 1049 | * Return 0 on success, -errno on error. |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1050 | */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1051 | int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs, |
| 1052 | int64_t hint) |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1053 | { |
| 1054 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 1055 | IO_CODE(); |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 1056 | assert_bdrv_graph_readable(); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1057 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 1058 | if (!drv) { |
| 1059 | return -ENOMEDIUM; |
| 1060 | } |
| 1061 | |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1062 | /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */ |
Dimitris Aragiorgis | b192af8 | 2015-06-23 13:44:56 +0300 | [diff] [blame] | 1063 | if (bdrv_is_sg(bs)) |
Nicholas Bellinger | 396759a | 2010-05-17 09:46:04 -0700 | [diff] [blame] | 1064 | return 0; |
| 1065 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1066 | /* query actual device if possible, otherwise just trust the hint */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1067 | if (drv->bdrv_co_getlength) { |
| 1068 | int64_t length = drv->bdrv_co_getlength(bs); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1069 | if (length < 0) { |
| 1070 | return length; |
| 1071 | } |
Fam Zheng | 7e38200 | 2013-11-06 19:48:06 +0800 | [diff] [blame] | 1072 | hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1073 | } |
| 1074 | |
| 1075 | bs->total_sectors = hint; |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 1076 | |
| 1077 | if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) { |
| 1078 | return -EFBIG; |
| 1079 | } |
| 1080 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1081 | return 0; |
| 1082 | } |
| 1083 | |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1084 | /** |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1085 | * Combines a QDict of new block driver @options with any missing options taken |
| 1086 | * from @old_options, so that leaving out an option defaults to its old value. |
| 1087 | */ |
| 1088 | static void bdrv_join_options(BlockDriverState *bs, QDict *options, |
| 1089 | QDict *old_options) |
| 1090 | { |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 1091 | GLOBAL_STATE_CODE(); |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1092 | if (bs->drv && bs->drv->bdrv_join_options) { |
| 1093 | bs->drv->bdrv_join_options(options, old_options); |
| 1094 | } else { |
| 1095 | qdict_join(options, old_options, false); |
| 1096 | } |
| 1097 | } |
| 1098 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1099 | static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts, |
| 1100 | int open_flags, |
| 1101 | Error **errp) |
| 1102 | { |
| 1103 | Error *local_err = NULL; |
| 1104 | char *value = qemu_opt_get_del(opts, "detect-zeroes"); |
| 1105 | BlockdevDetectZeroesOptions detect_zeroes = |
| 1106 | qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value, |
| 1107 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1108 | GLOBAL_STATE_CODE(); |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1109 | g_free(value); |
| 1110 | if (local_err) { |
| 1111 | error_propagate(errp, local_err); |
| 1112 | return detect_zeroes; |
| 1113 | } |
| 1114 | |
| 1115 | if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && |
| 1116 | !(open_flags & BDRV_O_UNMAP)) |
| 1117 | { |
| 1118 | error_setg(errp, "setting detect-zeroes to unmap is not allowed " |
| 1119 | "without setting discard operation to unmap"); |
| 1120 | } |
| 1121 | |
| 1122 | return detect_zeroes; |
| 1123 | } |
| 1124 | |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1125 | /** |
Aarushi Mehta | f80f267 | 2020-01-20 14:18:50 +0000 | [diff] [blame] | 1126 | * Set open flags for aio engine |
| 1127 | * |
| 1128 | * Return 0 on success, -1 if the engine specified is invalid |
| 1129 | */ |
| 1130 | int bdrv_parse_aio(const char *mode, int *flags) |
| 1131 | { |
| 1132 | if (!strcmp(mode, "threads")) { |
| 1133 | /* do nothing, default */ |
| 1134 | } else if (!strcmp(mode, "native")) { |
| 1135 | *flags |= BDRV_O_NATIVE_AIO; |
| 1136 | #ifdef CONFIG_LINUX_IO_URING |
| 1137 | } else if (!strcmp(mode, "io_uring")) { |
| 1138 | *flags |= BDRV_O_IO_URING; |
| 1139 | #endif |
| 1140 | } else { |
| 1141 | return -1; |
| 1142 | } |
| 1143 | |
| 1144 | return 0; |
| 1145 | } |
| 1146 | |
| 1147 | /** |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 1148 | * Set open flags for a given discard mode |
| 1149 | * |
| 1150 | * Return 0 on success, -1 if the discard mode was invalid. |
| 1151 | */ |
| 1152 | int bdrv_parse_discard_flags(const char *mode, int *flags) |
| 1153 | { |
| 1154 | *flags &= ~BDRV_O_UNMAP; |
| 1155 | |
| 1156 | if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { |
| 1157 | /* do nothing */ |
| 1158 | } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { |
| 1159 | *flags |= BDRV_O_UNMAP; |
| 1160 | } else { |
| 1161 | return -1; |
| 1162 | } |
| 1163 | |
| 1164 | return 0; |
| 1165 | } |
| 1166 | |
| 1167 | /** |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1168 | * Set open flags for a given cache mode |
| 1169 | * |
| 1170 | * Return 0 on success, -1 if the cache mode was invalid. |
| 1171 | */ |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1172 | int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1173 | { |
| 1174 | *flags &= ~BDRV_O_CACHE_MASK; |
| 1175 | |
| 1176 | if (!strcmp(mode, "off") || !strcmp(mode, "none")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1177 | *writethrough = false; |
| 1178 | *flags |= BDRV_O_NOCACHE; |
Stefan Hajnoczi | 92196b2 | 2011-08-04 12:26:52 +0100 | [diff] [blame] | 1179 | } else if (!strcmp(mode, "directsync")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1180 | *writethrough = true; |
Stefan Hajnoczi | 92196b2 | 2011-08-04 12:26:52 +0100 | [diff] [blame] | 1181 | *flags |= BDRV_O_NOCACHE; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1182 | } else if (!strcmp(mode, "writeback")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1183 | *writethrough = false; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1184 | } else if (!strcmp(mode, "unsafe")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1185 | *writethrough = false; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1186 | *flags |= BDRV_O_NO_FLUSH; |
| 1187 | } else if (!strcmp(mode, "writethrough")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1188 | *writethrough = true; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1189 | } else { |
| 1190 | return -1; |
| 1191 | } |
| 1192 | |
| 1193 | return 0; |
| 1194 | } |
| 1195 | |
Kevin Wolf | b541155 | 2017-01-17 15:56:16 +0100 | [diff] [blame] | 1196 | static char *bdrv_child_get_parent_desc(BdrvChild *c) |
| 1197 | { |
| 1198 | BlockDriverState *parent = c->opaque; |
Vladimir Sementsov-Ogievskiy | 2c0a3ac | 2021-06-01 10:52:15 +0300 | [diff] [blame] | 1199 | return g_strdup_printf("node '%s'", bdrv_get_node_name(parent)); |
Kevin Wolf | b541155 | 2017-01-17 15:56:16 +0100 | [diff] [blame] | 1200 | } |
| 1201 | |
Emanuele Giuseppe Esposito | d05ab38 | 2023-09-29 16:51:40 +0200 | [diff] [blame] | 1202 | static void GRAPH_RDLOCK bdrv_child_cb_drained_begin(BdrvChild *child) |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1203 | { |
| 1204 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | a82a3bd | 2022-11-18 18:41:07 +0100 | [diff] [blame] | 1205 | bdrv_do_drained_begin_quiesce(bs, NULL); |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1206 | } |
| 1207 | |
Emanuele Giuseppe Esposito | d05ab38 | 2023-09-29 16:51:40 +0200 | [diff] [blame] | 1208 | static bool GRAPH_RDLOCK bdrv_child_cb_drained_poll(BdrvChild *child) |
Kevin Wolf | 89bd030 | 2018-03-22 14:11:20 +0100 | [diff] [blame] | 1209 | { |
| 1210 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | 299403a | 2022-11-18 18:41:05 +0100 | [diff] [blame] | 1211 | return bdrv_drain_poll(bs, NULL, false); |
Kevin Wolf | 89bd030 | 2018-03-22 14:11:20 +0100 | [diff] [blame] | 1212 | } |
| 1213 | |
Emanuele Giuseppe Esposito | d05ab38 | 2023-09-29 16:51:40 +0200 | [diff] [blame] | 1214 | static void GRAPH_RDLOCK bdrv_child_cb_drained_end(BdrvChild *child) |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1215 | { |
| 1216 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | 2f65df6 | 2022-11-18 18:40:59 +0100 | [diff] [blame] | 1217 | bdrv_drained_end(bs); |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1218 | } |
| 1219 | |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 1220 | static int bdrv_child_cb_inactivate(BdrvChild *child) |
| 1221 | { |
| 1222 | BlockDriverState *bs = child->opaque; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1223 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 1224 | assert(bs->open_flags & BDRV_O_INACTIVE); |
| 1225 | return 0; |
| 1226 | } |
| 1227 | |
Emanuele Giuseppe Esposito | 27633e7 | 2022-10-25 04:49:47 -0400 | [diff] [blame] | 1228 | static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx, |
| 1229 | GHashTable *visited, Transaction *tran, |
| 1230 | Error **errp) |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 1231 | { |
| 1232 | BlockDriverState *bs = child->opaque; |
Emanuele Giuseppe Esposito | 27633e7 | 2022-10-25 04:49:47 -0400 | [diff] [blame] | 1233 | return bdrv_change_aio_context(bs, ctx, visited, tran, errp); |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 1234 | } |
| 1235 | |
Kevin Wolf | 0b50cc8 | 2014-04-11 21:29:52 +0200 | [diff] [blame] | 1236 | /* |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1237 | * Returns the options and flags that a temporary snapshot should get, based on |
| 1238 | * the originally requested flags (the originally requested image will have |
| 1239 | * flags like a backing file) |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1240 | */ |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1241 | static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, |
| 1242 | int parent_flags, QDict *parent_options) |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1243 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1244 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1245 | *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; |
| 1246 | |
| 1247 | /* For temporary files, unconditional cache=unsafe is fine */ |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1248 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); |
| 1249 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); |
Kevin Wolf | 4186904 | 2016-06-16 12:59:30 +0200 | [diff] [blame] | 1250 | |
Kevin Wolf | 3f48686 | 2019-04-04 17:04:43 +0200 | [diff] [blame] | 1251 | /* Copy the read-only and discard options from the parent */ |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1252 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); |
Kevin Wolf | 3f48686 | 2019-04-04 17:04:43 +0200 | [diff] [blame] | 1253 | qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1254 | |
Kevin Wolf | 4186904 | 2016-06-16 12:59:30 +0200 | [diff] [blame] | 1255 | /* aio=native doesn't work for cache.direct=off, so disable it for the |
| 1256 | * temporary snapshot */ |
| 1257 | *child_flags &= ~BDRV_O_NATIVE_AIO; |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1258 | } |
| 1259 | |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 1260 | static void GRAPH_WRLOCK bdrv_backing_attach(BdrvChild *c) |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1261 | { |
| 1262 | BlockDriverState *parent = c->opaque; |
| 1263 | BlockDriverState *backing_hd = c->bs; |
| 1264 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1265 | GLOBAL_STATE_CODE(); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1266 | assert(!parent->backing_blocker); |
| 1267 | error_setg(&parent->backing_blocker, |
| 1268 | "node is used as backing hd of '%s'", |
| 1269 | bdrv_get_device_or_node_name(parent)); |
| 1270 | |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 1271 | bdrv_refresh_filename(backing_hd); |
| 1272 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1273 | parent->open_flags &= ~BDRV_O_NO_BACKING; |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1274 | |
| 1275 | bdrv_op_block_all(backing_hd, parent->backing_blocker); |
| 1276 | /* Otherwise we won't be able to commit or stream */ |
| 1277 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, |
| 1278 | parent->backing_blocker); |
| 1279 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, |
| 1280 | parent->backing_blocker); |
| 1281 | /* |
| 1282 | * We do backup in 3 ways: |
| 1283 | * 1. drive backup |
| 1284 | * The target bs is new opened, and the source is top BDS |
| 1285 | * 2. blockdev backup |
| 1286 | * Both the source and the target are top BDSes. |
| 1287 | * 3. internal backup(used for block replication) |
| 1288 | * Both the source and the target are backing file |
| 1289 | * |
| 1290 | * In case 1 and 2, neither the source nor the target is the backing file. |
| 1291 | * In case 3, we will block the top BDS, so there is only one block job |
| 1292 | * for the top BDS and its backing chain. |
| 1293 | */ |
| 1294 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, |
| 1295 | parent->backing_blocker); |
| 1296 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, |
| 1297 | parent->backing_blocker); |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1298 | } |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 1299 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1300 | static void bdrv_backing_detach(BdrvChild *c) |
| 1301 | { |
| 1302 | BlockDriverState *parent = c->opaque; |
| 1303 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1304 | GLOBAL_STATE_CODE(); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1305 | assert(parent->backing_blocker); |
| 1306 | bdrv_op_unblock_all(c->bs, parent->backing_blocker); |
| 1307 | error_free(parent->backing_blocker); |
| 1308 | parent->backing_blocker = NULL; |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1309 | } |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 1310 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1311 | static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1312 | const char *filename, |
| 1313 | bool backing_mask_protocol, |
| 1314 | Error **errp) |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1315 | { |
| 1316 | BlockDriverState *parent = c->opaque; |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1317 | bool read_only = bdrv_is_read_only(parent); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1318 | int ret; |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1319 | const char *format_name; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1320 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1321 | |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1322 | if (read_only) { |
| 1323 | ret = bdrv_reopen_set_read_only(parent, false, errp); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 1324 | if (ret < 0) { |
| 1325 | return ret; |
| 1326 | } |
| 1327 | } |
| 1328 | |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1329 | if (base->drv) { |
| 1330 | /* |
| 1331 | * If the new base image doesn't have a format driver layer, which we |
| 1332 | * detect by the fact that @base is a protocol driver, we record |
| 1333 | * 'raw' as the format instead of putting the protocol name as the |
| 1334 | * backing format |
| 1335 | */ |
| 1336 | if (backing_mask_protocol && base->drv->protocol_name) { |
| 1337 | format_name = "raw"; |
| 1338 | } else { |
| 1339 | format_name = base->drv->format_name; |
| 1340 | } |
| 1341 | } else { |
| 1342 | format_name = ""; |
| 1343 | } |
| 1344 | |
| 1345 | ret = bdrv_change_backing_file(parent, filename, format_name, false); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1346 | if (ret < 0) { |
Kevin Wolf | 6473069 | 2017-11-06 17:52:58 +0100 | [diff] [blame] | 1347 | error_setg_errno(errp, -ret, "Could not update backing file link"); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1348 | } |
| 1349 | |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1350 | if (read_only) { |
| 1351 | bdrv_reopen_set_read_only(parent, true, NULL); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 1352 | } |
| 1353 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1354 | return ret; |
| 1355 | } |
| 1356 | |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1357 | /* |
| 1358 | * Returns the options and flags that a generic child of a BDS should |
| 1359 | * get, based on the given options and flags for the parent BDS. |
| 1360 | */ |
Max Reitz | 00ff7ff | 2020-05-13 13:05:21 +0200 | [diff] [blame] | 1361 | static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format, |
| 1362 | int *child_flags, QDict *child_options, |
| 1363 | int parent_flags, QDict *parent_options) |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1364 | { |
| 1365 | int flags = parent_flags; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1366 | GLOBAL_STATE_CODE(); |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1367 | |
| 1368 | /* |
| 1369 | * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL. |
| 1370 | * Generally, the question to answer is: Should this child be |
| 1371 | * format-probed by default? |
| 1372 | */ |
| 1373 | |
| 1374 | /* |
| 1375 | * Pure and non-filtered data children of non-format nodes should |
| 1376 | * be probed by default (even when the node itself has BDRV_O_PROTOCOL |
| 1377 | * set). This only affects a very limited set of drivers (namely |
| 1378 | * quorum and blkverify when this comment was written). |
| 1379 | * Force-clear BDRV_O_PROTOCOL then. |
| 1380 | */ |
| 1381 | if (!parent_is_format && |
| 1382 | (role & BDRV_CHILD_DATA) && |
| 1383 | !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED))) |
| 1384 | { |
| 1385 | flags &= ~BDRV_O_PROTOCOL; |
| 1386 | } |
| 1387 | |
| 1388 | /* |
| 1389 | * All children of format nodes (except for COW children) and all |
| 1390 | * metadata children in general should never be format-probed. |
| 1391 | * Force-set BDRV_O_PROTOCOL then. |
| 1392 | */ |
| 1393 | if ((parent_is_format && !(role & BDRV_CHILD_COW)) || |
| 1394 | (role & BDRV_CHILD_METADATA)) |
| 1395 | { |
| 1396 | flags |= BDRV_O_PROTOCOL; |
| 1397 | } |
| 1398 | |
| 1399 | /* |
| 1400 | * If the cache mode isn't explicitly set, inherit direct and no-flush from |
| 1401 | * the parent. |
| 1402 | */ |
| 1403 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); |
| 1404 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); |
| 1405 | qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); |
| 1406 | |
| 1407 | if (role & BDRV_CHILD_COW) { |
| 1408 | /* backing files are opened read-only by default */ |
| 1409 | qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); |
| 1410 | qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off"); |
| 1411 | } else { |
| 1412 | /* Inherit the read-only option from the parent if it's not set */ |
| 1413 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); |
| 1414 | qdict_copy_default(child_options, parent_options, |
| 1415 | BDRV_OPT_AUTO_READ_ONLY); |
| 1416 | } |
| 1417 | |
| 1418 | /* |
| 1419 | * bdrv_co_pdiscard() respects unmap policy for the parent, so we |
| 1420 | * can default to enable it on lower layers regardless of the |
| 1421 | * parent option. |
| 1422 | */ |
| 1423 | qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); |
| 1424 | |
| 1425 | /* Clear flags that only apply to the top layer */ |
| 1426 | flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); |
| 1427 | |
| 1428 | if (role & BDRV_CHILD_METADATA) { |
| 1429 | flags &= ~BDRV_O_NO_IO; |
| 1430 | } |
| 1431 | if (role & BDRV_CHILD_COW) { |
| 1432 | flags &= ~BDRV_O_TEMPORARY; |
| 1433 | } |
| 1434 | |
| 1435 | *child_flags = flags; |
| 1436 | } |
| 1437 | |
Kevin Wolf | 303de47 | 2022-12-07 14:18:35 +0100 | [diff] [blame] | 1438 | static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child) |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1439 | { |
| 1440 | BlockDriverState *bs = child->opaque; |
| 1441 | |
Emanuele Giuseppe Esposito | 3f35f82 | 2022-12-07 14:18:33 +0100 | [diff] [blame] | 1442 | assert_bdrv_graph_writable(); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 1443 | QLIST_INSERT_HEAD(&bs->children, child, next); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1444 | if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) { |
| 1445 | /* |
| 1446 | * Here we handle filters and block/raw-format.c when it behave like |
| 1447 | * filter. They generally have a single PRIMARY child, which is also the |
| 1448 | * FILTERED child, and that they may have multiple more children, which |
| 1449 | * are neither PRIMARY nor FILTERED. And never we have a COW child here. |
| 1450 | * So bs->file will be the PRIMARY child, unless the PRIMARY child goes |
| 1451 | * into bs->backing on exceptional cases; and bs->backing will be |
| 1452 | * nothing else. |
| 1453 | */ |
| 1454 | assert(!(child->role & BDRV_CHILD_COW)); |
| 1455 | if (child->role & BDRV_CHILD_PRIMARY) { |
| 1456 | assert(child->role & BDRV_CHILD_FILTERED); |
| 1457 | assert(!bs->backing); |
| 1458 | assert(!bs->file); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 1459 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1460 | if (bs->drv->filtered_child_is_backing) { |
| 1461 | bs->backing = child; |
| 1462 | } else { |
| 1463 | bs->file = child; |
| 1464 | } |
| 1465 | } else { |
| 1466 | assert(!(child->role & BDRV_CHILD_FILTERED)); |
| 1467 | } |
| 1468 | } else if (child->role & BDRV_CHILD_COW) { |
| 1469 | assert(bs->drv->supports_backing); |
| 1470 | assert(!(child->role & BDRV_CHILD_PRIMARY)); |
| 1471 | assert(!bs->backing); |
| 1472 | bs->backing = child; |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1473 | bdrv_backing_attach(child); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1474 | } else if (child->role & BDRV_CHILD_PRIMARY) { |
| 1475 | assert(!bs->file); |
| 1476 | bs->file = child; |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1477 | } |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1478 | } |
| 1479 | |
Kevin Wolf | 303de47 | 2022-12-07 14:18:35 +0100 | [diff] [blame] | 1480 | static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child) |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1481 | { |
| 1482 | BlockDriverState *bs = child->opaque; |
| 1483 | |
| 1484 | if (child->role & BDRV_CHILD_COW) { |
| 1485 | bdrv_backing_detach(child); |
| 1486 | } |
| 1487 | |
Emanuele Giuseppe Esposito | 3f35f82 | 2022-12-07 14:18:33 +0100 | [diff] [blame] | 1488 | assert_bdrv_graph_writable(); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 1489 | QLIST_REMOVE(child, next); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1490 | if (child == bs->backing) { |
| 1491 | assert(child != bs->file); |
| 1492 | bs->backing = NULL; |
| 1493 | } else if (child == bs->file) { |
| 1494 | bs->file = NULL; |
| 1495 | } |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1496 | } |
| 1497 | |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1498 | static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base, |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1499 | const char *filename, |
| 1500 | bool backing_mask_protocol, |
| 1501 | Error **errp) |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1502 | { |
| 1503 | if (c->role & BDRV_CHILD_COW) { |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 1504 | return bdrv_backing_update_filename(c, base, filename, |
| 1505 | backing_mask_protocol, |
| 1506 | errp); |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1507 | } |
| 1508 | return 0; |
| 1509 | } |
| 1510 | |
Vladimir Sementsov-Ogievskiy | fb62b58 | 2021-05-24 13:12:56 +0300 | [diff] [blame] | 1511 | AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c) |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1512 | { |
| 1513 | BlockDriverState *bs = c->opaque; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 1514 | IO_CODE(); |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1515 | |
| 1516 | return bdrv_get_aio_context(bs); |
| 1517 | } |
| 1518 | |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1519 | const BdrvChildClass child_of_bds = { |
| 1520 | .parent_is_bds = true, |
| 1521 | .get_parent_desc = bdrv_child_get_parent_desc, |
| 1522 | .inherit_options = bdrv_inherited_options, |
| 1523 | .drained_begin = bdrv_child_cb_drained_begin, |
| 1524 | .drained_poll = bdrv_child_cb_drained_poll, |
| 1525 | .drained_end = bdrv_child_cb_drained_end, |
| 1526 | .attach = bdrv_child_cb_attach, |
| 1527 | .detach = bdrv_child_cb_detach, |
| 1528 | .inactivate = bdrv_child_cb_inactivate, |
Emanuele Giuseppe Esposito | 27633e7 | 2022-10-25 04:49:47 -0400 | [diff] [blame] | 1529 | .change_aio_ctx = bdrv_child_cb_change_aio_ctx, |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1530 | .update_filename = bdrv_child_cb_update_filename, |
Vladimir Sementsov-Ogievskiy | fb62b58 | 2021-05-24 13:12:56 +0300 | [diff] [blame] | 1531 | .get_parent_aio_context = child_of_bds_get_parent_aio_context, |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1532 | }; |
| 1533 | |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1534 | AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c) |
| 1535 | { |
Hanna Reitz | d5f8d79 | 2022-11-07 16:13:19 +0100 | [diff] [blame] | 1536 | IO_CODE(); |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1537 | return c->klass->get_parent_aio_context(c); |
| 1538 | } |
| 1539 | |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1540 | static int bdrv_open_flags(BlockDriverState *bs, int flags) |
| 1541 | { |
Kevin Wolf | 61de4c6 | 2016-03-18 17:46:45 +0100 | [diff] [blame] | 1542 | int open_flags = flags; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1543 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1544 | |
| 1545 | /* |
| 1546 | * Clear flags that are internal to the block layer before opening the |
| 1547 | * image. |
| 1548 | */ |
Kevin Wolf | 20cca27 | 2014-06-04 14:33:27 +0200 | [diff] [blame] | 1549 | open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1550 | |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1551 | return open_flags; |
| 1552 | } |
| 1553 | |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1554 | static void update_flags_from_options(int *flags, QemuOpts *opts) |
| 1555 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1556 | GLOBAL_STATE_CODE(); |
| 1557 | |
Alberto Garcia | 2a3d433 | 2018-11-12 16:00:48 +0200 | [diff] [blame] | 1558 | *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1559 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1560 | 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] | 1561 | *flags |= BDRV_O_NO_FLUSH; |
| 1562 | } |
| 1563 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1564 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1565 | *flags |= BDRV_O_NOCACHE; |
| 1566 | } |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1567 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1568 | if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) { |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1569 | *flags |= BDRV_O_RDWR; |
| 1570 | } |
| 1571 | |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1572 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) { |
| 1573 | *flags |= BDRV_O_AUTO_RDONLY; |
| 1574 | } |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1575 | } |
| 1576 | |
| 1577 | static void update_options_from_flags(QDict *options, int flags) |
| 1578 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1579 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1580 | if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1581 | qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1582 | } |
| 1583 | if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1584 | qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, |
| 1585 | flags & BDRV_O_NO_FLUSH); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1586 | } |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1587 | if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1588 | qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1589 | } |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1590 | if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) { |
| 1591 | qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY, |
| 1592 | flags & BDRV_O_AUTO_RDONLY); |
| 1593 | } |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1594 | } |
| 1595 | |
Kevin Wolf | 636ea37 | 2014-01-24 14:11:52 +0100 | [diff] [blame] | 1596 | static void bdrv_assign_node_name(BlockDriverState *bs, |
| 1597 | const char *node_name, |
| 1598 | Error **errp) |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1599 | { |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1600 | char *gen_node_name = NULL; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1601 | GLOBAL_STATE_CODE(); |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1602 | |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1603 | if (!node_name) { |
| 1604 | node_name = gen_node_name = id_generate(ID_BLOCK); |
| 1605 | } else if (!id_wellformed(node_name)) { |
| 1606 | /* |
| 1607 | * Check for empty string or invalid characters, but not if it is |
| 1608 | * generated (generated names use characters not available to the user) |
| 1609 | */ |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 1610 | error_setg(errp, "Invalid node-name: '%s'", node_name); |
Kevin Wolf | 636ea37 | 2014-01-24 14:11:52 +0100 | [diff] [blame] | 1611 | return; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1612 | } |
| 1613 | |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1614 | /* takes care of avoiding namespaces collisions */ |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 1615 | if (blk_by_name(node_name)) { |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1616 | error_setg(errp, "node-name=%s is conflicting with a device id", |
| 1617 | node_name); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1618 | goto out; |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1619 | } |
| 1620 | |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1621 | /* takes care of avoiding duplicates node names */ |
| 1622 | if (bdrv_find_node(node_name)) { |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 1623 | error_setg(errp, "Duplicate nodes with node-name='%s'", node_name); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1624 | goto out; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1625 | } |
| 1626 | |
Kevin Wolf | 824808d | 2018-07-04 13:28:29 +0200 | [diff] [blame] | 1627 | /* Make sure that the node name isn't truncated */ |
| 1628 | if (strlen(node_name) >= sizeof(bs->node_name)) { |
| 1629 | error_setg(errp, "Node name too long"); |
| 1630 | goto out; |
| 1631 | } |
| 1632 | |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1633 | /* copy node name into the bs and insert it into the graph list */ |
| 1634 | pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); |
| 1635 | QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1636 | out: |
| 1637 | g_free(gen_node_name); |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1638 | } |
| 1639 | |
Kevin Wolf | 1a30b0f | 2023-05-04 13:57:38 +0200 | [diff] [blame] | 1640 | static int no_coroutine_fn GRAPH_UNLOCKED |
| 1641 | bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, const char *node_name, |
| 1642 | QDict *options, int open_flags, Error **errp) |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1643 | { |
| 1644 | Error *local_err = NULL; |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1645 | int i, ret; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 1646 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1647 | |
| 1648 | bdrv_assign_node_name(bs, node_name, &local_err); |
| 1649 | if (local_err) { |
| 1650 | error_propagate(errp, local_err); |
| 1651 | return -EINVAL; |
| 1652 | } |
| 1653 | |
| 1654 | bs->drv = drv; |
| 1655 | bs->opaque = g_malloc0(drv->instance_size); |
| 1656 | |
Paolo Bonzini | ae8b45d | 2022-11-24 16:29:06 +0100 | [diff] [blame] | 1657 | assert(!drv->bdrv_needs_filename || bs->filename[0]); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1658 | if (drv->bdrv_file_open) { |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1659 | ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1660 | } else if (drv->bdrv_open) { |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1661 | ret = drv->bdrv_open(bs, options, open_flags, &local_err); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1662 | } else { |
| 1663 | ret = 0; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1664 | } |
| 1665 | |
| 1666 | if (ret < 0) { |
| 1667 | if (local_err) { |
| 1668 | error_propagate(errp, local_err); |
| 1669 | } else if (bs->filename[0]) { |
| 1670 | error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); |
| 1671 | } else { |
| 1672 | error_setg_errno(errp, -ret, "Could not open image"); |
| 1673 | } |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1674 | goto open_failed; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1675 | } |
| 1676 | |
Stefan Hajnoczi | e8b6535 | 2022-10-13 14:59:01 -0400 | [diff] [blame] | 1677 | assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK)); |
| 1678 | assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK)); |
| 1679 | |
| 1680 | /* |
| 1681 | * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves |
| 1682 | * drivers that pass read/write requests through to a child the trouble of |
| 1683 | * declaring support explicitly. |
| 1684 | * |
| 1685 | * Drivers must not propagate this flag accidentally when they initiate I/O |
| 1686 | * to a bounce buffer. That case should be rare though. |
| 1687 | */ |
| 1688 | bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF; |
| 1689 | bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF; |
| 1690 | |
Emanuele Giuseppe Esposito | c057960 | 2023-01-13 21:42:03 +0100 | [diff] [blame] | 1691 | ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1692 | if (ret < 0) { |
| 1693 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1694 | return ret; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1695 | } |
| 1696 | |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 1697 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 1698 | bdrv_refresh_limits(bs, NULL, &local_err); |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 1699 | bdrv_graph_rdunlock_main_loop(); |
| 1700 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1701 | if (local_err) { |
| 1702 | error_propagate(errp, local_err); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1703 | return -EINVAL; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1704 | } |
| 1705 | |
| 1706 | assert(bdrv_opt_mem_align(bs) != 0); |
| 1707 | assert(bdrv_min_mem_align(bs) != 0); |
| 1708 | assert(is_power_of_2(bs->bl.request_alignment)); |
| 1709 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1710 | for (i = 0; i < bs->quiesce_counter; i++) { |
Kevin Wolf | 5e8ac21 | 2022-11-18 18:40:58 +0100 | [diff] [blame] | 1711 | if (drv->bdrv_drain_begin) { |
| 1712 | drv->bdrv_drain_begin(bs); |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1713 | } |
| 1714 | } |
| 1715 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1716 | return 0; |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1717 | open_failed: |
| 1718 | bs->drv = NULL; |
Kevin Wolf | 1f051dc | 2023-10-27 17:53:33 +0200 | [diff] [blame] | 1719 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 1720 | bdrv_graph_wrlock(); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1721 | if (bs->file != NULL) { |
| 1722 | bdrv_unref_child(bs, bs->file); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1723 | assert(!bs->file); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1724 | } |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 1725 | bdrv_graph_wrunlock(); |
Kevin Wolf | 1f051dc | 2023-10-27 17:53:33 +0200 | [diff] [blame] | 1726 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1727 | g_free(bs->opaque); |
| 1728 | bs->opaque = NULL; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1729 | return ret; |
| 1730 | } |
| 1731 | |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1732 | /* |
| 1733 | * Create and open a block node. |
| 1734 | * |
| 1735 | * @options is a QDict of options to pass to the block drivers, or NULL for an |
| 1736 | * empty set of options. The reference to the QDict belongs to the block layer |
| 1737 | * after the call (even on failure), so if the caller intends to reuse the |
| 1738 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
| 1739 | */ |
| 1740 | BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv, |
| 1741 | const char *node_name, |
| 1742 | QDict *options, int flags, |
| 1743 | Error **errp) |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1744 | { |
| 1745 | BlockDriverState *bs; |
| 1746 | int ret; |
| 1747 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 1748 | GLOBAL_STATE_CODE(); |
| 1749 | |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1750 | bs = bdrv_new(); |
| 1751 | bs->open_flags = flags; |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1752 | bs->options = options ?: qdict_new(); |
| 1753 | bs->explicit_options = qdict_clone_shallow(bs->options); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1754 | bs->opaque = NULL; |
| 1755 | |
| 1756 | update_options_from_flags(bs->options, flags); |
| 1757 | |
| 1758 | ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); |
| 1759 | if (ret < 0) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1760 | qobject_unref(bs->explicit_options); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1761 | bs->explicit_options = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1762 | qobject_unref(bs->options); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1763 | bs->options = NULL; |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1764 | bdrv_unref(bs); |
| 1765 | return NULL; |
| 1766 | } |
| 1767 | |
| 1768 | return bs; |
| 1769 | } |
| 1770 | |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1771 | /* Create and open a block node. */ |
| 1772 | BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, |
| 1773 | int flags, Error **errp) |
| 1774 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 1775 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1776 | return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp); |
| 1777 | } |
| 1778 | |
Kevin Wolf | c5f3014 | 2016-10-06 11:33:17 +0200 | [diff] [blame] | 1779 | QemuOptsList bdrv_runtime_opts = { |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1780 | .name = "bdrv_common", |
| 1781 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), |
| 1782 | .desc = { |
| 1783 | { |
| 1784 | .name = "node-name", |
| 1785 | .type = QEMU_OPT_STRING, |
| 1786 | .help = "Node name of the block device node", |
| 1787 | }, |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1788 | { |
| 1789 | .name = "driver", |
| 1790 | .type = QEMU_OPT_STRING, |
| 1791 | .help = "Block driver to use for the node", |
| 1792 | }, |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1793 | { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1794 | .name = BDRV_OPT_CACHE_DIRECT, |
| 1795 | .type = QEMU_OPT_BOOL, |
| 1796 | .help = "Bypass software writeback cache on the host", |
| 1797 | }, |
| 1798 | { |
| 1799 | .name = BDRV_OPT_CACHE_NO_FLUSH, |
| 1800 | .type = QEMU_OPT_BOOL, |
| 1801 | .help = "Ignore flush requests", |
| 1802 | }, |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1803 | { |
| 1804 | .name = BDRV_OPT_READ_ONLY, |
| 1805 | .type = QEMU_OPT_BOOL, |
| 1806 | .help = "Node is opened in read-only mode", |
| 1807 | }, |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1808 | { |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1809 | .name = BDRV_OPT_AUTO_READ_ONLY, |
| 1810 | .type = QEMU_OPT_BOOL, |
| 1811 | .help = "Node can become read-only if opening read-write fails", |
| 1812 | }, |
| 1813 | { |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1814 | .name = "detect-zeroes", |
| 1815 | .type = QEMU_OPT_STRING, |
| 1816 | .help = "try to optimize zero writes (off, on, unmap)", |
| 1817 | }, |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1818 | { |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 1819 | .name = BDRV_OPT_DISCARD, |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1820 | .type = QEMU_OPT_STRING, |
| 1821 | .help = "discard operation (ignore/off, unmap/on)", |
| 1822 | }, |
Fam Zheng | 5a9347c | 2017-05-03 00:35:37 +0800 | [diff] [blame] | 1823 | { |
| 1824 | .name = BDRV_OPT_FORCE_SHARE, |
| 1825 | .type = QEMU_OPT_BOOL, |
| 1826 | .help = "always accept other writers (default: off)", |
| 1827 | }, |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1828 | { /* end of list */ } |
| 1829 | }, |
| 1830 | }; |
| 1831 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 1832 | QemuOptsList bdrv_create_opts_simple = { |
| 1833 | .name = "simple-create-opts", |
| 1834 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head), |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 1835 | .desc = { |
| 1836 | { |
| 1837 | .name = BLOCK_OPT_SIZE, |
| 1838 | .type = QEMU_OPT_SIZE, |
| 1839 | .help = "Virtual disk size" |
| 1840 | }, |
| 1841 | { |
| 1842 | .name = BLOCK_OPT_PREALLOC, |
| 1843 | .type = QEMU_OPT_STRING, |
| 1844 | .help = "Preallocation mode (allowed values: off)" |
| 1845 | }, |
| 1846 | { /* end of list */ } |
| 1847 | } |
| 1848 | }; |
| 1849 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 1850 | /* |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1851 | * Common part for opening disk images and files |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 1852 | * |
| 1853 | * Removes all processed options from *options. |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1854 | */ |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1855 | static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1856 | QDict *options, Error **errp) |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1857 | { |
| 1858 | int ret, open_flags; |
Kevin Wolf | 035fccd | 2013-04-09 14:34:19 +0200 | [diff] [blame] | 1859 | const char *filename; |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1860 | const char *driver_name = NULL; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1861 | const char *node_name = NULL; |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1862 | const char *discard; |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1863 | QemuOpts *opts; |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1864 | BlockDriver *drv; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1865 | Error *local_err = NULL; |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1866 | bool ro; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1867 | |
Kevin Wolf | 1f051dc | 2023-10-27 17:53:33 +0200 | [diff] [blame] | 1868 | GLOBAL_STATE_CODE(); |
| 1869 | |
| 1870 | bdrv_graph_rdlock_main_loop(); |
Paolo Bonzini | 6405875 | 2012-05-08 16:51:49 +0200 | [diff] [blame] | 1871 | assert(bs->file == NULL); |
Kevin Wolf | 707ff82 | 2013-03-06 12:20:31 +0100 | [diff] [blame] | 1872 | assert(options != NULL && bs->options != options); |
Kevin Wolf | 1f051dc | 2023-10-27 17:53:33 +0200 | [diff] [blame] | 1873 | bdrv_graph_rdunlock_main_loop(); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1874 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1875 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 1876 | if (!qemu_opts_absorb_qdict(opts, options, errp)) { |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1877 | ret = -EINVAL; |
| 1878 | goto fail_opts; |
| 1879 | } |
| 1880 | |
Alberto Garcia | 9b7e869 | 2016-09-15 17:53:01 +0300 | [diff] [blame] | 1881 | update_flags_from_options(&bs->open_flags, opts); |
| 1882 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1883 | driver_name = qemu_opt_get(opts, "driver"); |
| 1884 | drv = bdrv_find_format(driver_name); |
| 1885 | assert(drv != NULL); |
| 1886 | |
Fam Zheng | 5a9347c | 2017-05-03 00:35:37 +0800 | [diff] [blame] | 1887 | bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); |
| 1888 | |
| 1889 | if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { |
| 1890 | error_setg(errp, |
| 1891 | BDRV_OPT_FORCE_SHARE |
| 1892 | "=on can only be used with read-only images"); |
| 1893 | ret = -EINVAL; |
| 1894 | goto fail_opts; |
| 1895 | } |
| 1896 | |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1897 | if (file != NULL) { |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 1898 | bdrv_graph_rdlock_main_loop(); |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 1899 | bdrv_refresh_filename(blk_bs(file)); |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 1900 | bdrv_graph_rdunlock_main_loop(); |
| 1901 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1902 | filename = blk_bs(file)->filename; |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1903 | } else { |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 1904 | /* |
| 1905 | * Caution: while qdict_get_try_str() is fine, getting |
| 1906 | * non-string types would require more care. When @options |
| 1907 | * come from -blockdev or blockdev_add, its members are typed |
| 1908 | * according to the QAPI schema, but when they come from |
| 1909 | * -drive, they're all QString. |
| 1910 | */ |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1911 | filename = qdict_get_try_str(options, "filename"); |
| 1912 | } |
| 1913 | |
Max Reitz | 4a00824 | 2017-04-13 18:06:24 +0200 | [diff] [blame] | 1914 | if (drv->bdrv_needs_filename && (!filename || !filename[0])) { |
Kevin Wolf | 765003d | 2014-02-03 14:49:42 +0100 | [diff] [blame] | 1915 | error_setg(errp, "The '%s' block driver requires a file name", |
| 1916 | drv->format_name); |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1917 | ret = -EINVAL; |
| 1918 | goto fail_opts; |
| 1919 | } |
| 1920 | |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1921 | trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, |
| 1922 | drv->format_name); |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1923 | |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1924 | ro = bdrv_is_read_only(bs); |
| 1925 | |
| 1926 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) { |
| 1927 | if (!ro && bdrv_is_whitelisted(drv, true)) { |
Kevin Wolf | 018f9de | 2023-09-29 16:51:53 +0200 | [diff] [blame] | 1928 | bdrv_graph_rdlock_main_loop(); |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1929 | ret = bdrv_apply_auto_read_only(bs, NULL, NULL); |
Kevin Wolf | 018f9de | 2023-09-29 16:51:53 +0200 | [diff] [blame] | 1930 | bdrv_graph_rdunlock_main_loop(); |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1931 | } else { |
| 1932 | ret = -ENOTSUP; |
| 1933 | } |
| 1934 | if (ret < 0) { |
| 1935 | error_setg(errp, |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1936 | !ro && bdrv_is_whitelisted(drv, true) |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1937 | ? "Driver '%s' can only be used for read-only devices" |
| 1938 | : "Driver '%s' is not whitelisted", |
| 1939 | drv->format_name); |
| 1940 | goto fail_opts; |
| 1941 | } |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 1942 | } |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1943 | |
Paolo Bonzini | d3faa13 | 2017-06-05 14:38:50 +0200 | [diff] [blame] | 1944 | /* bdrv_new() and bdrv_close() make it so */ |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 1945 | assert(qatomic_read(&bs->copy_on_read) == 0); |
Paolo Bonzini | d3faa13 | 2017-06-05 14:38:50 +0200 | [diff] [blame] | 1946 | |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1947 | if (bs->open_flags & BDRV_O_COPY_ON_READ) { |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1948 | if (!ro) { |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 1949 | bdrv_enable_copy_on_read(bs); |
| 1950 | } else { |
| 1951 | 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] | 1952 | ret = -EINVAL; |
| 1953 | goto fail_opts; |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 1954 | } |
Stefan Hajnoczi | 53fec9d | 2011-11-28 16:08:47 +0000 | [diff] [blame] | 1955 | } |
| 1956 | |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 1957 | discard = qemu_opt_get(opts, BDRV_OPT_DISCARD); |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1958 | if (discard != NULL) { |
| 1959 | if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { |
| 1960 | error_setg(errp, "Invalid discard option"); |
| 1961 | ret = -EINVAL; |
| 1962 | goto fail_opts; |
| 1963 | } |
| 1964 | } |
| 1965 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1966 | bs->detect_zeroes = |
| 1967 | bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err); |
| 1968 | if (local_err) { |
| 1969 | error_propagate(errp, local_err); |
| 1970 | ret = -EINVAL; |
| 1971 | goto fail_opts; |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1972 | } |
| 1973 | |
Kevin Wolf | c2ad1b0 | 2013-03-18 16:40:51 +0100 | [diff] [blame] | 1974 | if (filename != NULL) { |
| 1975 | pstrcpy(bs->filename, sizeof(bs->filename), filename); |
| 1976 | } else { |
| 1977 | bs->filename[0] = '\0'; |
| 1978 | } |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 1979 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1980 | |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 1981 | /* Open the image, either directly or using a protocol */ |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1982 | open_flags = bdrv_open_flags(bs, bs->open_flags); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1983 | node_name = qemu_opt_get(opts, "node-name"); |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 1984 | |
Paolo Bonzini | 41770f6 | 2022-11-24 16:21:18 +0100 | [diff] [blame^] | 1985 | assert(!drv->protocol_name || file == NULL); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1986 | ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1987 | if (ret < 0) { |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1988 | goto fail_opts; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1989 | } |
| 1990 | |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1991 | qemu_opts_del(opts); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1992 | return 0; |
| 1993 | |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1994 | fail_opts: |
| 1995 | qemu_opts_del(opts); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1996 | return ret; |
| 1997 | } |
| 1998 | |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1999 | static QDict *parse_json_filename(const char *filename, Error **errp) |
| 2000 | { |
Zhao Liu | 7b22e05 | 2024-03-11 11:37:56 +0800 | [diff] [blame] | 2001 | ERRP_GUARD(); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2002 | QObject *options_obj; |
| 2003 | QDict *options; |
| 2004 | int ret; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2005 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2006 | |
| 2007 | ret = strstart(filename, "json:", &filename); |
| 2008 | assert(ret); |
| 2009 | |
Markus Armbruster | 5577fff | 2017-02-28 22:26:59 +0100 | [diff] [blame] | 2010 | options_obj = qobject_from_json(filename, errp); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2011 | if (!options_obj) { |
Markus Armbruster | 5577fff | 2017-02-28 22:26:59 +0100 | [diff] [blame] | 2012 | error_prepend(errp, "Could not parse the JSON options: "); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2013 | return NULL; |
| 2014 | } |
| 2015 | |
Max Reitz | 7dc847e | 2018-02-24 16:40:29 +0100 | [diff] [blame] | 2016 | options = qobject_to(QDict, options_obj); |
Markus Armbruster | ca6b6e1 | 2017-02-17 21:38:18 +0100 | [diff] [blame] | 2017 | if (!options) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 2018 | qobject_unref(options_obj); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2019 | error_setg(errp, "Invalid JSON object given"); |
| 2020 | return NULL; |
| 2021 | } |
| 2022 | |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 2023 | qdict_flatten(options); |
| 2024 | |
| 2025 | return options; |
| 2026 | } |
| 2027 | |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2028 | static void parse_json_protocol(QDict *options, const char **pfilename, |
| 2029 | Error **errp) |
| 2030 | { |
| 2031 | QDict *json_options; |
| 2032 | Error *local_err = NULL; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2033 | GLOBAL_STATE_CODE(); |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2034 | |
| 2035 | /* Parse json: pseudo-protocol */ |
| 2036 | if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { |
| 2037 | return; |
| 2038 | } |
| 2039 | |
| 2040 | json_options = parse_json_filename(*pfilename, &local_err); |
| 2041 | if (local_err) { |
| 2042 | error_propagate(errp, local_err); |
| 2043 | return; |
| 2044 | } |
| 2045 | |
| 2046 | /* Options given in the filename have lower priority than options |
| 2047 | * specified directly */ |
| 2048 | qdict_join(options, json_options, false); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 2049 | qobject_unref(json_options); |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2050 | *pfilename = NULL; |
| 2051 | } |
| 2052 | |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 2053 | /* |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2054 | * Fills in default options for opening images and converts the legacy |
| 2055 | * filename/flags pair to option QDict entries. |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2056 | * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a |
| 2057 | * block driver has been specified explicitly. |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2058 | */ |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2059 | static int bdrv_fill_options(QDict **options, const char *filename, |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2060 | int *flags, Error **errp) |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2061 | { |
| 2062 | const char *drvname; |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2063 | bool protocol = *flags & BDRV_O_PROTOCOL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2064 | bool parse_filename = false; |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2065 | BlockDriver *drv = NULL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2066 | Error *local_err = NULL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2067 | |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2068 | GLOBAL_STATE_CODE(); |
| 2069 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 2070 | /* |
| 2071 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 2072 | * types would require more care. When @options come from |
| 2073 | * -blockdev or blockdev_add, its members are typed according to |
| 2074 | * the QAPI schema, but when they come from -drive, they're all |
| 2075 | * QString. |
| 2076 | */ |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2077 | drvname = qdict_get_try_str(*options, "driver"); |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2078 | if (drvname) { |
| 2079 | drv = bdrv_find_format(drvname); |
| 2080 | if (!drv) { |
| 2081 | error_setg(errp, "Unknown driver '%s'", drvname); |
| 2082 | return -ENOENT; |
| 2083 | } |
| 2084 | /* If the user has explicitly specified the driver, this choice should |
| 2085 | * override the BDRV_O_PROTOCOL flag */ |
Paolo Bonzini | 41770f6 | 2022-11-24 16:21:18 +0100 | [diff] [blame^] | 2086 | protocol = drv->protocol_name; |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2087 | } |
| 2088 | |
| 2089 | if (protocol) { |
| 2090 | *flags |= BDRV_O_PROTOCOL; |
| 2091 | } else { |
| 2092 | *flags &= ~BDRV_O_PROTOCOL; |
| 2093 | } |
| 2094 | |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 2095 | /* Translate cache options from flags into options */ |
| 2096 | update_options_from_flags(*options, *flags); |
| 2097 | |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2098 | /* Fetch the file name from the options QDict if necessary */ |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 2099 | if (protocol && filename) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2100 | if (!qdict_haskey(*options, "filename")) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 2101 | qdict_put_str(*options, "filename", filename); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2102 | parse_filename = true; |
| 2103 | } else { |
| 2104 | error_setg(errp, "Can't specify 'file' and 'filename' options at " |
| 2105 | "the same time"); |
| 2106 | return -EINVAL; |
| 2107 | } |
| 2108 | } |
| 2109 | |
| 2110 | /* Find the right block driver */ |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 2111 | /* See cautionary note on accessing @options above */ |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2112 | filename = qdict_get_try_str(*options, "filename"); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2113 | |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2114 | if (!drvname && protocol) { |
| 2115 | if (filename) { |
| 2116 | drv = bdrv_find_protocol(filename, parse_filename, errp); |
| 2117 | if (!drv) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2118 | return -EINVAL; |
| 2119 | } |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2120 | |
| 2121 | drvname = drv->format_name; |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 2122 | qdict_put_str(*options, "driver", drvname); |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2123 | } else { |
| 2124 | error_setg(errp, "Must specify either driver or file"); |
| 2125 | return -EINVAL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2126 | } |
| 2127 | } |
| 2128 | |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 2129 | assert(drv || !protocol); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2130 | |
| 2131 | /* Driver-specific filename parsing */ |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 2132 | if (drv && drv->bdrv_parse_filename && parse_filename) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2133 | drv->bdrv_parse_filename(filename, *options, &local_err); |
| 2134 | if (local_err) { |
| 2135 | error_propagate(errp, local_err); |
| 2136 | return -EINVAL; |
| 2137 | } |
| 2138 | |
| 2139 | if (!drv->bdrv_needs_filename) { |
| 2140 | qdict_del(*options, "filename"); |
| 2141 | } |
| 2142 | } |
| 2143 | |
| 2144 | return 0; |
| 2145 | } |
| 2146 | |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2147 | typedef struct BlockReopenQueueEntry { |
| 2148 | bool prepared; |
| 2149 | BDRVReopenState state; |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 2150 | QTAILQ_ENTRY(BlockReopenQueueEntry) entry; |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2151 | } BlockReopenQueueEntry; |
| 2152 | |
| 2153 | /* |
| 2154 | * Return the flags that @bs will have after the reopens in @q have |
| 2155 | * successfully completed. If @q is NULL (or @bs is not contained in @q), |
| 2156 | * return the current flags. |
| 2157 | */ |
| 2158 | static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) |
| 2159 | { |
| 2160 | BlockReopenQueueEntry *entry; |
| 2161 | |
| 2162 | if (q != NULL) { |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 2163 | QTAILQ_FOREACH(entry, q, entry) { |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2164 | if (entry->state.bs == bs) { |
| 2165 | return entry->state.flags; |
| 2166 | } |
| 2167 | } |
| 2168 | } |
| 2169 | |
| 2170 | return bs->open_flags; |
| 2171 | } |
| 2172 | |
| 2173 | /* Returns whether the image file can be written to after the reopen queue @q |
| 2174 | * has been successfully applied, or right now if @q is NULL. */ |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2175 | static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, |
| 2176 | BlockReopenQueue *q) |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2177 | { |
| 2178 | int flags = bdrv_reopen_get_flags(q, bs); |
| 2179 | |
| 2180 | return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; |
| 2181 | } |
| 2182 | |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2183 | /* |
| 2184 | * Return whether the BDS can be written to. This is not necessarily |
| 2185 | * the same as !bdrv_is_read_only(bs), as inactivated images may not |
| 2186 | * be written to but do not count as read-only images. |
| 2187 | */ |
| 2188 | bool bdrv_is_writable(BlockDriverState *bs) |
| 2189 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 2190 | IO_CODE(); |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2191 | return bdrv_is_writable_after_reopen(bs, NULL); |
| 2192 | } |
| 2193 | |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2194 | static char *bdrv_child_user_desc(BdrvChild *c) |
| 2195 | { |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 2196 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | da261b6 | 2021-06-01 10:52:17 +0300 | [diff] [blame] | 2197 | return c->klass->get_parent_desc(c); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2198 | } |
| 2199 | |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2200 | /* |
| 2201 | * Check that @a allows everything that @b needs. @a and @b must reference same |
| 2202 | * child node. |
| 2203 | */ |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2204 | static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp) |
| 2205 | { |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2206 | const char *child_bs_name; |
| 2207 | g_autofree char *a_user = NULL; |
| 2208 | g_autofree char *b_user = NULL; |
| 2209 | g_autofree char *perms = NULL; |
| 2210 | |
| 2211 | assert(a->bs); |
| 2212 | assert(a->bs == b->bs); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2213 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2214 | |
| 2215 | if ((b->perm & a->shared_perm) == b->perm) { |
| 2216 | return true; |
| 2217 | } |
| 2218 | |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2219 | child_bs_name = bdrv_get_node_name(b->bs); |
| 2220 | a_user = bdrv_child_user_desc(a); |
| 2221 | b_user = bdrv_child_user_desc(b); |
| 2222 | perms = bdrv_perm_names(b->perm & ~a->shared_perm); |
| 2223 | |
| 2224 | error_setg(errp, "Permission conflict on node '%s': permissions '%s' are " |
| 2225 | "both required by %s (uses node '%s' as '%s' child) and " |
| 2226 | "unshared by %s (uses node '%s' as '%s' child).", |
| 2227 | child_bs_name, perms, |
| 2228 | b_user, child_bs_name, b->name, |
| 2229 | a_user, child_bs_name, a->name); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2230 | |
| 2231 | return false; |
| 2232 | } |
| 2233 | |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2234 | static bool GRAPH_RDLOCK |
| 2235 | bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp) |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2236 | { |
| 2237 | BdrvChild *a, *b; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2238 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2239 | |
| 2240 | /* |
| 2241 | * During the loop we'll look at each pair twice. That's correct because |
| 2242 | * bdrv_a_allow_b() is asymmetric and we should check each pair in both |
| 2243 | * directions. |
| 2244 | */ |
| 2245 | QLIST_FOREACH(a, &bs->parents, next_parent) { |
| 2246 | QLIST_FOREACH(b, &bs->parents, next_parent) { |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2247 | if (a == b) { |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2248 | continue; |
| 2249 | } |
| 2250 | |
| 2251 | if (!bdrv_a_allow_b(a, b, errp)) { |
| 2252 | return true; |
| 2253 | } |
| 2254 | } |
| 2255 | } |
| 2256 | |
| 2257 | return false; |
| 2258 | } |
| 2259 | |
Kevin Wolf | c629b6d | 2023-09-11 11:46:14 +0200 | [diff] [blame] | 2260 | static void GRAPH_RDLOCK |
| 2261 | bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, |
| 2262 | BdrvChild *c, BdrvChildRole role, |
| 2263 | BlockReopenQueue *reopen_queue, |
| 2264 | uint64_t parent_perm, uint64_t parent_shared, |
| 2265 | uint64_t *nperm, uint64_t *nshared) |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2266 | { |
Alberto Garcia | 0b3ca76 | 2019-04-04 14:29:53 +0300 | [diff] [blame] | 2267 | assert(bs->drv && bs->drv->bdrv_child_perm); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2268 | GLOBAL_STATE_CODE(); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2269 | bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, |
Alberto Garcia | 0b3ca76 | 2019-04-04 14:29:53 +0300 | [diff] [blame] | 2270 | parent_perm, parent_shared, |
| 2271 | nperm, nshared); |
Kevin Wolf | e0995dc | 2017-09-14 12:47:11 +0200 | [diff] [blame] | 2272 | /* TODO Take force_share from reopen_queue */ |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2273 | if (child_bs && child_bs->force_share) { |
| 2274 | *nshared = BLK_PERM_ALL; |
| 2275 | } |
| 2276 | } |
| 2277 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2278 | /* |
| 2279 | * Adds the whole subtree of @bs (including @bs itself) to the @list (except for |
| 2280 | * nodes that are already in the @list, of course) so that final list is |
| 2281 | * topologically sorted. Return the result (GSList @list object is updated, so |
| 2282 | * don't use old reference after function call). |
| 2283 | * |
| 2284 | * On function start @list must be already topologically sorted and for any node |
| 2285 | * in the @list the whole subtree of the node must be in the @list as well. The |
| 2286 | * simplest way to satisfy this criteria: use only result of |
| 2287 | * bdrv_topological_dfs() or NULL as @list parameter. |
| 2288 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2289 | static GSList * GRAPH_RDLOCK |
| 2290 | bdrv_topological_dfs(GSList *list, GHashTable *found, BlockDriverState *bs) |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2291 | { |
| 2292 | BdrvChild *child; |
| 2293 | g_autoptr(GHashTable) local_found = NULL; |
| 2294 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2295 | GLOBAL_STATE_CODE(); |
| 2296 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2297 | if (!found) { |
| 2298 | assert(!list); |
| 2299 | found = local_found = g_hash_table_new(NULL, NULL); |
| 2300 | } |
| 2301 | |
| 2302 | if (g_hash_table_contains(found, bs)) { |
| 2303 | return list; |
| 2304 | } |
| 2305 | g_hash_table_add(found, bs); |
| 2306 | |
| 2307 | QLIST_FOREACH(child, &bs->children, next) { |
| 2308 | list = bdrv_topological_dfs(list, found, child->bs); |
| 2309 | } |
| 2310 | |
| 2311 | return g_slist_prepend(list, bs); |
| 2312 | } |
| 2313 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2314 | typedef struct BdrvChildSetPermState { |
| 2315 | BdrvChild *child; |
| 2316 | uint64_t old_perm; |
| 2317 | uint64_t old_shared_perm; |
| 2318 | } BdrvChildSetPermState; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2319 | |
| 2320 | static void bdrv_child_set_perm_abort(void *opaque) |
| 2321 | { |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2322 | BdrvChildSetPermState *s = opaque; |
| 2323 | |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2324 | GLOBAL_STATE_CODE(); |
| 2325 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2326 | s->child->perm = s->old_perm; |
| 2327 | s->child->shared_perm = s->old_shared_perm; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2328 | } |
| 2329 | |
| 2330 | static TransactionActionDrv bdrv_child_set_pem_drv = { |
| 2331 | .abort = bdrv_child_set_perm_abort, |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2332 | .clean = g_free, |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2333 | }; |
| 2334 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2335 | static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, |
| 2336 | uint64_t shared, Transaction *tran) |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2337 | { |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2338 | BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2339 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2340 | |
| 2341 | *s = (BdrvChildSetPermState) { |
| 2342 | .child = c, |
| 2343 | .old_perm = c->perm, |
| 2344 | .old_shared_perm = c->shared_perm, |
| 2345 | }; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2346 | |
| 2347 | c->perm = perm; |
| 2348 | c->shared_perm = shared; |
| 2349 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2350 | tran_add(tran, &bdrv_child_set_pem_drv, s); |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2351 | } |
| 2352 | |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2353 | static void GRAPH_RDLOCK bdrv_drv_set_perm_commit(void *opaque) |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2354 | { |
| 2355 | BlockDriverState *bs = opaque; |
| 2356 | uint64_t cumulative_perms, cumulative_shared_perms; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2357 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2358 | |
| 2359 | if (bs->drv->bdrv_set_perm) { |
| 2360 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
| 2361 | &cumulative_shared_perms); |
| 2362 | bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); |
| 2363 | } |
| 2364 | } |
| 2365 | |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2366 | static void GRAPH_RDLOCK bdrv_drv_set_perm_abort(void *opaque) |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2367 | { |
| 2368 | BlockDriverState *bs = opaque; |
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_abort_perm_update) { |
| 2372 | bs->drv->bdrv_abort_perm_update(bs); |
| 2373 | } |
| 2374 | } |
| 2375 | |
| 2376 | TransactionActionDrv bdrv_drv_set_perm_drv = { |
| 2377 | .abort = bdrv_drv_set_perm_abort, |
| 2378 | .commit = bdrv_drv_set_perm_commit, |
| 2379 | }; |
| 2380 | |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2381 | /* |
| 2382 | * After calling this function, the transaction @tran may only be completed |
| 2383 | * while holding a reader lock for the graph. |
| 2384 | */ |
| 2385 | static int GRAPH_RDLOCK |
| 2386 | bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared_perm, |
| 2387 | Transaction *tran, Error **errp) |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2388 | { |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2389 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2390 | if (!bs->drv) { |
| 2391 | return 0; |
| 2392 | } |
| 2393 | |
| 2394 | if (bs->drv->bdrv_check_perm) { |
| 2395 | int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp); |
| 2396 | if (ret < 0) { |
| 2397 | return ret; |
| 2398 | } |
| 2399 | } |
| 2400 | |
| 2401 | if (tran) { |
| 2402 | tran_add(tran, &bdrv_drv_set_perm_drv, bs); |
| 2403 | } |
| 2404 | |
| 2405 | return 0; |
| 2406 | } |
| 2407 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2408 | typedef struct BdrvReplaceChildState { |
| 2409 | BdrvChild *child; |
| 2410 | BlockDriverState *old_bs; |
| 2411 | } BdrvReplaceChildState; |
| 2412 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2413 | static void GRAPH_WRLOCK bdrv_replace_child_commit(void *opaque) |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2414 | { |
| 2415 | BdrvReplaceChildState *s = opaque; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2416 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2417 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2418 | bdrv_schedule_unref(s->old_bs); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2419 | } |
| 2420 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2421 | static void GRAPH_WRLOCK bdrv_replace_child_abort(void *opaque) |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2422 | { |
| 2423 | BdrvReplaceChildState *s = opaque; |
| 2424 | BlockDriverState *new_bs = s->child->bs; |
| 2425 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2426 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2427 | assert_bdrv_graph_writable(); |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 2428 | |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2429 | /* old_bs reference is transparently moved from @s to @s->child */ |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2430 | if (!s->child->bs) { |
| 2431 | /* |
| 2432 | * The parents were undrained when removing old_bs from the child. New |
| 2433 | * requests can't have been made, though, because the child was empty. |
| 2434 | * |
| 2435 | * TODO Make bdrv_replace_child_noperm() transactionable to avoid |
| 2436 | * undraining the parent in the first place. Once this is done, having |
| 2437 | * new_bs drained when calling bdrv_replace_child_tran() is not a |
| 2438 | * requirement any more. |
| 2439 | */ |
Kevin Wolf | 606ed75 | 2022-11-18 18:41:10 +0100 | [diff] [blame] | 2440 | bdrv_parent_drained_begin_single(s->child); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2441 | assert(!bdrv_parent_drained_poll_single(s->child)); |
| 2442 | } |
| 2443 | assert(s->child->quiesced_parent); |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 2444 | bdrv_replace_child_noperm(s->child, s->old_bs); |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 2445 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2446 | bdrv_unref(new_bs); |
| 2447 | } |
| 2448 | |
| 2449 | static TransactionActionDrv bdrv_replace_child_drv = { |
| 2450 | .commit = bdrv_replace_child_commit, |
| 2451 | .abort = bdrv_replace_child_abort, |
| 2452 | .clean = g_free, |
| 2453 | }; |
| 2454 | |
| 2455 | /* |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2456 | * bdrv_replace_child_tran |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2457 | * |
| 2458 | * Note: real unref of old_bs is done only on commit. |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2459 | * |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2460 | * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be |
| 2461 | * kept drained until the transaction is completed. |
| 2462 | * |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 2463 | * After calling this function, the transaction @tran may only be completed |
| 2464 | * while holding a writer lock for the graph. |
| 2465 | * |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2466 | * The function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2467 | */ |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 2468 | static void GRAPH_WRLOCK |
| 2469 | bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs, |
| 2470 | Transaction *tran) |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2471 | { |
| 2472 | BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2473 | |
| 2474 | assert(child->quiesced_parent); |
| 2475 | assert(!new_bs || new_bs->quiesce_counter); |
| 2476 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2477 | *s = (BdrvReplaceChildState) { |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2478 | .child = child, |
| 2479 | .old_bs = child->bs, |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2480 | }; |
| 2481 | tran_add(tran, &bdrv_replace_child_drv, s); |
| 2482 | |
| 2483 | if (new_bs) { |
| 2484 | bdrv_ref(new_bs); |
| 2485 | } |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 2486 | |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 2487 | bdrv_replace_child_noperm(child, new_bs); |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2488 | /* old_bs reference is transparently moved from @child to @s */ |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2489 | } |
| 2490 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2491 | /* |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2492 | * Refresh permissions in @bs subtree. The function is intended to be called |
| 2493 | * after some graph modification that was done without permission update. |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2494 | * |
| 2495 | * After calling this function, the transaction @tran may only be completed |
| 2496 | * while holding a reader lock for the graph. |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2497 | */ |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2498 | static int GRAPH_RDLOCK |
| 2499 | bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q, |
| 2500 | Transaction *tran, Error **errp) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2501 | { |
| 2502 | BlockDriver *drv = bs->drv; |
| 2503 | BdrvChild *c; |
| 2504 | int ret; |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2505 | uint64_t cumulative_perms, cumulative_shared_perms; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2506 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2507 | |
| 2508 | bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2509 | |
| 2510 | /* Write permissions never work with read-only images */ |
| 2511 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2512 | !bdrv_is_writable_after_reopen(bs, q)) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2513 | { |
Max Reitz | 481e0ee | 2019-05-15 22:15:00 +0200 | [diff] [blame] | 2514 | if (!bdrv_is_writable_after_reopen(bs, NULL)) { |
| 2515 | error_setg(errp, "Block node is read-only"); |
| 2516 | } else { |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2517 | error_setg(errp, "Read-only block node '%s' cannot support " |
| 2518 | "read-write users", bdrv_get_node_name(bs)); |
Max Reitz | 481e0ee | 2019-05-15 22:15:00 +0200 | [diff] [blame] | 2519 | } |
| 2520 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2521 | return -EPERM; |
| 2522 | } |
| 2523 | |
Kevin Wolf | 9c60a5d | 2020-07-16 16:26:00 +0200 | [diff] [blame] | 2524 | /* |
| 2525 | * Unaligned requests will automatically be aligned to bl.request_alignment |
| 2526 | * and without RESIZE we can't extend requests to write to space beyond the |
| 2527 | * end of the image, so it's required that the image size is aligned. |
| 2528 | */ |
| 2529 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && |
| 2530 | !(cumulative_perms & BLK_PERM_RESIZE)) |
| 2531 | { |
| 2532 | if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) { |
| 2533 | error_setg(errp, "Cannot get 'write' permission without 'resize': " |
| 2534 | "Image size is not a multiple of request " |
| 2535 | "alignment"); |
| 2536 | return -EPERM; |
| 2537 | } |
| 2538 | } |
| 2539 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2540 | /* Check this node */ |
| 2541 | if (!drv) { |
| 2542 | return 0; |
| 2543 | } |
| 2544 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2545 | 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] | 2546 | errp); |
| 2547 | if (ret < 0) { |
| 2548 | return ret; |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2549 | } |
| 2550 | |
Kevin Wolf | 78e421c | 2016-12-20 23:25:12 +0100 | [diff] [blame] | 2551 | /* Drivers that never have children can omit .bdrv_child_perm() */ |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2552 | if (!drv->bdrv_child_perm) { |
Kevin Wolf | 78e421c | 2016-12-20 23:25:12 +0100 | [diff] [blame] | 2553 | assert(QLIST_EMPTY(&bs->children)); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2554 | return 0; |
| 2555 | } |
| 2556 | |
| 2557 | /* Check all children */ |
| 2558 | QLIST_FOREACH(c, &bs->children, next) { |
| 2559 | uint64_t cur_perm, cur_shared; |
Max Reitz | 9eab154 | 2019-05-22 19:03:50 +0200 | [diff] [blame] | 2560 | |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2561 | bdrv_child_perm(bs, c->bs, c, c->role, q, |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2562 | cumulative_perms, cumulative_shared_perms, |
| 2563 | &cur_perm, &cur_shared); |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2564 | bdrv_child_set_perm(c, cur_perm, cur_shared, tran); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2565 | } |
| 2566 | |
| 2567 | return 0; |
| 2568 | } |
| 2569 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2570 | /* |
| 2571 | * @list is a product of bdrv_topological_dfs() (may be called several times) - |
| 2572 | * a topologically sorted subgraph. |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2573 | * |
| 2574 | * After calling this function, the transaction @tran may only be completed |
| 2575 | * while holding a reader lock for the graph. |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2576 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2577 | static int GRAPH_RDLOCK |
| 2578 | bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran, |
| 2579 | Error **errp) |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2580 | { |
| 2581 | int ret; |
| 2582 | BlockDriverState *bs; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2583 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2584 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2585 | for ( ; list; list = list->next) { |
| 2586 | bs = list->data; |
| 2587 | |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2588 | if (bdrv_parent_perms_conflict(bs, errp)) { |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2589 | return -EINVAL; |
| 2590 | } |
| 2591 | |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2592 | ret = bdrv_node_refresh_perm(bs, q, tran, errp); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2593 | if (ret < 0) { |
| 2594 | return ret; |
| 2595 | } |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2596 | } |
Vladimir Sementsov-Ogievskiy | 3ef45e0 | 2021-04-28 18:17:40 +0300 | [diff] [blame] | 2597 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2598 | return 0; |
| 2599 | } |
| 2600 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2601 | /* |
| 2602 | * @list is any list of nodes. List is completed by all subtrees and |
| 2603 | * topologically sorted. It's not a problem if some node occurs in the @list |
| 2604 | * several times. |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2605 | * |
| 2606 | * After calling this function, the transaction @tran may only be completed |
| 2607 | * while holding a reader lock for the graph. |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2608 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2609 | static int GRAPH_RDLOCK |
| 2610 | bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran, |
| 2611 | Error **errp) |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2612 | { |
| 2613 | g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL); |
| 2614 | g_autoptr(GSList) refresh_list = NULL; |
| 2615 | |
| 2616 | for ( ; list; list = list->next) { |
| 2617 | refresh_list = bdrv_topological_dfs(refresh_list, found, list->data); |
| 2618 | } |
| 2619 | |
| 2620 | return bdrv_do_refresh_perms(refresh_list, q, tran, errp); |
| 2621 | } |
| 2622 | |
Kevin Wolf | c7a0f2b | 2020-03-10 12:38:25 +0100 | [diff] [blame] | 2623 | void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, |
| 2624 | uint64_t *shared_perm) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2625 | { |
| 2626 | BdrvChild *c; |
| 2627 | uint64_t cumulative_perms = 0; |
| 2628 | uint64_t cumulative_shared_perms = BLK_PERM_ALL; |
| 2629 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2630 | GLOBAL_STATE_CODE(); |
| 2631 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2632 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
| 2633 | cumulative_perms |= c->perm; |
| 2634 | cumulative_shared_perms &= c->shared_perm; |
| 2635 | } |
| 2636 | |
| 2637 | *perm = cumulative_perms; |
| 2638 | *shared_perm = cumulative_shared_perms; |
| 2639 | } |
| 2640 | |
Fam Zheng | 5176196 | 2017-05-03 00:35:36 +0800 | [diff] [blame] | 2641 | char *bdrv_perm_names(uint64_t perm) |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2642 | { |
| 2643 | struct perm_name { |
| 2644 | uint64_t perm; |
| 2645 | const char *name; |
| 2646 | } permissions[] = { |
| 2647 | { BLK_PERM_CONSISTENT_READ, "consistent read" }, |
| 2648 | { BLK_PERM_WRITE, "write" }, |
| 2649 | { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, |
| 2650 | { BLK_PERM_RESIZE, "resize" }, |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2651 | { 0, NULL } |
| 2652 | }; |
| 2653 | |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2654 | GString *result = g_string_sized_new(30); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2655 | struct perm_name *p; |
| 2656 | |
| 2657 | for (p = permissions; p->name; p++) { |
| 2658 | if (perm & p->perm) { |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2659 | if (result->len > 0) { |
| 2660 | g_string_append(result, ", "); |
| 2661 | } |
| 2662 | g_string_append(result, p->name); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2663 | } |
| 2664 | } |
| 2665 | |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2666 | return g_string_free(result, FALSE); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2667 | } |
| 2668 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2669 | |
Kevin Wolf | bce73bc | 2023-09-11 11:46:13 +0200 | [diff] [blame] | 2670 | /* |
| 2671 | * @tran is allowed to be NULL. In this case no rollback is possible. |
| 2672 | * |
| 2673 | * After calling this function, the transaction @tran may only be completed |
| 2674 | * while holding a reader lock for the graph. |
| 2675 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 2676 | static int GRAPH_RDLOCK |
| 2677 | bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran, Error **errp) |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2678 | { |
| 2679 | int ret; |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2680 | Transaction *local_tran = NULL; |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2681 | g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2682 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2683 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2684 | if (!tran) { |
| 2685 | tran = local_tran = tran_new(); |
| 2686 | } |
| 2687 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2688 | ret = bdrv_do_refresh_perms(list, NULL, tran, errp); |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2689 | |
| 2690 | if (local_tran) { |
| 2691 | tran_finalize(local_tran, ret); |
| 2692 | } |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2693 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2694 | return ret; |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2695 | } |
| 2696 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2697 | int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, |
| 2698 | Error **errp) |
| 2699 | { |
Max Reitz | 1046779 | 2019-05-22 19:03:51 +0200 | [diff] [blame] | 2700 | Error *local_err = NULL; |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2701 | Transaction *tran = tran_new(); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2702 | int ret; |
| 2703 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2704 | GLOBAL_STATE_CODE(); |
| 2705 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2706 | bdrv_child_set_perm(c, perm, shared, tran); |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2707 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2708 | ret = bdrv_refresh_perms(c->bs, tran, &local_err); |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2709 | |
| 2710 | tran_finalize(tran, ret); |
| 2711 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2712 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | 071b474 | 2020-11-06 15:42:41 +0300 | [diff] [blame] | 2713 | if ((perm & ~c->perm) || (c->shared_perm & ~shared)) { |
| 2714 | /* tighten permissions */ |
Max Reitz | 1046779 | 2019-05-22 19:03:51 +0200 | [diff] [blame] | 2715 | error_propagate(errp, local_err); |
| 2716 | } else { |
| 2717 | /* |
| 2718 | * Our caller may intend to only loosen restrictions and |
| 2719 | * does not expect this function to fail. Errors are not |
| 2720 | * fatal in such a case, so we can just hide them from our |
| 2721 | * caller. |
| 2722 | */ |
| 2723 | error_free(local_err); |
| 2724 | ret = 0; |
| 2725 | } |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2726 | } |
| 2727 | |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2728 | return ret; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2729 | } |
| 2730 | |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2731 | int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp) |
| 2732 | { |
| 2733 | uint64_t parent_perms, parent_shared; |
| 2734 | uint64_t perms, shared; |
| 2735 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2736 | GLOBAL_STATE_CODE(); |
| 2737 | |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2738 | bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2739 | bdrv_child_perm(bs, c->bs, c, c->role, NULL, |
Max Reitz | bf8e925 | 2020-05-13 13:05:16 +0200 | [diff] [blame] | 2740 | parent_perms, parent_shared, &perms, &shared); |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2741 | |
| 2742 | return bdrv_child_try_set_perm(c, perms, shared, errp); |
| 2743 | } |
| 2744 | |
Max Reitz | 87278af | 2020-05-13 13:05:40 +0200 | [diff] [blame] | 2745 | /* |
| 2746 | * Default implementation for .bdrv_child_perm() for block filters: |
| 2747 | * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the |
| 2748 | * filtered child. |
| 2749 | */ |
| 2750 | static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 87278af | 2020-05-13 13:05:40 +0200 | [diff] [blame] | 2751 | BdrvChildRole role, |
| 2752 | BlockReopenQueue *reopen_queue, |
| 2753 | uint64_t perm, uint64_t shared, |
| 2754 | uint64_t *nperm, uint64_t *nshared) |
Kevin Wolf | 6a1b9ee | 2016-12-15 11:27:32 +0100 | [diff] [blame] | 2755 | { |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2756 | GLOBAL_STATE_CODE(); |
Kevin Wolf | e444fa8 | 2019-08-02 15:59:41 +0200 | [diff] [blame] | 2757 | *nperm = perm & DEFAULT_PERM_PASSTHROUGH; |
| 2758 | *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; |
Kevin Wolf | 6a1b9ee | 2016-12-15 11:27:32 +0100 | [diff] [blame] | 2759 | } |
| 2760 | |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2761 | static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2762 | BdrvChildRole role, |
| 2763 | BlockReopenQueue *reopen_queue, |
| 2764 | uint64_t perm, uint64_t shared, |
| 2765 | uint64_t *nperm, uint64_t *nshared) |
| 2766 | { |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2767 | assert(role & BDRV_CHILD_COW); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2768 | GLOBAL_STATE_CODE(); |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2769 | |
| 2770 | /* |
| 2771 | * We want consistent read from backing files if the parent needs it. |
| 2772 | * No other operations are performed on backing files. |
| 2773 | */ |
| 2774 | perm &= BLK_PERM_CONSISTENT_READ; |
| 2775 | |
| 2776 | /* |
| 2777 | * If the parent can deal with changing data, we're okay with a |
| 2778 | * writable and resizable backing file. |
| 2779 | * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? |
| 2780 | */ |
| 2781 | if (shared & BLK_PERM_WRITE) { |
| 2782 | shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2783 | } else { |
| 2784 | shared = 0; |
| 2785 | } |
| 2786 | |
Vladimir Sementsov-Ogievskiy | 64631f3 | 2021-09-02 12:37:54 +0300 | [diff] [blame] | 2787 | shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED; |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2788 | |
| 2789 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 2790 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2791 | } |
| 2792 | |
| 2793 | *nperm = perm; |
| 2794 | *nshared = shared; |
| 2795 | } |
| 2796 | |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2797 | static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2798 | BdrvChildRole role, |
| 2799 | BlockReopenQueue *reopen_queue, |
| 2800 | uint64_t perm, uint64_t shared, |
| 2801 | uint64_t *nperm, uint64_t *nshared) |
| 2802 | { |
| 2803 | int flags; |
| 2804 | |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2805 | GLOBAL_STATE_CODE(); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2806 | assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)); |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2807 | |
| 2808 | flags = bdrv_reopen_get_flags(reopen_queue, bs); |
| 2809 | |
| 2810 | /* |
| 2811 | * Apart from the modifications below, the same permissions are |
| 2812 | * forwarded and left alone as for filters |
| 2813 | */ |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2814 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2815 | perm, shared, &perm, &shared); |
| 2816 | |
Max Reitz | f889054 | 2020-05-13 13:05:28 +0200 | [diff] [blame] | 2817 | if (role & BDRV_CHILD_METADATA) { |
| 2818 | /* Format drivers may touch metadata even if the guest doesn't write */ |
| 2819 | if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { |
| 2820 | perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2821 | } |
| 2822 | |
| 2823 | /* |
| 2824 | * bs->file always needs to be consistent because of the |
| 2825 | * metadata. We can never allow other users to resize or write |
| 2826 | * to it. |
| 2827 | */ |
| 2828 | if (!(flags & BDRV_O_NO_IO)) { |
| 2829 | perm |= BLK_PERM_CONSISTENT_READ; |
| 2830 | } |
| 2831 | shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2832 | } |
| 2833 | |
Max Reitz | f889054 | 2020-05-13 13:05:28 +0200 | [diff] [blame] | 2834 | if (role & BDRV_CHILD_DATA) { |
| 2835 | /* |
| 2836 | * Technically, everything in this block is a subset of the |
| 2837 | * BDRV_CHILD_METADATA path taken above, and so this could |
| 2838 | * be an "else if" branch. However, that is not obvious, and |
| 2839 | * this function is not performance critical, therefore we let |
| 2840 | * this be an independent "if". |
| 2841 | */ |
| 2842 | |
| 2843 | /* |
| 2844 | * We cannot allow other users to resize the file because the |
| 2845 | * format driver might have some assumptions about the size |
| 2846 | * (e.g. because it is stored in metadata, or because the file |
| 2847 | * is split into fixed-size data files). |
| 2848 | */ |
| 2849 | shared &= ~BLK_PERM_RESIZE; |
| 2850 | |
| 2851 | /* |
| 2852 | * WRITE_UNCHANGED often cannot be performed as such on the |
| 2853 | * data file. For example, the qcow2 driver may still need to |
| 2854 | * write copied clusters on copy-on-read. |
| 2855 | */ |
| 2856 | if (perm & BLK_PERM_WRITE_UNCHANGED) { |
| 2857 | perm |= BLK_PERM_WRITE; |
| 2858 | } |
| 2859 | |
| 2860 | /* |
| 2861 | * If the data file is written to, the format driver may |
| 2862 | * expect to be able to resize it by writing beyond the EOF. |
| 2863 | */ |
| 2864 | if (perm & BLK_PERM_WRITE) { |
| 2865 | perm |= BLK_PERM_RESIZE; |
| 2866 | } |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2867 | } |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2868 | |
| 2869 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 2870 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2871 | } |
| 2872 | |
| 2873 | *nperm = perm; |
| 2874 | *nshared = shared; |
| 2875 | } |
| 2876 | |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2877 | void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2878 | BdrvChildRole role, BlockReopenQueue *reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2879 | uint64_t perm, uint64_t shared, |
| 2880 | uint64_t *nperm, uint64_t *nshared) |
| 2881 | { |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2882 | GLOBAL_STATE_CODE(); |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2883 | if (role & BDRV_CHILD_FILTERED) { |
| 2884 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | |
| 2885 | BDRV_CHILD_COW))); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2886 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2887 | perm, shared, nperm, nshared); |
| 2888 | } else if (role & BDRV_CHILD_COW) { |
| 2889 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA))); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2890 | bdrv_default_perms_for_cow(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2891 | perm, shared, nperm, nshared); |
| 2892 | } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) { |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2893 | bdrv_default_perms_for_storage(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2894 | perm, shared, nperm, nshared); |
| 2895 | } else { |
| 2896 | g_assert_not_reached(); |
| 2897 | } |
| 2898 | } |
| 2899 | |
Max Reitz | 7b1d9c4 | 2019-11-08 13:34:51 +0100 | [diff] [blame] | 2900 | uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm) |
| 2901 | { |
| 2902 | static const uint64_t permissions[] = { |
| 2903 | [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ, |
| 2904 | [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE, |
| 2905 | [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED, |
| 2906 | [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE, |
Max Reitz | 7b1d9c4 | 2019-11-08 13:34:51 +0100 | [diff] [blame] | 2907 | }; |
| 2908 | |
| 2909 | QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX); |
| 2910 | QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1); |
| 2911 | |
| 2912 | assert(qapi_perm < BLOCK_PERMISSION__MAX); |
| 2913 | |
| 2914 | return permissions[qapi_perm]; |
| 2915 | } |
| 2916 | |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2917 | /* |
| 2918 | * Replaces the node that a BdrvChild points to without updating permissions. |
| 2919 | * |
| 2920 | * 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] | 2921 | * @child. |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2922 | */ |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 2923 | static void GRAPH_WRLOCK |
| 2924 | bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs) |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2925 | { |
| 2926 | BlockDriverState *old_bs = child->bs; |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2927 | int new_bs_quiesce_counter; |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2928 | |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 2929 | assert(!child->frozen); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2930 | |
| 2931 | /* |
| 2932 | * If we want to change the BdrvChild to point to a drained node as its new |
| 2933 | * child->bs, we need to make sure that its new parent is drained, too. In |
| 2934 | * other words, either child->quiesce_parent must already be true or we must |
| 2935 | * be able to set it and keep the parent's quiesce_counter consistent with |
| 2936 | * that, but without polling or starting new requests (this function |
| 2937 | * guarantees that it doesn't poll, and starting new requests would be |
| 2938 | * against the invariants of drain sections). |
| 2939 | * |
| 2940 | * To keep things simple, we pick the first option (child->quiesce_parent |
| 2941 | * must already be true). We also generalise the rule a bit to make it |
| 2942 | * easier to verify in callers and more likely to be covered in test cases: |
| 2943 | * The parent must be quiesced through this child even if new_bs isn't |
| 2944 | * currently drained. |
| 2945 | * |
| 2946 | * The only exception is for callers that always pass new_bs == NULL. In |
| 2947 | * this case, we obviously never need to consider the case of a drained |
| 2948 | * new_bs, so we can keep the callers simpler by allowing them not to drain |
| 2949 | * the parent. |
| 2950 | */ |
| 2951 | assert(!new_bs || child->quiesced_parent); |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 2952 | assert(old_bs != new_bs); |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 2953 | GLOBAL_STATE_CODE(); |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 2954 | |
Fam Zheng | bb2614e | 2017-04-07 14:54:10 +0800 | [diff] [blame] | 2955 | if (old_bs && new_bs) { |
| 2956 | assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); |
| 2957 | } |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2958 | |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2959 | if (old_bs) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2960 | if (child->klass->detach) { |
| 2961 | child->klass->detach(child); |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 2962 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2963 | QLIST_REMOVE(child, next_parent); |
| 2964 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2965 | |
| 2966 | child->bs = new_bs; |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 2967 | |
| 2968 | if (new_bs) { |
| 2969 | QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2970 | if (child->klass->attach) { |
| 2971 | child->klass->attach(child); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 2972 | } |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 2973 | } |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2974 | |
| 2975 | /* |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2976 | * If the parent was drained through this BdrvChild previously, but new_bs |
| 2977 | * is not drained, allow requests to come in only after the new node has |
| 2978 | * been attached. |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2979 | */ |
Kevin Wolf | 57e05be | 2022-11-18 18:41:06 +0100 | [diff] [blame] | 2980 | new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0); |
| 2981 | if (!new_bs_quiesce_counter && child->quiesced_parent) { |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2982 | bdrv_parent_drained_end_single(child); |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2983 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2984 | } |
| 2985 | |
Hanna Reitz | 04c9c3a | 2021-11-15 15:53:59 +0100 | [diff] [blame] | 2986 | /** |
| 2987 | * Free the given @child. |
| 2988 | * |
| 2989 | * The child must be empty (i.e. `child->bs == NULL`) and it must be |
| 2990 | * unused (i.e. not in a children list). |
| 2991 | */ |
| 2992 | static void bdrv_child_free(BdrvChild *child) |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2993 | { |
| 2994 | assert(!child->bs); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2995 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 680e0cc | 2023-09-29 16:51:56 +0200 | [diff] [blame] | 2996 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 2997 | |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 2998 | assert(!child->next.le_prev); /* not in children list */ |
Hanna Reitz | 04c9c3a | 2021-11-15 15:53:59 +0100 | [diff] [blame] | 2999 | |
| 3000 | g_free(child->name); |
| 3001 | g_free(child); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3002 | } |
| 3003 | |
| 3004 | typedef struct BdrvAttachChildCommonState { |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3005 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3006 | AioContext *old_parent_ctx; |
| 3007 | AioContext *old_child_ctx; |
| 3008 | } BdrvAttachChildCommonState; |
| 3009 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3010 | static void GRAPH_WRLOCK bdrv_attach_child_common_abort(void *opaque) |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3011 | { |
| 3012 | BdrvAttachChildCommonState *s = opaque; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3013 | BlockDriverState *bs = s->child->bs; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3014 | |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 3015 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3016 | assert_bdrv_graph_writable(); |
Kevin Wolf | ad29eb3 | 2023-09-11 11:46:07 +0200 | [diff] [blame] | 3017 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3018 | bdrv_replace_child_noperm(s->child, NULL); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3019 | |
| 3020 | if (bdrv_get_aio_context(bs) != s->old_child_ctx) { |
Emanuele Giuseppe Esposito | 142e690 | 2022-10-25 04:49:52 -0400 | [diff] [blame] | 3021 | bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3022 | } |
| 3023 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3024 | 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] | 3025 | Transaction *tran; |
| 3026 | GHashTable *visited; |
| 3027 | bool ret; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3028 | |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3029 | tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3030 | |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3031 | /* No need to visit `child`, because it has been detached already */ |
| 3032 | visited = g_hash_table_new(NULL, NULL); |
| 3033 | ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx, |
| 3034 | visited, tran, &error_abort); |
| 3035 | g_hash_table_destroy(visited); |
| 3036 | |
| 3037 | /* transaction is supposed to always succeed */ |
| 3038 | assert(ret == true); |
| 3039 | tran_commit(tran); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3040 | } |
| 3041 | |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3042 | bdrv_schedule_unref(bs); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3043 | bdrv_child_free(s->child); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3044 | } |
| 3045 | |
| 3046 | static TransactionActionDrv bdrv_attach_child_common_drv = { |
| 3047 | .abort = bdrv_attach_child_common_abort, |
| 3048 | .clean = g_free, |
| 3049 | }; |
| 3050 | |
| 3051 | /* |
| 3052 | * 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] | 3053 | * |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 3054 | * Function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3055 | * |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3056 | * After calling this function, the transaction @tran may only be completed |
| 3057 | * while holding a writer lock for the graph. |
| 3058 | * |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3059 | * Returns new created child. |
Kevin Wolf | c066e80 | 2023-06-05 10:57:05 +0200 | [diff] [blame] | 3060 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3061 | * Both @parent_bs and @child_bs can move to a different AioContext in this |
| 3062 | * function. |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3063 | */ |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3064 | static BdrvChild * GRAPH_WRLOCK |
| 3065 | bdrv_attach_child_common(BlockDriverState *child_bs, |
| 3066 | const char *child_name, |
| 3067 | const BdrvChildClass *child_class, |
| 3068 | BdrvChildRole child_role, |
| 3069 | uint64_t perm, uint64_t shared_perm, |
| 3070 | void *opaque, |
| 3071 | Transaction *tran, Error **errp) |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3072 | { |
| 3073 | BdrvChild *new_child; |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 3074 | AioContext *parent_ctx; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3075 | AioContext *child_ctx = bdrv_get_aio_context(child_bs); |
| 3076 | |
Vladimir Sementsov-Ogievskiy | da261b6 | 2021-06-01 10:52:17 +0300 | [diff] [blame] | 3077 | assert(child_class->get_parent_desc); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3078 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3079 | |
| 3080 | new_child = g_new(BdrvChild, 1); |
| 3081 | *new_child = (BdrvChild) { |
| 3082 | .bs = NULL, |
| 3083 | .name = g_strdup(child_name), |
| 3084 | .klass = child_class, |
| 3085 | .role = child_role, |
| 3086 | .perm = perm, |
| 3087 | .shared_perm = shared_perm, |
| 3088 | .opaque = opaque, |
| 3089 | }; |
| 3090 | |
| 3091 | /* |
| 3092 | * If the AioContexts don't match, first try to move the subtree of |
| 3093 | * child_bs into the AioContext of the new parent. If this doesn't work, |
| 3094 | * try moving the parent into the AioContext of child_bs instead. |
| 3095 | */ |
| 3096 | parent_ctx = bdrv_child_get_parent_aio_context(new_child); |
| 3097 | if (child_ctx != parent_ctx) { |
| 3098 | Error *local_err = NULL; |
Emanuele Giuseppe Esposito | 142e690 | 2022-10-25 04:49:52 -0400 | [diff] [blame] | 3099 | int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL, |
| 3100 | &local_err); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3101 | |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3102 | if (ret < 0 && child_class->change_aio_ctx) { |
Markus Armbruster | fb2575f | 2023-09-21 14:13:11 +0200 | [diff] [blame] | 3103 | Transaction *aio_ctx_tran = tran_new(); |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3104 | GHashTable *visited = g_hash_table_new(NULL, NULL); |
| 3105 | bool ret_child; |
| 3106 | |
| 3107 | g_hash_table_add(visited, new_child); |
| 3108 | ret_child = child_class->change_aio_ctx(new_child, child_ctx, |
Markus Armbruster | fb2575f | 2023-09-21 14:13:11 +0200 | [diff] [blame] | 3109 | visited, aio_ctx_tran, |
| 3110 | NULL); |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3111 | if (ret_child == true) { |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3112 | error_free(local_err); |
| 3113 | ret = 0; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3114 | } |
Markus Armbruster | fb2575f | 2023-09-21 14:13:11 +0200 | [diff] [blame] | 3115 | tran_finalize(aio_ctx_tran, ret_child == true ? 0 : -1); |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3116 | g_hash_table_destroy(visited); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3117 | } |
| 3118 | |
| 3119 | if (ret < 0) { |
| 3120 | error_propagate(errp, local_err); |
Hanna Reitz | 04c9c3a | 2021-11-15 15:53:59 +0100 | [diff] [blame] | 3121 | bdrv_child_free(new_child); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3122 | return NULL; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3123 | } |
| 3124 | } |
| 3125 | |
| 3126 | bdrv_ref(child_bs); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 3127 | /* |
| 3128 | * Let every new BdrvChild start with a drained parent. Inserting the child |
| 3129 | * in the graph with bdrv_replace_child_noperm() will undrain it if |
| 3130 | * @child_bs is not drained. |
| 3131 | * |
| 3132 | * The child was only just created and is not yet visible in global state |
| 3133 | * until bdrv_replace_child_noperm() inserts it into the graph, so nobody |
| 3134 | * could have sent requests and polling is not necessary. |
| 3135 | * |
| 3136 | * Note that this means that the parent isn't fully drained yet, we only |
| 3137 | * stop new requests from coming in. This is fine, we don't care about the |
| 3138 | * old requests here, they are not for this child. If another place enters a |
| 3139 | * drain section for the same parent, but wants it to be fully quiesced, it |
| 3140 | * will not run most of the the code in .drained_begin() again (which is not |
| 3141 | * a problem, we already did this), but it will still poll until the parent |
| 3142 | * is fully quiesced, so it will not be negatively affected either. |
| 3143 | */ |
Kevin Wolf | 606ed75 | 2022-11-18 18:41:10 +0100 | [diff] [blame] | 3144 | bdrv_parent_drained_begin_single(new_child); |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 3145 | bdrv_replace_child_noperm(new_child, child_bs); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3146 | |
| 3147 | BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1); |
| 3148 | *s = (BdrvAttachChildCommonState) { |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3149 | .child = new_child, |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3150 | .old_parent_ctx = parent_ctx, |
| 3151 | .old_child_ctx = child_ctx, |
| 3152 | }; |
| 3153 | tran_add(tran, &bdrv_attach_child_common_drv, s); |
| 3154 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3155 | return new_child; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3156 | } |
| 3157 | |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3158 | /* |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 3159 | * Function doesn't update permissions, caller is responsible for this. |
Kevin Wolf | c066e80 | 2023-06-05 10:57:05 +0200 | [diff] [blame] | 3160 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3161 | * Both @parent_bs and @child_bs can move to a different AioContext in this |
| 3162 | * function. |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3163 | * |
| 3164 | * After calling this function, the transaction @tran may only be completed |
| 3165 | * while holding a writer lock for the graph. |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3166 | */ |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3167 | static BdrvChild * GRAPH_WRLOCK |
| 3168 | bdrv_attach_child_noperm(BlockDriverState *parent_bs, |
| 3169 | BlockDriverState *child_bs, |
| 3170 | const char *child_name, |
| 3171 | const BdrvChildClass *child_class, |
| 3172 | BdrvChildRole child_role, |
| 3173 | Transaction *tran, |
| 3174 | Error **errp) |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3175 | { |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3176 | uint64_t perm, shared_perm; |
| 3177 | |
| 3178 | assert(parent_bs->drv); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3179 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3180 | |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 3181 | if (bdrv_recurse_has_child(child_bs, parent_bs)) { |
| 3182 | error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle", |
| 3183 | child_bs->node_name, child_name, parent_bs->node_name); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3184 | return NULL; |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 3185 | } |
| 3186 | |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3187 | bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); |
| 3188 | bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, |
| 3189 | perm, shared_perm, &perm, &shared_perm); |
| 3190 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3191 | return bdrv_attach_child_common(child_bs, child_name, child_class, |
| 3192 | child_role, perm, shared_perm, parent_bs, |
| 3193 | tran, errp); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3194 | } |
| 3195 | |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3196 | /* |
| 3197 | * This function steals the reference to child_bs from the caller. |
| 3198 | * That reference is later dropped by bdrv_root_unref_child(). |
| 3199 | * |
| 3200 | * On failure NULL is returned, errp is set and the reference to |
| 3201 | * child_bs is also dropped. |
| 3202 | */ |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3203 | BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, |
| 3204 | const char *child_name, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3205 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3206 | BdrvChildRole child_role, |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3207 | uint64_t perm, uint64_t shared_perm, |
| 3208 | void *opaque, Error **errp) |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3209 | { |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3210 | int ret; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3211 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3212 | Transaction *tran = tran_new(); |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3213 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 3214 | GLOBAL_STATE_CODE(); |
| 3215 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3216 | child = bdrv_attach_child_common(child_bs, child_name, child_class, |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3217 | child_role, perm, shared_perm, opaque, |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3218 | tran, errp); |
| 3219 | if (!child) { |
| 3220 | ret = -EINVAL; |
Kevin Wolf | e878bb1 | 2021-05-03 13:05:54 +0200 | [diff] [blame] | 3221 | goto out; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3222 | } |
| 3223 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3224 | ret = bdrv_refresh_perms(child_bs, tran, errp); |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3225 | |
Kevin Wolf | e878bb1 | 2021-05-03 13:05:54 +0200 | [diff] [blame] | 3226 | out: |
| 3227 | tran_finalize(tran, ret); |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3228 | |
Kevin Wolf | 03b9eac | 2023-10-27 17:53:13 +0200 | [diff] [blame] | 3229 | bdrv_schedule_unref(child_bs); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3230 | |
| 3231 | return ret < 0 ? NULL : child; |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3232 | } |
| 3233 | |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3234 | /* |
| 3235 | * This function transfers the reference to child_bs from the caller |
| 3236 | * to parent_bs. That reference is later dropped by parent_bs on |
| 3237 | * bdrv_close() or if someone calls bdrv_unref_child(). |
| 3238 | * |
| 3239 | * On failure NULL is returned, errp is set and the reference to |
| 3240 | * child_bs is also dropped. |
| 3241 | */ |
Wen Congyang | 98292c6 | 2016-05-10 15:36:38 +0800 | [diff] [blame] | 3242 | BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, |
| 3243 | BlockDriverState *child_bs, |
| 3244 | const char *child_name, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3245 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3246 | BdrvChildRole child_role, |
Kevin Wolf | 8b2ff52 | 2016-12-20 22:21:17 +0100 | [diff] [blame] | 3247 | Error **errp) |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3248 | { |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3249 | int ret; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3250 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3251 | Transaction *tran = tran_new(); |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3252 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3253 | GLOBAL_STATE_CODE(); |
| 3254 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3255 | child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, |
| 3256 | child_class, child_role, tran, errp); |
| 3257 | if (!child) { |
| 3258 | ret = -EINVAL; |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3259 | goto out; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3260 | } |
| 3261 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3262 | ret = bdrv_refresh_perms(parent_bs, tran, errp); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3263 | if (ret < 0) { |
| 3264 | goto out; |
| 3265 | } |
| 3266 | |
| 3267 | out: |
| 3268 | tran_finalize(tran, ret); |
| 3269 | |
Kevin Wolf | afdaeb9 | 2023-09-11 11:46:11 +0200 | [diff] [blame] | 3270 | bdrv_schedule_unref(child_bs); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3271 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3272 | return ret < 0 ? NULL : child; |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3273 | } |
| 3274 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 3275 | /* Callers must ensure that child->frozen is false. */ |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3276 | void bdrv_root_unref_child(BdrvChild *child) |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3277 | { |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3278 | BlockDriverState *child_bs = child->bs; |
Kevin Wolf | 779020c | 2015-10-13 14:09:44 +0200 | [diff] [blame] | 3279 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3280 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3281 | bdrv_replace_child_noperm(child, NULL); |
| 3282 | bdrv_child_free(child); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3283 | |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3284 | if (child_bs) { |
| 3285 | /* |
| 3286 | * Update permissions for old node. We're just taking a parent away, so |
| 3287 | * we're loosening restrictions. Errors of permission update are not |
| 3288 | * fatal in this case, ignore them. |
| 3289 | */ |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3290 | bdrv_refresh_perms(child_bs, NULL, NULL); |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3291 | |
| 3292 | /* |
| 3293 | * When the parent requiring a non-default AioContext is removed, the |
| 3294 | * node moves back to the main AioContext |
| 3295 | */ |
| 3296 | bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL, |
| 3297 | NULL); |
| 3298 | } |
| 3299 | |
Kevin Wolf | ede01e4 | 2023-09-11 11:46:18 +0200 | [diff] [blame] | 3300 | bdrv_schedule_unref(child_bs); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3301 | } |
| 3302 | |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3303 | typedef struct BdrvSetInheritsFrom { |
| 3304 | BlockDriverState *bs; |
| 3305 | BlockDriverState *old_inherits_from; |
| 3306 | } BdrvSetInheritsFrom; |
| 3307 | |
| 3308 | static void bdrv_set_inherits_from_abort(void *opaque) |
| 3309 | { |
| 3310 | BdrvSetInheritsFrom *s = opaque; |
| 3311 | |
| 3312 | s->bs->inherits_from = s->old_inherits_from; |
| 3313 | } |
| 3314 | |
| 3315 | static TransactionActionDrv bdrv_set_inherits_from_drv = { |
| 3316 | .abort = bdrv_set_inherits_from_abort, |
| 3317 | .clean = g_free, |
| 3318 | }; |
| 3319 | |
| 3320 | /* @tran is allowed to be NULL. In this case no rollback is possible */ |
| 3321 | static void bdrv_set_inherits_from(BlockDriverState *bs, |
| 3322 | BlockDriverState *new_inherits_from, |
| 3323 | Transaction *tran) |
| 3324 | { |
| 3325 | if (tran) { |
| 3326 | BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1); |
| 3327 | |
| 3328 | *s = (BdrvSetInheritsFrom) { |
| 3329 | .bs = bs, |
| 3330 | .old_inherits_from = bs->inherits_from, |
| 3331 | }; |
| 3332 | |
| 3333 | tran_add(tran, &bdrv_set_inherits_from_drv, s); |
| 3334 | } |
| 3335 | |
| 3336 | bs->inherits_from = new_inherits_from; |
| 3337 | } |
| 3338 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3339 | /** |
| 3340 | * Clear all inherits_from pointers from children and grandchildren of |
| 3341 | * @root that point to @root, where necessary. |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3342 | * @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] | 3343 | */ |
Kevin Wolf | 32a8aba | 2023-09-11 11:46:19 +0200 | [diff] [blame] | 3344 | static void GRAPH_WRLOCK |
| 3345 | bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child, |
| 3346 | Transaction *tran) |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3347 | { |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3348 | BdrvChild *c; |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3349 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3350 | if (child->bs->inherits_from == root) { |
| 3351 | /* |
| 3352 | * Remove inherits_from only when the last reference between root and |
| 3353 | * child->bs goes away. |
| 3354 | */ |
| 3355 | QLIST_FOREACH(c, &root->children, next) { |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3356 | if (c != child && c->bs == child->bs) { |
| 3357 | break; |
| 3358 | } |
| 3359 | } |
| 3360 | if (c == NULL) { |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3361 | bdrv_set_inherits_from(child->bs, NULL, tran); |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3362 | } |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3363 | } |
| 3364 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3365 | QLIST_FOREACH(c, &child->bs->children, next) { |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3366 | bdrv_unset_inherits_from(root, c, tran); |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3367 | } |
| 3368 | } |
| 3369 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 3370 | /* Callers must ensure that child->frozen is false. */ |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3371 | void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) |
| 3372 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3373 | GLOBAL_STATE_CODE(); |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3374 | if (child == NULL) { |
| 3375 | return; |
| 3376 | } |
| 3377 | |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3378 | bdrv_unset_inherits_from(parent, child, NULL); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3379 | bdrv_root_unref_child(child); |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3380 | } |
| 3381 | |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3382 | |
Kevin Wolf | 356f4ef | 2023-09-11 11:46:15 +0200 | [diff] [blame] | 3383 | static void GRAPH_RDLOCK |
| 3384 | bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3385 | { |
| 3386 | BdrvChild *c; |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 3387 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3388 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3389 | if (c->klass->change_media) { |
| 3390 | c->klass->change_media(c, load); |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3391 | } |
| 3392 | } |
| 3393 | } |
| 3394 | |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3395 | /* Return true if you can reach parent going through child->inherits_from |
| 3396 | * recursively. If parent or child are NULL, return false */ |
| 3397 | static bool bdrv_inherits_from_recursive(BlockDriverState *child, |
| 3398 | BlockDriverState *parent) |
| 3399 | { |
| 3400 | while (child && child != parent) { |
| 3401 | child = child->inherits_from; |
| 3402 | } |
| 3403 | |
| 3404 | return child != NULL; |
| 3405 | } |
| 3406 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3407 | /* |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 3408 | * Return the BdrvChildRole for @bs's backing child. bs->backing is |
| 3409 | * mostly used for COW backing children (role = COW), but also for |
| 3410 | * filtered children (role = FILTERED | PRIMARY). |
| 3411 | */ |
| 3412 | static BdrvChildRole bdrv_backing_role(BlockDriverState *bs) |
| 3413 | { |
| 3414 | if (bs->drv && bs->drv->is_filter) { |
| 3415 | return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; |
| 3416 | } else { |
| 3417 | return BDRV_CHILD_COW; |
| 3418 | } |
| 3419 | } |
| 3420 | |
| 3421 | /* |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3422 | * Sets the bs->backing or bs->file link of a BDS. A new reference is created; |
| 3423 | * 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] | 3424 | * |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3425 | * If the respective child is already present (i.e. we're detaching a node), |
| 3426 | * that child node must be drained. |
| 3427 | * |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 3428 | * Function doesn't update permissions, caller is responsible for this. |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 3429 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3430 | * Both @parent_bs and @child_bs can move to a different AioContext in this |
| 3431 | * function. |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 3432 | * |
| 3433 | * After calling this function, the transaction @tran may only be completed |
| 3434 | * while holding a writer lock for the graph. |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3435 | */ |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3436 | static int GRAPH_WRLOCK |
| 3437 | bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs, |
| 3438 | BlockDriverState *child_bs, |
| 3439 | bool is_backing, |
| 3440 | Transaction *tran, Error **errp) |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3441 | { |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3442 | bool update_inherits_from = |
| 3443 | bdrv_inherits_from_recursive(child_bs, parent_bs); |
| 3444 | BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file; |
| 3445 | BdrvChildRole role; |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3446 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3447 | GLOBAL_STATE_CODE(); |
| 3448 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3449 | if (!parent_bs->drv) { |
| 3450 | /* |
| 3451 | * Node without drv is an object without a class :/. TODO: finally fix |
| 3452 | * qcow2 driver to never clear bs->drv and implement format corruption |
| 3453 | * handling in other way. |
| 3454 | */ |
| 3455 | error_setg(errp, "Node corrupted"); |
| 3456 | return -EINVAL; |
| 3457 | } |
| 3458 | |
| 3459 | if (child && child->frozen) { |
| 3460 | error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'", |
| 3461 | child->name, parent_bs->node_name, child->bs->node_name); |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3462 | return -EPERM; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 3463 | } |
| 3464 | |
Vladimir Sementsov-Ogievskiy | 25f78d9 | 2021-06-10 15:05:34 +0300 | [diff] [blame] | 3465 | if (is_backing && !parent_bs->drv->is_filter && |
| 3466 | !parent_bs->drv->supports_backing) |
| 3467 | { |
| 3468 | error_setg(errp, "Driver '%s' of node '%s' does not support backing " |
| 3469 | "files", parent_bs->drv->format_name, parent_bs->node_name); |
| 3470 | return -EINVAL; |
| 3471 | } |
| 3472 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3473 | if (parent_bs->drv->is_filter) { |
| 3474 | role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; |
| 3475 | } else if (is_backing) { |
| 3476 | role = BDRV_CHILD_COW; |
| 3477 | } else { |
| 3478 | /* |
| 3479 | * We only can use same role as it is in existing child. We don't have |
| 3480 | * infrastructure to determine role of file child in generic way |
| 3481 | */ |
| 3482 | if (!child) { |
| 3483 | error_setg(errp, "Cannot set file child to format node without " |
| 3484 | "file child"); |
| 3485 | return -EINVAL; |
| 3486 | } |
| 3487 | role = child->role; |
Fam Zheng | 826b6ca | 2014-05-23 21:29:47 +0800 | [diff] [blame] | 3488 | } |
| 3489 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3490 | if (child) { |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3491 | assert(child->bs->quiesce_counter); |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3492 | bdrv_unset_inherits_from(parent_bs, child, tran); |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 3493 | bdrv_remove_child(child, tran); |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3494 | } |
| 3495 | |
| 3496 | if (!child_bs) { |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3497 | goto out; |
| 3498 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 3499 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3500 | child = bdrv_attach_child_noperm(parent_bs, child_bs, |
| 3501 | is_backing ? "backing" : "file", |
| 3502 | &child_of_bds, role, |
| 3503 | tran, errp); |
| 3504 | if (!child) { |
| 3505 | return -EINVAL; |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3506 | } |
| 3507 | |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3508 | |
| 3509 | /* |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3510 | * 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] | 3511 | * point directly to bs (else it will become NULL). |
| 3512 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3513 | if (update_inherits_from) { |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3514 | bdrv_set_inherits_from(child_bs, parent_bs, tran); |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3515 | } |
Fam Zheng | 826b6ca | 2014-05-23 21:29:47 +0800 | [diff] [blame] | 3516 | |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3517 | out: |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3518 | bdrv_refresh_limits(parent_bs, tran, NULL); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3519 | |
| 3520 | return 0; |
| 3521 | } |
| 3522 | |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 3523 | /* |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3524 | * Both @bs and @backing_hd can move to a different AioContext in this |
| 3525 | * function. |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3526 | * |
| 3527 | * If a backing child is already present (i.e. we're detaching a node), that |
| 3528 | * child node must be drained. |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 3529 | */ |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3530 | int bdrv_set_backing_hd_drained(BlockDriverState *bs, |
| 3531 | BlockDriverState *backing_hd, |
| 3532 | Error **errp) |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3533 | { |
| 3534 | int ret; |
| 3535 | Transaction *tran = tran_new(); |
| 3536 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3537 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3538 | assert(bs->quiesce_counter > 0); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3539 | if (bs->backing) { |
| 3540 | assert(bs->backing->bs->quiesce_counter > 0); |
| 3541 | } |
Vladimir Sementsov-Ogievskiy | c0829cb | 2022-01-24 18:37:41 +0100 | [diff] [blame] | 3542 | |
Kevin Wolf | 3204c2e | 2023-10-27 17:53:23 +0200 | [diff] [blame] | 3543 | 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] | 3544 | if (ret < 0) { |
| 3545 | goto out; |
| 3546 | } |
| 3547 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3548 | ret = bdrv_refresh_perms(bs, tran, errp); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3549 | out: |
| 3550 | tran_finalize(tran, ret); |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3551 | return ret; |
| 3552 | } |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3553 | |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3554 | int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, |
| 3555 | Error **errp) |
| 3556 | { |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 3557 | BlockDriverState *drain_bs; |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3558 | int ret; |
| 3559 | GLOBAL_STATE_CODE(); |
| 3560 | |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 3561 | bdrv_graph_rdlock_main_loop(); |
| 3562 | drain_bs = bs->backing ? bs->backing->bs : bs; |
| 3563 | bdrv_graph_rdunlock_main_loop(); |
| 3564 | |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3565 | bdrv_ref(drain_bs); |
| 3566 | bdrv_drained_begin(drain_bs); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 3567 | bdrv_graph_wrlock(); |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3568 | ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 3569 | bdrv_graph_wrunlock(); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 3570 | bdrv_drained_end(drain_bs); |
| 3571 | bdrv_unref(drain_bs); |
Vladimir Sementsov-Ogievskiy | c0829cb | 2022-01-24 18:37:41 +0100 | [diff] [blame] | 3572 | |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3573 | return ret; |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3574 | } |
| 3575 | |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3576 | /* |
| 3577 | * Opens the backing file for a BlockDriverState if not yet open |
| 3578 | * |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3579 | * bdref_key specifies the key for the image's BlockdevRef in the options QDict. |
| 3580 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict |
| 3581 | * itself, all options starting with "${bdref_key}." are considered part of the |
| 3582 | * BlockdevRef. |
| 3583 | * |
| 3584 | * TODO Can this be unified with bdrv_open_image()? |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3585 | */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3586 | int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, |
| 3587 | const char *bdref_key, Error **errp) |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3588 | { |
Zhao Liu | 7b22e05 | 2024-03-11 11:37:56 +0800 | [diff] [blame] | 3589 | ERRP_GUARD(); |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3590 | char *backing_filename = NULL; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3591 | char *bdref_key_dot; |
| 3592 | const char *reference = NULL; |
Kevin Wolf | 317fc44 | 2014-04-25 13:27:34 +0200 | [diff] [blame] | 3593 | int ret = 0; |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3594 | bool implicit_backing = false; |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3595 | BlockDriverState *backing_hd; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3596 | QDict *options; |
| 3597 | QDict *tmp_parent_options = NULL; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 3598 | Error *local_err = NULL; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3599 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3600 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 3601 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3602 | |
Kevin Wolf | 760e006 | 2015-06-17 14:55:21 +0200 | [diff] [blame] | 3603 | if (bs->backing != NULL) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3604 | goto free_exit; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3605 | } |
| 3606 | |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3607 | /* NULL means an empty set of options */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3608 | if (parent_options == NULL) { |
| 3609 | tmp_parent_options = qdict_new(); |
| 3610 | parent_options = tmp_parent_options; |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3611 | } |
| 3612 | |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3613 | bs->open_flags &= ~BDRV_O_NO_BACKING; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3614 | |
| 3615 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
| 3616 | qdict_extract_subqdict(parent_options, &options, bdref_key_dot); |
| 3617 | g_free(bdref_key_dot); |
| 3618 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3619 | /* |
| 3620 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 3621 | * types would require more care. When @parent_options come from |
| 3622 | * -blockdev or blockdev_add, its members are typed according to |
| 3623 | * the QAPI schema, but when they come from -drive, they're all |
| 3624 | * QString. |
| 3625 | */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3626 | reference = qdict_get_try_str(parent_options, bdref_key); |
| 3627 | if (reference || qdict_haskey(options, "file.filename")) { |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3628 | /* keep backing_filename NULL */ |
Kevin Wolf | 1cb6f50 | 2013-04-12 20:27:07 +0200 | [diff] [blame] | 3629 | } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3630 | qobject_unref(options); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3631 | goto free_exit; |
Fam Zheng | dbecebd | 2013-09-22 20:05:06 +0800 | [diff] [blame] | 3632 | } else { |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3633 | if (qdict_size(options) == 0) { |
| 3634 | /* If the user specifies options that do not modify the |
| 3635 | * backing file's behavior, we might still consider it the |
| 3636 | * implicit backing file. But it's easier this way, and |
| 3637 | * just specifying some of the backing BDS's options is |
| 3638 | * only possible with -drive anyway (otherwise the QAPI |
| 3639 | * schema forces the user to specify everything). */ |
| 3640 | implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file); |
| 3641 | } |
| 3642 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3643 | backing_filename = bdrv_get_full_backing_filename(bs, &local_err); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 3644 | if (local_err) { |
| 3645 | ret = -EINVAL; |
| 3646 | error_propagate(errp, local_err); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3647 | qobject_unref(options); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 3648 | goto free_exit; |
| 3649 | } |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3650 | } |
| 3651 | |
Kevin Wolf | 8ee79e7 | 2014-06-04 15:09:35 +0200 | [diff] [blame] | 3652 | if (!bs->drv || !bs->drv->supports_backing) { |
| 3653 | ret = -EINVAL; |
| 3654 | error_setg(errp, "Driver doesn't support backing files"); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3655 | qobject_unref(options); |
Kevin Wolf | 8ee79e7 | 2014-06-04 15:09:35 +0200 | [diff] [blame] | 3656 | goto free_exit; |
| 3657 | } |
| 3658 | |
Peter Krempa | 6bff597 | 2017-10-12 16:14:10 +0200 | [diff] [blame] | 3659 | if (!reference && |
| 3660 | bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3661 | qdict_put_str(options, "driver", bs->backing_format); |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3662 | } |
| 3663 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3664 | backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs, |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 3665 | &child_of_bds, bdrv_backing_role(bs), errp); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3666 | if (!backing_hd) { |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3667 | bs->open_flags |= BDRV_O_NO_BACKING; |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3668 | error_prepend(errp, "Could not open backing file: "); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3669 | ret = -EINVAL; |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3670 | goto free_exit; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3671 | } |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3672 | |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3673 | if (implicit_backing) { |
| 3674 | bdrv_refresh_filename(backing_hd); |
| 3675 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
| 3676 | backing_hd->filename); |
| 3677 | } |
| 3678 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3679 | /* Hook up the backing file link; drop our reference, bs owns the |
| 3680 | * backing_hd reference now */ |
Vladimir Sementsov-Ogievskiy | dc9c10a | 2021-02-02 15:49:47 +0300 | [diff] [blame] | 3681 | ret = bdrv_set_backing_hd(bs, backing_hd, errp); |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3682 | bdrv_unref(backing_hd); |
Kevin Wolf | 8aa0454 | 2023-06-05 10:57:08 +0200 | [diff] [blame] | 3683 | |
Vladimir Sementsov-Ogievskiy | dc9c10a | 2021-02-02 15:49:47 +0300 | [diff] [blame] | 3684 | if (ret < 0) { |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 3685 | goto free_exit; |
| 3686 | } |
Peter Feiner | d80ac65 | 2014-01-08 19:43:25 +0000 | [diff] [blame] | 3687 | |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3688 | qdict_del(parent_options, bdref_key); |
| 3689 | |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3690 | free_exit: |
| 3691 | g_free(backing_filename); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3692 | qobject_unref(tmp_parent_options); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3693 | return ret; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3694 | } |
| 3695 | |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3696 | static BlockDriverState * |
| 3697 | 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] | 3698 | BlockDriverState *parent, const BdrvChildClass *child_class, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3699 | BdrvChildRole child_role, bool allow_none, Error **errp) |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3700 | { |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3701 | BlockDriverState *bs = NULL; |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3702 | QDict *image_options; |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3703 | char *bdref_key_dot; |
| 3704 | const char *reference; |
| 3705 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3706 | assert(child_class != NULL); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3707 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3708 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
| 3709 | qdict_extract_subqdict(options, &image_options, bdref_key_dot); |
| 3710 | g_free(bdref_key_dot); |
| 3711 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3712 | /* |
| 3713 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 3714 | * types would require more care. When @options come from |
| 3715 | * -blockdev or blockdev_add, its members are typed according to |
| 3716 | * the QAPI schema, but when they come from -drive, they're all |
| 3717 | * QString. |
| 3718 | */ |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3719 | reference = qdict_get_try_str(options, bdref_key); |
| 3720 | if (!filename && !reference && !qdict_size(image_options)) { |
Kevin Wolf | b4b059f | 2015-06-15 13:24:19 +0200 | [diff] [blame] | 3721 | if (!allow_none) { |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3722 | error_setg(errp, "A block device must be specified for \"%s\"", |
| 3723 | bdref_key); |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3724 | } |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3725 | qobject_unref(image_options); |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3726 | goto done; |
| 3727 | } |
| 3728 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3729 | bs = bdrv_open_inherit(filename, reference, image_options, 0, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3730 | parent, child_class, child_role, errp); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3731 | if (!bs) { |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3732 | goto done; |
| 3733 | } |
| 3734 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3735 | done: |
| 3736 | qdict_del(options, bdref_key); |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3737 | return bs; |
| 3738 | } |
| 3739 | |
| 3740 | /* |
| 3741 | * Opens a disk image whose options are given as BlockdevRef in another block |
| 3742 | * device's options. |
| 3743 | * |
| 3744 | * If allow_none is true, no image will be opened if filename is false and no |
| 3745 | * BlockdevRef is given. NULL will be returned, but errp remains unset. |
| 3746 | * |
| 3747 | * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. |
| 3748 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict |
| 3749 | * itself, all options starting with "${bdref_key}." are considered part of the |
| 3750 | * BlockdevRef. |
| 3751 | * |
| 3752 | * The BlockdevRef will be removed from the options QDict. |
Kevin Wolf | aa269ff | 2023-05-25 14:47:07 +0200 | [diff] [blame] | 3753 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3754 | * @parent can move to a different AioContext in this function. |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3755 | */ |
| 3756 | BdrvChild *bdrv_open_child(const char *filename, |
| 3757 | QDict *options, const char *bdref_key, |
| 3758 | BlockDriverState *parent, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3759 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3760 | BdrvChildRole child_role, |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3761 | bool allow_none, Error **errp) |
| 3762 | { |
| 3763 | BlockDriverState *bs; |
Kevin Wolf | 8394c35 | 2023-06-05 10:57:04 +0200 | [diff] [blame] | 3764 | BdrvChild *child; |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3765 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3766 | GLOBAL_STATE_CODE(); |
| 3767 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3768 | bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3769 | child_role, allow_none, errp); |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3770 | if (bs == NULL) { |
| 3771 | return NULL; |
| 3772 | } |
| 3773 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 3774 | bdrv_graph_wrlock(); |
Kevin Wolf | 8394c35 | 2023-06-05 10:57:04 +0200 | [diff] [blame] | 3775 | child = bdrv_attach_child(parent, bs, bdref_key, child_class, child_role, |
| 3776 | errp); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 3777 | bdrv_graph_wrunlock(); |
Kevin Wolf | 8394c35 | 2023-06-05 10:57:04 +0200 | [diff] [blame] | 3778 | |
| 3779 | return child; |
Kevin Wolf | b4b059f | 2015-06-15 13:24:19 +0200 | [diff] [blame] | 3780 | } |
| 3781 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3782 | /* |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3783 | * Wrapper on bdrv_open_child() for most popular case: open primary child of bs. |
Kevin Wolf | aa269ff | 2023-05-25 14:47:07 +0200 | [diff] [blame] | 3784 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 3785 | * @parent can move to a different AioContext in this function. |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3786 | */ |
| 3787 | int bdrv_open_file_child(const char *filename, |
| 3788 | QDict *options, const char *bdref_key, |
| 3789 | BlockDriverState *parent, Error **errp) |
| 3790 | { |
| 3791 | BdrvChildRole role; |
| 3792 | |
| 3793 | /* commit_top and mirror_top don't use this function */ |
| 3794 | assert(!parent->drv->filtered_child_is_backing); |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3795 | role = parent->drv->is_filter ? |
| 3796 | (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE; |
| 3797 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3798 | if (!bdrv_open_child(filename, options, bdref_key, parent, |
| 3799 | &child_of_bds, role, false, errp)) |
| 3800 | { |
| 3801 | return -EINVAL; |
| 3802 | } |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3803 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3804 | return 0; |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3805 | } |
| 3806 | |
| 3807 | /* |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3808 | * TODO Future callers may need to specify parent/child_class in order for |
| 3809 | * option inheritance to work. Existing callers use it for the root node. |
| 3810 | */ |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3811 | BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) |
| 3812 | { |
| 3813 | BlockDriverState *bs = NULL; |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3814 | QObject *obj = NULL; |
| 3815 | QDict *qdict = NULL; |
| 3816 | const char *reference = NULL; |
| 3817 | Visitor *v = NULL; |
| 3818 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3819 | GLOBAL_STATE_CODE(); |
| 3820 | |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3821 | if (ref->type == QTYPE_QSTRING) { |
| 3822 | reference = ref->u.reference; |
| 3823 | } else { |
| 3824 | BlockdevOptions *options = &ref->u.definition; |
| 3825 | assert(ref->type == QTYPE_QDICT); |
| 3826 | |
| 3827 | v = qobject_output_visitor_new(&obj); |
Markus Armbruster | 1f58424 | 2020-04-24 10:43:35 +0200 | [diff] [blame] | 3828 | visit_type_BlockdevOptions(v, NULL, &options, &error_abort); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3829 | visit_complete(v, &obj); |
| 3830 | |
Max Reitz | 7dc847e | 2018-02-24 16:40:29 +0100 | [diff] [blame] | 3831 | qdict = qobject_to(QDict, obj); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3832 | qdict_flatten(qdict); |
| 3833 | |
| 3834 | /* bdrv_open_inherit() defaults to the values in bdrv_flags (for |
| 3835 | * compatibility with other callers) rather than what we want as the |
| 3836 | * real defaults. Apply the defaults here instead. */ |
| 3837 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); |
| 3838 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); |
| 3839 | qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 3840 | qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off"); |
| 3841 | |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3842 | } |
| 3843 | |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3844 | bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3845 | obj = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3846 | qobject_unref(obj); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3847 | visit_free(v); |
| 3848 | return bs; |
| 3849 | } |
| 3850 | |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 3851 | static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, |
| 3852 | int flags, |
| 3853 | QDict *snapshot_options, |
| 3854 | Error **errp) |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3855 | { |
Zhao Liu | 7b22e05 | 2024-03-11 11:37:56 +0800 | [diff] [blame] | 3856 | ERRP_GUARD(); |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 3857 | g_autofree char *tmp_filename = NULL; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3858 | int64_t total_size; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3859 | QemuOpts *opts = NULL; |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3860 | BlockDriverState *bs_snapshot = NULL; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3861 | int ret; |
| 3862 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3863 | GLOBAL_STATE_CODE(); |
| 3864 | |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3865 | /* if snapshot, we create a temporary backing file and open it |
| 3866 | instead of opening 'filename' directly */ |
| 3867 | |
| 3868 | /* Get the required size from the image */ |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3869 | total_size = bdrv_getlength(bs); |
Kevin Wolf | f665f01 | 2023-06-05 10:57:07 +0200 | [diff] [blame] | 3870 | |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3871 | if (total_size < 0) { |
| 3872 | error_setg_errno(errp, -total_size, "Could not get image size"); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3873 | goto out; |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3874 | } |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3875 | |
| 3876 | /* Create the temporary image */ |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 3877 | tmp_filename = create_tmp_file(errp); |
| 3878 | if (!tmp_filename) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3879 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3880 | } |
| 3881 | |
Max Reitz | ef81043 | 2014-12-02 18:32:42 +0100 | [diff] [blame] | 3882 | opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 3883 | &error_abort); |
Markus Armbruster | 39101f2 | 2015-02-12 16:46:36 +0100 | [diff] [blame] | 3884 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3885 | ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3886 | qemu_opts_del(opts); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3887 | if (ret < 0) { |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3888 | error_prepend(errp, "Could not create temporary overlay '%s': ", |
| 3889 | tmp_filename); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3890 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3891 | } |
| 3892 | |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3893 | /* Prepare options QDict for the temporary file */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3894 | qdict_put_str(snapshot_options, "file.driver", "file"); |
| 3895 | qdict_put_str(snapshot_options, "file.filename", tmp_filename); |
| 3896 | qdict_put_str(snapshot_options, "driver", "qcow2"); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3897 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3898 | bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3899 | snapshot_options = NULL; |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3900 | if (!bs_snapshot) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3901 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3902 | } |
| 3903 | |
Vladimir Sementsov-Ogievskiy | 934aee1 | 2021-02-02 15:49:44 +0300 | [diff] [blame] | 3904 | ret = bdrv_append(bs_snapshot, bs, errp); |
| 3905 | if (ret < 0) { |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3906 | bs_snapshot = NULL; |
Kevin Wolf | b2c2832 | 2017-02-20 12:46:42 +0100 | [diff] [blame] | 3907 | goto out; |
| 3908 | } |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3909 | |
| 3910 | out: |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3911 | qobject_unref(snapshot_options); |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3912 | return bs_snapshot; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3913 | } |
| 3914 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3915 | /* |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3916 | * Opens a disk image (raw, qcow2, vmdk, ...) |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 3917 | * |
| 3918 | * options is a QDict of options to pass to the block drivers, or NULL for an |
| 3919 | * empty set of options. The reference to the QDict belongs to the block layer |
| 3920 | * 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] | 3921 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3922 | * |
| 3923 | * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. |
| 3924 | * If it is not NULL, the referenced BDS will be reused. |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3925 | * |
| 3926 | * The reference parameter may be used to specify an existing block device which |
| 3927 | * should be opened. If specified, neither options nor a filename may be given, |
| 3928 | * 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] | 3929 | */ |
Kevin Wolf | 3219230 | 2023-01-26 18:24:32 +0100 | [diff] [blame] | 3930 | static BlockDriverState * no_coroutine_fn |
| 3931 | bdrv_open_inherit(const char *filename, const char *reference, QDict *options, |
| 3932 | int flags, BlockDriverState *parent, |
| 3933 | const BdrvChildClass *child_class, BdrvChildRole child_role, |
| 3934 | Error **errp) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 3935 | { |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3936 | int ret; |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3937 | BlockBackend *file = NULL; |
Kevin Wolf | 9a4f4c3 | 2015-06-16 14:19:22 +0200 | [diff] [blame] | 3938 | BlockDriverState *bs; |
Max Reitz | ce34377 | 2015-08-26 19:47:50 +0200 | [diff] [blame] | 3939 | BlockDriver *drv = NULL; |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 3940 | BdrvChild *child; |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 3941 | const char *drvname; |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 3942 | const char *backing; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 3943 | Error *local_err = NULL; |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3944 | QDict *snapshot_options = NULL; |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 3945 | int snapshot_flags = 0; |
bellard | 712e787 | 2005-04-28 21:09:32 +0000 | [diff] [blame] | 3946 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3947 | assert(!child_class || !flags); |
| 3948 | assert(!child_class == !parent); |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 3949 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 3219230 | 2023-01-26 18:24:32 +0100 | [diff] [blame] | 3950 | assert(!qemu_in_coroutine()); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3951 | |
Kevin Wolf | 356f4ef | 2023-09-11 11:46:15 +0200 | [diff] [blame] | 3952 | /* TODO We'll eventually have to take a writer lock in this function */ |
| 3953 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 3954 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3955 | if (reference) { |
| 3956 | bool options_non_empty = options ? qdict_size(options) : false; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3957 | qobject_unref(options); |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3958 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3959 | if (filename || options_non_empty) { |
| 3960 | error_setg(errp, "Cannot reference an existing block device with " |
| 3961 | "additional options or a new filename"); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3962 | return NULL; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3963 | } |
| 3964 | |
| 3965 | bs = bdrv_lookup_bs(reference, reference, errp); |
| 3966 | if (!bs) { |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3967 | return NULL; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3968 | } |
Kevin Wolf | 76b2232 | 2016-04-04 17:11:13 +0200 | [diff] [blame] | 3969 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3970 | bdrv_ref(bs); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3971 | return bs; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3972 | } |
| 3973 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3974 | bs = bdrv_new(); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3975 | |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 3976 | /* NULL means an empty set of options */ |
| 3977 | if (options == NULL) { |
| 3978 | options = qdict_new(); |
| 3979 | } |
| 3980 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 3981 | /* json: syntax counts as explicit options, as if in the QDict */ |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 3982 | parse_json_protocol(options, &filename, &local_err); |
| 3983 | if (local_err) { |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 3984 | goto fail; |
| 3985 | } |
| 3986 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 3987 | bs->explicit_options = qdict_clone_shallow(options); |
| 3988 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3989 | if (child_class) { |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 3990 | bool parent_is_format; |
| 3991 | |
| 3992 | if (parent->drv) { |
| 3993 | parent_is_format = parent->drv->is_format; |
| 3994 | } else { |
| 3995 | /* |
| 3996 | * parent->drv is not set yet because this node is opened for |
| 3997 | * (potential) format probing. That means that @parent is going |
| 3998 | * to be a format node. |
| 3999 | */ |
| 4000 | parent_is_format = true; |
| 4001 | } |
| 4002 | |
Kevin Wolf | bddcec3 | 2015-04-09 18:47:50 +0200 | [diff] [blame] | 4003 | bs->inherits_from = parent; |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4004 | child_class->inherit_options(child_role, parent_is_format, |
| 4005 | &flags, options, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 4006 | parent->open_flags, parent->options); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 4007 | } |
| 4008 | |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 4009 | ret = bdrv_fill_options(&options, filename, &flags, &local_err); |
Philippe Mathieu-Daudé | dfde483 | 2020-04-22 15:31:44 +0200 | [diff] [blame] | 4010 | if (ret < 0) { |
Kevin Wolf | 462f5bc | 2014-05-26 11:39:55 +0200 | [diff] [blame] | 4011 | goto fail; |
| 4012 | } |
| 4013 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 4014 | /* |
| 4015 | * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. |
| 4016 | * Caution: getting a boolean member of @options requires care. |
| 4017 | * When @options come from -blockdev or blockdev_add, members are |
| 4018 | * typed according to the QAPI schema, but when they come from |
| 4019 | * -drive, they're all QString. |
| 4020 | */ |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 4021 | if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && |
| 4022 | !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { |
| 4023 | flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); |
| 4024 | } else { |
| 4025 | flags &= ~BDRV_O_RDWR; |
Alberto Garcia | 14499ea | 2016-09-15 17:53:00 +0300 | [diff] [blame] | 4026 | } |
| 4027 | |
| 4028 | if (flags & BDRV_O_SNAPSHOT) { |
| 4029 | snapshot_options = qdict_new(); |
| 4030 | bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, |
| 4031 | flags, options); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 4032 | /* Let bdrv_backing_options() override "read-only" */ |
| 4033 | qdict_del(options, BDRV_OPT_READ_ONLY); |
Max Reitz | 00ff7ff | 2020-05-13 13:05:21 +0200 | [diff] [blame] | 4034 | bdrv_inherited_options(BDRV_CHILD_COW, true, |
| 4035 | &flags, options, flags, options); |
Alberto Garcia | 14499ea | 2016-09-15 17:53:00 +0300 | [diff] [blame] | 4036 | } |
| 4037 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 4038 | bs->open_flags = flags; |
| 4039 | bs->options = options; |
| 4040 | options = qdict_clone_shallow(options); |
| 4041 | |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4042 | /* Find the right image format driver */ |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 4043 | /* See cautionary note on accessing @options above */ |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4044 | drvname = qdict_get_try_str(options, "driver"); |
| 4045 | if (drvname) { |
| 4046 | drv = bdrv_find_format(drvname); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4047 | if (!drv) { |
| 4048 | error_setg(errp, "Unknown driver: '%s'", drvname); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4049 | goto fail; |
| 4050 | } |
| 4051 | } |
| 4052 | |
| 4053 | assert(drvname || !(flags & BDRV_O_PROTOCOL)); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4054 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 4055 | /* See cautionary note on accessing @options above */ |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 4056 | backing = qdict_get_try_str(options, "backing"); |
Max Reitz | e59a0cf | 2018-02-24 16:40:32 +0100 | [diff] [blame] | 4057 | if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || |
| 4058 | (backing && *backing == '\0')) |
| 4059 | { |
Max Reitz | 4f7be28 | 2018-02-24 16:40:33 +0100 | [diff] [blame] | 4060 | if (backing) { |
| 4061 | warn_report("Use of \"backing\": \"\" is deprecated; " |
| 4062 | "use \"backing\": null instead"); |
| 4063 | } |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 4064 | flags |= BDRV_O_NO_BACKING; |
Kevin Wolf | ae0f57f | 2019-11-08 09:36:35 +0100 | [diff] [blame] | 4065 | qdict_del(bs->explicit_options, "backing"); |
| 4066 | qdict_del(bs->options, "backing"); |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 4067 | qdict_del(options, "backing"); |
| 4068 | } |
| 4069 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4070 | /* Open image file without format layer. This BlockBackend is only used for |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 4071 | * probing, the block drivers will do their own bdrv_open_child() for the |
| 4072 | * 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] | 4073 | if ((flags & BDRV_O_PROTOCOL) == 0) { |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4074 | BlockDriverState *file_bs; |
| 4075 | |
| 4076 | file_bs = bdrv_open_child_bs(filename, options, "file", bs, |
Max Reitz | 5894440 | 2020-05-13 13:05:37 +0200 | [diff] [blame] | 4077 | &child_of_bds, BDRV_CHILD_IMAGE, |
| 4078 | true, &local_err); |
Kevin Wolf | 1fdd693 | 2015-06-15 14:11:51 +0200 | [diff] [blame] | 4079 | if (local_err) { |
Max Reitz | 5469a2a | 2014-02-18 18:33:10 +0100 | [diff] [blame] | 4080 | goto fail; |
| 4081 | } |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4082 | if (file_bs != NULL) { |
Kevin Wolf | dacaa16 | 2017-11-20 14:59:13 +0100 | [diff] [blame] | 4083 | /* Not requesting BLK_PERM_CONSISTENT_READ because we're only |
| 4084 | * looking at the header to guess the image format. This works even |
| 4085 | * in cases where a guest would not see a consistent state. */ |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 4086 | AioContext *ctx = bdrv_get_aio_context(file_bs); |
Kevin Wolf | f665f01 | 2023-06-05 10:57:07 +0200 | [diff] [blame] | 4087 | file = blk_new(ctx, 0, BLK_PERM_ALL); |
Kevin Wolf | d708642 | 2017-01-13 19:02:32 +0100 | [diff] [blame] | 4088 | blk_insert_bs(file, file_bs, &local_err); |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4089 | bdrv_unref(file_bs); |
Kevin Wolf | f665f01 | 2023-06-05 10:57:07 +0200 | [diff] [blame] | 4090 | |
Kevin Wolf | d708642 | 2017-01-13 19:02:32 +0100 | [diff] [blame] | 4091 | if (local_err) { |
| 4092 | goto fail; |
| 4093 | } |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4094 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 4095 | qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 4096 | } |
Max Reitz | 5469a2a | 2014-02-18 18:33:10 +0100 | [diff] [blame] | 4097 | } |
| 4098 | |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4099 | /* Image format probing */ |
Kevin Wolf | 38f3ef5 | 2014-11-20 16:27:12 +0100 | [diff] [blame] | 4100 | bs->probed = !drv; |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4101 | if (!drv && file) { |
Kevin Wolf | cf2ab8f | 2016-06-20 18:24:02 +0200 | [diff] [blame] | 4102 | ret = find_image_format(file, filename, &drv, &local_err); |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 4103 | if (ret < 0) { |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4104 | goto fail; |
Max Reitz | 2a05cbe | 2013-12-20 19:28:10 +0100 | [diff] [blame] | 4105 | } |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 4106 | /* |
| 4107 | * This option update would logically belong in bdrv_fill_options(), |
| 4108 | * but we first need to open bs->file for the probing to work, while |
| 4109 | * opening bs->file already requires the (mostly) final set of options |
| 4110 | * so that cache mode etc. can be inherited. |
| 4111 | * |
| 4112 | * Adding the driver later is somewhat ugly, but it's not an option |
| 4113 | * that would ever be inherited, so it's correct. We just need to make |
| 4114 | * sure to update both bs->options (which has the full effective |
| 4115 | * options for bs) and options (which has file.* already removed). |
| 4116 | */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 4117 | qdict_put_str(bs->options, "driver", drv->format_name); |
| 4118 | qdict_put_str(options, "driver", drv->format_name); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4119 | } else if (!drv) { |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 4120 | error_setg(errp, "Must specify either driver or file"); |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4121 | goto fail; |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 4122 | } |
| 4123 | |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 4124 | /* 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^] | 4125 | assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->protocol_name); |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 4126 | /* file must be NULL if a protocol BDS is about to be created |
| 4127 | * (the inverse results in an error message from bdrv_open_common()) */ |
| 4128 | assert(!(flags & BDRV_O_PROTOCOL) || !file); |
| 4129 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4130 | /* Open the image */ |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 4131 | ret = bdrv_open_common(bs, file, options, &local_err); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4132 | if (ret < 0) { |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4133 | goto fail; |
Christoph Hellwig | 6987307 | 2010-01-20 18:13:25 +0100 | [diff] [blame] | 4134 | } |
| 4135 | |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 4136 | if (file) { |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4137 | blk_unref(file); |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 4138 | file = NULL; |
| 4139 | } |
| 4140 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4141 | /* If there is a backing file, use it */ |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 4142 | if ((flags & BDRV_O_NO_BACKING) == 0) { |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 4143 | ret = bdrv_open_backing_file(bs, options, "backing", &local_err); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4144 | if (ret < 0) { |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4145 | goto close_and_fail; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4146 | } |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4147 | } |
| 4148 | |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4149 | /* Remove all children options and references |
| 4150 | * from bs->options and bs->explicit_options */ |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 4151 | QLIST_FOREACH(child, &bs->children, next) { |
| 4152 | char *child_key_dot; |
| 4153 | child_key_dot = g_strdup_printf("%s.", child->name); |
| 4154 | qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot); |
| 4155 | qdict_extract_subqdict(bs->options, NULL, child_key_dot); |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4156 | qdict_del(bs->explicit_options, child->name); |
| 4157 | qdict_del(bs->options, child->name); |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 4158 | g_free(child_key_dot); |
| 4159 | } |
| 4160 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4161 | /* Check if any unknown options were used */ |
Paolo Bonzini | 7ad2757 | 2017-01-04 15:59:14 +0100 | [diff] [blame] | 4162 | if (qdict_size(options) != 0) { |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4163 | const QDictEntry *entry = qdict_first(options); |
Max Reitz | 5acd9d8 | 2014-02-18 18:33:11 +0100 | [diff] [blame] | 4164 | if (flags & BDRV_O_PROTOCOL) { |
| 4165 | error_setg(errp, "Block protocol '%s' doesn't support the option " |
| 4166 | "'%s'", drv->format_name, entry->key); |
| 4167 | } else { |
Max Reitz | d0e46a5 | 2016-03-16 19:54:34 +0100 | [diff] [blame] | 4168 | error_setg(errp, |
| 4169 | "Block format '%s' does not support the option '%s'", |
| 4170 | drv->format_name, entry->key); |
Max Reitz | 5acd9d8 | 2014-02-18 18:33:11 +0100 | [diff] [blame] | 4171 | } |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4172 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4173 | goto close_and_fail; |
| 4174 | } |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4175 | |
Daniel P. Berrange | c01c214 | 2017-06-23 17:24:16 +0100 | [diff] [blame] | 4176 | bdrv_parent_cb_change_media(bs, true); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4177 | |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4178 | qobject_unref(options); |
Alberto Garcia | 8961be3 | 2018-09-06 17:25:41 +0300 | [diff] [blame] | 4179 | options = NULL; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4180 | |
| 4181 | /* For snapshot=on, create a temporary qcow2 overlay. bs points to the |
| 4182 | * temporary snapshot afterwards. */ |
| 4183 | if (snapshot_flags) { |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 4184 | BlockDriverState *snapshot_bs; |
| 4185 | snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, |
| 4186 | snapshot_options, &local_err); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 4187 | snapshot_options = NULL; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4188 | if (local_err) { |
| 4189 | goto close_and_fail; |
| 4190 | } |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4191 | /* We are not going to return bs but the overlay on top of it |
| 4192 | * (snapshot_bs); thus, we have to drop the strong reference to bs |
| 4193 | * (which we obtained by calling bdrv_new()). bs will not be deleted, |
| 4194 | * though, because the overlay still has a reference to it. */ |
| 4195 | bdrv_unref(bs); |
| 4196 | bs = snapshot_bs; |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 4197 | } |
| 4198 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4199 | return bs; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4200 | |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4201 | fail: |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4202 | blk_unref(file); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4203 | qobject_unref(snapshot_options); |
| 4204 | qobject_unref(bs->explicit_options); |
| 4205 | qobject_unref(bs->options); |
| 4206 | qobject_unref(options); |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 4207 | bs->options = NULL; |
Manos Pitsidianakis | 998cbd6 | 2017-07-14 17:35:47 +0300 | [diff] [blame] | 4208 | bs->explicit_options = NULL; |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4209 | bdrv_unref(bs); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 4210 | error_propagate(errp, local_err); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4211 | return NULL; |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 4212 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4213 | close_and_fail: |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4214 | bdrv_unref(bs); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4215 | qobject_unref(snapshot_options); |
| 4216 | qobject_unref(options); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 4217 | error_propagate(errp, local_err); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4218 | return NULL; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4219 | } |
| 4220 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4221 | BlockDriverState *bdrv_open(const char *filename, const char *reference, |
| 4222 | QDict *options, int flags, Error **errp) |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 4223 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4224 | GLOBAL_STATE_CODE(); |
| 4225 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4226 | return bdrv_open_inherit(filename, reference, options, flags, NULL, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 4227 | NULL, 0, errp); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 4228 | } |
| 4229 | |
Alberto Garcia | faf116b | 2019-03-12 18:48:49 +0200 | [diff] [blame] | 4230 | /* Return true if the NULL-terminated @list contains @str */ |
| 4231 | static bool is_str_in_list(const char *str, const char *const *list) |
| 4232 | { |
| 4233 | if (str && list) { |
| 4234 | int i; |
| 4235 | for (i = 0; list[i] != NULL; i++) { |
| 4236 | if (!strcmp(str, list[i])) { |
| 4237 | return true; |
| 4238 | } |
| 4239 | } |
| 4240 | } |
| 4241 | return false; |
| 4242 | } |
| 4243 | |
| 4244 | /* |
| 4245 | * Check that every option set in @bs->options is also set in |
| 4246 | * @new_opts. |
| 4247 | * |
| 4248 | * Options listed in the common_options list and in |
| 4249 | * @bs->drv->mutable_opts are skipped. |
| 4250 | * |
| 4251 | * Return 0 on success, otherwise return -EINVAL and set @errp. |
| 4252 | */ |
| 4253 | static int bdrv_reset_options_allowed(BlockDriverState *bs, |
| 4254 | const QDict *new_opts, Error **errp) |
| 4255 | { |
| 4256 | const QDictEntry *e; |
| 4257 | /* These options are common to all block drivers and are handled |
| 4258 | * in bdrv_reopen_prepare() so they can be left out of @new_opts */ |
| 4259 | const char *const common_options[] = { |
| 4260 | "node-name", "discard", "cache.direct", "cache.no-flush", |
| 4261 | "read-only", "auto-read-only", "detect-zeroes", NULL |
| 4262 | }; |
| 4263 | |
| 4264 | for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) { |
| 4265 | if (!qdict_haskey(new_opts, e->key) && |
| 4266 | !is_str_in_list(e->key, common_options) && |
| 4267 | !is_str_in_list(e->key, bs->drv->mutable_opts)) { |
| 4268 | error_setg(errp, "Option '%s' cannot be reset " |
| 4269 | "to its default value", e->key); |
| 4270 | return -EINVAL; |
| 4271 | } |
| 4272 | } |
| 4273 | |
| 4274 | return 0; |
| 4275 | } |
| 4276 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4277 | /* |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4278 | * Returns true if @child can be reached recursively from @bs |
| 4279 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4280 | static bool GRAPH_RDLOCK |
| 4281 | bdrv_recurse_has_child(BlockDriverState *bs, BlockDriverState *child) |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4282 | { |
| 4283 | BdrvChild *c; |
| 4284 | |
| 4285 | if (bs == child) { |
| 4286 | return true; |
| 4287 | } |
| 4288 | |
| 4289 | QLIST_FOREACH(c, &bs->children, next) { |
| 4290 | if (bdrv_recurse_has_child(c->bs, child)) { |
| 4291 | return true; |
| 4292 | } |
| 4293 | } |
| 4294 | |
| 4295 | return false; |
| 4296 | } |
| 4297 | |
| 4298 | /* |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4299 | * Adds a BlockDriverState to a simple queue for an atomic, transactional |
| 4300 | * reopen of multiple devices. |
| 4301 | * |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4302 | * 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] | 4303 | * already performed, or alternatively may be NULL a new BlockReopenQueue will |
| 4304 | * be created and initialized. This newly created BlockReopenQueue should be |
| 4305 | * passed back in for subsequent calls that are intended to be of the same |
| 4306 | * atomic 'set'. |
| 4307 | * |
| 4308 | * bs is the BlockDriverState to add to the reopen queue. |
| 4309 | * |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4310 | * options contains the changed options for the associated bs |
| 4311 | * (the BlockReopenQueue takes ownership) |
| 4312 | * |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4313 | * flags contains the open flags for the associated bs |
| 4314 | * |
| 4315 | * returns a pointer to bs_queue, which is either the newly allocated |
| 4316 | * bs_queue, or the existing bs_queue being used. |
| 4317 | * |
Kevin Wolf | d22933a | 2022-11-18 18:41:02 +0100 | [diff] [blame] | 4318 | * bs is drained here and undrained by bdrv_reopen_queue_free(). |
Kevin Wolf | 2e11786 | 2022-11-18 18:41:01 +0100 | [diff] [blame] | 4319 | * |
| 4320 | * To be called with bs->aio_context locked. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4321 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4322 | static BlockReopenQueue * GRAPH_RDLOCK |
| 4323 | bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, BlockDriverState *bs, |
| 4324 | QDict *options, const BdrvChildClass *klass, |
| 4325 | BdrvChildRole role, bool parent_is_format, |
| 4326 | QDict *parent_options, int parent_flags, |
| 4327 | bool keep_old_opts) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4328 | { |
| 4329 | assert(bs != NULL); |
| 4330 | |
| 4331 | BlockReopenQueueEntry *bs_entry; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4332 | BdrvChild *child; |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4333 | QDict *old_options, *explicit_options, *options_copy; |
| 4334 | int flags; |
| 4335 | QemuOpts *opts; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4336 | |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 4337 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4338 | |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4339 | /* |
| 4340 | * Strictly speaking, draining is illegal under GRAPH_RDLOCK. We know that |
| 4341 | * we've been called with bdrv_graph_rdlock_main_loop(), though, so it's ok |
| 4342 | * in practice. |
| 4343 | */ |
Kevin Wolf | d22933a | 2022-11-18 18:41:02 +0100 | [diff] [blame] | 4344 | bdrv_drained_begin(bs); |
| 4345 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4346 | if (bs_queue == NULL) { |
| 4347 | bs_queue = g_new0(BlockReopenQueue, 1); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4348 | QTAILQ_INIT(bs_queue); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4349 | } |
| 4350 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4351 | if (!options) { |
| 4352 | options = qdict_new(); |
| 4353 | } |
| 4354 | |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4355 | /* Check if this BlockDriverState is already in the queue */ |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4356 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4357 | if (bs == bs_entry->state.bs) { |
| 4358 | break; |
| 4359 | } |
| 4360 | } |
| 4361 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4362 | /* |
| 4363 | * Precedence of options: |
| 4364 | * 1. Explicitly passed in options (highest) |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4365 | * 2. Retained from explicitly set options of bs |
| 4366 | * 3. Inherited from parent node |
| 4367 | * 4. Retained from effective options of bs |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4368 | */ |
| 4369 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4370 | /* Old explicitly set values (don't overwrite by inherited value) */ |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4371 | if (bs_entry || keep_old_opts) { |
| 4372 | old_options = qdict_clone_shallow(bs_entry ? |
| 4373 | bs_entry->state.explicit_options : |
| 4374 | bs->explicit_options); |
| 4375 | bdrv_join_options(bs, options, old_options); |
| 4376 | qobject_unref(old_options); |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4377 | } |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4378 | |
| 4379 | explicit_options = qdict_clone_shallow(options); |
| 4380 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4381 | /* Inherit from parent node */ |
| 4382 | if (parent_options) { |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4383 | flags = 0; |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4384 | klass->inherit_options(role, parent_is_format, &flags, options, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 4385 | parent_flags, parent_options); |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4386 | } else { |
| 4387 | flags = bdrv_get_flags(bs); |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4388 | } |
| 4389 | |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4390 | if (keep_old_opts) { |
| 4391 | /* Old values are used for options that aren't set yet */ |
| 4392 | old_options = qdict_clone_shallow(bs->options); |
| 4393 | bdrv_join_options(bs, options, old_options); |
| 4394 | qobject_unref(old_options); |
| 4395 | } |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4396 | |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4397 | /* We have the final set of options so let's update the flags */ |
| 4398 | options_copy = qdict_clone_shallow(options); |
| 4399 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
| 4400 | qemu_opts_absorb_qdict(opts, options_copy, NULL); |
| 4401 | update_flags_from_options(&flags, opts); |
| 4402 | qemu_opts_del(opts); |
| 4403 | qobject_unref(options_copy); |
| 4404 | |
Kevin Wolf | fd45202 | 2017-08-03 17:02:59 +0200 | [diff] [blame] | 4405 | /* bdrv_open_inherit() sets and clears some additional flags internally */ |
Kevin Wolf | f1f25a2 | 2014-04-25 19:04:55 +0200 | [diff] [blame] | 4406 | flags &= ~BDRV_O_PROTOCOL; |
Kevin Wolf | fd45202 | 2017-08-03 17:02:59 +0200 | [diff] [blame] | 4407 | if (flags & BDRV_O_RDWR) { |
| 4408 | flags |= BDRV_O_ALLOW_RDWR; |
| 4409 | } |
Kevin Wolf | f1f25a2 | 2014-04-25 19:04:55 +0200 | [diff] [blame] | 4410 | |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4411 | if (!bs_entry) { |
| 4412 | bs_entry = g_new0(BlockReopenQueueEntry, 1); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4413 | QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry); |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4414 | } else { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4415 | qobject_unref(bs_entry->state.options); |
| 4416 | qobject_unref(bs_entry->state.explicit_options); |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4417 | } |
| 4418 | |
| 4419 | bs_entry->state.bs = bs; |
| 4420 | bs_entry->state.options = options; |
| 4421 | bs_entry->state.explicit_options = explicit_options; |
| 4422 | bs_entry->state.flags = flags; |
| 4423 | |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4424 | /* |
| 4425 | * If keep_old_opts is false then it means that unspecified |
| 4426 | * options must be reset to their original value. We don't allow |
| 4427 | * resetting 'backing' but we need to know if the option is |
| 4428 | * missing in order to decide if we have to return an error. |
| 4429 | */ |
| 4430 | if (!keep_old_opts) { |
| 4431 | bs_entry->state.backing_missing = |
| 4432 | !qdict_haskey(options, "backing") && |
| 4433 | !qdict_haskey(options, "backing.driver"); |
| 4434 | } |
| 4435 | |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4436 | QLIST_FOREACH(child, &bs->children, next) { |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4437 | QDict *new_child_options = NULL; |
| 4438 | bool child_keep_old = keep_old_opts; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4439 | |
Kevin Wolf | 4c9dfe5 | 2015-05-08 15:14:15 +0200 | [diff] [blame] | 4440 | /* reopen can only change the options of block devices that were |
| 4441 | * implicitly created and inherited options. For other (referenced) |
| 4442 | * block devices, a syntax like "backing.foo" results in an error. */ |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4443 | if (child->bs->inherits_from != bs) { |
| 4444 | continue; |
| 4445 | } |
| 4446 | |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4447 | /* Check if the options contain a child reference */ |
| 4448 | if (qdict_haskey(options, child->name)) { |
| 4449 | const char *childref = qdict_get_try_str(options, child->name); |
| 4450 | /* |
| 4451 | * The current child must not be reopened if the child |
| 4452 | * reference is null or points to a different node. |
| 4453 | */ |
| 4454 | if (g_strcmp0(childref, child->bs->node_name)) { |
| 4455 | continue; |
| 4456 | } |
| 4457 | /* |
| 4458 | * If the child reference points to the current child then |
| 4459 | * reopen it with its existing set of options (note that |
| 4460 | * it can still inherit new options from the parent). |
| 4461 | */ |
| 4462 | child_keep_old = true; |
| 4463 | } else { |
| 4464 | /* Extract child options ("child-name.*") */ |
| 4465 | char *child_key_dot = g_strdup_printf("%s.", child->name); |
| 4466 | qdict_extract_subqdict(explicit_options, NULL, child_key_dot); |
| 4467 | qdict_extract_subqdict(options, &new_child_options, child_key_dot); |
| 4468 | g_free(child_key_dot); |
| 4469 | } |
Kevin Wolf | 4c9dfe5 | 2015-05-08 15:14:15 +0200 | [diff] [blame] | 4470 | |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4471 | bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4472 | child->klass, child->role, bs->drv->is_format, |
| 4473 | options, flags, child_keep_old); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4474 | } |
| 4475 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4476 | return bs_queue; |
| 4477 | } |
| 4478 | |
Kevin Wolf | 2e11786 | 2022-11-18 18:41:01 +0100 | [diff] [blame] | 4479 | /* To be called with bs->aio_context locked */ |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4480 | BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, |
| 4481 | BlockDriverState *bs, |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4482 | QDict *options, bool keep_old_opts) |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4483 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4484 | GLOBAL_STATE_CODE(); |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4485 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4486 | |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4487 | return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false, |
| 4488 | NULL, 0, keep_old_opts); |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4489 | } |
| 4490 | |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4491 | void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue) |
| 4492 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4493 | GLOBAL_STATE_CODE(); |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4494 | if (bs_queue) { |
| 4495 | BlockReopenQueueEntry *bs_entry, *next; |
| 4496 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { |
Kevin Wolf | d22933a | 2022-11-18 18:41:02 +0100 | [diff] [blame] | 4497 | bdrv_drained_end(bs_entry->state.bs); |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4498 | qobject_unref(bs_entry->state.explicit_options); |
| 4499 | qobject_unref(bs_entry->state.options); |
| 4500 | g_free(bs_entry); |
| 4501 | } |
| 4502 | g_free(bs_queue); |
| 4503 | } |
| 4504 | } |
| 4505 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4506 | /* |
| 4507 | * Reopen multiple BlockDriverStates atomically & transactionally. |
| 4508 | * |
| 4509 | * The queue passed in (bs_queue) must have been built up previous |
| 4510 | * via bdrv_reopen_queue(). |
| 4511 | * |
| 4512 | * Reopens all BDS specified in the queue, with the appropriate |
| 4513 | * flags. All devices are prepared for reopen, and failure of any |
Stefan Weil | 50d6a8a | 2018-07-12 21:51:20 +0200 | [diff] [blame] | 4514 | * device will cause all device changes to be abandoned, and intermediate |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4515 | * data cleaned up. |
| 4516 | * |
| 4517 | * If all devices prepare successfully, then the changes are committed |
| 4518 | * to all devices. |
| 4519 | * |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4520 | * All affected nodes must be drained between bdrv_reopen_queue() and |
| 4521 | * bdrv_reopen_multiple(). |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4522 | * |
| 4523 | * To be called from the main thread, with all other AioContexts unlocked. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4524 | */ |
Alberto Garcia | 5019aec | 2019-03-12 18:48:50 +0200 | [diff] [blame] | 4525 | int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4526 | { |
| 4527 | int ret = -1; |
| 4528 | BlockReopenQueueEntry *bs_entry, *next; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4529 | Transaction *tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4530 | g_autoptr(GSList) refresh_list = NULL; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4531 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4532 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4533 | assert(bs_queue != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 4534 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4535 | |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4536 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4537 | ret = bdrv_flush(bs_entry->state.bs); |
| 4538 | if (ret < 0) { |
| 4539 | error_setg_errno(errp, -ret, "Error flushing drive"); |
Kevin Wolf | e3fc91a | 2021-05-03 13:05:55 +0200 | [diff] [blame] | 4540 | goto abort; |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4541 | } |
| 4542 | } |
| 4543 | |
| 4544 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4545 | assert(bs_entry->state.bs->quiesce_counter > 0); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4546 | ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp); |
| 4547 | if (ret < 0) { |
| 4548 | goto abort; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4549 | } |
| 4550 | bs_entry->prepared = true; |
| 4551 | } |
| 4552 | |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4553 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4554 | BDRVReopenState *state = &bs_entry->state; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4555 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 4556 | refresh_list = g_slist_prepend(refresh_list, state->bs); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4557 | if (state->old_backing_bs) { |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 4558 | refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs); |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4559 | } |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4560 | if (state->old_file_bs) { |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 4561 | refresh_list = g_slist_prepend(refresh_list, state->old_file_bs); |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4562 | } |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4563 | } |
| 4564 | |
| 4565 | /* |
| 4566 | * Note that file-posix driver rely on permission update done during reopen |
| 4567 | * (even if no permission changed), because it wants "new" permissions for |
| 4568 | * reconfiguring the fd and that's why it does it in raw_check_perm(), not |
| 4569 | * in raw_reopen_prepare() which is called with "old" permissions. |
| 4570 | */ |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 4571 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4572 | ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp); |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 4573 | bdrv_graph_rdunlock_main_loop(); |
| 4574 | |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4575 | if (ret < 0) { |
| 4576 | goto abort; |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4577 | } |
| 4578 | |
Vladimir Sementsov-Ogievskiy | fcd6a4f | 2019-09-27 15:23:48 +0300 | [diff] [blame] | 4579 | /* |
| 4580 | * If we reach this point, we have success and just need to apply the |
| 4581 | * changes. |
| 4582 | * |
| 4583 | * Reverse order is used to comfort qcow2 driver: on commit it need to write |
| 4584 | * IN_USE flag to the image, to mark bitmaps in the image as invalid. But |
| 4585 | * children are usually goes after parents in reopen-queue, so go from last |
| 4586 | * to first element. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4587 | */ |
Vladimir Sementsov-Ogievskiy | fcd6a4f | 2019-09-27 15:23:48 +0300 | [diff] [blame] | 4588 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4589 | bdrv_reopen_commit(&bs_entry->state); |
| 4590 | } |
| 4591 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4592 | bdrv_graph_wrlock(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4593 | tran_commit(tran); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4594 | bdrv_graph_wrunlock(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4595 | |
| 4596 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
| 4597 | BlockDriverState *bs = bs_entry->state.bs; |
| 4598 | |
| 4599 | if (bs->drv->bdrv_reopen_commit_post) { |
| 4600 | bs->drv->bdrv_reopen_commit_post(&bs_entry->state); |
| 4601 | } |
| 4602 | } |
| 4603 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4604 | ret = 0; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4605 | goto cleanup; |
| 4606 | |
| 4607 | abort: |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4608 | bdrv_graph_wrlock(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4609 | tran_abort(tran); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4610 | bdrv_graph_wrunlock(); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4611 | |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4612 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4613 | if (bs_entry->prepared) { |
| 4614 | bdrv_reopen_abort(&bs_entry->state); |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4615 | } |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4616 | } |
Peter Krempa | 17e1e2b | 2020-02-28 13:44:46 +0100 | [diff] [blame] | 4617 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4618 | cleanup: |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4619 | bdrv_reopen_queue_free(bs_queue); |
Alberto Garcia | 40840e4 | 2016-10-28 10:08:03 +0300 | [diff] [blame] | 4620 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4621 | return ret; |
| 4622 | } |
| 4623 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4624 | int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts, |
| 4625 | Error **errp) |
| 4626 | { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4627 | BlockReopenQueue *queue; |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4628 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4629 | GLOBAL_STATE_CODE(); |
| 4630 | |
Kevin Wolf | 2e11786 | 2022-11-18 18:41:01 +0100 | [diff] [blame] | 4631 | queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts); |
| 4632 | |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 4633 | return bdrv_reopen_multiple(queue, errp); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4634 | } |
| 4635 | |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4636 | int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only, |
| 4637 | Error **errp) |
| 4638 | { |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4639 | QDict *opts = qdict_new(); |
| 4640 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4641 | GLOBAL_STATE_CODE(); |
| 4642 | |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4643 | qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only); |
| 4644 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4645 | return bdrv_reopen(bs, opts, true, errp); |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4646 | } |
| 4647 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4648 | /* |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4649 | * Take a BDRVReopenState and check if the value of 'backing' in the |
| 4650 | * reopen_state->options QDict is valid or not. |
| 4651 | * |
| 4652 | * If 'backing' is missing from the QDict then return 0. |
| 4653 | * |
| 4654 | * If 'backing' contains the node name of the backing file of |
| 4655 | * reopen_state->bs then return 0. |
| 4656 | * |
| 4657 | * If 'backing' contains a different node name (or is null) then check |
| 4658 | * whether the current backing file can be replaced with the new one. |
| 4659 | * If that's the case then reopen_state->replace_backing_bs is set to |
| 4660 | * true and reopen_state->new_backing_bs contains a pointer to the new |
| 4661 | * backing BlockDriverState (or NULL). |
| 4662 | * |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 4663 | * After calling this function, the transaction @tran may only be completed |
| 4664 | * while holding a writer lock for the graph. |
| 4665 | * |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4666 | * Return 0 on success, otherwise return < 0 and set @errp. |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4667 | * |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4668 | * @reopen_state->bs can move to a different AioContext in this function. |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4669 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4670 | static int GRAPH_UNLOCKED |
| 4671 | bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state, |
| 4672 | bool is_backing, Transaction *tran, |
| 4673 | Error **errp) |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4674 | { |
| 4675 | BlockDriverState *bs = reopen_state->bs; |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4676 | BlockDriverState *new_child_bs; |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4677 | BlockDriverState *old_child_bs; |
| 4678 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4679 | const char *child_name = is_backing ? "backing" : "file"; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4680 | QObject *value; |
| 4681 | const char *str; |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4682 | bool has_child; |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4683 | int ret; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4684 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 4685 | GLOBAL_STATE_CODE(); |
| 4686 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4687 | value = qdict_get(reopen_state->options, child_name); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4688 | if (value == NULL) { |
| 4689 | return 0; |
| 4690 | } |
| 4691 | |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4692 | bdrv_graph_rdlock_main_loop(); |
| 4693 | |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4694 | switch (qobject_type(value)) { |
| 4695 | case QTYPE_QNULL: |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4696 | assert(is_backing); /* The 'file' option does not allow a null value */ |
| 4697 | new_child_bs = NULL; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4698 | break; |
| 4699 | case QTYPE_QSTRING: |
Markus Armbruster | 410f44f | 2020-12-11 18:11:42 +0100 | [diff] [blame] | 4700 | str = qstring_get_str(qobject_to(QString, value)); |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4701 | new_child_bs = bdrv_lookup_bs(NULL, str, errp); |
| 4702 | if (new_child_bs == NULL) { |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4703 | ret = -EINVAL; |
| 4704 | goto out_rdlock; |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4705 | } |
| 4706 | |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4707 | has_child = bdrv_recurse_has_child(new_child_bs, bs); |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4708 | if (has_child) { |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4709 | error_setg(errp, "Making '%s' a %s child of '%s' would create a " |
| 4710 | "cycle", str, child_name, bs->node_name); |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4711 | ret = -EINVAL; |
| 4712 | goto out_rdlock; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4713 | } |
| 4714 | break; |
| 4715 | default: |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4716 | /* |
| 4717 | * The options QDict has been flattened, so 'backing' and 'file' |
| 4718 | * do not allow any other data type here. |
| 4719 | */ |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4720 | g_assert_not_reached(); |
| 4721 | } |
| 4722 | |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4723 | 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] | 4724 | if (old_child_bs == new_child_bs) { |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4725 | ret = 0; |
| 4726 | goto out_rdlock; |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4727 | } |
| 4728 | |
| 4729 | if (old_child_bs) { |
| 4730 | if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) { |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4731 | ret = 0; |
| 4732 | goto out_rdlock; |
Vladimir Sementsov-Ogievskiy | cbfdb98 | 2021-06-10 15:05:33 +0300 | [diff] [blame] | 4733 | } |
| 4734 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4735 | if (old_child_bs->implicit) { |
| 4736 | error_setg(errp, "Cannot replace implicit %s child of %s", |
| 4737 | child_name, bs->node_name); |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4738 | ret = -EPERM; |
| 4739 | goto out_rdlock; |
Vladimir Sementsov-Ogievskiy | cbfdb98 | 2021-06-10 15:05:33 +0300 | [diff] [blame] | 4740 | } |
| 4741 | } |
| 4742 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4743 | if (bs->drv->is_filter && !old_child_bs) { |
Vladimir Sementsov-Ogievskiy | 25f78d9 | 2021-06-10 15:05:34 +0300 | [diff] [blame] | 4744 | /* |
| 4745 | * Filters always have a file or a backing child, so we are trying to |
| 4746 | * change wrong child |
| 4747 | */ |
| 4748 | 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] | 4749 | "%s child", bs->node_name, bs->drv->format_name, child_name); |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4750 | ret = -EINVAL; |
| 4751 | goto out_rdlock; |
Max Reitz | 1d42f48 | 2019-06-12 17:24:39 +0200 | [diff] [blame] | 4752 | } |
| 4753 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4754 | if (is_backing) { |
| 4755 | reopen_state->old_backing_bs = old_child_bs; |
| 4756 | } else { |
| 4757 | reopen_state->old_file_bs = old_child_bs; |
| 4758 | } |
| 4759 | |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4760 | if (old_child_bs) { |
| 4761 | bdrv_ref(old_child_bs); |
| 4762 | bdrv_drained_begin(old_child_bs); |
| 4763 | } |
| 4764 | |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4765 | bdrv_graph_rdunlock_main_loop(); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4766 | bdrv_graph_wrlock(); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4767 | |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4768 | ret = bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing, |
| 4769 | tran, errp); |
| 4770 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 4771 | bdrv_graph_wrunlock(); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4772 | |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 4773 | if (old_child_bs) { |
| 4774 | bdrv_drained_end(old_child_bs); |
| 4775 | bdrv_unref(old_child_bs); |
| 4776 | } |
| 4777 | |
Kevin Wolf | 4b40866 | 2023-06-05 10:57:06 +0200 | [diff] [blame] | 4778 | return ret; |
Kevin Wolf | 430da83 | 2023-10-27 17:53:16 +0200 | [diff] [blame] | 4779 | |
| 4780 | out_rdlock: |
| 4781 | bdrv_graph_rdunlock_main_loop(); |
| 4782 | return ret; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4783 | } |
| 4784 | |
| 4785 | /* |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4786 | * Prepares a BlockDriverState for reopen. All changes are staged in the |
| 4787 | * 'opaque' field of the BDRVReopenState, which is used and allocated by |
| 4788 | * the block driver layer .bdrv_reopen_prepare() |
| 4789 | * |
| 4790 | * bs is the BlockDriverState to reopen |
| 4791 | * flags are the new open flags |
| 4792 | * queue is the reopen queue |
| 4793 | * |
| 4794 | * Returns 0 on success, non-zero on error. On error errp will be set |
| 4795 | * as well. |
| 4796 | * |
| 4797 | * On failure, bdrv_reopen_abort() will be called to clean up any data. |
| 4798 | * It is the responsibility of the caller to then call the abort() or |
| 4799 | * commit() for any other BDS that have been left in a prepare() state |
| 4800 | * |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 4801 | * After calling this function, the transaction @change_child_tran may only be |
| 4802 | * completed while holding a writer lock for the graph. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4803 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4804 | static int GRAPH_UNLOCKED |
| 4805 | bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, |
| 4806 | Transaction *change_child_tran, Error **errp) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4807 | { |
| 4808 | int ret = -1; |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4809 | int old_flags; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4810 | Error *local_err = NULL; |
| 4811 | BlockDriver *drv; |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4812 | QemuOpts *opts; |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4813 | QDict *orig_reopen_opts; |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4814 | char *discard = NULL; |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4815 | bool read_only; |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4816 | bool drv_prepared = false; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4817 | |
| 4818 | assert(reopen_state != NULL); |
| 4819 | assert(reopen_state->bs->drv != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 4820 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4821 | drv = reopen_state->bs->drv; |
| 4822 | |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4823 | /* This function and each driver's bdrv_reopen_prepare() remove |
| 4824 | * entries from reopen_state->options as they are processed, so |
| 4825 | * we need to make a copy of the original QDict. */ |
| 4826 | orig_reopen_opts = qdict_clone_shallow(reopen_state->options); |
| 4827 | |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4828 | /* Process generic block layer options */ |
| 4829 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 4830 | if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) { |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4831 | ret = -EINVAL; |
| 4832 | goto error; |
| 4833 | } |
| 4834 | |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4835 | /* This was already called in bdrv_reopen_queue_child() so the flags |
| 4836 | * are up-to-date. This time we simply want to remove the options from |
| 4837 | * QemuOpts in order to indicate that they have been processed. */ |
| 4838 | old_flags = reopen_state->flags; |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 4839 | update_flags_from_options(&reopen_state->flags, opts); |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4840 | assert(old_flags == reopen_state->flags); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 4841 | |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 4842 | discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD); |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4843 | if (discard != NULL) { |
| 4844 | if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) { |
| 4845 | error_setg(errp, "Invalid discard option"); |
| 4846 | ret = -EINVAL; |
| 4847 | goto error; |
| 4848 | } |
| 4849 | } |
| 4850 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 4851 | reopen_state->detect_zeroes = |
| 4852 | bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err); |
| 4853 | if (local_err) { |
| 4854 | error_propagate(errp, local_err); |
| 4855 | ret = -EINVAL; |
| 4856 | goto error; |
| 4857 | } |
| 4858 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 4859 | /* All other options (including node-name and driver) must be unchanged. |
| 4860 | * Put them back into the QDict, so that they are checked at the end |
| 4861 | * of this function. */ |
| 4862 | qemu_opts_to_qdict(opts, reopen_state->options); |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4863 | |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4864 | /* If we are to stay read-only, do not allow permission change |
| 4865 | * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is |
| 4866 | * not set, or if the BDS still has copy_on_read enabled */ |
| 4867 | read_only = !(reopen_state->flags & BDRV_O_RDWR); |
Kevin Wolf | 4026f1c | 2023-09-29 16:51:47 +0200 | [diff] [blame] | 4868 | |
| 4869 | bdrv_graph_rdlock_main_loop(); |
Kevin Wolf | 54a32bf | 2017-08-03 17:02:58 +0200 | [diff] [blame] | 4870 | 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] | 4871 | bdrv_graph_rdunlock_main_loop(); |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4872 | if (local_err) { |
| 4873 | error_propagate(errp, local_err); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4874 | goto error; |
| 4875 | } |
| 4876 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4877 | if (drv->bdrv_reopen_prepare) { |
Alberto Garcia | faf116b | 2019-03-12 18:48:49 +0200 | [diff] [blame] | 4878 | /* |
| 4879 | * If a driver-specific option is missing, it means that we |
| 4880 | * should reset it to its default value. |
| 4881 | * But not all options allow that, so we need to check it first. |
| 4882 | */ |
| 4883 | ret = bdrv_reset_options_allowed(reopen_state->bs, |
| 4884 | reopen_state->options, errp); |
| 4885 | if (ret) { |
| 4886 | goto error; |
| 4887 | } |
| 4888 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4889 | ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); |
| 4890 | if (ret) { |
| 4891 | if (local_err != NULL) { |
| 4892 | error_propagate(errp, local_err); |
| 4893 | } else { |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 4894 | bdrv_graph_rdlock_main_loop(); |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 4895 | bdrv_refresh_filename(reopen_state->bs); |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 4896 | bdrv_graph_rdunlock_main_loop(); |
Luiz Capitulino | d8b6895 | 2013-06-10 11:29:27 -0400 | [diff] [blame] | 4897 | error_setg(errp, "failed while preparing to reopen image '%s'", |
| 4898 | reopen_state->bs->filename); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4899 | } |
| 4900 | goto error; |
| 4901 | } |
| 4902 | } else { |
| 4903 | /* It is currently mandatory to have a bdrv_reopen_prepare() |
| 4904 | * handler for each supported drv. */ |
Kevin Wolf | 4026f1c | 2023-09-29 16:51:47 +0200 | [diff] [blame] | 4905 | bdrv_graph_rdlock_main_loop(); |
Alberto Garcia | 81e5f78 | 2015-04-08 12:29:19 +0300 | [diff] [blame] | 4906 | error_setg(errp, "Block format '%s' used by node '%s' " |
| 4907 | "does not support reopening files", drv->format_name, |
| 4908 | bdrv_get_device_or_node_name(reopen_state->bs)); |
Kevin Wolf | 4026f1c | 2023-09-29 16:51:47 +0200 | [diff] [blame] | 4909 | bdrv_graph_rdunlock_main_loop(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4910 | ret = -1; |
| 4911 | goto error; |
| 4912 | } |
| 4913 | |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4914 | drv_prepared = true; |
| 4915 | |
Alberto Garcia | bacd9b8 | 2019-03-12 18:48:46 +0200 | [diff] [blame] | 4916 | /* |
| 4917 | * We must provide the 'backing' option if the BDS has a backing |
| 4918 | * file or if the image file has a backing file name as part of |
| 4919 | * its metadata. Otherwise the 'backing' option can be omitted. |
| 4920 | */ |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4921 | bdrv_graph_rdlock_main_loop(); |
Alberto Garcia | bacd9b8 | 2019-03-12 18:48:46 +0200 | [diff] [blame] | 4922 | if (drv->supports_backing && reopen_state->backing_missing && |
Max Reitz | 1d42f48 | 2019-06-12 17:24:39 +0200 | [diff] [blame] | 4923 | (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) { |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4924 | error_setg(errp, "backing is missing for '%s'", |
| 4925 | reopen_state->bs->node_name); |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4926 | bdrv_graph_rdunlock_main_loop(); |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4927 | ret = -EINVAL; |
| 4928 | goto error; |
| 4929 | } |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 4930 | bdrv_graph_rdunlock_main_loop(); |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4931 | |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4932 | /* |
| 4933 | * Allow changing the 'backing' option. The new value can be |
| 4934 | * either a reference to an existing node (using its node name) |
| 4935 | * or NULL to simply detach the current backing file. |
| 4936 | */ |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4937 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, true, |
| 4938 | change_child_tran, errp); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4939 | if (ret < 0) { |
| 4940 | goto error; |
| 4941 | } |
| 4942 | qdict_del(reopen_state->options, "backing"); |
| 4943 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4944 | /* Allow changing the 'file' option. In this case NULL is not allowed */ |
| 4945 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, false, |
| 4946 | change_child_tran, errp); |
| 4947 | if (ret < 0) { |
| 4948 | goto error; |
| 4949 | } |
| 4950 | qdict_del(reopen_state->options, "file"); |
| 4951 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4952 | /* Options that are not handled are only okay if they are unchanged |
| 4953 | * compared to the old state. It is expected that some options are only |
| 4954 | * used for the initial open, but not reopen (e.g. filename) */ |
| 4955 | if (qdict_size(reopen_state->options)) { |
| 4956 | const QDictEntry *entry = qdict_first(reopen_state->options); |
| 4957 | |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 4958 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 4959 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4960 | do { |
Max Reitz | 54fd1b0 | 2017-11-14 19:01:26 +0100 | [diff] [blame] | 4961 | QObject *new = entry->value; |
| 4962 | QObject *old = qdict_get(reopen_state->bs->options, entry->key); |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4963 | |
Alberto Garcia | db90528 | 2018-09-06 12:37:05 +0300 | [diff] [blame] | 4964 | /* Allow child references (child_name=node_name) as long as they |
| 4965 | * point to the current child (i.e. everything stays the same). */ |
| 4966 | if (qobject_type(new) == QTYPE_QSTRING) { |
| 4967 | BdrvChild *child; |
| 4968 | QLIST_FOREACH(child, &reopen_state->bs->children, next) { |
| 4969 | if (!strcmp(child->name, entry->key)) { |
| 4970 | break; |
| 4971 | } |
| 4972 | } |
| 4973 | |
| 4974 | if (child) { |
Markus Armbruster | 410f44f | 2020-12-11 18:11:42 +0100 | [diff] [blame] | 4975 | if (!strcmp(child->bs->node_name, |
| 4976 | qstring_get_str(qobject_to(QString, new)))) { |
Alberto Garcia | db90528 | 2018-09-06 12:37:05 +0300 | [diff] [blame] | 4977 | continue; /* Found child with this name, skip option */ |
| 4978 | } |
| 4979 | } |
| 4980 | } |
| 4981 | |
Max Reitz | 54fd1b0 | 2017-11-14 19:01:26 +0100 | [diff] [blame] | 4982 | /* |
| 4983 | * TODO: When using -drive to specify blockdev options, all values |
| 4984 | * will be strings; however, when using -blockdev, blockdev-add or |
| 4985 | * filenames using the json:{} pseudo-protocol, they will be |
| 4986 | * correctly typed. |
| 4987 | * In contrast, reopening options are (currently) always strings |
| 4988 | * (because you can only specify them through qemu-io; all other |
| 4989 | * callers do not specify any options). |
| 4990 | * Therefore, when using anything other than -drive to create a BDS, |
| 4991 | * this cannot detect non-string options as unchanged, because |
| 4992 | * qobject_is_equal() always returns false for objects of different |
| 4993 | * type. In the future, this should be remedied by correctly typing |
| 4994 | * all options. For now, this is not too big of an issue because |
| 4995 | * the user can simply omit options which cannot be changed anyway, |
| 4996 | * so they will stay unchanged. |
| 4997 | */ |
| 4998 | if (!qobject_is_equal(new, old)) { |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4999 | error_setg(errp, "Cannot change the option '%s'", entry->key); |
| 5000 | ret = -EINVAL; |
| 5001 | goto error; |
| 5002 | } |
| 5003 | } while ((entry = qdict_next(reopen_state->options, entry))); |
| 5004 | } |
| 5005 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5006 | ret = 0; |
| 5007 | |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 5008 | /* Restore the original reopen_state->options QDict */ |
| 5009 | qobject_unref(reopen_state->options); |
| 5010 | reopen_state->options = qobject_ref(orig_reopen_opts); |
| 5011 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5012 | error: |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 5013 | if (ret < 0 && drv_prepared) { |
| 5014 | /* drv->bdrv_reopen_prepare() has succeeded, so we need to |
| 5015 | * call drv->bdrv_reopen_abort() before signaling an error |
| 5016 | * (bdrv_reopen_multiple() will not call bdrv_reopen_abort() |
| 5017 | * when the respective bdrv_reopen_prepare() has failed) */ |
| 5018 | if (drv->bdrv_reopen_abort) { |
| 5019 | drv->bdrv_reopen_abort(reopen_state); |
| 5020 | } |
| 5021 | } |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 5022 | qemu_opts_del(opts); |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 5023 | qobject_unref(orig_reopen_opts); |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 5024 | g_free(discard); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5025 | return ret; |
| 5026 | } |
| 5027 | |
| 5028 | /* |
| 5029 | * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and |
| 5030 | * makes them final by swapping the staging BlockDriverState contents into |
| 5031 | * the active BlockDriverState contents. |
| 5032 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 5033 | static void GRAPH_UNLOCKED bdrv_reopen_commit(BDRVReopenState *reopen_state) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5034 | { |
| 5035 | BlockDriver *drv; |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 5036 | BlockDriverState *bs; |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 5037 | BdrvChild *child; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5038 | |
| 5039 | assert(reopen_state != NULL); |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 5040 | bs = reopen_state->bs; |
| 5041 | drv = bs->drv; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5042 | assert(drv != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 5043 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5044 | |
| 5045 | /* If there are any driver level actions to take */ |
| 5046 | if (drv->bdrv_reopen_commit) { |
| 5047 | drv->bdrv_reopen_commit(reopen_state); |
| 5048 | } |
| 5049 | |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 5050 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 5051 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5052 | /* set BDS specific flags now */ |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 5053 | qobject_unref(bs->explicit_options); |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 5054 | qobject_unref(bs->options); |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 5055 | qobject_ref(reopen_state->explicit_options); |
| 5056 | qobject_ref(reopen_state->options); |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 5057 | |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 5058 | bs->explicit_options = reopen_state->explicit_options; |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 5059 | bs->options = reopen_state->options; |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 5060 | bs->open_flags = reopen_state->flags; |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 5061 | bs->detect_zeroes = reopen_state->detect_zeroes; |
Kevin Wolf | 355ef4a | 2013-12-11 20:14:09 +0100 | [diff] [blame] | 5062 | |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 5063 | /* Remove child references from bs->options and bs->explicit_options. |
| 5064 | * Child options were already removed in bdrv_reopen_queue_child() */ |
| 5065 | QLIST_FOREACH(child, &bs->children, next) { |
| 5066 | qdict_del(bs->explicit_options, child->name); |
| 5067 | qdict_del(bs->options, child->name); |
| 5068 | } |
Vladimir Sementsov-Ogievskiy | 3d0e874 | 2021-06-10 15:05:35 +0300 | [diff] [blame] | 5069 | /* backing is probably removed, so it's not handled by previous loop */ |
| 5070 | qdict_del(bs->explicit_options, "backing"); |
| 5071 | qdict_del(bs->options, "backing"); |
| 5072 | |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 5073 | bdrv_refresh_limits(bs, NULL, NULL); |
Paolo Bonzini | 439cc33 | 2023-04-07 17:32:58 +0200 | [diff] [blame] | 5074 | bdrv_refresh_total_sectors(bs, bs->total_sectors); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5075 | } |
| 5076 | |
| 5077 | /* |
| 5078 | * Abort the reopen, and delete and free the staged changes in |
| 5079 | * reopen_state |
| 5080 | */ |
Kevin Wolf | ce433d2 | 2023-09-29 16:51:43 +0200 | [diff] [blame] | 5081 | static void GRAPH_UNLOCKED bdrv_reopen_abort(BDRVReopenState *reopen_state) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5082 | { |
| 5083 | BlockDriver *drv; |
| 5084 | |
| 5085 | assert(reopen_state != NULL); |
| 5086 | drv = reopen_state->bs->drv; |
| 5087 | assert(drv != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 5088 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 5089 | |
| 5090 | if (drv->bdrv_reopen_abort) { |
| 5091 | drv->bdrv_reopen_abort(reopen_state); |
| 5092 | } |
| 5093 | } |
| 5094 | |
| 5095 | |
Max Reitz | 64dff52 | 2016-01-29 16:36:10 +0100 | [diff] [blame] | 5096 | static void bdrv_close(BlockDriverState *bs) |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5097 | { |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 5098 | BdrvAioNotifier *ban, *ban_next; |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5099 | BdrvChild *child, *next; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 5100 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5101 | GLOBAL_STATE_CODE(); |
Max Reitz | 30f55fb | 2016-05-17 16:41:32 +0200 | [diff] [blame] | 5102 | assert(!bs->refcnt); |
Alberto Garcia | 99b7e77 | 2015-09-25 16:41:44 +0300 | [diff] [blame] | 5103 | |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 5104 | bdrv_drained_begin(bs); /* complete I/O */ |
Stefan Hajnoczi | 58fda17 | 2013-07-02 15:36:25 +0200 | [diff] [blame] | 5105 | bdrv_flush(bs); |
Fam Zheng | 53ec73e | 2015-05-29 18:53:14 +0800 | [diff] [blame] | 5106 | bdrv_drain(bs); /* in case flush left pending I/O */ |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 5107 | |
Paolo Bonzini | 3cbc002 | 2012-10-19 11:36:48 +0200 | [diff] [blame] | 5108 | if (bs->drv) { |
Vladimir Sementsov-Ogievskiy | 3c00529 | 2018-08-14 15:43:19 +0300 | [diff] [blame] | 5109 | if (bs->drv->bdrv_close) { |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5110 | /* Must unfreeze all children, so bdrv_unref_child() works */ |
Vladimir Sementsov-Ogievskiy | 3c00529 | 2018-08-14 15:43:19 +0300 | [diff] [blame] | 5111 | bs->drv->bdrv_close(bs); |
| 5112 | } |
Kevin Wolf | 9a4f4c3 | 2015-06-16 14:19:22 +0200 | [diff] [blame] | 5113 | bs->drv = NULL; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 5114 | } |
Zhi Yong Wu | 98f90db | 2011-11-08 13:00:14 +0800 | [diff] [blame] | 5115 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5116 | bdrv_graph_wrlock(); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5117 | QLIST_FOREACH_SAFE(child, &bs->children, next, next) { |
Alberto Garcia | dd4118c | 2019-05-13 16:46:17 +0300 | [diff] [blame] | 5118 | bdrv_unref_child(bs, child); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5119 | } |
| 5120 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5121 | assert(!bs->backing); |
| 5122 | assert(!bs->file); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5123 | bdrv_graph_wrunlock(); |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 5124 | |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5125 | g_free(bs->opaque); |
| 5126 | bs->opaque = NULL; |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 5127 | qatomic_set(&bs->copy_on_read, 0); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5128 | bs->backing_file[0] = '\0'; |
| 5129 | bs->backing_format[0] = '\0'; |
| 5130 | bs->total_sectors = 0; |
| 5131 | bs->encrypted = false; |
| 5132 | bs->sg = false; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 5133 | qobject_unref(bs->options); |
| 5134 | qobject_unref(bs->explicit_options); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5135 | bs->options = NULL; |
| 5136 | bs->explicit_options = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 5137 | qobject_unref(bs->full_open_options); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5138 | bs->full_open_options = NULL; |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 5139 | g_free(bs->block_status_cache); |
| 5140 | bs->block_status_cache = NULL; |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 5141 | |
Vladimir Sementsov-Ogievskiy | cca43ae | 2017-06-28 15:05:16 +0300 | [diff] [blame] | 5142 | bdrv_release_named_dirty_bitmaps(bs); |
| 5143 | assert(QLIST_EMPTY(&bs->dirty_bitmaps)); |
| 5144 | |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 5145 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
| 5146 | g_free(ban); |
| 5147 | } |
| 5148 | QLIST_INIT(&bs->aio_notifiers); |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 5149 | bdrv_drained_end(bs); |
Greg Kurz | 1a6d3bd | 2020-10-23 17:01:10 +0200 | [diff] [blame] | 5150 | |
| 5151 | /* |
| 5152 | * If we're still inside some bdrv_drain_all_begin()/end() sections, end |
| 5153 | * them now since this BDS won't exist anymore when bdrv_drain_all_end() |
| 5154 | * gets called. |
| 5155 | */ |
| 5156 | if (bs->quiesce_counter) { |
| 5157 | bdrv_drain_all_end_quiesce(bs); |
| 5158 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 5159 | } |
| 5160 | |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 5161 | void bdrv_close_all(void) |
| 5162 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5163 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | 880eeec | 2022-09-26 05:32:04 -0400 | [diff] [blame] | 5164 | assert(job_next(NULL) == NULL); |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 5165 | |
Max Reitz | ca9bd24 | 2016-01-29 16:36:14 +0100 | [diff] [blame] | 5166 | /* Drop references from requests still in flight, such as canceled block |
| 5167 | * jobs whose AIO context has not been polled yet */ |
| 5168 | bdrv_drain_all(); |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 5169 | |
Max Reitz | ca9bd24 | 2016-01-29 16:36:14 +0100 | [diff] [blame] | 5170 | blk_remove_all_bs(); |
| 5171 | blockdev_close_all_bdrv_states(); |
| 5172 | |
Kevin Wolf | a1a2af0 | 2016-04-08 18:26:37 +0200 | [diff] [blame] | 5173 | assert(QTAILQ_EMPTY(&all_bdrv_states)); |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 5174 | } |
| 5175 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5176 | static bool GRAPH_RDLOCK should_update_child(BdrvChild *c, BlockDriverState *to) |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5177 | { |
Vladimir Sementsov-Ogievskiy | 2f30b7c | 2019-02-23 22:20:39 +0300 | [diff] [blame] | 5178 | GQueue *queue; |
| 5179 | GHashTable *found; |
| 5180 | bool ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5181 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5182 | if (c->klass->stay_at_node) { |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5183 | return false; |
| 5184 | } |
| 5185 | |
Max Reitz | ec9f10f | 2018-06-13 20:18:15 +0200 | [diff] [blame] | 5186 | /* If the child @c belongs to the BDS @to, replacing the current |
| 5187 | * c->bs by @to would mean to create a loop. |
| 5188 | * |
| 5189 | * Such a case occurs when appending a BDS to a backing chain. |
| 5190 | * For instance, imagine the following chain: |
| 5191 | * |
| 5192 | * guest device -> node A -> further backing chain... |
| 5193 | * |
| 5194 | * Now we create a new BDS B which we want to put on top of this |
| 5195 | * chain, so we first attach A as its backing node: |
| 5196 | * |
| 5197 | * node B |
| 5198 | * | |
| 5199 | * v |
| 5200 | * guest device -> node A -> further backing chain... |
| 5201 | * |
| 5202 | * Finally we want to replace A by B. When doing that, we want to |
| 5203 | * replace all pointers to A by pointers to B -- except for the |
| 5204 | * pointer from B because (1) that would create a loop, and (2) |
| 5205 | * that pointer should simply stay intact: |
| 5206 | * |
| 5207 | * guest device -> node B |
| 5208 | * | |
| 5209 | * v |
| 5210 | * node A -> further backing chain... |
| 5211 | * |
| 5212 | * In general, when replacing a node A (c->bs) by a node B (@to), |
| 5213 | * if A is a child of B, that means we cannot replace A by B there |
| 5214 | * because that would create a loop. Silently detaching A from B |
| 5215 | * 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] | 5216 | * place there is the most sensible choice. |
| 5217 | * |
| 5218 | * We would also create a loop in any cases where @c is only |
| 5219 | * indirectly referenced by @to. Prevent this by returning false |
| 5220 | * if @c is found (by breadth-first search) anywhere in the whole |
| 5221 | * subtree of @to. |
| 5222 | */ |
| 5223 | |
| 5224 | ret = true; |
| 5225 | found = g_hash_table_new(NULL, NULL); |
| 5226 | g_hash_table_add(found, to); |
| 5227 | queue = g_queue_new(); |
| 5228 | g_queue_push_tail(queue, to); |
| 5229 | |
| 5230 | while (!g_queue_is_empty(queue)) { |
| 5231 | BlockDriverState *v = g_queue_pop_head(queue); |
| 5232 | BdrvChild *c2; |
| 5233 | |
| 5234 | QLIST_FOREACH(c2, &v->children, next) { |
| 5235 | if (c2 == c) { |
| 5236 | ret = false; |
| 5237 | break; |
| 5238 | } |
| 5239 | |
| 5240 | if (g_hash_table_contains(found, c2->bs)) { |
| 5241 | continue; |
| 5242 | } |
| 5243 | |
| 5244 | g_queue_push_tail(queue, c2->bs); |
| 5245 | g_hash_table_add(found, c2->bs); |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5246 | } |
| 5247 | } |
| 5248 | |
Vladimir Sementsov-Ogievskiy | 2f30b7c | 2019-02-23 22:20:39 +0300 | [diff] [blame] | 5249 | g_queue_free(queue); |
| 5250 | g_hash_table_destroy(found); |
| 5251 | |
| 5252 | return ret; |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5253 | } |
| 5254 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5255 | static void bdrv_remove_child_commit(void *opaque) |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5256 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 5257 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5258 | bdrv_child_free(opaque); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5259 | } |
| 5260 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5261 | static TransactionActionDrv bdrv_remove_child_drv = { |
| 5262 | .commit = bdrv_remove_child_commit, |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5263 | }; |
| 5264 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5265 | /* |
| 5266 | * Function doesn't update permissions, caller is responsible for this. |
| 5267 | * |
| 5268 | * @child->bs (if non-NULL) must be drained. |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 5269 | * |
| 5270 | * After calling this function, the transaction @tran may only be completed |
| 5271 | * while holding a writer lock for the graph. |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5272 | */ |
| 5273 | static void GRAPH_WRLOCK bdrv_remove_child(BdrvChild *child, Transaction *tran) |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5274 | { |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5275 | if (!child) { |
| 5276 | return; |
| 5277 | } |
| 5278 | |
| 5279 | if (child->bs) { |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5280 | assert(child->quiesced_parent); |
Vladimir Sementsov-Ogievskiy | a2c37a3 | 2022-07-26 23:11:30 +0300 | [diff] [blame] | 5281 | bdrv_replace_child_tran(child, NULL, tran); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5282 | } |
| 5283 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5284 | tran_add(tran, &bdrv_remove_child_drv, child); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5285 | } |
| 5286 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5287 | /* |
| 5288 | * Both @from and @to (if non-NULL) must be drained. @to must be kept drained |
| 5289 | * until the transaction is completed. |
Kevin Wolf | 5661a00 | 2023-09-11 11:46:10 +0200 | [diff] [blame] | 5290 | * |
| 5291 | * After calling this function, the transaction @tran may only be completed |
| 5292 | * while holding a writer lock for the graph. |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5293 | */ |
| 5294 | static int GRAPH_WRLOCK |
| 5295 | bdrv_replace_node_noperm(BlockDriverState *from, |
| 5296 | BlockDriverState *to, |
| 5297 | bool auto_skip, Transaction *tran, |
| 5298 | Error **errp) |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5299 | { |
| 5300 | BdrvChild *c, *next; |
| 5301 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 5302 | GLOBAL_STATE_CODE(); |
Hanna Reitz | 82b54cf | 2021-11-15 15:54:04 +0100 | [diff] [blame] | 5303 | |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5304 | assert(from->quiesce_counter); |
| 5305 | assert(to->quiesce_counter); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 5306 | |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5307 | QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { |
| 5308 | assert(c->bs == from); |
| 5309 | if (!should_update_child(c, to)) { |
| 5310 | if (auto_skip) { |
| 5311 | continue; |
| 5312 | } |
| 5313 | error_setg(errp, "Should not change '%s' link to '%s'", |
| 5314 | c->name, from->node_name); |
| 5315 | return -EINVAL; |
| 5316 | } |
| 5317 | if (c->frozen) { |
| 5318 | error_setg(errp, "Cannot change '%s' link to '%s'", |
| 5319 | c->name, from->node_name); |
| 5320 | return -EPERM; |
| 5321 | } |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 5322 | bdrv_replace_child_tran(c, to, tran); |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5323 | } |
| 5324 | |
| 5325 | return 0; |
| 5326 | } |
| 5327 | |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5328 | /* |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5329 | * Switch all parents of @from to point to @to instead. @from and @to must be in |
| 5330 | * the same AioContext and both must be drained. |
| 5331 | * |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5332 | * With auto_skip=true bdrv_replace_node_common skips updating from parents |
| 5333 | * if it creates a parent-child relation loop or if parent is block-job. |
| 5334 | * |
| 5335 | * With auto_skip=false the error is returned if from has a parent which should |
| 5336 | * not be updated. |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5337 | * |
| 5338 | * With @detach_subchain=true @to must be in a backing chain of @from. In this |
| 5339 | * case backing link of the cow-parent of @to is removed. |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5340 | */ |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5341 | static int GRAPH_WRLOCK |
| 5342 | bdrv_replace_node_common(BlockDriverState *from, BlockDriverState *to, |
| 5343 | bool auto_skip, bool detach_subchain, Error **errp) |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5344 | { |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5345 | Transaction *tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5346 | g_autoptr(GSList) refresh_list = NULL; |
Miroslav Rezanina | 2d369d6 | 2021-05-05 03:59:03 -0400 | [diff] [blame] | 5347 | BlockDriverState *to_cow_parent = NULL; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5348 | int ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5349 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 5350 | GLOBAL_STATE_CODE(); |
Hanna Reitz | 82b54cf | 2021-11-15 15:54:04 +0100 | [diff] [blame] | 5351 | |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5352 | assert(from->quiesce_counter); |
| 5353 | assert(to->quiesce_counter); |
Kevin Wolf | 30dd65f | 2020-03-10 12:38:29 +0100 | [diff] [blame] | 5354 | assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to)); |
Kevin Wolf | f871abd | 2019-05-21 19:00:25 +0200 | [diff] [blame] | 5355 | |
Kevin Wolf | 372b69f | 2023-10-27 17:53:15 +0200 | [diff] [blame] | 5356 | if (detach_subchain) { |
| 5357 | assert(bdrv_chain_contains(from, to)); |
| 5358 | assert(from != to); |
| 5359 | for (to_cow_parent = from; |
| 5360 | bdrv_filter_or_cow_bs(to_cow_parent) != to; |
| 5361 | to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent)) |
| 5362 | { |
| 5363 | ; |
| 5364 | } |
| 5365 | } |
| 5366 | |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5367 | /* |
| 5368 | * Do the replacement without permission update. |
| 5369 | * Replacement may influence the permissions, we should calculate new |
| 5370 | * permissions based on new graph. If we fail, we'll roll-back the |
| 5371 | * replacement. |
| 5372 | */ |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5373 | ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp); |
| 5374 | if (ret < 0) { |
| 5375 | goto out; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5376 | } |
| 5377 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5378 | if (detach_subchain) { |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5379 | /* to_cow_parent is already drained because from is drained */ |
Vladimir Sementsov-Ogievskiy | f38eaec | 2022-11-07 19:35:56 +0300 | [diff] [blame] | 5380 | 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] | 5381 | } |
| 5382 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 5383 | refresh_list = g_slist_prepend(refresh_list, to); |
| 5384 | refresh_list = g_slist_prepend(refresh_list, from); |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5385 | |
| 5386 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5387 | if (ret < 0) { |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5388 | goto out; |
| 5389 | } |
| 5390 | |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5391 | ret = 0; |
| 5392 | |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5393 | out: |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5394 | tran_finalize(tran, ret); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5395 | return ret; |
| 5396 | } |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5397 | |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5398 | int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, |
| 5399 | Error **errp) |
| 5400 | { |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5401 | return bdrv_replace_node_common(from, to, true, false, errp); |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5402 | } |
| 5403 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5404 | int bdrv_drop_filter(BlockDriverState *bs, Error **errp) |
| 5405 | { |
Kevin Wolf | 372b69f | 2023-10-27 17:53:15 +0200 | [diff] [blame] | 5406 | BlockDriverState *child_bs; |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5407 | int ret; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5408 | |
Kevin Wolf | 372b69f | 2023-10-27 17:53:15 +0200 | [diff] [blame] | 5409 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5410 | |
Kevin Wolf | 372b69f | 2023-10-27 17:53:15 +0200 | [diff] [blame] | 5411 | bdrv_graph_rdlock_main_loop(); |
| 5412 | child_bs = bdrv_filter_or_cow_bs(bs); |
| 5413 | bdrv_graph_rdunlock_main_loop(); |
| 5414 | |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5415 | bdrv_drained_begin(child_bs); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5416 | bdrv_graph_wrlock(); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5417 | ret = bdrv_replace_node_common(bs, child_bs, true, true, errp); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5418 | bdrv_graph_wrunlock(); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5419 | bdrv_drained_end(child_bs); |
| 5420 | |
| 5421 | return ret; |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5422 | } |
| 5423 | |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5424 | /* |
| 5425 | * Add new bs contents at the top of an image chain while the chain is |
| 5426 | * live, while keeping required fields on the top layer. |
| 5427 | * |
| 5428 | * This will modify the BlockDriverState fields, and swap contents |
| 5429 | * between bs_new and bs_top. Both bs_new and bs_top are modified. |
| 5430 | * |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5431 | * bs_new must not be attached to a BlockBackend and must not have backing |
| 5432 | * child. |
Jeff Cody | f6801b8 | 2012-03-27 16:30:19 -0400 | [diff] [blame] | 5433 | * |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5434 | * This function does not create any image files. |
| 5435 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5436 | int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, |
| 5437 | Error **errp) |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5438 | { |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5439 | int ret; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5440 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5441 | Transaction *tran = tran_new(); |
| 5442 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5443 | GLOBAL_STATE_CODE(); |
| 5444 | |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 5445 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5446 | assert(!bs_new->backing); |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 5447 | bdrv_graph_rdunlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5448 | |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 5449 | bdrv_drained_begin(bs_top); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 5450 | bdrv_drained_begin(bs_new); |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 5451 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5452 | bdrv_graph_wrlock(); |
Stefano Garzarella | 60d90bf | 2023-02-14 18:16:21 +0100 | [diff] [blame] | 5453 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5454 | child = bdrv_attach_child_noperm(bs_new, bs_top, "backing", |
| 5455 | &child_of_bds, bdrv_backing_role(bs_new), |
| 5456 | tran, errp); |
| 5457 | if (!child) { |
| 5458 | ret = -EINVAL; |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5459 | goto out; |
Kevin Wolf | b2c2832 | 2017-02-20 12:46:42 +0100 | [diff] [blame] | 5460 | } |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5461 | |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5462 | 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] | 5463 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5464 | goto out; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5465 | } |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5466 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 5467 | ret = bdrv_refresh_perms(bs_new, tran, errp); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5468 | out: |
| 5469 | tran_finalize(tran, ret); |
| 5470 | |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 5471 | bdrv_refresh_limits(bs_top, NULL, NULL); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5472 | bdrv_graph_wrunlock(); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5473 | |
Kevin Wolf | 7d4ca9d | 2023-09-11 11:46:09 +0200 | [diff] [blame] | 5474 | bdrv_drained_end(bs_top); |
| 5475 | bdrv_drained_end(bs_new); |
Kevin Wolf | 2f64e1f | 2023-09-11 11:46:08 +0200 | [diff] [blame] | 5476 | |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5477 | return ret; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5478 | } |
| 5479 | |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5480 | /* Not for empty child */ |
| 5481 | int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs, |
| 5482 | Error **errp) |
| 5483 | { |
| 5484 | int ret; |
| 5485 | Transaction *tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5486 | g_autoptr(GSList) refresh_list = NULL; |
| 5487 | BlockDriverState *old_bs = child->bs; |
| 5488 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5489 | GLOBAL_STATE_CODE(); |
| 5490 | |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5491 | bdrv_ref(old_bs); |
| 5492 | bdrv_drained_begin(old_bs); |
| 5493 | bdrv_drained_begin(new_bs); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5494 | bdrv_graph_wrlock(); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5495 | |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 5496 | bdrv_replace_child_tran(child, new_bs, tran); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5497 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 5498 | refresh_list = g_slist_prepend(refresh_list, old_bs); |
| 5499 | refresh_list = g_slist_prepend(refresh_list, new_bs); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5500 | |
| 5501 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
| 5502 | |
| 5503 | tran_finalize(tran, ret); |
| 5504 | |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5505 | bdrv_graph_wrunlock(); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5506 | bdrv_drained_end(old_bs); |
| 5507 | bdrv_drained_end(new_bs); |
| 5508 | bdrv_unref(old_bs); |
| 5509 | |
| 5510 | return ret; |
| 5511 | } |
| 5512 | |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 5513 | static void bdrv_delete(BlockDriverState *bs) |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 5514 | { |
Fam Zheng | 3718d8a | 2014-05-23 21:29:43 +0800 | [diff] [blame] | 5515 | assert(bdrv_op_blocker_is_empty(bs)); |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 5516 | assert(!bs->refcnt); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5517 | GLOBAL_STATE_CODE(); |
Markus Armbruster | 18846de | 2010-06-29 16:58:30 +0200 | [diff] [blame] | 5518 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 5519 | /* remove from list, if necessary */ |
Kevin Wolf | 63eaaae | 2016-03-18 10:46:57 +0100 | [diff] [blame] | 5520 | if (bs->node_name[0] != '\0') { |
| 5521 | QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); |
| 5522 | } |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 5523 | QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); |
| 5524 | |
Anton Kuchin | 30c321f | 2019-05-07 11:12:56 +0300 | [diff] [blame] | 5525 | bdrv_close(bs); |
| 5526 | |
Stefan Hajnoczi | fa9185f | 2023-08-08 11:58:52 -0400 | [diff] [blame] | 5527 | qemu_mutex_destroy(&bs->reqs_lock); |
| 5528 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 5529 | g_free(bs); |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5530 | } |
| 5531 | |
Vladimir Sementsov-Ogievskiy | 96796fa | 2021-09-20 14:55:36 +0300 | [diff] [blame] | 5532 | |
| 5533 | /* |
| 5534 | * Replace @bs by newly created block node. |
| 5535 | * |
| 5536 | * @options is a QDict of options to pass to the block drivers, or NULL for an |
| 5537 | * empty set of options. The reference to the QDict belongs to the block layer |
| 5538 | * after the call (even on failure), so if the caller intends to reuse the |
| 5539 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
Kevin Wolf | 8823407 | 2023-05-25 14:47:11 +0200 | [diff] [blame] | 5540 | * |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 5541 | * The caller must make sure that @bs stays in the same AioContext, i.e. |
| 5542 | * @options must not refer to nodes in a different AioContext. |
Vladimir Sementsov-Ogievskiy | 96796fa | 2021-09-20 14:55:36 +0300 | [diff] [blame] | 5543 | */ |
| 5544 | BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options, |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5545 | int flags, Error **errp) |
| 5546 | { |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame] | 5547 | ERRP_GUARD(); |
| 5548 | int ret; |
Kevin Wolf | 8823407 | 2023-05-25 14:47:11 +0200 | [diff] [blame] | 5549 | AioContext *ctx = bdrv_get_aio_context(bs); |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5550 | BlockDriverState *new_node_bs = NULL; |
| 5551 | const char *drvname, *node_name; |
| 5552 | BlockDriver *drv; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5553 | |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5554 | drvname = qdict_get_try_str(options, "driver"); |
| 5555 | if (!drvname) { |
| 5556 | error_setg(errp, "driver is not specified"); |
| 5557 | goto fail; |
| 5558 | } |
| 5559 | |
| 5560 | drv = bdrv_find_format(drvname); |
| 5561 | if (!drv) { |
| 5562 | error_setg(errp, "Unknown driver: '%s'", drvname); |
| 5563 | goto fail; |
| 5564 | } |
| 5565 | |
| 5566 | node_name = qdict_get_try_str(options, "node-name"); |
| 5567 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5568 | GLOBAL_STATE_CODE(); |
| 5569 | |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5570 | new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags, |
| 5571 | errp); |
Kevin Wolf | 8823407 | 2023-05-25 14:47:11 +0200 | [diff] [blame] | 5572 | assert(bdrv_get_aio_context(bs) == ctx); |
| 5573 | |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5574 | options = NULL; /* bdrv_new_open_driver() eats options */ |
| 5575 | if (!new_node_bs) { |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5576 | error_prepend(errp, "Could not create node: "); |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5577 | goto fail; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5578 | } |
| 5579 | |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5580 | /* |
| 5581 | * Make sure that @bs doesn't go away until we have successfully attached |
| 5582 | * all of its parents to @new_node_bs and undrained it again. |
| 5583 | */ |
| 5584 | bdrv_ref(bs); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5585 | bdrv_drained_begin(bs); |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5586 | bdrv_drained_begin(new_node_bs); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5587 | bdrv_graph_wrlock(); |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame] | 5588 | ret = bdrv_replace_node(bs, new_node_bs, errp); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5589 | bdrv_graph_wrunlock(); |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5590 | bdrv_drained_end(new_node_bs); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5591 | bdrv_drained_end(bs); |
Kevin Wolf | ccd6a37 | 2023-10-27 17:53:25 +0200 | [diff] [blame] | 5592 | bdrv_unref(bs); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5593 | |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame] | 5594 | if (ret < 0) { |
| 5595 | error_prepend(errp, "Could not replace node: "); |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5596 | goto fail; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5597 | } |
| 5598 | |
| 5599 | return new_node_bs; |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5600 | |
| 5601 | fail: |
| 5602 | qobject_unref(options); |
| 5603 | bdrv_unref(new_node_bs); |
| 5604 | return NULL; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5605 | } |
| 5606 | |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5607 | /* |
| 5608 | * Run consistency checks on an image |
| 5609 | * |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 5610 | * 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] | 5611 | * 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] | 5612 | * check are stored in res. |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5613 | */ |
Vladimir Sementsov-Ogievskiy | 21c2283 | 2020-09-24 21:54:10 +0300 | [diff] [blame] | 5614 | int coroutine_fn bdrv_co_check(BlockDriverState *bs, |
| 5615 | BdrvCheckResult *res, BdrvCheckMode fix) |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5616 | { |
Emanuele Giuseppe Esposito | 1581a70 | 2022-03-03 10:16:09 -0500 | [diff] [blame] | 5617 | IO_CODE(); |
Kevin Wolf | 1b3ff9f | 2022-12-07 14:18:38 +0100 | [diff] [blame] | 5618 | assert_bdrv_graph_readable(); |
Max Reitz | 908bcd5 | 2014-08-07 22:47:55 +0200 | [diff] [blame] | 5619 | if (bs->drv == NULL) { |
| 5620 | return -ENOMEDIUM; |
| 5621 | } |
Paolo Bonzini | 2fd6163 | 2018-03-01 17:36:19 +0100 | [diff] [blame] | 5622 | if (bs->drv->bdrv_co_check == NULL) { |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5623 | return -ENOTSUP; |
| 5624 | } |
| 5625 | |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 5626 | memset(res, 0, sizeof(*res)); |
Paolo Bonzini | 2fd6163 | 2018-03-01 17:36:19 +0100 | [diff] [blame] | 5627 | return bs->drv->bdrv_co_check(bs, res, fix); |
| 5628 | } |
| 5629 | |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5630 | /* |
| 5631 | * Return values: |
| 5632 | * 0 - success |
| 5633 | * -EINVAL - backing format specified, but no file |
| 5634 | * -ENOSPC - can't update the backing file because no space is left in the |
| 5635 | * image file header |
| 5636 | * -ENOTSUP - format driver doesn't support changing the backing file |
| 5637 | */ |
Kevin Wolf | e2dd273 | 2023-10-27 17:53:28 +0200 | [diff] [blame] | 5638 | int coroutine_fn |
| 5639 | bdrv_co_change_backing_file(BlockDriverState *bs, const char *backing_file, |
| 5640 | const char *backing_fmt, bool require) |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5641 | { |
| 5642 | BlockDriver *drv = bs->drv; |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5643 | int ret; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5644 | |
Kevin Wolf | e2dd273 | 2023-10-27 17:53:28 +0200 | [diff] [blame] | 5645 | IO_CODE(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5646 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 5647 | if (!drv) { |
| 5648 | return -ENOMEDIUM; |
| 5649 | } |
| 5650 | |
Paolo Bonzini | 5f37779 | 2012-04-12 14:01:01 +0200 | [diff] [blame] | 5651 | /* Backing file format doesn't make sense without a backing file */ |
| 5652 | if (backing_fmt && !backing_file) { |
| 5653 | return -EINVAL; |
| 5654 | } |
| 5655 | |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 5656 | if (require && backing_file && !backing_fmt) { |
| 5657 | return -EINVAL; |
Eric Blake | e54ee1b | 2020-07-06 15:39:53 -0500 | [diff] [blame] | 5658 | } |
| 5659 | |
Kevin Wolf | e2dd273 | 2023-10-27 17:53:28 +0200 | [diff] [blame] | 5660 | if (drv->bdrv_co_change_backing_file != NULL) { |
| 5661 | ret = drv->bdrv_co_change_backing_file(bs, backing_file, backing_fmt); |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5662 | } else { |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5663 | ret = -ENOTSUP; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5664 | } |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5665 | |
| 5666 | if (ret == 0) { |
| 5667 | pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); |
| 5668 | pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 5669 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
| 5670 | backing_file ?: ""); |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5671 | } |
| 5672 | return ret; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5673 | } |
| 5674 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5675 | /* |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5676 | * Finds the first non-filter node above bs in the chain between |
| 5677 | * active and bs. The returned node is either an immediate parent of |
| 5678 | * bs, or there are only filter nodes between the two. |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5679 | * |
| 5680 | * Returns NULL if bs is not found in active's image chain, |
| 5681 | * or if active == bs. |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5682 | * |
| 5683 | * Returns the bottommost base image if bs == NULL. |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5684 | */ |
| 5685 | BlockDriverState *bdrv_find_overlay(BlockDriverState *active, |
| 5686 | BlockDriverState *bs) |
| 5687 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5688 | |
| 5689 | GLOBAL_STATE_CODE(); |
| 5690 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5691 | bs = bdrv_skip_filters(bs); |
| 5692 | active = bdrv_skip_filters(active); |
| 5693 | |
| 5694 | while (active) { |
| 5695 | BlockDriverState *next = bdrv_backing_chain_next(active); |
| 5696 | if (bs == next) { |
| 5697 | return active; |
| 5698 | } |
| 5699 | active = next; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5700 | } |
| 5701 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5702 | return NULL; |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5703 | } |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5704 | |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5705 | /* Given a BDS, searches for the base layer. */ |
| 5706 | BlockDriverState *bdrv_find_base(BlockDriverState *bs) |
| 5707 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5708 | GLOBAL_STATE_CODE(); |
| 5709 | |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5710 | return bdrv_find_overlay(bs, NULL); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5711 | } |
| 5712 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5713 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5714 | * Return true if at least one of the COW (backing) and filter links |
| 5715 | * 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] | 5716 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5717 | */ |
Kevin Wolf | 9275fc7 | 2023-10-27 17:53:18 +0200 | [diff] [blame] | 5718 | static bool GRAPH_RDLOCK |
| 5719 | bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base, |
| 5720 | Error **errp) |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5721 | { |
| 5722 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5723 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5724 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5725 | GLOBAL_STATE_CODE(); |
| 5726 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5727 | for (i = bs; i != base; i = child_bs(child)) { |
| 5728 | child = bdrv_filter_or_cow_child(i); |
| 5729 | |
| 5730 | if (child && child->frozen) { |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5731 | error_setg(errp, "Cannot change '%s' link from '%s' to '%s'", |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5732 | child->name, i->node_name, child->bs->node_name); |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5733 | return true; |
| 5734 | } |
| 5735 | } |
| 5736 | |
| 5737 | return false; |
| 5738 | } |
| 5739 | |
| 5740 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5741 | * Freeze all COW (backing) and filter links between @bs and @base. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5742 | * If any of the links is already frozen the operation is aborted and |
| 5743 | * none of the links are modified. |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5744 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5745 | * Returns 0 on success. On failure returns < 0 and sets @errp. |
| 5746 | */ |
| 5747 | int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base, |
| 5748 | Error **errp) |
| 5749 | { |
| 5750 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5751 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5752 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5753 | GLOBAL_STATE_CODE(); |
| 5754 | |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5755 | if (bdrv_is_backing_chain_frozen(bs, base, errp)) { |
| 5756 | return -EPERM; |
| 5757 | } |
| 5758 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5759 | for (i = bs; i != base; i = child_bs(child)) { |
| 5760 | child = bdrv_filter_or_cow_child(i); |
| 5761 | if (child && child->bs->never_freeze) { |
Max Reitz | e5182c1 | 2019-07-03 19:28:02 +0200 | [diff] [blame] | 5762 | error_setg(errp, "Cannot freeze '%s' link to '%s'", |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5763 | child->name, child->bs->node_name); |
Max Reitz | e5182c1 | 2019-07-03 19:28:02 +0200 | [diff] [blame] | 5764 | return -EPERM; |
| 5765 | } |
| 5766 | } |
| 5767 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5768 | for (i = bs; i != base; i = child_bs(child)) { |
| 5769 | child = bdrv_filter_or_cow_child(i); |
| 5770 | if (child) { |
| 5771 | child->frozen = true; |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5772 | } |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5773 | } |
| 5774 | |
| 5775 | return 0; |
| 5776 | } |
| 5777 | |
| 5778 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5779 | * Unfreeze all COW (backing) and filter links between @bs and @base. |
| 5780 | * The caller must ensure that all links are frozen before using this |
| 5781 | * function. |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5782 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5783 | */ |
| 5784 | void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base) |
| 5785 | { |
| 5786 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5787 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5788 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5789 | GLOBAL_STATE_CODE(); |
| 5790 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5791 | for (i = bs; i != base; i = child_bs(child)) { |
| 5792 | child = bdrv_filter_or_cow_child(i); |
| 5793 | if (child) { |
| 5794 | assert(child->frozen); |
| 5795 | child->frozen = false; |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5796 | } |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5797 | } |
| 5798 | } |
| 5799 | |
| 5800 | /* |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5801 | * Drops images above 'base' up to and including 'top', and sets the image |
| 5802 | * above 'top' to have base as its backing file. |
| 5803 | * |
| 5804 | * Requires that the overlay to 'top' is opened r/w, so that the backing file |
| 5805 | * information in 'bs' can be properly updated. |
| 5806 | * |
| 5807 | * E.g., this will convert the following chain: |
| 5808 | * bottom <- base <- intermediate <- top <- active |
| 5809 | * |
| 5810 | * to |
| 5811 | * |
| 5812 | * bottom <- base <- active |
| 5813 | * |
| 5814 | * It is allowed for bottom==base, in which case it converts: |
| 5815 | * |
| 5816 | * base <- intermediate <- top <- active |
| 5817 | * |
| 5818 | * to |
| 5819 | * |
| 5820 | * base <- active |
| 5821 | * |
Jeff Cody | 54e2690 | 2014-06-25 15:40:10 -0400 | [diff] [blame] | 5822 | * If backing_file_str is non-NULL, it will be used when modifying top's |
| 5823 | * overlay image metadata. |
| 5824 | * |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5825 | * Error conditions: |
| 5826 | * if active == top, that is considered an error |
| 5827 | * |
| 5828 | */ |
Kevin Wolf | bde7071 | 2017-06-27 20:36:18 +0200 | [diff] [blame] | 5829 | int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 5830 | const char *backing_file_str, |
| 5831 | bool backing_mask_protocol) |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5832 | { |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5833 | BlockDriverState *explicit_top = top; |
| 5834 | bool update_inherits_from; |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5835 | BdrvChild *c; |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5836 | Error *local_err = NULL; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5837 | int ret = -EIO; |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5838 | g_autoptr(GSList) updated_children = NULL; |
| 5839 | GSList *p; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5840 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5841 | GLOBAL_STATE_CODE(); |
| 5842 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5843 | bdrv_ref(top); |
Kevin Wolf | 631086d | 2022-11-18 18:41:03 +0100 | [diff] [blame] | 5844 | bdrv_drained_begin(base); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5845 | bdrv_graph_wrlock(); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5846 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5847 | if (!top->drv || !base->drv) { |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5848 | goto exit_wrlock; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5849 | } |
| 5850 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 5851 | /* Make sure that base is in the backing chain of top */ |
| 5852 | if (!bdrv_chain_contains(top, base)) { |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5853 | goto exit_wrlock; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5854 | } |
| 5855 | |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5856 | /* If 'base' recursively inherits from 'top' then we should set |
| 5857 | * base->inherits_from to top->inherits_from after 'top' and all |
| 5858 | * other intermediate nodes have been dropped. |
| 5859 | * If 'top' is an implicit node (e.g. "commit_top") we should skip |
| 5860 | * 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] | 5861 | explicit_top = bdrv_skip_implicit_filters(explicit_top); |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5862 | update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top); |
| 5863 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5864 | /* success - we can delete the intermediate states, and link top->base */ |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 5865 | if (!backing_file_str) { |
| 5866 | bdrv_refresh_filename(base); |
| 5867 | backing_file_str = base->filename; |
| 5868 | } |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5869 | |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5870 | QLIST_FOREACH(c, &top->parents, next_parent) { |
| 5871 | updated_children = g_slist_prepend(updated_children, c); |
| 5872 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5873 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5874 | /* |
| 5875 | * It seems correct to pass detach_subchain=true here, but it triggers |
| 5876 | * one more yet not fixed bug, when due to nested aio_poll loop we switch to |
| 5877 | * another drained section, which modify the graph (for example, removing |
| 5878 | * the child, which we keep in updated_children list). So, it's a TODO. |
| 5879 | * |
| 5880 | * Note, bug triggered if pass detach_subchain=true here and run |
| 5881 | * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash. |
| 5882 | * That's a FIXME. |
| 5883 | */ |
| 5884 | bdrv_replace_node_common(top, base, false, false, &local_err); |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5885 | bdrv_graph_wrunlock(); |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5886 | |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5887 | if (local_err) { |
| 5888 | error_report_err(local_err); |
| 5889 | goto exit; |
| 5890 | } |
| 5891 | |
| 5892 | for (p = updated_children; p; p = p->next) { |
| 5893 | c = p->data; |
| 5894 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5895 | if (c->klass->update_filename) { |
| 5896 | ret = c->klass->update_filename(c, base, backing_file_str, |
Peter Krempa | 4b028cb | 2023-12-05 18:14:41 +0100 | [diff] [blame] | 5897 | backing_mask_protocol, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5898 | &local_err); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5899 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5900 | /* |
| 5901 | * TODO: Actually, we want to rollback all previous iterations |
| 5902 | * of this loop, and (which is almost impossible) previous |
| 5903 | * bdrv_replace_node()... |
| 5904 | * |
| 5905 | * Note, that c->klass->update_filename may lead to permission |
| 5906 | * update, so it's a bad idea to call it inside permission |
| 5907 | * update transaction of bdrv_replace_node. |
| 5908 | */ |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5909 | error_report_err(local_err); |
| 5910 | goto exit; |
| 5911 | } |
| 5912 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5913 | } |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5914 | |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5915 | if (update_inherits_from) { |
| 5916 | base->inherits_from = explicit_top->inherits_from; |
| 5917 | } |
| 5918 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5919 | ret = 0; |
Kevin Wolf | 5c0ef49 | 2023-10-27 17:53:24 +0200 | [diff] [blame] | 5920 | goto exit; |
| 5921 | |
| 5922 | exit_wrlock: |
Stefan Hajnoczi | 6bc30f1 | 2023-12-05 13:20:02 -0500 | [diff] [blame] | 5923 | bdrv_graph_wrunlock(); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5924 | exit: |
Kevin Wolf | 631086d | 2022-11-18 18:41:03 +0100 | [diff] [blame] | 5925 | bdrv_drained_end(base); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5926 | bdrv_unref(top); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5927 | return ret; |
| 5928 | } |
| 5929 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5930 | /** |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5931 | * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5932 | * sums the size of all data-bearing children. (This excludes backing |
| 5933 | * children.) |
| 5934 | */ |
Emanuele Giuseppe Esposito | de33563 | 2023-05-04 13:57:43 +0200 | [diff] [blame] | 5935 | static int64_t coroutine_fn GRAPH_RDLOCK |
| 5936 | bdrv_sum_allocated_file_size(BlockDriverState *bs) |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5937 | { |
| 5938 | BdrvChild *child; |
| 5939 | int64_t child_size, sum = 0; |
| 5940 | |
| 5941 | QLIST_FOREACH(child, &bs->children, next) { |
| 5942 | if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | |
| 5943 | BDRV_CHILD_FILTERED)) |
| 5944 | { |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5945 | child_size = bdrv_co_get_allocated_file_size(child->bs); |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5946 | if (child_size < 0) { |
| 5947 | return child_size; |
| 5948 | } |
| 5949 | sum += child_size; |
| 5950 | } |
| 5951 | } |
| 5952 | |
| 5953 | return sum; |
| 5954 | } |
| 5955 | |
| 5956 | /** |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5957 | * Length of a allocated file in bytes. Sparse files are counted by actual |
| 5958 | * allocated space. Return < 0 if error or unknown. |
| 5959 | */ |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5960 | int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs) |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5961 | { |
| 5962 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5963 | IO_CODE(); |
Emanuele Giuseppe Esposito | de33563 | 2023-05-04 13:57:43 +0200 | [diff] [blame] | 5964 | assert_bdrv_graph_readable(); |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5965 | |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5966 | if (!drv) { |
| 5967 | return -ENOMEDIUM; |
| 5968 | } |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5969 | if (drv->bdrv_co_get_allocated_file_size) { |
| 5970 | return drv->bdrv_co_get_allocated_file_size(bs); |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5971 | } |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5972 | |
Paolo Bonzini | 41770f6 | 2022-11-24 16:21:18 +0100 | [diff] [blame^] | 5973 | if (drv->protocol_name) { |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5974 | /* |
| 5975 | * Protocol drivers default to -ENOTSUP (most of their data is |
| 5976 | * not stored in any of their children (if they even have any), |
| 5977 | * so there is no generic way to figure it out). |
| 5978 | */ |
| 5979 | return -ENOTSUP; |
| 5980 | } else if (drv->is_filter) { |
| 5981 | /* Filter drivers default to the size of their filtered child */ |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5982 | return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs)); |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5983 | } else { |
| 5984 | /* Other drivers default to summing their children's sizes */ |
| 5985 | return bdrv_sum_allocated_file_size(bs); |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5986 | } |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5987 | } |
| 5988 | |
Stefan Hajnoczi | 90880ff | 2017-07-05 13:57:30 +0100 | [diff] [blame] | 5989 | /* |
| 5990 | * bdrv_measure: |
| 5991 | * @drv: Format driver |
| 5992 | * @opts: Creation options for new image |
| 5993 | * @in_bs: Existing image containing data for new image (may be NULL) |
| 5994 | * @errp: Error object |
| 5995 | * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) |
| 5996 | * or NULL on error |
| 5997 | * |
| 5998 | * Calculate file size required to create a new image. |
| 5999 | * |
| 6000 | * If @in_bs is given then space for allocated clusters and zero clusters |
| 6001 | * from that image are included in the calculation. If @opts contains a |
| 6002 | * backing file that is shared by @in_bs then backing clusters may be omitted |
| 6003 | * from the calculation. |
| 6004 | * |
| 6005 | * If @in_bs is NULL then the calculation includes no allocated clusters |
| 6006 | * unless a preallocation option is given in @opts. |
| 6007 | * |
| 6008 | * Note that @in_bs may use a different BlockDriver from @drv. |
| 6009 | * |
| 6010 | * If an error occurs the @errp pointer is set. |
| 6011 | */ |
| 6012 | BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, |
| 6013 | BlockDriverState *in_bs, Error **errp) |
| 6014 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6015 | IO_CODE(); |
Stefan Hajnoczi | 90880ff | 2017-07-05 13:57:30 +0100 | [diff] [blame] | 6016 | if (!drv->bdrv_measure) { |
| 6017 | error_setg(errp, "Block driver '%s' does not support size measurement", |
| 6018 | drv->format_name); |
| 6019 | return NULL; |
| 6020 | } |
| 6021 | |
| 6022 | return drv->bdrv_measure(opts, in_bs, errp); |
| 6023 | } |
| 6024 | |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 6025 | /** |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6026 | * Return number of sectors on success, -errno on error. |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6027 | */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6028 | int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6029 | { |
| 6030 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6031 | IO_CODE(); |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 6032 | assert_bdrv_graph_readable(); |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6033 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6034 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6035 | return -ENOMEDIUM; |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 6036 | |
Paolo Bonzini | 160a29e | 2023-04-07 17:32:56 +0200 | [diff] [blame] | 6037 | if (bs->bl.has_variable_length) { |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6038 | int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors); |
Kevin Wolf | b94a261 | 2013-10-29 12:18:58 +0100 | [diff] [blame] | 6039 | if (ret < 0) { |
| 6040 | return ret; |
Stefan Hajnoczi | 46a4e4e | 2011-03-29 20:04:41 +0100 | [diff] [blame] | 6041 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6042 | } |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6043 | return bs->total_sectors; |
| 6044 | } |
| 6045 | |
Paolo Bonzini | 81f730d | 2023-04-07 17:33:03 +0200 | [diff] [blame] | 6046 | /* |
| 6047 | * This wrapper is written by hand because this function is in the hot I/O path, |
| 6048 | * via blk_get_geometry. |
| 6049 | */ |
| 6050 | int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs) |
| 6051 | { |
| 6052 | BlockDriver *drv = bs->drv; |
| 6053 | IO_CODE(); |
| 6054 | |
| 6055 | if (!drv) |
| 6056 | return -ENOMEDIUM; |
| 6057 | |
| 6058 | if (bs->bl.has_variable_length) { |
| 6059 | int ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); |
| 6060 | if (ret < 0) { |
| 6061 | return ret; |
| 6062 | } |
| 6063 | } |
| 6064 | |
| 6065 | return bs->total_sectors; |
| 6066 | } |
| 6067 | |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6068 | /** |
| 6069 | * Return length in bytes on success, -errno on error. |
| 6070 | * The length is always a multiple of BDRV_SECTOR_SIZE. |
| 6071 | */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6072 | int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs) |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6073 | { |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6074 | int64_t ret; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6075 | IO_CODE(); |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 6076 | assert_bdrv_graph_readable(); |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 6077 | |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 6078 | ret = bdrv_co_nb_sectors(bs); |
Eric Blake | 122860b | 2020-11-05 09:51:22 -0600 | [diff] [blame] | 6079 | if (ret < 0) { |
| 6080 | return ret; |
| 6081 | } |
| 6082 | if (ret > INT64_MAX / BDRV_SECTOR_SIZE) { |
| 6083 | return -EFBIG; |
| 6084 | } |
| 6085 | return ret * BDRV_SECTOR_SIZE; |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 6086 | } |
| 6087 | |
Eric Blake | 5411541 | 2016-06-23 16:37:26 -0600 | [diff] [blame] | 6088 | bool bdrv_is_sg(BlockDriverState *bs) |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 6089 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6090 | IO_CODE(); |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 6091 | return bs->sg; |
| 6092 | } |
| 6093 | |
Max Reitz | ae23f78 | 2019-06-12 22:57:15 +0200 | [diff] [blame] | 6094 | /** |
| 6095 | * Return whether the given node supports compressed writes. |
| 6096 | */ |
| 6097 | bool bdrv_supports_compressed_writes(BlockDriverState *bs) |
| 6098 | { |
| 6099 | BlockDriverState *filtered; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6100 | IO_CODE(); |
Max Reitz | ae23f78 | 2019-06-12 22:57:15 +0200 | [diff] [blame] | 6101 | |
| 6102 | if (!bs->drv || !block_driver_can_compress(bs->drv)) { |
| 6103 | return false; |
| 6104 | } |
| 6105 | |
| 6106 | filtered = bdrv_filter_bs(bs); |
| 6107 | if (filtered) { |
| 6108 | /* |
| 6109 | * Filters can only forward compressed writes, so we have to |
| 6110 | * check the child. |
| 6111 | */ |
| 6112 | return bdrv_supports_compressed_writes(filtered); |
| 6113 | } |
| 6114 | |
| 6115 | return true; |
| 6116 | } |
| 6117 | |
Markus Armbruster | f8d6bba | 2012-06-13 10:11:48 +0200 | [diff] [blame] | 6118 | const char *bdrv_get_format_name(BlockDriverState *bs) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6119 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6120 | IO_CODE(); |
Markus Armbruster | f8d6bba | 2012-06-13 10:11:48 +0200 | [diff] [blame] | 6121 | return bs->drv ? bs->drv->format_name : NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6122 | } |
| 6123 | |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6124 | static int qsort_strcmp(const void *a, const void *b) |
| 6125 | { |
Max Reitz | ceff5bd | 2016-10-12 22:49:05 +0200 | [diff] [blame] | 6126 | return strcmp(*(char *const *)a, *(char *const *)b); |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6127 | } |
| 6128 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 6129 | void bdrv_iterate_format(void (*it)(void *opaque, const char *name), |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 6130 | void *opaque, bool read_only) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6131 | { |
| 6132 | BlockDriver *drv; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6133 | int count = 0; |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6134 | int i; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6135 | const char **formats = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6136 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6137 | GLOBAL_STATE_CODE(); |
| 6138 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 6139 | QLIST_FOREACH(drv, &bdrv_drivers, list) { |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6140 | if (drv->format_name) { |
| 6141 | bool found = false; |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 6142 | |
| 6143 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) { |
| 6144 | continue; |
| 6145 | } |
| 6146 | |
Markus Armbruster | fb2575f | 2023-09-21 14:13:11 +0200 | [diff] [blame] | 6147 | i = count; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6148 | while (formats && i && !found) { |
| 6149 | found = !strcmp(formats[--i], drv->format_name); |
| 6150 | } |
| 6151 | |
| 6152 | if (!found) { |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 6153 | formats = g_renew(const char *, formats, count + 1); |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6154 | formats[count++] = drv->format_name; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6155 | } |
| 6156 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6157 | } |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6158 | |
Max Reitz | eb0df69 | 2016-10-12 22:49:06 +0200 | [diff] [blame] | 6159 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { |
| 6160 | const char *format_name = block_driver_modules[i].format_name; |
| 6161 | |
| 6162 | if (format_name) { |
| 6163 | bool found = false; |
| 6164 | int j = count; |
| 6165 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 6166 | if (use_bdrv_whitelist && |
| 6167 | !bdrv_format_is_whitelisted(format_name, read_only)) { |
| 6168 | continue; |
| 6169 | } |
| 6170 | |
Max Reitz | eb0df69 | 2016-10-12 22:49:06 +0200 | [diff] [blame] | 6171 | while (formats && j && !found) { |
| 6172 | found = !strcmp(formats[--j], format_name); |
| 6173 | } |
| 6174 | |
| 6175 | if (!found) { |
| 6176 | formats = g_renew(const char *, formats, count + 1); |
| 6177 | formats[count++] = format_name; |
| 6178 | } |
| 6179 | } |
| 6180 | } |
| 6181 | |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6182 | qsort(formats, count, sizeof(formats[0]), qsort_strcmp); |
| 6183 | |
| 6184 | for (i = 0; i < count; i++) { |
| 6185 | it(opaque, formats[i]); |
| 6186 | } |
| 6187 | |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6188 | g_free(formats); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6189 | } |
| 6190 | |
Benoît Canet | dc364f4 | 2014-01-23 21:31:32 +0100 | [diff] [blame] | 6191 | /* This function is to find a node in the bs graph */ |
| 6192 | BlockDriverState *bdrv_find_node(const char *node_name) |
| 6193 | { |
| 6194 | BlockDriverState *bs; |
| 6195 | |
| 6196 | assert(node_name); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6197 | GLOBAL_STATE_CODE(); |
Benoît Canet | dc364f4 | 2014-01-23 21:31:32 +0100 | [diff] [blame] | 6198 | |
| 6199 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
| 6200 | if (!strcmp(node_name, bs->node_name)) { |
| 6201 | return bs; |
| 6202 | } |
| 6203 | } |
| 6204 | return NULL; |
| 6205 | } |
| 6206 | |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6207 | /* 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] | 6208 | BlockDeviceInfoList *bdrv_named_nodes_list(bool flat, |
| 6209 | Error **errp) |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6210 | { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6211 | BlockDeviceInfoList *list; |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6212 | BlockDriverState *bs; |
| 6213 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6214 | GLOBAL_STATE_CODE(); |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 6215 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6216 | |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6217 | list = NULL; |
| 6218 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
Peter Krempa | facda54 | 2020-01-20 09:50:49 +0100 | [diff] [blame] | 6219 | BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp); |
Alberto Garcia | d5a8ee6 | 2015-04-17 14:52:43 +0300 | [diff] [blame] | 6220 | if (!info) { |
| 6221 | qapi_free_BlockDeviceInfoList(list); |
| 6222 | return NULL; |
| 6223 | } |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6224 | QAPI_LIST_PREPEND(list, info); |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6225 | } |
| 6226 | |
| 6227 | return list; |
| 6228 | } |
| 6229 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6230 | typedef struct XDbgBlockGraphConstructor { |
| 6231 | XDbgBlockGraph *graph; |
| 6232 | GHashTable *graph_nodes; |
| 6233 | } XDbgBlockGraphConstructor; |
| 6234 | |
| 6235 | static XDbgBlockGraphConstructor *xdbg_graph_new(void) |
| 6236 | { |
| 6237 | XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1); |
| 6238 | |
| 6239 | gr->graph = g_new0(XDbgBlockGraph, 1); |
| 6240 | gr->graph_nodes = g_hash_table_new(NULL, NULL); |
| 6241 | |
| 6242 | return gr; |
| 6243 | } |
| 6244 | |
| 6245 | static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr) |
| 6246 | { |
| 6247 | XDbgBlockGraph *graph = gr->graph; |
| 6248 | |
| 6249 | g_hash_table_destroy(gr->graph_nodes); |
| 6250 | g_free(gr); |
| 6251 | |
| 6252 | return graph; |
| 6253 | } |
| 6254 | |
| 6255 | static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node) |
| 6256 | { |
| 6257 | uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node); |
| 6258 | |
| 6259 | if (ret != 0) { |
| 6260 | return ret; |
| 6261 | } |
| 6262 | |
| 6263 | /* |
| 6264 | * Start counting from 1, not 0, because 0 interferes with not-found (NULL) |
| 6265 | * answer of g_hash_table_lookup. |
| 6266 | */ |
| 6267 | ret = g_hash_table_size(gr->graph_nodes) + 1; |
| 6268 | g_hash_table_insert(gr->graph_nodes, node, (void *)ret); |
| 6269 | |
| 6270 | return ret; |
| 6271 | } |
| 6272 | |
| 6273 | static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node, |
| 6274 | XDbgBlockGraphNodeType type, const char *name) |
| 6275 | { |
| 6276 | XDbgBlockGraphNode *n; |
| 6277 | |
| 6278 | n = g_new0(XDbgBlockGraphNode, 1); |
| 6279 | |
| 6280 | n->id = xdbg_graph_node_num(gr, node); |
| 6281 | n->type = type; |
| 6282 | n->name = g_strdup(name); |
| 6283 | |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6284 | QAPI_LIST_PREPEND(gr->graph->nodes, n); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6285 | } |
| 6286 | |
| 6287 | static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent, |
| 6288 | const BdrvChild *child) |
| 6289 | { |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 6290 | BlockPermission qapi_perm; |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6291 | XDbgBlockGraphEdge *edge; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 6292 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6293 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6294 | edge = g_new0(XDbgBlockGraphEdge, 1); |
| 6295 | |
| 6296 | edge->parent = xdbg_graph_node_num(gr, parent); |
| 6297 | edge->child = xdbg_graph_node_num(gr, child->bs); |
| 6298 | edge->name = g_strdup(child->name); |
| 6299 | |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 6300 | for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) { |
| 6301 | uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm); |
| 6302 | |
| 6303 | if (flag & child->perm) { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6304 | QAPI_LIST_PREPEND(edge->perm, qapi_perm); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6305 | } |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 6306 | if (flag & child->shared_perm) { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6307 | QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6308 | } |
| 6309 | } |
| 6310 | |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6311 | QAPI_LIST_PREPEND(gr->graph->edges, edge); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6312 | } |
| 6313 | |
| 6314 | |
| 6315 | XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp) |
| 6316 | { |
| 6317 | BlockBackend *blk; |
| 6318 | BlockJob *job; |
| 6319 | BlockDriverState *bs; |
| 6320 | BdrvChild *child; |
| 6321 | XDbgBlockGraphConstructor *gr = xdbg_graph_new(); |
| 6322 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6323 | GLOBAL_STATE_CODE(); |
| 6324 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6325 | for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) { |
| 6326 | char *allocated_name = NULL; |
| 6327 | const char *name = blk_name(blk); |
| 6328 | |
| 6329 | if (!*name) { |
| 6330 | name = allocated_name = blk_get_attached_dev_id(blk); |
| 6331 | } |
| 6332 | xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND, |
| 6333 | name); |
| 6334 | g_free(allocated_name); |
| 6335 | if (blk_root(blk)) { |
| 6336 | xdbg_graph_add_edge(gr, blk, blk_root(blk)); |
| 6337 | } |
| 6338 | } |
| 6339 | |
Emanuele Giuseppe Esposito | 880eeec | 2022-09-26 05:32:04 -0400 | [diff] [blame] | 6340 | WITH_JOB_LOCK_GUARD() { |
| 6341 | for (job = block_job_next_locked(NULL); job; |
| 6342 | job = block_job_next_locked(job)) { |
| 6343 | GSList *el; |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6344 | |
Emanuele Giuseppe Esposito | 880eeec | 2022-09-26 05:32:04 -0400 | [diff] [blame] | 6345 | xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB, |
| 6346 | job->job.id); |
| 6347 | for (el = job->nodes; el; el = el->next) { |
| 6348 | xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data); |
| 6349 | } |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6350 | } |
| 6351 | } |
| 6352 | |
| 6353 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
| 6354 | xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER, |
| 6355 | bs->node_name); |
| 6356 | QLIST_FOREACH(child, &bs->children, next) { |
| 6357 | xdbg_graph_add_edge(gr, bs, child); |
| 6358 | } |
| 6359 | } |
| 6360 | |
| 6361 | return xdbg_graph_finalize(gr); |
| 6362 | } |
| 6363 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6364 | BlockDriverState *bdrv_lookup_bs(const char *device, |
| 6365 | const char *node_name, |
| 6366 | Error **errp) |
| 6367 | { |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6368 | BlockBackend *blk; |
| 6369 | BlockDriverState *bs; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6370 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6371 | GLOBAL_STATE_CODE(); |
| 6372 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6373 | if (device) { |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6374 | blk = blk_by_name(device); |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6375 | |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6376 | if (blk) { |
Alberto Garcia | 9f4ed6f | 2015-10-26 16:46:49 +0200 | [diff] [blame] | 6377 | bs = blk_bs(blk); |
| 6378 | if (!bs) { |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 6379 | error_setg(errp, "Device '%s' has no medium", device); |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 6380 | } |
| 6381 | |
Alberto Garcia | 9f4ed6f | 2015-10-26 16:46:49 +0200 | [diff] [blame] | 6382 | return bs; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6383 | } |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6384 | } |
| 6385 | |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 6386 | if (node_name) { |
| 6387 | bs = bdrv_find_node(node_name); |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6388 | |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 6389 | if (bs) { |
| 6390 | return bs; |
| 6391 | } |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6392 | } |
| 6393 | |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 6394 | error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'", |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 6395 | device ? device : "", |
| 6396 | node_name ? node_name : ""); |
| 6397 | return NULL; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6398 | } |
| 6399 | |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 6400 | /* If 'base' is in the same chain as 'top', return true. Otherwise, |
| 6401 | * return false. If either argument is NULL, return false. */ |
| 6402 | bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) |
| 6403 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6404 | |
| 6405 | GLOBAL_STATE_CODE(); |
| 6406 | |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 6407 | while (top && top != base) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6408 | top = bdrv_filter_or_cow_bs(top); |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 6409 | } |
| 6410 | |
| 6411 | return top != NULL; |
| 6412 | } |
| 6413 | |
Fam Zheng | 04df765 | 2014-10-31 11:32:54 +0800 | [diff] [blame] | 6414 | BlockDriverState *bdrv_next_node(BlockDriverState *bs) |
| 6415 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6416 | GLOBAL_STATE_CODE(); |
Fam Zheng | 04df765 | 2014-10-31 11:32:54 +0800 | [diff] [blame] | 6417 | if (!bs) { |
| 6418 | return QTAILQ_FIRST(&graph_bdrv_states); |
| 6419 | } |
| 6420 | return QTAILQ_NEXT(bs, node_list); |
| 6421 | } |
| 6422 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 6423 | BlockDriverState *bdrv_next_all_states(BlockDriverState *bs) |
| 6424 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6425 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 6426 | if (!bs) { |
| 6427 | return QTAILQ_FIRST(&all_bdrv_states); |
| 6428 | } |
| 6429 | return QTAILQ_NEXT(bs, bs_list); |
| 6430 | } |
| 6431 | |
Fam Zheng | 20a9e77 | 2014-10-31 11:32:55 +0800 | [diff] [blame] | 6432 | const char *bdrv_get_node_name(const BlockDriverState *bs) |
| 6433 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6434 | IO_CODE(); |
Fam Zheng | 20a9e77 | 2014-10-31 11:32:55 +0800 | [diff] [blame] | 6435 | return bs->node_name; |
| 6436 | } |
| 6437 | |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 6438 | const char *bdrv_get_parent_name(const BlockDriverState *bs) |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6439 | { |
| 6440 | BdrvChild *c; |
| 6441 | const char *name; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 6442 | IO_CODE(); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6443 | |
| 6444 | /* If multiple parents have a name, just pick the first one. */ |
| 6445 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6446 | if (c->klass->get_name) { |
| 6447 | name = c->klass->get_name(c); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6448 | if (name && *name) { |
| 6449 | return name; |
| 6450 | } |
| 6451 | } |
| 6452 | } |
| 6453 | |
| 6454 | return NULL; |
| 6455 | } |
| 6456 | |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6457 | /* TODO check what callers really want: bs->node_name or blk_name() */ |
Markus Armbruster | bfb197e | 2014-10-07 13:59:11 +0200 | [diff] [blame] | 6458 | const char *bdrv_get_device_name(const BlockDriverState *bs) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6459 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6460 | IO_CODE(); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6461 | return bdrv_get_parent_name(bs) ?: ""; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6462 | } |
| 6463 | |
Alberto Garcia | 9b2aa84 | 2015-04-08 12:29:18 +0300 | [diff] [blame] | 6464 | /* This can be used to identify nodes that might not have a device |
| 6465 | * name associated. Since node and device names live in the same |
| 6466 | * namespace, the result is unambiguous. The exception is if both are |
| 6467 | * absent, then this returns an empty (non-null) string. */ |
| 6468 | const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) |
| 6469 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6470 | IO_CODE(); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6471 | return bdrv_get_parent_name(bs) ?: bs->node_name; |
Alberto Garcia | 9b2aa84 | 2015-04-08 12:29:18 +0300 | [diff] [blame] | 6472 | } |
| 6473 | |
Markus Armbruster | c843328 | 2012-06-05 16:49:24 +0200 | [diff] [blame] | 6474 | int bdrv_get_flags(BlockDriverState *bs) |
| 6475 | { |
Hanna Reitz | 15aee7a | 2022-04-27 13:40:54 +0200 | [diff] [blame] | 6476 | IO_CODE(); |
Markus Armbruster | c843328 | 2012-06-05 16:49:24 +0200 | [diff] [blame] | 6477 | return bs->open_flags; |
| 6478 | } |
| 6479 | |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 6480 | int bdrv_has_zero_init_1(BlockDriverState *bs) |
| 6481 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6482 | GLOBAL_STATE_CODE(); |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 6483 | return 1; |
| 6484 | } |
| 6485 | |
Kevin Wolf | 0671798 | 2023-10-27 17:53:11 +0200 | [diff] [blame] | 6486 | int coroutine_mixed_fn bdrv_has_zero_init(BlockDriverState *bs) |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6487 | { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6488 | BlockDriverState *filtered; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6489 | GLOBAL_STATE_CODE(); |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6490 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 6491 | if (!bs->drv) { |
| 6492 | return 0; |
| 6493 | } |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6494 | |
Paolo Bonzini | 11212d8 | 2013-09-04 19:00:27 +0200 | [diff] [blame] | 6495 | /* If BS is a copy on write image, it is initialized to |
| 6496 | the contents of the base image, which may not be zeroes. */ |
Max Reitz | 3477817 | 2019-06-12 17:10:46 +0200 | [diff] [blame] | 6497 | if (bdrv_cow_child(bs)) { |
Paolo Bonzini | 11212d8 | 2013-09-04 19:00:27 +0200 | [diff] [blame] | 6498 | return 0; |
| 6499 | } |
Kevin Wolf | 336c1c1 | 2010-07-28 11:26:29 +0200 | [diff] [blame] | 6500 | if (bs->drv->bdrv_has_zero_init) { |
| 6501 | return bs->drv->bdrv_has_zero_init(bs); |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6502 | } |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6503 | |
| 6504 | filtered = bdrv_filter_bs(bs); |
| 6505 | if (filtered) { |
| 6506 | return bdrv_has_zero_init(filtered); |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6507 | } |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6508 | |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 6509 | /* safe default */ |
| 6510 | return 0; |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6511 | } |
| 6512 | |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 6513 | bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) |
| 6514 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6515 | IO_CODE(); |
Denis V. Lunev | 2f0342e | 2016-07-14 16:33:26 +0300 | [diff] [blame] | 6516 | if (!(bs->open_flags & BDRV_O_UNMAP)) { |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 6517 | return false; |
| 6518 | } |
| 6519 | |
Eric Blake | e24d813 | 2018-01-26 13:34:39 -0600 | [diff] [blame] | 6520 | return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 6521 | } |
| 6522 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 6523 | void bdrv_get_backing_filename(BlockDriverState *bs, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6524 | char *filename, int filename_size) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6525 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6526 | IO_CODE(); |
Kevin Wolf | 3574c60 | 2011-10-26 11:02:11 +0200 | [diff] [blame] | 6527 | pstrcpy(filename, filename_size, bs->backing_file); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6528 | } |
| 6529 | |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6530 | int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6531 | { |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 6532 | int ret; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6533 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6534 | IO_CODE(); |
Emanuele Giuseppe Esposito | a00e70c | 2023-05-04 13:57:44 +0200 | [diff] [blame] | 6535 | assert_bdrv_graph_readable(); |
| 6536 | |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6537 | /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ |
| 6538 | if (!drv) { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6539 | return -ENOMEDIUM; |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6540 | } |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6541 | if (!drv->bdrv_co_get_info) { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6542 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
| 6543 | if (filtered) { |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6544 | return bdrv_co_get_info(filtered, bdi); |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6545 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6546 | return -ENOTSUP; |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6547 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6548 | memset(bdi, 0, sizeof(*bdi)); |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6549 | ret = drv->bdrv_co_get_info(bs, bdi); |
Andrey Drobyshev | c54483b | 2023-07-11 20:25:51 +0300 | [diff] [blame] | 6550 | if (bdi->subcluster_size == 0) { |
| 6551 | /* |
| 6552 | * If the driver left this unset, subclusters are not supported. |
| 6553 | * Then it is safe to treat each cluster as having only one subcluster. |
| 6554 | */ |
| 6555 | bdi->subcluster_size = bdi->cluster_size; |
| 6556 | } |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 6557 | if (ret < 0) { |
| 6558 | return ret; |
| 6559 | } |
| 6560 | |
| 6561 | if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) { |
| 6562 | return -EINVAL; |
| 6563 | } |
| 6564 | |
| 6565 | return 0; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6566 | } |
| 6567 | |
Andrey Shinkevich | 1bf6e9c | 2019-02-08 18:06:06 +0300 | [diff] [blame] | 6568 | ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs, |
| 6569 | Error **errp) |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6570 | { |
| 6571 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6572 | IO_CODE(); |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6573 | if (drv && drv->bdrv_get_specific_info) { |
Andrey Shinkevich | 1bf6e9c | 2019-02-08 18:06:06 +0300 | [diff] [blame] | 6574 | return drv->bdrv_get_specific_info(bs, errp); |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6575 | } |
| 6576 | return NULL; |
| 6577 | } |
| 6578 | |
Anton Nefedov | d924559 | 2019-09-23 15:17:37 +0300 | [diff] [blame] | 6579 | BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs) |
| 6580 | { |
| 6581 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6582 | IO_CODE(); |
Anton Nefedov | d924559 | 2019-09-23 15:17:37 +0300 | [diff] [blame] | 6583 | if (!drv || !drv->bdrv_get_specific_stats) { |
| 6584 | return NULL; |
| 6585 | } |
| 6586 | return drv->bdrv_get_specific_stats(bs); |
| 6587 | } |
| 6588 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 6589 | void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event) |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6590 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6591 | IO_CODE(); |
Emanuele Giuseppe Esposito | cb2bfaa | 2023-05-04 13:57:45 +0200 | [diff] [blame] | 6592 | assert_bdrv_graph_readable(); |
| 6593 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 6594 | if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) { |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6595 | return; |
| 6596 | } |
| 6597 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 6598 | bs->drv->bdrv_co_debug_event(bs, event); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6599 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6600 | |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6601 | static BlockDriverState * GRAPH_RDLOCK |
| 6602 | bdrv_find_debug_node(BlockDriverState *bs) |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6603 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 6604 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6605 | while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6606 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6607 | } |
| 6608 | |
| 6609 | if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6610 | assert(bs->drv->bdrv_debug_remove_breakpoint); |
| 6611 | return bs; |
| 6612 | } |
| 6613 | |
| 6614 | return NULL; |
| 6615 | } |
| 6616 | |
| 6617 | int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, |
| 6618 | const char *tag) |
| 6619 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6620 | GLOBAL_STATE_CODE(); |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6621 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 6622 | |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6623 | bs = bdrv_find_debug_node(bs); |
| 6624 | if (bs) { |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6625 | return bs->drv->bdrv_debug_breakpoint(bs, event, tag); |
| 6626 | } |
| 6627 | |
| 6628 | return -ENOTSUP; |
| 6629 | } |
| 6630 | |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 6631 | int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) |
| 6632 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6633 | GLOBAL_STATE_CODE(); |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6634 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 6635 | |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6636 | bs = bdrv_find_debug_node(bs); |
| 6637 | if (bs) { |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 6638 | return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); |
| 6639 | } |
| 6640 | |
| 6641 | return -ENOTSUP; |
| 6642 | } |
| 6643 | |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6644 | int bdrv_debug_resume(BlockDriverState *bs, const char *tag) |
| 6645 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6646 | GLOBAL_STATE_CODE(); |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6647 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 6648 | |
Max Reitz | 938789e | 2014-03-10 23:44:08 +0100 | [diff] [blame] | 6649 | while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6650 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6651 | } |
| 6652 | |
| 6653 | if (bs && bs->drv && bs->drv->bdrv_debug_resume) { |
| 6654 | return bs->drv->bdrv_debug_resume(bs, tag); |
| 6655 | } |
| 6656 | |
| 6657 | return -ENOTSUP; |
| 6658 | } |
| 6659 | |
| 6660 | bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) |
| 6661 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6662 | GLOBAL_STATE_CODE(); |
Kevin Wolf | c0fc512 | 2023-09-29 16:51:46 +0200 | [diff] [blame] | 6663 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
| 6664 | |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6665 | while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6666 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6667 | } |
| 6668 | |
| 6669 | if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { |
| 6670 | return bs->drv->bdrv_debug_is_suspended(bs, tag); |
| 6671 | } |
| 6672 | |
| 6673 | return false; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6674 | } |
| 6675 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6676 | /* backing_file can either be relative, or absolute, or a protocol. If it is |
| 6677 | * relative, it must be relative to the chain. So, passing in bs->filename |
| 6678 | * from a BDS as backing_file should not be done, as that may be relative to |
| 6679 | * the CWD rather than the chain. */ |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6680 | BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, |
| 6681 | const char *backing_file) |
| 6682 | { |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6683 | char *filename_full = NULL; |
| 6684 | char *backing_file_full = NULL; |
| 6685 | char *filename_tmp = NULL; |
| 6686 | int is_protocol = 0; |
Max Reitz | 0b877d0 | 2018-08-01 20:34:11 +0200 | [diff] [blame] | 6687 | bool filenames_refreshed = false; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6688 | BlockDriverState *curr_bs = NULL; |
| 6689 | BlockDriverState *retval = NULL; |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6690 | BlockDriverState *bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6691 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6692 | GLOBAL_STATE_CODE(); |
Kevin Wolf | b7cfc7d | 2023-09-29 16:51:45 +0200 | [diff] [blame] | 6693 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6694 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6695 | if (!bs || !bs->drv || !backing_file) { |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6696 | return NULL; |
| 6697 | } |
| 6698 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6699 | filename_full = g_malloc(PATH_MAX); |
| 6700 | backing_file_full = g_malloc(PATH_MAX); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6701 | |
| 6702 | is_protocol = path_has_protocol(backing_file); |
| 6703 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6704 | /* |
| 6705 | * Being largely a legacy function, skip any filters here |
| 6706 | * (because filters do not have normal filenames, so they cannot |
| 6707 | * match anyway; and allowing json:{} filenames is a bit out of |
| 6708 | * scope). |
| 6709 | */ |
| 6710 | for (curr_bs = bdrv_skip_filters(bs); |
| 6711 | bdrv_cow_child(curr_bs) != NULL; |
| 6712 | curr_bs = bs_below) |
| 6713 | { |
| 6714 | bs_below = bdrv_backing_chain_next(curr_bs); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6715 | |
Max Reitz | 0b877d0 | 2018-08-01 20:34:11 +0200 | [diff] [blame] | 6716 | if (bdrv_backing_overridden(curr_bs)) { |
| 6717 | /* |
| 6718 | * If the backing file was overridden, we can only compare |
| 6719 | * directly against the backing node's filename. |
| 6720 | */ |
| 6721 | |
| 6722 | if (!filenames_refreshed) { |
| 6723 | /* |
| 6724 | * This will automatically refresh all of the |
| 6725 | * filenames in the rest of the backing chain, so we |
| 6726 | * only need to do this once. |
| 6727 | */ |
| 6728 | bdrv_refresh_filename(bs_below); |
| 6729 | filenames_refreshed = true; |
| 6730 | } |
| 6731 | |
| 6732 | if (strcmp(backing_file, bs_below->filename) == 0) { |
| 6733 | retval = bs_below; |
| 6734 | break; |
| 6735 | } |
| 6736 | } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) { |
| 6737 | /* |
| 6738 | * If either of the filename paths is actually a protocol, then |
| 6739 | * compare unmodified paths; otherwise make paths relative. |
| 6740 | */ |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 6741 | char *backing_file_full_ret; |
| 6742 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6743 | if (strcmp(backing_file, curr_bs->backing_file) == 0) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6744 | retval = bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6745 | break; |
| 6746 | } |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6747 | /* Also check against the full backing filename for the image */ |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 6748 | backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs, |
| 6749 | NULL); |
| 6750 | if (backing_file_full_ret) { |
| 6751 | bool equal = strcmp(backing_file, backing_file_full_ret) == 0; |
| 6752 | g_free(backing_file_full_ret); |
| 6753 | if (equal) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6754 | retval = bs_below; |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6755 | break; |
| 6756 | } |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6757 | } |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6758 | } else { |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6759 | /* If not an absolute filename path, make it relative to the current |
| 6760 | * image's filename path */ |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6761 | filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file, |
| 6762 | NULL); |
| 6763 | /* We are going to compare canonicalized absolute pathnames */ |
| 6764 | if (!filename_tmp || !realpath(filename_tmp, filename_full)) { |
| 6765 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6766 | continue; |
| 6767 | } |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6768 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6769 | |
| 6770 | /* We need to make sure the backing filename we are comparing against |
| 6771 | * is relative to the current image filename (or absolute) */ |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6772 | filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL); |
| 6773 | if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) { |
| 6774 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6775 | continue; |
| 6776 | } |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6777 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6778 | |
| 6779 | if (strcmp(backing_file_full, filename_full) == 0) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6780 | retval = bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6781 | break; |
| 6782 | } |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6783 | } |
| 6784 | } |
| 6785 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6786 | g_free(filename_full); |
| 6787 | g_free(backing_file_full); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6788 | return retval; |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6789 | } |
| 6790 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6791 | void bdrv_init(void) |
| 6792 | { |
Kevin Wolf | e5f05f8 | 2021-07-09 18:41:41 +0200 | [diff] [blame] | 6793 | #ifdef CONFIG_BDRV_WHITELIST_TOOLS |
| 6794 | use_bdrv_whitelist = 1; |
| 6795 | #endif |
Anthony Liguori | 5efa9d5 | 2009-05-09 17:03:42 -0500 | [diff] [blame] | 6796 | module_call_init(MODULE_INIT_BLOCK); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6797 | } |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 6798 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 6799 | void bdrv_init_with_whitelist(void) |
| 6800 | { |
| 6801 | use_bdrv_whitelist = 1; |
| 6802 | bdrv_init(); |
| 6803 | } |
| 6804 | |
Emanuele Giuseppe Esposito | a94750d | 2022-02-09 05:54:50 -0500 | [diff] [blame] | 6805 | int bdrv_activate(BlockDriverState *bs, Error **errp) |
| 6806 | { |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6807 | BdrvChild *child, *parent; |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6808 | Error *local_err = NULL; |
| 6809 | int ret; |
Vladimir Sementsov-Ogievskiy | 9c98f14 | 2018-10-29 16:23:17 -0400 | [diff] [blame] | 6810 | BdrvDirtyBitmap *bm; |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6811 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6812 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 3804e3c | 2023-09-11 11:46:12 +0200 | [diff] [blame] | 6813 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6814 | |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6815 | if (!bs->drv) { |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6816 | return -ENOMEDIUM; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6817 | } |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6818 | |
Vladimir Sementsov-Ogievskiy | 16e977d | 2017-01-31 14:23:08 +0300 | [diff] [blame] | 6819 | QLIST_FOREACH(child, &bs->children, next) { |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6820 | bdrv_activate(child->bs, &local_err); |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6821 | if (local_err) { |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6822 | error_propagate(errp, local_err); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6823 | return -EINVAL; |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6824 | } |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6825 | } |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6826 | |
Kevin Wolf | dafe096 | 2017-11-16 13:00:01 +0100 | [diff] [blame] | 6827 | /* |
| 6828 | * Update permissions, they may differ for inactive nodes. |
| 6829 | * |
| 6830 | * Note that the required permissions of inactive images are always a |
| 6831 | * subset of the permissions required after activating the image. This |
| 6832 | * allows us to just get the permissions upfront without restricting |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6833 | * bdrv_co_invalidate_cache(). |
Kevin Wolf | dafe096 | 2017-11-16 13:00:01 +0100 | [diff] [blame] | 6834 | * |
| 6835 | * It also means that in error cases, we don't have to try and revert to |
| 6836 | * the old permissions (which is an operation that could fail, too). We can |
| 6837 | * just keep the extended permissions for the next time that an activation |
| 6838 | * of the image is tried. |
| 6839 | */ |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6840 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 6841 | bs->open_flags &= ~BDRV_O_INACTIVE; |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 6842 | ret = bdrv_refresh_perms(bs, NULL, errp); |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6843 | if (ret < 0) { |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6844 | bs->open_flags |= BDRV_O_INACTIVE; |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6845 | return ret; |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6846 | } |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6847 | |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6848 | ret = bdrv_invalidate_cache(bs, errp); |
| 6849 | if (ret < 0) { |
| 6850 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6851 | return ret; |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6852 | } |
Vladimir Sementsov-Ogievskiy | 9c98f14 | 2018-10-29 16:23:17 -0400 | [diff] [blame] | 6853 | |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6854 | FOR_EACH_DIRTY_BITMAP(bs, bm) { |
| 6855 | bdrv_dirty_bitmap_skip_store(bm, false); |
| 6856 | } |
| 6857 | |
Emanuele Giuseppe Esposito | c057960 | 2023-01-13 21:42:03 +0100 | [diff] [blame] | 6858 | ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6859 | if (ret < 0) { |
| 6860 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6861 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6862 | return ret; |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6863 | } |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6864 | } |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6865 | |
| 6866 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6867 | if (parent->klass->activate) { |
| 6868 | parent->klass->activate(parent, &local_err); |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6869 | if (local_err) { |
Kevin Wolf | 78fc3b3 | 2019-01-31 15:16:10 +0100 | [diff] [blame] | 6870 | bs->open_flags |= BDRV_O_INACTIVE; |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6871 | error_propagate(errp, local_err); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6872 | return -EINVAL; |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6873 | } |
| 6874 | } |
| 6875 | } |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6876 | |
| 6877 | return 0; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6878 | } |
| 6879 | |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6880 | int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp) |
| 6881 | { |
| 6882 | Error *local_err = NULL; |
Emanuele Giuseppe Esposito | 1581a70 | 2022-03-03 10:16:09 -0500 | [diff] [blame] | 6883 | IO_CODE(); |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6884 | |
| 6885 | assert(!(bs->open_flags & BDRV_O_INACTIVE)); |
Kevin Wolf | 1b3ff9f | 2022-12-07 14:18:38 +0100 | [diff] [blame] | 6886 | assert_bdrv_graph_readable(); |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6887 | |
| 6888 | if (bs->drv->bdrv_co_invalidate_cache) { |
| 6889 | bs->drv->bdrv_co_invalidate_cache(bs, &local_err); |
| 6890 | if (local_err) { |
| 6891 | error_propagate(errp, local_err); |
| 6892 | return -EINVAL; |
| 6893 | } |
| 6894 | } |
| 6895 | |
| 6896 | return 0; |
| 6897 | } |
| 6898 | |
Emanuele Giuseppe Esposito | 3b71719 | 2022-02-09 05:54:51 -0500 | [diff] [blame] | 6899 | void bdrv_activate_all(Error **errp) |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6900 | { |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 6901 | BlockDriverState *bs; |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6902 | BdrvNextIterator it; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6903 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6904 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 2b3912f | 2023-09-29 16:51:39 +0200 | [diff] [blame] | 6905 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6906 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6907 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6908 | int ret; |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 6909 | |
Emanuele Giuseppe Esposito | a94750d | 2022-02-09 05:54:50 -0500 | [diff] [blame] | 6910 | ret = bdrv_activate(bs, errp); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6911 | if (ret < 0) { |
Max Reitz | 5e003f1 | 2017-11-10 18:25:45 +0100 | [diff] [blame] | 6912 | bdrv_next_cleanup(&it); |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6913 | return; |
| 6914 | } |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6915 | } |
| 6916 | } |
| 6917 | |
Kevin Wolf | 0e6bad1 | 2023-09-29 16:51:38 +0200 | [diff] [blame] | 6918 | static bool GRAPH_RDLOCK |
| 6919 | bdrv_has_bds_parent(BlockDriverState *bs, bool only_active) |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6920 | { |
| 6921 | BdrvChild *parent; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 6922 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6923 | |
| 6924 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6925 | if (parent->klass->parent_is_bds) { |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6926 | BlockDriverState *parent_bs = parent->opaque; |
| 6927 | if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) { |
| 6928 | return true; |
| 6929 | } |
| 6930 | } |
| 6931 | } |
| 6932 | |
| 6933 | return false; |
| 6934 | } |
| 6935 | |
Kevin Wolf | 0e6bad1 | 2023-09-29 16:51:38 +0200 | [diff] [blame] | 6936 | static int GRAPH_RDLOCK bdrv_inactivate_recurse(BlockDriverState *bs) |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6937 | { |
Kevin Wolf | cfa1a57 | 2017-05-04 18:52:38 +0200 | [diff] [blame] | 6938 | BdrvChild *child, *parent; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6939 | int ret; |
Vladimir Sementsov-Ogievskiy | a13de40 | 2021-09-11 15:00:27 +0300 | [diff] [blame] | 6940 | uint64_t cumulative_perms, cumulative_shared_perms; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6941 | |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 6942 | GLOBAL_STATE_CODE(); |
| 6943 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 6944 | if (!bs->drv) { |
| 6945 | return -ENOMEDIUM; |
| 6946 | } |
| 6947 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6948 | /* Make sure that we don't inactivate a child before its parent. |
| 6949 | * It will be covered by recursion from the yet active parent. */ |
| 6950 | if (bdrv_has_bds_parent(bs, true)) { |
| 6951 | return 0; |
| 6952 | } |
| 6953 | |
| 6954 | assert(!(bs->open_flags & BDRV_O_INACTIVE)); |
| 6955 | |
| 6956 | /* Inactivate this node */ |
| 6957 | if (bs->drv->bdrv_inactivate) { |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6958 | ret = bs->drv->bdrv_inactivate(bs); |
| 6959 | if (ret < 0) { |
| 6960 | return ret; |
| 6961 | } |
| 6962 | } |
| 6963 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6964 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6965 | if (parent->klass->inactivate) { |
| 6966 | ret = parent->klass->inactivate(parent); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6967 | if (ret < 0) { |
| 6968 | return ret; |
Kevin Wolf | cfa1a57 | 2017-05-04 18:52:38 +0200 | [diff] [blame] | 6969 | } |
| 6970 | } |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6971 | } |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 6972 | |
Vladimir Sementsov-Ogievskiy | a13de40 | 2021-09-11 15:00:27 +0300 | [diff] [blame] | 6973 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
| 6974 | &cumulative_shared_perms); |
| 6975 | if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) { |
| 6976 | /* Our inactive parents still need write access. Inactivation failed. */ |
| 6977 | return -EPERM; |
| 6978 | } |
| 6979 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6980 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6981 | |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 6982 | /* |
| 6983 | * Update permissions, they may differ for inactive nodes. |
| 6984 | * We only tried to loosen restrictions, so errors are not fatal, ignore |
| 6985 | * them. |
| 6986 | */ |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 6987 | bdrv_refresh_perms(bs, NULL, NULL); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6988 | |
| 6989 | /* Recursively inactivate children */ |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 6990 | QLIST_FOREACH(child, &bs->children, next) { |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6991 | ret = bdrv_inactivate_recurse(child->bs); |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 6992 | if (ret < 0) { |
| 6993 | return ret; |
| 6994 | } |
| 6995 | } |
| 6996 | |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6997 | return 0; |
| 6998 | } |
| 6999 | |
| 7000 | int bdrv_inactivate_all(void) |
| 7001 | { |
Max Reitz | 79720af | 2016-03-16 19:54:44 +0100 | [diff] [blame] | 7002 | BlockDriverState *bs = NULL; |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 7003 | BdrvNextIterator it; |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 7004 | int ret = 0; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7005 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7006 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 0e6bad1 | 2023-09-29 16:51:38 +0200 | [diff] [blame] | 7007 | GRAPH_RDLOCK_GUARD_MAINLOOP(); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7008 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 7009 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 7010 | /* Nodes with BDS parents are covered by recursion from the last |
| 7011 | * parent that gets inactivated. Don't inactivate them a second |
| 7012 | * time if that has already happened. */ |
| 7013 | if (bdrv_has_bds_parent(bs, false)) { |
| 7014 | continue; |
| 7015 | } |
| 7016 | ret = bdrv_inactivate_recurse(bs); |
| 7017 | if (ret < 0) { |
| 7018 | bdrv_next_cleanup(&it); |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 7019 | break; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7020 | } |
| 7021 | } |
| 7022 | |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 7023 | return ret; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 7024 | } |
| 7025 | |
Kevin Wolf | f9f05dc | 2011-07-15 13:50:26 +0200 | [diff] [blame] | 7026 | /**************************************************************/ |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7027 | /* removable device support */ |
| 7028 | |
| 7029 | /** |
| 7030 | * Return TRUE if the media is present |
| 7031 | */ |
Emanuele Giuseppe Esposito | 1e97be9 | 2023-01-13 21:42:02 +0100 | [diff] [blame] | 7032 | bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7033 | { |
| 7034 | BlockDriver *drv = bs->drv; |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 7035 | BdrvChild *child; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7036 | IO_CODE(); |
Emanuele Giuseppe Esposito | c73ff92 | 2023-02-03 16:21:57 +0100 | [diff] [blame] | 7037 | assert_bdrv_graph_readable(); |
Markus Armbruster | a1aff5b | 2011-09-06 18:58:41 +0200 | [diff] [blame] | 7038 | |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 7039 | if (!drv) { |
| 7040 | return false; |
| 7041 | } |
Emanuele Giuseppe Esposito | 1e97be9 | 2023-01-13 21:42:02 +0100 | [diff] [blame] | 7042 | if (drv->bdrv_co_is_inserted) { |
| 7043 | return drv->bdrv_co_is_inserted(bs); |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 7044 | } |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 7045 | QLIST_FOREACH(child, &bs->children, next) { |
Emanuele Giuseppe Esposito | 1e97be9 | 2023-01-13 21:42:02 +0100 | [diff] [blame] | 7046 | if (!bdrv_co_is_inserted(child->bs)) { |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 7047 | return false; |
| 7048 | } |
| 7049 | } |
| 7050 | return true; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7051 | } |
| 7052 | |
| 7053 | /** |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7054 | * If eject_flag is TRUE, eject the media. Otherwise, close the tray |
| 7055 | */ |
Emanuele Giuseppe Esposito | 2531b39 | 2023-01-13 21:42:09 +0100 | [diff] [blame] | 7056 | void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7057 | { |
| 7058 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7059 | IO_CODE(); |
Kevin Wolf | 79a292e | 2023-02-03 16:21:58 +0100 | [diff] [blame] | 7060 | assert_bdrv_graph_readable(); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7061 | |
Emanuele Giuseppe Esposito | 2531b39 | 2023-01-13 21:42:09 +0100 | [diff] [blame] | 7062 | if (drv && drv->bdrv_co_eject) { |
| 7063 | drv->bdrv_co_eject(bs, eject_flag); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7064 | } |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7065 | } |
| 7066 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7067 | /** |
| 7068 | * Lock or unlock the media (if it is locked, the user won't be able |
| 7069 | * to eject it manually). |
| 7070 | */ |
Emanuele Giuseppe Esposito | 2c75261 | 2023-01-13 21:42:10 +0100 | [diff] [blame] | 7071 | void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7072 | { |
| 7073 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7074 | IO_CODE(); |
Kevin Wolf | 79a292e | 2023-02-03 16:21:58 +0100 | [diff] [blame] | 7075 | assert_bdrv_graph_readable(); |
Markus Armbruster | 025e849 | 2011-09-06 18:58:47 +0200 | [diff] [blame] | 7076 | trace_bdrv_lock_medium(bs, locked); |
Stefan Hajnoczi | b8c6d09 | 2011-03-29 20:04:40 +0100 | [diff] [blame] | 7077 | |
Emanuele Giuseppe Esposito | 2c75261 | 2023-01-13 21:42:10 +0100 | [diff] [blame] | 7078 | if (drv && drv->bdrv_co_lock_medium) { |
| 7079 | drv->bdrv_co_lock_medium(bs, locked); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 7080 | } |
| 7081 | } |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 7082 | |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 7083 | /* Get a reference to bs */ |
| 7084 | void bdrv_ref(BlockDriverState *bs) |
| 7085 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7086 | GLOBAL_STATE_CODE(); |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 7087 | bs->refcnt++; |
| 7088 | } |
| 7089 | |
| 7090 | /* Release a previously grabbed reference to bs. |
| 7091 | * If after releasing, reference count is zero, the BlockDriverState is |
| 7092 | * deleted. */ |
| 7093 | void bdrv_unref(BlockDriverState *bs) |
| 7094 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7095 | GLOBAL_STATE_CODE(); |
Jeff Cody | 9a4d5ca | 2014-07-23 17:22:57 -0400 | [diff] [blame] | 7096 | if (!bs) { |
| 7097 | return; |
| 7098 | } |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 7099 | assert(bs->refcnt > 0); |
| 7100 | if (--bs->refcnt == 0) { |
| 7101 | bdrv_delete(bs); |
| 7102 | } |
| 7103 | } |
| 7104 | |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7105 | static void bdrv_schedule_unref_bh(void *opaque) |
| 7106 | { |
| 7107 | BlockDriverState *bs = opaque; |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7108 | |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7109 | bdrv_unref(bs); |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7110 | } |
| 7111 | |
Kevin Wolf | ac2ae23 | 2023-09-11 11:46:04 +0200 | [diff] [blame] | 7112 | /* |
| 7113 | * Release a BlockDriverState reference while holding the graph write lock. |
| 7114 | * |
| 7115 | * Calling bdrv_unref() directly is forbidden while holding the graph lock |
| 7116 | * because bdrv_close() both involves polling and taking the graph lock |
| 7117 | * internally. bdrv_schedule_unref() instead delays decreasing the refcount and |
| 7118 | * possibly closing @bs until the graph lock is released. |
| 7119 | */ |
| 7120 | void bdrv_schedule_unref(BlockDriverState *bs) |
| 7121 | { |
| 7122 | if (!bs) { |
| 7123 | return; |
| 7124 | } |
Kevin Wolf | 6bc0bcc | 2023-11-15 18:20:10 +0100 | [diff] [blame] | 7125 | 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] | 7126 | } |
| 7127 | |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7128 | struct BdrvOpBlocker { |
| 7129 | Error *reason; |
| 7130 | QLIST_ENTRY(BdrvOpBlocker) list; |
| 7131 | }; |
| 7132 | |
| 7133 | bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) |
| 7134 | { |
| 7135 | BdrvOpBlocker *blocker; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7136 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 0bb79c9 | 2023-09-29 16:51:49 +0200 | [diff] [blame] | 7137 | |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7138 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 7139 | if (!QLIST_EMPTY(&bs->op_blockers[op])) { |
| 7140 | blocker = QLIST_FIRST(&bs->op_blockers[op]); |
Markus Armbruster | 4b57664 | 2018-10-17 10:26:25 +0200 | [diff] [blame] | 7141 | error_propagate_prepend(errp, error_copy(blocker->reason), |
| 7142 | "Node '%s' is busy: ", |
| 7143 | bdrv_get_device_or_node_name(bs)); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7144 | return true; |
| 7145 | } |
| 7146 | return false; |
| 7147 | } |
| 7148 | |
| 7149 | void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) |
| 7150 | { |
| 7151 | BdrvOpBlocker *blocker; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7152 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7153 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 7154 | |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 7155 | blocker = g_new0(BdrvOpBlocker, 1); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7156 | blocker->reason = reason; |
| 7157 | QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); |
| 7158 | } |
| 7159 | |
| 7160 | void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) |
| 7161 | { |
| 7162 | BdrvOpBlocker *blocker, *next; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7163 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7164 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 7165 | QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { |
| 7166 | if (blocker->reason == reason) { |
| 7167 | QLIST_REMOVE(blocker, list); |
| 7168 | g_free(blocker); |
| 7169 | } |
| 7170 | } |
| 7171 | } |
| 7172 | |
| 7173 | void bdrv_op_block_all(BlockDriverState *bs, Error *reason) |
| 7174 | { |
| 7175 | int i; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7176 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7177 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 7178 | bdrv_op_block(bs, i, reason); |
| 7179 | } |
| 7180 | } |
| 7181 | |
| 7182 | void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) |
| 7183 | { |
| 7184 | int i; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7185 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7186 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 7187 | bdrv_op_unblock(bs, i, reason); |
| 7188 | } |
| 7189 | } |
| 7190 | |
| 7191 | bool bdrv_op_blocker_is_empty(BlockDriverState *bs) |
| 7192 | { |
| 7193 | int i; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7194 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 7195 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 7196 | if (!QLIST_EMPTY(&bs->op_blockers[i])) { |
| 7197 | return false; |
| 7198 | } |
| 7199 | } |
| 7200 | return true; |
| 7201 | } |
| 7202 | |
Kevin Wolf | e135505 | 2022-12-07 14:18:30 +0100 | [diff] [blame] | 7203 | /* |
| 7204 | * Must not be called while holding the lock of an AioContext other than the |
| 7205 | * current one. |
| 7206 | */ |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 7207 | void bdrv_img_create(const char *filename, const char *fmt, |
| 7208 | const char *base_filename, const char *base_fmt, |
Fam Zheng | 9217283 | 2017-04-21 20:27:01 +0800 | [diff] [blame] | 7209 | char *options, uint64_t img_size, int flags, bool quiet, |
| 7210 | Error **errp) |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7211 | { |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7212 | QemuOptsList *create_opts = NULL; |
| 7213 | QemuOpts *opts = NULL; |
| 7214 | const char *backing_fmt, *backing_file; |
| 7215 | int64_t size; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7216 | BlockDriver *drv, *proto_drv; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7217 | Error *local_err = NULL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7218 | int ret = 0; |
| 7219 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7220 | GLOBAL_STATE_CODE(); |
| 7221 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7222 | /* Find driver and parse its options */ |
| 7223 | drv = bdrv_find_format(fmt); |
| 7224 | if (!drv) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7225 | error_setg(errp, "Unknown file format '%s'", fmt); |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 7226 | return; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7227 | } |
| 7228 | |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 7229 | proto_drv = bdrv_find_protocol(filename, true, errp); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7230 | if (!proto_drv) { |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 7231 | return; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7232 | } |
| 7233 | |
Max Reitz | c614972 | 2014-12-02 18:32:45 +0100 | [diff] [blame] | 7234 | if (!drv->create_opts) { |
| 7235 | error_setg(errp, "Format driver '%s' does not support image creation", |
| 7236 | drv->format_name); |
| 7237 | return; |
| 7238 | } |
| 7239 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 7240 | if (!proto_drv->create_opts) { |
| 7241 | error_setg(errp, "Protocol driver '%s' does not support image creation", |
| 7242 | proto_drv->format_name); |
| 7243 | return; |
| 7244 | } |
| 7245 | |
Kevin Wolf | f6dc1c3 | 2019-11-26 16:45:49 +0100 | [diff] [blame] | 7246 | /* Create parameter list */ |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7247 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 7248 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7249 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7250 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7251 | |
| 7252 | /* Parse -o options */ |
| 7253 | if (options) { |
Markus Armbruster | a5f9b9d | 2020-07-07 18:06:05 +0200 | [diff] [blame] | 7254 | if (!qemu_opts_do_parse(opts, options, NULL, errp)) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7255 | goto out; |
| 7256 | } |
| 7257 | } |
| 7258 | |
Kevin Wolf | f6dc1c3 | 2019-11-26 16:45:49 +0100 | [diff] [blame] | 7259 | if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) { |
| 7260 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); |
| 7261 | } else if (img_size != UINT64_C(-1)) { |
| 7262 | error_setg(errp, "The image size must be specified only once"); |
| 7263 | goto out; |
| 7264 | } |
| 7265 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7266 | if (base_filename) { |
Markus Armbruster | 235e59c | 2020-07-07 18:05:42 +0200 | [diff] [blame] | 7267 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, |
Markus Armbruster | 3882578 | 2020-07-07 18:05:43 +0200 | [diff] [blame] | 7268 | NULL)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7269 | error_setg(errp, "Backing file not supported for file format '%s'", |
| 7270 | fmt); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7271 | goto out; |
| 7272 | } |
| 7273 | } |
| 7274 | |
| 7275 | if (base_fmt) { |
Markus Armbruster | 3882578 | 2020-07-07 18:05:43 +0200 | [diff] [blame] | 7276 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7277 | error_setg(errp, "Backing file format not supported for file " |
| 7278 | "format '%s'", fmt); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7279 | goto out; |
| 7280 | } |
| 7281 | } |
| 7282 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7283 | backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); |
| 7284 | if (backing_file) { |
| 7285 | if (!strcmp(filename, backing_file)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7286 | error_setg(errp, "Error: Trying to create an image with the " |
| 7287 | "same filename as the backing file"); |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 7288 | goto out; |
| 7289 | } |
Connor Kuehl | 975a7bd | 2020-08-13 08:47:22 -0500 | [diff] [blame] | 7290 | if (backing_file[0] == '\0') { |
| 7291 | error_setg(errp, "Expected backing file name, got empty string"); |
| 7292 | goto out; |
| 7293 | } |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 7294 | } |
| 7295 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7296 | backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7297 | |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7298 | /* The size for the image must always be specified, unless we have a backing |
| 7299 | * file and we have not been forbidden from opening it. */ |
Eric Blake | a8b42a1 | 2017-09-25 09:55:07 -0500 | [diff] [blame] | 7300 | size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7301 | if (backing_file && !(flags & BDRV_O_NO_BACKING)) { |
| 7302 | BlockDriverState *bs; |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 7303 | char *full_backing; |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7304 | int back_flags; |
| 7305 | QDict *backing_options = NULL; |
Paolo Bonzini | 63090da | 2012-04-12 14:01:03 +0200 | [diff] [blame] | 7306 | |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 7307 | full_backing = |
| 7308 | bdrv_get_full_backing_filename_from_filename(filename, backing_file, |
| 7309 | &local_err); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7310 | if (local_err) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7311 | goto out; |
| 7312 | } |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 7313 | assert(full_backing); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7314 | |
Max Reitz | d5b2399 | 2021-06-22 16:00:30 +0200 | [diff] [blame] | 7315 | /* |
| 7316 | * No need to do I/O here, which allows us to open encrypted |
| 7317 | * backing images without needing the secret |
| 7318 | */ |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7319 | back_flags = flags; |
| 7320 | back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); |
Max Reitz | d5b2399 | 2021-06-22 16:00:30 +0200 | [diff] [blame] | 7321 | back_flags |= BDRV_O_NO_IO; |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7322 | |
Fam Zheng | cc954f0 | 2017-12-15 16:04:45 +0800 | [diff] [blame] | 7323 | backing_options = qdict_new(); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7324 | if (backing_fmt) { |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7325 | qdict_put_str(backing_options, "driver", backing_fmt); |
| 7326 | } |
Fam Zheng | cc954f0 | 2017-12-15 16:04:45 +0800 | [diff] [blame] | 7327 | qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7328 | |
| 7329 | bs = bdrv_open(full_backing, NULL, backing_options, back_flags, |
| 7330 | &local_err); |
| 7331 | g_free(full_backing); |
Eric Blake | add8200 | 2020-07-06 15:39:50 -0500 | [diff] [blame] | 7332 | if (!bs) { |
| 7333 | error_append_hint(&local_err, "Could not open backing image.\n"); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7334 | goto out; |
| 7335 | } else { |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7336 | if (!backing_fmt) { |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 7337 | error_setg(&local_err, |
| 7338 | "Backing file specified without backing format"); |
Michael Tokarev | fbdffb0 | 2023-04-05 16:34:04 +0300 | [diff] [blame] | 7339 | error_append_hint(&local_err, "Detected format of %s.\n", |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 7340 | bs->drv->format_name); |
| 7341 | goto out; |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7342 | } |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7343 | if (size == -1) { |
| 7344 | /* Opened BS, have no size */ |
| 7345 | size = bdrv_getlength(bs); |
| 7346 | if (size < 0) { |
| 7347 | error_setg_errno(errp, -size, "Could not get size of '%s'", |
| 7348 | backing_file); |
| 7349 | bdrv_unref(bs); |
| 7350 | goto out; |
| 7351 | } |
| 7352 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); |
| 7353 | } |
| 7354 | bdrv_unref(bs); |
| 7355 | } |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7356 | /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ |
| 7357 | } else if (backing_file && !backing_fmt) { |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 7358 | error_setg(&local_err, |
| 7359 | "Backing file specified without backing format"); |
| 7360 | goto out; |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7361 | } |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7362 | |
Hyman Huang | 35286da | 2024-01-30 13:37:23 +0800 | [diff] [blame] | 7363 | /* Parameter 'size' is not needed for detached LUKS header */ |
| 7364 | if (size == -1 && |
| 7365 | !(!strcmp(fmt, "luks") && |
| 7366 | qemu_opt_get_bool(opts, "detached-header", false))) { |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7367 | error_setg(errp, "Image creation needs a size parameter"); |
| 7368 | goto out; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7369 | } |
| 7370 | |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 7371 | if (!quiet) { |
Kővágó, Zoltán | fe64669 | 2015-07-07 16:42:10 +0200 | [diff] [blame] | 7372 | printf("Formatting '%s', fmt=%s ", filename, fmt); |
Fam Zheng | 43c5d8f | 2014-12-09 15:38:04 +0800 | [diff] [blame] | 7373 | qemu_opts_print(opts, " "); |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 7374 | puts(""); |
Eric Blake | 4e2f441 | 2020-07-06 15:39:45 -0500 | [diff] [blame] | 7375 | fflush(stdout); |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 7376 | } |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7377 | |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7378 | ret = bdrv_create(drv, filename, opts, &local_err); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7379 | |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7380 | if (ret == -EFBIG) { |
| 7381 | /* This is generally a better message than whatever the driver would |
| 7382 | * deliver (especially because of the cluster_size_hint), since that |
| 7383 | * is most probably not much different from "image too large". */ |
| 7384 | const char *cluster_size_hint = ""; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7385 | if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7386 | cluster_size_hint = " (try using a larger cluster size)"; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7387 | } |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7388 | error_setg(errp, "The image size is too large for file format '%s'" |
| 7389 | "%s", fmt, cluster_size_hint); |
| 7390 | error_free(local_err); |
| 7391 | local_err = NULL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7392 | } |
| 7393 | |
| 7394 | out: |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7395 | qemu_opts_del(opts); |
| 7396 | qemu_opts_free(create_opts); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 7397 | error_propagate(errp, local_err); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7398 | } |
Stefan Hajnoczi | 85d126f | 2013-03-07 13:41:48 +0100 | [diff] [blame] | 7399 | |
| 7400 | AioContext *bdrv_get_aio_context(BlockDriverState *bs) |
| 7401 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7402 | IO_CODE(); |
Stefan Hajnoczi | 33f2a75 | 2018-02-16 16:50:13 +0000 | [diff] [blame] | 7403 | return bs ? bs->aio_context : qemu_get_aio_context(); |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7404 | } |
| 7405 | |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 7406 | AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs) |
| 7407 | { |
| 7408 | Coroutine *self = qemu_coroutine_self(); |
| 7409 | AioContext *old_ctx = qemu_coroutine_get_aio_context(self); |
| 7410 | AioContext *new_ctx; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7411 | IO_CODE(); |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 7412 | |
| 7413 | /* |
| 7414 | * Increase bs->in_flight to ensure that this operation is completed before |
| 7415 | * moving the node to a different AioContext. Read new_ctx only afterwards. |
| 7416 | */ |
| 7417 | bdrv_inc_in_flight(bs); |
| 7418 | |
| 7419 | new_ctx = bdrv_get_aio_context(bs); |
| 7420 | aio_co_reschedule_self(new_ctx); |
| 7421 | return old_ctx; |
| 7422 | } |
| 7423 | |
| 7424 | void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx) |
| 7425 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7426 | IO_CODE(); |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 7427 | aio_co_reschedule_self(old_ctx); |
| 7428 | bdrv_dec_in_flight(bs); |
| 7429 | } |
| 7430 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7431 | static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) |
| 7432 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 7433 | GLOBAL_STATE_CODE(); |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7434 | QLIST_REMOVE(ban, list); |
| 7435 | g_free(ban); |
| 7436 | } |
| 7437 | |
Kevin Wolf | a3a683c | 2019-05-06 19:17:57 +0200 | [diff] [blame] | 7438 | static void bdrv_detach_aio_context(BlockDriverState *bs) |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7439 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7440 | BdrvAioNotifier *baf, *baf_tmp; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7441 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7442 | assert(!bs->walking_aio_notifiers); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 7443 | GLOBAL_STATE_CODE(); |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7444 | bs->walking_aio_notifiers = true; |
| 7445 | QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { |
| 7446 | if (baf->deleted) { |
| 7447 | bdrv_do_remove_aio_context_notifier(baf); |
| 7448 | } else { |
| 7449 | baf->detach_aio_context(baf->opaque); |
| 7450 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7451 | } |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7452 | /* Never mind iterating again to check for ->deleted. bdrv_close() will |
| 7453 | * remove remaining aio notifiers if we aren't called again. |
| 7454 | */ |
| 7455 | bs->walking_aio_notifiers = false; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7456 | |
Kevin Wolf | 1bffe1a | 2019-04-17 17:15:25 +0200 | [diff] [blame] | 7457 | if (bs->drv && bs->drv->bdrv_detach_aio_context) { |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7458 | bs->drv->bdrv_detach_aio_context(bs); |
| 7459 | } |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7460 | |
| 7461 | bs->aio_context = NULL; |
| 7462 | } |
| 7463 | |
Kevin Wolf | a3a683c | 2019-05-06 19:17:57 +0200 | [diff] [blame] | 7464 | static void bdrv_attach_aio_context(BlockDriverState *bs, |
| 7465 | AioContext *new_context) |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7466 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7467 | BdrvAioNotifier *ban, *ban_tmp; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 7468 | GLOBAL_STATE_CODE(); |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7469 | |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7470 | bs->aio_context = new_context; |
| 7471 | |
Kevin Wolf | 1bffe1a | 2019-04-17 17:15:25 +0200 | [diff] [blame] | 7472 | if (bs->drv && bs->drv->bdrv_attach_aio_context) { |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7473 | bs->drv->bdrv_attach_aio_context(bs, new_context); |
| 7474 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7475 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7476 | assert(!bs->walking_aio_notifiers); |
| 7477 | bs->walking_aio_notifiers = true; |
| 7478 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { |
| 7479 | if (ban->deleted) { |
| 7480 | bdrv_do_remove_aio_context_notifier(ban); |
| 7481 | } else { |
| 7482 | ban->attached_aio_context(new_context, ban->opaque); |
| 7483 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7484 | } |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7485 | bs->walking_aio_notifiers = false; |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7486 | } |
| 7487 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7488 | typedef struct BdrvStateSetAioContext { |
| 7489 | AioContext *new_ctx; |
| 7490 | BlockDriverState *bs; |
| 7491 | } BdrvStateSetAioContext; |
| 7492 | |
| 7493 | static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx, |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7494 | GHashTable *visited, |
| 7495 | Transaction *tran, |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7496 | Error **errp) |
| 7497 | { |
| 7498 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7499 | if (g_hash_table_contains(visited, c)) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7500 | return true; |
| 7501 | } |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7502 | g_hash_table_add(visited, c); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7503 | |
| 7504 | /* |
| 7505 | * A BdrvChildClass that doesn't handle AioContext changes cannot |
| 7506 | * tolerate any AioContext changes |
| 7507 | */ |
| 7508 | if (!c->klass->change_aio_ctx) { |
| 7509 | char *user = bdrv_child_user_desc(c); |
| 7510 | error_setg(errp, "Changing iothreads is not supported by %s", user); |
| 7511 | g_free(user); |
| 7512 | return false; |
| 7513 | } |
| 7514 | if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) { |
| 7515 | assert(!errp || *errp); |
| 7516 | return false; |
| 7517 | } |
| 7518 | return true; |
| 7519 | } |
| 7520 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7521 | bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx, |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7522 | GHashTable *visited, Transaction *tran, |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7523 | Error **errp) |
| 7524 | { |
| 7525 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7526 | if (g_hash_table_contains(visited, c)) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7527 | return true; |
| 7528 | } |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7529 | g_hash_table_add(visited, c); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7530 | return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp); |
| 7531 | } |
| 7532 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7533 | static void bdrv_set_aio_context_clean(void *opaque) |
| 7534 | { |
| 7535 | BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque; |
| 7536 | BlockDriverState *bs = (BlockDriverState *) state->bs; |
| 7537 | |
| 7538 | /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */ |
| 7539 | bdrv_drained_end(bs); |
| 7540 | |
| 7541 | g_free(state); |
| 7542 | } |
| 7543 | |
| 7544 | static void bdrv_set_aio_context_commit(void *opaque) |
| 7545 | { |
| 7546 | BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque; |
| 7547 | BlockDriverState *bs = (BlockDriverState *) state->bs; |
| 7548 | AioContext *new_context = state->new_ctx; |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7549 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7550 | bdrv_detach_aio_context(bs); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7551 | bdrv_attach_aio_context(bs, new_context); |
| 7552 | } |
| 7553 | |
| 7554 | static TransactionActionDrv set_aio_context = { |
| 7555 | .commit = bdrv_set_aio_context_commit, |
| 7556 | .clean = bdrv_set_aio_context_clean, |
| 7557 | }; |
| 7558 | |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 7559 | /* |
| 7560 | * Changes the AioContext used for fd handlers, timers, and BHs by this |
| 7561 | * BlockDriverState and all its children and parents. |
| 7562 | * |
Max Reitz | 43eaaae | 2019-07-22 15:30:54 +0200 | [diff] [blame] | 7563 | * Must be called from the main AioContext. |
| 7564 | * |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7565 | * @visited will accumulate all visited BdrvChild objects. The caller is |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 7566 | * responsible for freeing the list afterwards. |
| 7567 | */ |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7568 | static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx, |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7569 | GHashTable *visited, Transaction *tran, |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7570 | Error **errp) |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7571 | { |
| 7572 | BdrvChild *c; |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7573 | BdrvStateSetAioContext *state; |
| 7574 | |
| 7575 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7576 | |
| 7577 | if (bdrv_get_aio_context(bs) == ctx) { |
| 7578 | return true; |
| 7579 | } |
| 7580 | |
Kevin Wolf | 7f831d2 | 2023-09-11 11:46:17 +0200 | [diff] [blame] | 7581 | bdrv_graph_rdlock_main_loop(); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7582 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7583 | if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) { |
Kevin Wolf | 7f831d2 | 2023-09-11 11:46:17 +0200 | [diff] [blame] | 7584 | bdrv_graph_rdunlock_main_loop(); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7585 | return false; |
| 7586 | } |
| 7587 | } |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7588 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7589 | QLIST_FOREACH(c, &bs->children, next) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7590 | if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) { |
Kevin Wolf | 7f831d2 | 2023-09-11 11:46:17 +0200 | [diff] [blame] | 7591 | bdrv_graph_rdunlock_main_loop(); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7592 | return false; |
| 7593 | } |
| 7594 | } |
Kevin Wolf | 7f831d2 | 2023-09-11 11:46:17 +0200 | [diff] [blame] | 7595 | bdrv_graph_rdunlock_main_loop(); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7596 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7597 | state = g_new(BdrvStateSetAioContext, 1); |
| 7598 | *state = (BdrvStateSetAioContext) { |
| 7599 | .new_ctx = ctx, |
| 7600 | .bs = bs, |
| 7601 | }; |
| 7602 | |
| 7603 | /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */ |
| 7604 | bdrv_drained_begin(bs); |
| 7605 | |
| 7606 | tran_add(tran, &set_aio_context, state); |
| 7607 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7608 | return true; |
| 7609 | } |
| 7610 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7611 | /* |
| 7612 | * Change bs's and recursively all of its parents' and children's AioContext |
| 7613 | * to the given new context, returning an error if that isn't possible. |
| 7614 | * |
| 7615 | * If ignore_child is not NULL, that child (and its subgraph) will not |
| 7616 | * be touched. |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7617 | */ |
Emanuele Giuseppe Esposito | a41cfda | 2022-10-25 04:49:51 -0400 | [diff] [blame] | 7618 | int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx, |
| 7619 | BdrvChild *ignore_child, Error **errp) |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7620 | { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7621 | Transaction *tran; |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7622 | GHashTable *visited; |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7623 | int ret; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7624 | GLOBAL_STATE_CODE(); |
| 7625 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7626 | /* |
| 7627 | * Recursion phase: go through all nodes of the graph. |
| 7628 | * Take care of checking that all nodes support changing AioContext |
Michael Tokarev | 3202d8e | 2023-07-14 14:06:05 +0300 | [diff] [blame] | 7629 | * and drain them, building a linear list of callbacks to run if everything |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7630 | * is successful (the transaction itself). |
| 7631 | */ |
| 7632 | tran = tran_new(); |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7633 | visited = g_hash_table_new(NULL, NULL); |
| 7634 | if (ignore_child) { |
| 7635 | g_hash_table_add(visited, ignore_child); |
| 7636 | } |
| 7637 | ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp); |
| 7638 | g_hash_table_destroy(visited); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7639 | |
| 7640 | /* |
| 7641 | * Linear phase: go through all callbacks collected in the transaction. |
Stefan Hajnoczi | 23c983c | 2023-12-05 13:20:11 -0500 | [diff] [blame] | 7642 | * Run all callbacks collected in the recursion to switch every node's |
| 7643 | * AioContext (transaction commit), or undo all changes done in the |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7644 | * recursion (transaction abort). |
| 7645 | */ |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7646 | |
| 7647 | if (!ret) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7648 | /* Just run clean() callbacks. No AioContext changed. */ |
| 7649 | tran_abort(tran); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7650 | return -EPERM; |
| 7651 | } |
| 7652 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7653 | tran_commit(tran); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7654 | return 0; |
| 7655 | } |
| 7656 | |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7657 | void bdrv_add_aio_context_notifier(BlockDriverState *bs, |
| 7658 | void (*attached_aio_context)(AioContext *new_context, void *opaque), |
| 7659 | void (*detach_aio_context)(void *opaque), void *opaque) |
| 7660 | { |
| 7661 | BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); |
| 7662 | *ban = (BdrvAioNotifier){ |
| 7663 | .attached_aio_context = attached_aio_context, |
| 7664 | .detach_aio_context = detach_aio_context, |
| 7665 | .opaque = opaque |
| 7666 | }; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7667 | GLOBAL_STATE_CODE(); |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7668 | |
| 7669 | QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); |
| 7670 | } |
| 7671 | |
| 7672 | void bdrv_remove_aio_context_notifier(BlockDriverState *bs, |
| 7673 | void (*attached_aio_context)(AioContext *, |
| 7674 | void *), |
| 7675 | void (*detach_aio_context)(void *), |
| 7676 | void *opaque) |
| 7677 | { |
| 7678 | BdrvAioNotifier *ban, *ban_next; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7679 | GLOBAL_STATE_CODE(); |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7680 | |
| 7681 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
| 7682 | if (ban->attached_aio_context == attached_aio_context && |
| 7683 | ban->detach_aio_context == detach_aio_context && |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7684 | ban->opaque == opaque && |
| 7685 | ban->deleted == false) |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7686 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7687 | if (bs->walking_aio_notifiers) { |
| 7688 | ban->deleted = true; |
| 7689 | } else { |
| 7690 | bdrv_do_remove_aio_context_notifier(ban); |
| 7691 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7692 | return; |
| 7693 | } |
| 7694 | } |
| 7695 | |
| 7696 | abort(); |
| 7697 | } |
| 7698 | |
Max Reitz | 7748543 | 2014-10-27 11:12:50 +0100 | [diff] [blame] | 7699 | int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7700 | BlockDriverAmendStatusCB *status_cb, void *cb_opaque, |
Maxim Levitsky | a3579bf | 2020-06-25 14:55:38 +0200 | [diff] [blame] | 7701 | bool force, |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7702 | Error **errp) |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7703 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7704 | GLOBAL_STATE_CODE(); |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 7705 | if (!bs->drv) { |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7706 | error_setg(errp, "Node is ejected"); |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 7707 | return -ENOMEDIUM; |
| 7708 | } |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7709 | if (!bs->drv->bdrv_amend_options) { |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7710 | error_setg(errp, "Block driver '%s' does not support option amendment", |
| 7711 | bs->drv->format_name); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7712 | return -ENOTSUP; |
| 7713 | } |
Maxim Levitsky | a3579bf | 2020-06-25 14:55:38 +0200 | [diff] [blame] | 7714 | return bs->drv->bdrv_amend_options(bs, opts, status_cb, |
| 7715 | cb_opaque, force, errp); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7716 | } |
Benoît Canet | f6186f4 | 2013-10-02 14:33:48 +0200 | [diff] [blame] | 7717 | |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7718 | /* |
| 7719 | * This function checks whether the given @to_replace is allowed to be |
| 7720 | * replaced by a node that always shows the same data as @bs. This is |
| 7721 | * used for example to verify whether the mirror job can replace |
| 7722 | * @to_replace by the target mirrored from @bs. |
| 7723 | * To be replaceable, @bs and @to_replace may either be guaranteed to |
| 7724 | * always show the same data (because they are only connected through |
| 7725 | * filters), or some driver may allow replacing one of its children |
| 7726 | * because it can guarantee that this child's data is not visible at |
| 7727 | * all (for example, for dissenting quorum children that have no other |
| 7728 | * parents). |
| 7729 | */ |
| 7730 | bool bdrv_recurse_can_replace(BlockDriverState *bs, |
| 7731 | BlockDriverState *to_replace) |
| 7732 | { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 7733 | BlockDriverState *filtered; |
| 7734 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 7735 | GLOBAL_STATE_CODE(); |
| 7736 | |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7737 | if (!bs || !bs->drv) { |
| 7738 | return false; |
| 7739 | } |
| 7740 | |
| 7741 | if (bs == to_replace) { |
| 7742 | return true; |
| 7743 | } |
| 7744 | |
| 7745 | /* See what the driver can do */ |
| 7746 | if (bs->drv->bdrv_recurse_can_replace) { |
| 7747 | return bs->drv->bdrv_recurse_can_replace(bs, to_replace); |
| 7748 | } |
| 7749 | |
| 7750 | /* For filters without an own implementation, we can recurse on our own */ |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 7751 | filtered = bdrv_filter_bs(bs); |
| 7752 | if (filtered) { |
| 7753 | return bdrv_recurse_can_replace(filtered, to_replace); |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7754 | } |
| 7755 | |
| 7756 | /* Safe default */ |
| 7757 | return false; |
| 7758 | } |
| 7759 | |
Max Reitz | 810803a | 2020-02-18 11:34:44 +0100 | [diff] [blame] | 7760 | /* |
| 7761 | * Check whether the given @node_name can be replaced by a node that |
| 7762 | * has the same data as @parent_bs. If so, return @node_name's BDS; |
| 7763 | * NULL otherwise. |
| 7764 | * |
| 7765 | * @node_name must be a (recursive) *child of @parent_bs (or this |
| 7766 | * function will return NULL). |
| 7767 | * |
| 7768 | * The result (whether the node can be replaced or not) is only valid |
| 7769 | * for as long as no graph or permission changes occur. |
| 7770 | */ |
Wen Congyang | e12f378 | 2015-07-17 10:12:22 +0800 | [diff] [blame] | 7771 | BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, |
| 7772 | const char *node_name, Error **errp) |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7773 | { |
| 7774 | BlockDriverState *to_replace_bs = bdrv_find_node(node_name); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7775 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7776 | GLOBAL_STATE_CODE(); |
| 7777 | |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7778 | if (!to_replace_bs) { |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 7779 | 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] | 7780 | return NULL; |
| 7781 | } |
| 7782 | |
| 7783 | 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] | 7784 | return NULL; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7785 | } |
| 7786 | |
| 7787 | /* We don't want arbitrary node of the BDS chain to be replaced only the top |
| 7788 | * most non filter in order to prevent data corruption. |
| 7789 | * Another benefit is that this tests exclude backing files which are |
| 7790 | * blocked by the backing blockers. |
| 7791 | */ |
Max Reitz | 810803a | 2020-02-18 11:34:44 +0100 | [diff] [blame] | 7792 | if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) { |
| 7793 | error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', " |
| 7794 | "because it cannot be guaranteed that doing so would not " |
| 7795 | "lead to an abrupt change of visible data", |
| 7796 | node_name, parent_bs->node_name); |
Stefan Hajnoczi | b49f475 | 2023-12-05 13:20:03 -0500 | [diff] [blame] | 7797 | return NULL; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7798 | } |
| 7799 | |
| 7800 | return to_replace_bs; |
| 7801 | } |
Ming Lei | 448ad91 | 2014-07-04 18:04:33 +0800 | [diff] [blame] | 7802 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7803 | /** |
| 7804 | * Iterates through the list of runtime option keys that are said to |
| 7805 | * be "strong" for a BDS. An option is called "strong" if it changes |
| 7806 | * a BDS's data. For example, the null block driver's "size" and |
| 7807 | * "read-zeroes" options are strong, but its "latency-ns" option is |
| 7808 | * not. |
| 7809 | * |
| 7810 | * If a key returned by this function ends with a dot, all options |
| 7811 | * starting with that prefix are strong. |
| 7812 | */ |
| 7813 | static const char *const *strong_options(BlockDriverState *bs, |
| 7814 | const char *const *curopt) |
| 7815 | { |
| 7816 | static const char *const global_options[] = { |
| 7817 | "driver", "filename", NULL |
| 7818 | }; |
| 7819 | |
| 7820 | if (!curopt) { |
| 7821 | return &global_options[0]; |
| 7822 | } |
| 7823 | |
| 7824 | curopt++; |
| 7825 | if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) { |
| 7826 | curopt = bs->drv->strong_runtime_opts; |
| 7827 | } |
| 7828 | |
| 7829 | return (curopt && *curopt) ? curopt : NULL; |
| 7830 | } |
| 7831 | |
| 7832 | /** |
| 7833 | * Copies all strong runtime options from bs->options to the given |
| 7834 | * QDict. The set of strong option keys is determined by invoking |
| 7835 | * strong_options(). |
| 7836 | * |
| 7837 | * Returns true iff any strong option was present in bs->options (and |
| 7838 | * thus copied to the target QDict) with the exception of "filename" |
| 7839 | * and "driver". The caller is expected to use this value to decide |
| 7840 | * whether the existence of strong options prevents the generation of |
| 7841 | * a plain filename. |
| 7842 | */ |
| 7843 | static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs) |
| 7844 | { |
| 7845 | bool found_any = false; |
| 7846 | const char *const *option_name = NULL; |
| 7847 | |
| 7848 | if (!bs->drv) { |
| 7849 | return false; |
| 7850 | } |
| 7851 | |
| 7852 | while ((option_name = strong_options(bs, option_name))) { |
| 7853 | bool option_given = false; |
| 7854 | |
| 7855 | assert(strlen(*option_name) > 0); |
| 7856 | if ((*option_name)[strlen(*option_name) - 1] != '.') { |
| 7857 | QObject *entry = qdict_get(bs->options, *option_name); |
| 7858 | if (!entry) { |
| 7859 | continue; |
| 7860 | } |
| 7861 | |
| 7862 | qdict_put_obj(d, *option_name, qobject_ref(entry)); |
| 7863 | option_given = true; |
| 7864 | } else { |
| 7865 | const QDictEntry *entry; |
| 7866 | for (entry = qdict_first(bs->options); entry; |
| 7867 | entry = qdict_next(bs->options, entry)) |
| 7868 | { |
| 7869 | if (strstart(qdict_entry_key(entry), *option_name, NULL)) { |
| 7870 | qdict_put_obj(d, qdict_entry_key(entry), |
| 7871 | qobject_ref(qdict_entry_value(entry))); |
| 7872 | option_given = true; |
| 7873 | } |
| 7874 | } |
| 7875 | } |
| 7876 | |
| 7877 | /* While "driver" and "filename" need to be included in a JSON filename, |
| 7878 | * their existence does not prohibit generation of a plain filename. */ |
| 7879 | if (!found_any && option_given && |
| 7880 | strcmp(*option_name, "driver") && strcmp(*option_name, "filename")) |
| 7881 | { |
| 7882 | found_any = true; |
| 7883 | } |
| 7884 | } |
| 7885 | |
Max Reitz | 62a01a27 | 2019-02-01 20:29:34 +0100 | [diff] [blame] | 7886 | if (!qdict_haskey(d, "driver")) { |
| 7887 | /* Drivers created with bdrv_new_open_driver() may not have a |
| 7888 | * @driver option. Add it here. */ |
| 7889 | qdict_put_str(d, "driver", bs->drv->format_name); |
| 7890 | } |
| 7891 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7892 | return found_any; |
| 7893 | } |
| 7894 | |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7895 | /* Note: This function may return false positives; it may return true |
| 7896 | * even if opening the backing file specified by bs's image header |
| 7897 | * would result in exactly bs->backing. */ |
Kevin Wolf | 004915a | 2023-10-27 17:53:26 +0200 | [diff] [blame] | 7898 | static bool GRAPH_RDLOCK bdrv_backing_overridden(BlockDriverState *bs) |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7899 | { |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 7900 | GLOBAL_STATE_CODE(); |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7901 | if (bs->backing) { |
| 7902 | return strcmp(bs->auto_backing_file, |
| 7903 | bs->backing->bs->filename); |
| 7904 | } else { |
| 7905 | /* No backing BDS, so if the image header reports any backing |
| 7906 | * file, it must have been suppressed */ |
| 7907 | return bs->auto_backing_file[0] != '\0'; |
| 7908 | } |
| 7909 | } |
| 7910 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7911 | /* Updates the following BDS fields: |
| 7912 | * - exact_filename: A filename which may be used for opening a block device |
| 7913 | * which (mostly) equals the given BDS (even without any |
| 7914 | * other options; so reading and writing must return the same |
| 7915 | * results, but caching etc. may be different) |
| 7916 | * - full_open_options: Options which, when given when opening a block device |
| 7917 | * (without a filename), result in a BDS (mostly) |
| 7918 | * equalling the given one |
| 7919 | * - filename: If exact_filename is set, it is copied here. Otherwise, |
| 7920 | * full_open_options is converted to a JSON object, prefixed with |
| 7921 | * "json:" (for use through the JSON pseudo protocol) and put here. |
| 7922 | */ |
| 7923 | void bdrv_refresh_filename(BlockDriverState *bs) |
| 7924 | { |
| 7925 | BlockDriver *drv = bs->drv; |
Max Reitz | e24518e | 2019-02-01 20:29:06 +0100 | [diff] [blame] | 7926 | BdrvChild *child; |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7927 | BlockDriverState *primary_child_bs; |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7928 | QDict *opts; |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7929 | bool backing_overridden; |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7930 | bool generate_json_filename; /* Whether our default implementation should |
| 7931 | fill exact_filename (false) or not (true) */ |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7932 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7933 | GLOBAL_STATE_CODE(); |
| 7934 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7935 | if (!drv) { |
| 7936 | return; |
| 7937 | } |
| 7938 | |
Max Reitz | e24518e | 2019-02-01 20:29:06 +0100 | [diff] [blame] | 7939 | /* This BDS's file name may depend on any of its children's file names, so |
| 7940 | * refresh those first */ |
| 7941 | QLIST_FOREACH(child, &bs->children, next) { |
| 7942 | bdrv_refresh_filename(child->bs); |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7943 | } |
| 7944 | |
Max Reitz | bb808d5 | 2019-02-01 20:29:07 +0100 | [diff] [blame] | 7945 | if (bs->implicit) { |
| 7946 | /* For implicit nodes, just copy everything from the single child */ |
| 7947 | child = QLIST_FIRST(&bs->children); |
| 7948 | assert(QLIST_NEXT(child, next) == NULL); |
| 7949 | |
| 7950 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), |
| 7951 | child->bs->exact_filename); |
| 7952 | pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename); |
| 7953 | |
Pan Nengyuan | cb89561 | 2020-01-16 16:56:00 +0800 | [diff] [blame] | 7954 | qobject_unref(bs->full_open_options); |
Max Reitz | bb808d5 | 2019-02-01 20:29:07 +0100 | [diff] [blame] | 7955 | bs->full_open_options = qobject_ref(child->bs->full_open_options); |
| 7956 | |
| 7957 | return; |
| 7958 | } |
| 7959 | |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7960 | backing_overridden = bdrv_backing_overridden(bs); |
| 7961 | |
| 7962 | if (bs->open_flags & BDRV_O_NO_IO) { |
| 7963 | /* Without I/O, the backing file does not change anything. |
| 7964 | * Therefore, in such a case (primarily qemu-img), we can |
| 7965 | * pretend the backing file has not been overridden even if |
| 7966 | * it technically has been. */ |
| 7967 | backing_overridden = false; |
| 7968 | } |
| 7969 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7970 | /* Gather the options QDict */ |
| 7971 | opts = qdict_new(); |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7972 | generate_json_filename = append_strong_runtime_options(opts, bs); |
| 7973 | generate_json_filename |= backing_overridden; |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7974 | |
| 7975 | if (drv->bdrv_gather_child_options) { |
| 7976 | /* Some block drivers may not want to present all of their children's |
| 7977 | * options, or name them differently from BdrvChild.name */ |
| 7978 | drv->bdrv_gather_child_options(bs, opts, backing_overridden); |
| 7979 | } else { |
| 7980 | QLIST_FOREACH(child, &bs->children, next) { |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 7981 | if (child == bs->backing && !backing_overridden) { |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7982 | /* We can skip the backing BDS if it has not been overridden */ |
| 7983 | continue; |
| 7984 | } |
| 7985 | |
| 7986 | qdict_put(opts, child->name, |
| 7987 | qobject_ref(child->bs->full_open_options)); |
| 7988 | } |
| 7989 | |
| 7990 | if (backing_overridden && !bs->backing) { |
| 7991 | /* Force no backing file */ |
| 7992 | qdict_put_null(opts, "backing"); |
| 7993 | } |
| 7994 | } |
| 7995 | |
| 7996 | qobject_unref(bs->full_open_options); |
| 7997 | bs->full_open_options = opts; |
| 7998 | |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7999 | primary_child_bs = bdrv_primary_bs(bs); |
| 8000 | |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 8001 | if (drv->bdrv_refresh_filename) { |
| 8002 | /* Obsolete information is of no use here, so drop the old file name |
| 8003 | * information before refreshing it */ |
| 8004 | bs->exact_filename[0] = '\0'; |
| 8005 | |
| 8006 | drv->bdrv_refresh_filename(bs); |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8007 | } else if (primary_child_bs) { |
| 8008 | /* |
| 8009 | * Try to reconstruct valid information from the underlying |
| 8010 | * file -- this only works for format nodes (filter nodes |
| 8011 | * cannot be probed and as such must be selected by the user |
| 8012 | * either through an options dict, or through a special |
| 8013 | * filename which the filter driver must construct in its |
| 8014 | * .bdrv_refresh_filename() implementation). |
| 8015 | */ |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 8016 | |
| 8017 | bs->exact_filename[0] = '\0'; |
| 8018 | |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 8019 | /* |
| 8020 | * We can use the underlying file's filename if: |
| 8021 | * - it has a filename, |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8022 | * - the current BDS is not a filter, |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 8023 | * - the file is a protocol BDS, and |
| 8024 | * - opening that file (as this BDS's format) will automatically create |
| 8025 | * the BDS tree we have right now, that is: |
| 8026 | * - the user did not significantly change this BDS's behavior with |
| 8027 | * some explicit (strong) options |
| 8028 | * - no non-file child of this BDS has been overridden by the user |
| 8029 | * Both of these conditions are represented by generate_json_filename. |
| 8030 | */ |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8031 | if (primary_child_bs->exact_filename[0] && |
Paolo Bonzini | 41770f6 | 2022-11-24 16:21:18 +0100 | [diff] [blame^] | 8032 | primary_child_bs->drv->protocol_name && |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8033 | !drv->is_filter && !generate_json_filename) |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 8034 | { |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8035 | strcpy(bs->exact_filename, primary_child_bs->exact_filename); |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 8036 | } |
| 8037 | } |
| 8038 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 8039 | if (bs->exact_filename[0]) { |
| 8040 | pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 8041 | } else { |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 8042 | GString *json = qobject_to_json(QOBJECT(bs->full_open_options)); |
Eric Blake | 5c86bdf | 2020-06-08 13:26:38 -0500 | [diff] [blame] | 8043 | if (snprintf(bs->filename, sizeof(bs->filename), "json:%s", |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 8044 | json->str) >= sizeof(bs->filename)) { |
Eric Blake | 5c86bdf | 2020-06-08 13:26:38 -0500 | [diff] [blame] | 8045 | /* Give user a hint if we truncated things. */ |
| 8046 | strcpy(bs->filename + sizeof(bs->filename) - 4, "..."); |
| 8047 | } |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 8048 | g_string_free(json, true); |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 8049 | } |
| 8050 | } |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8051 | |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 8052 | char *bdrv_dirname(BlockDriverState *bs, Error **errp) |
| 8053 | { |
| 8054 | BlockDriver *drv = bs->drv; |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8055 | BlockDriverState *child_bs; |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 8056 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8057 | GLOBAL_STATE_CODE(); |
| 8058 | |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 8059 | if (!drv) { |
| 8060 | error_setg(errp, "Node '%s' is ejected", bs->node_name); |
| 8061 | return NULL; |
| 8062 | } |
| 8063 | |
| 8064 | if (drv->bdrv_dirname) { |
| 8065 | return drv->bdrv_dirname(bs, errp); |
| 8066 | } |
| 8067 | |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 8068 | child_bs = bdrv_primary_bs(bs); |
| 8069 | if (child_bs) { |
| 8070 | return bdrv_dirname(child_bs, errp); |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 8071 | } |
| 8072 | |
| 8073 | bdrv_refresh_filename(bs); |
| 8074 | if (bs->exact_filename[0] != '\0') { |
| 8075 | return path_combine(bs->exact_filename, ""); |
| 8076 | } |
| 8077 | |
| 8078 | error_setg(errp, "Cannot generate a base directory for %s nodes", |
| 8079 | drv->format_name); |
| 8080 | return NULL; |
| 8081 | } |
| 8082 | |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8083 | /* |
| 8084 | * Hot add/remove a BDS's child. So the user can take a child offline when |
| 8085 | * it is broken and take a new child online |
| 8086 | */ |
| 8087 | void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, |
| 8088 | Error **errp) |
| 8089 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8090 | GLOBAL_STATE_CODE(); |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8091 | if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { |
| 8092 | error_setg(errp, "The node %s does not support adding a child", |
| 8093 | bdrv_get_device_or_node_name(parent_bs)); |
| 8094 | return; |
| 8095 | } |
| 8096 | |
Sam Li | 774c726 | 2023-05-08 12:55:30 +0800 | [diff] [blame] | 8097 | /* |
| 8098 | * Non-zoned block drivers do not follow zoned storage constraints |
| 8099 | * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned |
| 8100 | * drivers in a graph. |
| 8101 | */ |
| 8102 | if (!parent_bs->drv->supports_zoned_children && |
| 8103 | child_bs->bl.zoned == BLK_Z_HM) { |
| 8104 | /* |
| 8105 | * The host-aware model allows zoned storage constraints and random |
| 8106 | * write. Allow mixing host-aware and non-zoned drivers. Using |
| 8107 | * host-aware device as a regular device. |
| 8108 | */ |
| 8109 | error_setg(errp, "Cannot add a %s child to a %s parent", |
| 8110 | child_bs->bl.zoned == BLK_Z_HM ? "zoned" : "non-zoned", |
| 8111 | parent_bs->drv->supports_zoned_children ? |
| 8112 | "support zoned children" : "not support zoned children"); |
| 8113 | return; |
| 8114 | } |
| 8115 | |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8116 | if (!QLIST_EMPTY(&child_bs->parents)) { |
| 8117 | error_setg(errp, "The node %s already has a parent", |
| 8118 | child_bs->node_name); |
| 8119 | return; |
| 8120 | } |
| 8121 | |
| 8122 | parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); |
| 8123 | } |
| 8124 | |
| 8125 | void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) |
| 8126 | { |
| 8127 | BdrvChild *tmp; |
| 8128 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8129 | GLOBAL_STATE_CODE(); |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8130 | if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { |
| 8131 | error_setg(errp, "The node %s does not support removing a child", |
| 8132 | bdrv_get_device_or_node_name(parent_bs)); |
| 8133 | return; |
| 8134 | } |
| 8135 | |
| 8136 | QLIST_FOREACH(tmp, &parent_bs->children, next) { |
| 8137 | if (tmp == child) { |
| 8138 | break; |
| 8139 | } |
| 8140 | } |
| 8141 | |
| 8142 | if (!tmp) { |
| 8143 | error_setg(errp, "The node %s does not have a child named %s", |
| 8144 | bdrv_get_device_or_node_name(parent_bs), |
| 8145 | bdrv_get_device_or_node_name(child->bs)); |
| 8146 | return; |
| 8147 | } |
| 8148 | |
| 8149 | parent_bs->drv->bdrv_del_child(parent_bs, child, errp); |
| 8150 | } |
Max Reitz | 6f7a3b5 | 2020-04-29 16:11:23 +0200 | [diff] [blame] | 8151 | |
| 8152 | int bdrv_make_empty(BdrvChild *c, Error **errp) |
| 8153 | { |
| 8154 | BlockDriver *drv = c->bs->drv; |
| 8155 | int ret; |
| 8156 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8157 | GLOBAL_STATE_CODE(); |
Max Reitz | 6f7a3b5 | 2020-04-29 16:11:23 +0200 | [diff] [blame] | 8158 | assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)); |
| 8159 | |
| 8160 | if (!drv->bdrv_make_empty) { |
| 8161 | error_setg(errp, "%s does not support emptying nodes", |
| 8162 | drv->format_name); |
| 8163 | return -ENOTSUP; |
| 8164 | } |
| 8165 | |
| 8166 | ret = drv->bdrv_make_empty(c->bs); |
| 8167 | if (ret < 0) { |
| 8168 | error_setg_errno(errp, -ret, "Failed to empty %s", |
| 8169 | c->bs->filename); |
| 8170 | return ret; |
| 8171 | } |
| 8172 | |
| 8173 | return 0; |
| 8174 | } |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8175 | |
| 8176 | /* |
| 8177 | * Return the child that @bs acts as an overlay for, and from which data may be |
| 8178 | * copied in COW or COR operations. Usually this is the backing file. |
| 8179 | */ |
| 8180 | BdrvChild *bdrv_cow_child(BlockDriverState *bs) |
| 8181 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8182 | IO_CODE(); |
| 8183 | |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8184 | if (!bs || !bs->drv) { |
| 8185 | return NULL; |
| 8186 | } |
| 8187 | |
| 8188 | if (bs->drv->is_filter) { |
| 8189 | return NULL; |
| 8190 | } |
| 8191 | |
| 8192 | if (!bs->backing) { |
| 8193 | return NULL; |
| 8194 | } |
| 8195 | |
| 8196 | assert(bs->backing->role & BDRV_CHILD_COW); |
| 8197 | return bs->backing; |
| 8198 | } |
| 8199 | |
| 8200 | /* |
| 8201 | * If @bs acts as a filter for exactly one of its children, return |
| 8202 | * that child. |
| 8203 | */ |
| 8204 | BdrvChild *bdrv_filter_child(BlockDriverState *bs) |
| 8205 | { |
| 8206 | BdrvChild *c; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8207 | IO_CODE(); |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8208 | |
| 8209 | if (!bs || !bs->drv) { |
| 8210 | return NULL; |
| 8211 | } |
| 8212 | |
| 8213 | if (!bs->drv->is_filter) { |
| 8214 | return NULL; |
| 8215 | } |
| 8216 | |
| 8217 | /* Only one of @backing or @file may be used */ |
| 8218 | assert(!(bs->backing && bs->file)); |
| 8219 | |
| 8220 | c = bs->backing ?: bs->file; |
| 8221 | if (!c) { |
| 8222 | return NULL; |
| 8223 | } |
| 8224 | |
| 8225 | assert(c->role & BDRV_CHILD_FILTERED); |
| 8226 | return c; |
| 8227 | } |
| 8228 | |
| 8229 | /* |
| 8230 | * Return either the result of bdrv_cow_child() or bdrv_filter_child(), |
| 8231 | * whichever is non-NULL. |
| 8232 | * |
| 8233 | * Return NULL if both are NULL. |
| 8234 | */ |
| 8235 | BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs) |
| 8236 | { |
| 8237 | BdrvChild *cow_child = bdrv_cow_child(bs); |
| 8238 | BdrvChild *filter_child = bdrv_filter_child(bs); |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8239 | IO_CODE(); |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8240 | |
| 8241 | /* Filter nodes cannot have COW backing files */ |
| 8242 | assert(!(cow_child && filter_child)); |
| 8243 | |
| 8244 | return cow_child ?: filter_child; |
| 8245 | } |
| 8246 | |
| 8247 | /* |
| 8248 | * Return the primary child of this node: For filters, that is the |
| 8249 | * filtered child. For other nodes, that is usually the child storing |
| 8250 | * metadata. |
| 8251 | * (A generally more helpful description is that this is (usually) the |
| 8252 | * child that has the same filename as @bs.) |
| 8253 | * |
| 8254 | * Drivers do not necessarily have a primary child; for example quorum |
| 8255 | * does not. |
| 8256 | */ |
| 8257 | BdrvChild *bdrv_primary_child(BlockDriverState *bs) |
| 8258 | { |
| 8259 | BdrvChild *c, *found = NULL; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8260 | IO_CODE(); |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8261 | |
| 8262 | QLIST_FOREACH(c, &bs->children, next) { |
| 8263 | if (c->role & BDRV_CHILD_PRIMARY) { |
| 8264 | assert(!found); |
| 8265 | found = c; |
| 8266 | } |
| 8267 | } |
| 8268 | |
| 8269 | return found; |
| 8270 | } |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8271 | |
Kevin Wolf | ec82cc4 | 2023-10-27 17:53:20 +0200 | [diff] [blame] | 8272 | static BlockDriverState * GRAPH_RDLOCK |
| 8273 | bdrv_do_skip_filters(BlockDriverState *bs, bool stop_on_explicit_filter) |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8274 | { |
| 8275 | BdrvChild *c; |
| 8276 | |
| 8277 | if (!bs) { |
| 8278 | return NULL; |
| 8279 | } |
| 8280 | |
| 8281 | while (!(stop_on_explicit_filter && !bs->implicit)) { |
| 8282 | c = bdrv_filter_child(bs); |
| 8283 | if (!c) { |
| 8284 | /* |
| 8285 | * A filter that is embedded in a working block graph must |
| 8286 | * have a child. Assert this here so this function does |
| 8287 | * not return a filter node that is not expected by the |
| 8288 | * caller. |
| 8289 | */ |
| 8290 | assert(!bs->drv || !bs->drv->is_filter); |
| 8291 | break; |
| 8292 | } |
| 8293 | bs = c->bs; |
| 8294 | } |
| 8295 | /* |
| 8296 | * Note that this treats nodes with bs->drv == NULL as not being |
| 8297 | * filters (bs->drv == NULL should be replaced by something else |
| 8298 | * anyway). |
| 8299 | * The advantage of this behavior is that this function will thus |
| 8300 | * always return a non-NULL value (given a non-NULL @bs). |
| 8301 | */ |
| 8302 | |
| 8303 | return bs; |
| 8304 | } |
| 8305 | |
| 8306 | /* |
| 8307 | * Return the first BDS that has not been added implicitly or that |
| 8308 | * does not have a filtered child down the chain starting from @bs |
| 8309 | * (including @bs itself). |
| 8310 | */ |
| 8311 | BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs) |
| 8312 | { |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 8313 | GLOBAL_STATE_CODE(); |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8314 | return bdrv_do_skip_filters(bs, true); |
| 8315 | } |
| 8316 | |
| 8317 | /* |
| 8318 | * Return the first BDS that does not have a filtered child down the |
| 8319 | * chain starting from @bs (including @bs itself). |
| 8320 | */ |
| 8321 | BlockDriverState *bdrv_skip_filters(BlockDriverState *bs) |
| 8322 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8323 | IO_CODE(); |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8324 | return bdrv_do_skip_filters(bs, false); |
| 8325 | } |
| 8326 | |
| 8327 | /* |
| 8328 | * For a backing chain, return the first non-filter backing image of |
| 8329 | * the first non-filter image. |
| 8330 | */ |
| 8331 | BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs) |
| 8332 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8333 | IO_CODE(); |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8334 | return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs))); |
| 8335 | } |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8336 | |
| 8337 | /** |
| 8338 | * Check whether [offset, offset + bytes) overlaps with the cached |
| 8339 | * block-status data region. |
| 8340 | * |
| 8341 | * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`, |
| 8342 | * which is what bdrv_bsc_is_data()'s interface needs. |
| 8343 | * Otherwise, *pnum is not touched. |
| 8344 | */ |
| 8345 | static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs, |
| 8346 | int64_t offset, int64_t bytes, |
| 8347 | int64_t *pnum) |
| 8348 | { |
| 8349 | BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache); |
| 8350 | bool overlaps; |
| 8351 | |
| 8352 | overlaps = |
| 8353 | qatomic_read(&bsc->valid) && |
| 8354 | ranges_overlap(offset, bytes, bsc->data_start, |
| 8355 | bsc->data_end - bsc->data_start); |
| 8356 | |
| 8357 | if (overlaps && pnum) { |
| 8358 | *pnum = bsc->data_end - offset; |
| 8359 | } |
| 8360 | |
| 8361 | return overlaps; |
| 8362 | } |
| 8363 | |
| 8364 | /** |
| 8365 | * See block_int.h for this function's documentation. |
| 8366 | */ |
| 8367 | bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum) |
| 8368 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8369 | IO_CODE(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8370 | RCU_READ_LOCK_GUARD(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8371 | return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum); |
| 8372 | } |
| 8373 | |
| 8374 | /** |
| 8375 | * See block_int.h for this function's documentation. |
| 8376 | */ |
| 8377 | void bdrv_bsc_invalidate_range(BlockDriverState *bs, |
| 8378 | int64_t offset, int64_t bytes) |
| 8379 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8380 | IO_CODE(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8381 | RCU_READ_LOCK_GUARD(); |
| 8382 | |
| 8383 | if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) { |
| 8384 | qatomic_set(&bs->block_status_cache->valid, false); |
| 8385 | } |
| 8386 | } |
| 8387 | |
| 8388 | /** |
| 8389 | * See block_int.h for this function's documentation. |
| 8390 | */ |
| 8391 | void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes) |
| 8392 | { |
| 8393 | BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1); |
| 8394 | BdrvBlockStatusCache *old_bsc; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8395 | IO_CODE(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8396 | |
| 8397 | *new_bsc = (BdrvBlockStatusCache) { |
| 8398 | .valid = true, |
| 8399 | .data_start = offset, |
| 8400 | .data_end = offset + bytes, |
| 8401 | }; |
| 8402 | |
| 8403 | QEMU_LOCK_GUARD(&bs->bsc_modify_lock); |
| 8404 | |
| 8405 | old_bsc = qatomic_rcu_read(&bs->block_status_cache); |
| 8406 | qatomic_rcu_set(&bs->block_status_cache, new_bsc); |
| 8407 | if (old_bsc) { |
| 8408 | g_free_rcu(old_bsc, rcu); |
| 8409 | } |
| 8410 | } |