Merge remote-tracking branch 'remotes/nvme/tags/nvme-fixes-20210407-pull-request...
[qemu/ar7.git] / tests / qemu-iotests / 216
blobc02f8d2880f6152942e8e08af95226f3ad625885
1 #!/usr/bin/env python3
2 # group: rw quick
4 # Copy-on-read tests using a COR filter node
6 # Copyright (C) 2018 Red Hat, Inc.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 # Creator/Owner: Max Reitz <mreitz@redhat.com>
23 import iotests
24 from iotests import log, qemu_img, qemu_io_silent
26 # Need backing file support
27 iotests.script_initialize(supported_fmts=['qcow2', 'qcow', 'qed', 'vmdk'],
28                           supported_platforms=['linux'])
30 log('')
31 log('=== Copy-on-read across nodes ===')
32 log('')
34 # The old copy-on-read mechanism without a filter node cannot request
35 # WRITE_UNCHANGED permissions for its child.  Therefore it just tries
36 # to sneak its write by the usual permission system and holds its
37 # fingers crossed.  However, that sneaking does not work so well when
38 # there is a filter node in the way: That will receive the write
39 # request and re-issue a new one to its child, which this time is a
40 # proper write request that will make the permission system cough --
41 # unless there is someone at the top (like a guest device) that has
42 # requested write permissions.
44 # A COR filter node, however, can request the proper permissions for
45 # its child and therefore is not hit by this issue.
47 with iotests.FilePath('base.img') as base_img_path, \
48      iotests.FilePath('top.img') as top_img_path, \
49      iotests.VM() as vm:
51     log('--- Setting up images ---')
52     log('')
54     assert qemu_img('create', '-f', iotests.imgfmt, base_img_path, '64M') == 0
55     assert qemu_io_silent(base_img_path, '-c', 'write -P 1 0M 1M') == 0
56     assert qemu_img('create', '-f', iotests.imgfmt, '-b', base_img_path,
57                     '-F', iotests.imgfmt, top_img_path) == 0
58     assert qemu_io_silent(top_img_path,  '-c', 'write -P 2 1M 1M') == 0
60     log('Done')
62     log('')
63     log('--- Doing COR ---')
64     log('')
66     # Compare with e.g. the following:
67     #   vm.add_drive_raw('if=none,node-name=node0,copy-on-read=on,driver=raw,' \
68     #                    'file.driver=%s,file.file.filename=%s' %
69     #                       (iotests.imgfmt, top_img_path))
70     # (Remove the blockdev-add instead.)
71     # ((Not tested here because it hits an assertion in the permission
72     #   system.))
74     vm.launch()
76     log(vm.qmp('blockdev-add',
77                     node_name='node0',
78                     driver='copy-on-read',
79                     file={
80                         'driver': 'raw',
81                         'file': {
82                             'driver': 'copy-on-read',
83                             'file': {
84                                 'driver': 'raw',
85                                 'file': {
86                                     'driver': iotests.imgfmt,
87                                     'file': {
88                                         'driver': 'file',
89                                         'filename': top_img_path
90                                     },
91                                     'backing': {
92                                         'driver': iotests.imgfmt,
93                                         'file': {
94                                             'driver': 'file',
95                                             'filename': base_img_path
96                                         }
97                                     }
98                                 }
99                             }
100                         }
101                     }))
103     # Trigger COR
104     log(vm.qmp('human-monitor-command',
105                command_line='qemu-io node0 "read 0 64M"'))
107     vm.shutdown()
109     log('')
110     log('--- Checking COR result ---')
111     log('')
113     assert qemu_io_silent(base_img_path, '-c', 'discard 0 64M') == 0
114     assert qemu_io_silent(top_img_path,  '-c', 'read -P 1 0M 1M') == 0
115     assert qemu_io_silent(top_img_path,  '-c', 'read -P 2 1M 1M') == 0
117     log('Done')