3 # Test qcow2 and file image creation
5 # Copyright (C) 2018 Red Hat, Inc.
7 # Creator/Owner: Kevin Wolf <kwolf@redhat.com>
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
24 from iotests import imgfmt
26 iotests.script_initialize(supported_fmts=['qcow2'])
27 iotests.verify_working_luks()
29 with iotests.FilePath('t.qcow2') as disk_path, \
30 iotests.FilePath('t.qcow2.base') as backing_path, \
33 vm.add_object('secret,id=keysec0,data=foo')
36 # Successful image creation (defaults)
38 iotests.log("=== Successful image creation (defaults) ===")
41 size = 128 * 1024 * 1024
44 vm.blockdev_create({ 'driver': 'file',
45 'filename': disk_path,
48 vm.qmp_log('blockdev-add',
49 filters=[iotests.filter_qmp_testfiles],
50 driver='file', filename=disk_path,
53 vm.blockdev_create({ 'driver': imgfmt,
58 iotests.img_info_log(disk_path)
61 # Successful image creation (inline blockdev-add, explicit defaults)
63 iotests.log("=== Successful image creation (inline blockdev-add, explicit defaults) ===")
66 # Choose a different size to show that we got a new image
67 size = 64 * 1024 * 1024
70 vm.blockdev_create({ 'driver': 'file',
71 'filename': disk_path,
73 'preallocation': 'off',
76 vm.blockdev_create({ 'driver': imgfmt,
79 'filename': disk_path,
83 'cluster-size': 65536,
84 'preallocation': 'off',
85 'lazy-refcounts': False,
86 'refcount-bits': 16 })
89 iotests.img_info_log(disk_path)
92 # Successful image creation (v3 non-default options)
94 iotests.log("=== Successful image creation (v3 non-default options) ===")
97 # Choose a different size to show that we got a new image
98 size = 32 * 1024 * 1024
101 vm.blockdev_create({ 'driver': 'file',
102 'filename': disk_path,
104 'preallocation': 'falloc',
107 vm.blockdev_create({ 'driver': imgfmt,
110 'filename': disk_path,
114 'cluster-size': 2097152,
115 'preallocation': 'metadata',
116 'lazy-refcounts': True,
117 'refcount-bits': 1 })
120 iotests.img_info_log(disk_path)
123 # Successful image creation (v2 non-default options)
125 iotests.log("=== Successful image creation (v2 non-default options) ===")
129 vm.blockdev_create({ 'driver': 'file',
130 'filename': disk_path,
133 vm.blockdev_create({ 'driver': imgfmt,
136 'filename': disk_path,
139 'backing-file': backing_path,
140 'backing-fmt': 'qcow2',
142 'cluster-size': 512 })
145 iotests.img_info_log(disk_path)
148 # Successful image creation (encrypted)
150 iotests.log("=== Successful image creation (encrypted) ===")
154 vm.blockdev_create({ 'driver': imgfmt,
157 'filename': disk_path,
162 'key-secret': 'keysec0',
163 'cipher-alg': 'twofish-128',
164 'cipher-mode': 'ctr',
165 'ivgen-alg': 'plain64',
166 'ivgen-hash-alg': 'md5',
172 iotests.img_info_log(disk_path)
175 # Invalid BlockdevRef
177 iotests.log("=== Invalid BlockdevRef ===")
181 vm.blockdev_create({ 'driver': imgfmt,
182 'file': "this doesn't exist",
189 iotests.log("=== Invalid sizes ===")
191 # TODO Negative image sizes aren't handled correctly, but this is a problem
192 # with QAPI's implementation of the 'size' type and affects other commands
193 # as well. Once this is fixed, we may want to add a test case here.
195 # 1. Misaligned image size
197 # 3. 2^63 = 8 EB (qemu-img enforces image sizes less than this)
198 # 4. 2^63 - 512 (generally valid, but qcow2 can't handle images this size)
200 vm.add_blockdev('driver=file,filename=%s,node-name=node0' % (disk_path))
203 for size in [ 1234, 18446744073709551104, 9223372036854775808,
204 9223372036854775296 ]:
205 vm.blockdev_create({ 'driver': imgfmt,
213 iotests.log("=== Invalid version ===")
216 vm.blockdev_create({ 'driver': imgfmt,
220 vm.blockdev_create({ 'driver': imgfmt,
224 'lazy-refcounts': True })
225 vm.blockdev_create({ 'driver': imgfmt,
229 'refcount-bits': 8 })
233 # Invalid backing file options
235 iotests.log("=== Invalid backing file options ===")
238 vm.blockdev_create({ 'driver': imgfmt,
241 'backing-file': '/dev/null',
242 'preallocation': 'full' })
243 vm.blockdev_create({ 'driver': imgfmt,
246 'backing-fmt': imgfmt })
250 # Invalid cluster size
252 iotests.log("=== Invalid cluster size ===")
255 for csize in [ 1234, 128, 4194304, 0 ]:
256 vm.blockdev_create({ 'driver': imgfmt,
259 'cluster-size': csize })
260 vm.blockdev_create({ 'driver': imgfmt,
262 'size': 281474976710656,
263 'cluster-size': 512 })
267 # Invalid refcount width
269 iotests.log("=== Invalid refcount width ===")
272 for refcount_bits in [ 128, 0, 7 ]:
273 vm.blockdev_create({ 'driver': imgfmt,
276 'refcount-bits': refcount_bits })