Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Block node graph modifications tests |
| 3 | * |
Vladimir Sementsov-Ogievskiy | d71cc67 | 2021-04-28 18:17:29 +0300 | [diff] [blame] | 4 | * Copyright (c) 2019-2021 Virtuozzo International GmbH. All rights reserved. |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | */ |
| 20 | |
| 21 | #include "qemu/osdep.h" |
| 22 | #include "qapi/error.h" |
Markus Armbruster | db72581 | 2019-08-12 07:23:50 +0200 | [diff] [blame] | 23 | #include "qemu/main-loop.h" |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 24 | #include "block/block_int.h" |
| 25 | #include "sysemu/block-backend.h" |
| 26 | |
| 27 | static BlockDriver bdrv_pass_through = { |
| 28 | .format_name = "pass-through", |
Vladimir Sementsov-Ogievskiy | 1921b4f | 2022-07-26 23:11:25 +0300 | [diff] [blame] | 29 | .is_filter = true, |
| 30 | .filtered_child_is_backing = true, |
Max Reitz | 69dca43 | 2020-05-13 13:05:39 +0200 | [diff] [blame] | 31 | .bdrv_child_perm = bdrv_default_perms, |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | static void no_perm_default_perms(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | bf8e925 | 2020-05-13 13:05:16 +0200 | [diff] [blame] | 35 | BdrvChildRole role, |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 36 | BlockReopenQueue *reopen_queue, |
| 37 | uint64_t perm, uint64_t shared, |
| 38 | uint64_t *nperm, uint64_t *nshared) |
| 39 | { |
| 40 | *nperm = 0; |
| 41 | *nshared = BLK_PERM_ALL; |
| 42 | } |
| 43 | |
| 44 | static BlockDriver bdrv_no_perm = { |
| 45 | .format_name = "no-perm", |
Vladimir Sementsov-Ogievskiy | 25f78d9 | 2021-06-10 15:05:34 +0300 | [diff] [blame] | 46 | .supports_backing = true, |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 47 | .bdrv_child_perm = no_perm_default_perms, |
| 48 | }; |
| 49 | |
Vladimir Sementsov-Ogievskiy | d71cc67 | 2021-04-28 18:17:29 +0300 | [diff] [blame] | 50 | static void exclusive_write_perms(BlockDriverState *bs, BdrvChild *c, |
| 51 | BdrvChildRole role, |
| 52 | BlockReopenQueue *reopen_queue, |
| 53 | uint64_t perm, uint64_t shared, |
| 54 | uint64_t *nperm, uint64_t *nshared) |
| 55 | { |
| 56 | *nperm = BLK_PERM_WRITE; |
| 57 | *nshared = BLK_PERM_ALL & ~BLK_PERM_WRITE; |
| 58 | } |
| 59 | |
| 60 | static BlockDriver bdrv_exclusive_writer = { |
| 61 | .format_name = "exclusive-writer", |
Vladimir Sementsov-Ogievskiy | 1921b4f | 2022-07-26 23:11:25 +0300 | [diff] [blame] | 62 | .is_filter = true, |
| 63 | .filtered_child_is_backing = true, |
Vladimir Sementsov-Ogievskiy | d71cc67 | 2021-04-28 18:17:29 +0300 | [diff] [blame] | 64 | .bdrv_child_perm = exclusive_write_perms, |
| 65 | }; |
| 66 | |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 67 | static BlockDriverState *no_perm_node(const char *name) |
| 68 | { |
| 69 | return bdrv_new_open_driver(&bdrv_no_perm, name, BDRV_O_RDWR, &error_abort); |
| 70 | } |
| 71 | |
| 72 | static BlockDriverState *pass_through_node(const char *name) |
| 73 | { |
| 74 | return bdrv_new_open_driver(&bdrv_pass_through, name, |
| 75 | BDRV_O_RDWR, &error_abort); |
| 76 | } |
| 77 | |
Vladimir Sementsov-Ogievskiy | d71cc67 | 2021-04-28 18:17:29 +0300 | [diff] [blame] | 78 | static BlockDriverState *exclusive_writer_node(const char *name) |
| 79 | { |
| 80 | return bdrv_new_open_driver(&bdrv_exclusive_writer, name, |
| 81 | BDRV_O_RDWR, &error_abort); |
| 82 | } |
| 83 | |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 84 | /* |
| 85 | * test_update_perm_tree |
| 86 | * |
| 87 | * When checking node for a possibility to update permissions, it's subtree |
| 88 | * should be correctly checked too. New permissions for each node should be |
| 89 | * calculated and checked in context of permissions of other nodes. If we |
| 90 | * check new permissions of the node only in context of old permissions of |
| 91 | * its neighbors, we can finish up with wrong permission graph. |
| 92 | * |
| 93 | * This test firstly create the following graph: |
| 94 | * +--------+ |
| 95 | * | root | |
| 96 | * +--------+ |
| 97 | * | |
| 98 | * | perm: write, read |
| 99 | * | shared: except write |
| 100 | * v |
| 101 | * +-------------------+ +----------------+ |
| 102 | * | passtrough filter |---------->| null-co node | |
| 103 | * +-------------------+ +----------------+ |
| 104 | * |
| 105 | * |
| 106 | * and then, tries to append filter under node. Expected behavior: fail. |
| 107 | * Otherwise we'll get the following picture, with two BdrvChild'ren, having |
| 108 | * write permission to one node, without actually sharing it. |
| 109 | * |
| 110 | * +--------+ |
| 111 | * | root | |
| 112 | * +--------+ |
| 113 | * | |
| 114 | * | perm: write, read |
| 115 | * | shared: except write |
| 116 | * v |
| 117 | * +-------------------+ |
| 118 | * | passtrough filter | |
| 119 | * +-------------------+ |
| 120 | * | | |
| 121 | * perm: write, read | | perm: write, read |
| 122 | * shared: except write | | shared: except write |
| 123 | * v v |
| 124 | * +----------------+ |
| 125 | * | null co node | |
| 126 | * +----------------+ |
| 127 | */ |
| 128 | static void test_update_perm_tree(void) |
| 129 | { |
Vladimir Sementsov-Ogievskiy | 934aee1 | 2021-02-02 15:49:44 +0300 | [diff] [blame] | 130 | int ret; |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 131 | |
Kevin Wolf | d861ab3 | 2019-04-25 14:25:10 +0200 | [diff] [blame] | 132 | BlockBackend *root = blk_new(qemu_get_aio_context(), |
| 133 | BLK_PERM_WRITE | BLK_PERM_CONSISTENT_READ, |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 134 | BLK_PERM_ALL & ~BLK_PERM_WRITE); |
| 135 | BlockDriverState *bs = no_perm_node("node"); |
| 136 | BlockDriverState *filter = pass_through_node("filter"); |
| 137 | |
| 138 | blk_insert_bs(root, bs, &error_abort); |
| 139 | |
Max Reitz | a16be3c | 2020-05-13 13:05:38 +0200 | [diff] [blame] | 140 | bdrv_attach_child(filter, bs, "child", &child_of_bds, |
Vladimir Sementsov-Ogievskiy | 1921b4f | 2022-07-26 23:11:25 +0300 | [diff] [blame] | 141 | BDRV_CHILD_DATA, &error_abort); |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 142 | |
Vladimir Sementsov-Ogievskiy | 934aee1 | 2021-02-02 15:49:44 +0300 | [diff] [blame] | 143 | ret = bdrv_append(filter, bs, NULL); |
| 144 | g_assert_cmpint(ret, <, 0); |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 145 | |
Vladimir Sementsov-Ogievskiy | ae9d441 | 2021-04-28 18:17:32 +0300 | [diff] [blame] | 146 | bdrv_unref(filter); |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 147 | blk_unref(root); |
| 148 | } |
| 149 | |
| 150 | /* |
| 151 | * test_should_update_child |
| 152 | * |
| 153 | * Test that bdrv_replace_node, and concretely should_update_child |
| 154 | * do the right thing, i.e. not creating loops on the graph. |
| 155 | * |
| 156 | * The test does the following: |
| 157 | * 1. initial graph: |
| 158 | * |
| 159 | * +------+ +--------+ |
| 160 | * | root | | filter | |
| 161 | * +------+ +--------+ |
| 162 | * | | |
| 163 | * root| target| |
| 164 | * v v |
| 165 | * +------+ +--------+ |
| 166 | * | node |<---------| target | |
| 167 | * +------+ backing +--------+ |
| 168 | * |
| 169 | * 2. Append @filter above @node. If should_update_child works correctly, |
| 170 | * it understands, that backing child of @target should not be updated, |
| 171 | * as it will create a loop on node graph. Resulting picture should |
| 172 | * be the left one, not the right: |
| 173 | * |
| 174 | * +------+ +------+ |
| 175 | * | root | | root | |
| 176 | * +------+ +------+ |
| 177 | * | | |
| 178 | * root| root| |
| 179 | * v v |
| 180 | * +--------+ target +--------+ target |
| 181 | * | filter |--------------+ | filter |--------------+ |
| 182 | * +--------+ | +--------+ | |
| 183 | * | | | ^ v |
| 184 | * backing| | backing| | +--------+ |
| 185 | * v v | +-----------| target | |
| 186 | * +------+ +--------+ v backing +--------+ |
| 187 | * | node |<---------| target | +------+ |
| 188 | * +------+ backing +--------+ | node | |
| 189 | * +------+ |
| 190 | * |
| 191 | * (good picture) (bad picture) |
| 192 | * |
| 193 | */ |
| 194 | static void test_should_update_child(void) |
| 195 | { |
Kevin Wolf | d861ab3 | 2019-04-25 14:25:10 +0200 | [diff] [blame] | 196 | BlockBackend *root = blk_new(qemu_get_aio_context(), 0, BLK_PERM_ALL); |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 197 | BlockDriverState *bs = no_perm_node("node"); |
| 198 | BlockDriverState *filter = no_perm_node("filter"); |
| 199 | BlockDriverState *target = no_perm_node("target"); |
| 200 | |
| 201 | blk_insert_bs(root, bs, &error_abort); |
| 202 | |
| 203 | bdrv_set_backing_hd(target, bs, &error_abort); |
| 204 | |
| 205 | g_assert(target->backing->bs == bs); |
Max Reitz | a16be3c | 2020-05-13 13:05:38 +0200 | [diff] [blame] | 206 | bdrv_attach_child(filter, target, "target", &child_of_bds, |
| 207 | BDRV_CHILD_DATA, &error_abort); |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 208 | bdrv_append(filter, bs, &error_abort); |
| 209 | g_assert(target->backing->bs == bs); |
| 210 | |
Vladimir Sementsov-Ogievskiy | ae9d441 | 2021-04-28 18:17:32 +0300 | [diff] [blame] | 211 | bdrv_unref(filter); |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 212 | bdrv_unref(bs); |
| 213 | blk_unref(root); |
| 214 | } |
| 215 | |
Vladimir Sementsov-Ogievskiy | d71cc67 | 2021-04-28 18:17:29 +0300 | [diff] [blame] | 216 | /* |
| 217 | * test_parallel_exclusive_write |
| 218 | * |
| 219 | * Check that when we replace node, old permissions of the node being removed |
| 220 | * doesn't break the replacement. |
| 221 | */ |
| 222 | static void test_parallel_exclusive_write(void) |
| 223 | { |
| 224 | BlockDriverState *top = exclusive_writer_node("top"); |
| 225 | BlockDriverState *base = no_perm_node("base"); |
| 226 | BlockDriverState *fl1 = pass_through_node("fl1"); |
| 227 | BlockDriverState *fl2 = pass_through_node("fl2"); |
| 228 | |
| 229 | /* |
| 230 | * bdrv_attach_child() eats child bs reference, so we need two @base |
| 231 | * references for two filters: |
| 232 | */ |
| 233 | bdrv_ref(base); |
| 234 | |
Vladimir Sementsov-Ogievskiy | 1921b4f | 2022-07-26 23:11:25 +0300 | [diff] [blame] | 235 | bdrv_attach_child(top, fl1, "backing", &child_of_bds, |
| 236 | BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY, |
Vladimir Sementsov-Ogievskiy | d71cc67 | 2021-04-28 18:17:29 +0300 | [diff] [blame] | 237 | &error_abort); |
Vladimir Sementsov-Ogievskiy | 1921b4f | 2022-07-26 23:11:25 +0300 | [diff] [blame] | 238 | bdrv_attach_child(fl1, base, "backing", &child_of_bds, |
| 239 | BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY, |
Vladimir Sementsov-Ogievskiy | d71cc67 | 2021-04-28 18:17:29 +0300 | [diff] [blame] | 240 | &error_abort); |
Vladimir Sementsov-Ogievskiy | 1921b4f | 2022-07-26 23:11:25 +0300 | [diff] [blame] | 241 | bdrv_attach_child(fl2, base, "backing", &child_of_bds, |
| 242 | BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY, |
Vladimir Sementsov-Ogievskiy | d71cc67 | 2021-04-28 18:17:29 +0300 | [diff] [blame] | 243 | &error_abort); |
| 244 | |
| 245 | bdrv_replace_node(fl1, fl2, &error_abort); |
| 246 | |
| 247 | bdrv_unref(fl2); |
| 248 | bdrv_unref(top); |
| 249 | } |
| 250 | |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 251 | /* |
| 252 | * write-to-selected node may have several DATA children, one of them may be |
| 253 | * "selected". Exclusive write permission is taken on selected child. |
| 254 | * |
| 255 | * We don't realize write handler itself, as we need only to test how permission |
| 256 | * update works. |
| 257 | */ |
| 258 | typedef struct BDRVWriteToSelectedState { |
| 259 | BdrvChild *selected; |
| 260 | } BDRVWriteToSelectedState; |
| 261 | |
| 262 | static void write_to_selected_perms(BlockDriverState *bs, BdrvChild *c, |
| 263 | BdrvChildRole role, |
| 264 | BlockReopenQueue *reopen_queue, |
| 265 | uint64_t perm, uint64_t shared, |
| 266 | uint64_t *nperm, uint64_t *nshared) |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 267 | { |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 268 | BDRVWriteToSelectedState *s = bs->opaque; |
| 269 | |
| 270 | if (s->selected && c == s->selected) { |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 271 | *nperm = BLK_PERM_WRITE; |
| 272 | *nshared = BLK_PERM_ALL & ~BLK_PERM_WRITE; |
| 273 | } else { |
| 274 | *nperm = 0; |
| 275 | *nshared = BLK_PERM_ALL; |
| 276 | } |
| 277 | } |
| 278 | |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 279 | static BlockDriver bdrv_write_to_selected = { |
| 280 | .format_name = "write-to-selected", |
| 281 | .instance_size = sizeof(BDRVWriteToSelectedState), |
| 282 | .bdrv_child_perm = write_to_selected_perms, |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 283 | }; |
| 284 | |
| 285 | |
| 286 | /* |
| 287 | * The following test shows that topological-sort order is required for |
| 288 | * permission update, simple DFS is not enough. |
| 289 | * |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 290 | * Consider the block driver (write-to-selected) which has two children: one is |
| 291 | * selected so we have exclusive write access to it and for the other one we |
| 292 | * don't need any specific permissions. |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 293 | * |
| 294 | * And, these two children has a common base child, like this: |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 295 | * (additional "top" on top is used in test just because the only public |
| 296 | * function to update permission should get a specific child to update. |
| 297 | * Making bdrv_refresh_perms() public just for this test isn't worth it) |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 298 | * |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 299 | * ┌─────┐ ┌───────────────────┐ ┌─────┐ |
| 300 | * │ fl2 │ ◀── │ write-to-selected │ ◀── │ top │ |
| 301 | * └─────┘ └───────────────────┘ └─────┘ |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 302 | * │ │ |
| 303 | * │ │ w |
| 304 | * │ ▼ |
| 305 | * │ ┌──────┐ |
| 306 | * │ │ fl1 │ |
| 307 | * │ └──────┘ |
| 308 | * │ │ |
| 309 | * │ │ w |
| 310 | * │ ▼ |
| 311 | * │ ┌──────┐ |
| 312 | * └───────▶ │ base │ |
| 313 | * └──────┘ |
| 314 | * |
| 315 | * So, exclusive write is propagated. |
| 316 | * |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 317 | * Assume, we want to select fl2 instead of fl1. |
| 318 | * So, we set some option for write-to-selected driver and do permission update. |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 319 | * |
| 320 | * With simple DFS, if permission update goes first through |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 321 | * write-to-selected -> fl1 -> base branch it will succeed: it firstly drop |
| 322 | * exclusive write permissions and than apply them for another BdrvChildren. |
| 323 | * But if permission update goes first through write-to-selected -> fl2 -> base |
| 324 | * branch it will fail, as when we try to update fl2->base child, old not yet |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 325 | * updated fl1->base child will be in conflict. |
| 326 | * |
| 327 | * With topological-sort order we always update parents before children, so fl1 |
| 328 | * and fl2 are both updated when we update base and there is no conflict. |
| 329 | */ |
| 330 | static void test_parallel_perm_update(void) |
| 331 | { |
| 332 | BlockDriverState *top = no_perm_node("top"); |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 333 | BlockDriverState *ws = |
| 334 | bdrv_new_open_driver(&bdrv_write_to_selected, "ws", BDRV_O_RDWR, |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 335 | &error_abort); |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 336 | BDRVWriteToSelectedState *s = ws->opaque; |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 337 | BlockDriverState *base = no_perm_node("base"); |
| 338 | BlockDriverState *fl1 = pass_through_node("fl1"); |
| 339 | BlockDriverState *fl2 = pass_through_node("fl2"); |
| 340 | BdrvChild *c_fl1, *c_fl2; |
| 341 | |
| 342 | /* |
| 343 | * bdrv_attach_child() eats child bs reference, so we need two @base |
| 344 | * references for two filters: |
| 345 | */ |
| 346 | bdrv_ref(base); |
| 347 | |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 348 | bdrv_attach_child(top, ws, "file", &child_of_bds, BDRV_CHILD_DATA, |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 349 | &error_abort); |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 350 | c_fl1 = bdrv_attach_child(ws, fl1, "first", &child_of_bds, |
| 351 | BDRV_CHILD_DATA, &error_abort); |
| 352 | c_fl2 = bdrv_attach_child(ws, fl2, "second", &child_of_bds, |
| 353 | BDRV_CHILD_DATA, &error_abort); |
Vladimir Sementsov-Ogievskiy | 1921b4f | 2022-07-26 23:11:25 +0300 | [diff] [blame] | 354 | bdrv_attach_child(fl1, base, "backing", &child_of_bds, |
| 355 | BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY, |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 356 | &error_abort); |
Vladimir Sementsov-Ogievskiy | 1921b4f | 2022-07-26 23:11:25 +0300 | [diff] [blame] | 357 | bdrv_attach_child(fl2, base, "backing", &child_of_bds, |
| 358 | BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY, |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 359 | &error_abort); |
| 360 | |
| 361 | /* Select fl1 as first child to be active */ |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 362 | s->selected = c_fl1; |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 363 | bdrv_child_refresh_perms(top, top->children.lh_first, &error_abort); |
| 364 | |
| 365 | assert(c_fl1->perm & BLK_PERM_WRITE); |
| 366 | assert(!(c_fl2->perm & BLK_PERM_WRITE)); |
| 367 | |
| 368 | /* Now, try to switch active child and update permissions */ |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 369 | s->selected = c_fl2; |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 370 | bdrv_child_refresh_perms(top, top->children.lh_first, &error_abort); |
| 371 | |
| 372 | assert(c_fl2->perm & BLK_PERM_WRITE); |
| 373 | assert(!(c_fl1->perm & BLK_PERM_WRITE)); |
| 374 | |
| 375 | /* Switch once more, to not care about real child order in the list */ |
Vladimir Sementsov-Ogievskiy | 1dcea71 | 2022-07-26 23:11:23 +0300 | [diff] [blame] | 376 | s->selected = c_fl1; |
Vladimir Sementsov-Ogievskiy | e6af4f0 | 2021-04-28 18:17:30 +0300 | [diff] [blame] | 377 | bdrv_child_refresh_perms(top, top->children.lh_first, &error_abort); |
| 378 | |
| 379 | assert(c_fl1->perm & BLK_PERM_WRITE); |
| 380 | assert(!(c_fl2->perm & BLK_PERM_WRITE)); |
| 381 | |
| 382 | bdrv_unref(top); |
| 383 | } |
| 384 | |
Vladimir Sementsov-Ogievskiy | 397f7cc | 2021-04-28 18:17:31 +0300 | [diff] [blame] | 385 | /* |
| 386 | * It's possible that filter required permissions allows to insert it to backing |
| 387 | * chain, like: |
| 388 | * |
| 389 | * 1. [top] -> [filter] -> [base] |
| 390 | * |
| 391 | * but doesn't allow to add it as a branch: |
| 392 | * |
| 393 | * 2. [filter] --\ |
| 394 | * v |
| 395 | * [top] -> [base] |
| 396 | * |
| 397 | * So, inserting such filter should do all graph modifications and only then |
| 398 | * update permissions. If we try to go through intermediate state [2] and update |
| 399 | * permissions on it we'll fail. |
| 400 | * |
| 401 | * Let's check that bdrv_append() can append such a filter. |
| 402 | */ |
| 403 | static void test_append_greedy_filter(void) |
| 404 | { |
| 405 | BlockDriverState *top = exclusive_writer_node("top"); |
| 406 | BlockDriverState *base = no_perm_node("base"); |
| 407 | BlockDriverState *fl = exclusive_writer_node("fl1"); |
| 408 | |
Vladimir Sementsov-Ogievskiy | 1921b4f | 2022-07-26 23:11:25 +0300 | [diff] [blame] | 409 | bdrv_attach_child(top, base, "backing", &child_of_bds, |
| 410 | BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY, |
Vladimir Sementsov-Ogievskiy | 397f7cc | 2021-04-28 18:17:31 +0300 | [diff] [blame] | 411 | &error_abort); |
| 412 | |
| 413 | bdrv_append(fl, base, &error_abort); |
Vladimir Sementsov-Ogievskiy | ae9d441 | 2021-04-28 18:17:32 +0300 | [diff] [blame] | 414 | bdrv_unref(fl); |
Vladimir Sementsov-Ogievskiy | 397f7cc | 2021-04-28 18:17:31 +0300 | [diff] [blame] | 415 | bdrv_unref(top); |
| 416 | } |
| 417 | |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 418 | int main(int argc, char *argv[]) |
| 419 | { |
| 420 | bdrv_init(); |
| 421 | qemu_init_main_loop(&error_abort); |
| 422 | |
| 423 | g_test_init(&argc, &argv, NULL); |
| 424 | |
| 425 | g_test_add_func("/bdrv-graph-mod/update-perm-tree", test_update_perm_tree); |
| 426 | g_test_add_func("/bdrv-graph-mod/should-update-child", |
| 427 | test_should_update_child); |
Vladimir Sementsov-Ogievskiy | bd57f8f | 2021-04-28 18:17:41 +0300 | [diff] [blame] | 428 | g_test_add_func("/bdrv-graph-mod/parallel-perm-update", |
| 429 | test_parallel_perm_update); |
Vladimir Sementsov-Ogievskiy | 3bb0e29 | 2021-04-28 18:17:45 +0300 | [diff] [blame] | 430 | g_test_add_func("/bdrv-graph-mod/parallel-exclusive-write", |
| 431 | test_parallel_exclusive_write); |
Vladimir Sementsov-Ogievskiy | 2272edc | 2021-04-28 18:17:49 +0300 | [diff] [blame] | 432 | g_test_add_func("/bdrv-graph-mod/append-greedy-filter", |
| 433 | test_append_greedy_filter); |
Vladimir Sementsov-Ogievskiy | d71cc67 | 2021-04-28 18:17:29 +0300 | [diff] [blame] | 434 | |
Vladimir Sementsov-Ogievskiy | 2dbfadf | 2019-02-23 22:20:41 +0300 | [diff] [blame] | 435 | return g_test_run(); |
| 436 | } |