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 | |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 94 | static void bdrv_replace_child_noperm(BdrvChild *child, |
Vladimir Sementsov-Ogievskiy | 4eba825 | 2022-07-26 23:11:28 +0300 | [diff] [blame] | 95 | BlockDriverState *new_bs); |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 96 | static void bdrv_remove_child(BdrvChild *child, Transaction *tran); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 97 | |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 98 | static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, |
| 99 | BlockReopenQueue *queue, |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 100 | Transaction *change_child_tran, Error **errp); |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 101 | static void bdrv_reopen_commit(BDRVReopenState *reopen_state); |
| 102 | static void bdrv_reopen_abort(BDRVReopenState *reopen_state); |
| 103 | |
Emanuele Giuseppe Esposito | fa8fc1d | 2021-12-15 07:11:38 -0500 | [diff] [blame] | 104 | static bool bdrv_backing_overridden(BlockDriverState *bs); |
| 105 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 106 | static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx, |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 107 | GHashTable *visited, Transaction *tran, |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 108 | Error **errp); |
| 109 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 110 | /* If non-zero, use only whitelisted block drivers */ |
| 111 | static int use_bdrv_whitelist; |
| 112 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 113 | #ifdef _WIN32 |
| 114 | static int is_windows_drive_prefix(const char *filename) |
| 115 | { |
| 116 | return (((filename[0] >= 'a' && filename[0] <= 'z') || |
| 117 | (filename[0] >= 'A' && filename[0] <= 'Z')) && |
| 118 | filename[1] == ':'); |
| 119 | } |
| 120 | |
| 121 | int is_windows_drive(const char *filename) |
| 122 | { |
| 123 | if (is_windows_drive_prefix(filename) && |
| 124 | filename[2] == '\0') |
| 125 | return 1; |
| 126 | if (strstart(filename, "\\\\.\\", NULL) || |
| 127 | strstart(filename, "//./", NULL)) |
| 128 | return 1; |
| 129 | return 0; |
| 130 | } |
| 131 | #endif |
| 132 | |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 133 | size_t bdrv_opt_mem_align(BlockDriverState *bs) |
| 134 | { |
| 135 | if (!bs || !bs->drv) { |
Denis V. Lunev | 459b4e6 | 2015-05-12 17:30:56 +0300 | [diff] [blame] | 136 | /* 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] | 137 | return MAX(4096, qemu_real_host_page_size()); |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 138 | } |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 139 | IO_CODE(); |
Kevin Wolf | 339064d | 2013-11-28 10:23:32 +0100 | [diff] [blame] | 140 | |
| 141 | return bs->bl.opt_mem_alignment; |
| 142 | } |
| 143 | |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 144 | size_t bdrv_min_mem_align(BlockDriverState *bs) |
| 145 | { |
| 146 | if (!bs || !bs->drv) { |
Denis V. Lunev | 459b4e6 | 2015-05-12 17:30:56 +0300 | [diff] [blame] | 147 | /* 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] | 148 | return MAX(4096, qemu_real_host_page_size()); |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 149 | } |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 150 | IO_CODE(); |
Denis V. Lunev | 4196d2f | 2015-05-12 17:30:55 +0300 | [diff] [blame] | 151 | |
| 152 | return bs->bl.min_mem_alignment; |
| 153 | } |
| 154 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 155 | /* check if the path starts with "<protocol>:" */ |
Max Reitz | 5c98415 | 2014-12-03 14:57:22 +0100 | [diff] [blame] | 156 | int path_has_protocol(const char *path) |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 157 | { |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 158 | const char *p; |
| 159 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 160 | #ifdef _WIN32 |
| 161 | if (is_windows_drive(path) || |
| 162 | is_windows_drive_prefix(path)) { |
| 163 | return 0; |
| 164 | } |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 165 | p = path + strcspn(path, ":/\\"); |
| 166 | #else |
| 167 | p = path + strcspn(path, ":/"); |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 168 | #endif |
| 169 | |
Paolo Bonzini | 947995c | 2012-05-08 16:51:48 +0200 | [diff] [blame] | 170 | return *p == ':'; |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 171 | } |
| 172 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 173 | int path_is_absolute(const char *path) |
| 174 | { |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 175 | #ifdef _WIN32 |
| 176 | /* specific case for names like: "\\.\d:" */ |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 177 | if (is_windows_drive(path) || is_windows_drive_prefix(path)) { |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 178 | return 1; |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 179 | } |
| 180 | return (*path == '/' || *path == '\\'); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 181 | #else |
Paolo Bonzini | f53f4da | 2012-05-08 16:51:47 +0200 | [diff] [blame] | 182 | return (*path == '/'); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 183 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 186 | /* if filename is absolute, just return its duplicate. Otherwise, build a |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 187 | path to it by considering it is relative to base_path. URL are |
| 188 | supported. */ |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 189 | char *path_combine(const char *base_path, const char *filename) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 190 | { |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 191 | const char *protocol_stripped = NULL; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 192 | const char *p, *p1; |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 193 | char *result; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 194 | int len; |
| 195 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 196 | if (path_is_absolute(filename)) { |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 197 | return g_strdup(filename); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 198 | } |
Max Reitz | 009b03a | 2019-02-01 20:29:13 +0100 | [diff] [blame] | 199 | |
| 200 | if (path_has_protocol(base_path)) { |
| 201 | protocol_stripped = strchr(base_path, ':'); |
| 202 | if (protocol_stripped) { |
| 203 | protocol_stripped++; |
| 204 | } |
| 205 | } |
| 206 | p = protocol_stripped ?: base_path; |
| 207 | |
| 208 | p1 = strrchr(base_path, '/'); |
| 209 | #ifdef _WIN32 |
| 210 | { |
| 211 | const char *p2; |
| 212 | p2 = strrchr(base_path, '\\'); |
| 213 | if (!p1 || p2 > p1) { |
| 214 | p1 = p2; |
| 215 | } |
| 216 | } |
| 217 | #endif |
| 218 | if (p1) { |
| 219 | p1++; |
| 220 | } else { |
| 221 | p1 = base_path; |
| 222 | } |
| 223 | if (p1 > p) { |
| 224 | p = p1; |
| 225 | } |
| 226 | len = p - base_path; |
| 227 | |
| 228 | result = g_malloc(len + strlen(filename) + 1); |
| 229 | memcpy(result, base_path, len); |
| 230 | strcpy(result + len, filename); |
| 231 | |
| 232 | return result; |
| 233 | } |
| 234 | |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 235 | /* |
| 236 | * Helper function for bdrv_parse_filename() implementations to remove optional |
| 237 | * protocol prefixes (especially "file:") from a filename and for putting the |
| 238 | * stripped filename into the options QDict if there is such a prefix. |
| 239 | */ |
| 240 | void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, |
| 241 | QDict *options) |
| 242 | { |
| 243 | if (strstart(filename, prefix, &filename)) { |
| 244 | /* Stripping the explicit protocol prefix may result in a protocol |
| 245 | * prefix being (wrongly) detected (if the filename contains a colon) */ |
| 246 | if (path_has_protocol(filename)) { |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 247 | GString *fat_filename; |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 248 | |
| 249 | /* This means there is some colon before the first slash; therefore, |
| 250 | * this cannot be an absolute path */ |
| 251 | assert(!path_is_absolute(filename)); |
| 252 | |
| 253 | /* And we can thus fix the protocol detection issue by prefixing it |
| 254 | * by "./" */ |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 255 | fat_filename = g_string_new("./"); |
| 256 | g_string_append(fat_filename, filename); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 257 | |
Markus Armbruster | 18cf67c | 2020-12-11 18:11:51 +0100 | [diff] [blame] | 258 | assert(!path_has_protocol(fat_filename->str)); |
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 | qdict_put(options, "filename", |
| 261 | qstring_from_gstring(fat_filename)); |
Max Reitz | 03c320d | 2017-05-22 21:52:16 +0200 | [diff] [blame] | 262 | } else { |
| 263 | /* If no protocol prefix was detected, we can use the shortened |
| 264 | * filename as-is */ |
| 265 | qdict_put_str(options, "filename", filename); |
| 266 | } |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | |
Kevin Wolf | 9c5e659 | 2017-05-04 18:52:40 +0200 | [diff] [blame] | 271 | /* Returns whether the image file is opened as read-only. Note that this can |
| 272 | * return false and writing to the image file is still not possible because the |
| 273 | * image is inactivated. */ |
Jeff Cody | 93ed524 | 2017-04-07 16:55:28 -0400 | [diff] [blame] | 274 | bool bdrv_is_read_only(BlockDriverState *bs) |
| 275 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 276 | IO_CODE(); |
Vladimir Sementsov-Ogievskiy | 975da07 | 2021-05-27 18:40:55 +0300 | [diff] [blame] | 277 | return !(bs->open_flags & BDRV_O_RDWR); |
Jeff Cody | 93ed524 | 2017-04-07 16:55:28 -0400 | [diff] [blame] | 278 | } |
| 279 | |
Kevin Wolf | 10e5d70 | 2023-02-03 16:21:40 +0100 | [diff] [blame] | 280 | static int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, |
| 281 | bool ignore_allow_rdw, Error **errp) |
Jeff Cody | fe5241b | 2017-04-07 16:55:25 -0400 | [diff] [blame] | 282 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 283 | IO_CODE(); |
| 284 | |
Jeff Cody | e2b8247 | 2017-04-07 16:55:26 -0400 | [diff] [blame] | 285 | /* Do not set read_only if copy_on_read is enabled */ |
| 286 | if (bs->copy_on_read && read_only) { |
| 287 | error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", |
| 288 | bdrv_get_device_or_node_name(bs)); |
| 289 | return -EINVAL; |
| 290 | } |
| 291 | |
Jeff Cody | d6fcdf0 | 2017-04-07 16:55:27 -0400 | [diff] [blame] | 292 | /* Do not clear read_only if it is prohibited */ |
Kevin Wolf | 54a32bf | 2017-08-03 17:02:58 +0200 | [diff] [blame] | 293 | if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && |
| 294 | !ignore_allow_rdw) |
| 295 | { |
Jeff Cody | d6fcdf0 | 2017-04-07 16:55:27 -0400 | [diff] [blame] | 296 | error_setg(errp, "Node '%s' is read only", |
| 297 | bdrv_get_device_or_node_name(bs)); |
| 298 | return -EPERM; |
| 299 | } |
| 300 | |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 301 | return 0; |
| 302 | } |
| 303 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 304 | /* |
| 305 | * Called by a driver that can only provide a read-only image. |
| 306 | * |
| 307 | * Returns 0 if the node is already read-only or it could switch the node to |
| 308 | * read-only because BDRV_O_AUTO_RDONLY is set. |
| 309 | * |
| 310 | * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set |
| 311 | * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg |
| 312 | * is not NULL, it is used as the error message for the Error object. |
| 313 | */ |
| 314 | int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg, |
| 315 | Error **errp) |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 316 | { |
| 317 | int ret = 0; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 318 | IO_CODE(); |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 319 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 320 | if (!(bs->open_flags & BDRV_O_RDWR)) { |
| 321 | return 0; |
| 322 | } |
| 323 | if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) { |
| 324 | goto fail; |
| 325 | } |
| 326 | |
| 327 | ret = bdrv_can_set_read_only(bs, true, false, NULL); |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 328 | if (ret < 0) { |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 329 | goto fail; |
Jeff Cody | 45803a0 | 2017-04-07 16:55:29 -0400 | [diff] [blame] | 330 | } |
| 331 | |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 332 | bs->open_flags &= ~BDRV_O_RDWR; |
Kevin Wolf | eeae6a5 | 2018-10-09 16:57:12 +0200 | [diff] [blame] | 333 | |
Jeff Cody | e2b8247 | 2017-04-07 16:55:26 -0400 | [diff] [blame] | 334 | return 0; |
Kevin Wolf | eaa2410 | 2018-10-12 11:27:41 +0200 | [diff] [blame] | 335 | |
| 336 | fail: |
| 337 | error_setg(errp, "%s", errmsg ?: "Image is read-only"); |
| 338 | return -EACCES; |
Jeff Cody | fe5241b | 2017-04-07 16:55:25 -0400 | [diff] [blame] | 339 | } |
| 340 | |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 341 | /* |
| 342 | * If @backing is empty, this function returns NULL without setting |
| 343 | * @errp. In all other cases, NULL will only be returned with @errp |
| 344 | * set. |
| 345 | * |
| 346 | * Therefore, a return value of NULL without @errp set means that |
| 347 | * there is no backing file; if @errp is set, there is one but its |
| 348 | * absolute filename cannot be generated. |
| 349 | */ |
| 350 | char *bdrv_get_full_backing_filename_from_filename(const char *backed, |
| 351 | const char *backing, |
| 352 | Error **errp) |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 353 | { |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 354 | if (backing[0] == '\0') { |
| 355 | return NULL; |
| 356 | } else if (path_has_protocol(backing) || path_is_absolute(backing)) { |
| 357 | return g_strdup(backing); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 358 | } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { |
| 359 | error_setg(errp, "Cannot use relative backing file names for '%s'", |
| 360 | backed); |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 361 | return NULL; |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 362 | } else { |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 363 | return path_combine(backed, backing); |
Max Reitz | 0a82855 | 2014-11-26 17:20:25 +0100 | [diff] [blame] | 364 | } |
| 365 | } |
| 366 | |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 367 | /* |
| 368 | * If @filename is empty or NULL, this function returns NULL without |
| 369 | * setting @errp. In all other cases, NULL will only be returned with |
| 370 | * @errp set. |
| 371 | */ |
| 372 | static char *bdrv_make_absolute_filename(BlockDriverState *relative_to, |
| 373 | const char *filename, Error **errp) |
| 374 | { |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 375 | char *dir, *full_name; |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 376 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 377 | if (!filename || filename[0] == '\0') { |
| 378 | return NULL; |
| 379 | } else if (path_has_protocol(filename) || path_is_absolute(filename)) { |
| 380 | return g_strdup(filename); |
| 381 | } |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 382 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 383 | dir = bdrv_dirname(relative_to, errp); |
| 384 | if (!dir) { |
| 385 | return NULL; |
| 386 | } |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 387 | |
Max Reitz | 8df6861 | 2019-02-01 20:29:23 +0100 | [diff] [blame] | 388 | full_name = g_strconcat(dir, filename, NULL); |
| 389 | g_free(dir); |
| 390 | return full_name; |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 391 | } |
| 392 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 393 | char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp) |
Paolo Bonzini | dc5a137 | 2012-05-08 16:51:50 +0200 | [diff] [blame] | 394 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 395 | GLOBAL_STATE_CODE(); |
Max Reitz | 9f4793d | 2019-02-01 20:29:16 +0100 | [diff] [blame] | 396 | return bdrv_make_absolute_filename(bs, bs->backing_file, errp); |
Paolo Bonzini | dc5a137 | 2012-05-08 16:51:50 +0200 | [diff] [blame] | 397 | } |
| 398 | |
Stefan Hajnoczi | 0eb7217 | 2015-04-28 14:27:51 +0100 | [diff] [blame] | 399 | void bdrv_register(BlockDriver *bdrv) |
| 400 | { |
Philippe Mathieu-Daudé | a15f08d | 2020-03-18 23:22:35 +0100 | [diff] [blame] | 401 | assert(bdrv->format_name); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 402 | GLOBAL_STATE_CODE(); |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 403 | QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 404 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 405 | |
Markus Armbruster | e4e9986 | 2014-10-07 13:59:03 +0200 | [diff] [blame] | 406 | BlockDriverState *bdrv_new(void) |
| 407 | { |
| 408 | BlockDriverState *bs; |
| 409 | int i; |
| 410 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 411 | GLOBAL_STATE_CODE(); |
| 412 | |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 413 | bs = g_new0(BlockDriverState, 1); |
Fam Zheng | e4654d2 | 2013-11-13 18:29:43 +0800 | [diff] [blame] | 414 | QLIST_INIT(&bs->dirty_bitmaps); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 415 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 416 | QLIST_INIT(&bs->op_blockers[i]); |
| 417 | } |
Paolo Bonzini | 3783fa3 | 2017-06-05 14:39:02 +0200 | [diff] [blame] | 418 | qemu_co_mutex_init(&bs->reqs_lock); |
Paolo Bonzini | 2119882 | 2017-06-05 14:39:03 +0200 | [diff] [blame] | 419 | qemu_mutex_init(&bs->dirty_bitmap_mutex); |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 420 | bs->refcnt = 1; |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 421 | bs->aio_context = qemu_get_aio_context(); |
Paolo Bonzini | d7d512f | 2012-08-23 11:20:36 +0200 | [diff] [blame] | 422 | |
Evgeny Yakovlev | 3ff2f67 | 2016-07-18 22:39:52 +0300 | [diff] [blame] | 423 | qemu_co_queue_init(&bs->flush_queue); |
| 424 | |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 425 | qemu_co_mutex_init(&bs->bsc_modify_lock); |
| 426 | bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1); |
| 427 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 428 | for (i = 0; i < bdrv_drain_all_count; i++) { |
| 429 | bdrv_drained_begin(bs); |
| 430 | } |
| 431 | |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 432 | QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); |
| 433 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 434 | return bs; |
| 435 | } |
| 436 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 437 | static BlockDriver *bdrv_do_find_format(const char *format_name) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 438 | { |
| 439 | BlockDriver *drv1; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 440 | GLOBAL_STATE_CODE(); |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 441 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 442 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 443 | if (!strcmp(drv1->format_name, format_name)) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 444 | return drv1; |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 445 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 446 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 447 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 448 | return NULL; |
| 449 | } |
| 450 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 451 | BlockDriver *bdrv_find_format(const char *format_name) |
| 452 | { |
| 453 | BlockDriver *drv1; |
| 454 | int i; |
| 455 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 456 | GLOBAL_STATE_CODE(); |
| 457 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 458 | drv1 = bdrv_do_find_format(format_name); |
| 459 | if (drv1) { |
| 460 | return drv1; |
| 461 | } |
| 462 | |
| 463 | /* The driver isn't registered, maybe we need to load a module */ |
| 464 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { |
| 465 | if (!strcmp(block_driver_modules[i].format_name, format_name)) { |
Claudio Fontana | c551fb0 | 2022-09-29 11:30:33 +0200 | [diff] [blame] | 466 | Error *local_err = NULL; |
| 467 | int rv = block_module_load(block_driver_modules[i].library_name, |
| 468 | &local_err); |
| 469 | if (rv > 0) { |
| 470 | return bdrv_do_find_format(format_name); |
| 471 | } else if (rv < 0) { |
| 472 | error_report_err(local_err); |
| 473 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 474 | break; |
| 475 | } |
| 476 | } |
Claudio Fontana | c551fb0 | 2022-09-29 11:30:33 +0200 | [diff] [blame] | 477 | return NULL; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 478 | } |
| 479 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 480 | 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] | 481 | { |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 482 | static const char *whitelist_rw[] = { |
| 483 | CONFIG_BDRV_RW_WHITELIST |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 484 | NULL |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 485 | }; |
| 486 | static const char *whitelist_ro[] = { |
| 487 | CONFIG_BDRV_RO_WHITELIST |
Paolo Bonzini | 859aef0 | 2020-08-04 18:14:26 +0200 | [diff] [blame] | 488 | NULL |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 489 | }; |
| 490 | const char **p; |
| 491 | |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 492 | if (!whitelist_rw[0] && !whitelist_ro[0]) { |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 493 | return 1; /* no whitelist, anything goes */ |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 494 | } |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 495 | |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 496 | for (p = whitelist_rw; *p; p++) { |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 497 | if (!strcmp(format_name, *p)) { |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 498 | return 1; |
| 499 | } |
| 500 | } |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 501 | if (read_only) { |
| 502 | for (p = whitelist_ro; *p; p++) { |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 503 | if (!strcmp(format_name, *p)) { |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 504 | return 1; |
| 505 | } |
| 506 | } |
| 507 | } |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 508 | return 0; |
| 509 | } |
| 510 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 511 | int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) |
| 512 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 513 | GLOBAL_STATE_CODE(); |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 514 | return bdrv_format_is_whitelisted(drv->format_name, read_only); |
| 515 | } |
| 516 | |
Daniel P. Berrange | e6ff69b | 2016-03-21 14:11:48 +0000 | [diff] [blame] | 517 | bool bdrv_uses_whitelist(void) |
| 518 | { |
| 519 | return use_bdrv_whitelist; |
| 520 | } |
| 521 | |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 522 | typedef struct CreateCo { |
| 523 | BlockDriver *drv; |
| 524 | char *filename; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 525 | QemuOpts *opts; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 526 | int ret; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 527 | Error *err; |
Zhi Yong Wu | 5b7e154 | 2012-05-07 16:50:42 +0800 | [diff] [blame] | 528 | } CreateCo; |
| 529 | |
Emanuele Giuseppe Esposito | 741443e | 2022-11-28 09:23:36 -0500 | [diff] [blame] | 530 | int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename, |
| 531 | QemuOpts *opts, Error **errp) |
Emanuele Giuseppe Esposito | 84bdf21 | 2022-11-28 09:23:30 -0500 | [diff] [blame] | 532 | { |
| 533 | int ret; |
| 534 | GLOBAL_STATE_CODE(); |
| 535 | ERRP_GUARD(); |
| 536 | |
| 537 | if (!drv->bdrv_co_create_opts) { |
| 538 | error_setg(errp, "Driver '%s' does not support image creation", |
| 539 | drv->format_name); |
| 540 | return -ENOTSUP; |
| 541 | } |
| 542 | |
| 543 | ret = drv->bdrv_co_create_opts(drv, filename, opts, errp); |
| 544 | if (ret < 0 && !*errp) { |
| 545 | error_setg_errno(errp, -ret, "Could not create image"); |
| 546 | } |
| 547 | |
| 548 | return ret; |
| 549 | } |
| 550 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 551 | /** |
| 552 | * Helper function for bdrv_create_file_fallback(): Resize @blk to at |
| 553 | * least the given @minimum_size. |
| 554 | * |
| 555 | * On success, return @blk's actual length. |
| 556 | * Otherwise, return -errno. |
| 557 | */ |
| 558 | static int64_t create_file_fallback_truncate(BlockBackend *blk, |
| 559 | int64_t minimum_size, Error **errp) |
| 560 | { |
| 561 | Error *local_err = NULL; |
| 562 | int64_t size; |
| 563 | int ret; |
| 564 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 565 | GLOBAL_STATE_CODE(); |
| 566 | |
Kevin Wolf | 8c6242b | 2020-04-24 14:54:41 +0200 | [diff] [blame] | 567 | ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0, |
| 568 | &local_err); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 569 | if (ret < 0 && ret != -ENOTSUP) { |
| 570 | error_propagate(errp, local_err); |
| 571 | return ret; |
| 572 | } |
| 573 | |
| 574 | size = blk_getlength(blk); |
| 575 | if (size < 0) { |
| 576 | error_free(local_err); |
| 577 | error_setg_errno(errp, -size, |
| 578 | "Failed to inquire the new image file's length"); |
| 579 | return size; |
| 580 | } |
| 581 | |
| 582 | if (size < minimum_size) { |
| 583 | /* Need to grow the image, but we failed to do that */ |
| 584 | error_propagate(errp, local_err); |
| 585 | return -ENOTSUP; |
| 586 | } |
| 587 | |
| 588 | error_free(local_err); |
| 589 | local_err = NULL; |
| 590 | |
| 591 | return size; |
| 592 | } |
| 593 | |
| 594 | /** |
| 595 | * Helper function for bdrv_create_file_fallback(): Zero the first |
| 596 | * sector to remove any potentially pre-existing image header. |
| 597 | */ |
Paolo Bonzini | 881a4c5 | 2022-09-22 10:49:00 +0200 | [diff] [blame] | 598 | static int coroutine_fn |
| 599 | create_file_fallback_zero_first_sector(BlockBackend *blk, |
| 600 | int64_t current_size, |
| 601 | Error **errp) |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 602 | { |
| 603 | int64_t bytes_to_clear; |
| 604 | int ret; |
| 605 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 606 | GLOBAL_STATE_CODE(); |
| 607 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 608 | bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE); |
| 609 | if (bytes_to_clear) { |
Alberto Faria | ce47ff2 | 2022-10-13 14:37:02 +0200 | [diff] [blame] | 610 | 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] | 611 | if (ret < 0) { |
| 612 | error_setg_errno(errp, -ret, |
| 613 | "Failed to clear the new image's first sector"); |
| 614 | return ret; |
| 615 | } |
| 616 | } |
| 617 | |
| 618 | return 0; |
| 619 | } |
| 620 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 621 | /** |
| 622 | * Simple implementation of bdrv_co_create_opts for protocol drivers |
| 623 | * which only support creation via opening a file |
| 624 | * (usually existing raw storage device) |
| 625 | */ |
| 626 | int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv, |
| 627 | const char *filename, |
| 628 | QemuOpts *opts, |
| 629 | Error **errp) |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 630 | { |
| 631 | BlockBackend *blk; |
Max Reitz | eeea1fa | 2020-02-25 16:56:18 +0100 | [diff] [blame] | 632 | QDict *options; |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 633 | int64_t size = 0; |
| 634 | char *buf = NULL; |
| 635 | PreallocMode prealloc; |
| 636 | Error *local_err = NULL; |
| 637 | int ret; |
| 638 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 639 | GLOBAL_STATE_CODE(); |
| 640 | |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 641 | size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); |
| 642 | buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); |
| 643 | prealloc = qapi_enum_parse(&PreallocMode_lookup, buf, |
| 644 | PREALLOC_MODE_OFF, &local_err); |
| 645 | g_free(buf); |
| 646 | if (local_err) { |
| 647 | error_propagate(errp, local_err); |
| 648 | return -EINVAL; |
| 649 | } |
| 650 | |
| 651 | if (prealloc != PREALLOC_MODE_OFF) { |
| 652 | error_setg(errp, "Unsupported preallocation mode '%s'", |
| 653 | PreallocMode_str(prealloc)); |
| 654 | return -ENOTSUP; |
| 655 | } |
| 656 | |
Max Reitz | eeea1fa | 2020-02-25 16:56:18 +0100 | [diff] [blame] | 657 | options = qdict_new(); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 658 | qdict_put_str(options, "driver", drv->format_name); |
| 659 | |
Kevin Wolf | be1a732 | 2023-01-26 18:24:31 +0100 | [diff] [blame] | 660 | blk = blk_co_new_open(filename, NULL, options, |
| 661 | BDRV_O_RDWR | BDRV_O_RESIZE, errp); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 662 | if (!blk) { |
| 663 | error_prepend(errp, "Protocol driver '%s' does not support image " |
| 664 | "creation, and opening the image failed: ", |
| 665 | drv->format_name); |
| 666 | return -EINVAL; |
| 667 | } |
| 668 | |
| 669 | size = create_file_fallback_truncate(blk, size, errp); |
| 670 | if (size < 0) { |
| 671 | ret = size; |
| 672 | goto out; |
| 673 | } |
| 674 | |
| 675 | ret = create_file_fallback_zero_first_sector(blk, size, errp); |
| 676 | if (ret < 0) { |
| 677 | goto out; |
| 678 | } |
| 679 | |
| 680 | ret = 0; |
| 681 | out: |
Kevin Wolf | b2ab5f5 | 2023-05-04 13:57:33 +0200 | [diff] [blame] | 682 | blk_co_unref(blk); |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 683 | return ret; |
| 684 | } |
| 685 | |
Emanuele Giuseppe Esposito | 2475a0d | 2022-11-28 09:23:31 -0500 | [diff] [blame] | 686 | int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts, |
| 687 | Error **errp) |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 688 | { |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 689 | QemuOpts *protocol_opts; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 690 | BlockDriver *drv; |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 691 | QDict *qdict; |
| 692 | int ret; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 693 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 694 | GLOBAL_STATE_CODE(); |
| 695 | |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 696 | drv = bdrv_find_protocol(filename, true, errp); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 697 | if (drv == NULL) { |
Stefan Hajnoczi | 16905d7 | 2010-11-30 15:14:14 +0000 | [diff] [blame] | 698 | return -ENOENT; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 699 | } |
| 700 | |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 701 | if (!drv->create_opts) { |
| 702 | error_setg(errp, "Driver '%s' does not support image creation", |
| 703 | drv->format_name); |
| 704 | return -ENOTSUP; |
| 705 | } |
| 706 | |
| 707 | /* |
| 708 | * 'opts' contains a QemuOptsList with a combination of format and protocol |
| 709 | * default values. |
| 710 | * |
| 711 | * The format properly removes its options, but the default values remain |
| 712 | * in 'opts->list'. So if the protocol has options with the same name |
| 713 | * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values |
| 714 | * of the format, since for overlapping options, the format wins. |
| 715 | * |
| 716 | * To avoid this issue, lets convert QemuOpts to QDict, in this way we take |
| 717 | * only the set options, and then convert it back to QemuOpts, using the |
| 718 | * create_opts of the protocol. So the new QemuOpts, will contain only the |
| 719 | * protocol defaults. |
| 720 | */ |
| 721 | qdict = qemu_opts_to_qdict(opts, NULL); |
| 722 | protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp); |
| 723 | if (protocol_opts == NULL) { |
| 724 | ret = -EINVAL; |
| 725 | goto out; |
| 726 | } |
| 727 | |
Emanuele Giuseppe Esposito | 2475a0d | 2022-11-28 09:23:31 -0500 | [diff] [blame] | 728 | ret = bdrv_co_create(drv, filename, protocol_opts, errp); |
Stefano Garzarella | 729222a | 2021-03-08 17:12:32 +0100 | [diff] [blame] | 729 | out: |
| 730 | qemu_opts_del(protocol_opts); |
| 731 | qobject_unref(qdict); |
| 732 | return ret; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 733 | } |
| 734 | |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 735 | int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp) |
| 736 | { |
| 737 | Error *local_err = NULL; |
| 738 | int ret; |
| 739 | |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 740 | IO_CODE(); |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 741 | assert(bs != NULL); |
Kevin Wolf | 48aef79 | 2023-02-03 16:22:00 +0100 | [diff] [blame] | 742 | assert_bdrv_graph_readable(); |
Daniel Henrique Barboza | e1d7f8b | 2020-01-30 18:39:05 -0300 | [diff] [blame] | 743 | |
| 744 | if (!bs->drv) { |
| 745 | error_setg(errp, "Block node '%s' is not opened", bs->filename); |
| 746 | return -ENOMEDIUM; |
| 747 | } |
| 748 | |
| 749 | if (!bs->drv->bdrv_co_delete_file) { |
| 750 | error_setg(errp, "Driver '%s' does not support image deletion", |
| 751 | bs->drv->format_name); |
| 752 | return -ENOTSUP; |
| 753 | } |
| 754 | |
| 755 | ret = bs->drv->bdrv_co_delete_file(bs, &local_err); |
| 756 | if (ret < 0) { |
| 757 | error_propagate(errp, local_err); |
| 758 | } |
| 759 | |
| 760 | return ret; |
| 761 | } |
| 762 | |
Maxim Levitsky | a890f08 | 2020-12-17 19:09:03 +0200 | [diff] [blame] | 763 | void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs) |
| 764 | { |
| 765 | Error *local_err = NULL; |
| 766 | int ret; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 767 | IO_CODE(); |
Maxim Levitsky | a890f08 | 2020-12-17 19:09:03 +0200 | [diff] [blame] | 768 | |
| 769 | if (!bs) { |
| 770 | return; |
| 771 | } |
| 772 | |
| 773 | ret = bdrv_co_delete_file(bs, &local_err); |
| 774 | /* |
| 775 | * ENOTSUP will happen if the block driver doesn't support |
| 776 | * the 'bdrv_co_delete_file' interface. This is a predictable |
| 777 | * scenario and shouldn't be reported back to the user. |
| 778 | */ |
| 779 | if (ret == -ENOTSUP) { |
| 780 | error_free(local_err); |
| 781 | } else if (ret < 0) { |
| 782 | error_report_err(local_err); |
| 783 | } |
| 784 | } |
| 785 | |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 786 | /** |
| 787 | * Try to get @bs's logical and physical block size. |
| 788 | * On success, store them in @bsz struct and return 0. |
| 789 | * On failure return -errno. |
| 790 | * @bs must not be empty. |
| 791 | */ |
| 792 | int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) |
| 793 | { |
| 794 | BlockDriver *drv = bs->drv; |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 795 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 796 | GLOBAL_STATE_CODE(); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 797 | |
| 798 | if (drv && drv->bdrv_probe_blocksizes) { |
| 799 | return drv->bdrv_probe_blocksizes(bs, bsz); |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 800 | } else if (filtered) { |
| 801 | return bdrv_probe_blocksizes(filtered, bsz); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | return -ENOTSUP; |
| 805 | } |
| 806 | |
| 807 | /** |
| 808 | * Try to get @bs's geometry (cyls, heads, sectors). |
| 809 | * On success, store them in @geo struct and return 0. |
| 810 | * On failure return -errno. |
| 811 | * @bs must not be empty. |
| 812 | */ |
| 813 | int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) |
| 814 | { |
| 815 | BlockDriver *drv = bs->drv; |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 816 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 817 | GLOBAL_STATE_CODE(); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 818 | |
| 819 | if (drv && drv->bdrv_probe_geometry) { |
| 820 | return drv->bdrv_probe_geometry(bs, geo); |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 821 | } else if (filtered) { |
| 822 | return bdrv_probe_geometry(filtered, geo); |
Ekaterina Tumanova | 892b7de | 2015-02-16 12:47:54 +0100 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | return -ENOTSUP; |
| 826 | } |
| 827 | |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 828 | /* |
| 829 | * Create a uniquely-named empty temporary file. |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 830 | * Return the actual file name used upon success, otherwise NULL. |
| 831 | * This string should be freed with g_free() when not needed any longer. |
| 832 | * |
| 833 | * Note: creating a temporary file for the caller to (re)open is |
| 834 | * inherently racy. Use g_file_open_tmp() instead whenever practical. |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 835 | */ |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 836 | char *create_tmp_file(Error **errp) |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 837 | { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 838 | int fd; |
blueswir1 | 7ccfb2e | 2008-09-14 06:45:34 +0000 | [diff] [blame] | 839 | const char *tmpdir; |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 840 | g_autofree char *filename = NULL; |
| 841 | |
| 842 | tmpdir = g_get_tmp_dir(); |
| 843 | #ifndef _WIN32 |
| 844 | /* |
| 845 | * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot") |
| 846 | * |
| 847 | * This function is used to create temporary disk images (like -snapshot), |
| 848 | * so the files can become very large. /tmp is often a tmpfs where as |
| 849 | * /var/tmp is usually on a disk, so more appropriate for disk images. |
| 850 | */ |
| 851 | if (!g_strcmp0(tmpdir, "/tmp")) { |
Amit Shah | 69bef79 | 2014-02-26 15:12:37 +0530 | [diff] [blame] | 852 | tmpdir = "/var/tmp"; |
| 853 | } |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 854 | #endif |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 855 | |
| 856 | filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir); |
| 857 | fd = g_mkstemp(filename); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 858 | if (fd < 0) { |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 859 | error_setg_errno(errp, errno, "Could not open temporary file '%s'", |
| 860 | filename); |
| 861 | return NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 862 | } |
Bin Meng | 6b6471e | 2022-10-10 12:04:30 +0800 | [diff] [blame] | 863 | close(fd); |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 864 | |
| 865 | return g_steal_pointer(&filename); |
Jim Meyering | eba2505 | 2012-05-28 09:27:54 +0200 | [diff] [blame] | 866 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 867 | |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 868 | /* |
| 869 | * Detect host devices. By convention, /dev/cdrom[N] is always |
| 870 | * recognized as a host CDROM. |
| 871 | */ |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 872 | static BlockDriver *find_hdev_driver(const char *filename) |
| 873 | { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 874 | int score_max = 0, score; |
| 875 | BlockDriver *drv = NULL, *d; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 876 | GLOBAL_STATE_CODE(); |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 877 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 878 | QLIST_FOREACH(d, &bdrv_drivers, list) { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 879 | if (d->bdrv_probe_device) { |
| 880 | score = d->bdrv_probe_device(filename); |
| 881 | if (score > score_max) { |
| 882 | score_max = score; |
| 883 | drv = d; |
| 884 | } |
| 885 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 886 | } |
| 887 | |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 888 | return drv; |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 889 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 890 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 891 | static BlockDriver *bdrv_do_find_protocol(const char *protocol) |
| 892 | { |
| 893 | BlockDriver *drv1; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 894 | GLOBAL_STATE_CODE(); |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 895 | |
| 896 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 897 | if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { |
| 898 | return drv1; |
| 899 | } |
| 900 | } |
| 901 | |
| 902 | return NULL; |
| 903 | } |
| 904 | |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 905 | BlockDriver *bdrv_find_protocol(const char *filename, |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 906 | bool allow_protocol_prefix, |
| 907 | Error **errp) |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 908 | { |
| 909 | BlockDriver *drv1; |
| 910 | char protocol[128]; |
| 911 | int len; |
| 912 | const char *p; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 913 | int i; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 914 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 915 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 916 | /* TODO Drivers without bdrv_file_open must be specified explicitly */ |
| 917 | |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 918 | /* |
| 919 | * XXX(hch): we really should not let host device detection |
| 920 | * override an explicit protocol specification, but moving this |
| 921 | * later breaks access to device names with colons in them. |
| 922 | * Thanks to the brain-dead persistent naming schemes on udev- |
| 923 | * based Linux systems those actually are quite common. |
| 924 | */ |
| 925 | drv1 = find_hdev_driver(filename); |
| 926 | if (drv1) { |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 927 | return drv1; |
| 928 | } |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 929 | |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 930 | if (!path_has_protocol(filename) || !allow_protocol_prefix) { |
Max Reitz | ef81043 | 2014-12-02 18:32:42 +0100 | [diff] [blame] | 931 | return &bdrv_file; |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 932 | } |
Kevin Wolf | 9828962 | 2013-07-10 15:47:39 +0200 | [diff] [blame] | 933 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 934 | p = strchr(filename, ':'); |
| 935 | assert(p != NULL); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 936 | len = p - filename; |
| 937 | if (len > sizeof(protocol) - 1) |
| 938 | len = sizeof(protocol) - 1; |
| 939 | memcpy(protocol, filename, len); |
| 940 | protocol[len] = '\0'; |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 941 | |
| 942 | drv1 = bdrv_do_find_protocol(protocol); |
| 943 | if (drv1) { |
| 944 | return drv1; |
| 945 | } |
| 946 | |
| 947 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { |
| 948 | if (block_driver_modules[i].protocol_name && |
| 949 | !strcmp(block_driver_modules[i].protocol_name, protocol)) { |
Claudio Fontana | c551fb0 | 2022-09-29 11:30:33 +0200 | [diff] [blame] | 950 | int rv = block_module_load(block_driver_modules[i].library_name, errp); |
| 951 | if (rv > 0) { |
| 952 | drv1 = bdrv_do_find_protocol(protocol); |
| 953 | } else if (rv < 0) { |
| 954 | return NULL; |
| 955 | } |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 956 | break; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 957 | } |
| 958 | } |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 959 | |
Marc Mari | 88d8879 | 2016-08-12 09:27:03 -0400 | [diff] [blame] | 960 | if (!drv1) { |
| 961 | error_setg(errp, "Unknown protocol '%s'", protocol); |
| 962 | } |
| 963 | return drv1; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 964 | } |
| 965 | |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 966 | /* |
| 967 | * Guess image format by probing its contents. |
| 968 | * This is not a good idea when your image is raw (CVE-2008-2004), but |
| 969 | * we do it anyway for backward compatibility. |
| 970 | * |
| 971 | * @buf contains the image's first @buf_size bytes. |
Kevin Wolf | 7cddd37 | 2014-11-20 16:27:11 +0100 | [diff] [blame] | 972 | * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, |
| 973 | * but can be smaller if the image file is smaller) |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 974 | * @filename is its filename. |
| 975 | * |
| 976 | * For all block drivers, call the bdrv_probe() method to get its |
| 977 | * probing score. |
| 978 | * Return the first block driver with the highest probing score. |
| 979 | */ |
Kevin Wolf | 38f3ef5 | 2014-11-20 16:27:12 +0100 | [diff] [blame] | 980 | BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, |
| 981 | const char *filename) |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 982 | { |
| 983 | int score_max = 0, score; |
| 984 | BlockDriver *drv = NULL, *d; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 985 | IO_CODE(); |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 986 | |
| 987 | QLIST_FOREACH(d, &bdrv_drivers, list) { |
| 988 | if (d->bdrv_probe) { |
| 989 | score = d->bdrv_probe(buf, buf_size, filename); |
| 990 | if (score > score_max) { |
| 991 | score_max = score; |
| 992 | drv = d; |
| 993 | } |
| 994 | } |
| 995 | } |
| 996 | |
| 997 | return drv; |
| 998 | } |
| 999 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1000 | static int find_image_format(BlockBackend *file, const char *filename, |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1001 | BlockDriver **pdrv, Error **errp) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1002 | { |
Markus Armbruster | c668424 | 2014-11-20 16:27:10 +0100 | [diff] [blame] | 1003 | BlockDriver *drv; |
Kevin Wolf | 7cddd37 | 2014-11-20 16:27:11 +0100 | [diff] [blame] | 1004 | uint8_t buf[BLOCK_PROBE_BUF_SIZE]; |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 1005 | int ret = 0; |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 1006 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1007 | GLOBAL_STATE_CODE(); |
| 1008 | |
Kevin Wolf | 08a0055 | 2010-06-01 18:37:31 +0200 | [diff] [blame] | 1009 | /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1010 | 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] | 1011 | *pdrv = &bdrv_raw; |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1012 | return ret; |
Nicholas A. Bellinger | 1a39685 | 2010-05-27 08:56:28 -0700 | [diff] [blame] | 1013 | } |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 1014 | |
Alberto Faria | a9262f5 | 2022-07-05 17:15:11 +0100 | [diff] [blame] | 1015 | ret = blk_pread(file, 0, sizeof(buf), buf, 0); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1016 | if (ret < 0) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1017 | error_setg_errno(errp, -ret, "Could not read image for determining its " |
| 1018 | "format"); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1019 | *pdrv = NULL; |
| 1020 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1023 | drv = bdrv_probe_all(buf, sizeof(buf), filename); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1024 | if (!drv) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1025 | error_setg(errp, "Could not determine image format: No compatible " |
| 1026 | "driver found"); |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1027 | *pdrv = NULL; |
| 1028 | return -ENOENT; |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1029 | } |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1030 | |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 1031 | *pdrv = drv; |
Alberto Faria | bf5b16f | 2022-07-05 17:15:09 +0100 | [diff] [blame] | 1032 | return 0; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1035 | /** |
| 1036 | * Set the current 'total_sectors' value |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 1037 | * Return 0 on success, -errno on error. |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1038 | */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1039 | int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs, |
| 1040 | int64_t hint) |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1041 | { |
| 1042 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 1043 | IO_CODE(); |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 1044 | assert_bdrv_graph_readable(); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1045 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 1046 | if (!drv) { |
| 1047 | return -ENOMEDIUM; |
| 1048 | } |
| 1049 | |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1050 | /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */ |
Dimitris Aragiorgis | b192af8 | 2015-06-23 13:44:56 +0300 | [diff] [blame] | 1051 | if (bdrv_is_sg(bs)) |
Nicholas Bellinger | 396759a | 2010-05-17 09:46:04 -0700 | [diff] [blame] | 1052 | return 0; |
| 1053 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1054 | /* query actual device if possible, otherwise just trust the hint */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1055 | if (drv->bdrv_co_getlength) { |
| 1056 | int64_t length = drv->bdrv_co_getlength(bs); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1057 | if (length < 0) { |
| 1058 | return length; |
| 1059 | } |
Fam Zheng | 7e38200 | 2013-11-06 19:48:06 +0800 | [diff] [blame] | 1060 | hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | bs->total_sectors = hint; |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 1064 | |
| 1065 | if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) { |
| 1066 | return -EFBIG; |
| 1067 | } |
| 1068 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1069 | return 0; |
| 1070 | } |
| 1071 | |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1072 | /** |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1073 | * Combines a QDict of new block driver @options with any missing options taken |
| 1074 | * from @old_options, so that leaving out an option defaults to its old value. |
| 1075 | */ |
| 1076 | static void bdrv_join_options(BlockDriverState *bs, QDict *options, |
| 1077 | QDict *old_options) |
| 1078 | { |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 1079 | GLOBAL_STATE_CODE(); |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1080 | if (bs->drv && bs->drv->bdrv_join_options) { |
| 1081 | bs->drv->bdrv_join_options(options, old_options); |
| 1082 | } else { |
| 1083 | qdict_join(options, old_options, false); |
| 1084 | } |
| 1085 | } |
| 1086 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1087 | static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts, |
| 1088 | int open_flags, |
| 1089 | Error **errp) |
| 1090 | { |
| 1091 | Error *local_err = NULL; |
| 1092 | char *value = qemu_opt_get_del(opts, "detect-zeroes"); |
| 1093 | BlockdevDetectZeroesOptions detect_zeroes = |
| 1094 | qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value, |
| 1095 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1096 | GLOBAL_STATE_CODE(); |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1097 | g_free(value); |
| 1098 | if (local_err) { |
| 1099 | error_propagate(errp, local_err); |
| 1100 | return detect_zeroes; |
| 1101 | } |
| 1102 | |
| 1103 | if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && |
| 1104 | !(open_flags & BDRV_O_UNMAP)) |
| 1105 | { |
| 1106 | error_setg(errp, "setting detect-zeroes to unmap is not allowed " |
| 1107 | "without setting discard operation to unmap"); |
| 1108 | } |
| 1109 | |
| 1110 | return detect_zeroes; |
| 1111 | } |
| 1112 | |
Kevin Wolf | cddff5b | 2015-11-16 16:43:27 +0100 | [diff] [blame] | 1113 | /** |
Aarushi Mehta | f80f267 | 2020-01-20 14:18:50 +0000 | [diff] [blame] | 1114 | * Set open flags for aio engine |
| 1115 | * |
| 1116 | * Return 0 on success, -1 if the engine specified is invalid |
| 1117 | */ |
| 1118 | int bdrv_parse_aio(const char *mode, int *flags) |
| 1119 | { |
| 1120 | if (!strcmp(mode, "threads")) { |
| 1121 | /* do nothing, default */ |
| 1122 | } else if (!strcmp(mode, "native")) { |
| 1123 | *flags |= BDRV_O_NATIVE_AIO; |
| 1124 | #ifdef CONFIG_LINUX_IO_URING |
| 1125 | } else if (!strcmp(mode, "io_uring")) { |
| 1126 | *flags |= BDRV_O_IO_URING; |
| 1127 | #endif |
| 1128 | } else { |
| 1129 | return -1; |
| 1130 | } |
| 1131 | |
| 1132 | return 0; |
| 1133 | } |
| 1134 | |
| 1135 | /** |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 1136 | * Set open flags for a given discard mode |
| 1137 | * |
| 1138 | * Return 0 on success, -1 if the discard mode was invalid. |
| 1139 | */ |
| 1140 | int bdrv_parse_discard_flags(const char *mode, int *flags) |
| 1141 | { |
| 1142 | *flags &= ~BDRV_O_UNMAP; |
| 1143 | |
| 1144 | if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { |
| 1145 | /* do nothing */ |
| 1146 | } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { |
| 1147 | *flags |= BDRV_O_UNMAP; |
| 1148 | } else { |
| 1149 | return -1; |
| 1150 | } |
| 1151 | |
| 1152 | return 0; |
| 1153 | } |
| 1154 | |
| 1155 | /** |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1156 | * Set open flags for a given cache mode |
| 1157 | * |
| 1158 | * Return 0 on success, -1 if the cache mode was invalid. |
| 1159 | */ |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1160 | int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1161 | { |
| 1162 | *flags &= ~BDRV_O_CACHE_MASK; |
| 1163 | |
| 1164 | if (!strcmp(mode, "off") || !strcmp(mode, "none")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1165 | *writethrough = false; |
| 1166 | *flags |= BDRV_O_NOCACHE; |
Stefan Hajnoczi | 92196b2 | 2011-08-04 12:26:52 +0100 | [diff] [blame] | 1167 | } else if (!strcmp(mode, "directsync")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1168 | *writethrough = true; |
Stefan Hajnoczi | 92196b2 | 2011-08-04 12:26:52 +0100 | [diff] [blame] | 1169 | *flags |= BDRV_O_NOCACHE; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1170 | } else if (!strcmp(mode, "writeback")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1171 | *writethrough = false; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1172 | } else if (!strcmp(mode, "unsafe")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1173 | *writethrough = false; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1174 | *flags |= BDRV_O_NO_FLUSH; |
| 1175 | } else if (!strcmp(mode, "writethrough")) { |
Kevin Wolf | 53e8ae0 | 2016-03-18 15:36:58 +0100 | [diff] [blame] | 1176 | *writethrough = true; |
Stefan Hajnoczi | c3993cd | 2011-08-04 12:26:51 +0100 | [diff] [blame] | 1177 | } else { |
| 1178 | return -1; |
| 1179 | } |
| 1180 | |
| 1181 | return 0; |
| 1182 | } |
| 1183 | |
Kevin Wolf | b541155 | 2017-01-17 15:56:16 +0100 | [diff] [blame] | 1184 | static char *bdrv_child_get_parent_desc(BdrvChild *c) |
| 1185 | { |
| 1186 | BlockDriverState *parent = c->opaque; |
Vladimir Sementsov-Ogievskiy | 2c0a3ac | 2021-06-01 10:52:15 +0300 | [diff] [blame] | 1187 | return g_strdup_printf("node '%s'", bdrv_get_node_name(parent)); |
Kevin Wolf | b541155 | 2017-01-17 15:56:16 +0100 | [diff] [blame] | 1188 | } |
| 1189 | |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1190 | static void bdrv_child_cb_drained_begin(BdrvChild *child) |
| 1191 | { |
| 1192 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | a82a3bd | 2022-11-18 18:41:07 +0100 | [diff] [blame] | 1193 | bdrv_do_drained_begin_quiesce(bs, NULL); |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1194 | } |
| 1195 | |
Kevin Wolf | 89bd030 | 2018-03-22 14:11:20 +0100 | [diff] [blame] | 1196 | static bool bdrv_child_cb_drained_poll(BdrvChild *child) |
| 1197 | { |
| 1198 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | 299403a | 2022-11-18 18:41:05 +0100 | [diff] [blame] | 1199 | return bdrv_drain_poll(bs, NULL, false); |
Kevin Wolf | 89bd030 | 2018-03-22 14:11:20 +0100 | [diff] [blame] | 1200 | } |
| 1201 | |
Kevin Wolf | 2f65df6 | 2022-11-18 18:40:59 +0100 | [diff] [blame] | 1202 | static void bdrv_child_cb_drained_end(BdrvChild *child) |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1203 | { |
| 1204 | BlockDriverState *bs = child->opaque; |
Kevin Wolf | 2f65df6 | 2022-11-18 18:40:59 +0100 | [diff] [blame] | 1205 | bdrv_drained_end(bs); |
Kevin Wolf | 20018e1 | 2016-05-23 18:46:59 +0200 | [diff] [blame] | 1206 | } |
| 1207 | |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 1208 | static int bdrv_child_cb_inactivate(BdrvChild *child) |
| 1209 | { |
| 1210 | BlockDriverState *bs = child->opaque; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1211 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 1212 | assert(bs->open_flags & BDRV_O_INACTIVE); |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
Emanuele Giuseppe Esposito | 27633e7 | 2022-10-25 04:49:47 -0400 | [diff] [blame] | 1216 | static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx, |
| 1217 | GHashTable *visited, Transaction *tran, |
| 1218 | Error **errp) |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 1219 | { |
| 1220 | BlockDriverState *bs = child->opaque; |
Emanuele Giuseppe Esposito | 27633e7 | 2022-10-25 04:49:47 -0400 | [diff] [blame] | 1221 | return bdrv_change_aio_context(bs, ctx, visited, tran, errp); |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 1222 | } |
| 1223 | |
Kevin Wolf | 0b50cc8 | 2014-04-11 21:29:52 +0200 | [diff] [blame] | 1224 | /* |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1225 | * Returns the options and flags that a temporary snapshot should get, based on |
| 1226 | * the originally requested flags (the originally requested image will have |
| 1227 | * flags like a backing file) |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1228 | */ |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1229 | static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, |
| 1230 | int parent_flags, QDict *parent_options) |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1231 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1232 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1233 | *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; |
| 1234 | |
| 1235 | /* For temporary files, unconditional cache=unsafe is fine */ |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 1236 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); |
| 1237 | qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); |
Kevin Wolf | 4186904 | 2016-06-16 12:59:30 +0200 | [diff] [blame] | 1238 | |
Kevin Wolf | 3f48686 | 2019-04-04 17:04:43 +0200 | [diff] [blame] | 1239 | /* Copy the read-only and discard options from the parent */ |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1240 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); |
Kevin Wolf | 3f48686 | 2019-04-04 17:04:43 +0200 | [diff] [blame] | 1241 | qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1242 | |
Kevin Wolf | 4186904 | 2016-06-16 12:59:30 +0200 | [diff] [blame] | 1243 | /* aio=native doesn't work for cache.direct=off, so disable it for the |
| 1244 | * temporary snapshot */ |
| 1245 | *child_flags &= ~BDRV_O_NATIVE_AIO; |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 1246 | } |
| 1247 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1248 | static void bdrv_backing_attach(BdrvChild *c) |
| 1249 | { |
| 1250 | BlockDriverState *parent = c->opaque; |
| 1251 | BlockDriverState *backing_hd = c->bs; |
| 1252 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1253 | GLOBAL_STATE_CODE(); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1254 | assert(!parent->backing_blocker); |
| 1255 | error_setg(&parent->backing_blocker, |
| 1256 | "node is used as backing hd of '%s'", |
| 1257 | bdrv_get_device_or_node_name(parent)); |
| 1258 | |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 1259 | bdrv_refresh_filename(backing_hd); |
| 1260 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1261 | parent->open_flags &= ~BDRV_O_NO_BACKING; |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1262 | |
| 1263 | bdrv_op_block_all(backing_hd, parent->backing_blocker); |
| 1264 | /* Otherwise we won't be able to commit or stream */ |
| 1265 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, |
| 1266 | parent->backing_blocker); |
| 1267 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, |
| 1268 | parent->backing_blocker); |
| 1269 | /* |
| 1270 | * We do backup in 3 ways: |
| 1271 | * 1. drive backup |
| 1272 | * The target bs is new opened, and the source is top BDS |
| 1273 | * 2. blockdev backup |
| 1274 | * Both the source and the target are top BDSes. |
| 1275 | * 3. internal backup(used for block replication) |
| 1276 | * Both the source and the target are backing file |
| 1277 | * |
| 1278 | * In case 1 and 2, neither the source nor the target is the backing file. |
| 1279 | * In case 3, we will block the top BDS, so there is only one block job |
| 1280 | * for the top BDS and its backing chain. |
| 1281 | */ |
| 1282 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, |
| 1283 | parent->backing_blocker); |
| 1284 | bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, |
| 1285 | parent->backing_blocker); |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1286 | } |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 1287 | |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1288 | static void bdrv_backing_detach(BdrvChild *c) |
| 1289 | { |
| 1290 | BlockDriverState *parent = c->opaque; |
| 1291 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1292 | GLOBAL_STATE_CODE(); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 1293 | assert(parent->backing_blocker); |
| 1294 | bdrv_op_unblock_all(c->bs, parent->backing_blocker); |
| 1295 | error_free(parent->backing_blocker); |
| 1296 | parent->backing_blocker = NULL; |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1297 | } |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 1298 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1299 | static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, |
| 1300 | const char *filename, Error **errp) |
| 1301 | { |
| 1302 | BlockDriverState *parent = c->opaque; |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1303 | bool read_only = bdrv_is_read_only(parent); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1304 | int ret; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1305 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1306 | |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1307 | if (read_only) { |
| 1308 | ret = bdrv_reopen_set_read_only(parent, false, errp); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 1309 | if (ret < 0) { |
| 1310 | return ret; |
| 1311 | } |
| 1312 | } |
| 1313 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1314 | ret = bdrv_change_backing_file(parent, filename, |
Eric Blake | e54ee1b | 2020-07-06 15:39:53 -0500 | [diff] [blame] | 1315 | base->drv ? base->drv->format_name : "", |
| 1316 | false); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1317 | if (ret < 0) { |
Kevin Wolf | 6473069 | 2017-11-06 17:52:58 +0100 | [diff] [blame] | 1318 | error_setg_errno(errp, -ret, "Could not update backing file link"); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1319 | } |
| 1320 | |
Alberto Garcia | e94d3db | 2018-11-12 16:00:34 +0200 | [diff] [blame] | 1321 | if (read_only) { |
| 1322 | bdrv_reopen_set_read_only(parent, true, NULL); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 1323 | } |
| 1324 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 1325 | return ret; |
| 1326 | } |
| 1327 | |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1328 | /* |
| 1329 | * Returns the options and flags that a generic child of a BDS should |
| 1330 | * get, based on the given options and flags for the parent BDS. |
| 1331 | */ |
Max Reitz | 00ff7ff | 2020-05-13 13:05:21 +0200 | [diff] [blame] | 1332 | static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format, |
| 1333 | int *child_flags, QDict *child_options, |
| 1334 | int parent_flags, QDict *parent_options) |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1335 | { |
| 1336 | int flags = parent_flags; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1337 | GLOBAL_STATE_CODE(); |
Max Reitz | fae8bd3 | 2020-05-13 13:05:20 +0200 | [diff] [blame] | 1338 | |
| 1339 | /* |
| 1340 | * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL. |
| 1341 | * Generally, the question to answer is: Should this child be |
| 1342 | * format-probed by default? |
| 1343 | */ |
| 1344 | |
| 1345 | /* |
| 1346 | * Pure and non-filtered data children of non-format nodes should |
| 1347 | * be probed by default (even when the node itself has BDRV_O_PROTOCOL |
| 1348 | * set). This only affects a very limited set of drivers (namely |
| 1349 | * quorum and blkverify when this comment was written). |
| 1350 | * Force-clear BDRV_O_PROTOCOL then. |
| 1351 | */ |
| 1352 | if (!parent_is_format && |
| 1353 | (role & BDRV_CHILD_DATA) && |
| 1354 | !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED))) |
| 1355 | { |
| 1356 | flags &= ~BDRV_O_PROTOCOL; |
| 1357 | } |
| 1358 | |
| 1359 | /* |
| 1360 | * All children of format nodes (except for COW children) and all |
| 1361 | * metadata children in general should never be format-probed. |
| 1362 | * Force-set BDRV_O_PROTOCOL then. |
| 1363 | */ |
| 1364 | if ((parent_is_format && !(role & BDRV_CHILD_COW)) || |
| 1365 | (role & BDRV_CHILD_METADATA)) |
| 1366 | { |
| 1367 | flags |= BDRV_O_PROTOCOL; |
| 1368 | } |
| 1369 | |
| 1370 | /* |
| 1371 | * If the cache mode isn't explicitly set, inherit direct and no-flush from |
| 1372 | * the parent. |
| 1373 | */ |
| 1374 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); |
| 1375 | qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); |
| 1376 | qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); |
| 1377 | |
| 1378 | if (role & BDRV_CHILD_COW) { |
| 1379 | /* backing files are opened read-only by default */ |
| 1380 | qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); |
| 1381 | qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off"); |
| 1382 | } else { |
| 1383 | /* Inherit the read-only option from the parent if it's not set */ |
| 1384 | qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); |
| 1385 | qdict_copy_default(child_options, parent_options, |
| 1386 | BDRV_OPT_AUTO_READ_ONLY); |
| 1387 | } |
| 1388 | |
| 1389 | /* |
| 1390 | * bdrv_co_pdiscard() respects unmap policy for the parent, so we |
| 1391 | * can default to enable it on lower layers regardless of the |
| 1392 | * parent option. |
| 1393 | */ |
| 1394 | qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); |
| 1395 | |
| 1396 | /* Clear flags that only apply to the top layer */ |
| 1397 | flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); |
| 1398 | |
| 1399 | if (role & BDRV_CHILD_METADATA) { |
| 1400 | flags &= ~BDRV_O_NO_IO; |
| 1401 | } |
| 1402 | if (role & BDRV_CHILD_COW) { |
| 1403 | flags &= ~BDRV_O_TEMPORARY; |
| 1404 | } |
| 1405 | |
| 1406 | *child_flags = flags; |
| 1407 | } |
| 1408 | |
Kevin Wolf | 303de47 | 2022-12-07 14:18:35 +0100 | [diff] [blame] | 1409 | static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child) |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1410 | { |
| 1411 | BlockDriverState *bs = child->opaque; |
| 1412 | |
Emanuele Giuseppe Esposito | 3f35f82 | 2022-12-07 14:18:33 +0100 | [diff] [blame] | 1413 | assert_bdrv_graph_writable(); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 1414 | QLIST_INSERT_HEAD(&bs->children, child, next); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1415 | if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) { |
| 1416 | /* |
| 1417 | * Here we handle filters and block/raw-format.c when it behave like |
| 1418 | * filter. They generally have a single PRIMARY child, which is also the |
| 1419 | * FILTERED child, and that they may have multiple more children, which |
| 1420 | * are neither PRIMARY nor FILTERED. And never we have a COW child here. |
| 1421 | * So bs->file will be the PRIMARY child, unless the PRIMARY child goes |
| 1422 | * into bs->backing on exceptional cases; and bs->backing will be |
| 1423 | * nothing else. |
| 1424 | */ |
| 1425 | assert(!(child->role & BDRV_CHILD_COW)); |
| 1426 | if (child->role & BDRV_CHILD_PRIMARY) { |
| 1427 | assert(child->role & BDRV_CHILD_FILTERED); |
| 1428 | assert(!bs->backing); |
| 1429 | assert(!bs->file); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 1430 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1431 | if (bs->drv->filtered_child_is_backing) { |
| 1432 | bs->backing = child; |
| 1433 | } else { |
| 1434 | bs->file = child; |
| 1435 | } |
| 1436 | } else { |
| 1437 | assert(!(child->role & BDRV_CHILD_FILTERED)); |
| 1438 | } |
| 1439 | } else if (child->role & BDRV_CHILD_COW) { |
| 1440 | assert(bs->drv->supports_backing); |
| 1441 | assert(!(child->role & BDRV_CHILD_PRIMARY)); |
| 1442 | assert(!bs->backing); |
| 1443 | bs->backing = child; |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1444 | bdrv_backing_attach(child); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1445 | } else if (child->role & BDRV_CHILD_PRIMARY) { |
| 1446 | assert(!bs->file); |
| 1447 | bs->file = child; |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1448 | } |
Max Reitz | ca2f123 | 2020-05-13 13:05:22 +0200 | [diff] [blame] | 1449 | } |
| 1450 | |
Kevin Wolf | 303de47 | 2022-12-07 14:18:35 +0100 | [diff] [blame] | 1451 | static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child) |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1452 | { |
| 1453 | BlockDriverState *bs = child->opaque; |
| 1454 | |
| 1455 | if (child->role & BDRV_CHILD_COW) { |
| 1456 | bdrv_backing_detach(child); |
| 1457 | } |
| 1458 | |
Emanuele Giuseppe Esposito | 3f35f82 | 2022-12-07 14:18:33 +0100 | [diff] [blame] | 1459 | assert_bdrv_graph_writable(); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 1460 | QLIST_REMOVE(child, next); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1461 | if (child == bs->backing) { |
| 1462 | assert(child != bs->file); |
| 1463 | bs->backing = NULL; |
| 1464 | } else if (child == bs->file) { |
| 1465 | bs->file = NULL; |
| 1466 | } |
Max Reitz | 48e0828 | 2020-05-13 13:05:23 +0200 | [diff] [blame] | 1467 | } |
| 1468 | |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1469 | static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base, |
| 1470 | const char *filename, Error **errp) |
| 1471 | { |
| 1472 | if (c->role & BDRV_CHILD_COW) { |
| 1473 | return bdrv_backing_update_filename(c, base, filename, errp); |
| 1474 | } |
| 1475 | return 0; |
| 1476 | } |
| 1477 | |
Vladimir Sementsov-Ogievskiy | fb62b58 | 2021-05-24 13:12:56 +0300 | [diff] [blame] | 1478 | AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c) |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1479 | { |
| 1480 | BlockDriverState *bs = c->opaque; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 1481 | IO_CODE(); |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1482 | |
| 1483 | return bdrv_get_aio_context(bs); |
| 1484 | } |
| 1485 | |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1486 | const BdrvChildClass child_of_bds = { |
| 1487 | .parent_is_bds = true, |
| 1488 | .get_parent_desc = bdrv_child_get_parent_desc, |
| 1489 | .inherit_options = bdrv_inherited_options, |
| 1490 | .drained_begin = bdrv_child_cb_drained_begin, |
| 1491 | .drained_poll = bdrv_child_cb_drained_poll, |
| 1492 | .drained_end = bdrv_child_cb_drained_end, |
| 1493 | .attach = bdrv_child_cb_attach, |
| 1494 | .detach = bdrv_child_cb_detach, |
| 1495 | .inactivate = bdrv_child_cb_inactivate, |
Emanuele Giuseppe Esposito | 27633e7 | 2022-10-25 04:49:47 -0400 | [diff] [blame] | 1496 | .change_aio_ctx = bdrv_child_cb_change_aio_ctx, |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1497 | .update_filename = bdrv_child_cb_update_filename, |
Vladimir Sementsov-Ogievskiy | fb62b58 | 2021-05-24 13:12:56 +0300 | [diff] [blame] | 1498 | .get_parent_aio_context = child_of_bds_get_parent_aio_context, |
Max Reitz | 4348355 | 2020-05-13 13:05:24 +0200 | [diff] [blame] | 1499 | }; |
| 1500 | |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1501 | AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c) |
| 1502 | { |
Hanna Reitz | d5f8d79 | 2022-11-07 16:13:19 +0100 | [diff] [blame] | 1503 | IO_CODE(); |
Vladimir Sementsov-Ogievskiy | 3ca1f32 | 2021-04-28 18:17:33 +0300 | [diff] [blame] | 1504 | return c->klass->get_parent_aio_context(c); |
| 1505 | } |
| 1506 | |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1507 | static int bdrv_open_flags(BlockDriverState *bs, int flags) |
| 1508 | { |
Kevin Wolf | 61de4c6 | 2016-03-18 17:46:45 +0100 | [diff] [blame] | 1509 | int open_flags = flags; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1510 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1511 | |
| 1512 | /* |
| 1513 | * Clear flags that are internal to the block layer before opening the |
| 1514 | * image. |
| 1515 | */ |
Kevin Wolf | 20cca27 | 2014-06-04 14:33:27 +0200 | [diff] [blame] | 1516 | open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1517 | |
Kevin Wolf | 7b27245 | 2012-11-12 17:05:39 +0100 | [diff] [blame] | 1518 | return open_flags; |
| 1519 | } |
| 1520 | |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1521 | static void update_flags_from_options(int *flags, QemuOpts *opts) |
| 1522 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1523 | GLOBAL_STATE_CODE(); |
| 1524 | |
Alberto Garcia | 2a3d433 | 2018-11-12 16:00:48 +0200 | [diff] [blame] | 1525 | *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1526 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1527 | 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] | 1528 | *flags |= BDRV_O_NO_FLUSH; |
| 1529 | } |
| 1530 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1531 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1532 | *flags |= BDRV_O_NOCACHE; |
| 1533 | } |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1534 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 1535 | if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) { |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1536 | *flags |= BDRV_O_RDWR; |
| 1537 | } |
| 1538 | |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1539 | if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) { |
| 1540 | *flags |= BDRV_O_AUTO_RDONLY; |
| 1541 | } |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1542 | } |
| 1543 | |
| 1544 | static void update_options_from_flags(QDict *options, int flags) |
| 1545 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1546 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1547 | if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1548 | qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1549 | } |
| 1550 | if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1551 | qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, |
| 1552 | flags & BDRV_O_NO_FLUSH); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1553 | } |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1554 | if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 1555 | qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1556 | } |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1557 | if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) { |
| 1558 | qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY, |
| 1559 | flags & BDRV_O_AUTO_RDONLY); |
| 1560 | } |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1561 | } |
| 1562 | |
Kevin Wolf | 636ea37 | 2014-01-24 14:11:52 +0100 | [diff] [blame] | 1563 | static void bdrv_assign_node_name(BlockDriverState *bs, |
| 1564 | const char *node_name, |
| 1565 | Error **errp) |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1566 | { |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1567 | char *gen_node_name = NULL; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1568 | GLOBAL_STATE_CODE(); |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1569 | |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1570 | if (!node_name) { |
| 1571 | node_name = gen_node_name = id_generate(ID_BLOCK); |
| 1572 | } else if (!id_wellformed(node_name)) { |
| 1573 | /* |
| 1574 | * Check for empty string or invalid characters, but not if it is |
| 1575 | * generated (generated names use characters not available to the user) |
| 1576 | */ |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 1577 | error_setg(errp, "Invalid node-name: '%s'", node_name); |
Kevin Wolf | 636ea37 | 2014-01-24 14:11:52 +0100 | [diff] [blame] | 1578 | return; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1579 | } |
| 1580 | |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1581 | /* takes care of avoiding namespaces collisions */ |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 1582 | if (blk_by_name(node_name)) { |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1583 | error_setg(errp, "node-name=%s is conflicting with a device id", |
| 1584 | node_name); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1585 | goto out; |
Benoît Canet | 0c5e94e | 2014-02-12 17:15:07 +0100 | [diff] [blame] | 1586 | } |
| 1587 | |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1588 | /* takes care of avoiding duplicates node names */ |
| 1589 | if (bdrv_find_node(node_name)) { |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 1590 | error_setg(errp, "Duplicate nodes with node-name='%s'", node_name); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1591 | goto out; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1592 | } |
| 1593 | |
Kevin Wolf | 824808d | 2018-07-04 13:28:29 +0200 | [diff] [blame] | 1594 | /* Make sure that the node name isn't truncated */ |
| 1595 | if (strlen(node_name) >= sizeof(bs->node_name)) { |
| 1596 | error_setg(errp, "Node name too long"); |
| 1597 | goto out; |
| 1598 | } |
| 1599 | |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1600 | /* copy node name into the bs and insert it into the graph list */ |
| 1601 | pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); |
| 1602 | QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 1603 | out: |
| 1604 | g_free(gen_node_name); |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1605 | } |
| 1606 | |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1607 | /* |
| 1608 | * The caller must always hold @bs AioContext lock, because this function calls |
| 1609 | * bdrv_refresh_total_sectors() which polls when called from non-coroutine |
| 1610 | * context. |
| 1611 | */ |
Kevin Wolf | 1a30b0f | 2023-05-04 13:57:38 +0200 | [diff] [blame] | 1612 | static int no_coroutine_fn GRAPH_UNLOCKED |
| 1613 | bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, const char *node_name, |
| 1614 | QDict *options, int open_flags, Error **errp) |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1615 | { |
| 1616 | Error *local_err = NULL; |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1617 | int i, ret; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 1618 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1619 | |
| 1620 | bdrv_assign_node_name(bs, node_name, &local_err); |
| 1621 | if (local_err) { |
| 1622 | error_propagate(errp, local_err); |
| 1623 | return -EINVAL; |
| 1624 | } |
| 1625 | |
| 1626 | bs->drv = drv; |
| 1627 | bs->opaque = g_malloc0(drv->instance_size); |
| 1628 | |
| 1629 | if (drv->bdrv_file_open) { |
| 1630 | assert(!drv->bdrv_needs_filename || bs->filename[0]); |
| 1631 | ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1632 | } else if (drv->bdrv_open) { |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1633 | ret = drv->bdrv_open(bs, options, open_flags, &local_err); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1634 | } else { |
| 1635 | ret = 0; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1636 | } |
| 1637 | |
| 1638 | if (ret < 0) { |
| 1639 | if (local_err) { |
| 1640 | error_propagate(errp, local_err); |
| 1641 | } else if (bs->filename[0]) { |
| 1642 | error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); |
| 1643 | } else { |
| 1644 | error_setg_errno(errp, -ret, "Could not open image"); |
| 1645 | } |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1646 | goto open_failed; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1647 | } |
| 1648 | |
Stefan Hajnoczi | e8b6535 | 2022-10-13 14:59:01 -0400 | [diff] [blame] | 1649 | assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK)); |
| 1650 | assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK)); |
| 1651 | |
| 1652 | /* |
| 1653 | * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves |
| 1654 | * drivers that pass read/write requests through to a child the trouble of |
| 1655 | * declaring support explicitly. |
| 1656 | * |
| 1657 | * Drivers must not propagate this flag accidentally when they initiate I/O |
| 1658 | * to a bounce buffer. That case should be rare though. |
| 1659 | */ |
| 1660 | bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF; |
| 1661 | bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF; |
| 1662 | |
Emanuele Giuseppe Esposito | c057960 | 2023-01-13 21:42:03 +0100 | [diff] [blame] | 1663 | ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1664 | if (ret < 0) { |
| 1665 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1666 | return ret; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1667 | } |
| 1668 | |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 1669 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 1670 | bdrv_refresh_limits(bs, NULL, &local_err); |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 1671 | bdrv_graph_rdunlock_main_loop(); |
| 1672 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1673 | if (local_err) { |
| 1674 | error_propagate(errp, local_err); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1675 | return -EINVAL; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1676 | } |
| 1677 | |
| 1678 | assert(bdrv_opt_mem_align(bs) != 0); |
| 1679 | assert(bdrv_min_mem_align(bs) != 0); |
| 1680 | assert(is_power_of_2(bs->bl.request_alignment)); |
| 1681 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1682 | for (i = 0; i < bs->quiesce_counter; i++) { |
Kevin Wolf | 5e8ac21 | 2022-11-18 18:40:58 +0100 | [diff] [blame] | 1683 | if (drv->bdrv_drain_begin) { |
| 1684 | drv->bdrv_drain_begin(bs); |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 1685 | } |
| 1686 | } |
| 1687 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1688 | return 0; |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1689 | open_failed: |
| 1690 | bs->drv = NULL; |
| 1691 | if (bs->file != NULL) { |
| 1692 | bdrv_unref_child(bs, bs->file); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 1693 | assert(!bs->file); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1694 | } |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1695 | g_free(bs->opaque); |
| 1696 | bs->opaque = NULL; |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1697 | return ret; |
| 1698 | } |
| 1699 | |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1700 | /* |
| 1701 | * Create and open a block node. |
| 1702 | * |
| 1703 | * @options is a QDict of options to pass to the block drivers, or NULL for an |
| 1704 | * empty set of options. The reference to the QDict belongs to the block layer |
| 1705 | * after the call (even on failure), so if the caller intends to reuse the |
| 1706 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
| 1707 | */ |
| 1708 | BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv, |
| 1709 | const char *node_name, |
| 1710 | QDict *options, int flags, |
| 1711 | Error **errp) |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1712 | { |
| 1713 | BlockDriverState *bs; |
| 1714 | int ret; |
| 1715 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 1716 | GLOBAL_STATE_CODE(); |
| 1717 | |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1718 | bs = bdrv_new(); |
| 1719 | bs->open_flags = flags; |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1720 | bs->options = options ?: qdict_new(); |
| 1721 | bs->explicit_options = qdict_clone_shallow(bs->options); |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1722 | bs->opaque = NULL; |
| 1723 | |
| 1724 | update_options_from_flags(bs->options, flags); |
| 1725 | |
| 1726 | ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); |
| 1727 | if (ret < 0) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1728 | qobject_unref(bs->explicit_options); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1729 | bs->explicit_options = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1730 | qobject_unref(bs->options); |
Manos Pitsidianakis | 180ca19 | 2017-07-14 17:35:48 +0300 | [diff] [blame] | 1731 | bs->options = NULL; |
Kevin Wolf | 680c7f9 | 2017-01-18 17:16:41 +0100 | [diff] [blame] | 1732 | bdrv_unref(bs); |
| 1733 | return NULL; |
| 1734 | } |
| 1735 | |
| 1736 | return bs; |
| 1737 | } |
| 1738 | |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1739 | /* Create and open a block node. */ |
| 1740 | BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, |
| 1741 | int flags, Error **errp) |
| 1742 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 1743 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 621d173 | 2021-09-20 14:55:34 +0300 | [diff] [blame] | 1744 | return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp); |
| 1745 | } |
| 1746 | |
Kevin Wolf | c5f3014 | 2016-10-06 11:33:17 +0200 | [diff] [blame] | 1747 | QemuOptsList bdrv_runtime_opts = { |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1748 | .name = "bdrv_common", |
| 1749 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), |
| 1750 | .desc = { |
| 1751 | { |
| 1752 | .name = "node-name", |
| 1753 | .type = QEMU_OPT_STRING, |
| 1754 | .help = "Node name of the block device node", |
| 1755 | }, |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1756 | { |
| 1757 | .name = "driver", |
| 1758 | .type = QEMU_OPT_STRING, |
| 1759 | .help = "Block driver to use for the node", |
| 1760 | }, |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1761 | { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 1762 | .name = BDRV_OPT_CACHE_DIRECT, |
| 1763 | .type = QEMU_OPT_BOOL, |
| 1764 | .help = "Bypass software writeback cache on the host", |
| 1765 | }, |
| 1766 | { |
| 1767 | .name = BDRV_OPT_CACHE_NO_FLUSH, |
| 1768 | .type = QEMU_OPT_BOOL, |
| 1769 | .help = "Ignore flush requests", |
| 1770 | }, |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 1771 | { |
| 1772 | .name = BDRV_OPT_READ_ONLY, |
| 1773 | .type = QEMU_OPT_BOOL, |
| 1774 | .help = "Node is opened in read-only mode", |
| 1775 | }, |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1776 | { |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 1777 | .name = BDRV_OPT_AUTO_READ_ONLY, |
| 1778 | .type = QEMU_OPT_BOOL, |
| 1779 | .help = "Node can become read-only if opening read-write fails", |
| 1780 | }, |
| 1781 | { |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1782 | .name = "detect-zeroes", |
| 1783 | .type = QEMU_OPT_STRING, |
| 1784 | .help = "try to optimize zero writes (off, on, unmap)", |
| 1785 | }, |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1786 | { |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 1787 | .name = BDRV_OPT_DISCARD, |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1788 | .type = QEMU_OPT_STRING, |
| 1789 | .help = "discard operation (ignore/off, unmap/on)", |
| 1790 | }, |
Fam Zheng | 5a9347c | 2017-05-03 00:35:37 +0800 | [diff] [blame] | 1791 | { |
| 1792 | .name = BDRV_OPT_FORCE_SHARE, |
| 1793 | .type = QEMU_OPT_BOOL, |
| 1794 | .help = "always accept other writers (default: off)", |
| 1795 | }, |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1796 | { /* end of list */ } |
| 1797 | }, |
| 1798 | }; |
| 1799 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 1800 | QemuOptsList bdrv_create_opts_simple = { |
| 1801 | .name = "simple-create-opts", |
| 1802 | .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head), |
Max Reitz | fd17146 | 2020-01-22 17:45:29 +0100 | [diff] [blame] | 1803 | .desc = { |
| 1804 | { |
| 1805 | .name = BLOCK_OPT_SIZE, |
| 1806 | .type = QEMU_OPT_SIZE, |
| 1807 | .help = "Virtual disk size" |
| 1808 | }, |
| 1809 | { |
| 1810 | .name = BLOCK_OPT_PREALLOC, |
| 1811 | .type = QEMU_OPT_STRING, |
| 1812 | .help = "Preallocation mode (allowed values: off)" |
| 1813 | }, |
| 1814 | { /* end of list */ } |
| 1815 | } |
| 1816 | }; |
| 1817 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 1818 | /* |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1819 | * Common part for opening disk images and files |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 1820 | * |
| 1821 | * Removes all processed options from *options. |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1822 | */ |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1823 | static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1824 | QDict *options, Error **errp) |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1825 | { |
| 1826 | int ret, open_flags; |
Kevin Wolf | 035fccd | 2013-04-09 14:34:19 +0200 | [diff] [blame] | 1827 | const char *filename; |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1828 | const char *driver_name = NULL; |
Benoît Canet | 6913c0c | 2014-01-23 21:31:33 +0100 | [diff] [blame] | 1829 | const char *node_name = NULL; |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1830 | const char *discard; |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1831 | QemuOpts *opts; |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1832 | BlockDriver *drv; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1833 | Error *local_err = NULL; |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1834 | bool ro; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1835 | |
Paolo Bonzini | 6405875 | 2012-05-08 16:51:49 +0200 | [diff] [blame] | 1836 | assert(bs->file == NULL); |
Kevin Wolf | 707ff82 | 2013-03-06 12:20:31 +0100 | [diff] [blame] | 1837 | assert(options != NULL && bs->options != options); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1838 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1839 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1840 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 1841 | if (!qemu_opts_absorb_qdict(opts, options, errp)) { |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1842 | ret = -EINVAL; |
| 1843 | goto fail_opts; |
| 1844 | } |
| 1845 | |
Alberto Garcia | 9b7e869 | 2016-09-15 17:53:01 +0300 | [diff] [blame] | 1846 | update_flags_from_options(&bs->open_flags, opts); |
| 1847 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1848 | driver_name = qemu_opt_get(opts, "driver"); |
| 1849 | drv = bdrv_find_format(driver_name); |
| 1850 | assert(drv != NULL); |
| 1851 | |
Fam Zheng | 5a9347c | 2017-05-03 00:35:37 +0800 | [diff] [blame] | 1852 | bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); |
| 1853 | |
| 1854 | if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { |
| 1855 | error_setg(errp, |
| 1856 | BDRV_OPT_FORCE_SHARE |
| 1857 | "=on can only be used with read-only images"); |
| 1858 | ret = -EINVAL; |
| 1859 | goto fail_opts; |
| 1860 | } |
| 1861 | |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1862 | if (file != NULL) { |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 1863 | bdrv_refresh_filename(blk_bs(file)); |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 1864 | filename = blk_bs(file)->filename; |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1865 | } else { |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 1866 | /* |
| 1867 | * Caution: while qdict_get_try_str() is fine, getting |
| 1868 | * non-string types would require more care. When @options |
| 1869 | * come from -blockdev or blockdev_add, its members are typed |
| 1870 | * according to the QAPI schema, but when they come from |
| 1871 | * -drive, they're all QString. |
| 1872 | */ |
Kevin Wolf | 4567367 | 2013-04-22 17:48:40 +0200 | [diff] [blame] | 1873 | filename = qdict_get_try_str(options, "filename"); |
| 1874 | } |
| 1875 | |
Max Reitz | 4a00824 | 2017-04-13 18:06:24 +0200 | [diff] [blame] | 1876 | if (drv->bdrv_needs_filename && (!filename || !filename[0])) { |
Kevin Wolf | 765003d | 2014-02-03 14:49:42 +0100 | [diff] [blame] | 1877 | error_setg(errp, "The '%s' block driver requires a file name", |
| 1878 | drv->format_name); |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1879 | ret = -EINVAL; |
| 1880 | goto fail_opts; |
| 1881 | } |
| 1882 | |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1883 | trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, |
| 1884 | drv->format_name); |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 1885 | |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1886 | ro = bdrv_is_read_only(bs); |
| 1887 | |
| 1888 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) { |
| 1889 | if (!ro && bdrv_is_whitelisted(drv, true)) { |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1890 | ret = bdrv_apply_auto_read_only(bs, NULL, NULL); |
| 1891 | } else { |
| 1892 | ret = -ENOTSUP; |
| 1893 | } |
| 1894 | if (ret < 0) { |
| 1895 | error_setg(errp, |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1896 | !ro && bdrv_is_whitelisted(drv, true) |
Kevin Wolf | 8be25de | 2019-01-22 13:15:31 +0100 | [diff] [blame] | 1897 | ? "Driver '%s' can only be used for read-only devices" |
| 1898 | : "Driver '%s' is not whitelisted", |
| 1899 | drv->format_name); |
| 1900 | goto fail_opts; |
| 1901 | } |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 1902 | } |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1903 | |
Paolo Bonzini | d3faa13 | 2017-06-05 14:38:50 +0200 | [diff] [blame] | 1904 | /* bdrv_new() and bdrv_close() make it so */ |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 1905 | assert(qatomic_read(&bs->copy_on_read) == 0); |
Paolo Bonzini | d3faa13 | 2017-06-05 14:38:50 +0200 | [diff] [blame] | 1906 | |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1907 | if (bs->open_flags & BDRV_O_COPY_ON_READ) { |
Vladimir Sementsov-Ogievskiy | 307261b | 2021-05-27 18:40:54 +0300 | [diff] [blame] | 1908 | if (!ro) { |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 1909 | bdrv_enable_copy_on_read(bs); |
| 1910 | } else { |
| 1911 | 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] | 1912 | ret = -EINVAL; |
| 1913 | goto fail_opts; |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 1914 | } |
Stefan Hajnoczi | 53fec9d | 2011-11-28 16:08:47 +0000 | [diff] [blame] | 1915 | } |
| 1916 | |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 1917 | discard = qemu_opt_get(opts, BDRV_OPT_DISCARD); |
Kevin Wolf | 818584a | 2016-09-12 18:03:18 +0200 | [diff] [blame] | 1918 | if (discard != NULL) { |
| 1919 | if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { |
| 1920 | error_setg(errp, "Invalid discard option"); |
| 1921 | ret = -EINVAL; |
| 1922 | goto fail_opts; |
| 1923 | } |
| 1924 | } |
| 1925 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 1926 | bs->detect_zeroes = |
| 1927 | bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err); |
| 1928 | if (local_err) { |
| 1929 | error_propagate(errp, local_err); |
| 1930 | ret = -EINVAL; |
| 1931 | goto fail_opts; |
Kevin Wolf | 692e01a | 2016-09-12 21:00:41 +0200 | [diff] [blame] | 1932 | } |
| 1933 | |
Kevin Wolf | c2ad1b0 | 2013-03-18 16:40:51 +0100 | [diff] [blame] | 1934 | if (filename != NULL) { |
| 1935 | pstrcpy(bs->filename, sizeof(bs->filename), filename); |
| 1936 | } else { |
| 1937 | bs->filename[0] = '\0'; |
| 1938 | } |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 1939 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1940 | |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 1941 | /* Open the image, either directly or using a protocol */ |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 1942 | open_flags = bdrv_open_flags(bs, bs->open_flags); |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1943 | node_name = qemu_opt_get(opts, "node-name"); |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 1944 | |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1945 | assert(!drv->bdrv_file_open || file == NULL); |
| 1946 | ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1947 | if (ret < 0) { |
Kevin Wolf | 01a5650 | 2017-01-18 15:51:56 +0100 | [diff] [blame] | 1948 | goto fail_opts; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1949 | } |
| 1950 | |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1951 | qemu_opts_del(opts); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1952 | return 0; |
| 1953 | |
Kevin Wolf | 18edf28 | 2015-04-07 17:12:56 +0200 | [diff] [blame] | 1954 | fail_opts: |
| 1955 | qemu_opts_del(opts); |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 1956 | return ret; |
| 1957 | } |
| 1958 | |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1959 | static QDict *parse_json_filename(const char *filename, Error **errp) |
| 1960 | { |
| 1961 | QObject *options_obj; |
| 1962 | QDict *options; |
| 1963 | int ret; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1964 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1965 | |
| 1966 | ret = strstart(filename, "json:", &filename); |
| 1967 | assert(ret); |
| 1968 | |
Markus Armbruster | 5577fff | 2017-02-28 22:26:59 +0100 | [diff] [blame] | 1969 | options_obj = qobject_from_json(filename, errp); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1970 | if (!options_obj) { |
Markus Armbruster | 5577fff | 2017-02-28 22:26:59 +0100 | [diff] [blame] | 1971 | error_prepend(errp, "Could not parse the JSON options: "); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1972 | return NULL; |
| 1973 | } |
| 1974 | |
Max Reitz | 7dc847e | 2018-02-24 16:40:29 +0100 | [diff] [blame] | 1975 | options = qobject_to(QDict, options_obj); |
Markus Armbruster | ca6b6e1 | 2017-02-17 21:38:18 +0100 | [diff] [blame] | 1976 | if (!options) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 1977 | qobject_unref(options_obj); |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1978 | error_setg(errp, "Invalid JSON object given"); |
| 1979 | return NULL; |
| 1980 | } |
| 1981 | |
Kevin Wolf | 5e5c4f6 | 2014-05-26 11:45:08 +0200 | [diff] [blame] | 1982 | qdict_flatten(options); |
| 1983 | |
| 1984 | return options; |
| 1985 | } |
| 1986 | |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 1987 | static void parse_json_protocol(QDict *options, const char **pfilename, |
| 1988 | Error **errp) |
| 1989 | { |
| 1990 | QDict *json_options; |
| 1991 | Error *local_err = NULL; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 1992 | GLOBAL_STATE_CODE(); |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 1993 | |
| 1994 | /* Parse json: pseudo-protocol */ |
| 1995 | if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { |
| 1996 | return; |
| 1997 | } |
| 1998 | |
| 1999 | json_options = parse_json_filename(*pfilename, &local_err); |
| 2000 | if (local_err) { |
| 2001 | error_propagate(errp, local_err); |
| 2002 | return; |
| 2003 | } |
| 2004 | |
| 2005 | /* Options given in the filename have lower priority than options |
| 2006 | * specified directly */ |
| 2007 | qdict_join(options, json_options, false); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 2008 | qobject_unref(json_options); |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2009 | *pfilename = NULL; |
| 2010 | } |
| 2011 | |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 2012 | /* |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2013 | * Fills in default options for opening images and converts the legacy |
| 2014 | * filename/flags pair to option QDict entries. |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2015 | * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a |
| 2016 | * block driver has been specified explicitly. |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2017 | */ |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 2018 | static int bdrv_fill_options(QDict **options, const char *filename, |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2019 | int *flags, Error **errp) |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2020 | { |
| 2021 | const char *drvname; |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2022 | bool protocol = *flags & BDRV_O_PROTOCOL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2023 | bool parse_filename = false; |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2024 | BlockDriver *drv = NULL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2025 | Error *local_err = NULL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2026 | |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2027 | GLOBAL_STATE_CODE(); |
| 2028 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 2029 | /* |
| 2030 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 2031 | * types would require more care. When @options come from |
| 2032 | * -blockdev or blockdev_add, its members are typed according to |
| 2033 | * the QAPI schema, but when they come from -drive, they're all |
| 2034 | * QString. |
| 2035 | */ |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2036 | drvname = qdict_get_try_str(*options, "driver"); |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2037 | if (drvname) { |
| 2038 | drv = bdrv_find_format(drvname); |
| 2039 | if (!drv) { |
| 2040 | error_setg(errp, "Unknown driver '%s'", drvname); |
| 2041 | return -ENOENT; |
| 2042 | } |
| 2043 | /* If the user has explicitly specified the driver, this choice should |
| 2044 | * override the BDRV_O_PROTOCOL flag */ |
| 2045 | protocol = drv->bdrv_file_open; |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 2046 | } |
| 2047 | |
| 2048 | if (protocol) { |
| 2049 | *flags |= BDRV_O_PROTOCOL; |
| 2050 | } else { |
| 2051 | *flags &= ~BDRV_O_PROTOCOL; |
| 2052 | } |
| 2053 | |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 2054 | /* Translate cache options from flags into options */ |
| 2055 | update_options_from_flags(*options, *flags); |
| 2056 | |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2057 | /* Fetch the file name from the options QDict if necessary */ |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 2058 | if (protocol && filename) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2059 | if (!qdict_haskey(*options, "filename")) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 2060 | qdict_put_str(*options, "filename", filename); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2061 | parse_filename = true; |
| 2062 | } else { |
| 2063 | error_setg(errp, "Can't specify 'file' and 'filename' options at " |
| 2064 | "the same time"); |
| 2065 | return -EINVAL; |
| 2066 | } |
| 2067 | } |
| 2068 | |
| 2069 | /* Find the right block driver */ |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 2070 | /* See cautionary note on accessing @options above */ |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2071 | filename = qdict_get_try_str(*options, "filename"); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2072 | |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2073 | if (!drvname && protocol) { |
| 2074 | if (filename) { |
| 2075 | drv = bdrv_find_protocol(filename, parse_filename, errp); |
| 2076 | if (!drv) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2077 | return -EINVAL; |
| 2078 | } |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2079 | |
| 2080 | drvname = drv->format_name; |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 2081 | qdict_put_str(*options, "driver", drvname); |
Max Reitz | 053e157 | 2015-08-26 19:47:51 +0200 | [diff] [blame] | 2082 | } else { |
| 2083 | error_setg(errp, "Must specify either driver or file"); |
| 2084 | return -EINVAL; |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2085 | } |
| 2086 | } |
| 2087 | |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 2088 | assert(drv || !protocol); |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2089 | |
| 2090 | /* Driver-specific filename parsing */ |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 2091 | if (drv && drv->bdrv_parse_filename && parse_filename) { |
Kevin Wolf | f54120f | 2014-05-26 11:09:59 +0200 | [diff] [blame] | 2092 | drv->bdrv_parse_filename(filename, *options, &local_err); |
| 2093 | if (local_err) { |
| 2094 | error_propagate(errp, local_err); |
| 2095 | return -EINVAL; |
| 2096 | } |
| 2097 | |
| 2098 | if (!drv->bdrv_needs_filename) { |
| 2099 | qdict_del(*options, "filename"); |
| 2100 | } |
| 2101 | } |
| 2102 | |
| 2103 | return 0; |
| 2104 | } |
| 2105 | |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2106 | typedef struct BlockReopenQueueEntry { |
| 2107 | bool prepared; |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 2108 | bool perms_checked; |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2109 | BDRVReopenState state; |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 2110 | QTAILQ_ENTRY(BlockReopenQueueEntry) entry; |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2111 | } BlockReopenQueueEntry; |
| 2112 | |
| 2113 | /* |
| 2114 | * Return the flags that @bs will have after the reopens in @q have |
| 2115 | * successfully completed. If @q is NULL (or @bs is not contained in @q), |
| 2116 | * return the current flags. |
| 2117 | */ |
| 2118 | static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) |
| 2119 | { |
| 2120 | BlockReopenQueueEntry *entry; |
| 2121 | |
| 2122 | if (q != NULL) { |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 2123 | QTAILQ_FOREACH(entry, q, entry) { |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2124 | if (entry->state.bs == bs) { |
| 2125 | return entry->state.flags; |
| 2126 | } |
| 2127 | } |
| 2128 | } |
| 2129 | |
| 2130 | return bs->open_flags; |
| 2131 | } |
| 2132 | |
| 2133 | /* Returns whether the image file can be written to after the reopen queue @q |
| 2134 | * has been successfully applied, or right now if @q is NULL. */ |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2135 | static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, |
| 2136 | BlockReopenQueue *q) |
Kevin Wolf | 148eb13 | 2017-09-14 14:32:04 +0200 | [diff] [blame] | 2137 | { |
| 2138 | int flags = bdrv_reopen_get_flags(q, bs); |
| 2139 | |
| 2140 | return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; |
| 2141 | } |
| 2142 | |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2143 | /* |
| 2144 | * Return whether the BDS can be written to. This is not necessarily |
| 2145 | * the same as !bdrv_is_read_only(bs), as inactivated images may not |
| 2146 | * be written to but do not count as read-only images. |
| 2147 | */ |
| 2148 | bool bdrv_is_writable(BlockDriverState *bs) |
| 2149 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 2150 | IO_CODE(); |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2151 | return bdrv_is_writable_after_reopen(bs, NULL); |
| 2152 | } |
| 2153 | |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2154 | static char *bdrv_child_user_desc(BdrvChild *c) |
| 2155 | { |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 2156 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | da261b6 | 2021-06-01 10:52:17 +0300 | [diff] [blame] | 2157 | return c->klass->get_parent_desc(c); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2158 | } |
| 2159 | |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2160 | /* |
| 2161 | * Check that @a allows everything that @b needs. @a and @b must reference same |
| 2162 | * child node. |
| 2163 | */ |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2164 | static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp) |
| 2165 | { |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2166 | const char *child_bs_name; |
| 2167 | g_autofree char *a_user = NULL; |
| 2168 | g_autofree char *b_user = NULL; |
| 2169 | g_autofree char *perms = NULL; |
| 2170 | |
| 2171 | assert(a->bs); |
| 2172 | assert(a->bs == b->bs); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2173 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2174 | |
| 2175 | if ((b->perm & a->shared_perm) == b->perm) { |
| 2176 | return true; |
| 2177 | } |
| 2178 | |
Vladimir Sementsov-Ogievskiy | 30ebb9a | 2021-06-01 10:52:18 +0300 | [diff] [blame] | 2179 | child_bs_name = bdrv_get_node_name(b->bs); |
| 2180 | a_user = bdrv_child_user_desc(a); |
| 2181 | b_user = bdrv_child_user_desc(b); |
| 2182 | perms = bdrv_perm_names(b->perm & ~a->shared_perm); |
| 2183 | |
| 2184 | error_setg(errp, "Permission conflict on node '%s': permissions '%s' are " |
| 2185 | "both required by %s (uses node '%s' as '%s' child) and " |
| 2186 | "unshared by %s (uses node '%s' as '%s' child).", |
| 2187 | child_bs_name, perms, |
| 2188 | b_user, child_bs_name, b->name, |
| 2189 | a_user, child_bs_name, a->name); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2190 | |
| 2191 | return false; |
| 2192 | } |
| 2193 | |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2194 | static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp) |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2195 | { |
| 2196 | BdrvChild *a, *b; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2197 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2198 | |
| 2199 | /* |
| 2200 | * During the loop we'll look at each pair twice. That's correct because |
| 2201 | * bdrv_a_allow_b() is asymmetric and we should check each pair in both |
| 2202 | * directions. |
| 2203 | */ |
| 2204 | QLIST_FOREACH(a, &bs->parents, next_parent) { |
| 2205 | QLIST_FOREACH(b, &bs->parents, next_parent) { |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2206 | if (a == b) { |
Vladimir Sementsov-Ogievskiy | 3bf416b | 2021-04-28 18:17:37 +0300 | [diff] [blame] | 2207 | continue; |
| 2208 | } |
| 2209 | |
| 2210 | if (!bdrv_a_allow_b(a, b, errp)) { |
| 2211 | return true; |
| 2212 | } |
| 2213 | } |
| 2214 | } |
| 2215 | |
| 2216 | return false; |
| 2217 | } |
| 2218 | |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2219 | static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2220 | BdrvChild *c, BdrvChildRole role, |
| 2221 | BlockReopenQueue *reopen_queue, |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2222 | uint64_t parent_perm, uint64_t parent_shared, |
| 2223 | uint64_t *nperm, uint64_t *nshared) |
| 2224 | { |
Alberto Garcia | 0b3ca76 | 2019-04-04 14:29:53 +0300 | [diff] [blame] | 2225 | assert(bs->drv && bs->drv->bdrv_child_perm); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2226 | GLOBAL_STATE_CODE(); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2227 | bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, |
Alberto Garcia | 0b3ca76 | 2019-04-04 14:29:53 +0300 | [diff] [blame] | 2228 | parent_perm, parent_shared, |
| 2229 | nperm, nshared); |
Kevin Wolf | e0995dc | 2017-09-14 12:47:11 +0200 | [diff] [blame] | 2230 | /* TODO Take force_share from reopen_queue */ |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2231 | if (child_bs && child_bs->force_share) { |
| 2232 | *nshared = BLK_PERM_ALL; |
| 2233 | } |
| 2234 | } |
| 2235 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2236 | /* |
| 2237 | * Adds the whole subtree of @bs (including @bs itself) to the @list (except for |
| 2238 | * nodes that are already in the @list, of course) so that final list is |
| 2239 | * topologically sorted. Return the result (GSList @list object is updated, so |
| 2240 | * don't use old reference after function call). |
| 2241 | * |
| 2242 | * On function start @list must be already topologically sorted and for any node |
| 2243 | * in the @list the whole subtree of the node must be in the @list as well. The |
| 2244 | * simplest way to satisfy this criteria: use only result of |
| 2245 | * bdrv_topological_dfs() or NULL as @list parameter. |
| 2246 | */ |
| 2247 | static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found, |
| 2248 | BlockDriverState *bs) |
| 2249 | { |
| 2250 | BdrvChild *child; |
| 2251 | g_autoptr(GHashTable) local_found = NULL; |
| 2252 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2253 | GLOBAL_STATE_CODE(); |
| 2254 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2255 | if (!found) { |
| 2256 | assert(!list); |
| 2257 | found = local_found = g_hash_table_new(NULL, NULL); |
| 2258 | } |
| 2259 | |
| 2260 | if (g_hash_table_contains(found, bs)) { |
| 2261 | return list; |
| 2262 | } |
| 2263 | g_hash_table_add(found, bs); |
| 2264 | |
| 2265 | QLIST_FOREACH(child, &bs->children, next) { |
| 2266 | list = bdrv_topological_dfs(list, found, child->bs); |
| 2267 | } |
| 2268 | |
| 2269 | return g_slist_prepend(list, bs); |
| 2270 | } |
| 2271 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2272 | typedef struct BdrvChildSetPermState { |
| 2273 | BdrvChild *child; |
| 2274 | uint64_t old_perm; |
| 2275 | uint64_t old_shared_perm; |
| 2276 | } BdrvChildSetPermState; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2277 | |
| 2278 | static void bdrv_child_set_perm_abort(void *opaque) |
| 2279 | { |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2280 | BdrvChildSetPermState *s = opaque; |
| 2281 | |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2282 | GLOBAL_STATE_CODE(); |
| 2283 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2284 | s->child->perm = s->old_perm; |
| 2285 | s->child->shared_perm = s->old_shared_perm; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2286 | } |
| 2287 | |
| 2288 | static TransactionActionDrv bdrv_child_set_pem_drv = { |
| 2289 | .abort = bdrv_child_set_perm_abort, |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2290 | .clean = g_free, |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2291 | }; |
| 2292 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2293 | static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, |
| 2294 | uint64_t shared, Transaction *tran) |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2295 | { |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2296 | BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2297 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2298 | |
| 2299 | *s = (BdrvChildSetPermState) { |
| 2300 | .child = c, |
| 2301 | .old_perm = c->perm, |
| 2302 | .old_shared_perm = c->shared_perm, |
| 2303 | }; |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2304 | |
| 2305 | c->perm = perm; |
| 2306 | c->shared_perm = shared; |
| 2307 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2308 | tran_add(tran, &bdrv_child_set_pem_drv, s); |
Vladimir Sementsov-Ogievskiy | b0defa8 | 2021-04-28 18:17:38 +0300 | [diff] [blame] | 2309 | } |
| 2310 | |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2311 | static void bdrv_drv_set_perm_commit(void *opaque) |
| 2312 | { |
| 2313 | BlockDriverState *bs = opaque; |
| 2314 | uint64_t cumulative_perms, cumulative_shared_perms; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2315 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2316 | |
| 2317 | if (bs->drv->bdrv_set_perm) { |
| 2318 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
| 2319 | &cumulative_shared_perms); |
| 2320 | bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); |
| 2321 | } |
| 2322 | } |
| 2323 | |
| 2324 | static void bdrv_drv_set_perm_abort(void *opaque) |
| 2325 | { |
| 2326 | BlockDriverState *bs = opaque; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2327 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2328 | |
| 2329 | if (bs->drv->bdrv_abort_perm_update) { |
| 2330 | bs->drv->bdrv_abort_perm_update(bs); |
| 2331 | } |
| 2332 | } |
| 2333 | |
| 2334 | TransactionActionDrv bdrv_drv_set_perm_drv = { |
| 2335 | .abort = bdrv_drv_set_perm_abort, |
| 2336 | .commit = bdrv_drv_set_perm_commit, |
| 2337 | }; |
| 2338 | |
| 2339 | static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, |
| 2340 | uint64_t shared_perm, Transaction *tran, |
| 2341 | Error **errp) |
| 2342 | { |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 2343 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 2513ef5 | 2021-04-28 18:17:42 +0300 | [diff] [blame] | 2344 | if (!bs->drv) { |
| 2345 | return 0; |
| 2346 | } |
| 2347 | |
| 2348 | if (bs->drv->bdrv_check_perm) { |
| 2349 | int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp); |
| 2350 | if (ret < 0) { |
| 2351 | return ret; |
| 2352 | } |
| 2353 | } |
| 2354 | |
| 2355 | if (tran) { |
| 2356 | tran_add(tran, &bdrv_drv_set_perm_drv, bs); |
| 2357 | } |
| 2358 | |
| 2359 | return 0; |
| 2360 | } |
| 2361 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2362 | typedef struct BdrvReplaceChildState { |
| 2363 | BdrvChild *child; |
| 2364 | BlockDriverState *old_bs; |
| 2365 | } BdrvReplaceChildState; |
| 2366 | |
| 2367 | static void bdrv_replace_child_commit(void *opaque) |
| 2368 | { |
| 2369 | BdrvReplaceChildState *s = opaque; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2370 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2371 | |
| 2372 | bdrv_unref(s->old_bs); |
| 2373 | } |
| 2374 | |
| 2375 | static void bdrv_replace_child_abort(void *opaque) |
| 2376 | { |
| 2377 | BdrvReplaceChildState *s = opaque; |
| 2378 | BlockDriverState *new_bs = s->child->bs; |
| 2379 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2380 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2381 | /* old_bs reference is transparently moved from @s to @s->child */ |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2382 | if (!s->child->bs) { |
| 2383 | /* |
| 2384 | * The parents were undrained when removing old_bs from the child. New |
| 2385 | * requests can't have been made, though, because the child was empty. |
| 2386 | * |
| 2387 | * TODO Make bdrv_replace_child_noperm() transactionable to avoid |
| 2388 | * undraining the parent in the first place. Once this is done, having |
| 2389 | * new_bs drained when calling bdrv_replace_child_tran() is not a |
| 2390 | * requirement any more. |
| 2391 | */ |
Kevin Wolf | 606ed75 | 2022-11-18 18:41:10 +0100 | [diff] [blame] | 2392 | bdrv_parent_drained_begin_single(s->child); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2393 | assert(!bdrv_parent_drained_poll_single(s->child)); |
| 2394 | } |
| 2395 | assert(s->child->quiesced_parent); |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 2396 | bdrv_replace_child_noperm(s->child, s->old_bs); |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2397 | bdrv_unref(new_bs); |
| 2398 | } |
| 2399 | |
| 2400 | static TransactionActionDrv bdrv_replace_child_drv = { |
| 2401 | .commit = bdrv_replace_child_commit, |
| 2402 | .abort = bdrv_replace_child_abort, |
| 2403 | .clean = g_free, |
| 2404 | }; |
| 2405 | |
| 2406 | /* |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2407 | * bdrv_replace_child_tran |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2408 | * |
| 2409 | * Note: real unref of old_bs is done only on commit. |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2410 | * |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2411 | * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be |
| 2412 | * kept drained until the transaction is completed. |
| 2413 | * |
Vladimir Sementsov-Ogievskiy | 4bf021d | 2021-06-10 14:25:44 +0300 | [diff] [blame] | 2414 | * The function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2415 | */ |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2416 | static void bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs, |
Vladimir Sementsov-Ogievskiy | 4eba825 | 2022-07-26 23:11:28 +0300 | [diff] [blame] | 2417 | Transaction *tran) |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2418 | { |
| 2419 | BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2420 | |
| 2421 | assert(child->quiesced_parent); |
| 2422 | assert(!new_bs || new_bs->quiesce_counter); |
| 2423 | |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2424 | *s = (BdrvReplaceChildState) { |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2425 | .child = child, |
| 2426 | .old_bs = child->bs, |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2427 | }; |
| 2428 | tran_add(tran, &bdrv_replace_child_drv, s); |
| 2429 | |
| 2430 | if (new_bs) { |
| 2431 | bdrv_ref(new_bs); |
| 2432 | } |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 2433 | bdrv_replace_child_noperm(child, new_bs); |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 2434 | /* old_bs reference is transparently moved from @child to @s */ |
Vladimir Sementsov-Ogievskiy | 0978623 | 2021-04-28 18:17:44 +0300 | [diff] [blame] | 2435 | } |
| 2436 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2437 | /* |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2438 | * Refresh permissions in @bs subtree. The function is intended to be called |
| 2439 | * after some graph modification that was done without permission update. |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2440 | */ |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2441 | static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q, |
| 2442 | Transaction *tran, Error **errp) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2443 | { |
| 2444 | BlockDriver *drv = bs->drv; |
| 2445 | BdrvChild *c; |
| 2446 | int ret; |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2447 | uint64_t cumulative_perms, cumulative_shared_perms; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2448 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2449 | |
| 2450 | bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2451 | |
| 2452 | /* Write permissions never work with read-only images */ |
| 2453 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && |
Max Reitz | cc02214 | 2018-06-06 21:37:00 +0200 | [diff] [blame] | 2454 | !bdrv_is_writable_after_reopen(bs, q)) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2455 | { |
Max Reitz | 481e0ee | 2019-05-15 22:15:00 +0200 | [diff] [blame] | 2456 | if (!bdrv_is_writable_after_reopen(bs, NULL)) { |
| 2457 | error_setg(errp, "Block node is read-only"); |
| 2458 | } else { |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2459 | error_setg(errp, "Read-only block node '%s' cannot support " |
| 2460 | "read-write users", bdrv_get_node_name(bs)); |
Max Reitz | 481e0ee | 2019-05-15 22:15:00 +0200 | [diff] [blame] | 2461 | } |
| 2462 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2463 | return -EPERM; |
| 2464 | } |
| 2465 | |
Kevin Wolf | 9c60a5d | 2020-07-16 16:26:00 +0200 | [diff] [blame] | 2466 | /* |
| 2467 | * Unaligned requests will automatically be aligned to bl.request_alignment |
| 2468 | * and without RESIZE we can't extend requests to write to space beyond the |
| 2469 | * end of the image, so it's required that the image size is aligned. |
| 2470 | */ |
| 2471 | if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && |
| 2472 | !(cumulative_perms & BLK_PERM_RESIZE)) |
| 2473 | { |
| 2474 | if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) { |
| 2475 | error_setg(errp, "Cannot get 'write' permission without 'resize': " |
| 2476 | "Image size is not a multiple of request " |
| 2477 | "alignment"); |
| 2478 | return -EPERM; |
| 2479 | } |
| 2480 | } |
| 2481 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2482 | /* Check this node */ |
| 2483 | if (!drv) { |
| 2484 | return 0; |
| 2485 | } |
| 2486 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2487 | 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] | 2488 | errp); |
| 2489 | if (ret < 0) { |
| 2490 | return ret; |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2491 | } |
| 2492 | |
Kevin Wolf | 78e421c | 2016-12-20 23:25:12 +0100 | [diff] [blame] | 2493 | /* Drivers that never have children can omit .bdrv_child_perm() */ |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2494 | if (!drv->bdrv_child_perm) { |
Kevin Wolf | 78e421c | 2016-12-20 23:25:12 +0100 | [diff] [blame] | 2495 | assert(QLIST_EMPTY(&bs->children)); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2496 | return 0; |
| 2497 | } |
| 2498 | |
| 2499 | /* Check all children */ |
| 2500 | QLIST_FOREACH(c, &bs->children, next) { |
| 2501 | uint64_t cur_perm, cur_shared; |
Max Reitz | 9eab154 | 2019-05-22 19:03:50 +0200 | [diff] [blame] | 2502 | |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2503 | bdrv_child_perm(bs, c->bs, c, c->role, q, |
Fam Zheng | ffd1a5a | 2017-05-03 00:35:38 +0800 | [diff] [blame] | 2504 | cumulative_perms, cumulative_shared_perms, |
| 2505 | &cur_perm, &cur_shared); |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2506 | bdrv_child_set_perm(c, cur_perm, cur_shared, tran); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2507 | } |
| 2508 | |
| 2509 | return 0; |
| 2510 | } |
| 2511 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2512 | /* |
| 2513 | * @list is a product of bdrv_topological_dfs() (may be called several times) - |
| 2514 | * a topologically sorted subgraph. |
| 2515 | */ |
| 2516 | static int bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q, |
| 2517 | Transaction *tran, Error **errp) |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2518 | { |
| 2519 | int ret; |
| 2520 | BlockDriverState *bs; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2521 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2522 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2523 | for ( ; list; list = list->next) { |
| 2524 | bs = list->data; |
| 2525 | |
Vladimir Sementsov-Ogievskiy | 9397c14 | 2021-04-28 18:17:53 +0300 | [diff] [blame] | 2526 | if (bdrv_parent_perms_conflict(bs, errp)) { |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2527 | return -EINVAL; |
| 2528 | } |
| 2529 | |
Vladimir Sementsov-Ogievskiy | c20555e | 2021-04-28 18:18:04 +0300 | [diff] [blame] | 2530 | ret = bdrv_node_refresh_perm(bs, q, tran, errp); |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2531 | if (ret < 0) { |
| 2532 | return ret; |
| 2533 | } |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2534 | } |
Vladimir Sementsov-Ogievskiy | 3ef45e0 | 2021-04-28 18:17:40 +0300 | [diff] [blame] | 2535 | |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 2536 | return 0; |
| 2537 | } |
| 2538 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2539 | /* |
| 2540 | * @list is any list of nodes. List is completed by all subtrees and |
| 2541 | * topologically sorted. It's not a problem if some node occurs in the @list |
| 2542 | * several times. |
| 2543 | */ |
| 2544 | static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, |
| 2545 | Transaction *tran, Error **errp) |
| 2546 | { |
| 2547 | g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL); |
| 2548 | g_autoptr(GSList) refresh_list = NULL; |
| 2549 | |
| 2550 | for ( ; list; list = list->next) { |
| 2551 | refresh_list = bdrv_topological_dfs(refresh_list, found, list->data); |
| 2552 | } |
| 2553 | |
| 2554 | return bdrv_do_refresh_perms(refresh_list, q, tran, errp); |
| 2555 | } |
| 2556 | |
Kevin Wolf | c7a0f2b | 2020-03-10 12:38:25 +0100 | [diff] [blame] | 2557 | void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, |
| 2558 | uint64_t *shared_perm) |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2559 | { |
| 2560 | BdrvChild *c; |
| 2561 | uint64_t cumulative_perms = 0; |
| 2562 | uint64_t cumulative_shared_perms = BLK_PERM_ALL; |
| 2563 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2564 | GLOBAL_STATE_CODE(); |
| 2565 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2566 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
| 2567 | cumulative_perms |= c->perm; |
| 2568 | cumulative_shared_perms &= c->shared_perm; |
| 2569 | } |
| 2570 | |
| 2571 | *perm = cumulative_perms; |
| 2572 | *shared_perm = cumulative_shared_perms; |
| 2573 | } |
| 2574 | |
Fam Zheng | 5176196 | 2017-05-03 00:35:36 +0800 | [diff] [blame] | 2575 | char *bdrv_perm_names(uint64_t perm) |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2576 | { |
| 2577 | struct perm_name { |
| 2578 | uint64_t perm; |
| 2579 | const char *name; |
| 2580 | } permissions[] = { |
| 2581 | { BLK_PERM_CONSISTENT_READ, "consistent read" }, |
| 2582 | { BLK_PERM_WRITE, "write" }, |
| 2583 | { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, |
| 2584 | { BLK_PERM_RESIZE, "resize" }, |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2585 | { 0, NULL } |
| 2586 | }; |
| 2587 | |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2588 | GString *result = g_string_sized_new(30); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2589 | struct perm_name *p; |
| 2590 | |
| 2591 | for (p = permissions; p->name; p++) { |
| 2592 | if (perm & p->perm) { |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2593 | if (result->len > 0) { |
| 2594 | g_string_append(result, ", "); |
| 2595 | } |
| 2596 | g_string_append(result, p->name); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2597 | } |
| 2598 | } |
| 2599 | |
Alberto Garcia | e2a7423 | 2020-01-10 18:15:18 +0100 | [diff] [blame] | 2600 | return g_string_free(result, FALSE); |
Kevin Wolf | d083319 | 2017-01-16 18:26:20 +0100 | [diff] [blame] | 2601 | } |
| 2602 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2603 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2604 | /* @tran is allowed to be NULL. In this case no rollback is possible */ |
| 2605 | static int bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran, |
| 2606 | Error **errp) |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2607 | { |
| 2608 | int ret; |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2609 | Transaction *local_tran = NULL; |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2610 | g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2611 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2612 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2613 | if (!tran) { |
| 2614 | tran = local_tran = tran_new(); |
| 2615 | } |
| 2616 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 2617 | ret = bdrv_do_refresh_perms(list, NULL, tran, errp); |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2618 | |
| 2619 | if (local_tran) { |
| 2620 | tran_finalize(local_tran, ret); |
| 2621 | } |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2622 | |
Vladimir Sementsov-Ogievskiy | b1d2bbe | 2021-04-28 18:17:43 +0300 | [diff] [blame] | 2623 | return ret; |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 2624 | } |
| 2625 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2626 | int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, |
| 2627 | Error **errp) |
| 2628 | { |
Max Reitz | 1046779 | 2019-05-22 19:03:51 +0200 | [diff] [blame] | 2629 | Error *local_err = NULL; |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2630 | Transaction *tran = tran_new(); |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2631 | int ret; |
| 2632 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2633 | GLOBAL_STATE_CODE(); |
| 2634 | |
Vladimir Sementsov-Ogievskiy | ecb776b | 2021-04-28 18:18:02 +0300 | [diff] [blame] | 2635 | bdrv_child_set_perm(c, perm, shared, tran); |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2636 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 2637 | ret = bdrv_refresh_perms(c->bs, tran, &local_err); |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2638 | |
| 2639 | tran_finalize(tran, ret); |
| 2640 | |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2641 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | 071b474 | 2020-11-06 15:42:41 +0300 | [diff] [blame] | 2642 | if ((perm & ~c->perm) || (c->shared_perm & ~shared)) { |
| 2643 | /* tighten permissions */ |
Max Reitz | 1046779 | 2019-05-22 19:03:51 +0200 | [diff] [blame] | 2644 | error_propagate(errp, local_err); |
| 2645 | } else { |
| 2646 | /* |
| 2647 | * Our caller may intend to only loosen restrictions and |
| 2648 | * does not expect this function to fail. Errors are not |
| 2649 | * fatal in such a case, so we can just hide them from our |
| 2650 | * caller. |
| 2651 | */ |
| 2652 | error_free(local_err); |
| 2653 | ret = 0; |
| 2654 | } |
Kevin Wolf | 33a610c | 2016-12-15 13:04:20 +0100 | [diff] [blame] | 2655 | } |
| 2656 | |
Vladimir Sementsov-Ogievskiy | 83928dc | 2021-04-28 18:17:39 +0300 | [diff] [blame] | 2657 | return ret; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 2658 | } |
| 2659 | |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2660 | int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp) |
| 2661 | { |
| 2662 | uint64_t parent_perms, parent_shared; |
| 2663 | uint64_t perms, shared; |
| 2664 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2665 | GLOBAL_STATE_CODE(); |
| 2666 | |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2667 | bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2668 | bdrv_child_perm(bs, c->bs, c, c->role, NULL, |
Max Reitz | bf8e925 | 2020-05-13 13:05:16 +0200 | [diff] [blame] | 2669 | parent_perms, parent_shared, &perms, &shared); |
Max Reitz | c1087f1 | 2019-05-22 19:03:46 +0200 | [diff] [blame] | 2670 | |
| 2671 | return bdrv_child_try_set_perm(c, perms, shared, errp); |
| 2672 | } |
| 2673 | |
Max Reitz | 87278af | 2020-05-13 13:05:40 +0200 | [diff] [blame] | 2674 | /* |
| 2675 | * Default implementation for .bdrv_child_perm() for block filters: |
| 2676 | * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the |
| 2677 | * filtered child. |
| 2678 | */ |
| 2679 | static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 87278af | 2020-05-13 13:05:40 +0200 | [diff] [blame] | 2680 | BdrvChildRole role, |
| 2681 | BlockReopenQueue *reopen_queue, |
| 2682 | uint64_t perm, uint64_t shared, |
| 2683 | uint64_t *nperm, uint64_t *nshared) |
Kevin Wolf | 6a1b9ee | 2016-12-15 11:27:32 +0100 | [diff] [blame] | 2684 | { |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2685 | GLOBAL_STATE_CODE(); |
Kevin Wolf | e444fa8 | 2019-08-02 15:59:41 +0200 | [diff] [blame] | 2686 | *nperm = perm & DEFAULT_PERM_PASSTHROUGH; |
| 2687 | *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; |
Kevin Wolf | 6a1b9ee | 2016-12-15 11:27:32 +0100 | [diff] [blame] | 2688 | } |
| 2689 | |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2690 | static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2691 | BdrvChildRole role, |
| 2692 | BlockReopenQueue *reopen_queue, |
| 2693 | uint64_t perm, uint64_t shared, |
| 2694 | uint64_t *nperm, uint64_t *nshared) |
| 2695 | { |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2696 | assert(role & BDRV_CHILD_COW); |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2697 | GLOBAL_STATE_CODE(); |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2698 | |
| 2699 | /* |
| 2700 | * We want consistent read from backing files if the parent needs it. |
| 2701 | * No other operations are performed on backing files. |
| 2702 | */ |
| 2703 | perm &= BLK_PERM_CONSISTENT_READ; |
| 2704 | |
| 2705 | /* |
| 2706 | * If the parent can deal with changing data, we're okay with a |
| 2707 | * writable and resizable backing file. |
| 2708 | * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? |
| 2709 | */ |
| 2710 | if (shared & BLK_PERM_WRITE) { |
| 2711 | shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2712 | } else { |
| 2713 | shared = 0; |
| 2714 | } |
| 2715 | |
Vladimir Sementsov-Ogievskiy | 64631f3 | 2021-09-02 12:37:54 +0300 | [diff] [blame] | 2716 | shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED; |
Max Reitz | 70082db | 2020-05-13 13:05:26 +0200 | [diff] [blame] | 2717 | |
| 2718 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 2719 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2720 | } |
| 2721 | |
| 2722 | *nperm = perm; |
| 2723 | *nshared = shared; |
| 2724 | } |
| 2725 | |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2726 | static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2727 | BdrvChildRole role, |
| 2728 | BlockReopenQueue *reopen_queue, |
| 2729 | uint64_t perm, uint64_t shared, |
| 2730 | uint64_t *nperm, uint64_t *nshared) |
| 2731 | { |
| 2732 | int flags; |
| 2733 | |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 2734 | GLOBAL_STATE_CODE(); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2735 | assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)); |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2736 | |
| 2737 | flags = bdrv_reopen_get_flags(reopen_queue, bs); |
| 2738 | |
| 2739 | /* |
| 2740 | * Apart from the modifications below, the same permissions are |
| 2741 | * forwarded and left alone as for filters |
| 2742 | */ |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2743 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2744 | perm, shared, &perm, &shared); |
| 2745 | |
Max Reitz | f889054 | 2020-05-13 13:05:28 +0200 | [diff] [blame] | 2746 | if (role & BDRV_CHILD_METADATA) { |
| 2747 | /* Format drivers may touch metadata even if the guest doesn't write */ |
| 2748 | if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { |
| 2749 | perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2750 | } |
| 2751 | |
| 2752 | /* |
| 2753 | * bs->file always needs to be consistent because of the |
| 2754 | * metadata. We can never allow other users to resize or write |
| 2755 | * to it. |
| 2756 | */ |
| 2757 | if (!(flags & BDRV_O_NO_IO)) { |
| 2758 | perm |= BLK_PERM_CONSISTENT_READ; |
| 2759 | } |
| 2760 | shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2761 | } |
| 2762 | |
Max Reitz | f889054 | 2020-05-13 13:05:28 +0200 | [diff] [blame] | 2763 | if (role & BDRV_CHILD_DATA) { |
| 2764 | /* |
| 2765 | * Technically, everything in this block is a subset of the |
| 2766 | * BDRV_CHILD_METADATA path taken above, and so this could |
| 2767 | * be an "else if" branch. However, that is not obvious, and |
| 2768 | * this function is not performance critical, therefore we let |
| 2769 | * this be an independent "if". |
| 2770 | */ |
| 2771 | |
| 2772 | /* |
| 2773 | * We cannot allow other users to resize the file because the |
| 2774 | * format driver might have some assumptions about the size |
| 2775 | * (e.g. because it is stored in metadata, or because the file |
| 2776 | * is split into fixed-size data files). |
| 2777 | */ |
| 2778 | shared &= ~BLK_PERM_RESIZE; |
| 2779 | |
| 2780 | /* |
| 2781 | * WRITE_UNCHANGED often cannot be performed as such on the |
| 2782 | * data file. For example, the qcow2 driver may still need to |
| 2783 | * write copied clusters on copy-on-read. |
| 2784 | */ |
| 2785 | if (perm & BLK_PERM_WRITE_UNCHANGED) { |
| 2786 | perm |= BLK_PERM_WRITE; |
| 2787 | } |
| 2788 | |
| 2789 | /* |
| 2790 | * If the data file is written to, the format driver may |
| 2791 | * expect to be able to resize it by writing beyond the EOF. |
| 2792 | */ |
| 2793 | if (perm & BLK_PERM_WRITE) { |
| 2794 | perm |= BLK_PERM_RESIZE; |
| 2795 | } |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2796 | } |
Max Reitz | 6f838a4 | 2020-05-13 13:05:27 +0200 | [diff] [blame] | 2797 | |
| 2798 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 2799 | shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; |
| 2800 | } |
| 2801 | |
| 2802 | *nperm = perm; |
| 2803 | *nshared = shared; |
| 2804 | } |
| 2805 | |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2806 | void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2807 | BdrvChildRole role, BlockReopenQueue *reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2808 | uint64_t perm, uint64_t shared, |
| 2809 | uint64_t *nperm, uint64_t *nshared) |
| 2810 | { |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 2811 | GLOBAL_STATE_CODE(); |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2812 | if (role & BDRV_CHILD_FILTERED) { |
| 2813 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | |
| 2814 | BDRV_CHILD_COW))); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2815 | bdrv_filter_default_perms(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2816 | perm, shared, nperm, nshared); |
| 2817 | } else if (role & BDRV_CHILD_COW) { |
| 2818 | assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA))); |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2819 | bdrv_default_perms_for_cow(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2820 | perm, shared, nperm, nshared); |
| 2821 | } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) { |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 2822 | bdrv_default_perms_for_storage(bs, c, role, reopen_queue, |
Max Reitz | 2519f54 | 2020-05-13 13:05:29 +0200 | [diff] [blame] | 2823 | perm, shared, nperm, nshared); |
| 2824 | } else { |
| 2825 | g_assert_not_reached(); |
| 2826 | } |
| 2827 | } |
| 2828 | |
Max Reitz | 7b1d9c4 | 2019-11-08 13:34:51 +0100 | [diff] [blame] | 2829 | uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm) |
| 2830 | { |
| 2831 | static const uint64_t permissions[] = { |
| 2832 | [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ, |
| 2833 | [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE, |
| 2834 | [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED, |
| 2835 | [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE, |
Max Reitz | 7b1d9c4 | 2019-11-08 13:34:51 +0100 | [diff] [blame] | 2836 | }; |
| 2837 | |
| 2838 | QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX); |
| 2839 | QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1); |
| 2840 | |
| 2841 | assert(qapi_perm < BLOCK_PERMISSION__MAX); |
| 2842 | |
| 2843 | return permissions[qapi_perm]; |
| 2844 | } |
| 2845 | |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2846 | /* |
| 2847 | * Replaces the node that a BdrvChild points to without updating permissions. |
| 2848 | * |
| 2849 | * If @new_bs is non-NULL, the parent of @child must already be drained through |
| 2850 | * @child. |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2851 | */ |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 2852 | static void bdrv_replace_child_noperm(BdrvChild *child, |
Vladimir Sementsov-Ogievskiy | 4eba825 | 2022-07-26 23:11:28 +0300 | [diff] [blame] | 2853 | BlockDriverState *new_bs) |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2854 | { |
| 2855 | BlockDriverState *old_bs = child->bs; |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2856 | int new_bs_quiesce_counter; |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2857 | |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 2858 | assert(!child->frozen); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2859 | |
| 2860 | /* |
| 2861 | * If we want to change the BdrvChild to point to a drained node as its new |
| 2862 | * child->bs, we need to make sure that its new parent is drained, too. In |
| 2863 | * other words, either child->quiesce_parent must already be true or we must |
| 2864 | * be able to set it and keep the parent's quiesce_counter consistent with |
| 2865 | * that, but without polling or starting new requests (this function |
| 2866 | * guarantees that it doesn't poll, and starting new requests would be |
| 2867 | * against the invariants of drain sections). |
| 2868 | * |
| 2869 | * To keep things simple, we pick the first option (child->quiesce_parent |
| 2870 | * must already be true). We also generalise the rule a bit to make it |
| 2871 | * easier to verify in callers and more likely to be covered in test cases: |
| 2872 | * The parent must be quiesced through this child even if new_bs isn't |
| 2873 | * currently drained. |
| 2874 | * |
| 2875 | * The only exception is for callers that always pass new_bs == NULL. In |
| 2876 | * this case, we obviously never need to consider the case of a drained |
| 2877 | * new_bs, so we can keep the callers simpler by allowing them not to drain |
| 2878 | * the parent. |
| 2879 | */ |
| 2880 | assert(!new_bs || child->quiesced_parent); |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 2881 | assert(old_bs != new_bs); |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 2882 | GLOBAL_STATE_CODE(); |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 2883 | |
Fam Zheng | bb2614e | 2017-04-07 14:54:10 +0800 | [diff] [blame] | 2884 | if (old_bs && new_bs) { |
| 2885 | assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); |
| 2886 | } |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2887 | |
Emanuele Giuseppe Esposito | 2931250 | 2022-12-07 14:18:31 +0100 | [diff] [blame] | 2888 | /* TODO Pull this up into the callers to avoid polling here */ |
| 2889 | bdrv_graph_wrlock(); |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2890 | if (old_bs) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2891 | if (child->klass->detach) { |
| 2892 | child->klass->detach(child); |
Kevin Wolf | d736f11 | 2017-12-18 16:05:48 +0100 | [diff] [blame] | 2893 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2894 | QLIST_REMOVE(child, next_parent); |
| 2895 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2896 | |
| 2897 | child->bs = new_bs; |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 2898 | |
| 2899 | if (new_bs) { |
| 2900 | QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 2901 | if (child->klass->attach) { |
| 2902 | child->klass->attach(child); |
Kevin Wolf | db95dbb | 2017-02-08 11:28:52 +0100 | [diff] [blame] | 2903 | } |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 2904 | } |
Emanuele Giuseppe Esposito | 2931250 | 2022-12-07 14:18:31 +0100 | [diff] [blame] | 2905 | bdrv_graph_wrunlock(); |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2906 | |
| 2907 | /* |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 2908 | * If the parent was drained through this BdrvChild previously, but new_bs |
| 2909 | * is not drained, allow requests to come in only after the new node has |
| 2910 | * been attached. |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2911 | */ |
Kevin Wolf | 57e05be | 2022-11-18 18:41:06 +0100 | [diff] [blame] | 2912 | new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0); |
| 2913 | if (!new_bs_quiesce_counter && child->quiesced_parent) { |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2914 | bdrv_parent_drained_end_single(child); |
Max Reitz | debc292 | 2019-07-22 15:33:44 +0200 | [diff] [blame] | 2915 | } |
Kevin Wolf | e9740bc | 2016-05-23 15:52:26 +0200 | [diff] [blame] | 2916 | } |
| 2917 | |
Hanna Reitz | 04c9c3a | 2021-11-15 15:53:59 +0100 | [diff] [blame] | 2918 | /** |
| 2919 | * Free the given @child. |
| 2920 | * |
| 2921 | * The child must be empty (i.e. `child->bs == NULL`) and it must be |
| 2922 | * unused (i.e. not in a children list). |
| 2923 | */ |
| 2924 | static void bdrv_child_free(BdrvChild *child) |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2925 | { |
| 2926 | assert(!child->bs); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2927 | GLOBAL_STATE_CODE(); |
Hanna Reitz | a225369 | 2021-11-15 15:53:58 +0100 | [diff] [blame] | 2928 | assert(!child->next.le_prev); /* not in children list */ |
Hanna Reitz | 04c9c3a | 2021-11-15 15:53:59 +0100 | [diff] [blame] | 2929 | |
| 2930 | g_free(child->name); |
| 2931 | g_free(child); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2932 | } |
| 2933 | |
| 2934 | typedef struct BdrvAttachChildCommonState { |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 2935 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2936 | AioContext *old_parent_ctx; |
| 2937 | AioContext *old_child_ctx; |
| 2938 | } BdrvAttachChildCommonState; |
| 2939 | |
| 2940 | static void bdrv_attach_child_common_abort(void *opaque) |
| 2941 | { |
| 2942 | BdrvAttachChildCommonState *s = opaque; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 2943 | BlockDriverState *bs = s->child->bs; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2944 | |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 2945 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 2946 | bdrv_replace_child_noperm(s->child, NULL); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2947 | |
| 2948 | if (bdrv_get_aio_context(bs) != s->old_child_ctx) { |
Emanuele Giuseppe Esposito | 142e690 | 2022-10-25 04:49:52 -0400 | [diff] [blame] | 2949 | 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] | 2950 | } |
| 2951 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 2952 | 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] | 2953 | Transaction *tran; |
| 2954 | GHashTable *visited; |
| 2955 | bool ret; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2956 | |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 2957 | tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2958 | |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 2959 | /* No need to visit `child`, because it has been detached already */ |
| 2960 | visited = g_hash_table_new(NULL, NULL); |
| 2961 | ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx, |
| 2962 | visited, tran, &error_abort); |
| 2963 | g_hash_table_destroy(visited); |
| 2964 | |
| 2965 | /* transaction is supposed to always succeed */ |
| 2966 | assert(ret == true); |
| 2967 | tran_commit(tran); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2968 | } |
| 2969 | |
| 2970 | bdrv_unref(bs); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 2971 | bdrv_child_free(s->child); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2972 | } |
| 2973 | |
| 2974 | static TransactionActionDrv bdrv_attach_child_common_drv = { |
| 2975 | .abort = bdrv_attach_child_common_abort, |
| 2976 | .clean = g_free, |
| 2977 | }; |
| 2978 | |
| 2979 | /* |
| 2980 | * 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] | 2981 | * |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 2982 | * Function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 2983 | * |
| 2984 | * Returns new created child. |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2985 | */ |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 2986 | static BdrvChild *bdrv_attach_child_common(BlockDriverState *child_bs, |
| 2987 | const char *child_name, |
| 2988 | const BdrvChildClass *child_class, |
| 2989 | BdrvChildRole child_role, |
| 2990 | uint64_t perm, uint64_t shared_perm, |
| 2991 | void *opaque, |
| 2992 | Transaction *tran, Error **errp) |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 2993 | { |
| 2994 | BdrvChild *new_child; |
| 2995 | AioContext *parent_ctx; |
| 2996 | AioContext *child_ctx = bdrv_get_aio_context(child_bs); |
| 2997 | |
Vladimir Sementsov-Ogievskiy | da261b6 | 2021-06-01 10:52:17 +0300 | [diff] [blame] | 2998 | assert(child_class->get_parent_desc); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 2999 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3000 | |
| 3001 | new_child = g_new(BdrvChild, 1); |
| 3002 | *new_child = (BdrvChild) { |
| 3003 | .bs = NULL, |
| 3004 | .name = g_strdup(child_name), |
| 3005 | .klass = child_class, |
| 3006 | .role = child_role, |
| 3007 | .perm = perm, |
| 3008 | .shared_perm = shared_perm, |
| 3009 | .opaque = opaque, |
| 3010 | }; |
| 3011 | |
| 3012 | /* |
| 3013 | * If the AioContexts don't match, first try to move the subtree of |
| 3014 | * child_bs into the AioContext of the new parent. If this doesn't work, |
| 3015 | * try moving the parent into the AioContext of child_bs instead. |
| 3016 | */ |
| 3017 | parent_ctx = bdrv_child_get_parent_aio_context(new_child); |
| 3018 | if (child_ctx != parent_ctx) { |
| 3019 | Error *local_err = NULL; |
Emanuele Giuseppe Esposito | 142e690 | 2022-10-25 04:49:52 -0400 | [diff] [blame] | 3020 | int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL, |
| 3021 | &local_err); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3022 | |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3023 | if (ret < 0 && child_class->change_aio_ctx) { |
| 3024 | Transaction *tran = tran_new(); |
| 3025 | GHashTable *visited = g_hash_table_new(NULL, NULL); |
| 3026 | bool ret_child; |
| 3027 | |
| 3028 | g_hash_table_add(visited, new_child); |
| 3029 | ret_child = child_class->change_aio_ctx(new_child, child_ctx, |
| 3030 | visited, tran, NULL); |
| 3031 | if (ret_child == true) { |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3032 | error_free(local_err); |
| 3033 | ret = 0; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3034 | } |
Emanuele Giuseppe Esposito | f8be48a | 2022-10-25 04:49:49 -0400 | [diff] [blame] | 3035 | tran_finalize(tran, ret_child == true ? 0 : -1); |
| 3036 | g_hash_table_destroy(visited); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3037 | } |
| 3038 | |
| 3039 | if (ret < 0) { |
| 3040 | error_propagate(errp, local_err); |
Hanna Reitz | 04c9c3a | 2021-11-15 15:53:59 +0100 | [diff] [blame] | 3041 | bdrv_child_free(new_child); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3042 | return NULL; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3043 | } |
| 3044 | } |
| 3045 | |
| 3046 | bdrv_ref(child_bs); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 3047 | /* |
| 3048 | * Let every new BdrvChild start with a drained parent. Inserting the child |
| 3049 | * in the graph with bdrv_replace_child_noperm() will undrain it if |
| 3050 | * @child_bs is not drained. |
| 3051 | * |
| 3052 | * The child was only just created and is not yet visible in global state |
| 3053 | * until bdrv_replace_child_noperm() inserts it into the graph, so nobody |
| 3054 | * could have sent requests and polling is not necessary. |
| 3055 | * |
| 3056 | * Note that this means that the parent isn't fully drained yet, we only |
| 3057 | * stop new requests from coming in. This is fine, we don't care about the |
| 3058 | * old requests here, they are not for this child. If another place enters a |
| 3059 | * drain section for the same parent, but wants it to be fully quiesced, it |
| 3060 | * will not run most of the the code in .drained_begin() again (which is not |
| 3061 | * a problem, we already did this), but it will still poll until the parent |
| 3062 | * is fully quiesced, so it will not be negatively affected either. |
| 3063 | */ |
Kevin Wolf | 606ed75 | 2022-11-18 18:41:10 +0100 | [diff] [blame] | 3064 | bdrv_parent_drained_begin_single(new_child); |
Vladimir Sementsov-Ogievskiy | 544acc7 | 2022-07-26 23:11:31 +0300 | [diff] [blame] | 3065 | bdrv_replace_child_noperm(new_child, child_bs); |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3066 | |
| 3067 | BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1); |
| 3068 | *s = (BdrvAttachChildCommonState) { |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3069 | .child = new_child, |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3070 | .old_parent_ctx = parent_ctx, |
| 3071 | .old_child_ctx = child_ctx, |
| 3072 | }; |
| 3073 | tran_add(tran, &bdrv_attach_child_common_drv, s); |
| 3074 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3075 | return new_child; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3076 | } |
| 3077 | |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3078 | /* |
Vladimir Sementsov-Ogievskiy | 7ec390d | 2021-06-10 14:25:45 +0300 | [diff] [blame] | 3079 | * Function doesn't update permissions, caller is responsible for this. |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3080 | */ |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3081 | static BdrvChild *bdrv_attach_child_noperm(BlockDriverState *parent_bs, |
| 3082 | BlockDriverState *child_bs, |
| 3083 | const char *child_name, |
| 3084 | const BdrvChildClass *child_class, |
| 3085 | BdrvChildRole child_role, |
| 3086 | Transaction *tran, |
| 3087 | Error **errp) |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3088 | { |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3089 | uint64_t perm, shared_perm; |
| 3090 | |
| 3091 | assert(parent_bs->drv); |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3092 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3093 | |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 3094 | if (bdrv_recurse_has_child(child_bs, parent_bs)) { |
| 3095 | error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle", |
| 3096 | child_bs->node_name, child_name, parent_bs->node_name); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3097 | return NULL; |
Kevin Wolf | bfb8aa6 | 2021-10-18 15:47:14 +0200 | [diff] [blame] | 3098 | } |
| 3099 | |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3100 | bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); |
| 3101 | bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, |
| 3102 | perm, shared_perm, &perm, &shared_perm); |
| 3103 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3104 | return bdrv_attach_child_common(child_bs, child_name, child_class, |
| 3105 | child_role, perm, shared_perm, parent_bs, |
| 3106 | tran, errp); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3107 | } |
| 3108 | |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3109 | /* |
| 3110 | * This function steals the reference to child_bs from the caller. |
| 3111 | * That reference is later dropped by bdrv_root_unref_child(). |
| 3112 | * |
| 3113 | * On failure NULL is returned, errp is set and the reference to |
| 3114 | * child_bs is also dropped. |
Kevin Wolf | 132ada8 | 2019-04-24 17:41:46 +0200 | [diff] [blame] | 3115 | * |
| 3116 | * The caller must hold the AioContext lock @child_bs, but not that of @ctx |
| 3117 | * (unless @child_bs is already in @ctx). |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3118 | */ |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3119 | BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, |
| 3120 | const char *child_name, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3121 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3122 | BdrvChildRole child_role, |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3123 | uint64_t perm, uint64_t shared_perm, |
| 3124 | void *opaque, Error **errp) |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3125 | { |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3126 | int ret; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3127 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3128 | Transaction *tran = tran_new(); |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3129 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 3130 | GLOBAL_STATE_CODE(); |
| 3131 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3132 | child = bdrv_attach_child_common(child_bs, child_name, child_class, |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3133 | child_role, perm, shared_perm, opaque, |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3134 | tran, errp); |
| 3135 | if (!child) { |
| 3136 | ret = -EINVAL; |
Kevin Wolf | e878bb1 | 2021-05-03 13:05:54 +0200 | [diff] [blame] | 3137 | goto out; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3138 | } |
| 3139 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3140 | ret = bdrv_refresh_perms(child_bs, tran, errp); |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3141 | |
Kevin Wolf | e878bb1 | 2021-05-03 13:05:54 +0200 | [diff] [blame] | 3142 | out: |
| 3143 | tran_finalize(tran, ret); |
Vladimir Sementsov-Ogievskiy | f8d2ad7 | 2021-06-01 10:52:13 +0300 | [diff] [blame] | 3144 | |
Vladimir Sementsov-Ogievskiy | 548a74c | 2021-04-28 18:17:46 +0300 | [diff] [blame] | 3145 | bdrv_unref(child_bs); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3146 | |
| 3147 | return ret < 0 ? NULL : child; |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3148 | } |
| 3149 | |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3150 | /* |
| 3151 | * This function transfers the reference to child_bs from the caller |
| 3152 | * to parent_bs. That reference is later dropped by parent_bs on |
| 3153 | * bdrv_close() or if someone calls bdrv_unref_child(). |
| 3154 | * |
| 3155 | * On failure NULL is returned, errp is set and the reference to |
| 3156 | * child_bs is also dropped. |
Kevin Wolf | 132ada8 | 2019-04-24 17:41:46 +0200 | [diff] [blame] | 3157 | * |
| 3158 | * If @parent_bs and @child_bs are in different AioContexts, the caller must |
| 3159 | * hold the AioContext lock for @child_bs, but not for @parent_bs. |
Alberto Garcia | b441dc7 | 2019-05-13 16:46:18 +0300 | [diff] [blame] | 3160 | */ |
Wen Congyang | 98292c6 | 2016-05-10 15:36:38 +0800 | [diff] [blame] | 3161 | BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, |
| 3162 | BlockDriverState *child_bs, |
| 3163 | const char *child_name, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3164 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3165 | BdrvChildRole child_role, |
Kevin Wolf | 8b2ff52 | 2016-12-20 22:21:17 +0100 | [diff] [blame] | 3166 | Error **errp) |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3167 | { |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3168 | int ret; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3169 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3170 | Transaction *tran = tran_new(); |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3171 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3172 | GLOBAL_STATE_CODE(); |
| 3173 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3174 | child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, |
| 3175 | child_class, child_role, tran, errp); |
| 3176 | if (!child) { |
| 3177 | ret = -EINVAL; |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3178 | goto out; |
Kevin Wolf | d5e6f43 | 2016-12-14 17:24:36 +0100 | [diff] [blame] | 3179 | } |
| 3180 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3181 | ret = bdrv_refresh_perms(parent_bs, tran, errp); |
Vladimir Sementsov-Ogievskiy | aa5a04c | 2021-04-28 18:17:47 +0300 | [diff] [blame] | 3182 | if (ret < 0) { |
| 3183 | goto out; |
| 3184 | } |
| 3185 | |
| 3186 | out: |
| 3187 | tran_finalize(tran, ret); |
| 3188 | |
| 3189 | bdrv_unref(child_bs); |
| 3190 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3191 | return ret < 0 ? NULL : child; |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3192 | } |
| 3193 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 3194 | /* Callers must ensure that child->frozen is false. */ |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3195 | void bdrv_root_unref_child(BdrvChild *child) |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3196 | { |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3197 | BlockDriverState *child_bs = child->bs; |
Kevin Wolf | 779020c | 2015-10-13 14:09:44 +0200 | [diff] [blame] | 3198 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3199 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3200 | bdrv_replace_child_noperm(child, NULL); |
| 3201 | bdrv_child_free(child); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3202 | |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3203 | if (child_bs) { |
| 3204 | /* |
| 3205 | * Update permissions for old node. We're just taking a parent away, so |
| 3206 | * we're loosening restrictions. Errors of permission update are not |
| 3207 | * fatal in this case, ignore them. |
| 3208 | */ |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3209 | bdrv_refresh_perms(child_bs, NULL, NULL); |
Vladimir Sementsov-Ogievskiy | 00eb93b | 2022-11-07 19:35:55 +0300 | [diff] [blame] | 3210 | |
| 3211 | /* |
| 3212 | * When the parent requiring a non-default AioContext is removed, the |
| 3213 | * node moves back to the main AioContext |
| 3214 | */ |
| 3215 | bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL, |
| 3216 | NULL); |
| 3217 | } |
| 3218 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3219 | bdrv_unref(child_bs); |
| 3220 | } |
| 3221 | |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3222 | typedef struct BdrvSetInheritsFrom { |
| 3223 | BlockDriverState *bs; |
| 3224 | BlockDriverState *old_inherits_from; |
| 3225 | } BdrvSetInheritsFrom; |
| 3226 | |
| 3227 | static void bdrv_set_inherits_from_abort(void *opaque) |
| 3228 | { |
| 3229 | BdrvSetInheritsFrom *s = opaque; |
| 3230 | |
| 3231 | s->bs->inherits_from = s->old_inherits_from; |
| 3232 | } |
| 3233 | |
| 3234 | static TransactionActionDrv bdrv_set_inherits_from_drv = { |
| 3235 | .abort = bdrv_set_inherits_from_abort, |
| 3236 | .clean = g_free, |
| 3237 | }; |
| 3238 | |
| 3239 | /* @tran is allowed to be NULL. In this case no rollback is possible */ |
| 3240 | static void bdrv_set_inherits_from(BlockDriverState *bs, |
| 3241 | BlockDriverState *new_inherits_from, |
| 3242 | Transaction *tran) |
| 3243 | { |
| 3244 | if (tran) { |
| 3245 | BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1); |
| 3246 | |
| 3247 | *s = (BdrvSetInheritsFrom) { |
| 3248 | .bs = bs, |
| 3249 | .old_inherits_from = bs->inherits_from, |
| 3250 | }; |
| 3251 | |
| 3252 | tran_add(tran, &bdrv_set_inherits_from_drv, s); |
| 3253 | } |
| 3254 | |
| 3255 | bs->inherits_from = new_inherits_from; |
| 3256 | } |
| 3257 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3258 | /** |
| 3259 | * Clear all inherits_from pointers from children and grandchildren of |
| 3260 | * @root that point to @root, where necessary. |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3261 | * @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] | 3262 | */ |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3263 | static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child, |
| 3264 | Transaction *tran) |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3265 | { |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3266 | BdrvChild *c; |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3267 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3268 | if (child->bs->inherits_from == root) { |
| 3269 | /* |
| 3270 | * Remove inherits_from only when the last reference between root and |
| 3271 | * child->bs goes away. |
| 3272 | */ |
| 3273 | QLIST_FOREACH(c, &root->children, next) { |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3274 | if (c != child && c->bs == child->bs) { |
| 3275 | break; |
| 3276 | } |
| 3277 | } |
| 3278 | if (c == NULL) { |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3279 | bdrv_set_inherits_from(child->bs, NULL, tran); |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3280 | } |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3281 | } |
| 3282 | |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3283 | QLIST_FOREACH(c, &child->bs->children, next) { |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3284 | bdrv_unset_inherits_from(root, c, tran); |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3285 | } |
| 3286 | } |
| 3287 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 3288 | /* Callers must ensure that child->frozen is false. */ |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3289 | void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) |
| 3290 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3291 | GLOBAL_STATE_CODE(); |
Max Reitz | 3cf746b | 2019-07-03 19:28:07 +0200 | [diff] [blame] | 3292 | if (child == NULL) { |
| 3293 | return; |
| 3294 | } |
| 3295 | |
Vladimir Sementsov-Ogievskiy | 332b3a1 | 2021-04-28 18:17:54 +0300 | [diff] [blame] | 3296 | bdrv_unset_inherits_from(parent, child, NULL); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 3297 | bdrv_root_unref_child(child); |
Kevin Wolf | 33a6040 | 2015-06-15 13:51:04 +0200 | [diff] [blame] | 3298 | } |
| 3299 | |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3300 | |
| 3301 | static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) |
| 3302 | { |
| 3303 | BdrvChild *c; |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 3304 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3305 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3306 | if (c->klass->change_media) { |
| 3307 | c->klass->change_media(c, load); |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 3308 | } |
| 3309 | } |
| 3310 | } |
| 3311 | |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3312 | /* Return true if you can reach parent going through child->inherits_from |
| 3313 | * recursively. If parent or child are NULL, return false */ |
| 3314 | static bool bdrv_inherits_from_recursive(BlockDriverState *child, |
| 3315 | BlockDriverState *parent) |
| 3316 | { |
| 3317 | while (child && child != parent) { |
| 3318 | child = child->inherits_from; |
| 3319 | } |
| 3320 | |
| 3321 | return child != NULL; |
| 3322 | } |
| 3323 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3324 | /* |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 3325 | * Return the BdrvChildRole for @bs's backing child. bs->backing is |
| 3326 | * mostly used for COW backing children (role = COW), but also for |
| 3327 | * filtered children (role = FILTERED | PRIMARY). |
| 3328 | */ |
| 3329 | static BdrvChildRole bdrv_backing_role(BlockDriverState *bs) |
| 3330 | { |
| 3331 | if (bs->drv && bs->drv->is_filter) { |
| 3332 | return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; |
| 3333 | } else { |
| 3334 | return BDRV_CHILD_COW; |
| 3335 | } |
| 3336 | } |
| 3337 | |
| 3338 | /* |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3339 | * Sets the bs->backing or bs->file link of a BDS. A new reference is created; |
| 3340 | * 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] | 3341 | * |
| 3342 | * Function doesn't update permissions, caller is responsible for this. |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3343 | */ |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3344 | static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs, |
| 3345 | BlockDriverState *child_bs, |
| 3346 | bool is_backing, |
| 3347 | Transaction *tran, Error **errp) |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3348 | { |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3349 | bool update_inherits_from = |
| 3350 | bdrv_inherits_from_recursive(child_bs, parent_bs); |
| 3351 | BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file; |
| 3352 | BdrvChildRole role; |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3353 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3354 | GLOBAL_STATE_CODE(); |
| 3355 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3356 | if (!parent_bs->drv) { |
| 3357 | /* |
| 3358 | * Node without drv is an object without a class :/. TODO: finally fix |
| 3359 | * qcow2 driver to never clear bs->drv and implement format corruption |
| 3360 | * handling in other way. |
| 3361 | */ |
| 3362 | error_setg(errp, "Node corrupted"); |
| 3363 | return -EINVAL; |
| 3364 | } |
| 3365 | |
| 3366 | if (child && child->frozen) { |
| 3367 | error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'", |
| 3368 | child->name, parent_bs->node_name, child->bs->node_name); |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3369 | return -EPERM; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 3370 | } |
| 3371 | |
Vladimir Sementsov-Ogievskiy | 25f78d9 | 2021-06-10 15:05:34 +0300 | [diff] [blame] | 3372 | if (is_backing && !parent_bs->drv->is_filter && |
| 3373 | !parent_bs->drv->supports_backing) |
| 3374 | { |
| 3375 | error_setg(errp, "Driver '%s' of node '%s' does not support backing " |
| 3376 | "files", parent_bs->drv->format_name, parent_bs->node_name); |
| 3377 | return -EINVAL; |
| 3378 | } |
| 3379 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3380 | if (parent_bs->drv->is_filter) { |
| 3381 | role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; |
| 3382 | } else if (is_backing) { |
| 3383 | role = BDRV_CHILD_COW; |
| 3384 | } else { |
| 3385 | /* |
| 3386 | * We only can use same role as it is in existing child. We don't have |
| 3387 | * infrastructure to determine role of file child in generic way |
| 3388 | */ |
| 3389 | if (!child) { |
| 3390 | error_setg(errp, "Cannot set file child to format node without " |
| 3391 | "file child"); |
| 3392 | return -EINVAL; |
| 3393 | } |
| 3394 | role = child->role; |
Fam Zheng | 826b6ca | 2014-05-23 21:29:47 +0800 | [diff] [blame] | 3395 | } |
| 3396 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3397 | if (child) { |
| 3398 | bdrv_unset_inherits_from(parent_bs, child, tran); |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 3399 | bdrv_remove_child(child, tran); |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3400 | } |
| 3401 | |
| 3402 | if (!child_bs) { |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3403 | goto out; |
| 3404 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 3405 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3406 | child = bdrv_attach_child_noperm(parent_bs, child_bs, |
| 3407 | is_backing ? "backing" : "file", |
| 3408 | &child_of_bds, role, |
| 3409 | tran, errp); |
| 3410 | if (!child) { |
| 3411 | return -EINVAL; |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3412 | } |
| 3413 | |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3414 | |
| 3415 | /* |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3416 | * 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] | 3417 | * point directly to bs (else it will become NULL). |
| 3418 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3419 | if (update_inherits_from) { |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3420 | bdrv_set_inherits_from(child_bs, parent_bs, tran); |
Alberto Garcia | 0065c45 | 2018-10-31 18:16:37 +0200 | [diff] [blame] | 3421 | } |
Fam Zheng | 826b6ca | 2014-05-23 21:29:47 +0800 | [diff] [blame] | 3422 | |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3423 | out: |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 3424 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3425 | bdrv_refresh_limits(parent_bs, tran, NULL); |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 3426 | bdrv_graph_rdunlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3427 | |
| 3428 | return 0; |
| 3429 | } |
| 3430 | |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3431 | static int bdrv_set_backing_noperm(BlockDriverState *bs, |
| 3432 | BlockDriverState *backing_hd, |
| 3433 | Transaction *tran, Error **errp) |
| 3434 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3435 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | e923827 | 2021-06-10 15:05:30 +0300 | [diff] [blame] | 3436 | return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp); |
| 3437 | } |
| 3438 | |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3439 | int bdrv_set_backing_hd_drained(BlockDriverState *bs, |
| 3440 | BlockDriverState *backing_hd, |
| 3441 | Error **errp) |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3442 | { |
| 3443 | int ret; |
| 3444 | Transaction *tran = tran_new(); |
| 3445 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3446 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3447 | assert(bs->quiesce_counter > 0); |
Vladimir Sementsov-Ogievskiy | c0829cb | 2022-01-24 18:37:41 +0100 | [diff] [blame] | 3448 | |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3449 | ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp); |
| 3450 | if (ret < 0) { |
| 3451 | goto out; |
| 3452 | } |
| 3453 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 3454 | ret = bdrv_refresh_perms(bs, tran, errp); |
Vladimir Sementsov-Ogievskiy | 160333e | 2021-04-28 18:17:56 +0300 | [diff] [blame] | 3455 | out: |
| 3456 | tran_finalize(tran, ret); |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3457 | return ret; |
| 3458 | } |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3459 | |
Kevin Wolf | 92140b9 | 2022-11-18 18:41:04 +0100 | [diff] [blame] | 3460 | int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, |
| 3461 | Error **errp) |
| 3462 | { |
| 3463 | int ret; |
| 3464 | GLOBAL_STATE_CODE(); |
| 3465 | |
| 3466 | bdrv_drained_begin(bs); |
| 3467 | ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp); |
Vladimir Sementsov-Ogievskiy | c0829cb | 2022-01-24 18:37:41 +0100 | [diff] [blame] | 3468 | bdrv_drained_end(bs); |
| 3469 | |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 3470 | return ret; |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3471 | } |
| 3472 | |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3473 | /* |
| 3474 | * Opens the backing file for a BlockDriverState if not yet open |
| 3475 | * |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3476 | * bdref_key specifies the key for the image's BlockdevRef in the options QDict. |
| 3477 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict |
| 3478 | * itself, all options starting with "${bdref_key}." are considered part of the |
| 3479 | * BlockdevRef. |
| 3480 | * |
| 3481 | * TODO Can this be unified with bdrv_open_image()? |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3482 | */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3483 | int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, |
| 3484 | const char *bdref_key, Error **errp) |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3485 | { |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3486 | char *backing_filename = NULL; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3487 | char *bdref_key_dot; |
| 3488 | const char *reference = NULL; |
Kevin Wolf | 317fc44 | 2014-04-25 13:27:34 +0200 | [diff] [blame] | 3489 | int ret = 0; |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3490 | bool implicit_backing = false; |
Fam Zheng | 8d24cce | 2014-05-23 21:29:45 +0800 | [diff] [blame] | 3491 | BlockDriverState *backing_hd; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3492 | QDict *options; |
| 3493 | QDict *tmp_parent_options = NULL; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 3494 | Error *local_err = NULL; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3495 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3496 | GLOBAL_STATE_CODE(); |
| 3497 | |
Kevin Wolf | 760e006 | 2015-06-17 14:55:21 +0200 | [diff] [blame] | 3498 | if (bs->backing != NULL) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3499 | goto free_exit; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3500 | } |
| 3501 | |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3502 | /* NULL means an empty set of options */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3503 | if (parent_options == NULL) { |
| 3504 | tmp_parent_options = qdict_new(); |
| 3505 | parent_options = tmp_parent_options; |
Kevin Wolf | 31ca6d0 | 2013-03-28 15:29:24 +0100 | [diff] [blame] | 3506 | } |
| 3507 | |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3508 | bs->open_flags &= ~BDRV_O_NO_BACKING; |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3509 | |
| 3510 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
| 3511 | qdict_extract_subqdict(parent_options, &options, bdref_key_dot); |
| 3512 | g_free(bdref_key_dot); |
| 3513 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3514 | /* |
| 3515 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 3516 | * types would require more care. When @parent_options come from |
| 3517 | * -blockdev or blockdev_add, its members are typed according to |
| 3518 | * the QAPI schema, but when they come from -drive, they're all |
| 3519 | * QString. |
| 3520 | */ |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3521 | reference = qdict_get_try_str(parent_options, bdref_key); |
| 3522 | if (reference || qdict_haskey(options, "file.filename")) { |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3523 | /* keep backing_filename NULL */ |
Kevin Wolf | 1cb6f50 | 2013-04-12 20:27:07 +0200 | [diff] [blame] | 3524 | } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3525 | qobject_unref(options); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3526 | goto free_exit; |
Fam Zheng | dbecebd | 2013-09-22 20:05:06 +0800 | [diff] [blame] | 3527 | } else { |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3528 | if (qdict_size(options) == 0) { |
| 3529 | /* If the user specifies options that do not modify the |
| 3530 | * backing file's behavior, we might still consider it the |
| 3531 | * implicit backing file. But it's easier this way, and |
| 3532 | * just specifying some of the backing BDS's options is |
| 3533 | * only possible with -drive anyway (otherwise the QAPI |
| 3534 | * schema forces the user to specify everything). */ |
| 3535 | implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file); |
| 3536 | } |
| 3537 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3538 | backing_filename = bdrv_get_full_backing_filename(bs, &local_err); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 3539 | if (local_err) { |
| 3540 | ret = -EINVAL; |
| 3541 | error_propagate(errp, local_err); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3542 | qobject_unref(options); |
Max Reitz | 9f07429 | 2014-11-26 17:20:26 +0100 | [diff] [blame] | 3543 | goto free_exit; |
| 3544 | } |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3545 | } |
| 3546 | |
Kevin Wolf | 8ee79e7 | 2014-06-04 15:09:35 +0200 | [diff] [blame] | 3547 | if (!bs->drv || !bs->drv->supports_backing) { |
| 3548 | ret = -EINVAL; |
| 3549 | error_setg(errp, "Driver doesn't support backing files"); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3550 | qobject_unref(options); |
Kevin Wolf | 8ee79e7 | 2014-06-04 15:09:35 +0200 | [diff] [blame] | 3551 | goto free_exit; |
| 3552 | } |
| 3553 | |
Peter Krempa | 6bff597 | 2017-10-12 16:14:10 +0200 | [diff] [blame] | 3554 | if (!reference && |
| 3555 | bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3556 | qdict_put_str(options, "driver", bs->backing_format); |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3557 | } |
| 3558 | |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 3559 | backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs, |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 3560 | &child_of_bds, bdrv_backing_role(bs), errp); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3561 | if (!backing_hd) { |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3562 | bs->open_flags |= BDRV_O_NO_BACKING; |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3563 | error_prepend(errp, "Could not open backing file: "); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3564 | ret = -EINVAL; |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3565 | goto free_exit; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3566 | } |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3567 | |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 3568 | if (implicit_backing) { |
| 3569 | bdrv_refresh_filename(backing_hd); |
| 3570 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
| 3571 | backing_hd->filename); |
| 3572 | } |
| 3573 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3574 | /* Hook up the backing file link; drop our reference, bs owns the |
| 3575 | * backing_hd reference now */ |
Vladimir Sementsov-Ogievskiy | dc9c10a | 2021-02-02 15:49:47 +0300 | [diff] [blame] | 3576 | ret = bdrv_set_backing_hd(bs, backing_hd, errp); |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 3577 | bdrv_unref(backing_hd); |
Vladimir Sementsov-Ogievskiy | dc9c10a | 2021-02-02 15:49:47 +0300 | [diff] [blame] | 3578 | if (ret < 0) { |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 3579 | goto free_exit; |
| 3580 | } |
Peter Feiner | d80ac65 | 2014-01-08 19:43:25 +0000 | [diff] [blame] | 3581 | |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 3582 | qdict_del(parent_options, bdref_key); |
| 3583 | |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3584 | free_exit: |
| 3585 | g_free(backing_filename); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3586 | qobject_unref(tmp_parent_options); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3587 | return ret; |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 3588 | } |
| 3589 | |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3590 | static BlockDriverState * |
| 3591 | 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] | 3592 | BlockDriverState *parent, const BdrvChildClass *child_class, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3593 | BdrvChildRole child_role, bool allow_none, Error **errp) |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3594 | { |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3595 | BlockDriverState *bs = NULL; |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3596 | QDict *image_options; |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3597 | char *bdref_key_dot; |
| 3598 | const char *reference; |
| 3599 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3600 | assert(child_class != NULL); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3601 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3602 | bdref_key_dot = g_strdup_printf("%s.", bdref_key); |
| 3603 | qdict_extract_subqdict(options, &image_options, bdref_key_dot); |
| 3604 | g_free(bdref_key_dot); |
| 3605 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3606 | /* |
| 3607 | * Caution: while qdict_get_try_str() is fine, getting non-string |
| 3608 | * types would require more care. When @options come from |
| 3609 | * -blockdev or blockdev_add, its members are typed according to |
| 3610 | * the QAPI schema, but when they come from -drive, they're all |
| 3611 | * QString. |
| 3612 | */ |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3613 | reference = qdict_get_try_str(options, bdref_key); |
| 3614 | if (!filename && !reference && !qdict_size(image_options)) { |
Kevin Wolf | b4b059f | 2015-06-15 13:24:19 +0200 | [diff] [blame] | 3615 | if (!allow_none) { |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3616 | error_setg(errp, "A block device must be specified for \"%s\"", |
| 3617 | bdref_key); |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3618 | } |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3619 | qobject_unref(image_options); |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3620 | goto done; |
| 3621 | } |
| 3622 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3623 | bs = bdrv_open_inherit(filename, reference, image_options, 0, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3624 | parent, child_class, child_role, errp); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3625 | if (!bs) { |
Kevin Wolf | df58179 | 2015-06-15 11:53:47 +0200 | [diff] [blame] | 3626 | goto done; |
| 3627 | } |
| 3628 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3629 | done: |
| 3630 | qdict_del(options, bdref_key); |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3631 | return bs; |
| 3632 | } |
| 3633 | |
| 3634 | /* |
| 3635 | * Opens a disk image whose options are given as BlockdevRef in another block |
| 3636 | * device's options. |
| 3637 | * |
| 3638 | * If allow_none is true, no image will be opened if filename is false and no |
| 3639 | * BlockdevRef is given. NULL will be returned, but errp remains unset. |
| 3640 | * |
| 3641 | * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. |
| 3642 | * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict |
| 3643 | * itself, all options starting with "${bdref_key}." are considered part of the |
| 3644 | * BlockdevRef. |
| 3645 | * |
| 3646 | * The BlockdevRef will be removed from the options QDict. |
| 3647 | */ |
| 3648 | BdrvChild *bdrv_open_child(const char *filename, |
| 3649 | QDict *options, const char *bdref_key, |
| 3650 | BlockDriverState *parent, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3651 | const BdrvChildClass *child_class, |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3652 | BdrvChildRole child_role, |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3653 | bool allow_none, Error **errp) |
| 3654 | { |
| 3655 | BlockDriverState *bs; |
| 3656 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3657 | GLOBAL_STATE_CODE(); |
| 3658 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3659 | bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3660 | child_role, allow_none, errp); |
Kevin Wolf | 2d6b86a | 2017-02-17 17:43:59 +0100 | [diff] [blame] | 3661 | if (bs == NULL) { |
| 3662 | return NULL; |
| 3663 | } |
| 3664 | |
Max Reitz | 258b776 | 2020-05-13 13:05:15 +0200 | [diff] [blame] | 3665 | return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role, |
| 3666 | errp); |
Kevin Wolf | b4b059f | 2015-06-15 13:24:19 +0200 | [diff] [blame] | 3667 | } |
| 3668 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3669 | /* |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3670 | * Wrapper on bdrv_open_child() for most popular case: open primary child of bs. |
| 3671 | */ |
| 3672 | int bdrv_open_file_child(const char *filename, |
| 3673 | QDict *options, const char *bdref_key, |
| 3674 | BlockDriverState *parent, Error **errp) |
| 3675 | { |
| 3676 | BdrvChildRole role; |
| 3677 | |
| 3678 | /* commit_top and mirror_top don't use this function */ |
| 3679 | assert(!parent->drv->filtered_child_is_backing); |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3680 | role = parent->drv->is_filter ? |
| 3681 | (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE; |
| 3682 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3683 | if (!bdrv_open_child(filename, options, bdref_key, parent, |
| 3684 | &child_of_bds, role, false, errp)) |
| 3685 | { |
| 3686 | return -EINVAL; |
| 3687 | } |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3688 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 3689 | return 0; |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 3690 | } |
| 3691 | |
| 3692 | /* |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3693 | * TODO Future callers may need to specify parent/child_class in order for |
| 3694 | * option inheritance to work. Existing callers use it for the root node. |
| 3695 | */ |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3696 | BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) |
| 3697 | { |
| 3698 | BlockDriverState *bs = NULL; |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3699 | QObject *obj = NULL; |
| 3700 | QDict *qdict = NULL; |
| 3701 | const char *reference = NULL; |
| 3702 | Visitor *v = NULL; |
| 3703 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 3704 | GLOBAL_STATE_CODE(); |
| 3705 | |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3706 | if (ref->type == QTYPE_QSTRING) { |
| 3707 | reference = ref->u.reference; |
| 3708 | } else { |
| 3709 | BlockdevOptions *options = &ref->u.definition; |
| 3710 | assert(ref->type == QTYPE_QDICT); |
| 3711 | |
| 3712 | v = qobject_output_visitor_new(&obj); |
Markus Armbruster | 1f58424 | 2020-04-24 10:43:35 +0200 | [diff] [blame] | 3713 | visit_type_BlockdevOptions(v, NULL, &options, &error_abort); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3714 | visit_complete(v, &obj); |
| 3715 | |
Max Reitz | 7dc847e | 2018-02-24 16:40:29 +0100 | [diff] [blame] | 3716 | qdict = qobject_to(QDict, obj); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3717 | qdict_flatten(qdict); |
| 3718 | |
| 3719 | /* bdrv_open_inherit() defaults to the values in bdrv_flags (for |
| 3720 | * compatibility with other callers) rather than what we want as the |
| 3721 | * real defaults. Apply the defaults here instead. */ |
| 3722 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); |
| 3723 | qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); |
| 3724 | qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); |
Kevin Wolf | e35bdc1 | 2018-10-05 18:57:40 +0200 | [diff] [blame] | 3725 | qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off"); |
| 3726 | |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3727 | } |
| 3728 | |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 3729 | bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3730 | obj = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3731 | qobject_unref(obj); |
Kevin Wolf | e1d74bc | 2018-01-10 15:52:33 +0100 | [diff] [blame] | 3732 | visit_free(v); |
| 3733 | return bs; |
| 3734 | } |
| 3735 | |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 3736 | static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, |
| 3737 | int flags, |
| 3738 | QDict *snapshot_options, |
| 3739 | Error **errp) |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3740 | { |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 3741 | g_autofree char *tmp_filename = NULL; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3742 | int64_t total_size; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3743 | QemuOpts *opts = NULL; |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3744 | BlockDriverState *bs_snapshot = NULL; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3745 | int ret; |
| 3746 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 3747 | GLOBAL_STATE_CODE(); |
| 3748 | |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3749 | /* if snapshot, we create a temporary backing file and open it |
| 3750 | instead of opening 'filename' directly */ |
| 3751 | |
| 3752 | /* Get the required size from the image */ |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3753 | total_size = bdrv_getlength(bs); |
| 3754 | if (total_size < 0) { |
| 3755 | error_setg_errno(errp, -total_size, "Could not get image size"); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3756 | goto out; |
Kevin Wolf | f187743 | 2014-04-04 17:07:19 +0200 | [diff] [blame] | 3757 | } |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3758 | |
| 3759 | /* Create the temporary image */ |
Bin Meng | 69fbfff | 2022-10-10 12:04:31 +0800 | [diff] [blame] | 3760 | tmp_filename = create_tmp_file(errp); |
| 3761 | if (!tmp_filename) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3762 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3763 | } |
| 3764 | |
Max Reitz | ef81043 | 2014-12-02 18:32:42 +0100 | [diff] [blame] | 3765 | opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 3766 | &error_abort); |
Markus Armbruster | 39101f2 | 2015-02-12 16:46:36 +0100 | [diff] [blame] | 3767 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3768 | ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3769 | qemu_opts_del(opts); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3770 | if (ret < 0) { |
Markus Armbruster | e43bfd9 | 2015-12-18 16:35:15 +0100 | [diff] [blame] | 3771 | error_prepend(errp, "Could not create temporary overlay '%s': ", |
| 3772 | tmp_filename); |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3773 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3774 | } |
| 3775 | |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3776 | /* Prepare options QDict for the temporary file */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3777 | qdict_put_str(snapshot_options, "file.driver", "file"); |
| 3778 | qdict_put_str(snapshot_options, "file.filename", tmp_filename); |
| 3779 | qdict_put_str(snapshot_options, "driver", "qcow2"); |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3780 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3781 | bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3782 | snapshot_options = NULL; |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3783 | if (!bs_snapshot) { |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3784 | goto out; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3785 | } |
| 3786 | |
Vladimir Sementsov-Ogievskiy | 934aee1 | 2021-02-02 15:49:44 +0300 | [diff] [blame] | 3787 | ret = bdrv_append(bs_snapshot, bs, errp); |
| 3788 | if (ret < 0) { |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3789 | bs_snapshot = NULL; |
Kevin Wolf | b2c2832 | 2017-02-20 12:46:42 +0100 | [diff] [blame] | 3790 | goto out; |
| 3791 | } |
Benoît Canet | 1ba4b6a | 2014-04-22 17:05:27 +0200 | [diff] [blame] | 3792 | |
| 3793 | out: |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3794 | qobject_unref(snapshot_options); |
Eric Blake | ff6ed71 | 2017-04-27 16:58:18 -0500 | [diff] [blame] | 3795 | return bs_snapshot; |
Kevin Wolf | b998875 | 2014-04-03 12:09:34 +0200 | [diff] [blame] | 3796 | } |
| 3797 | |
Max Reitz | da557aa | 2013-12-20 19:28:11 +0100 | [diff] [blame] | 3798 | /* |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3799 | * Opens a disk image (raw, qcow2, vmdk, ...) |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 3800 | * |
| 3801 | * options is a QDict of options to pass to the block drivers, or NULL for an |
| 3802 | * empty set of options. The reference to the QDict belongs to the block layer |
| 3803 | * 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] | 3804 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3805 | * |
| 3806 | * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. |
| 3807 | * If it is not NULL, the referenced BDS will be reused. |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3808 | * |
| 3809 | * The reference parameter may be used to specify an existing block device which |
| 3810 | * should be opened. If specified, neither options nor a filename may be given, |
| 3811 | * nor can an existing BDS be reused (that is, *pbs has to be NULL). |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 3812 | * |
| 3813 | * The caller must always hold @filename AioContext lock, because this |
| 3814 | * function eventually calls bdrv_refresh_total_sectors() which polls |
| 3815 | * when called from non-coroutine context. |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3816 | */ |
Kevin Wolf | 3219230 | 2023-01-26 18:24:32 +0100 | [diff] [blame] | 3817 | static BlockDriverState * no_coroutine_fn |
| 3818 | bdrv_open_inherit(const char *filename, const char *reference, QDict *options, |
| 3819 | int flags, BlockDriverState *parent, |
| 3820 | const BdrvChildClass *child_class, BdrvChildRole child_role, |
| 3821 | Error **errp) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 3822 | { |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 3823 | int ret; |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3824 | BlockBackend *file = NULL; |
Kevin Wolf | 9a4f4c3 | 2015-06-16 14:19:22 +0200 | [diff] [blame] | 3825 | BlockDriverState *bs; |
Max Reitz | ce34377 | 2015-08-26 19:47:50 +0200 | [diff] [blame] | 3826 | BlockDriver *drv = NULL; |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 3827 | BdrvChild *child; |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 3828 | const char *drvname; |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 3829 | const char *backing; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 3830 | Error *local_err = NULL; |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 3831 | QDict *snapshot_options = NULL; |
Kevin Wolf | b1e6fc0 | 2014-05-06 12:11:42 +0200 | [diff] [blame] | 3832 | int snapshot_flags = 0; |
bellard | 712e787 | 2005-04-28 21:09:32 +0000 | [diff] [blame] | 3833 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3834 | assert(!child_class || !flags); |
| 3835 | assert(!child_class == !parent); |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 3836 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 3219230 | 2023-01-26 18:24:32 +0100 | [diff] [blame] | 3837 | assert(!qemu_in_coroutine()); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3838 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3839 | if (reference) { |
| 3840 | bool options_non_empty = options ? qdict_size(options) : false; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 3841 | qobject_unref(options); |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3842 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3843 | if (filename || options_non_empty) { |
| 3844 | error_setg(errp, "Cannot reference an existing block device with " |
| 3845 | "additional options or a new filename"); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3846 | return NULL; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3847 | } |
| 3848 | |
| 3849 | bs = bdrv_lookup_bs(reference, reference, errp); |
| 3850 | if (!bs) { |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3851 | return NULL; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3852 | } |
Kevin Wolf | 76b2232 | 2016-04-04 17:11:13 +0200 | [diff] [blame] | 3853 | |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3854 | bdrv_ref(bs); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3855 | return bs; |
Max Reitz | ddf5636 | 2014-02-18 18:33:06 +0100 | [diff] [blame] | 3856 | } |
| 3857 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3858 | bs = bdrv_new(); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 3859 | |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 3860 | /* NULL means an empty set of options */ |
| 3861 | if (options == NULL) { |
| 3862 | options = qdict_new(); |
| 3863 | } |
| 3864 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 3865 | /* json: syntax counts as explicit options, as if in the QDict */ |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 3866 | parse_json_protocol(options, &filename, &local_err); |
| 3867 | if (local_err) { |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 3868 | goto fail; |
| 3869 | } |
| 3870 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 3871 | bs->explicit_options = qdict_clone_shallow(options); |
| 3872 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3873 | if (child_class) { |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 3874 | bool parent_is_format; |
| 3875 | |
| 3876 | if (parent->drv) { |
| 3877 | parent_is_format = parent->drv->is_format; |
| 3878 | } else { |
| 3879 | /* |
| 3880 | * parent->drv is not set yet because this node is opened for |
| 3881 | * (potential) format probing. That means that @parent is going |
| 3882 | * to be a format node. |
| 3883 | */ |
| 3884 | parent_is_format = true; |
| 3885 | } |
| 3886 | |
Kevin Wolf | bddcec3 | 2015-04-09 18:47:50 +0200 | [diff] [blame] | 3887 | bs->inherits_from = parent; |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 3888 | child_class->inherit_options(child_role, parent_is_format, |
| 3889 | &flags, options, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 3890 | parent->open_flags, parent->options); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 3891 | } |
| 3892 | |
Kevin Wolf | de3b53f | 2015-10-29 15:24:41 +0100 | [diff] [blame] | 3893 | ret = bdrv_fill_options(&options, filename, &flags, &local_err); |
Philippe Mathieu-Daudé | dfde483 | 2020-04-22 15:31:44 +0200 | [diff] [blame] | 3894 | if (ret < 0) { |
Kevin Wolf | 462f5bc | 2014-05-26 11:39:55 +0200 | [diff] [blame] | 3895 | goto fail; |
| 3896 | } |
| 3897 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3898 | /* |
| 3899 | * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. |
| 3900 | * Caution: getting a boolean member of @options requires care. |
| 3901 | * When @options come from -blockdev or blockdev_add, members are |
| 3902 | * typed according to the QAPI schema, but when they come from |
| 3903 | * -drive, they're all QString. |
| 3904 | */ |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 3905 | if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && |
| 3906 | !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { |
| 3907 | flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); |
| 3908 | } else { |
| 3909 | flags &= ~BDRV_O_RDWR; |
Alberto Garcia | 14499ea | 2016-09-15 17:53:00 +0300 | [diff] [blame] | 3910 | } |
| 3911 | |
| 3912 | if (flags & BDRV_O_SNAPSHOT) { |
| 3913 | snapshot_options = qdict_new(); |
| 3914 | bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, |
| 3915 | flags, options); |
Alberto Garcia | f87a0e2 | 2016-09-15 17:53:02 +0300 | [diff] [blame] | 3916 | /* Let bdrv_backing_options() override "read-only" */ |
| 3917 | qdict_del(options, BDRV_OPT_READ_ONLY); |
Max Reitz | 00ff7ff | 2020-05-13 13:05:21 +0200 | [diff] [blame] | 3918 | bdrv_inherited_options(BDRV_CHILD_COW, true, |
| 3919 | &flags, options, flags, options); |
Alberto Garcia | 14499ea | 2016-09-15 17:53:00 +0300 | [diff] [blame] | 3920 | } |
| 3921 | |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 3922 | bs->open_flags = flags; |
| 3923 | bs->options = options; |
| 3924 | options = qdict_clone_shallow(options); |
| 3925 | |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3926 | /* Find the right image format driver */ |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3927 | /* See cautionary note on accessing @options above */ |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3928 | drvname = qdict_get_try_str(options, "driver"); |
| 3929 | if (drvname) { |
| 3930 | drv = bdrv_find_format(drvname); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3931 | if (!drv) { |
| 3932 | error_setg(errp, "Unknown driver: '%s'", drvname); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3933 | goto fail; |
| 3934 | } |
| 3935 | } |
| 3936 | |
| 3937 | assert(drvname || !(flags & BDRV_O_PROTOCOL)); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3938 | |
Markus Armbruster | 129c7d1 | 2017-03-30 19:43:12 +0200 | [diff] [blame] | 3939 | /* See cautionary note on accessing @options above */ |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 3940 | backing = qdict_get_try_str(options, "backing"); |
Max Reitz | e59a0cf | 2018-02-24 16:40:32 +0100 | [diff] [blame] | 3941 | if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || |
| 3942 | (backing && *backing == '\0')) |
| 3943 | { |
Max Reitz | 4f7be28 | 2018-02-24 16:40:33 +0100 | [diff] [blame] | 3944 | if (backing) { |
| 3945 | warn_report("Use of \"backing\": \"\" is deprecated; " |
| 3946 | "use \"backing\": null instead"); |
| 3947 | } |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 3948 | flags |= BDRV_O_NO_BACKING; |
Kevin Wolf | ae0f57f | 2019-11-08 09:36:35 +0100 | [diff] [blame] | 3949 | qdict_del(bs->explicit_options, "backing"); |
| 3950 | qdict_del(bs->options, "backing"); |
Alberto Garcia | 3e8c2e5 | 2015-10-26 14:27:15 +0200 | [diff] [blame] | 3951 | qdict_del(options, "backing"); |
| 3952 | } |
| 3953 | |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3954 | /* Open image file without format layer. This BlockBackend is only used for |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3955 | * probing, the block drivers will do their own bdrv_open_child() for the |
| 3956 | * 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] | 3957 | if ((flags & BDRV_O_PROTOCOL) == 0) { |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3958 | BlockDriverState *file_bs; |
| 3959 | |
| 3960 | file_bs = bdrv_open_child_bs(filename, options, "file", bs, |
Max Reitz | 5894440 | 2020-05-13 13:05:37 +0200 | [diff] [blame] | 3961 | &child_of_bds, BDRV_CHILD_IMAGE, |
| 3962 | true, &local_err); |
Kevin Wolf | 1fdd693 | 2015-06-15 14:11:51 +0200 | [diff] [blame] | 3963 | if (local_err) { |
Max Reitz | 5469a2a | 2014-02-18 18:33:10 +0100 | [diff] [blame] | 3964 | goto fail; |
| 3965 | } |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3966 | if (file_bs != NULL) { |
Kevin Wolf | dacaa16 | 2017-11-20 14:59:13 +0100 | [diff] [blame] | 3967 | /* Not requesting BLK_PERM_CONSISTENT_READ because we're only |
| 3968 | * looking at the header to guess the image format. This works even |
| 3969 | * in cases where a guest would not see a consistent state. */ |
Kevin Wolf | d861ab3 | 2019-04-25 14:25:10 +0200 | [diff] [blame] | 3970 | file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL); |
Kevin Wolf | d708642 | 2017-01-13 19:02:32 +0100 | [diff] [blame] | 3971 | blk_insert_bs(file, file_bs, &local_err); |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3972 | bdrv_unref(file_bs); |
Kevin Wolf | d708642 | 2017-01-13 19:02:32 +0100 | [diff] [blame] | 3973 | if (local_err) { |
| 3974 | goto fail; |
| 3975 | } |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 3976 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3977 | qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 3978 | } |
Max Reitz | 5469a2a | 2014-02-18 18:33:10 +0100 | [diff] [blame] | 3979 | } |
| 3980 | |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3981 | /* Image format probing */ |
Kevin Wolf | 38f3ef5 | 2014-11-20 16:27:12 +0100 | [diff] [blame] | 3982 | bs->probed = !drv; |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 3983 | if (!drv && file) { |
Kevin Wolf | cf2ab8f | 2016-06-20 18:24:02 +0200 | [diff] [blame] | 3984 | ret = find_image_format(file, filename, &drv, &local_err); |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 3985 | if (ret < 0) { |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 3986 | goto fail; |
Max Reitz | 2a05cbe | 2013-12-20 19:28:10 +0100 | [diff] [blame] | 3987 | } |
Kevin Wolf | 62392eb | 2015-04-24 16:38:02 +0200 | [diff] [blame] | 3988 | /* |
| 3989 | * This option update would logically belong in bdrv_fill_options(), |
| 3990 | * but we first need to open bs->file for the probing to work, while |
| 3991 | * opening bs->file already requires the (mostly) final set of options |
| 3992 | * so that cache mode etc. can be inherited. |
| 3993 | * |
| 3994 | * Adding the driver later is somewhat ugly, but it's not an option |
| 3995 | * that would ever be inherited, so it's correct. We just need to make |
| 3996 | * sure to update both bs->options (which has the full effective |
| 3997 | * options for bs) and options (which has file.* already removed). |
| 3998 | */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 3999 | qdict_put_str(bs->options, "driver", drv->format_name); |
| 4000 | qdict_put_str(options, "driver", drv->format_name); |
Kevin Wolf | 76c591b | 2014-06-04 14:19:44 +0200 | [diff] [blame] | 4001 | } else if (!drv) { |
Kevin Wolf | 17b005f | 2014-05-27 10:50:29 +0200 | [diff] [blame] | 4002 | error_setg(errp, "Must specify either driver or file"); |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4003 | goto fail; |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 4004 | } |
| 4005 | |
Max Reitz | 53a2951 | 2015-03-19 14:53:16 -0400 | [diff] [blame] | 4006 | /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ |
| 4007 | assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); |
| 4008 | /* file must be NULL if a protocol BDS is about to be created |
| 4009 | * (the inverse results in an error message from bdrv_open_common()) */ |
| 4010 | assert(!(flags & BDRV_O_PROTOCOL) || !file); |
| 4011 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4012 | /* Open the image */ |
Kevin Wolf | 82dc8b4 | 2016-01-11 19:07:50 +0100 | [diff] [blame] | 4013 | ret = bdrv_open_common(bs, file, options, &local_err); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4014 | if (ret < 0) { |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4015 | goto fail; |
Christoph Hellwig | 6987307 | 2010-01-20 18:13:25 +0100 | [diff] [blame] | 4016 | } |
| 4017 | |
Kevin Wolf | 4e4bf5c | 2016-12-16 18:52:37 +0100 | [diff] [blame] | 4018 | if (file) { |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4019 | blk_unref(file); |
Kevin Wolf | f500a6d | 2012-11-12 17:35:27 +0100 | [diff] [blame] | 4020 | file = NULL; |
| 4021 | } |
| 4022 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4023 | /* If there is a backing file, use it */ |
Paolo Bonzini | 9156df1 | 2012-10-18 16:49:17 +0200 | [diff] [blame] | 4024 | if ((flags & BDRV_O_NO_BACKING) == 0) { |
Kevin Wolf | d9b7b05 | 2015-01-16 18:23:41 +0100 | [diff] [blame] | 4025 | ret = bdrv_open_backing_file(bs, options, "backing", &local_err); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4026 | if (ret < 0) { |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4027 | goto close_and_fail; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4028 | } |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4029 | } |
| 4030 | |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4031 | /* Remove all children options and references |
| 4032 | * from bs->options and bs->explicit_options */ |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 4033 | QLIST_FOREACH(child, &bs->children, next) { |
| 4034 | char *child_key_dot; |
| 4035 | child_key_dot = g_strdup_printf("%s.", child->name); |
| 4036 | qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot); |
| 4037 | qdict_extract_subqdict(bs->options, NULL, child_key_dot); |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4038 | qdict_del(bs->explicit_options, child->name); |
| 4039 | qdict_del(bs->options, child->name); |
Alberto Garcia | 2f624b8 | 2018-06-29 14:37:00 +0300 | [diff] [blame] | 4040 | g_free(child_key_dot); |
| 4041 | } |
| 4042 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4043 | /* Check if any unknown options were used */ |
Paolo Bonzini | 7ad2757 | 2017-01-04 15:59:14 +0100 | [diff] [blame] | 4044 | if (qdict_size(options) != 0) { |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4045 | const QDictEntry *entry = qdict_first(options); |
Max Reitz | 5acd9d8 | 2014-02-18 18:33:11 +0100 | [diff] [blame] | 4046 | if (flags & BDRV_O_PROTOCOL) { |
| 4047 | error_setg(errp, "Block protocol '%s' doesn't support the option " |
| 4048 | "'%s'", drv->format_name, entry->key); |
| 4049 | } else { |
Max Reitz | d0e46a5 | 2016-03-16 19:54:34 +0100 | [diff] [blame] | 4050 | error_setg(errp, |
| 4051 | "Block format '%s' does not support the option '%s'", |
| 4052 | drv->format_name, entry->key); |
Max Reitz | 5acd9d8 | 2014-02-18 18:33:11 +0100 | [diff] [blame] | 4053 | } |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4054 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4055 | goto close_and_fail; |
| 4056 | } |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4057 | |
Daniel P. Berrange | c01c214 | 2017-06-23 17:24:16 +0100 | [diff] [blame] | 4058 | bdrv_parent_cb_change_media(bs, true); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4059 | |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4060 | qobject_unref(options); |
Alberto Garcia | 8961be3 | 2018-09-06 17:25:41 +0300 | [diff] [blame] | 4061 | options = NULL; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4062 | |
| 4063 | /* For snapshot=on, create a temporary qcow2 overlay. bs points to the |
| 4064 | * temporary snapshot afterwards. */ |
| 4065 | if (snapshot_flags) { |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 4066 | BlockDriverState *snapshot_bs; |
| 4067 | snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, |
| 4068 | snapshot_options, &local_err); |
Kevin Wolf | 73176be | 2016-03-07 13:02:15 +0100 | [diff] [blame] | 4069 | snapshot_options = NULL; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 4070 | if (local_err) { |
| 4071 | goto close_and_fail; |
| 4072 | } |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4073 | /* We are not going to return bs but the overlay on top of it |
| 4074 | * (snapshot_bs); thus, we have to drop the strong reference to bs |
| 4075 | * (which we obtained by calling bdrv_new()). bs will not be deleted, |
| 4076 | * though, because the overlay still has a reference to it. */ |
| 4077 | bdrv_unref(bs); |
| 4078 | bs = snapshot_bs; |
Max Reitz | 6683618 | 2016-05-17 16:41:27 +0200 | [diff] [blame] | 4079 | } |
| 4080 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4081 | return bs; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4082 | |
Kevin Wolf | 8bfea15 | 2014-04-11 19:16:36 +0200 | [diff] [blame] | 4083 | fail: |
Kevin Wolf | 5696c6e | 2017-02-17 18:39:24 +0100 | [diff] [blame] | 4084 | blk_unref(file); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4085 | qobject_unref(snapshot_options); |
| 4086 | qobject_unref(bs->explicit_options); |
| 4087 | qobject_unref(bs->options); |
| 4088 | qobject_unref(options); |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 4089 | bs->options = NULL; |
Manos Pitsidianakis | 998cbd6 | 2017-07-14 17:35:47 +0300 | [diff] [blame] | 4090 | bs->explicit_options = NULL; |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4091 | bdrv_unref(bs); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 4092 | error_propagate(errp, local_err); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4093 | return NULL; |
Kevin Wolf | de9c0ce | 2013-03-15 10:35:02 +0100 | [diff] [blame] | 4094 | |
Kevin Wolf | b6ad491 | 2013-03-15 10:35:04 +0100 | [diff] [blame] | 4095 | close_and_fail: |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4096 | bdrv_unref(bs); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4097 | qobject_unref(snapshot_options); |
| 4098 | qobject_unref(options); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 4099 | error_propagate(errp, local_err); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4100 | return NULL; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 4101 | } |
| 4102 | |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 4103 | /* |
| 4104 | * The caller must always hold @filename AioContext lock, because this |
| 4105 | * function eventually calls bdrv_refresh_total_sectors() which polls |
| 4106 | * when called from non-coroutine context. |
| 4107 | */ |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4108 | BlockDriverState *bdrv_open(const char *filename, const char *reference, |
| 4109 | QDict *options, int flags, Error **errp) |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 4110 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4111 | GLOBAL_STATE_CODE(); |
| 4112 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 4113 | return bdrv_open_inherit(filename, reference, options, flags, NULL, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 4114 | NULL, 0, errp); |
Kevin Wolf | f3930ed | 2015-04-08 13:43:47 +0200 | [diff] [blame] | 4115 | } |
| 4116 | |
Alberto Garcia | faf116b | 2019-03-12 18:48:49 +0200 | [diff] [blame] | 4117 | /* Return true if the NULL-terminated @list contains @str */ |
| 4118 | static bool is_str_in_list(const char *str, const char *const *list) |
| 4119 | { |
| 4120 | if (str && list) { |
| 4121 | int i; |
| 4122 | for (i = 0; list[i] != NULL; i++) { |
| 4123 | if (!strcmp(str, list[i])) { |
| 4124 | return true; |
| 4125 | } |
| 4126 | } |
| 4127 | } |
| 4128 | return false; |
| 4129 | } |
| 4130 | |
| 4131 | /* |
| 4132 | * Check that every option set in @bs->options is also set in |
| 4133 | * @new_opts. |
| 4134 | * |
| 4135 | * Options listed in the common_options list and in |
| 4136 | * @bs->drv->mutable_opts are skipped. |
| 4137 | * |
| 4138 | * Return 0 on success, otherwise return -EINVAL and set @errp. |
| 4139 | */ |
| 4140 | static int bdrv_reset_options_allowed(BlockDriverState *bs, |
| 4141 | const QDict *new_opts, Error **errp) |
| 4142 | { |
| 4143 | const QDictEntry *e; |
| 4144 | /* These options are common to all block drivers and are handled |
| 4145 | * in bdrv_reopen_prepare() so they can be left out of @new_opts */ |
| 4146 | const char *const common_options[] = { |
| 4147 | "node-name", "discard", "cache.direct", "cache.no-flush", |
| 4148 | "read-only", "auto-read-only", "detect-zeroes", NULL |
| 4149 | }; |
| 4150 | |
| 4151 | for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) { |
| 4152 | if (!qdict_haskey(new_opts, e->key) && |
| 4153 | !is_str_in_list(e->key, common_options) && |
| 4154 | !is_str_in_list(e->key, bs->drv->mutable_opts)) { |
| 4155 | error_setg(errp, "Option '%s' cannot be reset " |
| 4156 | "to its default value", e->key); |
| 4157 | return -EINVAL; |
| 4158 | } |
| 4159 | } |
| 4160 | |
| 4161 | return 0; |
| 4162 | } |
| 4163 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4164 | /* |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4165 | * Returns true if @child can be reached recursively from @bs |
| 4166 | */ |
| 4167 | static bool bdrv_recurse_has_child(BlockDriverState *bs, |
| 4168 | BlockDriverState *child) |
| 4169 | { |
| 4170 | BdrvChild *c; |
| 4171 | |
| 4172 | if (bs == child) { |
| 4173 | return true; |
| 4174 | } |
| 4175 | |
| 4176 | QLIST_FOREACH(c, &bs->children, next) { |
| 4177 | if (bdrv_recurse_has_child(c->bs, child)) { |
| 4178 | return true; |
| 4179 | } |
| 4180 | } |
| 4181 | |
| 4182 | return false; |
| 4183 | } |
| 4184 | |
| 4185 | /* |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4186 | * Adds a BlockDriverState to a simple queue for an atomic, transactional |
| 4187 | * reopen of multiple devices. |
| 4188 | * |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4189 | * 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] | 4190 | * already performed, or alternatively may be NULL a new BlockReopenQueue will |
| 4191 | * be created and initialized. This newly created BlockReopenQueue should be |
| 4192 | * passed back in for subsequent calls that are intended to be of the same |
| 4193 | * atomic 'set'. |
| 4194 | * |
| 4195 | * bs is the BlockDriverState to add to the reopen queue. |
| 4196 | * |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4197 | * options contains the changed options for the associated bs |
| 4198 | * (the BlockReopenQueue takes ownership) |
| 4199 | * |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4200 | * flags contains the open flags for the associated bs |
| 4201 | * |
| 4202 | * returns a pointer to bs_queue, which is either the newly allocated |
| 4203 | * bs_queue, or the existing bs_queue being used. |
| 4204 | * |
Kevin Wolf | d22933a | 2022-11-18 18:41:02 +0100 | [diff] [blame] | 4205 | * bs is drained here and undrained by bdrv_reopen_queue_free(). |
Kevin Wolf | 2e11786 | 2022-11-18 18:41:01 +0100 | [diff] [blame] | 4206 | * |
| 4207 | * To be called with bs->aio_context locked. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4208 | */ |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4209 | static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, |
| 4210 | BlockDriverState *bs, |
| 4211 | QDict *options, |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 4212 | const BdrvChildClass *klass, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 4213 | BdrvChildRole role, |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4214 | bool parent_is_format, |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4215 | QDict *parent_options, |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4216 | int parent_flags, |
| 4217 | bool keep_old_opts) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4218 | { |
| 4219 | assert(bs != NULL); |
| 4220 | |
| 4221 | BlockReopenQueueEntry *bs_entry; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4222 | BdrvChild *child; |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4223 | QDict *old_options, *explicit_options, *options_copy; |
| 4224 | int flags; |
| 4225 | QemuOpts *opts; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4226 | |
Emanuele Giuseppe Esposito | f0c2832 | 2022-03-03 10:16:13 -0500 | [diff] [blame] | 4227 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4228 | |
Kevin Wolf | d22933a | 2022-11-18 18:41:02 +0100 | [diff] [blame] | 4229 | bdrv_drained_begin(bs); |
| 4230 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4231 | if (bs_queue == NULL) { |
| 4232 | bs_queue = g_new0(BlockReopenQueue, 1); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4233 | QTAILQ_INIT(bs_queue); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4234 | } |
| 4235 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4236 | if (!options) { |
| 4237 | options = qdict_new(); |
| 4238 | } |
| 4239 | |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4240 | /* Check if this BlockDriverState is already in the queue */ |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4241 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4242 | if (bs == bs_entry->state.bs) { |
| 4243 | break; |
| 4244 | } |
| 4245 | } |
| 4246 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4247 | /* |
| 4248 | * Precedence of options: |
| 4249 | * 1. Explicitly passed in options (highest) |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4250 | * 2. Retained from explicitly set options of bs |
| 4251 | * 3. Inherited from parent node |
| 4252 | * 4. Retained from effective options of bs |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4253 | */ |
| 4254 | |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4255 | /* Old explicitly set values (don't overwrite by inherited value) */ |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4256 | if (bs_entry || keep_old_opts) { |
| 4257 | old_options = qdict_clone_shallow(bs_entry ? |
| 4258 | bs_entry->state.explicit_options : |
| 4259 | bs->explicit_options); |
| 4260 | bdrv_join_options(bs, options, old_options); |
| 4261 | qobject_unref(old_options); |
Alberto Garcia | 5b7ba05 | 2016-09-15 17:53:03 +0300 | [diff] [blame] | 4262 | } |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4263 | |
| 4264 | explicit_options = qdict_clone_shallow(options); |
| 4265 | |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4266 | /* Inherit from parent node */ |
| 4267 | if (parent_options) { |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4268 | flags = 0; |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4269 | klass->inherit_options(role, parent_is_format, &flags, options, |
Max Reitz | 272c02e | 2020-05-13 13:05:17 +0200 | [diff] [blame] | 4270 | parent_flags, parent_options); |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4271 | } else { |
| 4272 | flags = bdrv_get_flags(bs); |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4273 | } |
| 4274 | |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4275 | if (keep_old_opts) { |
| 4276 | /* Old values are used for options that aren't set yet */ |
| 4277 | old_options = qdict_clone_shallow(bs->options); |
| 4278 | bdrv_join_options(bs, options, old_options); |
| 4279 | qobject_unref(old_options); |
| 4280 | } |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4281 | |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4282 | /* We have the final set of options so let's update the flags */ |
| 4283 | options_copy = qdict_clone_shallow(options); |
| 4284 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
| 4285 | qemu_opts_absorb_qdict(opts, options_copy, NULL); |
| 4286 | update_flags_from_options(&flags, opts); |
| 4287 | qemu_opts_del(opts); |
| 4288 | qobject_unref(options_copy); |
| 4289 | |
Kevin Wolf | fd45202 | 2017-08-03 17:02:59 +0200 | [diff] [blame] | 4290 | /* bdrv_open_inherit() sets and clears some additional flags internally */ |
Kevin Wolf | f1f25a2 | 2014-04-25 19:04:55 +0200 | [diff] [blame] | 4291 | flags &= ~BDRV_O_PROTOCOL; |
Kevin Wolf | fd45202 | 2017-08-03 17:02:59 +0200 | [diff] [blame] | 4292 | if (flags & BDRV_O_RDWR) { |
| 4293 | flags |= BDRV_O_ALLOW_RDWR; |
| 4294 | } |
Kevin Wolf | f1f25a2 | 2014-04-25 19:04:55 +0200 | [diff] [blame] | 4295 | |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4296 | if (!bs_entry) { |
| 4297 | bs_entry = g_new0(BlockReopenQueueEntry, 1); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4298 | QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry); |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4299 | } else { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4300 | qobject_unref(bs_entry->state.options); |
| 4301 | qobject_unref(bs_entry->state.explicit_options); |
Kevin Wolf | 1857c97 | 2017-09-14 14:53:46 +0200 | [diff] [blame] | 4302 | } |
| 4303 | |
| 4304 | bs_entry->state.bs = bs; |
| 4305 | bs_entry->state.options = options; |
| 4306 | bs_entry->state.explicit_options = explicit_options; |
| 4307 | bs_entry->state.flags = flags; |
| 4308 | |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4309 | /* |
| 4310 | * If keep_old_opts is false then it means that unspecified |
| 4311 | * options must be reset to their original value. We don't allow |
| 4312 | * resetting 'backing' but we need to know if the option is |
| 4313 | * missing in order to decide if we have to return an error. |
| 4314 | */ |
| 4315 | if (!keep_old_opts) { |
| 4316 | bs_entry->state.backing_missing = |
| 4317 | !qdict_haskey(options, "backing") && |
| 4318 | !qdict_haskey(options, "backing.driver"); |
| 4319 | } |
| 4320 | |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4321 | QLIST_FOREACH(child, &bs->children, next) { |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4322 | QDict *new_child_options = NULL; |
| 4323 | bool child_keep_old = keep_old_opts; |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4324 | |
Kevin Wolf | 4c9dfe5 | 2015-05-08 15:14:15 +0200 | [diff] [blame] | 4325 | /* reopen can only change the options of block devices that were |
| 4326 | * implicitly created and inherited options. For other (referenced) |
| 4327 | * block devices, a syntax like "backing.foo" results in an error. */ |
Kevin Wolf | 67251a3 | 2015-04-09 18:54:04 +0200 | [diff] [blame] | 4328 | if (child->bs->inherits_from != bs) { |
| 4329 | continue; |
| 4330 | } |
| 4331 | |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4332 | /* Check if the options contain a child reference */ |
| 4333 | if (qdict_haskey(options, child->name)) { |
| 4334 | const char *childref = qdict_get_try_str(options, child->name); |
| 4335 | /* |
| 4336 | * The current child must not be reopened if the child |
| 4337 | * reference is null or points to a different node. |
| 4338 | */ |
| 4339 | if (g_strcmp0(childref, child->bs->node_name)) { |
| 4340 | continue; |
| 4341 | } |
| 4342 | /* |
| 4343 | * If the child reference points to the current child then |
| 4344 | * reopen it with its existing set of options (note that |
| 4345 | * it can still inherit new options from the parent). |
| 4346 | */ |
| 4347 | child_keep_old = true; |
| 4348 | } else { |
| 4349 | /* Extract child options ("child-name.*") */ |
| 4350 | char *child_key_dot = g_strdup_printf("%s.", child->name); |
| 4351 | qdict_extract_subqdict(explicit_options, NULL, child_key_dot); |
| 4352 | qdict_extract_subqdict(options, &new_child_options, child_key_dot); |
| 4353 | g_free(child_key_dot); |
| 4354 | } |
Kevin Wolf | 4c9dfe5 | 2015-05-08 15:14:15 +0200 | [diff] [blame] | 4355 | |
Alberto Garcia | 9aa09dd | 2018-11-12 16:00:45 +0200 | [diff] [blame] | 4356 | bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4357 | child->klass, child->role, bs->drv->is_format, |
| 4358 | options, flags, child_keep_old); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4359 | } |
| 4360 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4361 | return bs_queue; |
| 4362 | } |
| 4363 | |
Kevin Wolf | 2e11786 | 2022-11-18 18:41:01 +0100 | [diff] [blame] | 4364 | /* To be called with bs->aio_context locked */ |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4365 | BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, |
| 4366 | BlockDriverState *bs, |
Alberto Garcia | 077e8e2 | 2019-03-12 18:48:44 +0200 | [diff] [blame] | 4367 | QDict *options, bool keep_old_opts) |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4368 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4369 | GLOBAL_STATE_CODE(); |
| 4370 | |
Max Reitz | 3cdc69d | 2020-05-13 13:05:18 +0200 | [diff] [blame] | 4371 | return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false, |
| 4372 | NULL, 0, keep_old_opts); |
Kevin Wolf | 2851810 | 2015-05-08 17:07:31 +0200 | [diff] [blame] | 4373 | } |
| 4374 | |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4375 | void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue) |
| 4376 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4377 | GLOBAL_STATE_CODE(); |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4378 | if (bs_queue) { |
| 4379 | BlockReopenQueueEntry *bs_entry, *next; |
| 4380 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { |
Kevin Wolf | d22933a | 2022-11-18 18:41:02 +0100 | [diff] [blame] | 4381 | AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs); |
| 4382 | |
| 4383 | aio_context_acquire(ctx); |
| 4384 | bdrv_drained_end(bs_entry->state.bs); |
| 4385 | aio_context_release(ctx); |
| 4386 | |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4387 | qobject_unref(bs_entry->state.explicit_options); |
| 4388 | qobject_unref(bs_entry->state.options); |
| 4389 | g_free(bs_entry); |
| 4390 | } |
| 4391 | g_free(bs_queue); |
| 4392 | } |
| 4393 | } |
| 4394 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4395 | /* |
| 4396 | * Reopen multiple BlockDriverStates atomically & transactionally. |
| 4397 | * |
| 4398 | * The queue passed in (bs_queue) must have been built up previous |
| 4399 | * via bdrv_reopen_queue(). |
| 4400 | * |
| 4401 | * Reopens all BDS specified in the queue, with the appropriate |
| 4402 | * flags. All devices are prepared for reopen, and failure of any |
Stefan Weil | 50d6a8a | 2018-07-12 21:51:20 +0200 | [diff] [blame] | 4403 | * device will cause all device changes to be abandoned, and intermediate |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4404 | * data cleaned up. |
| 4405 | * |
| 4406 | * If all devices prepare successfully, then the changes are committed |
| 4407 | * to all devices. |
| 4408 | * |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4409 | * All affected nodes must be drained between bdrv_reopen_queue() and |
| 4410 | * bdrv_reopen_multiple(). |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4411 | * |
| 4412 | * To be called from the main thread, with all other AioContexts unlocked. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4413 | */ |
Alberto Garcia | 5019aec | 2019-03-12 18:48:50 +0200 | [diff] [blame] | 4414 | int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4415 | { |
| 4416 | int ret = -1; |
| 4417 | BlockReopenQueueEntry *bs_entry, *next; |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4418 | AioContext *ctx; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4419 | Transaction *tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4420 | g_autoptr(GSList) refresh_list = NULL; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4421 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4422 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4423 | assert(bs_queue != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 4424 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4425 | |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4426 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4427 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
| 4428 | aio_context_acquire(ctx); |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4429 | ret = bdrv_flush(bs_entry->state.bs); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4430 | aio_context_release(ctx); |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4431 | if (ret < 0) { |
| 4432 | error_setg_errno(errp, -ret, "Error flushing drive"); |
Kevin Wolf | e3fc91a | 2021-05-03 13:05:55 +0200 | [diff] [blame] | 4433 | goto abort; |
Vladimir Sementsov-Ogievskiy | a2aabf8 | 2021-04-28 18:17:57 +0300 | [diff] [blame] | 4434 | } |
| 4435 | } |
| 4436 | |
| 4437 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 1a63a90 | 2017-12-06 20:24:44 +0100 | [diff] [blame] | 4438 | assert(bs_entry->state.bs->quiesce_counter > 0); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4439 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
| 4440 | aio_context_acquire(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4441 | ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4442 | aio_context_release(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4443 | if (ret < 0) { |
| 4444 | goto abort; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4445 | } |
| 4446 | bs_entry->prepared = true; |
| 4447 | } |
| 4448 | |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4449 | QTAILQ_FOREACH(bs_entry, bs_queue, entry) { |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4450 | BDRVReopenState *state = &bs_entry->state; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4451 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 4452 | refresh_list = g_slist_prepend(refresh_list, state->bs); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4453 | if (state->old_backing_bs) { |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 4454 | refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs); |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4455 | } |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4456 | if (state->old_file_bs) { |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 4457 | refresh_list = g_slist_prepend(refresh_list, state->old_file_bs); |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4458 | } |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4459 | } |
| 4460 | |
| 4461 | /* |
| 4462 | * Note that file-posix driver rely on permission update done during reopen |
| 4463 | * (even if no permission changed), because it wants "new" permissions for |
| 4464 | * reconfiguring the fd and that's why it does it in raw_check_perm(), not |
| 4465 | * in raw_reopen_prepare() which is called with "old" permissions. |
| 4466 | */ |
| 4467 | ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp); |
| 4468 | if (ret < 0) { |
| 4469 | goto abort; |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4470 | } |
| 4471 | |
Vladimir Sementsov-Ogievskiy | fcd6a4f | 2019-09-27 15:23:48 +0300 | [diff] [blame] | 4472 | /* |
| 4473 | * If we reach this point, we have success and just need to apply the |
| 4474 | * changes. |
| 4475 | * |
| 4476 | * Reverse order is used to comfort qcow2 driver: on commit it need to write |
| 4477 | * IN_USE flag to the image, to mark bitmaps in the image as invalid. But |
| 4478 | * children are usually goes after parents in reopen-queue, so go from last |
| 4479 | * to first element. |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4480 | */ |
Vladimir Sementsov-Ogievskiy | fcd6a4f | 2019-09-27 15:23:48 +0300 | [diff] [blame] | 4481 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4482 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
| 4483 | aio_context_acquire(ctx); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4484 | bdrv_reopen_commit(&bs_entry->state); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4485 | aio_context_release(ctx); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4486 | } |
| 4487 | |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4488 | tran_commit(tran); |
| 4489 | |
| 4490 | QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { |
| 4491 | BlockDriverState *bs = bs_entry->state.bs; |
| 4492 | |
| 4493 | if (bs->drv->bdrv_reopen_commit_post) { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4494 | ctx = bdrv_get_aio_context(bs); |
| 4495 | aio_context_acquire(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4496 | bs->drv->bdrv_reopen_commit_post(&bs_entry->state); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4497 | aio_context_release(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4498 | } |
| 4499 | } |
| 4500 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4501 | ret = 0; |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4502 | goto cleanup; |
| 4503 | |
| 4504 | abort: |
| 4505 | tran_abort(tran); |
Vladimir Sementsov-Ogievskiy | 859443b | 2019-09-27 15:23:47 +0300 | [diff] [blame] | 4506 | QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4507 | if (bs_entry->prepared) { |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4508 | ctx = bdrv_get_aio_context(bs_entry->state.bs); |
| 4509 | aio_context_acquire(ctx); |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4510 | bdrv_reopen_abort(&bs_entry->state); |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4511 | aio_context_release(ctx); |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4512 | } |
Kevin Wolf | 69b736e | 2019-03-05 17:18:22 +0100 | [diff] [blame] | 4513 | } |
Peter Krempa | 17e1e2b | 2020-02-28 13:44:46 +0100 | [diff] [blame] | 4514 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4515 | cleanup: |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4516 | bdrv_reopen_queue_free(bs_queue); |
Alberto Garcia | 40840e4 | 2016-10-28 10:08:03 +0300 | [diff] [blame] | 4517 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4518 | return ret; |
| 4519 | } |
| 4520 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4521 | int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts, |
| 4522 | Error **errp) |
| 4523 | { |
| 4524 | AioContext *ctx = bdrv_get_aio_context(bs); |
| 4525 | BlockReopenQueue *queue; |
| 4526 | int ret; |
| 4527 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4528 | GLOBAL_STATE_CODE(); |
| 4529 | |
Kevin Wolf | 2e11786 | 2022-11-18 18:41:01 +0100 | [diff] [blame] | 4530 | queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts); |
| 4531 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4532 | if (ctx != qemu_get_aio_context()) { |
| 4533 | aio_context_release(ctx); |
| 4534 | } |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4535 | ret = bdrv_reopen_multiple(queue, errp); |
| 4536 | |
| 4537 | if (ctx != qemu_get_aio_context()) { |
| 4538 | aio_context_acquire(ctx); |
| 4539 | } |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4540 | |
| 4541 | return ret; |
| 4542 | } |
| 4543 | |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4544 | int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only, |
| 4545 | Error **errp) |
| 4546 | { |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4547 | QDict *opts = qdict_new(); |
| 4548 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4549 | GLOBAL_STATE_CODE(); |
| 4550 | |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4551 | qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only); |
| 4552 | |
Kevin Wolf | 6cf42ca | 2021-07-08 13:47:06 +0200 | [diff] [blame] | 4553 | return bdrv_reopen(bs, opts, true, errp); |
Alberto Garcia | 6e1000a | 2018-11-12 16:00:33 +0200 | [diff] [blame] | 4554 | } |
| 4555 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4556 | /* |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4557 | * Take a BDRVReopenState and check if the value of 'backing' in the |
| 4558 | * reopen_state->options QDict is valid or not. |
| 4559 | * |
| 4560 | * If 'backing' is missing from the QDict then return 0. |
| 4561 | * |
| 4562 | * If 'backing' contains the node name of the backing file of |
| 4563 | * reopen_state->bs then return 0. |
| 4564 | * |
| 4565 | * If 'backing' contains a different node name (or is null) then check |
| 4566 | * whether the current backing file can be replaced with the new one. |
| 4567 | * If that's the case then reopen_state->replace_backing_bs is set to |
| 4568 | * true and reopen_state->new_backing_bs contains a pointer to the new |
| 4569 | * backing BlockDriverState (or NULL). |
| 4570 | * |
| 4571 | * Return 0 on success, otherwise return < 0 and set @errp. |
| 4572 | */ |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4573 | static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state, |
| 4574 | bool is_backing, Transaction *tran, |
| 4575 | Error **errp) |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4576 | { |
| 4577 | BlockDriverState *bs = reopen_state->bs; |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4578 | BlockDriverState *new_child_bs; |
| 4579 | BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) : |
| 4580 | child_bs(bs->file); |
| 4581 | const char *child_name = is_backing ? "backing" : "file"; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4582 | QObject *value; |
| 4583 | const char *str; |
| 4584 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 4585 | GLOBAL_STATE_CODE(); |
| 4586 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4587 | value = qdict_get(reopen_state->options, child_name); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4588 | if (value == NULL) { |
| 4589 | return 0; |
| 4590 | } |
| 4591 | |
| 4592 | switch (qobject_type(value)) { |
| 4593 | case QTYPE_QNULL: |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4594 | assert(is_backing); /* The 'file' option does not allow a null value */ |
| 4595 | new_child_bs = NULL; |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4596 | break; |
| 4597 | case QTYPE_QSTRING: |
Markus Armbruster | 410f44f | 2020-12-11 18:11:42 +0100 | [diff] [blame] | 4598 | str = qstring_get_str(qobject_to(QString, value)); |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4599 | new_child_bs = bdrv_lookup_bs(NULL, str, errp); |
| 4600 | if (new_child_bs == NULL) { |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4601 | return -EINVAL; |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4602 | } else if (bdrv_recurse_has_child(new_child_bs, bs)) { |
| 4603 | error_setg(errp, "Making '%s' a %s child of '%s' would create a " |
| 4604 | "cycle", str, child_name, bs->node_name); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4605 | return -EINVAL; |
| 4606 | } |
| 4607 | break; |
| 4608 | default: |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4609 | /* |
| 4610 | * The options QDict has been flattened, so 'backing' and 'file' |
| 4611 | * do not allow any other data type here. |
| 4612 | */ |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4613 | g_assert_not_reached(); |
| 4614 | } |
| 4615 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4616 | if (old_child_bs == new_child_bs) { |
| 4617 | return 0; |
| 4618 | } |
| 4619 | |
| 4620 | if (old_child_bs) { |
| 4621 | if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) { |
Vladimir Sementsov-Ogievskiy | cbfdb98 | 2021-06-10 15:05:33 +0300 | [diff] [blame] | 4622 | return 0; |
| 4623 | } |
| 4624 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4625 | if (old_child_bs->implicit) { |
| 4626 | error_setg(errp, "Cannot replace implicit %s child of %s", |
| 4627 | child_name, bs->node_name); |
Vladimir Sementsov-Ogievskiy | cbfdb98 | 2021-06-10 15:05:33 +0300 | [diff] [blame] | 4628 | return -EPERM; |
| 4629 | } |
| 4630 | } |
| 4631 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4632 | if (bs->drv->is_filter && !old_child_bs) { |
Vladimir Sementsov-Ogievskiy | 25f78d9 | 2021-06-10 15:05:34 +0300 | [diff] [blame] | 4633 | /* |
| 4634 | * Filters always have a file or a backing child, so we are trying to |
| 4635 | * change wrong child |
| 4636 | */ |
| 4637 | 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] | 4638 | "%s child", bs->node_name, bs->drv->format_name, child_name); |
Max Reitz | 1d42f48 | 2019-06-12 17:24:39 +0200 | [diff] [blame] | 4639 | return -EINVAL; |
| 4640 | } |
| 4641 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4642 | if (is_backing) { |
| 4643 | reopen_state->old_backing_bs = old_child_bs; |
| 4644 | } else { |
| 4645 | reopen_state->old_file_bs = old_child_bs; |
| 4646 | } |
| 4647 | |
| 4648 | return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing, |
| 4649 | tran, errp); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4650 | } |
| 4651 | |
| 4652 | /* |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4653 | * Prepares a BlockDriverState for reopen. All changes are staged in the |
| 4654 | * 'opaque' field of the BDRVReopenState, which is used and allocated by |
| 4655 | * the block driver layer .bdrv_reopen_prepare() |
| 4656 | * |
| 4657 | * bs is the BlockDriverState to reopen |
| 4658 | * flags are the new open flags |
| 4659 | * queue is the reopen queue |
| 4660 | * |
| 4661 | * Returns 0 on success, non-zero on error. On error errp will be set |
| 4662 | * as well. |
| 4663 | * |
| 4664 | * On failure, bdrv_reopen_abort() will be called to clean up any data. |
| 4665 | * It is the responsibility of the caller to then call the abort() or |
| 4666 | * commit() for any other BDS that have been left in a prepare() state |
| 4667 | * |
| 4668 | */ |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 4669 | static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, |
Vladimir Sementsov-Ogievskiy | 72373e4 | 2021-04-28 18:17:58 +0300 | [diff] [blame] | 4670 | BlockReopenQueue *queue, |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4671 | Transaction *change_child_tran, Error **errp) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4672 | { |
| 4673 | int ret = -1; |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4674 | int old_flags; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4675 | Error *local_err = NULL; |
| 4676 | BlockDriver *drv; |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4677 | QemuOpts *opts; |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4678 | QDict *orig_reopen_opts; |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4679 | char *discard = NULL; |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4680 | bool read_only; |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4681 | bool drv_prepared = false; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4682 | |
| 4683 | assert(reopen_state != NULL); |
| 4684 | assert(reopen_state->bs->drv != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 4685 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4686 | drv = reopen_state->bs->drv; |
| 4687 | |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4688 | /* This function and each driver's bdrv_reopen_prepare() remove |
| 4689 | * entries from reopen_state->options as they are processed, so |
| 4690 | * we need to make a copy of the original QDict. */ |
| 4691 | orig_reopen_opts = qdict_clone_shallow(reopen_state->options); |
| 4692 | |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4693 | /* Process generic block layer options */ |
| 4694 | opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 4695 | if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) { |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4696 | ret = -EINVAL; |
| 4697 | goto error; |
| 4698 | } |
| 4699 | |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4700 | /* This was already called in bdrv_reopen_queue_child() so the flags |
| 4701 | * are up-to-date. This time we simply want to remove the options from |
| 4702 | * QemuOpts in order to indicate that they have been processed. */ |
| 4703 | old_flags = reopen_state->flags; |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 4704 | update_flags_from_options(&reopen_state->flags, opts); |
Alberto Garcia | e6d79c4 | 2018-11-12 16:00:47 +0200 | [diff] [blame] | 4705 | assert(old_flags == reopen_state->flags); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 4706 | |
Alberto Garcia | 415bbca | 2018-10-03 13:23:13 +0300 | [diff] [blame] | 4707 | discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD); |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4708 | if (discard != NULL) { |
| 4709 | if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) { |
| 4710 | error_setg(errp, "Invalid discard option"); |
| 4711 | ret = -EINVAL; |
| 4712 | goto error; |
| 4713 | } |
| 4714 | } |
| 4715 | |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 4716 | reopen_state->detect_zeroes = |
| 4717 | bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err); |
| 4718 | if (local_err) { |
| 4719 | error_propagate(errp, local_err); |
| 4720 | ret = -EINVAL; |
| 4721 | goto error; |
| 4722 | } |
| 4723 | |
Alberto Garcia | 57f9db9 | 2018-09-06 12:37:06 +0300 | [diff] [blame] | 4724 | /* All other options (including node-name and driver) must be unchanged. |
| 4725 | * Put them back into the QDict, so that they are checked at the end |
| 4726 | * of this function. */ |
| 4727 | qemu_opts_to_qdict(opts, reopen_state->options); |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4728 | |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4729 | /* If we are to stay read-only, do not allow permission change |
| 4730 | * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is |
| 4731 | * not set, or if the BDS still has copy_on_read enabled */ |
| 4732 | read_only = !(reopen_state->flags & BDRV_O_RDWR); |
Kevin Wolf | 54a32bf | 2017-08-03 17:02:58 +0200 | [diff] [blame] | 4733 | ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); |
Jeff Cody | 3d8ce17 | 2017-04-07 16:55:30 -0400 | [diff] [blame] | 4734 | if (local_err) { |
| 4735 | error_propagate(errp, local_err); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4736 | goto error; |
| 4737 | } |
| 4738 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4739 | if (drv->bdrv_reopen_prepare) { |
Alberto Garcia | faf116b | 2019-03-12 18:48:49 +0200 | [diff] [blame] | 4740 | /* |
| 4741 | * If a driver-specific option is missing, it means that we |
| 4742 | * should reset it to its default value. |
| 4743 | * But not all options allow that, so we need to check it first. |
| 4744 | */ |
| 4745 | ret = bdrv_reset_options_allowed(reopen_state->bs, |
| 4746 | reopen_state->options, errp); |
| 4747 | if (ret) { |
| 4748 | goto error; |
| 4749 | } |
| 4750 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4751 | ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); |
| 4752 | if (ret) { |
| 4753 | if (local_err != NULL) { |
| 4754 | error_propagate(errp, local_err); |
| 4755 | } else { |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 4756 | bdrv_refresh_filename(reopen_state->bs); |
Luiz Capitulino | d8b6895 | 2013-06-10 11:29:27 -0400 | [diff] [blame] | 4757 | error_setg(errp, "failed while preparing to reopen image '%s'", |
| 4758 | reopen_state->bs->filename); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4759 | } |
| 4760 | goto error; |
| 4761 | } |
| 4762 | } else { |
| 4763 | /* It is currently mandatory to have a bdrv_reopen_prepare() |
| 4764 | * handler for each supported drv. */ |
Alberto Garcia | 81e5f78 | 2015-04-08 12:29:19 +0300 | [diff] [blame] | 4765 | error_setg(errp, "Block format '%s' used by node '%s' " |
| 4766 | "does not support reopening files", drv->format_name, |
| 4767 | bdrv_get_device_or_node_name(reopen_state->bs)); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4768 | ret = -1; |
| 4769 | goto error; |
| 4770 | } |
| 4771 | |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4772 | drv_prepared = true; |
| 4773 | |
Alberto Garcia | bacd9b8 | 2019-03-12 18:48:46 +0200 | [diff] [blame] | 4774 | /* |
| 4775 | * We must provide the 'backing' option if the BDS has a backing |
| 4776 | * file or if the image file has a backing file name as part of |
| 4777 | * its metadata. Otherwise the 'backing' option can be omitted. |
| 4778 | */ |
| 4779 | if (drv->supports_backing && reopen_state->backing_missing && |
Max Reitz | 1d42f48 | 2019-06-12 17:24:39 +0200 | [diff] [blame] | 4780 | (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) { |
Alberto Garcia | 8546632 | 2019-03-12 18:48:45 +0200 | [diff] [blame] | 4781 | error_setg(errp, "backing is missing for '%s'", |
| 4782 | reopen_state->bs->node_name); |
| 4783 | ret = -EINVAL; |
| 4784 | goto error; |
| 4785 | } |
| 4786 | |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4787 | /* |
| 4788 | * Allow changing the 'backing' option. The new value can be |
| 4789 | * either a reference to an existing node (using its node name) |
| 4790 | * or NULL to simply detach the current backing file. |
| 4791 | */ |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4792 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, true, |
| 4793 | change_child_tran, errp); |
Alberto Garcia | cb828c3 | 2019-03-12 18:48:47 +0200 | [diff] [blame] | 4794 | if (ret < 0) { |
| 4795 | goto error; |
| 4796 | } |
| 4797 | qdict_del(reopen_state->options, "backing"); |
| 4798 | |
Alberto Garcia | ecd30d2 | 2021-06-10 15:05:36 +0300 | [diff] [blame] | 4799 | /* Allow changing the 'file' option. In this case NULL is not allowed */ |
| 4800 | ret = bdrv_reopen_parse_file_or_backing(reopen_state, false, |
| 4801 | change_child_tran, errp); |
| 4802 | if (ret < 0) { |
| 4803 | goto error; |
| 4804 | } |
| 4805 | qdict_del(reopen_state->options, "file"); |
| 4806 | |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4807 | /* Options that are not handled are only okay if they are unchanged |
| 4808 | * compared to the old state. It is expected that some options are only |
| 4809 | * used for the initial open, but not reopen (e.g. filename) */ |
| 4810 | if (qdict_size(reopen_state->options)) { |
| 4811 | const QDictEntry *entry = qdict_first(reopen_state->options); |
| 4812 | |
| 4813 | do { |
Max Reitz | 54fd1b0 | 2017-11-14 19:01:26 +0100 | [diff] [blame] | 4814 | QObject *new = entry->value; |
| 4815 | QObject *old = qdict_get(reopen_state->bs->options, entry->key); |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4816 | |
Alberto Garcia | db90528 | 2018-09-06 12:37:05 +0300 | [diff] [blame] | 4817 | /* Allow child references (child_name=node_name) as long as they |
| 4818 | * point to the current child (i.e. everything stays the same). */ |
| 4819 | if (qobject_type(new) == QTYPE_QSTRING) { |
| 4820 | BdrvChild *child; |
| 4821 | QLIST_FOREACH(child, &reopen_state->bs->children, next) { |
| 4822 | if (!strcmp(child->name, entry->key)) { |
| 4823 | break; |
| 4824 | } |
| 4825 | } |
| 4826 | |
| 4827 | if (child) { |
Markus Armbruster | 410f44f | 2020-12-11 18:11:42 +0100 | [diff] [blame] | 4828 | if (!strcmp(child->bs->node_name, |
| 4829 | qstring_get_str(qobject_to(QString, new)))) { |
Alberto Garcia | db90528 | 2018-09-06 12:37:05 +0300 | [diff] [blame] | 4830 | continue; /* Found child with this name, skip option */ |
| 4831 | } |
| 4832 | } |
| 4833 | } |
| 4834 | |
Max Reitz | 54fd1b0 | 2017-11-14 19:01:26 +0100 | [diff] [blame] | 4835 | /* |
| 4836 | * TODO: When using -drive to specify blockdev options, all values |
| 4837 | * will be strings; however, when using -blockdev, blockdev-add or |
| 4838 | * filenames using the json:{} pseudo-protocol, they will be |
| 4839 | * correctly typed. |
| 4840 | * In contrast, reopening options are (currently) always strings |
| 4841 | * (because you can only specify them through qemu-io; all other |
| 4842 | * callers do not specify any options). |
| 4843 | * Therefore, when using anything other than -drive to create a BDS, |
| 4844 | * this cannot detect non-string options as unchanged, because |
| 4845 | * qobject_is_equal() always returns false for objects of different |
| 4846 | * type. In the future, this should be remedied by correctly typing |
| 4847 | * all options. For now, this is not too big of an issue because |
| 4848 | * the user can simply omit options which cannot be changed anyway, |
| 4849 | * so they will stay unchanged. |
| 4850 | */ |
| 4851 | if (!qobject_is_equal(new, old)) { |
Kevin Wolf | 4d2cb09 | 2015-04-10 17:50:50 +0200 | [diff] [blame] | 4852 | error_setg(errp, "Cannot change the option '%s'", entry->key); |
| 4853 | ret = -EINVAL; |
| 4854 | goto error; |
| 4855 | } |
| 4856 | } while ((entry = qdict_next(reopen_state->options, entry))); |
| 4857 | } |
| 4858 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4859 | ret = 0; |
| 4860 | |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4861 | /* Restore the original reopen_state->options QDict */ |
| 4862 | qobject_unref(reopen_state->options); |
| 4863 | reopen_state->options = qobject_ref(orig_reopen_opts); |
| 4864 | |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4865 | error: |
Max Reitz | 9ad08c4 | 2018-11-16 17:45:24 +0100 | [diff] [blame] | 4866 | if (ret < 0 && drv_prepared) { |
| 4867 | /* drv->bdrv_reopen_prepare() has succeeded, so we need to |
| 4868 | * call drv->bdrv_reopen_abort() before signaling an error |
| 4869 | * (bdrv_reopen_multiple() will not call bdrv_reopen_abort() |
| 4870 | * when the respective bdrv_reopen_prepare() has failed) */ |
| 4871 | if (drv->bdrv_reopen_abort) { |
| 4872 | drv->bdrv_reopen_abort(reopen_state); |
| 4873 | } |
| 4874 | } |
Kevin Wolf | ccf9dc0 | 2015-05-08 17:24:56 +0200 | [diff] [blame] | 4875 | qemu_opts_del(opts); |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4876 | qobject_unref(orig_reopen_opts); |
Alberto Garcia | 593b307 | 2018-09-06 12:37:08 +0300 | [diff] [blame] | 4877 | g_free(discard); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4878 | return ret; |
| 4879 | } |
| 4880 | |
| 4881 | /* |
| 4882 | * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and |
| 4883 | * makes them final by swapping the staging BlockDriverState contents into |
| 4884 | * the active BlockDriverState contents. |
| 4885 | */ |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 4886 | static void bdrv_reopen_commit(BDRVReopenState *reopen_state) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4887 | { |
| 4888 | BlockDriver *drv; |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 4889 | BlockDriverState *bs; |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4890 | BdrvChild *child; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4891 | |
| 4892 | assert(reopen_state != NULL); |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 4893 | bs = reopen_state->bs; |
| 4894 | drv = bs->drv; |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4895 | assert(drv != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 4896 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4897 | |
| 4898 | /* If there are any driver level actions to take */ |
| 4899 | if (drv->bdrv_reopen_commit) { |
| 4900 | drv->bdrv_reopen_commit(reopen_state); |
| 4901 | } |
| 4902 | |
| 4903 | /* set BDS specific flags now */ |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4904 | qobject_unref(bs->explicit_options); |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4905 | qobject_unref(bs->options); |
Alberto Garcia | ab5b5228 | 2021-07-08 13:47:05 +0200 | [diff] [blame] | 4906 | qobject_ref(reopen_state->explicit_options); |
| 4907 | qobject_ref(reopen_state->options); |
Kevin Wolf | 145f598 | 2015-05-08 16:15:03 +0200 | [diff] [blame] | 4908 | |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 4909 | bs->explicit_options = reopen_state->explicit_options; |
Alberto Garcia | 4c8350f | 2018-06-29 14:37:02 +0300 | [diff] [blame] | 4910 | bs->options = reopen_state->options; |
Vladimir Sementsov-Ogievskiy | 50bf65b | 2017-06-28 15:05:12 +0300 | [diff] [blame] | 4911 | bs->open_flags = reopen_state->flags; |
Alberto Garcia | 543770b | 2018-09-06 12:37:09 +0300 | [diff] [blame] | 4912 | bs->detect_zeroes = reopen_state->detect_zeroes; |
Kevin Wolf | 355ef4a | 2013-12-11 20:14:09 +0100 | [diff] [blame] | 4913 | |
Alberto Garcia | 50196d7 | 2018-09-06 12:37:03 +0300 | [diff] [blame] | 4914 | /* Remove child references from bs->options and bs->explicit_options. |
| 4915 | * Child options were already removed in bdrv_reopen_queue_child() */ |
| 4916 | QLIST_FOREACH(child, &bs->children, next) { |
| 4917 | qdict_del(bs->explicit_options, child->name); |
| 4918 | qdict_del(bs->options, child->name); |
| 4919 | } |
Vladimir Sementsov-Ogievskiy | 3d0e874 | 2021-06-10 15:05:35 +0300 | [diff] [blame] | 4920 | /* backing is probably removed, so it's not handled by previous loop */ |
| 4921 | qdict_del(bs->explicit_options, "backing"); |
| 4922 | qdict_del(bs->options, "backing"); |
| 4923 | |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 4924 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 4925 | bdrv_refresh_limits(bs, NULL, NULL); |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 4926 | bdrv_graph_rdunlock_main_loop(); |
Paolo Bonzini | 439cc33 | 2023-04-07 17:32:58 +0200 | [diff] [blame] | 4927 | bdrv_refresh_total_sectors(bs, bs->total_sectors); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4928 | } |
| 4929 | |
| 4930 | /* |
| 4931 | * Abort the reopen, and delete and free the staged changes in |
| 4932 | * reopen_state |
| 4933 | */ |
Vladimir Sementsov-Ogievskiy | 53e96d1 | 2021-04-28 18:17:35 +0300 | [diff] [blame] | 4934 | static void bdrv_reopen_abort(BDRVReopenState *reopen_state) |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4935 | { |
| 4936 | BlockDriver *drv; |
| 4937 | |
| 4938 | assert(reopen_state != NULL); |
| 4939 | drv = reopen_state->bs->drv; |
| 4940 | assert(drv != NULL); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 4941 | GLOBAL_STATE_CODE(); |
Jeff Cody | e971aa1 | 2012-09-20 15:13:19 -0400 | [diff] [blame] | 4942 | |
| 4943 | if (drv->bdrv_reopen_abort) { |
| 4944 | drv->bdrv_reopen_abort(reopen_state); |
| 4945 | } |
| 4946 | } |
| 4947 | |
| 4948 | |
Max Reitz | 64dff52 | 2016-01-29 16:36:10 +0100 | [diff] [blame] | 4949 | static void bdrv_close(BlockDriverState *bs) |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 4950 | { |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 4951 | BdrvAioNotifier *ban, *ban_next; |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4952 | BdrvChild *child, *next; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 4953 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 4954 | GLOBAL_STATE_CODE(); |
Max Reitz | 30f55fb | 2016-05-17 16:41:32 +0200 | [diff] [blame] | 4955 | assert(!bs->refcnt); |
Alberto Garcia | 99b7e77 | 2015-09-25 16:41:44 +0300 | [diff] [blame] | 4956 | |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 4957 | bdrv_drained_begin(bs); /* complete I/O */ |
Stefan Hajnoczi | 58fda17 | 2013-07-02 15:36:25 +0200 | [diff] [blame] | 4958 | bdrv_flush(bs); |
Fam Zheng | 53ec73e | 2015-05-29 18:53:14 +0800 | [diff] [blame] | 4959 | bdrv_drain(bs); /* in case flush left pending I/O */ |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 4960 | |
Paolo Bonzini | 3cbc002 | 2012-10-19 11:36:48 +0200 | [diff] [blame] | 4961 | if (bs->drv) { |
Vladimir Sementsov-Ogievskiy | 3c00529 | 2018-08-14 15:43:19 +0300 | [diff] [blame] | 4962 | if (bs->drv->bdrv_close) { |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 4963 | /* Must unfreeze all children, so bdrv_unref_child() works */ |
Vladimir Sementsov-Ogievskiy | 3c00529 | 2018-08-14 15:43:19 +0300 | [diff] [blame] | 4964 | bs->drv->bdrv_close(bs); |
| 4965 | } |
Kevin Wolf | 9a4f4c3 | 2015-06-16 14:19:22 +0200 | [diff] [blame] | 4966 | bs->drv = NULL; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 4967 | } |
Zhi Yong Wu | 98f90db | 2011-11-08 13:00:14 +0800 | [diff] [blame] | 4968 | |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4969 | QLIST_FOREACH_SAFE(child, &bs->children, next, next) { |
Alberto Garcia | dd4118c | 2019-05-13 16:46:17 +0300 | [diff] [blame] | 4970 | bdrv_unref_child(bs, child); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4971 | } |
| 4972 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 4973 | assert(!bs->backing); |
| 4974 | assert(!bs->file); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4975 | g_free(bs->opaque); |
| 4976 | bs->opaque = NULL; |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 4977 | qatomic_set(&bs->copy_on_read, 0); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4978 | bs->backing_file[0] = '\0'; |
| 4979 | bs->backing_format[0] = '\0'; |
| 4980 | bs->total_sectors = 0; |
| 4981 | bs->encrypted = false; |
| 4982 | bs->sg = false; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4983 | qobject_unref(bs->options); |
| 4984 | qobject_unref(bs->explicit_options); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4985 | bs->options = NULL; |
| 4986 | bs->explicit_options = NULL; |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 4987 | qobject_unref(bs->full_open_options); |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4988 | bs->full_open_options = NULL; |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 4989 | g_free(bs->block_status_cache); |
| 4990 | bs->block_status_cache = NULL; |
Alberto Garcia | 50a3efb | 2017-11-06 16:53:45 +0200 | [diff] [blame] | 4991 | |
Vladimir Sementsov-Ogievskiy | cca43ae | 2017-06-28 15:05:16 +0300 | [diff] [blame] | 4992 | bdrv_release_named_dirty_bitmaps(bs); |
| 4993 | assert(QLIST_EMPTY(&bs->dirty_bitmaps)); |
| 4994 | |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 4995 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
| 4996 | g_free(ban); |
| 4997 | } |
| 4998 | QLIST_INIT(&bs->aio_notifiers); |
Paolo Bonzini | fc27291 | 2015-12-23 11:48:24 +0100 | [diff] [blame] | 4999 | bdrv_drained_end(bs); |
Greg Kurz | 1a6d3bd | 2020-10-23 17:01:10 +0200 | [diff] [blame] | 5000 | |
| 5001 | /* |
| 5002 | * If we're still inside some bdrv_drain_all_begin()/end() sections, end |
| 5003 | * them now since this BDS won't exist anymore when bdrv_drain_all_end() |
| 5004 | * gets called. |
| 5005 | */ |
| 5006 | if (bs->quiesce_counter) { |
| 5007 | bdrv_drain_all_end_quiesce(bs); |
| 5008 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 5009 | } |
| 5010 | |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 5011 | void bdrv_close_all(void) |
| 5012 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5013 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | 880eeec | 2022-09-26 05:32:04 -0400 | [diff] [blame] | 5014 | assert(job_next(NULL) == NULL); |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 5015 | |
Max Reitz | ca9bd24 | 2016-01-29 16:36:14 +0100 | [diff] [blame] | 5016 | /* Drop references from requests still in flight, such as canceled block |
| 5017 | * jobs whose AIO context has not been polled yet */ |
| 5018 | bdrv_drain_all(); |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 5019 | |
Max Reitz | ca9bd24 | 2016-01-29 16:36:14 +0100 | [diff] [blame] | 5020 | blk_remove_all_bs(); |
| 5021 | blockdev_close_all_bdrv_states(); |
| 5022 | |
Kevin Wolf | a1a2af0 | 2016-04-08 18:26:37 +0200 | [diff] [blame] | 5023 | assert(QTAILQ_EMPTY(&all_bdrv_states)); |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 5024 | } |
| 5025 | |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5026 | static bool should_update_child(BdrvChild *c, BlockDriverState *to) |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5027 | { |
Vladimir Sementsov-Ogievskiy | 2f30b7c | 2019-02-23 22:20:39 +0300 | [diff] [blame] | 5028 | GQueue *queue; |
| 5029 | GHashTable *found; |
| 5030 | bool ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5031 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5032 | if (c->klass->stay_at_node) { |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5033 | return false; |
| 5034 | } |
| 5035 | |
Max Reitz | ec9f10f | 2018-06-13 20:18:15 +0200 | [diff] [blame] | 5036 | /* If the child @c belongs to the BDS @to, replacing the current |
| 5037 | * c->bs by @to would mean to create a loop. |
| 5038 | * |
| 5039 | * Such a case occurs when appending a BDS to a backing chain. |
| 5040 | * For instance, imagine the following chain: |
| 5041 | * |
| 5042 | * guest device -> node A -> further backing chain... |
| 5043 | * |
| 5044 | * Now we create a new BDS B which we want to put on top of this |
| 5045 | * chain, so we first attach A as its backing node: |
| 5046 | * |
| 5047 | * node B |
| 5048 | * | |
| 5049 | * v |
| 5050 | * guest device -> node A -> further backing chain... |
| 5051 | * |
| 5052 | * Finally we want to replace A by B. When doing that, we want to |
| 5053 | * replace all pointers to A by pointers to B -- except for the |
| 5054 | * pointer from B because (1) that would create a loop, and (2) |
| 5055 | * that pointer should simply stay intact: |
| 5056 | * |
| 5057 | * guest device -> node B |
| 5058 | * | |
| 5059 | * v |
| 5060 | * node A -> further backing chain... |
| 5061 | * |
| 5062 | * In general, when replacing a node A (c->bs) by a node B (@to), |
| 5063 | * if A is a child of B, that means we cannot replace A by B there |
| 5064 | * because that would create a loop. Silently detaching A from B |
| 5065 | * 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] | 5066 | * place there is the most sensible choice. |
| 5067 | * |
| 5068 | * We would also create a loop in any cases where @c is only |
| 5069 | * indirectly referenced by @to. Prevent this by returning false |
| 5070 | * if @c is found (by breadth-first search) anywhere in the whole |
| 5071 | * subtree of @to. |
| 5072 | */ |
| 5073 | |
| 5074 | ret = true; |
| 5075 | found = g_hash_table_new(NULL, NULL); |
| 5076 | g_hash_table_add(found, to); |
| 5077 | queue = g_queue_new(); |
| 5078 | g_queue_push_tail(queue, to); |
| 5079 | |
| 5080 | while (!g_queue_is_empty(queue)) { |
| 5081 | BlockDriverState *v = g_queue_pop_head(queue); |
| 5082 | BdrvChild *c2; |
| 5083 | |
| 5084 | QLIST_FOREACH(c2, &v->children, next) { |
| 5085 | if (c2 == c) { |
| 5086 | ret = false; |
| 5087 | break; |
| 5088 | } |
| 5089 | |
| 5090 | if (g_hash_table_contains(found, c2->bs)) { |
| 5091 | continue; |
| 5092 | } |
| 5093 | |
| 5094 | g_queue_push_tail(queue, c2->bs); |
| 5095 | g_hash_table_add(found, c2->bs); |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5096 | } |
| 5097 | } |
| 5098 | |
Vladimir Sementsov-Ogievskiy | 2f30b7c | 2019-02-23 22:20:39 +0300 | [diff] [blame] | 5099 | g_queue_free(queue); |
| 5100 | g_hash_table_destroy(found); |
| 5101 | |
| 5102 | return ret; |
Kevin Wolf | d0ac038 | 2017-03-01 17:30:41 +0100 | [diff] [blame] | 5103 | } |
| 5104 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5105 | static void bdrv_remove_child_commit(void *opaque) |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5106 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 5107 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5108 | bdrv_child_free(opaque); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5109 | } |
| 5110 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5111 | static TransactionActionDrv bdrv_remove_child_drv = { |
| 5112 | .commit = bdrv_remove_child_commit, |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5113 | }; |
| 5114 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5115 | /* Function doesn't update permissions, caller is responsible for this. */ |
| 5116 | static void bdrv_remove_child(BdrvChild *child, Transaction *tran) |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5117 | { |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5118 | if (!child) { |
| 5119 | return; |
| 5120 | } |
| 5121 | |
| 5122 | if (child->bs) { |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 5123 | BlockDriverState *bs = child->bs; |
| 5124 | bdrv_drained_begin(bs); |
Vladimir Sementsov-Ogievskiy | a2c37a3 | 2022-07-26 23:11:30 +0300 | [diff] [blame] | 5125 | bdrv_replace_child_tran(child, NULL, tran); |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 5126 | bdrv_drained_end(bs); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5127 | } |
| 5128 | |
Vladimir Sementsov-Ogievskiy | 57f0894 | 2022-07-26 23:11:34 +0300 | [diff] [blame] | 5129 | tran_add(tran, &bdrv_remove_child_drv, child); |
Vladimir Sementsov-Ogievskiy | 46541ee | 2021-04-28 18:17:50 +0300 | [diff] [blame] | 5130 | } |
| 5131 | |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 5132 | static void undrain_on_clean_cb(void *opaque) |
| 5133 | { |
| 5134 | bdrv_drained_end(opaque); |
| 5135 | } |
| 5136 | |
| 5137 | static TransactionActionDrv undrain_on_clean = { |
| 5138 | .clean = undrain_on_clean_cb, |
| 5139 | }; |
| 5140 | |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5141 | static int bdrv_replace_node_noperm(BlockDriverState *from, |
| 5142 | BlockDriverState *to, |
| 5143 | bool auto_skip, Transaction *tran, |
| 5144 | Error **errp) |
| 5145 | { |
| 5146 | BdrvChild *c, *next; |
| 5147 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 5148 | GLOBAL_STATE_CODE(); |
Hanna Reitz | 82b54cf | 2021-11-15 15:54:04 +0100 | [diff] [blame] | 5149 | |
Kevin Wolf | 2398747 | 2022-11-18 18:41:09 +0100 | [diff] [blame] | 5150 | bdrv_drained_begin(from); |
| 5151 | bdrv_drained_begin(to); |
| 5152 | tran_add(tran, &undrain_on_clean, from); |
| 5153 | tran_add(tran, &undrain_on_clean, to); |
| 5154 | |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5155 | QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { |
| 5156 | assert(c->bs == from); |
| 5157 | if (!should_update_child(c, to)) { |
| 5158 | if (auto_skip) { |
| 5159 | continue; |
| 5160 | } |
| 5161 | error_setg(errp, "Should not change '%s' link to '%s'", |
| 5162 | c->name, from->node_name); |
| 5163 | return -EINVAL; |
| 5164 | } |
| 5165 | if (c->frozen) { |
| 5166 | error_setg(errp, "Cannot change '%s' link to '%s'", |
| 5167 | c->name, from->node_name); |
| 5168 | return -EPERM; |
| 5169 | } |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 5170 | bdrv_replace_child_tran(c, to, tran); |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5171 | } |
| 5172 | |
| 5173 | return 0; |
| 5174 | } |
| 5175 | |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5176 | /* |
| 5177 | * With auto_skip=true bdrv_replace_node_common skips updating from parents |
| 5178 | * if it creates a parent-child relation loop or if parent is block-job. |
| 5179 | * |
| 5180 | * With auto_skip=false the error is returned if from has a parent which should |
| 5181 | * not be updated. |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5182 | * |
| 5183 | * With @detach_subchain=true @to must be in a backing chain of @from. In this |
| 5184 | * case backing link of the cow-parent of @to is removed. |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5185 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5186 | static int bdrv_replace_node_common(BlockDriverState *from, |
| 5187 | BlockDriverState *to, |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5188 | bool auto_skip, bool detach_subchain, |
| 5189 | Error **errp) |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5190 | { |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5191 | Transaction *tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5192 | g_autoptr(GSList) refresh_list = NULL; |
Miroslav Rezanina | 2d369d6 | 2021-05-05 03:59:03 -0400 | [diff] [blame] | 5193 | BlockDriverState *to_cow_parent = NULL; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5194 | int ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5195 | |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 5196 | GLOBAL_STATE_CODE(); |
Hanna Reitz | 82b54cf | 2021-11-15 15:54:04 +0100 | [diff] [blame] | 5197 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5198 | if (detach_subchain) { |
| 5199 | assert(bdrv_chain_contains(from, to)); |
| 5200 | assert(from != to); |
| 5201 | for (to_cow_parent = from; |
| 5202 | bdrv_filter_or_cow_bs(to_cow_parent) != to; |
| 5203 | to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent)) |
| 5204 | { |
| 5205 | ; |
| 5206 | } |
| 5207 | } |
| 5208 | |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5209 | /* Make sure that @from doesn't go away until we have successfully attached |
| 5210 | * all of its parents to @to. */ |
| 5211 | bdrv_ref(from); |
| 5212 | |
Kevin Wolf | f871abd | 2019-05-21 19:00:25 +0200 | [diff] [blame] | 5213 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
Kevin Wolf | 30dd65f | 2020-03-10 12:38:29 +0100 | [diff] [blame] | 5214 | assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to)); |
Kevin Wolf | f871abd | 2019-05-21 19:00:25 +0200 | [diff] [blame] | 5215 | bdrv_drained_begin(from); |
| 5216 | |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5217 | /* |
| 5218 | * Do the replacement without permission update. |
| 5219 | * Replacement may influence the permissions, we should calculate new |
| 5220 | * permissions based on new graph. If we fail, we'll roll-back the |
| 5221 | * replacement. |
| 5222 | */ |
Vladimir Sementsov-Ogievskiy | 117caba | 2021-04-28 18:17:48 +0300 | [diff] [blame] | 5223 | ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp); |
| 5224 | if (ret < 0) { |
| 5225 | goto out; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5226 | } |
| 5227 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5228 | if (detach_subchain) { |
Vladimir Sementsov-Ogievskiy | f38eaec | 2022-11-07 19:35:56 +0300 | [diff] [blame] | 5229 | 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] | 5230 | } |
| 5231 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 5232 | refresh_list = g_slist_prepend(refresh_list, to); |
| 5233 | refresh_list = g_slist_prepend(refresh_list, from); |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5234 | |
| 5235 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5236 | if (ret < 0) { |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5237 | goto out; |
| 5238 | } |
| 5239 | |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5240 | ret = 0; |
| 5241 | |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5242 | out: |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 5243 | tran_finalize(tran, ret); |
| 5244 | |
Kevin Wolf | f871abd | 2019-05-21 19:00:25 +0200 | [diff] [blame] | 5245 | bdrv_drained_end(from); |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5246 | bdrv_unref(from); |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5247 | |
| 5248 | return ret; |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5249 | } |
| 5250 | |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5251 | int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, |
| 5252 | Error **errp) |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5253 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5254 | GLOBAL_STATE_CODE(); |
| 5255 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5256 | return bdrv_replace_node_common(from, to, true, false, errp); |
| 5257 | } |
| 5258 | |
| 5259 | int bdrv_drop_filter(BlockDriverState *bs, Error **errp) |
| 5260 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5261 | GLOBAL_STATE_CODE(); |
| 5262 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5263 | return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true, |
| 5264 | errp); |
Vladimir Sementsov-Ogievskiy | 313274b | 2020-11-06 15:42:36 +0300 | [diff] [blame] | 5265 | } |
| 5266 | |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5267 | /* |
| 5268 | * Add new bs contents at the top of an image chain while the chain is |
| 5269 | * live, while keeping required fields on the top layer. |
| 5270 | * |
| 5271 | * This will modify the BlockDriverState fields, and swap contents |
| 5272 | * between bs_new and bs_top. Both bs_new and bs_top are modified. |
| 5273 | * |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5274 | * bs_new must not be attached to a BlockBackend and must not have backing |
| 5275 | * child. |
Jeff Cody | f6801b8 | 2012-03-27 16:30:19 -0400 | [diff] [blame] | 5276 | * |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5277 | * This function does not create any image files. |
Stefano Garzarella | 60d90bf | 2023-02-14 18:16:21 +0100 | [diff] [blame] | 5278 | * |
| 5279 | * The caller must hold the AioContext lock for @bs_top. |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5280 | */ |
Vladimir Sementsov-Ogievskiy | a1e708f | 2021-02-02 15:49:43 +0300 | [diff] [blame] | 5281 | int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, |
| 5282 | Error **errp) |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5283 | { |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5284 | int ret; |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5285 | BdrvChild *child; |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5286 | Transaction *tran = tran_new(); |
Stefano Garzarella | 60d90bf | 2023-02-14 18:16:21 +0100 | [diff] [blame] | 5287 | AioContext *old_context, *new_context = NULL; |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5288 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5289 | GLOBAL_STATE_CODE(); |
| 5290 | |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5291 | assert(!bs_new->backing); |
| 5292 | |
Stefano Garzarella | 60d90bf | 2023-02-14 18:16:21 +0100 | [diff] [blame] | 5293 | old_context = bdrv_get_aio_context(bs_top); |
| 5294 | |
Vladimir Sementsov-Ogievskiy | 5bb04747 | 2022-07-26 23:11:32 +0300 | [diff] [blame] | 5295 | child = bdrv_attach_child_noperm(bs_new, bs_top, "backing", |
| 5296 | &child_of_bds, bdrv_backing_role(bs_new), |
| 5297 | tran, errp); |
| 5298 | if (!child) { |
| 5299 | ret = -EINVAL; |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5300 | goto out; |
Kevin Wolf | b2c2832 | 2017-02-20 12:46:42 +0100 | [diff] [blame] | 5301 | } |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5302 | |
Stefano Garzarella | 60d90bf | 2023-02-14 18:16:21 +0100 | [diff] [blame] | 5303 | /* |
| 5304 | * bdrv_attach_child_noperm could change the AioContext of bs_top. |
| 5305 | * bdrv_replace_node_noperm calls bdrv_drained_begin, so let's temporarily |
| 5306 | * hold the new AioContext, since bdrv_drained_begin calls BDRV_POLL_WHILE |
| 5307 | * that assumes the new lock is taken. |
| 5308 | */ |
| 5309 | new_context = bdrv_get_aio_context(bs_top); |
| 5310 | |
| 5311 | if (old_context != new_context) { |
| 5312 | aio_context_release(old_context); |
| 5313 | aio_context_acquire(new_context); |
| 5314 | } |
| 5315 | |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5316 | 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] | 5317 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5318 | goto out; |
Kevin Wolf | 234ac1a | 2017-03-02 18:43:00 +0100 | [diff] [blame] | 5319 | } |
Kevin Wolf | dd62f1c | 2015-06-18 14:09:57 +0200 | [diff] [blame] | 5320 | |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 5321 | ret = bdrv_refresh_perms(bs_new, tran, errp); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5322 | out: |
| 5323 | tran_finalize(tran, ret); |
| 5324 | |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 5325 | bdrv_graph_rdlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 1e4c797 | 2021-04-28 18:17:55 +0300 | [diff] [blame] | 5326 | bdrv_refresh_limits(bs_top, NULL, NULL); |
Kevin Wolf | e19b157 | 2023-05-04 13:57:50 +0200 | [diff] [blame] | 5327 | bdrv_graph_rdunlock_main_loop(); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5328 | |
Stefano Garzarella | 60d90bf | 2023-02-14 18:16:21 +0100 | [diff] [blame] | 5329 | if (new_context && old_context != new_context) { |
| 5330 | aio_context_release(new_context); |
| 5331 | aio_context_acquire(old_context); |
| 5332 | } |
| 5333 | |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 5334 | return ret; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 5335 | } |
| 5336 | |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5337 | /* Not for empty child */ |
| 5338 | int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs, |
| 5339 | Error **errp) |
| 5340 | { |
| 5341 | int ret; |
| 5342 | Transaction *tran = tran_new(); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5343 | g_autoptr(GSList) refresh_list = NULL; |
| 5344 | BlockDriverState *old_bs = child->bs; |
| 5345 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5346 | GLOBAL_STATE_CODE(); |
| 5347 | |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5348 | bdrv_ref(old_bs); |
| 5349 | bdrv_drained_begin(old_bs); |
| 5350 | bdrv_drained_begin(new_bs); |
| 5351 | |
Vladimir Sementsov-Ogievskiy | 0f0b1e2 | 2022-07-26 23:11:29 +0300 | [diff] [blame] | 5352 | bdrv_replace_child_tran(child, new_bs, tran); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5353 | |
Vladimir Sementsov-Ogievskiy | fb0ff4d | 2022-11-07 19:35:58 +0300 | [diff] [blame] | 5354 | refresh_list = g_slist_prepend(refresh_list, old_bs); |
| 5355 | refresh_list = g_slist_prepend(refresh_list, new_bs); |
Vladimir Sementsov-Ogievskiy | bd8f4c4 | 2021-08-24 11:38:23 +0300 | [diff] [blame] | 5356 | |
| 5357 | ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); |
| 5358 | |
| 5359 | tran_finalize(tran, ret); |
| 5360 | |
| 5361 | bdrv_drained_end(old_bs); |
| 5362 | bdrv_drained_end(new_bs); |
| 5363 | bdrv_unref(old_bs); |
| 5364 | |
| 5365 | return ret; |
| 5366 | } |
| 5367 | |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 5368 | static void bdrv_delete(BlockDriverState *bs) |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 5369 | { |
Fam Zheng | 3718d8a | 2014-05-23 21:29:43 +0800 | [diff] [blame] | 5370 | assert(bdrv_op_blocker_is_empty(bs)); |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 5371 | assert(!bs->refcnt); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5372 | GLOBAL_STATE_CODE(); |
Markus Armbruster | 18846de | 2010-06-29 16:58:30 +0200 | [diff] [blame] | 5373 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 5374 | /* remove from list, if necessary */ |
Kevin Wolf | 63eaaae | 2016-03-18 10:46:57 +0100 | [diff] [blame] | 5375 | if (bs->node_name[0] != '\0') { |
| 5376 | QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); |
| 5377 | } |
Max Reitz | 2c1d04e | 2016-01-29 16:36:11 +0100 | [diff] [blame] | 5378 | QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); |
| 5379 | |
Anton Kuchin | 30c321f | 2019-05-07 11:12:56 +0300 | [diff] [blame] | 5380 | bdrv_close(bs); |
| 5381 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 5382 | g_free(bs); |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5383 | } |
| 5384 | |
Vladimir Sementsov-Ogievskiy | 96796fa | 2021-09-20 14:55:36 +0300 | [diff] [blame] | 5385 | |
| 5386 | /* |
| 5387 | * Replace @bs by newly created block node. |
| 5388 | * |
| 5389 | * @options is a QDict of options to pass to the block drivers, or NULL for an |
| 5390 | * empty set of options. The reference to the QDict belongs to the block layer |
| 5391 | * after the call (even on failure), so if the caller intends to reuse the |
| 5392 | * dictionary, it needs to use qobject_ref() before calling bdrv_open. |
| 5393 | */ |
| 5394 | BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options, |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5395 | int flags, Error **errp) |
| 5396 | { |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame] | 5397 | ERRP_GUARD(); |
| 5398 | int ret; |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5399 | BlockDriverState *new_node_bs = NULL; |
| 5400 | const char *drvname, *node_name; |
| 5401 | BlockDriver *drv; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5402 | |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5403 | drvname = qdict_get_try_str(options, "driver"); |
| 5404 | if (!drvname) { |
| 5405 | error_setg(errp, "driver is not specified"); |
| 5406 | goto fail; |
| 5407 | } |
| 5408 | |
| 5409 | drv = bdrv_find_format(drvname); |
| 5410 | if (!drv) { |
| 5411 | error_setg(errp, "Unknown driver: '%s'", drvname); |
| 5412 | goto fail; |
| 5413 | } |
| 5414 | |
| 5415 | node_name = qdict_get_try_str(options, "node-name"); |
| 5416 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5417 | GLOBAL_STATE_CODE(); |
| 5418 | |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5419 | new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags, |
| 5420 | errp); |
| 5421 | options = NULL; /* bdrv_new_open_driver() eats options */ |
| 5422 | if (!new_node_bs) { |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5423 | error_prepend(errp, "Could not create node: "); |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5424 | goto fail; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5425 | } |
| 5426 | |
| 5427 | bdrv_drained_begin(bs); |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame] | 5428 | ret = bdrv_replace_node(bs, new_node_bs, errp); |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5429 | bdrv_drained_end(bs); |
| 5430 | |
Vladimir Sementsov-Ogievskiy | f053b7e | 2021-09-20 14:55:35 +0300 | [diff] [blame] | 5431 | if (ret < 0) { |
| 5432 | error_prepend(errp, "Could not replace node: "); |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5433 | goto fail; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5434 | } |
| 5435 | |
| 5436 | return new_node_bs; |
Vladimir Sementsov-Ogievskiy | b11c873 | 2021-09-20 14:55:37 +0300 | [diff] [blame] | 5437 | |
| 5438 | fail: |
| 5439 | qobject_unref(options); |
| 5440 | bdrv_unref(new_node_bs); |
| 5441 | return NULL; |
Andrey Shinkevich | 8872ef7 | 2020-12-16 09:16:52 +0300 | [diff] [blame] | 5442 | } |
| 5443 | |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5444 | /* |
| 5445 | * Run consistency checks on an image |
| 5446 | * |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 5447 | * 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] | 5448 | * 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] | 5449 | * check are stored in res. |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5450 | */ |
Vladimir Sementsov-Ogievskiy | 21c2283 | 2020-09-24 21:54:10 +0300 | [diff] [blame] | 5451 | int coroutine_fn bdrv_co_check(BlockDriverState *bs, |
| 5452 | BdrvCheckResult *res, BdrvCheckMode fix) |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5453 | { |
Emanuele Giuseppe Esposito | 1581a70 | 2022-03-03 10:16:09 -0500 | [diff] [blame] | 5454 | IO_CODE(); |
Kevin Wolf | 1b3ff9f | 2022-12-07 14:18:38 +0100 | [diff] [blame] | 5455 | assert_bdrv_graph_readable(); |
Max Reitz | 908bcd5 | 2014-08-07 22:47:55 +0200 | [diff] [blame] | 5456 | if (bs->drv == NULL) { |
| 5457 | return -ENOMEDIUM; |
| 5458 | } |
Paolo Bonzini | 2fd6163 | 2018-03-01 17:36:19 +0100 | [diff] [blame] | 5459 | if (bs->drv->bdrv_co_check == NULL) { |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 5460 | return -ENOTSUP; |
| 5461 | } |
| 5462 | |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 5463 | memset(res, 0, sizeof(*res)); |
Paolo Bonzini | 2fd6163 | 2018-03-01 17:36:19 +0100 | [diff] [blame] | 5464 | return bs->drv->bdrv_co_check(bs, res, fix); |
| 5465 | } |
| 5466 | |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5467 | /* |
| 5468 | * Return values: |
| 5469 | * 0 - success |
| 5470 | * -EINVAL - backing format specified, but no file |
| 5471 | * -ENOSPC - can't update the backing file because no space is left in the |
| 5472 | * image file header |
| 5473 | * -ENOTSUP - format driver doesn't support changing the backing file |
| 5474 | */ |
Eric Blake | e54ee1b | 2020-07-06 15:39:53 -0500 | [diff] [blame] | 5475 | int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file, |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 5476 | const char *backing_fmt, bool require) |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5477 | { |
| 5478 | BlockDriver *drv = bs->drv; |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5479 | int ret; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5480 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5481 | GLOBAL_STATE_CODE(); |
| 5482 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 5483 | if (!drv) { |
| 5484 | return -ENOMEDIUM; |
| 5485 | } |
| 5486 | |
Paolo Bonzini | 5f37779 | 2012-04-12 14:01:01 +0200 | [diff] [blame] | 5487 | /* Backing file format doesn't make sense without a backing file */ |
| 5488 | if (backing_fmt && !backing_file) { |
| 5489 | return -EINVAL; |
| 5490 | } |
| 5491 | |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 5492 | if (require && backing_file && !backing_fmt) { |
| 5493 | return -EINVAL; |
Eric Blake | e54ee1b | 2020-07-06 15:39:53 -0500 | [diff] [blame] | 5494 | } |
| 5495 | |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5496 | if (drv->bdrv_change_backing_file != NULL) { |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5497 | ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5498 | } else { |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5499 | ret = -ENOTSUP; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5500 | } |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5501 | |
| 5502 | if (ret == 0) { |
| 5503 | pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); |
| 5504 | pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); |
Max Reitz | 998c201 | 2019-02-01 20:29:08 +0100 | [diff] [blame] | 5505 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
| 5506 | backing_file ?: ""); |
Paolo Bonzini | 469ef35 | 2012-04-12 14:01:02 +0200 | [diff] [blame] | 5507 | } |
| 5508 | return ret; |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 5509 | } |
| 5510 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5511 | /* |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5512 | * Finds the first non-filter node above bs in the chain between |
| 5513 | * active and bs. The returned node is either an immediate parent of |
| 5514 | * bs, or there are only filter nodes between the two. |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5515 | * |
| 5516 | * Returns NULL if bs is not found in active's image chain, |
| 5517 | * or if active == bs. |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5518 | * |
| 5519 | * Returns the bottommost base image if bs == NULL. |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5520 | */ |
| 5521 | BlockDriverState *bdrv_find_overlay(BlockDriverState *active, |
| 5522 | BlockDriverState *bs) |
| 5523 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5524 | |
| 5525 | GLOBAL_STATE_CODE(); |
| 5526 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5527 | bs = bdrv_skip_filters(bs); |
| 5528 | active = bdrv_skip_filters(active); |
| 5529 | |
| 5530 | while (active) { |
| 5531 | BlockDriverState *next = bdrv_backing_chain_next(active); |
| 5532 | if (bs == next) { |
| 5533 | return active; |
| 5534 | } |
| 5535 | active = next; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5536 | } |
| 5537 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 5538 | return NULL; |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5539 | } |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5540 | |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5541 | /* Given a BDS, searches for the base layer. */ |
| 5542 | BlockDriverState *bdrv_find_base(BlockDriverState *bs) |
| 5543 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5544 | GLOBAL_STATE_CODE(); |
| 5545 | |
Jeff Cody | 4caf0fc | 2014-06-25 15:35:26 -0400 | [diff] [blame] | 5546 | return bdrv_find_overlay(bs, NULL); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5547 | } |
| 5548 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5549 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5550 | * Return true if at least one of the COW (backing) and filter links |
| 5551 | * 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] | 5552 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5553 | */ |
| 5554 | bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base, |
| 5555 | Error **errp) |
| 5556 | { |
| 5557 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5558 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5559 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5560 | GLOBAL_STATE_CODE(); |
| 5561 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5562 | for (i = bs; i != base; i = child_bs(child)) { |
| 5563 | child = bdrv_filter_or_cow_child(i); |
| 5564 | |
| 5565 | if (child && child->frozen) { |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5566 | error_setg(errp, "Cannot change '%s' link from '%s' to '%s'", |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5567 | child->name, i->node_name, child->bs->node_name); |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5568 | return true; |
| 5569 | } |
| 5570 | } |
| 5571 | |
| 5572 | return false; |
| 5573 | } |
| 5574 | |
| 5575 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5576 | * Freeze all COW (backing) and filter links between @bs and @base. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5577 | * If any of the links is already frozen the operation is aborted and |
| 5578 | * none of the links are modified. |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5579 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5580 | * Returns 0 on success. On failure returns < 0 and sets @errp. |
| 5581 | */ |
| 5582 | int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base, |
| 5583 | Error **errp) |
| 5584 | { |
| 5585 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5586 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5587 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5588 | GLOBAL_STATE_CODE(); |
| 5589 | |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5590 | if (bdrv_is_backing_chain_frozen(bs, base, errp)) { |
| 5591 | return -EPERM; |
| 5592 | } |
| 5593 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5594 | for (i = bs; i != base; i = child_bs(child)) { |
| 5595 | child = bdrv_filter_or_cow_child(i); |
| 5596 | if (child && child->bs->never_freeze) { |
Max Reitz | e5182c1 | 2019-07-03 19:28:02 +0200 | [diff] [blame] | 5597 | error_setg(errp, "Cannot freeze '%s' link to '%s'", |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5598 | child->name, child->bs->node_name); |
Max Reitz | e5182c1 | 2019-07-03 19:28:02 +0200 | [diff] [blame] | 5599 | return -EPERM; |
| 5600 | } |
| 5601 | } |
| 5602 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5603 | for (i = bs; i != base; i = child_bs(child)) { |
| 5604 | child = bdrv_filter_or_cow_child(i); |
| 5605 | if (child) { |
| 5606 | child->frozen = true; |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5607 | } |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5608 | } |
| 5609 | |
| 5610 | return 0; |
| 5611 | } |
| 5612 | |
| 5613 | /* |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5614 | * Unfreeze all COW (backing) and filter links between @bs and @base. |
| 5615 | * The caller must ensure that all links are frozen before using this |
| 5616 | * function. |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5617 | * @base must be reachable from @bs, or NULL. |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5618 | */ |
| 5619 | void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base) |
| 5620 | { |
| 5621 | BlockDriverState *i; |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5622 | BdrvChild *child; |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5623 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5624 | GLOBAL_STATE_CODE(); |
| 5625 | |
Max Reitz | 7b99a26 | 2019-06-12 16:07:11 +0200 | [diff] [blame] | 5626 | for (i = bs; i != base; i = child_bs(child)) { |
| 5627 | child = bdrv_filter_or_cow_child(i); |
| 5628 | if (child) { |
| 5629 | assert(child->frozen); |
| 5630 | child->frozen = false; |
Alberto Garcia | 0f0998f | 2019-03-28 18:25:09 +0200 | [diff] [blame] | 5631 | } |
Alberto Garcia | 2cad1eb | 2019-03-12 18:48:40 +0200 | [diff] [blame] | 5632 | } |
| 5633 | } |
| 5634 | |
| 5635 | /* |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5636 | * Drops images above 'base' up to and including 'top', and sets the image |
| 5637 | * above 'top' to have base as its backing file. |
| 5638 | * |
| 5639 | * Requires that the overlay to 'top' is opened r/w, so that the backing file |
| 5640 | * information in 'bs' can be properly updated. |
| 5641 | * |
| 5642 | * E.g., this will convert the following chain: |
| 5643 | * bottom <- base <- intermediate <- top <- active |
| 5644 | * |
| 5645 | * to |
| 5646 | * |
| 5647 | * bottom <- base <- active |
| 5648 | * |
| 5649 | * It is allowed for bottom==base, in which case it converts: |
| 5650 | * |
| 5651 | * base <- intermediate <- top <- active |
| 5652 | * |
| 5653 | * to |
| 5654 | * |
| 5655 | * base <- active |
| 5656 | * |
Jeff Cody | 54e2690 | 2014-06-25 15:40:10 -0400 | [diff] [blame] | 5657 | * If backing_file_str is non-NULL, it will be used when modifying top's |
| 5658 | * overlay image metadata. |
| 5659 | * |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5660 | * Error conditions: |
| 5661 | * if active == top, that is considered an error |
| 5662 | * |
| 5663 | */ |
Kevin Wolf | bde7071 | 2017-06-27 20:36:18 +0200 | [diff] [blame] | 5664 | int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, |
| 5665 | const char *backing_file_str) |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5666 | { |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5667 | BlockDriverState *explicit_top = top; |
| 5668 | bool update_inherits_from; |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5669 | BdrvChild *c; |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5670 | Error *local_err = NULL; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5671 | int ret = -EIO; |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5672 | g_autoptr(GSList) updated_children = NULL; |
| 5673 | GSList *p; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5674 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5675 | GLOBAL_STATE_CODE(); |
| 5676 | |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5677 | bdrv_ref(top); |
Kevin Wolf | 631086d | 2022-11-18 18:41:03 +0100 | [diff] [blame] | 5678 | bdrv_drained_begin(base); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5679 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5680 | if (!top->drv || !base->drv) { |
| 5681 | goto exit; |
| 5682 | } |
| 5683 | |
Kevin Wolf | 5db15a5 | 2015-09-14 15:33:33 +0200 | [diff] [blame] | 5684 | /* Make sure that base is in the backing chain of top */ |
| 5685 | if (!bdrv_chain_contains(top, base)) { |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5686 | goto exit; |
| 5687 | } |
| 5688 | |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5689 | /* If 'base' recursively inherits from 'top' then we should set |
| 5690 | * base->inherits_from to top->inherits_from after 'top' and all |
| 5691 | * other intermediate nodes have been dropped. |
| 5692 | * If 'top' is an implicit node (e.g. "commit_top") we should skip |
| 5693 | * 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] | 5694 | explicit_top = bdrv_skip_implicit_filters(explicit_top); |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5695 | update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top); |
| 5696 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5697 | /* success - we can delete the intermediate states, and link top->base */ |
Max Reitz | f30c66b | 2019-02-01 20:29:05 +0100 | [diff] [blame] | 5698 | if (!backing_file_str) { |
| 5699 | bdrv_refresh_filename(base); |
| 5700 | backing_file_str = base->filename; |
| 5701 | } |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5702 | |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5703 | QLIST_FOREACH(c, &top->parents, next_parent) { |
| 5704 | updated_children = g_slist_prepend(updated_children, c); |
| 5705 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5706 | |
Vladimir Sementsov-Ogievskiy | 3108a15 | 2021-04-28 18:17:51 +0300 | [diff] [blame] | 5707 | /* |
| 5708 | * It seems correct to pass detach_subchain=true here, but it triggers |
| 5709 | * one more yet not fixed bug, when due to nested aio_poll loop we switch to |
| 5710 | * another drained section, which modify the graph (for example, removing |
| 5711 | * the child, which we keep in updated_children list). So, it's a TODO. |
| 5712 | * |
| 5713 | * Note, bug triggered if pass detach_subchain=true here and run |
| 5714 | * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash. |
| 5715 | * That's a FIXME. |
| 5716 | */ |
| 5717 | bdrv_replace_node_common(top, base, false, false, &local_err); |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5718 | if (local_err) { |
| 5719 | error_report_err(local_err); |
| 5720 | goto exit; |
| 5721 | } |
| 5722 | |
| 5723 | for (p = updated_children; p; p = p->next) { |
| 5724 | c = p->data; |
| 5725 | |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 5726 | if (c->klass->update_filename) { |
| 5727 | ret = c->klass->update_filename(c, base, backing_file_str, |
| 5728 | &local_err); |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5729 | if (ret < 0) { |
Vladimir Sementsov-Ogievskiy | d669ed6 | 2020-11-06 15:42:37 +0300 | [diff] [blame] | 5730 | /* |
| 5731 | * TODO: Actually, we want to rollback all previous iterations |
| 5732 | * of this loop, and (which is almost impossible) previous |
| 5733 | * bdrv_replace_node()... |
| 5734 | * |
| 5735 | * Note, that c->klass->update_filename may lead to permission |
| 5736 | * update, so it's a bad idea to call it inside permission |
| 5737 | * update transaction of bdrv_replace_node. |
| 5738 | */ |
Kevin Wolf | 61f09ce | 2017-09-19 16:22:54 +0200 | [diff] [blame] | 5739 | error_report_err(local_err); |
| 5740 | goto exit; |
| 5741 | } |
| 5742 | } |
Kevin Wolf | 12fa4af | 2017-02-17 20:42:32 +0100 | [diff] [blame] | 5743 | } |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5744 | |
Alberto Garcia | 6bd858b | 2018-10-31 18:16:38 +0200 | [diff] [blame] | 5745 | if (update_inherits_from) { |
| 5746 | base->inherits_from = explicit_top->inherits_from; |
| 5747 | } |
| 5748 | |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5749 | ret = 0; |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5750 | exit: |
Kevin Wolf | 631086d | 2022-11-18 18:41:03 +0100 | [diff] [blame] | 5751 | bdrv_drained_end(base); |
Kevin Wolf | 6858eba | 2017-06-29 19:32:21 +0200 | [diff] [blame] | 5752 | bdrv_unref(top); |
Jeff Cody | 6ebdcee | 2012-09-27 13:29:12 -0400 | [diff] [blame] | 5753 | return ret; |
| 5754 | } |
| 5755 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5756 | /** |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5757 | * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5758 | * sums the size of all data-bearing children. (This excludes backing |
| 5759 | * children.) |
| 5760 | */ |
Emanuele Giuseppe Esposito | de33563 | 2023-05-04 13:57:43 +0200 | [diff] [blame] | 5761 | static int64_t coroutine_fn GRAPH_RDLOCK |
| 5762 | bdrv_sum_allocated_file_size(BlockDriverState *bs) |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5763 | { |
| 5764 | BdrvChild *child; |
| 5765 | int64_t child_size, sum = 0; |
| 5766 | |
| 5767 | QLIST_FOREACH(child, &bs->children, next) { |
| 5768 | if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | |
| 5769 | BDRV_CHILD_FILTERED)) |
| 5770 | { |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5771 | child_size = bdrv_co_get_allocated_file_size(child->bs); |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5772 | if (child_size < 0) { |
| 5773 | return child_size; |
| 5774 | } |
| 5775 | sum += child_size; |
| 5776 | } |
| 5777 | } |
| 5778 | |
| 5779 | return sum; |
| 5780 | } |
| 5781 | |
| 5782 | /** |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5783 | * Length of a allocated file in bytes. Sparse files are counted by actual |
| 5784 | * allocated space. Return < 0 if error or unknown. |
| 5785 | */ |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5786 | int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs) |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5787 | { |
| 5788 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5789 | IO_CODE(); |
Emanuele Giuseppe Esposito | de33563 | 2023-05-04 13:57:43 +0200 | [diff] [blame] | 5790 | assert_bdrv_graph_readable(); |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5791 | |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5792 | if (!drv) { |
| 5793 | return -ENOMEDIUM; |
| 5794 | } |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5795 | if (drv->bdrv_co_get_allocated_file_size) { |
| 5796 | return drv->bdrv_co_get_allocated_file_size(bs); |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5797 | } |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5798 | |
| 5799 | if (drv->bdrv_file_open) { |
| 5800 | /* |
| 5801 | * Protocol drivers default to -ENOTSUP (most of their data is |
| 5802 | * not stored in any of their children (if they even have any), |
| 5803 | * so there is no generic way to figure it out). |
| 5804 | */ |
| 5805 | return -ENOTSUP; |
| 5806 | } else if (drv->is_filter) { |
| 5807 | /* Filter drivers default to the size of their filtered child */ |
Emanuele Giuseppe Esposito | 82618d7 | 2023-01-13 21:42:07 +0100 | [diff] [blame] | 5808 | return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs)); |
Max Reitz | 081e465 | 2019-06-12 18:14:13 +0200 | [diff] [blame] | 5809 | } else { |
| 5810 | /* Other drivers default to summing their children's sizes */ |
| 5811 | return bdrv_sum_allocated_file_size(bs); |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5812 | } |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5813 | } |
| 5814 | |
Stefan Hajnoczi | 90880ff | 2017-07-05 13:57:30 +0100 | [diff] [blame] | 5815 | /* |
| 5816 | * bdrv_measure: |
| 5817 | * @drv: Format driver |
| 5818 | * @opts: Creation options for new image |
| 5819 | * @in_bs: Existing image containing data for new image (may be NULL) |
| 5820 | * @errp: Error object |
| 5821 | * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) |
| 5822 | * or NULL on error |
| 5823 | * |
| 5824 | * Calculate file size required to create a new image. |
| 5825 | * |
| 5826 | * If @in_bs is given then space for allocated clusters and zero clusters |
| 5827 | * from that image are included in the calculation. If @opts contains a |
| 5828 | * backing file that is shared by @in_bs then backing clusters may be omitted |
| 5829 | * from the calculation. |
| 5830 | * |
| 5831 | * If @in_bs is NULL then the calculation includes no allocated clusters |
| 5832 | * unless a preallocation option is given in @opts. |
| 5833 | * |
| 5834 | * Note that @in_bs may use a different BlockDriver from @drv. |
| 5835 | * |
| 5836 | * If an error occurs the @errp pointer is set. |
| 5837 | */ |
| 5838 | BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, |
| 5839 | BlockDriverState *in_bs, Error **errp) |
| 5840 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5841 | IO_CODE(); |
Stefan Hajnoczi | 90880ff | 2017-07-05 13:57:30 +0100 | [diff] [blame] | 5842 | if (!drv->bdrv_measure) { |
| 5843 | error_setg(errp, "Block driver '%s' does not support size measurement", |
| 5844 | drv->format_name); |
| 5845 | return NULL; |
| 5846 | } |
| 5847 | |
| 5848 | return drv->bdrv_measure(opts, in_bs, errp); |
| 5849 | } |
| 5850 | |
Fam Zheng | 4a1d5e1 | 2011-07-12 19:56:39 +0800 | [diff] [blame] | 5851 | /** |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5852 | * Return number of sectors on success, -errno on error. |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5853 | */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 5854 | int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5855 | { |
| 5856 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5857 | IO_CODE(); |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 5858 | assert_bdrv_graph_readable(); |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5859 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5860 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 5861 | return -ENOMEDIUM; |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 5862 | |
Paolo Bonzini | 160a29e | 2023-04-07 17:32:56 +0200 | [diff] [blame] | 5863 | if (bs->bl.has_variable_length) { |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 5864 | int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors); |
Kevin Wolf | b94a261 | 2013-10-29 12:18:58 +0100 | [diff] [blame] | 5865 | if (ret < 0) { |
| 5866 | return ret; |
Stefan Hajnoczi | 46a4e4e | 2011-03-29 20:04:41 +0100 | [diff] [blame] | 5867 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 5868 | } |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5869 | return bs->total_sectors; |
| 5870 | } |
| 5871 | |
Paolo Bonzini | 81f730d | 2023-04-07 17:33:03 +0200 | [diff] [blame] | 5872 | /* |
| 5873 | * This wrapper is written by hand because this function is in the hot I/O path, |
| 5874 | * via blk_get_geometry. |
| 5875 | */ |
| 5876 | int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs) |
| 5877 | { |
| 5878 | BlockDriver *drv = bs->drv; |
| 5879 | IO_CODE(); |
| 5880 | |
| 5881 | if (!drv) |
| 5882 | return -ENOMEDIUM; |
| 5883 | |
| 5884 | if (bs->bl.has_variable_length) { |
| 5885 | int ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); |
| 5886 | if (ret < 0) { |
| 5887 | return ret; |
| 5888 | } |
| 5889 | } |
| 5890 | |
| 5891 | return bs->total_sectors; |
| 5892 | } |
| 5893 | |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5894 | /** |
| 5895 | * Return length in bytes on success, -errno on error. |
| 5896 | * The length is always a multiple of BDRV_SECTOR_SIZE. |
| 5897 | */ |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 5898 | int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs) |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5899 | { |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 5900 | int64_t ret; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5901 | IO_CODE(); |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 5902 | assert_bdrv_graph_readable(); |
Markus Armbruster | 65a9bb2 | 2014-06-26 13:23:17 +0200 | [diff] [blame] | 5903 | |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 5904 | ret = bdrv_co_nb_sectors(bs); |
Eric Blake | 122860b | 2020-11-05 09:51:22 -0600 | [diff] [blame] | 5905 | if (ret < 0) { |
| 5906 | return ret; |
| 5907 | } |
| 5908 | if (ret > INT64_MAX / BDRV_SECTOR_SIZE) { |
| 5909 | return -EFBIG; |
| 5910 | } |
| 5911 | return ret * BDRV_SECTOR_SIZE; |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 5912 | } |
| 5913 | |
Eric Blake | 5411541 | 2016-06-23 16:37:26 -0600 | [diff] [blame] | 5914 | bool bdrv_is_sg(BlockDriverState *bs) |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 5915 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5916 | IO_CODE(); |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 5917 | return bs->sg; |
| 5918 | } |
| 5919 | |
Max Reitz | ae23f78 | 2019-06-12 22:57:15 +0200 | [diff] [blame] | 5920 | /** |
| 5921 | * Return whether the given node supports compressed writes. |
| 5922 | */ |
| 5923 | bool bdrv_supports_compressed_writes(BlockDriverState *bs) |
| 5924 | { |
| 5925 | BlockDriverState *filtered; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5926 | IO_CODE(); |
Max Reitz | ae23f78 | 2019-06-12 22:57:15 +0200 | [diff] [blame] | 5927 | |
| 5928 | if (!bs->drv || !block_driver_can_compress(bs->drv)) { |
| 5929 | return false; |
| 5930 | } |
| 5931 | |
| 5932 | filtered = bdrv_filter_bs(bs); |
| 5933 | if (filtered) { |
| 5934 | /* |
| 5935 | * Filters can only forward compressed writes, so we have to |
| 5936 | * check the child. |
| 5937 | */ |
| 5938 | return bdrv_supports_compressed_writes(filtered); |
| 5939 | } |
| 5940 | |
| 5941 | return true; |
| 5942 | } |
| 5943 | |
Markus Armbruster | f8d6bba | 2012-06-13 10:11:48 +0200 | [diff] [blame] | 5944 | const char *bdrv_get_format_name(BlockDriverState *bs) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5945 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 5946 | IO_CODE(); |
Markus Armbruster | f8d6bba | 2012-06-13 10:11:48 +0200 | [diff] [blame] | 5947 | return bs->drv ? bs->drv->format_name : NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5948 | } |
| 5949 | |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 5950 | static int qsort_strcmp(const void *a, const void *b) |
| 5951 | { |
Max Reitz | ceff5bd | 2016-10-12 22:49:05 +0200 | [diff] [blame] | 5952 | return strcmp(*(char *const *)a, *(char *const *)b); |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 5953 | } |
| 5954 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5955 | void bdrv_iterate_format(void (*it)(void *opaque, const char *name), |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 5956 | void *opaque, bool read_only) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5957 | { |
| 5958 | BlockDriver *drv; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5959 | int count = 0; |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 5960 | int i; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5961 | const char **formats = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5962 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 5963 | GLOBAL_STATE_CODE(); |
| 5964 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 5965 | QLIST_FOREACH(drv, &bdrv_drivers, list) { |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5966 | if (drv->format_name) { |
| 5967 | bool found = false; |
| 5968 | int i = count; |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 5969 | |
| 5970 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) { |
| 5971 | continue; |
| 5972 | } |
| 5973 | |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5974 | while (formats && i && !found) { |
| 5975 | found = !strcmp(formats[--i], drv->format_name); |
| 5976 | } |
| 5977 | |
| 5978 | if (!found) { |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 5979 | formats = g_renew(const char *, formats, count + 1); |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5980 | formats[count++] = drv->format_name; |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 5981 | } |
| 5982 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 5983 | } |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 5984 | |
Max Reitz | eb0df69 | 2016-10-12 22:49:06 +0200 | [diff] [blame] | 5985 | for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { |
| 5986 | const char *format_name = block_driver_modules[i].format_name; |
| 5987 | |
| 5988 | if (format_name) { |
| 5989 | bool found = false; |
| 5990 | int j = count; |
| 5991 | |
Andrey Shinkevich | 9ac404c | 2019-03-07 16:33:58 +0300 | [diff] [blame] | 5992 | if (use_bdrv_whitelist && |
| 5993 | !bdrv_format_is_whitelisted(format_name, read_only)) { |
| 5994 | continue; |
| 5995 | } |
| 5996 | |
Max Reitz | eb0df69 | 2016-10-12 22:49:06 +0200 | [diff] [blame] | 5997 | while (formats && j && !found) { |
| 5998 | found = !strcmp(formats[--j], format_name); |
| 5999 | } |
| 6000 | |
| 6001 | if (!found) { |
| 6002 | formats = g_renew(const char *, formats, count + 1); |
| 6003 | formats[count++] = format_name; |
| 6004 | } |
| 6005 | } |
| 6006 | } |
| 6007 | |
Stefan Hajnoczi | ada4240 | 2014-08-27 12:08:55 +0100 | [diff] [blame] | 6008 | qsort(formats, count, sizeof(formats[0]), qsort_strcmp); |
| 6009 | |
| 6010 | for (i = 0; i < count; i++) { |
| 6011 | it(opaque, formats[i]); |
| 6012 | } |
| 6013 | |
Jeff Cody | e855e4f | 2014-04-28 18:29:54 -0400 | [diff] [blame] | 6014 | g_free(formats); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6015 | } |
| 6016 | |
Benoît Canet | dc364f4 | 2014-01-23 21:31:32 +0100 | [diff] [blame] | 6017 | /* This function is to find a node in the bs graph */ |
| 6018 | BlockDriverState *bdrv_find_node(const char *node_name) |
| 6019 | { |
| 6020 | BlockDriverState *bs; |
| 6021 | |
| 6022 | assert(node_name); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6023 | GLOBAL_STATE_CODE(); |
Benoît Canet | dc364f4 | 2014-01-23 21:31:32 +0100 | [diff] [blame] | 6024 | |
| 6025 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
| 6026 | if (!strcmp(node_name, bs->node_name)) { |
| 6027 | return bs; |
| 6028 | } |
| 6029 | } |
| 6030 | return NULL; |
| 6031 | } |
| 6032 | |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6033 | /* 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] | 6034 | BlockDeviceInfoList *bdrv_named_nodes_list(bool flat, |
| 6035 | Error **errp) |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6036 | { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6037 | BlockDeviceInfoList *list; |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6038 | BlockDriverState *bs; |
| 6039 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6040 | GLOBAL_STATE_CODE(); |
| 6041 | |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6042 | list = NULL; |
| 6043 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
Peter Krempa | facda54 | 2020-01-20 09:50:49 +0100 | [diff] [blame] | 6044 | BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp); |
Alberto Garcia | d5a8ee6 | 2015-04-17 14:52:43 +0300 | [diff] [blame] | 6045 | if (!info) { |
| 6046 | qapi_free_BlockDeviceInfoList(list); |
| 6047 | return NULL; |
| 6048 | } |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6049 | QAPI_LIST_PREPEND(list, info); |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 6050 | } |
| 6051 | |
| 6052 | return list; |
| 6053 | } |
| 6054 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6055 | typedef struct XDbgBlockGraphConstructor { |
| 6056 | XDbgBlockGraph *graph; |
| 6057 | GHashTable *graph_nodes; |
| 6058 | } XDbgBlockGraphConstructor; |
| 6059 | |
| 6060 | static XDbgBlockGraphConstructor *xdbg_graph_new(void) |
| 6061 | { |
| 6062 | XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1); |
| 6063 | |
| 6064 | gr->graph = g_new0(XDbgBlockGraph, 1); |
| 6065 | gr->graph_nodes = g_hash_table_new(NULL, NULL); |
| 6066 | |
| 6067 | return gr; |
| 6068 | } |
| 6069 | |
| 6070 | static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr) |
| 6071 | { |
| 6072 | XDbgBlockGraph *graph = gr->graph; |
| 6073 | |
| 6074 | g_hash_table_destroy(gr->graph_nodes); |
| 6075 | g_free(gr); |
| 6076 | |
| 6077 | return graph; |
| 6078 | } |
| 6079 | |
| 6080 | static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node) |
| 6081 | { |
| 6082 | uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node); |
| 6083 | |
| 6084 | if (ret != 0) { |
| 6085 | return ret; |
| 6086 | } |
| 6087 | |
| 6088 | /* |
| 6089 | * Start counting from 1, not 0, because 0 interferes with not-found (NULL) |
| 6090 | * answer of g_hash_table_lookup. |
| 6091 | */ |
| 6092 | ret = g_hash_table_size(gr->graph_nodes) + 1; |
| 6093 | g_hash_table_insert(gr->graph_nodes, node, (void *)ret); |
| 6094 | |
| 6095 | return ret; |
| 6096 | } |
| 6097 | |
| 6098 | static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node, |
| 6099 | XDbgBlockGraphNodeType type, const char *name) |
| 6100 | { |
| 6101 | XDbgBlockGraphNode *n; |
| 6102 | |
| 6103 | n = g_new0(XDbgBlockGraphNode, 1); |
| 6104 | |
| 6105 | n->id = xdbg_graph_node_num(gr, node); |
| 6106 | n->type = type; |
| 6107 | n->name = g_strdup(name); |
| 6108 | |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6109 | QAPI_LIST_PREPEND(gr->graph->nodes, n); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6110 | } |
| 6111 | |
| 6112 | static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent, |
| 6113 | const BdrvChild *child) |
| 6114 | { |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 6115 | BlockPermission qapi_perm; |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6116 | XDbgBlockGraphEdge *edge; |
Emanuele Giuseppe Esposito | 862fded | 2022-03-03 10:15:55 -0500 | [diff] [blame] | 6117 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6118 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6119 | edge = g_new0(XDbgBlockGraphEdge, 1); |
| 6120 | |
| 6121 | edge->parent = xdbg_graph_node_num(gr, parent); |
| 6122 | edge->child = xdbg_graph_node_num(gr, child->bs); |
| 6123 | edge->name = g_strdup(child->name); |
| 6124 | |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 6125 | for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) { |
| 6126 | uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm); |
| 6127 | |
| 6128 | if (flag & child->perm) { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6129 | QAPI_LIST_PREPEND(edge->perm, qapi_perm); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6130 | } |
Max Reitz | cdb1cec | 2019-11-08 13:34:52 +0100 | [diff] [blame] | 6131 | if (flag & child->shared_perm) { |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6132 | QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6133 | } |
| 6134 | } |
| 6135 | |
Eric Blake | 9812e71 | 2020-10-27 00:05:47 -0500 | [diff] [blame] | 6136 | QAPI_LIST_PREPEND(gr->graph->edges, edge); |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6137 | } |
| 6138 | |
| 6139 | |
| 6140 | XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp) |
| 6141 | { |
| 6142 | BlockBackend *blk; |
| 6143 | BlockJob *job; |
| 6144 | BlockDriverState *bs; |
| 6145 | BdrvChild *child; |
| 6146 | XDbgBlockGraphConstructor *gr = xdbg_graph_new(); |
| 6147 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6148 | GLOBAL_STATE_CODE(); |
| 6149 | |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6150 | for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) { |
| 6151 | char *allocated_name = NULL; |
| 6152 | const char *name = blk_name(blk); |
| 6153 | |
| 6154 | if (!*name) { |
| 6155 | name = allocated_name = blk_get_attached_dev_id(blk); |
| 6156 | } |
| 6157 | xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND, |
| 6158 | name); |
| 6159 | g_free(allocated_name); |
| 6160 | if (blk_root(blk)) { |
| 6161 | xdbg_graph_add_edge(gr, blk, blk_root(blk)); |
| 6162 | } |
| 6163 | } |
| 6164 | |
Emanuele Giuseppe Esposito | 880eeec | 2022-09-26 05:32:04 -0400 | [diff] [blame] | 6165 | WITH_JOB_LOCK_GUARD() { |
| 6166 | for (job = block_job_next_locked(NULL); job; |
| 6167 | job = block_job_next_locked(job)) { |
| 6168 | GSList *el; |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6169 | |
Emanuele Giuseppe Esposito | 880eeec | 2022-09-26 05:32:04 -0400 | [diff] [blame] | 6170 | xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB, |
| 6171 | job->job.id); |
| 6172 | for (el = job->nodes; el; el = el->next) { |
| 6173 | xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data); |
| 6174 | } |
Vladimir Sementsov-Ogievskiy | 5d3b4e9 | 2018-12-21 20:09:07 +0300 | [diff] [blame] | 6175 | } |
| 6176 | } |
| 6177 | |
| 6178 | QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { |
| 6179 | xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER, |
| 6180 | bs->node_name); |
| 6181 | QLIST_FOREACH(child, &bs->children, next) { |
| 6182 | xdbg_graph_add_edge(gr, bs, child); |
| 6183 | } |
| 6184 | } |
| 6185 | |
| 6186 | return xdbg_graph_finalize(gr); |
| 6187 | } |
| 6188 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6189 | BlockDriverState *bdrv_lookup_bs(const char *device, |
| 6190 | const char *node_name, |
| 6191 | Error **errp) |
| 6192 | { |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6193 | BlockBackend *blk; |
| 6194 | BlockDriverState *bs; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6195 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6196 | GLOBAL_STATE_CODE(); |
| 6197 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6198 | if (device) { |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6199 | blk = blk_by_name(device); |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6200 | |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6201 | if (blk) { |
Alberto Garcia | 9f4ed6f | 2015-10-26 16:46:49 +0200 | [diff] [blame] | 6202 | bs = blk_bs(blk); |
| 6203 | if (!bs) { |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 6204 | error_setg(errp, "Device '%s' has no medium", device); |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 6205 | } |
| 6206 | |
Alberto Garcia | 9f4ed6f | 2015-10-26 16:46:49 +0200 | [diff] [blame] | 6207 | return bs; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6208 | } |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6209 | } |
| 6210 | |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 6211 | if (node_name) { |
| 6212 | bs = bdrv_find_node(node_name); |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6213 | |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 6214 | if (bs) { |
| 6215 | return bs; |
| 6216 | } |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6217 | } |
| 6218 | |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 6219 | error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'", |
Benoît Canet | dd67fa5 | 2014-02-12 17:15:06 +0100 | [diff] [blame] | 6220 | device ? device : "", |
| 6221 | node_name ? node_name : ""); |
| 6222 | return NULL; |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 6223 | } |
| 6224 | |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 6225 | /* If 'base' is in the same chain as 'top', return true. Otherwise, |
| 6226 | * return false. If either argument is NULL, return false. */ |
| 6227 | bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) |
| 6228 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6229 | |
| 6230 | GLOBAL_STATE_CODE(); |
| 6231 | |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 6232 | while (top && top != base) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6233 | top = bdrv_filter_or_cow_bs(top); |
Jeff Cody | 5a6684d | 2014-06-25 15:40:09 -0400 | [diff] [blame] | 6234 | } |
| 6235 | |
| 6236 | return top != NULL; |
| 6237 | } |
| 6238 | |
Fam Zheng | 04df765 | 2014-10-31 11:32:54 +0800 | [diff] [blame] | 6239 | BlockDriverState *bdrv_next_node(BlockDriverState *bs) |
| 6240 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6241 | GLOBAL_STATE_CODE(); |
Fam Zheng | 04df765 | 2014-10-31 11:32:54 +0800 | [diff] [blame] | 6242 | if (!bs) { |
| 6243 | return QTAILQ_FIRST(&graph_bdrv_states); |
| 6244 | } |
| 6245 | return QTAILQ_NEXT(bs, node_list); |
| 6246 | } |
| 6247 | |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 6248 | BlockDriverState *bdrv_next_all_states(BlockDriverState *bs) |
| 6249 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6250 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 0f12264 | 2018-03-28 18:29:18 +0200 | [diff] [blame] | 6251 | if (!bs) { |
| 6252 | return QTAILQ_FIRST(&all_bdrv_states); |
| 6253 | } |
| 6254 | return QTAILQ_NEXT(bs, bs_list); |
| 6255 | } |
| 6256 | |
Fam Zheng | 20a9e77 | 2014-10-31 11:32:55 +0800 | [diff] [blame] | 6257 | const char *bdrv_get_node_name(const BlockDriverState *bs) |
| 6258 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6259 | IO_CODE(); |
Fam Zheng | 20a9e77 | 2014-10-31 11:32:55 +0800 | [diff] [blame] | 6260 | return bs->node_name; |
| 6261 | } |
| 6262 | |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 6263 | const char *bdrv_get_parent_name(const BlockDriverState *bs) |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6264 | { |
| 6265 | BdrvChild *c; |
| 6266 | const char *name; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 6267 | IO_CODE(); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6268 | |
| 6269 | /* If multiple parents have a name, just pick the first one. */ |
| 6270 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6271 | if (c->klass->get_name) { |
| 6272 | name = c->klass->get_name(c); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6273 | if (name && *name) { |
| 6274 | return name; |
| 6275 | } |
| 6276 | } |
| 6277 | } |
| 6278 | |
| 6279 | return NULL; |
| 6280 | } |
| 6281 | |
Markus Armbruster | 7f06d47 | 2014-10-07 13:59:12 +0200 | [diff] [blame] | 6282 | /* TODO check what callers really want: bs->node_name or blk_name() */ |
Markus Armbruster | bfb197e | 2014-10-07 13:59:11 +0200 | [diff] [blame] | 6283 | const char *bdrv_get_device_name(const BlockDriverState *bs) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6284 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6285 | IO_CODE(); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6286 | return bdrv_get_parent_name(bs) ?: ""; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6287 | } |
| 6288 | |
Alberto Garcia | 9b2aa84 | 2015-04-08 12:29:18 +0300 | [diff] [blame] | 6289 | /* This can be used to identify nodes that might not have a device |
| 6290 | * name associated. Since node and device names live in the same |
| 6291 | * namespace, the result is unambiguous. The exception is if both are |
| 6292 | * absent, then this returns an empty (non-null) string. */ |
| 6293 | const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) |
| 6294 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6295 | IO_CODE(); |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 6296 | return bdrv_get_parent_name(bs) ?: bs->node_name; |
Alberto Garcia | 9b2aa84 | 2015-04-08 12:29:18 +0300 | [diff] [blame] | 6297 | } |
| 6298 | |
Markus Armbruster | c843328 | 2012-06-05 16:49:24 +0200 | [diff] [blame] | 6299 | int bdrv_get_flags(BlockDriverState *bs) |
| 6300 | { |
Hanna Reitz | 15aee7a | 2022-04-27 13:40:54 +0200 | [diff] [blame] | 6301 | IO_CODE(); |
Markus Armbruster | c843328 | 2012-06-05 16:49:24 +0200 | [diff] [blame] | 6302 | return bs->open_flags; |
| 6303 | } |
| 6304 | |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 6305 | int bdrv_has_zero_init_1(BlockDriverState *bs) |
| 6306 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6307 | GLOBAL_STATE_CODE(); |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 6308 | return 1; |
| 6309 | } |
| 6310 | |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6311 | int bdrv_has_zero_init(BlockDriverState *bs) |
| 6312 | { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6313 | BlockDriverState *filtered; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6314 | GLOBAL_STATE_CODE(); |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6315 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 6316 | if (!bs->drv) { |
| 6317 | return 0; |
| 6318 | } |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6319 | |
Paolo Bonzini | 11212d8 | 2013-09-04 19:00:27 +0200 | [diff] [blame] | 6320 | /* If BS is a copy on write image, it is initialized to |
| 6321 | the contents of the base image, which may not be zeroes. */ |
Max Reitz | 3477817 | 2019-06-12 17:10:46 +0200 | [diff] [blame] | 6322 | if (bdrv_cow_child(bs)) { |
Paolo Bonzini | 11212d8 | 2013-09-04 19:00:27 +0200 | [diff] [blame] | 6323 | return 0; |
| 6324 | } |
Kevin Wolf | 336c1c1 | 2010-07-28 11:26:29 +0200 | [diff] [blame] | 6325 | if (bs->drv->bdrv_has_zero_init) { |
| 6326 | return bs->drv->bdrv_has_zero_init(bs); |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6327 | } |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6328 | |
| 6329 | filtered = bdrv_filter_bs(bs); |
| 6330 | if (filtered) { |
| 6331 | return bdrv_has_zero_init(filtered); |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6332 | } |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6333 | |
Peter Lieven | 3ac2162 | 2013-06-28 12:47:42 +0200 | [diff] [blame] | 6334 | /* safe default */ |
| 6335 | return 0; |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 6336 | } |
| 6337 | |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 6338 | bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) |
| 6339 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6340 | IO_CODE(); |
Denis V. Lunev | 2f0342e | 2016-07-14 16:33:26 +0300 | [diff] [blame] | 6341 | if (!(bs->open_flags & BDRV_O_UNMAP)) { |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 6342 | return false; |
| 6343 | } |
| 6344 | |
Eric Blake | e24d813 | 2018-01-26 13:34:39 -0600 | [diff] [blame] | 6345 | return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; |
Peter Lieven | 4ce7869 | 2013-10-24 12:06:54 +0200 | [diff] [blame] | 6346 | } |
| 6347 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 6348 | void bdrv_get_backing_filename(BlockDriverState *bs, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 6349 | char *filename, int filename_size) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6350 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6351 | IO_CODE(); |
Kevin Wolf | 3574c60 | 2011-10-26 11:02:11 +0200 | [diff] [blame] | 6352 | pstrcpy(filename, filename_size, bs->backing_file); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6353 | } |
| 6354 | |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6355 | int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6356 | { |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 6357 | int ret; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6358 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6359 | IO_CODE(); |
Emanuele Giuseppe Esposito | a00e70c | 2023-05-04 13:57:44 +0200 | [diff] [blame] | 6360 | assert_bdrv_graph_readable(); |
| 6361 | |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6362 | /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ |
| 6363 | if (!drv) { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6364 | return -ENOMEDIUM; |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6365 | } |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6366 | if (!drv->bdrv_co_get_info) { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 6367 | BlockDriverState *filtered = bdrv_filter_bs(bs); |
| 6368 | if (filtered) { |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6369 | return bdrv_co_get_info(filtered, bdi); |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6370 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6371 | return -ENOTSUP; |
Manos Pitsidianakis | 5a612c0 | 2017-07-13 18:30:25 +0300 | [diff] [blame] | 6372 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6373 | memset(bdi, 0, sizeof(*bdi)); |
Emanuele Giuseppe Esposito | 3d47eb0 | 2023-01-13 21:42:08 +0100 | [diff] [blame] | 6374 | ret = drv->bdrv_co_get_info(bs, bdi); |
Vladimir Sementsov-Ogievskiy | 8b11700 | 2020-12-04 01:27:13 +0300 | [diff] [blame] | 6375 | if (ret < 0) { |
| 6376 | return ret; |
| 6377 | } |
| 6378 | |
| 6379 | if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) { |
| 6380 | return -EINVAL; |
| 6381 | } |
| 6382 | |
| 6383 | return 0; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 6384 | } |
| 6385 | |
Andrey Shinkevich | 1bf6e9c | 2019-02-08 18:06:06 +0300 | [diff] [blame] | 6386 | ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs, |
| 6387 | Error **errp) |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6388 | { |
| 6389 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6390 | IO_CODE(); |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6391 | if (drv && drv->bdrv_get_specific_info) { |
Andrey Shinkevich | 1bf6e9c | 2019-02-08 18:06:06 +0300 | [diff] [blame] | 6392 | return drv->bdrv_get_specific_info(bs, errp); |
Max Reitz | eae041f | 2013-10-09 10:46:16 +0200 | [diff] [blame] | 6393 | } |
| 6394 | return NULL; |
| 6395 | } |
| 6396 | |
Anton Nefedov | d924559 | 2019-09-23 15:17:37 +0300 | [diff] [blame] | 6397 | BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs) |
| 6398 | { |
| 6399 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6400 | IO_CODE(); |
Anton Nefedov | d924559 | 2019-09-23 15:17:37 +0300 | [diff] [blame] | 6401 | if (!drv || !drv->bdrv_get_specific_stats) { |
| 6402 | return NULL; |
| 6403 | } |
| 6404 | return drv->bdrv_get_specific_stats(bs); |
| 6405 | } |
| 6406 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 6407 | void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event) |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6408 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6409 | IO_CODE(); |
Emanuele Giuseppe Esposito | cb2bfaa | 2023-05-04 13:57:45 +0200 | [diff] [blame] | 6410 | assert_bdrv_graph_readable(); |
| 6411 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 6412 | if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) { |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6413 | return; |
| 6414 | } |
| 6415 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 6416 | bs->drv->bdrv_co_debug_event(bs, event); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6417 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6418 | |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6419 | static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs) |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6420 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 6421 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6422 | while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6423 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6424 | } |
| 6425 | |
| 6426 | if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6427 | assert(bs->drv->bdrv_debug_remove_breakpoint); |
| 6428 | return bs; |
| 6429 | } |
| 6430 | |
| 6431 | return NULL; |
| 6432 | } |
| 6433 | |
| 6434 | int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, |
| 6435 | const char *tag) |
| 6436 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6437 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6438 | bs = bdrv_find_debug_node(bs); |
| 6439 | if (bs) { |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6440 | return bs->drv->bdrv_debug_breakpoint(bs, event, tag); |
| 6441 | } |
| 6442 | |
| 6443 | return -ENOTSUP; |
| 6444 | } |
| 6445 | |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 6446 | int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) |
| 6447 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6448 | GLOBAL_STATE_CODE(); |
Vladimir Sementsov-Ogievskiy | d10529a | 2019-09-20 17:20:49 +0300 | [diff] [blame] | 6449 | bs = bdrv_find_debug_node(bs); |
| 6450 | if (bs) { |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 6451 | return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); |
| 6452 | } |
| 6453 | |
| 6454 | return -ENOTSUP; |
| 6455 | } |
| 6456 | |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6457 | int bdrv_debug_resume(BlockDriverState *bs, const char *tag) |
| 6458 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6459 | GLOBAL_STATE_CODE(); |
Max Reitz | 938789e | 2014-03-10 23:44:08 +0100 | [diff] [blame] | 6460 | while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6461 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6462 | } |
| 6463 | |
| 6464 | if (bs && bs->drv && bs->drv->bdrv_debug_resume) { |
| 6465 | return bs->drv->bdrv_debug_resume(bs, tag); |
| 6466 | } |
| 6467 | |
| 6468 | return -ENOTSUP; |
| 6469 | } |
| 6470 | |
| 6471 | bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) |
| 6472 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6473 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6474 | while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { |
Max Reitz | f706a92 | 2019-06-12 17:42:13 +0200 | [diff] [blame] | 6475 | bs = bdrv_primary_bs(bs); |
Kevin Wolf | 41c695c | 2012-12-06 14:32:58 +0100 | [diff] [blame] | 6476 | } |
| 6477 | |
| 6478 | if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { |
| 6479 | return bs->drv->bdrv_debug_is_suspended(bs, tag); |
| 6480 | } |
| 6481 | |
| 6482 | return false; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 6483 | } |
| 6484 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6485 | /* backing_file can either be relative, or absolute, or a protocol. If it is |
| 6486 | * relative, it must be relative to the chain. So, passing in bs->filename |
| 6487 | * from a BDS as backing_file should not be done, as that may be relative to |
| 6488 | * the CWD rather than the chain. */ |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6489 | BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, |
| 6490 | const char *backing_file) |
| 6491 | { |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6492 | char *filename_full = NULL; |
| 6493 | char *backing_file_full = NULL; |
| 6494 | char *filename_tmp = NULL; |
| 6495 | int is_protocol = 0; |
Max Reitz | 0b877d0 | 2018-08-01 20:34:11 +0200 | [diff] [blame] | 6496 | bool filenames_refreshed = false; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6497 | BlockDriverState *curr_bs = NULL; |
| 6498 | BlockDriverState *retval = NULL; |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6499 | BlockDriverState *bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6500 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6501 | GLOBAL_STATE_CODE(); |
| 6502 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6503 | if (!bs || !bs->drv || !backing_file) { |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6504 | return NULL; |
| 6505 | } |
| 6506 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6507 | filename_full = g_malloc(PATH_MAX); |
| 6508 | backing_file_full = g_malloc(PATH_MAX); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6509 | |
| 6510 | is_protocol = path_has_protocol(backing_file); |
| 6511 | |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6512 | /* |
| 6513 | * Being largely a legacy function, skip any filters here |
| 6514 | * (because filters do not have normal filenames, so they cannot |
| 6515 | * match anyway; and allowing json:{} filenames is a bit out of |
| 6516 | * scope). |
| 6517 | */ |
| 6518 | for (curr_bs = bdrv_skip_filters(bs); |
| 6519 | bdrv_cow_child(curr_bs) != NULL; |
| 6520 | curr_bs = bs_below) |
| 6521 | { |
| 6522 | bs_below = bdrv_backing_chain_next(curr_bs); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6523 | |
Max Reitz | 0b877d0 | 2018-08-01 20:34:11 +0200 | [diff] [blame] | 6524 | if (bdrv_backing_overridden(curr_bs)) { |
| 6525 | /* |
| 6526 | * If the backing file was overridden, we can only compare |
| 6527 | * directly against the backing node's filename. |
| 6528 | */ |
| 6529 | |
| 6530 | if (!filenames_refreshed) { |
| 6531 | /* |
| 6532 | * This will automatically refresh all of the |
| 6533 | * filenames in the rest of the backing chain, so we |
| 6534 | * only need to do this once. |
| 6535 | */ |
| 6536 | bdrv_refresh_filename(bs_below); |
| 6537 | filenames_refreshed = true; |
| 6538 | } |
| 6539 | |
| 6540 | if (strcmp(backing_file, bs_below->filename) == 0) { |
| 6541 | retval = bs_below; |
| 6542 | break; |
| 6543 | } |
| 6544 | } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) { |
| 6545 | /* |
| 6546 | * If either of the filename paths is actually a protocol, then |
| 6547 | * compare unmodified paths; otherwise make paths relative. |
| 6548 | */ |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 6549 | char *backing_file_full_ret; |
| 6550 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6551 | if (strcmp(backing_file, curr_bs->backing_file) == 0) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6552 | retval = bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6553 | break; |
| 6554 | } |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6555 | /* Also check against the full backing filename for the image */ |
Max Reitz | 6b6833c | 2019-02-01 20:29:15 +0100 | [diff] [blame] | 6556 | backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs, |
| 6557 | NULL); |
| 6558 | if (backing_file_full_ret) { |
| 6559 | bool equal = strcmp(backing_file, backing_file_full_ret) == 0; |
| 6560 | g_free(backing_file_full_ret); |
| 6561 | if (equal) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6562 | retval = bs_below; |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6563 | break; |
| 6564 | } |
Jeff Cody | 418661e | 2017-01-25 20:08:20 -0500 | [diff] [blame] | 6565 | } |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6566 | } else { |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6567 | /* If not an absolute filename path, make it relative to the current |
| 6568 | * image's filename path */ |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6569 | filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file, |
| 6570 | NULL); |
| 6571 | /* We are going to compare canonicalized absolute pathnames */ |
| 6572 | if (!filename_tmp || !realpath(filename_tmp, filename_full)) { |
| 6573 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6574 | continue; |
| 6575 | } |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6576 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6577 | |
| 6578 | /* We need to make sure the backing filename we are comparing against |
| 6579 | * is relative to the current image filename (or absolute) */ |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6580 | filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL); |
| 6581 | if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) { |
| 6582 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6583 | continue; |
| 6584 | } |
Max Reitz | 2d9158c | 2019-02-01 20:29:17 +0100 | [diff] [blame] | 6585 | g_free(filename_tmp); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6586 | |
| 6587 | if (strcmp(backing_file_full, filename_full) == 0) { |
Max Reitz | dcf3f9b | 2019-06-12 17:34:45 +0200 | [diff] [blame] | 6588 | retval = bs_below; |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6589 | break; |
| 6590 | } |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6591 | } |
| 6592 | } |
| 6593 | |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6594 | g_free(filename_full); |
| 6595 | g_free(backing_file_full); |
Jeff Cody | b1b1d78 | 2012-10-16 15:49:09 -0400 | [diff] [blame] | 6596 | return retval; |
Marcelo Tosatti | e8a6bb9 | 2012-01-18 14:40:51 +0000 | [diff] [blame] | 6597 | } |
| 6598 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6599 | void bdrv_init(void) |
| 6600 | { |
Kevin Wolf | e5f05f8 | 2021-07-09 18:41:41 +0200 | [diff] [blame] | 6601 | #ifdef CONFIG_BDRV_WHITELIST_TOOLS |
| 6602 | use_bdrv_whitelist = 1; |
| 6603 | #endif |
Anthony Liguori | 5efa9d5 | 2009-05-09 17:03:42 -0500 | [diff] [blame] | 6604 | module_call_init(MODULE_INIT_BLOCK); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6605 | } |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 6606 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 6607 | void bdrv_init_with_whitelist(void) |
| 6608 | { |
| 6609 | use_bdrv_whitelist = 1; |
| 6610 | bdrv_init(); |
| 6611 | } |
| 6612 | |
Emanuele Giuseppe Esposito | a94750d | 2022-02-09 05:54:50 -0500 | [diff] [blame] | 6613 | int bdrv_activate(BlockDriverState *bs, Error **errp) |
| 6614 | { |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6615 | BdrvChild *child, *parent; |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6616 | Error *local_err = NULL; |
| 6617 | int ret; |
Vladimir Sementsov-Ogievskiy | 9c98f14 | 2018-10-29 16:23:17 -0400 | [diff] [blame] | 6618 | BdrvDirtyBitmap *bm; |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6619 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6620 | GLOBAL_STATE_CODE(); |
| 6621 | |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6622 | if (!bs->drv) { |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6623 | return -ENOMEDIUM; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6624 | } |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6625 | |
Vladimir Sementsov-Ogievskiy | 16e977d | 2017-01-31 14:23:08 +0300 | [diff] [blame] | 6626 | QLIST_FOREACH(child, &bs->children, next) { |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6627 | bdrv_activate(child->bs, &local_err); |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6628 | if (local_err) { |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6629 | error_propagate(errp, local_err); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6630 | return -EINVAL; |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6631 | } |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6632 | } |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6633 | |
Kevin Wolf | dafe096 | 2017-11-16 13:00:01 +0100 | [diff] [blame] | 6634 | /* |
| 6635 | * Update permissions, they may differ for inactive nodes. |
| 6636 | * |
| 6637 | * Note that the required permissions of inactive images are always a |
| 6638 | * subset of the permissions required after activating the image. This |
| 6639 | * allows us to just get the permissions upfront without restricting |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6640 | * bdrv_co_invalidate_cache(). |
Kevin Wolf | dafe096 | 2017-11-16 13:00:01 +0100 | [diff] [blame] | 6641 | * |
| 6642 | * It also means that in error cases, we don't have to try and revert to |
| 6643 | * the old permissions (which is an operation that could fail, too). We can |
| 6644 | * just keep the extended permissions for the next time that an activation |
| 6645 | * of the image is tried. |
| 6646 | */ |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6647 | if (bs->open_flags & BDRV_O_INACTIVE) { |
| 6648 | bs->open_flags &= ~BDRV_O_INACTIVE; |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 6649 | ret = bdrv_refresh_perms(bs, NULL, errp); |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6650 | if (ret < 0) { |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6651 | bs->open_flags |= BDRV_O_INACTIVE; |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6652 | return ret; |
Fam Zheng | 0d1c5c9 | 2016-05-11 10:45:33 +0800 | [diff] [blame] | 6653 | } |
Kevin Wolf | 3456a8d | 2014-03-11 10:58:39 +0100 | [diff] [blame] | 6654 | |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6655 | ret = bdrv_invalidate_cache(bs, errp); |
| 6656 | if (ret < 0) { |
| 6657 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6658 | return ret; |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6659 | } |
Vladimir Sementsov-Ogievskiy | 9c98f14 | 2018-10-29 16:23:17 -0400 | [diff] [blame] | 6660 | |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6661 | FOR_EACH_DIRTY_BITMAP(bs, bm) { |
| 6662 | bdrv_dirty_bitmap_skip_store(bm, false); |
| 6663 | } |
| 6664 | |
Emanuele Giuseppe Esposito | c057960 | 2023-01-13 21:42:03 +0100 | [diff] [blame] | 6665 | ret = bdrv_refresh_total_sectors(bs, bs->total_sectors); |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6666 | if (ret < 0) { |
| 6667 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6668 | error_setg_errno(errp, -ret, "Could not refresh total sector count"); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6669 | return ret; |
Kevin Wolf | 7bb4941 | 2019-12-17 15:06:38 +0100 | [diff] [blame] | 6670 | } |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6671 | } |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6672 | |
| 6673 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6674 | if (parent->klass->activate) { |
| 6675 | parent->klass->activate(parent, &local_err); |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6676 | if (local_err) { |
Kevin Wolf | 78fc3b3 | 2019-01-31 15:16:10 +0100 | [diff] [blame] | 6677 | bs->open_flags |= BDRV_O_INACTIVE; |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6678 | error_propagate(errp, local_err); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6679 | return -EINVAL; |
Kevin Wolf | 4417ab7 | 2017-05-04 18:52:37 +0200 | [diff] [blame] | 6680 | } |
| 6681 | } |
| 6682 | } |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6683 | |
| 6684 | return 0; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6685 | } |
| 6686 | |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6687 | int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp) |
| 6688 | { |
| 6689 | Error *local_err = NULL; |
Emanuele Giuseppe Esposito | 1581a70 | 2022-03-03 10:16:09 -0500 | [diff] [blame] | 6690 | IO_CODE(); |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6691 | |
| 6692 | assert(!(bs->open_flags & BDRV_O_INACTIVE)); |
Kevin Wolf | 1b3ff9f | 2022-12-07 14:18:38 +0100 | [diff] [blame] | 6693 | assert_bdrv_graph_readable(); |
Emanuele Giuseppe Esposito | 11d0c9b | 2022-02-09 05:54:52 -0500 | [diff] [blame] | 6694 | |
| 6695 | if (bs->drv->bdrv_co_invalidate_cache) { |
| 6696 | bs->drv->bdrv_co_invalidate_cache(bs, &local_err); |
| 6697 | if (local_err) { |
| 6698 | error_propagate(errp, local_err); |
| 6699 | return -EINVAL; |
| 6700 | } |
| 6701 | } |
| 6702 | |
| 6703 | return 0; |
| 6704 | } |
| 6705 | |
Emanuele Giuseppe Esposito | 3b71719 | 2022-02-09 05:54:51 -0500 | [diff] [blame] | 6706 | void bdrv_activate_all(Error **errp) |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6707 | { |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 6708 | BlockDriverState *bs; |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6709 | BdrvNextIterator it; |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6710 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6711 | GLOBAL_STATE_CODE(); |
| 6712 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6713 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 6714 | AioContext *aio_context = bdrv_get_aio_context(bs); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6715 | int ret; |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 6716 | |
| 6717 | aio_context_acquire(aio_context); |
Emanuele Giuseppe Esposito | a94750d | 2022-02-09 05:54:50 -0500 | [diff] [blame] | 6718 | ret = bdrv_activate(bs, errp); |
Stefan Hajnoczi | ed78cda | 2014-05-08 16:34:35 +0200 | [diff] [blame] | 6719 | aio_context_release(aio_context); |
Vladimir Sementsov-Ogievskiy | 5416645 | 2020-09-24 21:54:08 +0300 | [diff] [blame] | 6720 | if (ret < 0) { |
Max Reitz | 5e003f1 | 2017-11-10 18:25:45 +0100 | [diff] [blame] | 6721 | bdrv_next_cleanup(&it); |
Kevin Wolf | 5a8a30d | 2014-03-12 15:59:16 +0100 | [diff] [blame] | 6722 | return; |
| 6723 | } |
Anthony Liguori | 0f15423 | 2011-11-14 15:09:45 -0600 | [diff] [blame] | 6724 | } |
| 6725 | } |
| 6726 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6727 | static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active) |
| 6728 | { |
| 6729 | BdrvChild *parent; |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 6730 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6731 | |
| 6732 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6733 | if (parent->klass->parent_is_bds) { |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6734 | BlockDriverState *parent_bs = parent->opaque; |
| 6735 | if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) { |
| 6736 | return true; |
| 6737 | } |
| 6738 | } |
| 6739 | } |
| 6740 | |
| 6741 | return false; |
| 6742 | } |
| 6743 | |
| 6744 | static int bdrv_inactivate_recurse(BlockDriverState *bs) |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6745 | { |
Kevin Wolf | cfa1a57 | 2017-05-04 18:52:38 +0200 | [diff] [blame] | 6746 | BdrvChild *child, *parent; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6747 | int ret; |
Vladimir Sementsov-Ogievskiy | a13de40 | 2021-09-11 15:00:27 +0300 | [diff] [blame] | 6748 | uint64_t cumulative_perms, cumulative_shared_perms; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6749 | |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 6750 | GLOBAL_STATE_CODE(); |
| 6751 | |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 6752 | if (!bs->drv) { |
| 6753 | return -ENOMEDIUM; |
| 6754 | } |
| 6755 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6756 | /* Make sure that we don't inactivate a child before its parent. |
| 6757 | * It will be covered by recursion from the yet active parent. */ |
| 6758 | if (bdrv_has_bds_parent(bs, true)) { |
| 6759 | return 0; |
| 6760 | } |
| 6761 | |
| 6762 | assert(!(bs->open_flags & BDRV_O_INACTIVE)); |
| 6763 | |
| 6764 | /* Inactivate this node */ |
| 6765 | if (bs->drv->bdrv_inactivate) { |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6766 | ret = bs->drv->bdrv_inactivate(bs); |
| 6767 | if (ret < 0) { |
| 6768 | return ret; |
| 6769 | } |
| 6770 | } |
| 6771 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6772 | QLIST_FOREACH(parent, &bs->parents, next_parent) { |
Max Reitz | bd86fb9 | 2020-05-13 13:05:13 +0200 | [diff] [blame] | 6773 | if (parent->klass->inactivate) { |
| 6774 | ret = parent->klass->inactivate(parent); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6775 | if (ret < 0) { |
| 6776 | return ret; |
Kevin Wolf | cfa1a57 | 2017-05-04 18:52:38 +0200 | [diff] [blame] | 6777 | } |
| 6778 | } |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6779 | } |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 6780 | |
Vladimir Sementsov-Ogievskiy | a13de40 | 2021-09-11 15:00:27 +0300 | [diff] [blame] | 6781 | bdrv_get_cumulative_perm(bs, &cumulative_perms, |
| 6782 | &cumulative_shared_perms); |
| 6783 | if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) { |
| 6784 | /* Our inactive parents still need write access. Inactivation failed. */ |
| 6785 | return -EPERM; |
| 6786 | } |
| 6787 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6788 | bs->open_flags |= BDRV_O_INACTIVE; |
| 6789 | |
Vladimir Sementsov-Ogievskiy | bb87e4d | 2020-11-06 15:42:38 +0300 | [diff] [blame] | 6790 | /* |
| 6791 | * Update permissions, they may differ for inactive nodes. |
| 6792 | * We only tried to loosen restrictions, so errors are not fatal, ignore |
| 6793 | * them. |
| 6794 | */ |
Vladimir Sementsov-Ogievskiy | f1316ed | 2022-11-07 19:35:57 +0300 | [diff] [blame] | 6795 | bdrv_refresh_perms(bs, NULL, NULL); |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6796 | |
| 6797 | /* Recursively inactivate children */ |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 6798 | QLIST_FOREACH(child, &bs->children, next) { |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6799 | ret = bdrv_inactivate_recurse(child->bs); |
Kevin Wolf | 38701b6 | 2017-05-04 18:52:39 +0200 | [diff] [blame] | 6800 | if (ret < 0) { |
| 6801 | return ret; |
| 6802 | } |
| 6803 | } |
| 6804 | |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6805 | return 0; |
| 6806 | } |
| 6807 | |
| 6808 | int bdrv_inactivate_all(void) |
| 6809 | { |
Max Reitz | 79720af | 2016-03-16 19:54:44 +0100 | [diff] [blame] | 6810 | BlockDriverState *bs = NULL; |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6811 | BdrvNextIterator it; |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6812 | int ret = 0; |
Paolo Bonzini | bd6458e | 2017-12-07 20:13:15 +0000 | [diff] [blame] | 6813 | GSList *aio_ctxs = NULL, *ctx; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6814 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6815 | GLOBAL_STATE_CODE(); |
| 6816 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 6817 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
Paolo Bonzini | bd6458e | 2017-12-07 20:13:15 +0000 | [diff] [blame] | 6818 | AioContext *aio_context = bdrv_get_aio_context(bs); |
| 6819 | |
| 6820 | if (!g_slist_find(aio_ctxs, aio_context)) { |
| 6821 | aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); |
| 6822 | aio_context_acquire(aio_context); |
| 6823 | } |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6824 | } |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6825 | |
Kevin Wolf | 9e37271 | 2018-11-23 15:11:14 +0100 | [diff] [blame] | 6826 | for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { |
| 6827 | /* Nodes with BDS parents are covered by recursion from the last |
| 6828 | * parent that gets inactivated. Don't inactivate them a second |
| 6829 | * time if that has already happened. */ |
| 6830 | if (bdrv_has_bds_parent(bs, false)) { |
| 6831 | continue; |
| 6832 | } |
| 6833 | ret = bdrv_inactivate_recurse(bs); |
| 6834 | if (ret < 0) { |
| 6835 | bdrv_next_cleanup(&it); |
| 6836 | goto out; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6837 | } |
| 6838 | } |
| 6839 | |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6840 | out: |
Paolo Bonzini | bd6458e | 2017-12-07 20:13:15 +0000 | [diff] [blame] | 6841 | for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { |
| 6842 | AioContext *aio_context = ctx->data; |
| 6843 | aio_context_release(aio_context); |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6844 | } |
Paolo Bonzini | bd6458e | 2017-12-07 20:13:15 +0000 | [diff] [blame] | 6845 | g_slist_free(aio_ctxs); |
Fam Zheng | aad0b7a | 2016-05-11 10:45:35 +0800 | [diff] [blame] | 6846 | |
| 6847 | return ret; |
Kevin Wolf | 76b1c7f | 2015-12-22 14:07:08 +0100 | [diff] [blame] | 6848 | } |
| 6849 | |
Kevin Wolf | f9f05dc | 2011-07-15 13:50:26 +0200 | [diff] [blame] | 6850 | /**************************************************************/ |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6851 | /* removable device support */ |
| 6852 | |
| 6853 | /** |
| 6854 | * Return TRUE if the media is present |
| 6855 | */ |
Emanuele Giuseppe Esposito | 1e97be9 | 2023-01-13 21:42:02 +0100 | [diff] [blame] | 6856 | bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6857 | { |
| 6858 | BlockDriver *drv = bs->drv; |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 6859 | BdrvChild *child; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6860 | IO_CODE(); |
Emanuele Giuseppe Esposito | c73ff92 | 2023-02-03 16:21:57 +0100 | [diff] [blame] | 6861 | assert_bdrv_graph_readable(); |
Markus Armbruster | a1aff5b | 2011-09-06 18:58:41 +0200 | [diff] [blame] | 6862 | |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 6863 | if (!drv) { |
| 6864 | return false; |
| 6865 | } |
Emanuele Giuseppe Esposito | 1e97be9 | 2023-01-13 21:42:02 +0100 | [diff] [blame] | 6866 | if (drv->bdrv_co_is_inserted) { |
| 6867 | return drv->bdrv_co_is_inserted(bs); |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 6868 | } |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 6869 | QLIST_FOREACH(child, &bs->children, next) { |
Emanuele Giuseppe Esposito | 1e97be9 | 2023-01-13 21:42:02 +0100 | [diff] [blame] | 6870 | if (!bdrv_co_is_inserted(child->bs)) { |
Max Reitz | 28d7a78 | 2015-10-19 17:53:13 +0200 | [diff] [blame] | 6871 | return false; |
| 6872 | } |
| 6873 | } |
| 6874 | return true; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6875 | } |
| 6876 | |
| 6877 | /** |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6878 | * If eject_flag is TRUE, eject the media. Otherwise, close the tray |
| 6879 | */ |
Emanuele Giuseppe Esposito | 2531b39 | 2023-01-13 21:42:09 +0100 | [diff] [blame] | 6880 | void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6881 | { |
| 6882 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6883 | IO_CODE(); |
Kevin Wolf | 79a292e | 2023-02-03 16:21:58 +0100 | [diff] [blame] | 6884 | assert_bdrv_graph_readable(); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6885 | |
Emanuele Giuseppe Esposito | 2531b39 | 2023-01-13 21:42:09 +0100 | [diff] [blame] | 6886 | if (drv && drv->bdrv_co_eject) { |
| 6887 | drv->bdrv_co_eject(bs, eject_flag); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6888 | } |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6889 | } |
| 6890 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6891 | /** |
| 6892 | * Lock or unlock the media (if it is locked, the user won't be able |
| 6893 | * to eject it manually). |
| 6894 | */ |
Emanuele Giuseppe Esposito | 2c75261 | 2023-01-13 21:42:10 +0100 | [diff] [blame] | 6895 | void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6896 | { |
| 6897 | BlockDriver *drv = bs->drv; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 6898 | IO_CODE(); |
Kevin Wolf | 79a292e | 2023-02-03 16:21:58 +0100 | [diff] [blame] | 6899 | assert_bdrv_graph_readable(); |
Markus Armbruster | 025e849 | 2011-09-06 18:58:47 +0200 | [diff] [blame] | 6900 | trace_bdrv_lock_medium(bs, locked); |
Stefan Hajnoczi | b8c6d09 | 2011-03-29 20:04:40 +0100 | [diff] [blame] | 6901 | |
Emanuele Giuseppe Esposito | 2c75261 | 2023-01-13 21:42:10 +0100 | [diff] [blame] | 6902 | if (drv && drv->bdrv_co_lock_medium) { |
| 6903 | drv->bdrv_co_lock_medium(bs, locked); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 6904 | } |
| 6905 | } |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 6906 | |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 6907 | /* Get a reference to bs */ |
| 6908 | void bdrv_ref(BlockDriverState *bs) |
| 6909 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6910 | GLOBAL_STATE_CODE(); |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 6911 | bs->refcnt++; |
| 6912 | } |
| 6913 | |
| 6914 | /* Release a previously grabbed reference to bs. |
| 6915 | * If after releasing, reference count is zero, the BlockDriverState is |
| 6916 | * deleted. */ |
| 6917 | void bdrv_unref(BlockDriverState *bs) |
| 6918 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6919 | GLOBAL_STATE_CODE(); |
Jeff Cody | 9a4d5ca | 2014-07-23 17:22:57 -0400 | [diff] [blame] | 6920 | if (!bs) { |
| 6921 | return; |
| 6922 | } |
Fam Zheng | 9fcb025 | 2013-08-23 09:14:46 +0800 | [diff] [blame] | 6923 | assert(bs->refcnt > 0); |
| 6924 | if (--bs->refcnt == 0) { |
| 6925 | bdrv_delete(bs); |
| 6926 | } |
| 6927 | } |
| 6928 | |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6929 | struct BdrvOpBlocker { |
| 6930 | Error *reason; |
| 6931 | QLIST_ENTRY(BdrvOpBlocker) list; |
| 6932 | }; |
| 6933 | |
| 6934 | bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) |
| 6935 | { |
| 6936 | BdrvOpBlocker *blocker; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6937 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6938 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 6939 | if (!QLIST_EMPTY(&bs->op_blockers[op])) { |
| 6940 | blocker = QLIST_FIRST(&bs->op_blockers[op]); |
Markus Armbruster | 4b57664 | 2018-10-17 10:26:25 +0200 | [diff] [blame] | 6941 | error_propagate_prepend(errp, error_copy(blocker->reason), |
| 6942 | "Node '%s' is busy: ", |
| 6943 | bdrv_get_device_or_node_name(bs)); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6944 | return true; |
| 6945 | } |
| 6946 | return false; |
| 6947 | } |
| 6948 | |
| 6949 | void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) |
| 6950 | { |
| 6951 | BdrvOpBlocker *blocker; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6952 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6953 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 6954 | |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 6955 | blocker = g_new0(BdrvOpBlocker, 1); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6956 | blocker->reason = reason; |
| 6957 | QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); |
| 6958 | } |
| 6959 | |
| 6960 | void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) |
| 6961 | { |
| 6962 | BdrvOpBlocker *blocker, *next; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6963 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6964 | assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); |
| 6965 | QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { |
| 6966 | if (blocker->reason == reason) { |
| 6967 | QLIST_REMOVE(blocker, list); |
| 6968 | g_free(blocker); |
| 6969 | } |
| 6970 | } |
| 6971 | } |
| 6972 | |
| 6973 | void bdrv_op_block_all(BlockDriverState *bs, Error *reason) |
| 6974 | { |
| 6975 | int i; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6976 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6977 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 6978 | bdrv_op_block(bs, i, reason); |
| 6979 | } |
| 6980 | } |
| 6981 | |
| 6982 | void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) |
| 6983 | { |
| 6984 | int i; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6985 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6986 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 6987 | bdrv_op_unblock(bs, i, reason); |
| 6988 | } |
| 6989 | } |
| 6990 | |
| 6991 | bool bdrv_op_blocker_is_empty(BlockDriverState *bs) |
| 6992 | { |
| 6993 | int i; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 6994 | GLOBAL_STATE_CODE(); |
Fam Zheng | fbe40ff | 2014-05-23 21:29:42 +0800 | [diff] [blame] | 6995 | for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { |
| 6996 | if (!QLIST_EMPTY(&bs->op_blockers[i])) { |
| 6997 | return false; |
| 6998 | } |
| 6999 | } |
| 7000 | return true; |
| 7001 | } |
| 7002 | |
Kevin Wolf | e135505 | 2022-12-07 14:18:30 +0100 | [diff] [blame] | 7003 | /* |
| 7004 | * Must not be called while holding the lock of an AioContext other than the |
| 7005 | * current one. |
| 7006 | */ |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 7007 | void bdrv_img_create(const char *filename, const char *fmt, |
| 7008 | const char *base_filename, const char *base_fmt, |
Fam Zheng | 9217283 | 2017-04-21 20:27:01 +0800 | [diff] [blame] | 7009 | char *options, uint64_t img_size, int flags, bool quiet, |
| 7010 | Error **errp) |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7011 | { |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7012 | QemuOptsList *create_opts = NULL; |
| 7013 | QemuOpts *opts = NULL; |
| 7014 | const char *backing_fmt, *backing_file; |
| 7015 | int64_t size; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7016 | BlockDriver *drv, *proto_drv; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7017 | Error *local_err = NULL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7018 | int ret = 0; |
| 7019 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7020 | GLOBAL_STATE_CODE(); |
| 7021 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7022 | /* Find driver and parse its options */ |
| 7023 | drv = bdrv_find_format(fmt); |
| 7024 | if (!drv) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7025 | error_setg(errp, "Unknown file format '%s'", fmt); |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 7026 | return; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7027 | } |
| 7028 | |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 7029 | proto_drv = bdrv_find_protocol(filename, true, errp); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7030 | if (!proto_drv) { |
Luiz Capitulino | d92ada2 | 2012-11-30 10:52:09 -0200 | [diff] [blame] | 7031 | return; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7032 | } |
| 7033 | |
Max Reitz | c614972 | 2014-12-02 18:32:45 +0100 | [diff] [blame] | 7034 | if (!drv->create_opts) { |
| 7035 | error_setg(errp, "Format driver '%s' does not support image creation", |
| 7036 | drv->format_name); |
| 7037 | return; |
| 7038 | } |
| 7039 | |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 7040 | if (!proto_drv->create_opts) { |
| 7041 | error_setg(errp, "Protocol driver '%s' does not support image creation", |
| 7042 | proto_drv->format_name); |
| 7043 | return; |
| 7044 | } |
| 7045 | |
Kevin Wolf | f6dc1c3 | 2019-11-26 16:45:49 +0100 | [diff] [blame] | 7046 | /* Create parameter list */ |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7047 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
Maxim Levitsky | 5a5e7f8 | 2020-03-26 03:12:18 +0200 | [diff] [blame] | 7048 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7049 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7050 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7051 | |
| 7052 | /* Parse -o options */ |
| 7053 | if (options) { |
Markus Armbruster | a5f9b9d | 2020-07-07 18:06:05 +0200 | [diff] [blame] | 7054 | if (!qemu_opts_do_parse(opts, options, NULL, errp)) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7055 | goto out; |
| 7056 | } |
| 7057 | } |
| 7058 | |
Kevin Wolf | f6dc1c3 | 2019-11-26 16:45:49 +0100 | [diff] [blame] | 7059 | if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) { |
| 7060 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); |
| 7061 | } else if (img_size != UINT64_C(-1)) { |
| 7062 | error_setg(errp, "The image size must be specified only once"); |
| 7063 | goto out; |
| 7064 | } |
| 7065 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7066 | if (base_filename) { |
Markus Armbruster | 235e59c | 2020-07-07 18:05:42 +0200 | [diff] [blame] | 7067 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, |
Markus Armbruster | 3882578 | 2020-07-07 18:05:43 +0200 | [diff] [blame] | 7068 | NULL)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7069 | error_setg(errp, "Backing file not supported for file format '%s'", |
| 7070 | fmt); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7071 | goto out; |
| 7072 | } |
| 7073 | } |
| 7074 | |
| 7075 | if (base_fmt) { |
Markus Armbruster | 3882578 | 2020-07-07 18:05:43 +0200 | [diff] [blame] | 7076 | if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7077 | error_setg(errp, "Backing file format not supported for file " |
| 7078 | "format '%s'", fmt); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7079 | goto out; |
| 7080 | } |
| 7081 | } |
| 7082 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7083 | backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); |
| 7084 | if (backing_file) { |
| 7085 | if (!strcmp(filename, backing_file)) { |
Luiz Capitulino | 71c7981 | 2012-11-30 10:52:04 -0200 | [diff] [blame] | 7086 | error_setg(errp, "Error: Trying to create an image with the " |
| 7087 | "same filename as the backing file"); |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 7088 | goto out; |
| 7089 | } |
Connor Kuehl | 975a7bd | 2020-08-13 08:47:22 -0500 | [diff] [blame] | 7090 | if (backing_file[0] == '\0') { |
| 7091 | error_setg(errp, "Expected backing file name, got empty string"); |
| 7092 | goto out; |
| 7093 | } |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 7094 | } |
| 7095 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7096 | backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7097 | |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7098 | /* The size for the image must always be specified, unless we have a backing |
| 7099 | * file and we have not been forbidden from opening it. */ |
Eric Blake | a8b42a1 | 2017-09-25 09:55:07 -0500 | [diff] [blame] | 7100 | size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7101 | if (backing_file && !(flags & BDRV_O_NO_BACKING)) { |
| 7102 | BlockDriverState *bs; |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 7103 | char *full_backing; |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7104 | int back_flags; |
| 7105 | QDict *backing_options = NULL; |
Paolo Bonzini | 63090da | 2012-04-12 14:01:03 +0200 | [diff] [blame] | 7106 | |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 7107 | full_backing = |
| 7108 | bdrv_get_full_backing_filename_from_filename(filename, backing_file, |
| 7109 | &local_err); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7110 | if (local_err) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7111 | goto out; |
| 7112 | } |
Max Reitz | 645ae7d | 2019-02-01 20:29:14 +0100 | [diff] [blame] | 7113 | assert(full_backing); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7114 | |
Max Reitz | d5b2399 | 2021-06-22 16:00:30 +0200 | [diff] [blame] | 7115 | /* |
| 7116 | * No need to do I/O here, which allows us to open encrypted |
| 7117 | * backing images without needing the secret |
| 7118 | */ |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7119 | back_flags = flags; |
| 7120 | back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); |
Max Reitz | d5b2399 | 2021-06-22 16:00:30 +0200 | [diff] [blame] | 7121 | back_flags |= BDRV_O_NO_IO; |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7122 | |
Fam Zheng | cc954f0 | 2017-12-15 16:04:45 +0800 | [diff] [blame] | 7123 | backing_options = qdict_new(); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7124 | if (backing_fmt) { |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7125 | qdict_put_str(backing_options, "driver", backing_fmt); |
| 7126 | } |
Fam Zheng | cc954f0 | 2017-12-15 16:04:45 +0800 | [diff] [blame] | 7127 | qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7128 | |
| 7129 | bs = bdrv_open(full_backing, NULL, backing_options, back_flags, |
| 7130 | &local_err); |
| 7131 | g_free(full_backing); |
Eric Blake | add8200 | 2020-07-06 15:39:50 -0500 | [diff] [blame] | 7132 | if (!bs) { |
| 7133 | error_append_hint(&local_err, "Could not open backing image.\n"); |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7134 | goto out; |
| 7135 | } else { |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7136 | if (!backing_fmt) { |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 7137 | error_setg(&local_err, |
| 7138 | "Backing file specified without backing format"); |
| 7139 | error_append_hint(&local_err, "Detected format of %s.", |
| 7140 | bs->drv->format_name); |
| 7141 | goto out; |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7142 | } |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7143 | if (size == -1) { |
| 7144 | /* Opened BS, have no size */ |
| 7145 | size = bdrv_getlength(bs); |
| 7146 | if (size < 0) { |
| 7147 | error_setg_errno(errp, -size, "Could not get size of '%s'", |
| 7148 | backing_file); |
| 7149 | bdrv_unref(bs); |
| 7150 | goto out; |
| 7151 | } |
| 7152 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); |
| 7153 | } |
| 7154 | bdrv_unref(bs); |
| 7155 | } |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7156 | /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ |
| 7157 | } else if (backing_file && !backing_fmt) { |
Eric Blake | 497a30d | 2021-05-03 14:36:00 -0700 | [diff] [blame] | 7158 | error_setg(&local_err, |
| 7159 | "Backing file specified without backing format"); |
| 7160 | goto out; |
Eric Blake | d9f059a | 2020-07-06 15:39:54 -0500 | [diff] [blame] | 7161 | } |
John Snow | 6e6e55f | 2017-07-17 20:34:22 -0400 | [diff] [blame] | 7162 | |
| 7163 | if (size == -1) { |
| 7164 | error_setg(errp, "Image creation needs a size parameter"); |
| 7165 | goto out; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7166 | } |
| 7167 | |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 7168 | if (!quiet) { |
Kővágó, Zoltán | fe64669 | 2015-07-07 16:42:10 +0200 | [diff] [blame] | 7169 | printf("Formatting '%s', fmt=%s ", filename, fmt); |
Fam Zheng | 43c5d8f | 2014-12-09 15:38:04 +0800 | [diff] [blame] | 7170 | qemu_opts_print(opts, " "); |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 7171 | puts(""); |
Eric Blake | 4e2f441 | 2020-07-06 15:39:45 -0500 | [diff] [blame] | 7172 | fflush(stdout); |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 7173 | } |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7174 | |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7175 | ret = bdrv_create(drv, filename, opts, &local_err); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7176 | |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7177 | if (ret == -EFBIG) { |
| 7178 | /* This is generally a better message than whatever the driver would |
| 7179 | * deliver (especially because of the cluster_size_hint), since that |
| 7180 | * is most probably not much different from "image too large". */ |
| 7181 | const char *cluster_size_hint = ""; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7182 | if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7183 | cluster_size_hint = " (try using a larger cluster size)"; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7184 | } |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 7185 | error_setg(errp, "The image size is too large for file format '%s'" |
| 7186 | "%s", fmt, cluster_size_hint); |
| 7187 | error_free(local_err); |
| 7188 | local_err = NULL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7189 | } |
| 7190 | |
| 7191 | out: |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 7192 | qemu_opts_del(opts); |
| 7193 | qemu_opts_free(create_opts); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 7194 | error_propagate(errp, local_err); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 7195 | } |
Stefan Hajnoczi | 85d126f | 2013-03-07 13:41:48 +0100 | [diff] [blame] | 7196 | |
| 7197 | AioContext *bdrv_get_aio_context(BlockDriverState *bs) |
| 7198 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7199 | IO_CODE(); |
Stefan Hajnoczi | 33f2a75 | 2018-02-16 16:50:13 +0000 | [diff] [blame] | 7200 | return bs ? bs->aio_context : qemu_get_aio_context(); |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7201 | } |
| 7202 | |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 7203 | AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs) |
| 7204 | { |
| 7205 | Coroutine *self = qemu_coroutine_self(); |
| 7206 | AioContext *old_ctx = qemu_coroutine_get_aio_context(self); |
| 7207 | AioContext *new_ctx; |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7208 | IO_CODE(); |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 7209 | |
| 7210 | /* |
| 7211 | * Increase bs->in_flight to ensure that this operation is completed before |
| 7212 | * moving the node to a different AioContext. Read new_ctx only afterwards. |
| 7213 | */ |
| 7214 | bdrv_inc_in_flight(bs); |
| 7215 | |
| 7216 | new_ctx = bdrv_get_aio_context(bs); |
| 7217 | aio_co_reschedule_self(new_ctx); |
| 7218 | return old_ctx; |
| 7219 | } |
| 7220 | |
| 7221 | void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx) |
| 7222 | { |
Emanuele Giuseppe Esposito | 384a48f | 2022-03-03 10:15:50 -0500 | [diff] [blame] | 7223 | IO_CODE(); |
Kevin Wolf | e336fd4 | 2020-10-05 17:58:53 +0200 | [diff] [blame] | 7224 | aio_co_reschedule_self(old_ctx); |
| 7225 | bdrv_dec_in_flight(bs); |
| 7226 | } |
| 7227 | |
Kevin Wolf | 18c6ac1 | 2020-10-05 17:58:54 +0200 | [diff] [blame] | 7228 | void coroutine_fn bdrv_co_lock(BlockDriverState *bs) |
| 7229 | { |
| 7230 | AioContext *ctx = bdrv_get_aio_context(bs); |
| 7231 | |
| 7232 | /* In the main thread, bs->aio_context won't change concurrently */ |
| 7233 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
| 7234 | |
| 7235 | /* |
| 7236 | * We're in coroutine context, so we already hold the lock of the main |
| 7237 | * loop AioContext. Don't lock it twice to avoid deadlocks. |
| 7238 | */ |
| 7239 | assert(qemu_in_coroutine()); |
| 7240 | if (ctx != qemu_get_aio_context()) { |
| 7241 | aio_context_acquire(ctx); |
| 7242 | } |
| 7243 | } |
| 7244 | |
| 7245 | void coroutine_fn bdrv_co_unlock(BlockDriverState *bs) |
| 7246 | { |
| 7247 | AioContext *ctx = bdrv_get_aio_context(bs); |
| 7248 | |
| 7249 | assert(qemu_in_coroutine()); |
| 7250 | if (ctx != qemu_get_aio_context()) { |
| 7251 | aio_context_release(ctx); |
| 7252 | } |
| 7253 | } |
| 7254 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7255 | static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) |
| 7256 | { |
Emanuele Giuseppe Esposito | bdb7347 | 2022-03-03 10:16:02 -0500 | [diff] [blame] | 7257 | GLOBAL_STATE_CODE(); |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7258 | QLIST_REMOVE(ban, list); |
| 7259 | g_free(ban); |
| 7260 | } |
| 7261 | |
Kevin Wolf | a3a683c | 2019-05-06 19:17:57 +0200 | [diff] [blame] | 7262 | static void bdrv_detach_aio_context(BlockDriverState *bs) |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7263 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7264 | BdrvAioNotifier *baf, *baf_tmp; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7265 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7266 | assert(!bs->walking_aio_notifiers); |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 7267 | GLOBAL_STATE_CODE(); |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7268 | bs->walking_aio_notifiers = true; |
| 7269 | QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { |
| 7270 | if (baf->deleted) { |
| 7271 | bdrv_do_remove_aio_context_notifier(baf); |
| 7272 | } else { |
| 7273 | baf->detach_aio_context(baf->opaque); |
| 7274 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7275 | } |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7276 | /* Never mind iterating again to check for ->deleted. bdrv_close() will |
| 7277 | * remove remaining aio notifiers if we aren't called again. |
| 7278 | */ |
| 7279 | bs->walking_aio_notifiers = false; |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7280 | |
Kevin Wolf | 1bffe1a | 2019-04-17 17:15:25 +0200 | [diff] [blame] | 7281 | if (bs->drv && bs->drv->bdrv_detach_aio_context) { |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7282 | bs->drv->bdrv_detach_aio_context(bs); |
| 7283 | } |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7284 | |
Kevin Wolf | e64f25f | 2019-02-08 16:51:17 +0100 | [diff] [blame] | 7285 | if (bs->quiesce_counter) { |
| 7286 | aio_enable_external(bs->aio_context); |
| 7287 | } |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7288 | bs->aio_context = NULL; |
| 7289 | } |
| 7290 | |
Kevin Wolf | a3a683c | 2019-05-06 19:17:57 +0200 | [diff] [blame] | 7291 | static void bdrv_attach_aio_context(BlockDriverState *bs, |
| 7292 | AioContext *new_context) |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7293 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7294 | BdrvAioNotifier *ban, *ban_tmp; |
Emanuele Giuseppe Esposito | da35990 | 2022-03-03 10:16:11 -0500 | [diff] [blame] | 7295 | GLOBAL_STATE_CODE(); |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7296 | |
Kevin Wolf | e64f25f | 2019-02-08 16:51:17 +0100 | [diff] [blame] | 7297 | if (bs->quiesce_counter) { |
| 7298 | aio_disable_external(new_context); |
| 7299 | } |
| 7300 | |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7301 | bs->aio_context = new_context; |
| 7302 | |
Kevin Wolf | 1bffe1a | 2019-04-17 17:15:25 +0200 | [diff] [blame] | 7303 | if (bs->drv && bs->drv->bdrv_attach_aio_context) { |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7304 | bs->drv->bdrv_attach_aio_context(bs, new_context); |
| 7305 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7306 | |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7307 | assert(!bs->walking_aio_notifiers); |
| 7308 | bs->walking_aio_notifiers = true; |
| 7309 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { |
| 7310 | if (ban->deleted) { |
| 7311 | bdrv_do_remove_aio_context_notifier(ban); |
| 7312 | } else { |
| 7313 | ban->attached_aio_context(new_context, ban->opaque); |
| 7314 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7315 | } |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7316 | bs->walking_aio_notifiers = false; |
Stefan Hajnoczi | dcd0422 | 2014-05-08 16:34:37 +0200 | [diff] [blame] | 7317 | } |
| 7318 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7319 | typedef struct BdrvStateSetAioContext { |
| 7320 | AioContext *new_ctx; |
| 7321 | BlockDriverState *bs; |
| 7322 | } BdrvStateSetAioContext; |
| 7323 | |
| 7324 | static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx, |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7325 | GHashTable *visited, |
| 7326 | Transaction *tran, |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7327 | Error **errp) |
| 7328 | { |
| 7329 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7330 | if (g_hash_table_contains(visited, c)) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7331 | return true; |
| 7332 | } |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7333 | g_hash_table_add(visited, c); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7334 | |
| 7335 | /* |
| 7336 | * A BdrvChildClass that doesn't handle AioContext changes cannot |
| 7337 | * tolerate any AioContext changes |
| 7338 | */ |
| 7339 | if (!c->klass->change_aio_ctx) { |
| 7340 | char *user = bdrv_child_user_desc(c); |
| 7341 | error_setg(errp, "Changing iothreads is not supported by %s", user); |
| 7342 | g_free(user); |
| 7343 | return false; |
| 7344 | } |
| 7345 | if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) { |
| 7346 | assert(!errp || *errp); |
| 7347 | return false; |
| 7348 | } |
| 7349 | return true; |
| 7350 | } |
| 7351 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7352 | bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx, |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7353 | GHashTable *visited, Transaction *tran, |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7354 | Error **errp) |
| 7355 | { |
| 7356 | GLOBAL_STATE_CODE(); |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7357 | if (g_hash_table_contains(visited, c)) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7358 | return true; |
| 7359 | } |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7360 | g_hash_table_add(visited, c); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7361 | return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp); |
| 7362 | } |
| 7363 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7364 | static void bdrv_set_aio_context_clean(void *opaque) |
| 7365 | { |
| 7366 | BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque; |
| 7367 | BlockDriverState *bs = (BlockDriverState *) state->bs; |
| 7368 | |
| 7369 | /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */ |
| 7370 | bdrv_drained_end(bs); |
| 7371 | |
| 7372 | g_free(state); |
| 7373 | } |
| 7374 | |
| 7375 | static void bdrv_set_aio_context_commit(void *opaque) |
| 7376 | { |
| 7377 | BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque; |
| 7378 | BlockDriverState *bs = (BlockDriverState *) state->bs; |
| 7379 | AioContext *new_context = state->new_ctx; |
| 7380 | AioContext *old_context = bdrv_get_aio_context(bs); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7381 | |
| 7382 | /* |
| 7383 | * Take the old AioContex when detaching it from bs. |
| 7384 | * At this point, new_context lock is already acquired, and we are now |
| 7385 | * also taking old_context. This is safe as long as bdrv_detach_aio_context |
| 7386 | * does not call AIO_POLL_WHILE(). |
| 7387 | */ |
| 7388 | if (old_context != qemu_get_aio_context()) { |
| 7389 | aio_context_acquire(old_context); |
| 7390 | } |
| 7391 | bdrv_detach_aio_context(bs); |
| 7392 | if (old_context != qemu_get_aio_context()) { |
| 7393 | aio_context_release(old_context); |
| 7394 | } |
| 7395 | bdrv_attach_aio_context(bs, new_context); |
| 7396 | } |
| 7397 | |
| 7398 | static TransactionActionDrv set_aio_context = { |
| 7399 | .commit = bdrv_set_aio_context_commit, |
| 7400 | .clean = bdrv_set_aio_context_clean, |
| 7401 | }; |
| 7402 | |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 7403 | /* |
| 7404 | * Changes the AioContext used for fd handlers, timers, and BHs by this |
| 7405 | * BlockDriverState and all its children and parents. |
| 7406 | * |
Max Reitz | 43eaaae | 2019-07-22 15:30:54 +0200 | [diff] [blame] | 7407 | * Must be called from the main AioContext. |
| 7408 | * |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 7409 | * The caller must own the AioContext lock for the old AioContext of bs, but it |
| 7410 | * must not own the AioContext lock for new_context (unless new_context is the |
| 7411 | * same as the current context of bs). |
| 7412 | * |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7413 | * @visited will accumulate all visited BdrvChild objects. The caller is |
Kevin Wolf | 42a65f0 | 2019-05-07 18:31:38 +0200 | [diff] [blame] | 7414 | * responsible for freeing the list afterwards. |
| 7415 | */ |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7416 | static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx, |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7417 | GHashTable *visited, Transaction *tran, |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7418 | Error **errp) |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7419 | { |
| 7420 | BdrvChild *c; |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7421 | BdrvStateSetAioContext *state; |
| 7422 | |
| 7423 | GLOBAL_STATE_CODE(); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7424 | |
| 7425 | if (bdrv_get_aio_context(bs) == ctx) { |
| 7426 | return true; |
| 7427 | } |
| 7428 | |
| 7429 | QLIST_FOREACH(c, &bs->parents, next_parent) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7430 | if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) { |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7431 | return false; |
| 7432 | } |
| 7433 | } |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7434 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7435 | QLIST_FOREACH(c, &bs->children, next) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7436 | if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) { |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7437 | return false; |
| 7438 | } |
| 7439 | } |
| 7440 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7441 | state = g_new(BdrvStateSetAioContext, 1); |
| 7442 | *state = (BdrvStateSetAioContext) { |
| 7443 | .new_ctx = ctx, |
| 7444 | .bs = bs, |
| 7445 | }; |
| 7446 | |
| 7447 | /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */ |
| 7448 | bdrv_drained_begin(bs); |
| 7449 | |
| 7450 | tran_add(tran, &set_aio_context, state); |
| 7451 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7452 | return true; |
| 7453 | } |
| 7454 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7455 | /* |
| 7456 | * Change bs's and recursively all of its parents' and children's AioContext |
| 7457 | * to the given new context, returning an error if that isn't possible. |
| 7458 | * |
| 7459 | * If ignore_child is not NULL, that child (and its subgraph) will not |
| 7460 | * be touched. |
| 7461 | * |
| 7462 | * This function still requires the caller to take the bs current |
| 7463 | * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE |
| 7464 | * assumes the lock is always held if bs is in another AioContext. |
| 7465 | * For the same reason, it temporarily also holds the new AioContext, since |
| 7466 | * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too. |
| 7467 | * Therefore the new AioContext lock must not be taken by the caller. |
| 7468 | */ |
Emanuele Giuseppe Esposito | a41cfda | 2022-10-25 04:49:51 -0400 | [diff] [blame] | 7469 | int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx, |
| 7470 | BdrvChild *ignore_child, Error **errp) |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7471 | { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7472 | Transaction *tran; |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7473 | GHashTable *visited; |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7474 | int ret; |
| 7475 | AioContext *old_context = bdrv_get_aio_context(bs); |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7476 | GLOBAL_STATE_CODE(); |
| 7477 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7478 | /* |
| 7479 | * Recursion phase: go through all nodes of the graph. |
| 7480 | * Take care of checking that all nodes support changing AioContext |
| 7481 | * and drain them, builing a linear list of callbacks to run if everything |
| 7482 | * is successful (the transaction itself). |
| 7483 | */ |
| 7484 | tran = tran_new(); |
Emanuele Giuseppe Esposito | e08cc00 | 2022-10-25 04:49:45 -0400 | [diff] [blame] | 7485 | visited = g_hash_table_new(NULL, NULL); |
| 7486 | if (ignore_child) { |
| 7487 | g_hash_table_add(visited, ignore_child); |
| 7488 | } |
| 7489 | ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp); |
| 7490 | g_hash_table_destroy(visited); |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7491 | |
| 7492 | /* |
| 7493 | * Linear phase: go through all callbacks collected in the transaction. |
| 7494 | * Run all callbacks collected in the recursion to switch all nodes |
| 7495 | * AioContext lock (transaction commit), or undo all changes done in the |
| 7496 | * recursion (transaction abort). |
| 7497 | */ |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7498 | |
| 7499 | if (!ret) { |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7500 | /* Just run clean() callbacks. No AioContext changed. */ |
| 7501 | tran_abort(tran); |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7502 | return -EPERM; |
| 7503 | } |
| 7504 | |
Emanuele Giuseppe Esposito | 7e8c182 | 2022-10-25 04:49:44 -0400 | [diff] [blame] | 7505 | /* |
| 7506 | * Release old AioContext, it won't be needed anymore, as all |
| 7507 | * bdrv_drained_begin() have been called already. |
| 7508 | */ |
| 7509 | if (qemu_get_aio_context() != old_context) { |
| 7510 | aio_context_release(old_context); |
| 7511 | } |
| 7512 | |
| 7513 | /* |
| 7514 | * Acquire new AioContext since bdrv_drained_end() is going to be called |
| 7515 | * after we switched all nodes in the new AioContext, and the function |
| 7516 | * assumes that the lock of the bs is always taken. |
| 7517 | */ |
| 7518 | if (qemu_get_aio_context() != ctx) { |
| 7519 | aio_context_acquire(ctx); |
| 7520 | } |
| 7521 | |
| 7522 | tran_commit(tran); |
| 7523 | |
| 7524 | if (qemu_get_aio_context() != ctx) { |
| 7525 | aio_context_release(ctx); |
| 7526 | } |
| 7527 | |
| 7528 | /* Re-acquire the old AioContext, since the caller takes and releases it. */ |
| 7529 | if (qemu_get_aio_context() != old_context) { |
| 7530 | aio_context_acquire(old_context); |
| 7531 | } |
Kevin Wolf | 53a7d04 | 2019-05-06 19:17:59 +0200 | [diff] [blame] | 7532 | |
Kevin Wolf | 5d23184 | 2019-05-06 19:17:56 +0200 | [diff] [blame] | 7533 | return 0; |
| 7534 | } |
| 7535 | |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7536 | void bdrv_add_aio_context_notifier(BlockDriverState *bs, |
| 7537 | void (*attached_aio_context)(AioContext *new_context, void *opaque), |
| 7538 | void (*detach_aio_context)(void *opaque), void *opaque) |
| 7539 | { |
| 7540 | BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); |
| 7541 | *ban = (BdrvAioNotifier){ |
| 7542 | .attached_aio_context = attached_aio_context, |
| 7543 | .detach_aio_context = detach_aio_context, |
| 7544 | .opaque = opaque |
| 7545 | }; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7546 | GLOBAL_STATE_CODE(); |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7547 | |
| 7548 | QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); |
| 7549 | } |
| 7550 | |
| 7551 | void bdrv_remove_aio_context_notifier(BlockDriverState *bs, |
| 7552 | void (*attached_aio_context)(AioContext *, |
| 7553 | void *), |
| 7554 | void (*detach_aio_context)(void *), |
| 7555 | void *opaque) |
| 7556 | { |
| 7557 | BdrvAioNotifier *ban, *ban_next; |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7558 | GLOBAL_STATE_CODE(); |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7559 | |
| 7560 | QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { |
| 7561 | if (ban->attached_aio_context == attached_aio_context && |
| 7562 | ban->detach_aio_context == detach_aio_context && |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7563 | ban->opaque == opaque && |
| 7564 | ban->deleted == false) |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7565 | { |
Stefan Hajnoczi | e8a095d | 2016-06-16 17:56:26 +0100 | [diff] [blame] | 7566 | if (bs->walking_aio_notifiers) { |
| 7567 | ban->deleted = true; |
| 7568 | } else { |
| 7569 | bdrv_do_remove_aio_context_notifier(ban); |
| 7570 | } |
Max Reitz | 3338442 | 2014-06-20 21:57:33 +0200 | [diff] [blame] | 7571 | return; |
| 7572 | } |
| 7573 | } |
| 7574 | |
| 7575 | abort(); |
| 7576 | } |
| 7577 | |
Max Reitz | 7748543 | 2014-10-27 11:12:50 +0100 | [diff] [blame] | 7578 | int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7579 | BlockDriverAmendStatusCB *status_cb, void *cb_opaque, |
Maxim Levitsky | a3579bf | 2020-06-25 14:55:38 +0200 | [diff] [blame] | 7580 | bool force, |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7581 | Error **errp) |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7582 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7583 | GLOBAL_STATE_CODE(); |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 7584 | if (!bs->drv) { |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7585 | error_setg(errp, "Node is ejected"); |
Max Reitz | d470ad4 | 2017-11-10 21:31:09 +0100 | [diff] [blame] | 7586 | return -ENOMEDIUM; |
| 7587 | } |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 7588 | if (!bs->drv->bdrv_amend_options) { |
Max Reitz | d1402b5 | 2018-05-09 23:00:18 +0200 | [diff] [blame] | 7589 | error_setg(errp, "Block driver '%s' does not support option amendment", |
| 7590 | bs->drv->format_name); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7591 | return -ENOTSUP; |
| 7592 | } |
Maxim Levitsky | a3579bf | 2020-06-25 14:55:38 +0200 | [diff] [blame] | 7593 | return bs->drv->bdrv_amend_options(bs, opts, status_cb, |
| 7594 | cb_opaque, force, errp); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 7595 | } |
Benoît Canet | f6186f4 | 2013-10-02 14:33:48 +0200 | [diff] [blame] | 7596 | |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7597 | /* |
| 7598 | * This function checks whether the given @to_replace is allowed to be |
| 7599 | * replaced by a node that always shows the same data as @bs. This is |
| 7600 | * used for example to verify whether the mirror job can replace |
| 7601 | * @to_replace by the target mirrored from @bs. |
| 7602 | * To be replaceable, @bs and @to_replace may either be guaranteed to |
| 7603 | * always show the same data (because they are only connected through |
| 7604 | * filters), or some driver may allow replacing one of its children |
| 7605 | * because it can guarantee that this child's data is not visible at |
| 7606 | * all (for example, for dissenting quorum children that have no other |
| 7607 | * parents). |
| 7608 | */ |
| 7609 | bool bdrv_recurse_can_replace(BlockDriverState *bs, |
| 7610 | BlockDriverState *to_replace) |
| 7611 | { |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 7612 | BlockDriverState *filtered; |
| 7613 | |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 7614 | GLOBAL_STATE_CODE(); |
| 7615 | |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7616 | if (!bs || !bs->drv) { |
| 7617 | return false; |
| 7618 | } |
| 7619 | |
| 7620 | if (bs == to_replace) { |
| 7621 | return true; |
| 7622 | } |
| 7623 | |
| 7624 | /* See what the driver can do */ |
| 7625 | if (bs->drv->bdrv_recurse_can_replace) { |
| 7626 | return bs->drv->bdrv_recurse_can_replace(bs, to_replace); |
| 7627 | } |
| 7628 | |
| 7629 | /* For filters without an own implementation, we can recurse on our own */ |
Max Reitz | 93393e6 | 2019-06-12 17:03:38 +0200 | [diff] [blame] | 7630 | filtered = bdrv_filter_bs(bs); |
| 7631 | if (filtered) { |
| 7632 | return bdrv_recurse_can_replace(filtered, to_replace); |
Max Reitz | 5d69b5a | 2020-02-18 11:34:41 +0100 | [diff] [blame] | 7633 | } |
| 7634 | |
| 7635 | /* Safe default */ |
| 7636 | return false; |
| 7637 | } |
| 7638 | |
Max Reitz | 810803a | 2020-02-18 11:34:44 +0100 | [diff] [blame] | 7639 | /* |
| 7640 | * Check whether the given @node_name can be replaced by a node that |
| 7641 | * has the same data as @parent_bs. If so, return @node_name's BDS; |
| 7642 | * NULL otherwise. |
| 7643 | * |
| 7644 | * @node_name must be a (recursive) *child of @parent_bs (or this |
| 7645 | * function will return NULL). |
| 7646 | * |
| 7647 | * The result (whether the node can be replaced or not) is only valid |
| 7648 | * for as long as no graph or permission changes occur. |
| 7649 | */ |
Wen Congyang | e12f378 | 2015-07-17 10:12:22 +0800 | [diff] [blame] | 7650 | BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, |
| 7651 | const char *node_name, Error **errp) |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7652 | { |
| 7653 | BlockDriverState *to_replace_bs = bdrv_find_node(node_name); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7654 | AioContext *aio_context; |
| 7655 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7656 | GLOBAL_STATE_CODE(); |
| 7657 | |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7658 | if (!to_replace_bs) { |
Connor Kuehl | 785ec4b | 2021-03-05 09:19:28 -0600 | [diff] [blame] | 7659 | 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] | 7660 | return NULL; |
| 7661 | } |
| 7662 | |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7663 | aio_context = bdrv_get_aio_context(to_replace_bs); |
| 7664 | aio_context_acquire(aio_context); |
| 7665 | |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7666 | if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7667 | to_replace_bs = NULL; |
| 7668 | goto out; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7669 | } |
| 7670 | |
| 7671 | /* We don't want arbitrary node of the BDS chain to be replaced only the top |
| 7672 | * most non filter in order to prevent data corruption. |
| 7673 | * Another benefit is that this tests exclude backing files which are |
| 7674 | * blocked by the backing blockers. |
| 7675 | */ |
Max Reitz | 810803a | 2020-02-18 11:34:44 +0100 | [diff] [blame] | 7676 | if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) { |
| 7677 | error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', " |
| 7678 | "because it cannot be guaranteed that doing so would not " |
| 7679 | "lead to an abrupt change of visible data", |
| 7680 | node_name, parent_bs->node_name); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7681 | to_replace_bs = NULL; |
| 7682 | goto out; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7683 | } |
| 7684 | |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 7685 | out: |
| 7686 | aio_context_release(aio_context); |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 7687 | return to_replace_bs; |
| 7688 | } |
Ming Lei | 448ad91 | 2014-07-04 18:04:33 +0800 | [diff] [blame] | 7689 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7690 | /** |
| 7691 | * Iterates through the list of runtime option keys that are said to |
| 7692 | * be "strong" for a BDS. An option is called "strong" if it changes |
| 7693 | * a BDS's data. For example, the null block driver's "size" and |
| 7694 | * "read-zeroes" options are strong, but its "latency-ns" option is |
| 7695 | * not. |
| 7696 | * |
| 7697 | * If a key returned by this function ends with a dot, all options |
| 7698 | * starting with that prefix are strong. |
| 7699 | */ |
| 7700 | static const char *const *strong_options(BlockDriverState *bs, |
| 7701 | const char *const *curopt) |
| 7702 | { |
| 7703 | static const char *const global_options[] = { |
| 7704 | "driver", "filename", NULL |
| 7705 | }; |
| 7706 | |
| 7707 | if (!curopt) { |
| 7708 | return &global_options[0]; |
| 7709 | } |
| 7710 | |
| 7711 | curopt++; |
| 7712 | if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) { |
| 7713 | curopt = bs->drv->strong_runtime_opts; |
| 7714 | } |
| 7715 | |
| 7716 | return (curopt && *curopt) ? curopt : NULL; |
| 7717 | } |
| 7718 | |
| 7719 | /** |
| 7720 | * Copies all strong runtime options from bs->options to the given |
| 7721 | * QDict. The set of strong option keys is determined by invoking |
| 7722 | * strong_options(). |
| 7723 | * |
| 7724 | * Returns true iff any strong option was present in bs->options (and |
| 7725 | * thus copied to the target QDict) with the exception of "filename" |
| 7726 | * and "driver". The caller is expected to use this value to decide |
| 7727 | * whether the existence of strong options prevents the generation of |
| 7728 | * a plain filename. |
| 7729 | */ |
| 7730 | static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs) |
| 7731 | { |
| 7732 | bool found_any = false; |
| 7733 | const char *const *option_name = NULL; |
| 7734 | |
| 7735 | if (!bs->drv) { |
| 7736 | return false; |
| 7737 | } |
| 7738 | |
| 7739 | while ((option_name = strong_options(bs, option_name))) { |
| 7740 | bool option_given = false; |
| 7741 | |
| 7742 | assert(strlen(*option_name) > 0); |
| 7743 | if ((*option_name)[strlen(*option_name) - 1] != '.') { |
| 7744 | QObject *entry = qdict_get(bs->options, *option_name); |
| 7745 | if (!entry) { |
| 7746 | continue; |
| 7747 | } |
| 7748 | |
| 7749 | qdict_put_obj(d, *option_name, qobject_ref(entry)); |
| 7750 | option_given = true; |
| 7751 | } else { |
| 7752 | const QDictEntry *entry; |
| 7753 | for (entry = qdict_first(bs->options); entry; |
| 7754 | entry = qdict_next(bs->options, entry)) |
| 7755 | { |
| 7756 | if (strstart(qdict_entry_key(entry), *option_name, NULL)) { |
| 7757 | qdict_put_obj(d, qdict_entry_key(entry), |
| 7758 | qobject_ref(qdict_entry_value(entry))); |
| 7759 | option_given = true; |
| 7760 | } |
| 7761 | } |
| 7762 | } |
| 7763 | |
| 7764 | /* While "driver" and "filename" need to be included in a JSON filename, |
| 7765 | * their existence does not prohibit generation of a plain filename. */ |
| 7766 | if (!found_any && option_given && |
| 7767 | strcmp(*option_name, "driver") && strcmp(*option_name, "filename")) |
| 7768 | { |
| 7769 | found_any = true; |
| 7770 | } |
| 7771 | } |
| 7772 | |
Max Reitz | 62a01a27 | 2019-02-01 20:29:34 +0100 | [diff] [blame] | 7773 | if (!qdict_haskey(d, "driver")) { |
| 7774 | /* Drivers created with bdrv_new_open_driver() may not have a |
| 7775 | * @driver option. Add it here. */ |
| 7776 | qdict_put_str(d, "driver", bs->drv->format_name); |
| 7777 | } |
| 7778 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7779 | return found_any; |
| 7780 | } |
| 7781 | |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7782 | /* Note: This function may return false positives; it may return true |
| 7783 | * even if opening the backing file specified by bs's image header |
| 7784 | * would result in exactly bs->backing. */ |
Emanuele Giuseppe Esposito | fa8fc1d | 2021-12-15 07:11:38 -0500 | [diff] [blame] | 7785 | static bool bdrv_backing_overridden(BlockDriverState *bs) |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7786 | { |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 7787 | GLOBAL_STATE_CODE(); |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7788 | if (bs->backing) { |
| 7789 | return strcmp(bs->auto_backing_file, |
| 7790 | bs->backing->bs->filename); |
| 7791 | } else { |
| 7792 | /* No backing BDS, so if the image header reports any backing |
| 7793 | * file, it must have been suppressed */ |
| 7794 | return bs->auto_backing_file[0] != '\0'; |
| 7795 | } |
| 7796 | } |
| 7797 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7798 | /* Updates the following BDS fields: |
| 7799 | * - exact_filename: A filename which may be used for opening a block device |
| 7800 | * which (mostly) equals the given BDS (even without any |
| 7801 | * other options; so reading and writing must return the same |
| 7802 | * results, but caching etc. may be different) |
| 7803 | * - full_open_options: Options which, when given when opening a block device |
| 7804 | * (without a filename), result in a BDS (mostly) |
| 7805 | * equalling the given one |
| 7806 | * - filename: If exact_filename is set, it is copied here. Otherwise, |
| 7807 | * full_open_options is converted to a JSON object, prefixed with |
| 7808 | * "json:" (for use through the JSON pseudo protocol) and put here. |
| 7809 | */ |
| 7810 | void bdrv_refresh_filename(BlockDriverState *bs) |
| 7811 | { |
| 7812 | BlockDriver *drv = bs->drv; |
Max Reitz | e24518e | 2019-02-01 20:29:06 +0100 | [diff] [blame] | 7813 | BdrvChild *child; |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7814 | BlockDriverState *primary_child_bs; |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7815 | QDict *opts; |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7816 | bool backing_overridden; |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7817 | bool generate_json_filename; /* Whether our default implementation should |
| 7818 | fill exact_filename (false) or not (true) */ |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7819 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7820 | GLOBAL_STATE_CODE(); |
| 7821 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7822 | if (!drv) { |
| 7823 | return; |
| 7824 | } |
| 7825 | |
Max Reitz | e24518e | 2019-02-01 20:29:06 +0100 | [diff] [blame] | 7826 | /* This BDS's file name may depend on any of its children's file names, so |
| 7827 | * refresh those first */ |
| 7828 | QLIST_FOREACH(child, &bs->children, next) { |
| 7829 | bdrv_refresh_filename(child->bs); |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7830 | } |
| 7831 | |
Max Reitz | bb808d5 | 2019-02-01 20:29:07 +0100 | [diff] [blame] | 7832 | if (bs->implicit) { |
| 7833 | /* For implicit nodes, just copy everything from the single child */ |
| 7834 | child = QLIST_FIRST(&bs->children); |
| 7835 | assert(QLIST_NEXT(child, next) == NULL); |
| 7836 | |
| 7837 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), |
| 7838 | child->bs->exact_filename); |
| 7839 | pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename); |
| 7840 | |
Pan Nengyuan | cb89561 | 2020-01-16 16:56:00 +0800 | [diff] [blame] | 7841 | qobject_unref(bs->full_open_options); |
Max Reitz | bb808d5 | 2019-02-01 20:29:07 +0100 | [diff] [blame] | 7842 | bs->full_open_options = qobject_ref(child->bs->full_open_options); |
| 7843 | |
| 7844 | return; |
| 7845 | } |
| 7846 | |
Max Reitz | 9099362 | 2019-02-01 20:29:09 +0100 | [diff] [blame] | 7847 | backing_overridden = bdrv_backing_overridden(bs); |
| 7848 | |
| 7849 | if (bs->open_flags & BDRV_O_NO_IO) { |
| 7850 | /* Without I/O, the backing file does not change anything. |
| 7851 | * Therefore, in such a case (primarily qemu-img), we can |
| 7852 | * pretend the backing file has not been overridden even if |
| 7853 | * it technically has been. */ |
| 7854 | backing_overridden = false; |
| 7855 | } |
| 7856 | |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7857 | /* Gather the options QDict */ |
| 7858 | opts = qdict_new(); |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7859 | generate_json_filename = append_strong_runtime_options(opts, bs); |
| 7860 | generate_json_filename |= backing_overridden; |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7861 | |
| 7862 | if (drv->bdrv_gather_child_options) { |
| 7863 | /* Some block drivers may not want to present all of their children's |
| 7864 | * options, or name them differently from BdrvChild.name */ |
| 7865 | drv->bdrv_gather_child_options(bs, opts, backing_overridden); |
| 7866 | } else { |
| 7867 | QLIST_FOREACH(child, &bs->children, next) { |
Max Reitz | 25191e5 | 2020-05-13 13:05:33 +0200 | [diff] [blame] | 7868 | if (child == bs->backing && !backing_overridden) { |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7869 | /* We can skip the backing BDS if it has not been overridden */ |
| 7870 | continue; |
| 7871 | } |
| 7872 | |
| 7873 | qdict_put(opts, child->name, |
| 7874 | qobject_ref(child->bs->full_open_options)); |
| 7875 | } |
| 7876 | |
| 7877 | if (backing_overridden && !bs->backing) { |
| 7878 | /* Force no backing file */ |
| 7879 | qdict_put_null(opts, "backing"); |
| 7880 | } |
| 7881 | } |
| 7882 | |
| 7883 | qobject_unref(bs->full_open_options); |
| 7884 | bs->full_open_options = opts; |
| 7885 | |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7886 | primary_child_bs = bdrv_primary_bs(bs); |
| 7887 | |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7888 | if (drv->bdrv_refresh_filename) { |
| 7889 | /* Obsolete information is of no use here, so drop the old file name |
| 7890 | * information before refreshing it */ |
| 7891 | bs->exact_filename[0] = '\0'; |
| 7892 | |
| 7893 | drv->bdrv_refresh_filename(bs); |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7894 | } else if (primary_child_bs) { |
| 7895 | /* |
| 7896 | * Try to reconstruct valid information from the underlying |
| 7897 | * file -- this only works for format nodes (filter nodes |
| 7898 | * cannot be probed and as such must be selected by the user |
| 7899 | * either through an options dict, or through a special |
| 7900 | * filename which the filter driver must construct in its |
| 7901 | * .bdrv_refresh_filename() implementation). |
| 7902 | */ |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7903 | |
| 7904 | bs->exact_filename[0] = '\0'; |
| 7905 | |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 7906 | /* |
| 7907 | * We can use the underlying file's filename if: |
| 7908 | * - it has a filename, |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7909 | * - the current BDS is not a filter, |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 7910 | * - the file is a protocol BDS, and |
| 7911 | * - opening that file (as this BDS's format) will automatically create |
| 7912 | * the BDS tree we have right now, that is: |
| 7913 | * - the user did not significantly change this BDS's behavior with |
| 7914 | * some explicit (strong) options |
| 7915 | * - no non-file child of this BDS has been overridden by the user |
| 7916 | * Both of these conditions are represented by generate_json_filename. |
| 7917 | */ |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7918 | if (primary_child_bs->exact_filename[0] && |
| 7919 | primary_child_bs->drv->bdrv_file_open && |
| 7920 | !drv->is_filter && !generate_json_filename) |
Max Reitz | fb695c7 | 2019-02-01 20:29:29 +0100 | [diff] [blame] | 7921 | { |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7922 | strcpy(bs->exact_filename, primary_child_bs->exact_filename); |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 7923 | } |
| 7924 | } |
| 7925 | |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7926 | if (bs->exact_filename[0]) { |
| 7927 | pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); |
Max Reitz | 97e2f02 | 2019-02-01 20:29:27 +0100 | [diff] [blame] | 7928 | } else { |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 7929 | GString *json = qobject_to_json(QOBJECT(bs->full_open_options)); |
Eric Blake | 5c86bdf | 2020-06-08 13:26:38 -0500 | [diff] [blame] | 7930 | if (snprintf(bs->filename, sizeof(bs->filename), "json:%s", |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 7931 | json->str) >= sizeof(bs->filename)) { |
Eric Blake | 5c86bdf | 2020-06-08 13:26:38 -0500 | [diff] [blame] | 7932 | /* Give user a hint if we truncated things. */ |
| 7933 | strcpy(bs->filename + sizeof(bs->filename) - 4, "..."); |
| 7934 | } |
Markus Armbruster | eab3a46 | 2020-12-11 18:11:37 +0100 | [diff] [blame] | 7935 | g_string_free(json, true); |
Max Reitz | 91af701 | 2014-07-18 20:24:56 +0200 | [diff] [blame] | 7936 | } |
| 7937 | } |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 7938 | |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 7939 | char *bdrv_dirname(BlockDriverState *bs, Error **errp) |
| 7940 | { |
| 7941 | BlockDriver *drv = bs->drv; |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7942 | BlockDriverState *child_bs; |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 7943 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7944 | GLOBAL_STATE_CODE(); |
| 7945 | |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 7946 | if (!drv) { |
| 7947 | error_setg(errp, "Node '%s' is ejected", bs->node_name); |
| 7948 | return NULL; |
| 7949 | } |
| 7950 | |
| 7951 | if (drv->bdrv_dirname) { |
| 7952 | return drv->bdrv_dirname(bs, errp); |
| 7953 | } |
| 7954 | |
Max Reitz | 52f72d6 | 2019-06-12 17:43:03 +0200 | [diff] [blame] | 7955 | child_bs = bdrv_primary_bs(bs); |
| 7956 | if (child_bs) { |
| 7957 | return bdrv_dirname(child_bs, errp); |
Max Reitz | 1e89d0f | 2019-02-01 20:29:18 +0100 | [diff] [blame] | 7958 | } |
| 7959 | |
| 7960 | bdrv_refresh_filename(bs); |
| 7961 | if (bs->exact_filename[0] != '\0') { |
| 7962 | return path_combine(bs->exact_filename, ""); |
| 7963 | } |
| 7964 | |
| 7965 | error_setg(errp, "Cannot generate a base directory for %s nodes", |
| 7966 | drv->format_name); |
| 7967 | return NULL; |
| 7968 | } |
| 7969 | |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 7970 | /* |
| 7971 | * Hot add/remove a BDS's child. So the user can take a child offline when |
| 7972 | * it is broken and take a new child online |
| 7973 | */ |
| 7974 | void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, |
| 7975 | Error **errp) |
| 7976 | { |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 7977 | GLOBAL_STATE_CODE(); |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 7978 | if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { |
| 7979 | error_setg(errp, "The node %s does not support adding a child", |
| 7980 | bdrv_get_device_or_node_name(parent_bs)); |
| 7981 | return; |
| 7982 | } |
| 7983 | |
Sam Li | 774c726 | 2023-05-08 12:55:30 +0800 | [diff] [blame] | 7984 | /* |
| 7985 | * Non-zoned block drivers do not follow zoned storage constraints |
| 7986 | * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned |
| 7987 | * drivers in a graph. |
| 7988 | */ |
| 7989 | if (!parent_bs->drv->supports_zoned_children && |
| 7990 | child_bs->bl.zoned == BLK_Z_HM) { |
| 7991 | /* |
| 7992 | * The host-aware model allows zoned storage constraints and random |
| 7993 | * write. Allow mixing host-aware and non-zoned drivers. Using |
| 7994 | * host-aware device as a regular device. |
| 7995 | */ |
| 7996 | error_setg(errp, "Cannot add a %s child to a %s parent", |
| 7997 | child_bs->bl.zoned == BLK_Z_HM ? "zoned" : "non-zoned", |
| 7998 | parent_bs->drv->supports_zoned_children ? |
| 7999 | "support zoned children" : "not support zoned children"); |
| 8000 | return; |
| 8001 | } |
| 8002 | |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8003 | if (!QLIST_EMPTY(&child_bs->parents)) { |
| 8004 | error_setg(errp, "The node %s already has a parent", |
| 8005 | child_bs->node_name); |
| 8006 | return; |
| 8007 | } |
| 8008 | |
| 8009 | parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); |
| 8010 | } |
| 8011 | |
| 8012 | void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) |
| 8013 | { |
| 8014 | BdrvChild *tmp; |
| 8015 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8016 | GLOBAL_STATE_CODE(); |
Wen Congyang | e06018a | 2016-05-10 15:36:37 +0800 | [diff] [blame] | 8017 | if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { |
| 8018 | error_setg(errp, "The node %s does not support removing a child", |
| 8019 | bdrv_get_device_or_node_name(parent_bs)); |
| 8020 | return; |
| 8021 | } |
| 8022 | |
| 8023 | QLIST_FOREACH(tmp, &parent_bs->children, next) { |
| 8024 | if (tmp == child) { |
| 8025 | break; |
| 8026 | } |
| 8027 | } |
| 8028 | |
| 8029 | if (!tmp) { |
| 8030 | error_setg(errp, "The node %s does not have a child named %s", |
| 8031 | bdrv_get_device_or_node_name(parent_bs), |
| 8032 | bdrv_get_device_or_node_name(child->bs)); |
| 8033 | return; |
| 8034 | } |
| 8035 | |
| 8036 | parent_bs->drv->bdrv_del_child(parent_bs, child, errp); |
| 8037 | } |
Max Reitz | 6f7a3b5 | 2020-04-29 16:11:23 +0200 | [diff] [blame] | 8038 | |
| 8039 | int bdrv_make_empty(BdrvChild *c, Error **errp) |
| 8040 | { |
| 8041 | BlockDriver *drv = c->bs->drv; |
| 8042 | int ret; |
| 8043 | |
Emanuele Giuseppe Esposito | f791bf7 | 2022-03-03 10:15:49 -0500 | [diff] [blame] | 8044 | GLOBAL_STATE_CODE(); |
Max Reitz | 6f7a3b5 | 2020-04-29 16:11:23 +0200 | [diff] [blame] | 8045 | assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)); |
| 8046 | |
| 8047 | if (!drv->bdrv_make_empty) { |
| 8048 | error_setg(errp, "%s does not support emptying nodes", |
| 8049 | drv->format_name); |
| 8050 | return -ENOTSUP; |
| 8051 | } |
| 8052 | |
| 8053 | ret = drv->bdrv_make_empty(c->bs); |
| 8054 | if (ret < 0) { |
| 8055 | error_setg_errno(errp, -ret, "Failed to empty %s", |
| 8056 | c->bs->filename); |
| 8057 | return ret; |
| 8058 | } |
| 8059 | |
| 8060 | return 0; |
| 8061 | } |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8062 | |
| 8063 | /* |
| 8064 | * Return the child that @bs acts as an overlay for, and from which data may be |
| 8065 | * copied in COW or COR operations. Usually this is the backing file. |
| 8066 | */ |
| 8067 | BdrvChild *bdrv_cow_child(BlockDriverState *bs) |
| 8068 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8069 | IO_CODE(); |
| 8070 | |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8071 | if (!bs || !bs->drv) { |
| 8072 | return NULL; |
| 8073 | } |
| 8074 | |
| 8075 | if (bs->drv->is_filter) { |
| 8076 | return NULL; |
| 8077 | } |
| 8078 | |
| 8079 | if (!bs->backing) { |
| 8080 | return NULL; |
| 8081 | } |
| 8082 | |
| 8083 | assert(bs->backing->role & BDRV_CHILD_COW); |
| 8084 | return bs->backing; |
| 8085 | } |
| 8086 | |
| 8087 | /* |
| 8088 | * If @bs acts as a filter for exactly one of its children, return |
| 8089 | * that child. |
| 8090 | */ |
| 8091 | BdrvChild *bdrv_filter_child(BlockDriverState *bs) |
| 8092 | { |
| 8093 | BdrvChild *c; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8094 | IO_CODE(); |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8095 | |
| 8096 | if (!bs || !bs->drv) { |
| 8097 | return NULL; |
| 8098 | } |
| 8099 | |
| 8100 | if (!bs->drv->is_filter) { |
| 8101 | return NULL; |
| 8102 | } |
| 8103 | |
| 8104 | /* Only one of @backing or @file may be used */ |
| 8105 | assert(!(bs->backing && bs->file)); |
| 8106 | |
| 8107 | c = bs->backing ?: bs->file; |
| 8108 | if (!c) { |
| 8109 | return NULL; |
| 8110 | } |
| 8111 | |
| 8112 | assert(c->role & BDRV_CHILD_FILTERED); |
| 8113 | return c; |
| 8114 | } |
| 8115 | |
| 8116 | /* |
| 8117 | * Return either the result of bdrv_cow_child() or bdrv_filter_child(), |
| 8118 | * whichever is non-NULL. |
| 8119 | * |
| 8120 | * Return NULL if both are NULL. |
| 8121 | */ |
| 8122 | BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs) |
| 8123 | { |
| 8124 | BdrvChild *cow_child = bdrv_cow_child(bs); |
| 8125 | BdrvChild *filter_child = bdrv_filter_child(bs); |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8126 | IO_CODE(); |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8127 | |
| 8128 | /* Filter nodes cannot have COW backing files */ |
| 8129 | assert(!(cow_child && filter_child)); |
| 8130 | |
| 8131 | return cow_child ?: filter_child; |
| 8132 | } |
| 8133 | |
| 8134 | /* |
| 8135 | * Return the primary child of this node: For filters, that is the |
| 8136 | * filtered child. For other nodes, that is usually the child storing |
| 8137 | * metadata. |
| 8138 | * (A generally more helpful description is that this is (usually) the |
| 8139 | * child that has the same filename as @bs.) |
| 8140 | * |
| 8141 | * Drivers do not necessarily have a primary child; for example quorum |
| 8142 | * does not. |
| 8143 | */ |
| 8144 | BdrvChild *bdrv_primary_child(BlockDriverState *bs) |
| 8145 | { |
| 8146 | BdrvChild *c, *found = NULL; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8147 | IO_CODE(); |
Max Reitz | 9a6fc88 | 2019-05-31 15:23:11 +0200 | [diff] [blame] | 8148 | |
| 8149 | QLIST_FOREACH(c, &bs->children, next) { |
| 8150 | if (c->role & BDRV_CHILD_PRIMARY) { |
| 8151 | assert(!found); |
| 8152 | found = c; |
| 8153 | } |
| 8154 | } |
| 8155 | |
| 8156 | return found; |
| 8157 | } |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8158 | |
| 8159 | static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs, |
| 8160 | bool stop_on_explicit_filter) |
| 8161 | { |
| 8162 | BdrvChild *c; |
| 8163 | |
| 8164 | if (!bs) { |
| 8165 | return NULL; |
| 8166 | } |
| 8167 | |
| 8168 | while (!(stop_on_explicit_filter && !bs->implicit)) { |
| 8169 | c = bdrv_filter_child(bs); |
| 8170 | if (!c) { |
| 8171 | /* |
| 8172 | * A filter that is embedded in a working block graph must |
| 8173 | * have a child. Assert this here so this function does |
| 8174 | * not return a filter node that is not expected by the |
| 8175 | * caller. |
| 8176 | */ |
| 8177 | assert(!bs->drv || !bs->drv->is_filter); |
| 8178 | break; |
| 8179 | } |
| 8180 | bs = c->bs; |
| 8181 | } |
| 8182 | /* |
| 8183 | * Note that this treats nodes with bs->drv == NULL as not being |
| 8184 | * filters (bs->drv == NULL should be replaced by something else |
| 8185 | * anyway). |
| 8186 | * The advantage of this behavior is that this function will thus |
| 8187 | * always return a non-NULL value (given a non-NULL @bs). |
| 8188 | */ |
| 8189 | |
| 8190 | return bs; |
| 8191 | } |
| 8192 | |
| 8193 | /* |
| 8194 | * Return the first BDS that has not been added implicitly or that |
| 8195 | * does not have a filtered child down the chain starting from @bs |
| 8196 | * (including @bs itself). |
| 8197 | */ |
| 8198 | BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs) |
| 8199 | { |
Emanuele Giuseppe Esposito | b4ad82a | 2022-03-03 10:15:57 -0500 | [diff] [blame] | 8200 | GLOBAL_STATE_CODE(); |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8201 | return bdrv_do_skip_filters(bs, true); |
| 8202 | } |
| 8203 | |
| 8204 | /* |
| 8205 | * Return the first BDS that does not have a filtered child down the |
| 8206 | * chain starting from @bs (including @bs itself). |
| 8207 | */ |
| 8208 | BlockDriverState *bdrv_skip_filters(BlockDriverState *bs) |
| 8209 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8210 | IO_CODE(); |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8211 | return bdrv_do_skip_filters(bs, false); |
| 8212 | } |
| 8213 | |
| 8214 | /* |
| 8215 | * For a backing chain, return the first non-filter backing image of |
| 8216 | * the first non-filter image. |
| 8217 | */ |
| 8218 | BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs) |
| 8219 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8220 | IO_CODE(); |
Max Reitz | d38d7eb | 2019-06-12 15:06:37 +0200 | [diff] [blame] | 8221 | return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs))); |
| 8222 | } |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8223 | |
| 8224 | /** |
| 8225 | * Check whether [offset, offset + bytes) overlaps with the cached |
| 8226 | * block-status data region. |
| 8227 | * |
| 8228 | * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`, |
| 8229 | * which is what bdrv_bsc_is_data()'s interface needs. |
| 8230 | * Otherwise, *pnum is not touched. |
| 8231 | */ |
| 8232 | static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs, |
| 8233 | int64_t offset, int64_t bytes, |
| 8234 | int64_t *pnum) |
| 8235 | { |
| 8236 | BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache); |
| 8237 | bool overlaps; |
| 8238 | |
| 8239 | overlaps = |
| 8240 | qatomic_read(&bsc->valid) && |
| 8241 | ranges_overlap(offset, bytes, bsc->data_start, |
| 8242 | bsc->data_end - bsc->data_start); |
| 8243 | |
| 8244 | if (overlaps && pnum) { |
| 8245 | *pnum = bsc->data_end - offset; |
| 8246 | } |
| 8247 | |
| 8248 | return overlaps; |
| 8249 | } |
| 8250 | |
| 8251 | /** |
| 8252 | * See block_int.h for this function's documentation. |
| 8253 | */ |
| 8254 | bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum) |
| 8255 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8256 | IO_CODE(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8257 | RCU_READ_LOCK_GUARD(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8258 | return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum); |
| 8259 | } |
| 8260 | |
| 8261 | /** |
| 8262 | * See block_int.h for this function's documentation. |
| 8263 | */ |
| 8264 | void bdrv_bsc_invalidate_range(BlockDriverState *bs, |
| 8265 | int64_t offset, int64_t bytes) |
| 8266 | { |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8267 | IO_CODE(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8268 | RCU_READ_LOCK_GUARD(); |
| 8269 | |
| 8270 | if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) { |
| 8271 | qatomic_set(&bs->block_status_cache->valid, false); |
| 8272 | } |
| 8273 | } |
| 8274 | |
| 8275 | /** |
| 8276 | * See block_int.h for this function's documentation. |
| 8277 | */ |
| 8278 | void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes) |
| 8279 | { |
| 8280 | BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1); |
| 8281 | BdrvBlockStatusCache *old_bsc; |
Emanuele Giuseppe Esposito | 967d790 | 2022-03-03 10:15:58 -0500 | [diff] [blame] | 8282 | IO_CODE(); |
Hanna Reitz | 0bc329f | 2021-08-12 10:41:44 +0200 | [diff] [blame] | 8283 | |
| 8284 | *new_bsc = (BdrvBlockStatusCache) { |
| 8285 | .valid = true, |
| 8286 | .data_start = offset, |
| 8287 | .data_end = offset + bytes, |
| 8288 | }; |
| 8289 | |
| 8290 | QEMU_LOCK_GUARD(&bs->bsc_modify_lock); |
| 8291 | |
| 8292 | old_bsc = qatomic_rcu_read(&bs->block_status_cache); |
| 8293 | qatomic_rcu_set(&bs->block_status_cache, new_bsc); |
| 8294 | if (old_bsc) { |
| 8295 | g_free_rcu(old_bsc, rcu); |
| 8296 | } |
| 8297 | } |