xref: /openbmc/qemu/tests/qemu-iotests/211 (revision 7d814059)
17c477526SPhilippe Mathieu-Daudé#!/usr/bin/env python3
2b7de0777SKevin Wolf#
3b7de0777SKevin Wolf# Test VDI and file image creation
4b7de0777SKevin Wolf#
5b7de0777SKevin Wolf# Copyright (C) 2018 Red Hat, Inc.
6b7de0777SKevin Wolf#
7abbab72cSKevin Wolf# Creator/Owner: Kevin Wolf <kwolf@redhat.com>
8abbab72cSKevin Wolf#
9b7de0777SKevin Wolf# This program is free software; you can redistribute it and/or modify
10b7de0777SKevin Wolf# it under the terms of the GNU General Public License as published by
11b7de0777SKevin Wolf# the Free Software Foundation; either version 2 of the License, or
12b7de0777SKevin Wolf# (at your option) any later version.
13b7de0777SKevin Wolf#
14b7de0777SKevin Wolf# This program is distributed in the hope that it will be useful,
15b7de0777SKevin Wolf# but WITHOUT ANY WARRANTY; without even the implied warranty of
16b7de0777SKevin Wolf# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17b7de0777SKevin Wolf# GNU General Public License for more details.
18b7de0777SKevin Wolf#
19b7de0777SKevin Wolf# You should have received a copy of the GNU General Public License
20b7de0777SKevin Wolf# along with this program.  If not, see <http://www.gnu.org/licenses/>.
21b7de0777SKevin Wolf#
22b7de0777SKevin Wolf
23abbab72cSKevin Wolfimport iotests
24abbab72cSKevin Wolffrom iotests import imgfmt
25b7de0777SKevin Wolf
26*7d814059SJohn Snowiotests.script_initialize(
27*7d814059SJohn Snow    supported_fmts=['vdi'],
28*7d814059SJohn Snow    supported_protocols=['file'],
29*7d814059SJohn Snow)
30b7de0777SKevin Wolf
31abbab72cSKevin Wolfdef blockdev_create(vm, options):
327fe6bb7aSKevin Wolf    error = vm.blockdev_create(options)
336a4e88e1SMax Reitz    if error and 'Could not allocate bmap' in error:
346a4e88e1SMax Reitz        iotests.notrun('Insufficient memory')
35b7de0777SKevin Wolf
36abbab72cSKevin Wolfwith iotests.FilePath('t.vdi') as disk_path, \
37abbab72cSKevin Wolf     iotests.VM() as vm:
38b7de0777SKevin Wolf
39abbab72cSKevin Wolf    #
40abbab72cSKevin Wolf    # Successful image creation (defaults)
41abbab72cSKevin Wolf    #
42abbab72cSKevin Wolf    iotests.log("=== Successful image creation (defaults) ===")
43abbab72cSKevin Wolf    iotests.log("")
44b7de0777SKevin Wolf
45abbab72cSKevin Wolf    size = 128 * 1024 * 1024
46b7de0777SKevin Wolf
47abbab72cSKevin Wolf    vm.launch()
48abbab72cSKevin Wolf    blockdev_create(vm, { 'driver': 'file',
49abbab72cSKevin Wolf                          'filename': disk_path,
50abbab72cSKevin Wolf                          'size': 0 })
51b7de0777SKevin Wolf
52abbab72cSKevin Wolf    vm.qmp_log('blockdev-add', driver='file', filename=disk_path,
53250c04f5SMax Reitz               node_name='imgfile', filters=[iotests.filter_qmp_testfiles])
54b7de0777SKevin Wolf
55abbab72cSKevin Wolf    blockdev_create(vm, { 'driver': imgfmt,
56abbab72cSKevin Wolf                          'file': 'imgfile',
57abbab72cSKevin Wolf                          'size': size })
58abbab72cSKevin Wolf    vm.shutdown()
59b7de0777SKevin Wolf
60abbab72cSKevin Wolf    iotests.img_info_log(disk_path)
61abbab72cSKevin Wolf    iotests.log(iotests.qemu_img_pipe('map', '--output=json', disk_path))
62b7de0777SKevin Wolf
63abbab72cSKevin Wolf    #
64abbab72cSKevin Wolf    # Successful image creation (explicit defaults)
65abbab72cSKevin Wolf    #
66abbab72cSKevin Wolf    iotests.log("=== Successful image creation (explicit defaults) ===")
67abbab72cSKevin Wolf    iotests.log("")
68b7de0777SKevin Wolf
69abbab72cSKevin Wolf    size = 64 * 1024 * 1024
70b7de0777SKevin Wolf
71abbab72cSKevin Wolf    vm.launch()
72abbab72cSKevin Wolf    blockdev_create(vm, { 'driver': 'file',
73abbab72cSKevin Wolf                          'filename': disk_path,
74abbab72cSKevin Wolf                          'size': 0 })
75abbab72cSKevin Wolf    blockdev_create(vm, { 'driver': imgfmt,
76abbab72cSKevin Wolf                          'file': {
77abbab72cSKevin Wolf                              'driver': 'file',
78abbab72cSKevin Wolf                              'filename': disk_path,
79b7de0777SKevin Wolf                          },
80abbab72cSKevin Wolf                          'size': size,
81abbab72cSKevin Wolf                          'preallocation': 'off' })
82abbab72cSKevin Wolf    vm.shutdown()
83b7de0777SKevin Wolf
84abbab72cSKevin Wolf    iotests.img_info_log(disk_path)
85abbab72cSKevin Wolf    iotests.log(iotests.qemu_img_pipe('map', '--output=json', disk_path))
86b7de0777SKevin Wolf
87abbab72cSKevin Wolf    #
88abbab72cSKevin Wolf    # Successful image creation (with non-default options)
89abbab72cSKevin Wolf    #
90abbab72cSKevin Wolf    iotests.log("=== Successful image creation (with non-default options) ===")
91abbab72cSKevin Wolf    iotests.log("")
92b7de0777SKevin Wolf
93abbab72cSKevin Wolf    size = 32 * 1024 * 1024
94b7de0777SKevin Wolf
95abbab72cSKevin Wolf    vm.launch()
96abbab72cSKevin Wolf    blockdev_create(vm, { 'driver': 'file',
97abbab72cSKevin Wolf                          'filename': disk_path,
98abbab72cSKevin Wolf                          'size': 0 })
99abbab72cSKevin Wolf    blockdev_create(vm, { 'driver': imgfmt,
100abbab72cSKevin Wolf                          'file': {
101abbab72cSKevin Wolf                              'driver': 'file',
102abbab72cSKevin Wolf                              'filename': disk_path,
103b7de0777SKevin Wolf                          },
104abbab72cSKevin Wolf                          'size': size,
105abbab72cSKevin Wolf                          'preallocation': 'metadata' })
106abbab72cSKevin Wolf    vm.shutdown()
107b7de0777SKevin Wolf
108abbab72cSKevin Wolf    iotests.img_info_log(disk_path)
109abbab72cSKevin Wolf    iotests.log(iotests.qemu_img_pipe('map', '--output=json', disk_path))
110b7de0777SKevin Wolf
111abbab72cSKevin Wolf    #
112abbab72cSKevin Wolf    # Invalid BlockdevRef
113abbab72cSKevin Wolf    #
114abbab72cSKevin Wolf    iotests.log("=== Invalid BlockdevRef ===")
115abbab72cSKevin Wolf    iotests.log("")
116b7de0777SKevin Wolf
117abbab72cSKevin Wolf    vm.launch()
118abbab72cSKevin Wolf    blockdev_create(vm, { 'driver': imgfmt,
119abbab72cSKevin Wolf                          'file': "this doesn't exist",
120abbab72cSKevin Wolf                          'size': size })
121abbab72cSKevin Wolf    vm.shutdown()
122b7de0777SKevin Wolf
123abbab72cSKevin Wolf    #
124abbab72cSKevin Wolf    # Zero size
125abbab72cSKevin Wolf    #
126abbab72cSKevin Wolf    iotests.log("=== Zero size ===")
127abbab72cSKevin Wolf    iotests.log("")
128b7de0777SKevin Wolf
129abbab72cSKevin Wolf    vm.add_blockdev('driver=file,filename=%s,node-name=node0' % (disk_path))
130abbab72cSKevin Wolf    vm.launch()
131abbab72cSKevin Wolf    blockdev_create(vm, { 'driver': imgfmt,
132abbab72cSKevin Wolf                          'file': 'node0',
133abbab72cSKevin Wolf                          'size': 0 })
134abbab72cSKevin Wolf    vm.shutdown()
135b7de0777SKevin Wolf
136abbab72cSKevin Wolf    iotests.img_info_log(disk_path)
137b7de0777SKevin Wolf
138abbab72cSKevin Wolf    #
139abbab72cSKevin Wolf    # Maximum size
140abbab72cSKevin Wolf    #
141abbab72cSKevin Wolf    iotests.log("=== Maximum size ===")
142abbab72cSKevin Wolf    iotests.log("")
143b7de0777SKevin Wolf
144abbab72cSKevin Wolf    vm.launch()
145abbab72cSKevin Wolf    blockdev_create(vm, { 'driver': imgfmt,
146abbab72cSKevin Wolf                          'file': 'node0',
147abbab72cSKevin Wolf                          'size': 562949819203584 })
148abbab72cSKevin Wolf    vm.shutdown()
149b7de0777SKevin Wolf
150abbab72cSKevin Wolf    iotests.img_info_log(disk_path)
151b7de0777SKevin Wolf
152abbab72cSKevin Wolf    #
153abbab72cSKevin Wolf    # Invalid sizes
154abbab72cSKevin Wolf    #
155b7de0777SKevin Wolf
156b7de0777SKevin Wolf    # TODO Negative image sizes aren't handled correctly, but this is a problem
157abbab72cSKevin Wolf    # with QAPI's implementation of the 'size' type and affects other commands
158abbab72cSKevin Wolf    # as well. Once this is fixed, we may want to add a test case here.
159b7de0777SKevin Wolf
160b7de0777SKevin Wolf    # 1. 2^64 - 512
161b7de0777SKevin Wolf    # 2. 2^63 = 8 EB (qemu-img enforces image sizes less than this)
162b7de0777SKevin Wolf    # 3. 0x1fffff8000001 (one byte more than maximum image size for VDI)
163b7de0777SKevin Wolf
164abbab72cSKevin Wolf    iotests.log("=== Invalid sizes ===")
165abbab72cSKevin Wolf    iotests.log("")
166b7de0777SKevin Wolf
167abbab72cSKevin Wolf    vm.launch()
168abbab72cSKevin Wolf    for size in [ 18446744073709551104, 9223372036854775808, 562949819203585 ]:
169abbab72cSKevin Wolf        blockdev_create(vm, { 'driver': imgfmt,
170abbab72cSKevin Wolf                              'file': 'node0',
171abbab72cSKevin Wolf                              'size': size })
172abbab72cSKevin Wolf    vm.shutdown()
173