tests/test-qmp-cmds: Factor out qmp_dispatch() test helpers
[qemu/ar7.git] / tests / qemu-iotests / 283
blob55b7cff953e72790e5061793b41781d4363b7955
1 #!/usr/bin/env python3
3 # Test for backup-top filter permission activation failure
5 # Copyright (c) 2019 Virtuozzo International GmbH.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 import iotests
23 # The test is unrelated to formats, restrict it to qcow2 to avoid extra runs
24 iotests.verify_image_format(supported_fmts=['qcow2'])
26 size = 1024 * 1024
28 """ Test description
30 When performing a backup, all writes on the source subtree must go through the
31 backup-top filter so it can copy all data to the target before it is changed.
32 backup-top filter is appended above source node, to achieve this thing, so all
33 parents of source node are handled. A configuration with side parents of source
34 sub-tree with write permission is unsupported (we'd have append several
35 backup-top filter like nodes to handle such parents). The test create an
36 example of such configuration and checks that a backup is then not allowed
37 (blockdev-backup command should fail).
39 The configuration:
41     ┌────────┐  target  ┌─────────────┐
42     │ target │ ◀─────── │ backup_top  │
43     └────────┘          └─────────────┘
44                             │
45                             │ backing
46                             ▼
47                         ┌─────────────┐
48                         │   source    │
49                         └─────────────┘
50                             │
51                             │ file
52                             ▼
53                         ┌─────────────┐  write perm   ┌───────┐
54                         │    base     │ ◀──────────── │ other │
55                         └─────────────┘               └───────┘
57 On activation (see .active field of backup-top state in block/backup-top.c),
58 backup-top is going to unshare write permission on its source child. Write
59 unsharing will be propagated to the "source->base" link and will conflict with
60 other node write permission. So permission update will fail and backup job will
61 not be started.
63 Note, that the only thing which prevents backup of running on such
64 configuration is default permission propagation scheme. It may be altered by
65 different block drivers, so backup will run in invalid configuration. But
66 something is better than nothing. Also, before the previous commit (commit
67 preceding this test creation), starting backup on such configuration led to
68 crash, so current "something" is a lot better, and this test actual goal is
69 to check that crash is fixed :)
70 """
72 vm = iotests.VM()
73 vm.launch()
75 vm.qmp_log('blockdev-add', **{'node-name': 'target', 'driver': 'null-co'})
77 vm.qmp_log('blockdev-add', **{
78     'node-name': 'source',
79     'driver': 'blkdebug',
80     'image': {'node-name': 'base', 'driver': 'null-co', 'size': size}
83 vm.qmp_log('blockdev-add', **{
84     'node-name': 'other',
85     'driver': 'blkdebug',
86     'image': 'base',
87     'take-child-perms': ['write']
90 vm.qmp_log('blockdev-backup', sync='full', device='source', target='target')
92 vm.shutdown()