]> git.ipfire.org Git - thirdparty/qemu.git/blame - docs/about/deprecated.rst
tests/plugins/syscalls: adhere to new arg-passing scheme
[thirdparty/qemu.git] / docs / about / deprecated.rst
CommitLineData
41fba161
PM
1Deprecated features
2===================
3
4In general features are intended to be supported indefinitely once
5introduced into QEMU. In the event that a feature needs to be removed,
ef1f5b0a
SH
6it will be listed in this section. The feature will remain functional for the
7release in which it was deprecated and one further release. After these two
8releases, the feature is liable to be removed. Deprecated features may also
9generate warnings on the console when QEMU starts up, or if activated via a
10monitor command, however, this is not a mandatory requirement.
41fba161
PM
11
12Prior to the 2.10.0 release there was no official policy on how
13long features would be deprecated prior to their removal, nor
14any documented list of which features were deprecated. Thus
15any features deprecated prior to 2.10.0 will be treated as if
16they were first deprecated in the 2.10.0 release.
17
18What follows is a list of all features currently marked as
19deprecated.
20
21System emulator command line arguments
22--------------------------------------
23
41fba161
PM
24``QEMU_AUDIO_`` environment variables and ``-audio-help`` (since 4.0)
25'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
26
27The ``-audiodev`` argument is now the preferred way to specify audio
28backend settings instead of environment variables. To ease migration to
29the new format, the ``-audiodev-help`` option can be used to convert
30the current values of the environment variables to ``-audiodev`` options.
31
32Creating sound card devices and vnc without ``audiodev=`` property (since 4.2)
33''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
34
35When not using the deprecated legacy audio config, each sound card
36should specify an ``audiodev=`` property. Additionally, when using
76ca4b58 37vnc, you should specify an ``audiodev=`` property if you plan to
41fba161
PM
38transmit audio through the VNC protocol.
39
825ff029
GH
40Creating sound card devices using ``-soundhw`` (since 5.1)
41''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
42
43Sound card devices should be created using ``-device`` instead. The
44names are the same for most devices. The exceptions are ``hda`` which
45needs two devices (``-device intel-hda -device hda-duplex``) and
46``pcspk`` which can be activated using ``-machine
47pcspk-audiodev=<name>``.
48
59652436
KW
49``-chardev`` backend aliases ``tty`` and ``parport`` (since 6.0)
50''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
51
52``tty`` and ``parport`` are aliases that will be removed. Instead, the
53actual backend names ``serial`` and ``parallel`` should be used.
54
ccd3b3b8
PB
55Short-form boolean options (since 6.0)
56''''''''''''''''''''''''''''''''''''''
57
58Boolean options such as ``share=on``/``share=off`` could be written
59in short form as ``share`` and ``noshare``. This is now deprecated
60and will cause a warning.
a1b40bda 61
fe636424
PB
62``delay`` option for socket character devices (since 6.0)
63'''''''''''''''''''''''''''''''''''''''''''''''''''''''''
64
65The replacement for the ``nodelay`` short-form boolean option is ``nodelay=on``
66rather than ``delay=off``.
67
16631029
DB
68``--enable-fips`` (since 6.0)
69'''''''''''''''''''''''''''''
70
71This option restricts usage of certain cryptographic algorithms when
72the host is operating in FIPS mode.
73
74If FIPS compliance is required, QEMU should be built with the ``libgcrypt``
75library enabled as a cryptography provider.
76
77Neither the ``nettle`` library, or the built-in cryptography provider are
78supported on FIPS enabled hosts.
79
b979c931
PB
80``-writeconfig`` (since 6.0)
81'''''''''''''''''''''''''''''
82
83The ``-writeconfig`` option is not able to serialize the entire contents
84of the QEMU command line. It is thus considered a failed experiment
85and deprecated, with no current replacement.
86
2c933ac6
PB
87Userspace local APIC with KVM (x86, since 6.0)
88''''''''''''''''''''''''''''''''''''''''''''''
89
90Using ``-M kernel-irqchip=off`` with x86 machine types that include a local
91APIC is deprecated. The ``split`` setting is supported, as is using
92``-M kernel-irqchip=off`` with the ISA PC machine type.
93
f174cd33
EB
94hexadecimal sizes with scaling multipliers (since 6.0)
95''''''''''''''''''''''''''''''''''''''''''''''''''''''
96
97Input parameters that take a size value should only use a size suffix
98(such as 'k' or 'M') when the base is written in decimal, and not when
99the value is hexadecimal. That is, '0x20M' is deprecated, and should
100be written either as '32M' or as '0x2000000'.
101
c47c0bcb
DB
102``-spice password=string`` (since 6.0)
103''''''''''''''''''''''''''''''''''''''
104
105This option is insecure because the SPICE password remains visible in
106the process listing. This is replaced by the new ``password-secret``
107option which lets the password be securely provided on the command
108line using a ``secret`` object instance.
109
e2cc363b
YW
110``opened`` property of ``rng-*`` objects (since 6.0)
111''''''''''''''''''''''''''''''''''''''''''''''''''''
6815bc1d
KW
112
113The only effect of specifying ``opened=on`` in the command line or QMP
114``object-add`` is that the device is opened immediately, possibly before all
115other options have been processed. This will either have no effect (if
116``opened`` was the last option) or cause errors. The property is therefore
117useless and should not be specified.
118
e2cc363b
YW
119``loaded`` property of ``secret`` and ``secret_keyring`` objects (since 6.0)
120''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
39c4c27d
KW
121
122The only effect of specifying ``loaded=on`` in the command line or QMP
123``object-add`` is that the secret is loaded immediately, possibly before all
124other options have been processed. This will either have no effect (if
125``loaded`` was the last option) or cause options to be effectively ignored as
126if they were not given. The property is therefore useless and should not be
127specified.
128
bb20b86d
TH
129``-display sdl,window_close=...`` (since 6.1)
130'''''''''''''''''''''''''''''''''''''''''''''
131
132Use ``-display sdl,window-close=...`` instead (i.e. with a minus instead of
133an underscore between "window" and "close").
134
b6ddc6a2
TH
135``-no-quit`` (since 6.1)
136''''''''''''''''''''''''
137
138The ``-no-quit`` is a synonym for ``-display ...,window-close=off`` which
139should be used instead.
140
39c4c27d 141
41fba161
PM
142QEMU Machine Protocol (QMP) commands
143------------------------------------
144
e2cc363b
YW
145``blockdev-open-tray``, ``blockdev-close-tray`` argument ``device`` (since 2.8)
146'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
73756ae3
MA
147
148Use argument ``id`` instead.
149
e2cc363b
YW
150``eject`` argument ``device`` (since 2.8)
151'''''''''''''''''''''''''''''''''''''''''
73756ae3
MA
152
153Use argument ``id`` instead.
154
e2cc363b
YW
155``blockdev-change-medium`` argument ``device`` (since 2.8)
156''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
73756ae3
MA
157
158Use argument ``id`` instead.
159
e2cc363b
YW
160``block_set_io_throttle`` argument ``device`` (since 2.8)
161'''''''''''''''''''''''''''''''''''''''''''''''''''''''''
73756ae3
MA
162
163Use argument ``id`` instead.
164
e2cc363b
YW
165``blockdev-add`` empty string argument ``backing`` (since 2.10)
166'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
73756ae3
MA
167
168Use argument value ``null`` instead.
169
e2cc363b
YW
170``block-commit`` arguments ``base`` and ``top`` (since 3.1)
171'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
73756ae3
MA
172
173Use arguments ``base-node`` and ``top-node`` instead.
174
443127e8
KW
175``nbd-server-add`` and ``nbd-server-remove`` (since 5.2)
176''''''''''''''''''''''''''''''''''''''''''''''''''''''''
177
178Use the more generic commands ``block-export-add`` and ``block-export-del``
cbad81ce
EB
179instead. As part of this deprecation, where ``nbd-server-add`` used a
180single ``bitmap``, the new ``block-export-add`` uses a list of ``bitmaps``.
443127e8 181
f071dc1f
JY
182System accelerators
183-------------------
184
185MIPS ``Trap-and-Emul`` KVM support (since 6.0)
186''''''''''''''''''''''''''''''''''''''''''''''
187
188The MIPS ``Trap-and-Emul`` KVM host and guest support has been removed
189from Linux upstream kernel, declare it deprecated.
190
41fba161
PM
191System emulator CPUS
192--------------------
193
e2cc363b
YW
194``Icelake-Client`` CPU Model (since 5.2)
195''''''''''''''''''''''''''''''''''''''''
3e6a015c
RH
196
197``Icelake-Client`` CPU Models are deprecated. Use ``Icelake-Server`` CPU
198Models instead.
199
a60442eb
PMD
200MIPS ``I7200`` CPU Model (since 5.2)
201''''''''''''''''''''''''''''''''''''
202
203The ``I7200`` guest CPU relies on the nanoMIPS ISA, which is deprecated
204(the ISA has never been upstreamed to a compiler toolchain). Therefore
205this CPU is also deprecated.
206
41fba161
PM
207System emulator machines
208------------------------
209
63a9c7e0
CLG
210Aspeed ``swift-bmc`` machine (since 6.1)
211''''''''''''''''''''''''''''''''''''''''
212
213This machine is deprecated because we have enough AST2500 based OpenPOWER
214machines. It can be easily replaced by the ``witherspoon-bmc`` or the
215``romulus-bmc`` machines.
216
cdcf766d
IM
217Backend options
218---------------
219
220Using non-persistent backing file with pmem=on (since 6.1)
221''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
222
223This option is used when ``memory-backend-file`` is consumed by emulated NVDIMM
224device. However enabling ``memory-backend-file.pmem`` option, when backing file
225is (a) not DAX capable or (b) not on a filesystem that support direct mapping
226of persistent memory, is not safe and may lead to data loss or corruption in case
227of host crash.
228Options are:
229
230 - modify VM configuration to set ``pmem=off`` to continue using fake NVDIMM
231 (without persistence guaranties) with backing file on non DAX storage
232 - move backing file to NVDIMM storage and keep ``pmem=on``
233 (to have NVDIMM with persistence guaranties).
234
41fba161
PM
235Device options
236--------------
237
238Emulated device options
239'''''''''''''''''''''''
240
e2cc363b
YW
241``-device virtio-blk,scsi=on|off`` (since 5.0)
242^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
41fba161
PM
243
244The virtio-blk SCSI passthrough feature is a legacy VIRTIO feature. VIRTIO 1.0
245and later do not support it because the virtio-scsi device was introduced for
246full SCSI support. Use virtio-scsi instead when SCSI passthrough is required.
247
248Note this also applies to ``-device virtio-blk-pci,scsi=on|off``, which is an
249alias.
250
251Block device options
252''''''''''''''''''''
253
e2cc363b
YW
254``"backing": ""`` (since 2.12)
255^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
41fba161
PM
256
257In order to prevent QEMU from automatically opening an image's backing
258chain, use ``"backing": null`` instead.
259
e2cc363b
YW
260``rbd`` keyvalue pair encoded filenames: ``""`` (since 3.1)
261^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
41fba161
PM
262
263Options for ``rbd`` should be specified according to its runtime options,
264like other block drivers. Legacy parsing of keyvalue pair encoded
265filenames is useful to open images with the old format for backing files;
266These image files should be updated to use the current format.
267
268Example of legacy encoding::
269
270 json:{"file.driver":"rbd", "file.filename":"rbd:rbd/name"}
271
272The above, converted to the current supported format::
273
274 json:{"file.driver":"rbd", "file.pool":"rbd", "file.image":"name"}
275
0f10bf84
PM
276linux-user mode CPUs
277--------------------
278
e2cc363b
YW
279``ppc64abi32`` CPUs (since 5.2)
280'''''''''''''''''''''''''''''''
c609274b
AB
281
282The ``ppc64abi32`` architecture has a number of issues which regularly
283trip up our CI testing and is suspected to be quite broken. For that
284reason the maintainers strongly suspect no one actually uses it.
285
a60442eb
PMD
286MIPS ``I7200`` CPU (since 5.2)
287''''''''''''''''''''''''''''''
288
289The ``I7200`` guest CPU relies on the nanoMIPS ISA, which is deprecated
290(the ISA has never been upstreamed to a compiler toolchain). Therefore
291this CPU is also deprecated.
292
41fba161
PM
293Related binaries
294----------------
295
41fba161
PM
296Backwards compatibility
297-----------------------
298
e2cc363b
YW
299Runnability guarantee of CPU models (since 4.1)
300'''''''''''''''''''''''''''''''''''''''''''''''
41fba161
PM
301
302Previous versions of QEMU never changed existing CPU models in
303ways that introduced additional host software or hardware
304requirements to the VM. This allowed management software to
305safely change the machine type of an existing VM without
306introducing new requirements ("runnability guarantee"). This
307prevented CPU models from being updated to include CPU
308vulnerability mitigations, leaving guests vulnerable in the
309default configuration.
310
311The CPU model runnability guarantee won't apply anymore to
312existing CPU models. Management software that needs runnability
ac9574bc 313guarantees must resolve the CPU model aliases using the
41fba161
PM
314``alias-of`` field returned by the ``query-cpu-definitions`` QMP
315command.
316
317While those guarantees are kept, the return value of
318``query-cpu-definitions`` will have existing CPU model aliases
319point to a version that doesn't break runnability guarantees
320(specifically, version 1 of those CPU models). In future QEMU
321versions, aliases will point to newer CPU model versions
322depending on the machine type, so management software must
323resolve CPU model aliases before starting a virtual machine.
324
a60442eb
PMD
325Guest Emulator ISAs
326-------------------
327
328nanoMIPS ISA
329''''''''''''
330
331The ``nanoMIPS`` ISA has never been upstreamed to any compiler toolchain.
332As it is hard to generate binaries for it, declare it deprecated.