]> git.proxmox.com Git - qemu-server.git/blame - PVE/QemuServer.pm
cfg2cmd: use actual backend names instead of removed tty and paraport aliases
[qemu-server.git] / PVE / QemuServer.pm
CommitLineData
baa4f62d 1package PVE::QemuServer;
1e3baf05
DM
2
3use strict;
990fc5e2 4use warnings;
3ff84d6f 5
5da072fb
TL
6use Cwd 'abs_path';
7use Digest::SHA;
8use Fcntl ':flock';
9use Fcntl;
1e3baf05 10use File::Basename;
5da072fb 11use File::Copy qw(copy);
1e3baf05
DM
12use File::Path;
13use File::stat;
14use Getopt::Long;
5da072fb
TL
15use IO::Dir;
16use IO::File;
17use IO::Handle;
18use IO::Select;
19use IO::Socket::UNIX;
1e3baf05 20use IPC::Open3;
c971c4f2 21use JSON;
c3d15108 22use List::Util qw(first);
1f30ac3a 23use MIME::Base64;
5da072fb
TL
24use POSIX;
25use Storable qw(dclone);
f85951dc 26use Time::HiRes qw(gettimeofday usleep);
5da072fb 27use URI::Escape;
425441e6 28use UUID;
5da072fb 29
82841214 30use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file);
5b65b00d 31use PVE::CGroup;
83870398 32use PVE::CpuSet;
48cf040f 33use PVE::DataCenterConfig;
5da072fb 34use PVE::Exception qw(raise raise_param_exc);
3b56383b 35use PVE::Format qw(render_duration render_bytes);
81d6e4e1 36use PVE::GuestHelpers qw(safe_string_ne safe_num_ne safe_boolean_ne);
1e3baf05 37use PVE::INotify;
4df98f2f 38use PVE::JSONSchema qw(get_standard_option parse_property_string);
1e3baf05 39use PVE::ProcFSTools;
fbec3f89 40use PVE::PBSClient;
34e82fa2 41use PVE::RESTEnvironment qw(log_warn);
91bd6c90 42use PVE::RPCEnvironment;
5da072fb 43use PVE::Storage;
b71351a7 44use PVE::SysFSTools;
d04d6af1 45use PVE::Systemd;
82841214 46use PVE::Tools qw(run_command file_read_firstline file_get_contents dir_glob_foreach get_host_arch $IPV6RE);
5da072fb
TL
47
48use PVE::QMPClient;
49use PVE::QemuConfig;
238af88e 50use PVE::QemuServer::Helpers qw(min_version config_aware_timeout windows_version);
5da072fb 51use PVE::QemuServer::Cloudinit;
5b65b00d 52use PVE::QemuServer::CGroup;
d786a274 53use PVE::QemuServer::CPUConfig qw(print_cpu_device get_cpu_options);
75748d44 54use PVE::QemuServer::Drive qw(is_valid_drivename drive_is_cloudinit drive_is_cdrom drive_is_read_only parse_drive print_drive);
2ea5fb7e 55use PVE::QemuServer::Machine;
5da072fb 56use PVE::QemuServer::Memory;
0a13e08e 57use PVE::QemuServer::Monitor qw(mon_cmd);
74c17b7a 58use PVE::QemuServer::PCI qw(print_pci_addr print_pcie_addr print_pcie_root_port parse_hostpci);
5da072fb 59use PVE::QemuServer::USB qw(parse_usb_device);
1e3baf05 60
28e129cc
AD
61my $have_sdn;
62eval {
63 require PVE::Network::SDN::Zones;
64 $have_sdn = 1;
65};
66
102cf9d8 67my $EDK2_FW_BASE = '/usr/share/pve-edk2-firmware/';
96ed3574 68my $OVMF = {
b5099b4f 69 x86_64 => {
90b20b15
DC
70 '4m-no-smm' => [
71 "$EDK2_FW_BASE/OVMF_CODE_4M.fd",
72 "$EDK2_FW_BASE/OVMF_VARS_4M.fd",
73 ],
74 '4m-no-smm-ms' => [
75 "$EDK2_FW_BASE/OVMF_CODE_4M.fd",
76 "$EDK2_FW_BASE/OVMF_VARS_4M.ms.fd",
77 ],
b5099b4f
SR
78 '4m' => [
79 "$EDK2_FW_BASE/OVMF_CODE_4M.secboot.fd",
80 "$EDK2_FW_BASE/OVMF_VARS_4M.fd",
81 ],
82 '4m-ms' => [
83 "$EDK2_FW_BASE/OVMF_CODE_4M.secboot.fd",
84 "$EDK2_FW_BASE/OVMF_VARS_4M.ms.fd",
85 ],
86 default => [
87 "$EDK2_FW_BASE/OVMF_CODE.fd",
88 "$EDK2_FW_BASE/OVMF_VARS.fd",
89 ],
90 },
91 aarch64 => {
92 default => [
93 "$EDK2_FW_BASE/AAVMF_CODE.fd",
94 "$EDK2_FW_BASE/AAVMF_VARS.fd",
95 ],
96 },
96ed3574 97};
2ddc0a5c 98
7f0b5beb 99my $cpuinfo = PVE::ProcFSTools::read_cpuinfo();
1e3baf05 100
8d88a594
TL
101# Note about locking: we use flock on the config file protect against concurent actions.
102# Aditionaly, we have a 'lock' setting in the config file. This can be set to 'migrate',
103# 'backup', 'snapshot' or 'rollback'. Most actions are not allowed when such lock is set.
104# But you can ignore this kind of lock with the --skiplock flag.
1e3baf05 105
cf364f95
TL
106cfs_register_file(
107 '/qemu-server/',
108 \&parse_vm_config,
109 \&write_vm_config
110);
1e3baf05 111
3ea94c60
DM
112PVE::JSONSchema::register_standard_option('pve-qm-stateuri', {
113 description => "Some command save/restore state from this location.",
114 type => 'string',
115 maxLength => 128,
116 optional => 1,
117});
118
c6737ef1 119PVE::JSONSchema::register_standard_option('pve-qemu-machine', {
7bd9abd2 120 description => "Specifies the QEMU machine type.",
c6737ef1 121 type => 'string',
9471e48b 122 pattern => '(pc|pc(-i440fx)?-\d+(\.\d+)+(\+pve\d+)?(\.pxe)?|q35|pc-q35-\d+(\.\d+)+(\+pve\d+)?(\.pxe)?|virt(?:-\d+(\.\d+)+)?(\+pve\d+)?)',
c6737ef1
DC
123 maxLength => 40,
124 optional => 1,
125});
126
1a67f999 127# FIXME: remove in favor of just using the INotify one, it's cached there exactly the same way
38277afc
TL
128my $nodename_cache;
129sub nodename {
130 $nodename_cache //= PVE::INotify::nodename();
131 return $nodename_cache;
132}
1e3baf05 133
ec3582b5
WB
134my $watchdog_fmt = {
135 model => {
136 default_key => 1,
137 type => 'string',
138 enum => [qw(i6300esb ib700)],
139 description => "Watchdog type to emulate.",
140 default => 'i6300esb',
141 optional => 1,
142 },
143 action => {
144 type => 'string',
145 enum => [qw(reset shutdown poweroff pause debug none)],
146 description => "The action to perform if after activation the guest fails to poll the watchdog in time.",
147 optional => 1,
148 },
149};
150PVE::JSONSchema::register_format('pve-qm-watchdog', $watchdog_fmt);
151
9d66b397
SI
152my $agent_fmt = {
153 enabled => {
7bd9abd2 154 description => "Enable/disable communication with a QEMU Guest Agent (QGA) running in the VM.",
9d66b397
SI
155 type => 'boolean',
156 default => 0,
157 default_key => 1,
158 },
159 fstrim_cloned_disks => {
0a4aff09 160 description => "Run fstrim after moving a disk or migrating the VM.",
9d66b397
SI
161 type => 'boolean',
162 optional => 1,
93e21fd2
CH
163 default => 0,
164 },
165 'freeze-fs-on-backup' => {
166 description => "Freeze/thaw guest filesystems on backup for consistency.",
167 type => 'boolean',
168 optional => 1,
169 default => 1,
9d66b397 170 },
48657158
MD
171 type => {
172 description => "Select the agent type",
173 type => 'string',
174 default => 'virtio',
175 optional => 1,
176 enum => [qw(virtio isa)],
177 },
9d66b397
SI
178};
179
55655ebc
DC
180my $vga_fmt = {
181 type => {
182 description => "Select the VGA type.",
183 type => 'string',
184 default => 'std',
185 optional => 1,
186 default_key => 1,
6f070e39 187 enum => [qw(cirrus qxl qxl2 qxl3 qxl4 none serial0 serial1 serial2 serial3 std virtio virtio-gl vmware)],
55655ebc
DC
188 },
189 memory => {
190 description => "Sets the VGA memory (in MiB). Has no effect with serial display.",
191 type => 'integer',
192 optional => 1,
193 minimum => 4,
194 maximum => 512,
195 },
196};
197
6dbcb073
DC
198my $ivshmem_fmt = {
199 size => {
200 type => 'integer',
201 minimum => 1,
202 description => "The size of the file in MB.",
203 },
204 name => {
205 type => 'string',
206 pattern => '[a-zA-Z0-9\-]+',
207 optional => 1,
208 format_description => 'string',
209 description => "The name of the file. Will be prefixed with 'pve-shm-'. Default is the VMID. Will be deleted when the VM is stopped.",
210 },
211};
212
1448547f
AL
213my $audio_fmt = {
214 device => {
215 type => 'string',
216 enum => [qw(ich9-intel-hda intel-hda AC97)],
217 description => "Configure an audio device."
218 },
219 driver => {
220 type => 'string',
211785ee 221 enum => ['spice', 'none'],
1448547f
AL
222 default => 'spice',
223 optional => 1,
224 description => "Driver backend for the audio device."
225 },
226};
227
c4df18db
AL
228my $spice_enhancements_fmt = {
229 foldersharing => {
230 type => 'boolean',
231 optional => 1,
d282a24d 232 default => '0',
c4df18db
AL
233 description => "Enable folder sharing via SPICE. Needs Spice-WebDAV daemon installed in the VM."
234 },
235 videostreaming => {
236 type => 'string',
237 enum => ['off', 'all', 'filter'],
d282a24d 238 default => 'off',
c4df18db
AL
239 optional => 1,
240 description => "Enable video streaming. Uses compression for detected video streams."
241 },
242};
243
2cf61f33
SR
244my $rng_fmt = {
245 source => {
246 type => 'string',
247 enum => ['/dev/urandom', '/dev/random', '/dev/hwrng'],
248 default_key => 1,
8d88a594
TL
249 description => "The file on the host to gather entropy from. In most cases '/dev/urandom'"
250 ." should be preferred over '/dev/random' to avoid entropy-starvation issues on the"
251 ." host. Using urandom does *not* decrease security in any meaningful way, as it's"
252 ." still seeded from real entropy, and the bytes provided will most likely be mixed"
253 ." with real entropy on the guest as well. '/dev/hwrng' can be used to pass through"
254 ." a hardware RNG from the host.",
2cf61f33
SR
255 },
256 max_bytes => {
257 type => 'integer',
8d88a594
TL
258 description => "Maximum bytes of entropy allowed to get injected into the guest every"
259 ." 'period' milliseconds. Prefer a lower value when using '/dev/random' as source. Use"
260 ." `0` to disable limiting (potentially dangerous!).",
2cf61f33
SR
261 optional => 1,
262
8d88a594
TL
263 # default is 1 KiB/s, provides enough entropy to the guest to avoid boot-starvation issues
264 # (e.g. systemd etc...) while allowing no chance of overwhelming the host, provided we're
265 # reading from /dev/urandom
2cf61f33
SR
266 default => 1024,
267 },
268 period => {
269 type => 'integer',
8d88a594
TL
270 description => "Every 'period' milliseconds the entropy-injection quota is reset, allowing"
271 ." the guest to retrieve another 'max_bytes' of entropy.",
2cf61f33
SR
272 optional => 1,
273 default => 1000,
274 },
275};
276
26b443c8
TL
277my $meta_info_fmt = {
278 'ctime' => {
279 type => 'integer',
280 description => "The guest creation timestamp as UNIX epoch time",
281 minimum => 0,
282 optional => 1,
283 },
af2a1a1c
TL
284 'creation-qemu' => {
285 type => 'string',
286 description => "The QEMU (machine) version from the time this VM was created.",
287 pattern => '\d+(\.\d+)+',
288 optional => 1,
289 },
26b443c8
TL
290};
291
1e3baf05
DM
292my $confdesc = {
293 onboot => {
294 optional => 1,
295 type => 'boolean',
296 description => "Specifies whether a VM will be started during system bootup.",
297 default => 0,
298 },
299 autostart => {
300 optional => 1,
301 type => 'boolean',
302 description => "Automatic restart after crash (currently ignored).",
303 default => 0,
304 },
2ff09f52 305 hotplug => {
483ceeab
TL
306 optional => 1,
307 type => 'string', format => 'pve-hotplug-features',
308 description => "Selectively enable hotplug features. This is a comma separated list of"
94ec5e7c 309 ." hotplug features: 'network', 'disk', 'cpu', 'memory', 'usb' and 'cloudinit'. Use '0' to disable"
c60cad61
DC
310 ." hotplug completely. Using '1' as value is an alias for the default `network,disk,usb`."
311 ." USB hotplugging is possible for guests with machine version >= 7.1 and ostype l26 or"
312 ." windows > 7.",
b3c2bdd1 313 default => 'network,disk,usb',
2ff09f52 314 },
1e3baf05
DM
315 reboot => {
316 optional => 1,
317 type => 'boolean',
318 description => "Allow reboot. If set to '0' the VM exit on reboot.",
319 default => 1,
320 },
321 lock => {
322 optional => 1,
323 type => 'string',
324 description => "Lock/unlock the VM.",
159719e5 325 enum => [qw(backup clone create migrate rollback snapshot snapshot-delete suspending suspended)],
1e3baf05
DM
326 },
327 cpulimit => {
328 optional => 1,
c6f773b8 329 type => 'number',
52261945 330 description => "Limit of CPU usage.",
8d88a594
TL
331 verbose_description => "Limit of CPU usage.\n\nNOTE: If the computer has 2 CPUs, it has"
332 ." total of '2' CPU time. Value '0' indicates no CPU limit.",
1e3baf05 333 minimum => 0,
c6f773b8 334 maximum => 128,
483ceeab 335 default => 0,
1e3baf05
DM
336 },
337 cpuunits => {
338 optional => 1,
339 type => 'integer',
483ceeab 340 description => "CPU weight for a VM, will be clamped to [1, 10000] in cgroup v2.",
67498860
TL
341 verbose_description => "CPU weight for a VM. Argument is used in the kernel fair scheduler."
342 ." The larger the number is, the more CPU time this VM gets. Number is relative to"
343 ." weights of all the other running VMs.",
e65e35ca 344 minimum => 1,
237239bf 345 maximum => 262144,
67498860 346 default => 'cgroup v1: 1024, cgroup v2: 100',
1e3baf05
DM
347 },
348 memory => {
349 optional => 1,
350 type => 'integer',
252e2624 351 description => "Amount of RAM for the VM in MiB. This is the maximum available memory when"
8d88a594 352 ." you use the balloon device.",
1e3baf05
DM
353 minimum => 16,
354 default => 512,
355 },
13a48620 356 balloon => {
483ceeab
TL
357 optional => 1,
358 type => 'integer',
252e2624 359 description => "Amount of target RAM for the VM in MiB. Using zero disables the ballon driver.",
8b1accf7
DM
360 minimum => 0,
361 },
362 shares => {
483ceeab
TL
363 optional => 1,
364 type => 'integer',
365 description => "Amount of memory shares for auto-ballooning. The larger the number is, the"
8d88a594
TL
366 ." more memory this VM gets. Number is relative to weights of all other running VMs."
367 ." Using zero disables auto-ballooning. Auto-ballooning is done by pvestatd.",
8b1accf7
DM
368 minimum => 0,
369 maximum => 50000,
370 default => 1000,
13a48620 371 },
1e3baf05
DM
372 keyboard => {
373 optional => 1,
374 type => 'string',
233fb336
DW
375 description => "Keyboard layout for VNC server. This option is generally not required and"
376 ." is often better handled from within the guest OS.",
e95fe75f 377 enum => PVE::Tools::kvmkeymaplist(),
aea47dd6 378 default => undef,
1e3baf05
DM
379 },
380 name => {
381 optional => 1,
7fabe17d 382 type => 'string', format => 'dns-name',
1e3baf05
DM
383 description => "Set a name for the VM. Only used on the configuration web interface.",
384 },
cdd20088
AD
385 scsihw => {
386 optional => 1,
387 type => 'string',
52261945 388 description => "SCSI controller model",
6731a4cf 389 enum => [qw(lsi lsi53c810 virtio-scsi-pci virtio-scsi-single megasas pvscsi)],
cdd20088
AD
390 default => 'lsi',
391 },
1e3baf05
DM
392 description => {
393 optional => 1,
394 type => 'string',
a200af10
TL
395 description => "Description for the VM. Shown in the web-interface VM's summary."
396 ." This is saved as comment inside the configuration file.",
397 maxLength => 1024 * 8,
1e3baf05
DM
398 },
399 ostype => {
400 optional => 1,
401 type => 'string',
483ceeab 402 enum => [qw(other wxp w2k w2k3 w2k8 wvista win7 win8 win10 win11 l24 l26 solaris)],
52261945
DM
403 description => "Specify guest operating system.",
404 verbose_description => <<EODESC,
405Specify guest operating system. This is used to enable special
406optimization/features for specific operating systems:
407
408[horizontal]
409other;; unspecified OS
410wxp;; Microsoft Windows XP
411w2k;; Microsoft Windows 2000
412w2k3;; Microsoft Windows 2003
413w2k8;; Microsoft Windows 2008
414wvista;; Microsoft Windows Vista
415win7;; Microsoft Windows 7
44c2a647 416win8;; Microsoft Windows 8/2012/2012r2
1f5828f2 417win10;; Microsoft Windows 10/2016/2019
179b9f1b 418win11;; Microsoft Windows 11/2022
52261945 419l24;; Linux 2.4 Kernel
ea0bc514 420l26;; Linux 2.6 - 6.X Kernel
52261945 421solaris;; Solaris/OpenSolaris/OpenIndiania kernel
1e3baf05
DM
422EODESC
423 },
424 boot => {
425 optional => 1,
2141a802 426 type => 'string', format => 'pve-qm-boot',
483ceeab
TL
427 description => "Specify guest boot order. Use the 'order=' sub-property as usage with no"
428 ." key or 'legacy=' is deprecated.",
1e3baf05
DM
429 },
430 bootdisk => {
431 optional => 1,
432 type => 'string', format => 'pve-qm-bootdisk',
2141a802 433 description => "Enable booting from specified disk. Deprecated: Use 'boot: order=foo;bar' instead.",
03e480fc 434 pattern => '(ide|sata|scsi|virtio)\d+',
1e3baf05
DM
435 },
436 smp => {
437 optional => 1,
438 type => 'integer',
439 description => "The number of CPUs. Please use option -sockets instead.",
440 minimum => 1,
441 default => 1,
442 },
443 sockets => {
444 optional => 1,
445 type => 'integer',
446 description => "The number of CPU sockets.",
447 minimum => 1,
448 default => 1,
449 },
450 cores => {
451 optional => 1,
452 type => 'integer',
453 description => "The number of cores per socket.",
454 minimum => 1,
455 default => 1,
456 },
8a010eae
AD
457 numa => {
458 optional => 1,
459 type => 'boolean',
1917695c 460 description => "Enable/disable NUMA.",
8a010eae
AD
461 default => 0,
462 },
7023f3ea
AD
463 hugepages => {
464 optional => 1,
465 type => 'string',
466 description => "Enable/disable hugepages memory.",
467 enum => [qw(any 2 1024)],
468 },
f36e9894
SR
469 keephugepages => {
470 optional => 1,
471 type => 'boolean',
472 default => 0,
4df98f2f
TL
473 description => "Use together with hugepages. If enabled, hugepages will not not be deleted"
474 ." after VM shutdown and can be used for subsequent starts.",
f36e9894 475 },
de9d1e55 476 vcpus => {
3bd18e48
AD
477 optional => 1,
478 type => 'integer',
de9d1e55 479 description => "Number of hotplugged vcpus.",
3bd18e48 480 minimum => 1,
de9d1e55 481 default => 0,
3bd18e48 482 },
1e3baf05
DM
483 acpi => {
484 optional => 1,
485 type => 'boolean',
486 description => "Enable/disable ACPI.",
487 default => 1,
488 },
bc84dcca 489 agent => {
ab6a046f 490 optional => 1,
7bd9abd2 491 description => "Enable/disable communication with the QEMU Guest Agent and its properties.",
9d66b397
SI
492 type => 'string',
493 format => $agent_fmt,
ab6a046f 494 },
1e3baf05
DM
495 kvm => {
496 optional => 1,
497 type => 'boolean',
498 description => "Enable/disable KVM hardware virtualization.",
499 default => 1,
500 },
501 tdf => {
502 optional => 1,
503 type => 'boolean',
8c559505
DM
504 description => "Enable/disable time drift fix.",
505 default => 0,
1e3baf05 506 },
19672434 507 localtime => {
1e3baf05
DM
508 optional => 1,
509 type => 'boolean',
8d88a594
TL
510 description => "Set the real time clock (RTC) to local time. This is enabled by default if"
511 ." the `ostype` indicates a Microsoft Windows OS.",
1e3baf05
DM
512 },
513 freeze => {
514 optional => 1,
515 type => 'boolean',
516 description => "Freeze CPU at startup (use 'c' monitor command to start execution).",
517 },
518 vga => {
519 optional => 1,
55655ebc
DC
520 type => 'string', format => $vga_fmt,
521 description => "Configure the VGA hardware.",
4df98f2f
TL
522 verbose_description => "Configure the VGA Hardware. If you want to use high resolution"
523 ." modes (>= 1280x1024x16) you may need to increase the vga memory option. Since QEMU"
524 ." 2.9 the default VGA display type is 'std' for all OS types besides some Windows"
525 ." versions (XP and older) which use 'cirrus'. The 'qxl' option enables the SPICE"
526 ." display server. For win* OS you can select how many independent displays you want,"
527 ." Linux guests can add displays them self.\nYou can also run without any graphic card,"
528 ." using a serial device as terminal.",
1e3baf05 529 },
0ea9541d
DM
530 watchdog => {
531 optional => 1,
532 type => 'string', format => 'pve-qm-watchdog',
52261945 533 description => "Create a virtual hardware watchdog device.",
4df98f2f
TL
534 verbose_description => "Create a virtual hardware watchdog device. Once enabled (by a guest"
535 ." action), the watchdog must be periodically polled by an agent inside the guest or"
536 ." else the watchdog will reset the guest (or execute the respective action specified)",
0ea9541d 537 },
1e3baf05
DM
538 startdate => {
539 optional => 1,
19672434 540 type => 'string',
1e3baf05 541 typetext => "(now | YYYY-MM-DD | YYYY-MM-DDTHH:MM:SS)",
4df98f2f
TL
542 description => "Set the initial date of the real time clock. Valid format for date are:"
543 ."'now' or '2006-06-17T16:01:21' or '2006-06-17'.",
1e3baf05
DM
544 pattern => '(now|\d{4}-\d{1,2}-\d{1,2}(T\d{1,2}:\d{1,2}:\d{1,2})?)',
545 default => 'now',
546 },
43574f73 547 startup => get_standard_option('pve-startup-order'),
68eda3ab
AD
548 template => {
549 optional => 1,
550 type => 'boolean',
551 description => "Enable/disable Template.",
552 default => 0,
553 },
1e3baf05
DM
554 args => {
555 optional => 1,
556 type => 'string',
52261945
DM
557 description => "Arbitrary arguments passed to kvm.",
558 verbose_description => <<EODESCR,
c7a8aad6 559Arbitrary arguments passed to kvm, for example:
1e3baf05
DM
560
561args: -no-reboot -no-hpet
c7a8aad6
FG
562
563NOTE: this option is for experts only.
1e3baf05
DM
564EODESCR
565 },
566 tablet => {
567 optional => 1,
568 type => 'boolean',
569 default => 1,
52261945 570 description => "Enable/disable the USB tablet device.",
4df98f2f
TL
571 verbose_description => "Enable/disable the USB tablet device. This device is usually needed"
572 ." to allow absolute mouse positioning with VNC. Else the mouse runs out of sync with"
573 ." normal VNC clients. If you're running lots of console-only guests on one host, you"
574 ." may consider disabling this to save some context switches. This is turned off by"
575 ." default if you use spice (`qm set <vmid> --vga qxl`).",
1e3baf05
DM
576 },
577 migrate_speed => {
578 optional => 1,
579 type => 'integer',
580 description => "Set maximum speed (in MB/s) for migrations. Value 0 is no limit.",
581 minimum => 0,
582 default => 0,
583 },
584 migrate_downtime => {
585 optional => 1,
04432191 586 type => 'number',
1e3baf05
DM
587 description => "Set maximum tolerated downtime (in seconds) for migrations.",
588 minimum => 0,
04432191 589 default => 0.1,
1e3baf05
DM
590 },
591 cdrom => {
592 optional => 1,
b799312f 593 type => 'string', format => 'pve-qm-ide',
8485b9ba 594 typetext => '<volume>',
1e3baf05
DM
595 description => "This is an alias for option -ide2",
596 },
597 cpu => {
598 optional => 1,
599 description => "Emulated CPU type.",
600 type => 'string',
5d008ad3 601 format => 'pve-vm-cpu-conf',
1e3baf05 602 },
b7ba6b79
DM
603 parent => get_standard_option('pve-snapshot-name', {
604 optional => 1,
605 description => "Parent snapshot name. This is used internally, and should not be modified.",
606 }),
982c7f12
DM
607 snaptime => {
608 optional => 1,
609 description => "Timestamp for snapshots.",
610 type => 'integer',
611 minimum => 0,
612 },
18bfb361
DM
613 vmstate => {
614 optional => 1,
615 type => 'string', format => 'pve-volume-id',
4df98f2f
TL
616 description => "Reference to a volume which stores the VM state. This is used internally"
617 ." for snapshots.",
18bfb361 618 },
253624c7
FG
619 vmstatestorage => get_standard_option('pve-storage-id', {
620 description => "Default storage for VM state volumes/files.",
621 optional => 1,
622 }),
c6737ef1 623 runningmachine => get_standard_option('pve-qemu-machine', {
4df98f2f
TL
624 description => "Specifies the QEMU machine type of the running vm. This is used internally"
625 ." for snapshots.",
c6737ef1 626 }),
ea1c2110 627 runningcpu => {
4df98f2f
TL
628 description => "Specifies the QEMU '-cpu' parameter of the running vm. This is used"
629 ." internally for snapshots.",
ea1c2110
SR
630 optional => 1,
631 type => 'string',
632 pattern => $PVE::QemuServer::CPUConfig::qemu_cmdline_cpu_re,
633 format_description => 'QEMU -cpu parameter'
634 },
c6737ef1 635 machine => get_standard_option('pve-qemu-machine'),
d731ecbe
WB
636 arch => {
637 description => "Virtual processor architecture. Defaults to the host.",
638 optional => 1,
639 type => 'string',
640 enum => [qw(x86_64 aarch64)],
641 },
2796e7d5
DM
642 smbios1 => {
643 description => "Specify SMBIOS type 1 fields.",
644 type => 'string', format => 'pve-qm-smbios1',
5d004b00 645 maxLength => 512,
2796e7d5
DM
646 optional => 1,
647 },
cb0e4540
AG
648 protection => {
649 optional => 1,
650 type => 'boolean',
4df98f2f
TL
651 description => "Sets the protection flag of the VM. This will disable the remove VM and"
652 ." remove disk operations.",
cb0e4540
AG
653 default => 0,
654 },
3edb45e7 655 bios => {
a783c78e 656 optional => 1,
3edb45e7
DM
657 type => 'string',
658 enum => [ qw(seabios ovmf) ],
659 description => "Select BIOS implementation.",
660 default => 'seabios',
a783c78e 661 },
6ee499ff
DC
662 vmgenid => {
663 type => 'string',
664 pattern => '(?:[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}|[01])',
665 format_description => 'UUID',
4df98f2f
TL
666 description => "Set VM Generation ID. Use '1' to autogenerate on create or update, pass '0'"
667 ." to disable explicitly.",
668 verbose_description => "The VM generation ID (vmgenid) device exposes a 128-bit integer"
669 ." value identifier to the guest OS. This allows to notify the guest operating system"
670 ." when the virtual machine is executed with a different configuration (e.g. snapshot"
671 ." execution or creation from a template). The guest operating system notices the"
672 ." change, and is then able to react as appropriate by marking its copies of"
673 ." distributed databases as dirty, re-initializing its random number generator, etc.\n"
674 ."Note that auto-creation only works when done through API/CLI create or update methods"
675 .", but not when manually editing the config file.",
f7ed64e7 676 default => "1 (autogenerated)",
6ee499ff
DC
677 optional => 1,
678 },
9e784b11
DC
679 hookscript => {
680 type => 'string',
681 format => 'pve-volume-id',
682 optional => 1,
683 description => "Script that will be executed during various steps in the vms lifetime.",
684 },
6dbcb073
DC
685 ivshmem => {
686 type => 'string',
687 format => $ivshmem_fmt,
4df98f2f
TL
688 description => "Inter-VM shared memory. Useful for direct communication between VMs, or to"
689 ." the host.",
6dbcb073 690 optional => 1,
2e7b5925
AL
691 },
692 audio0 => {
693 type => 'string',
1448547f 694 format => $audio_fmt,
194b65f1 695 description => "Configure a audio device, useful in combination with QXL/Spice.",
2e7b5925
AL
696 optional => 1
697 },
c4df18db
AL
698 spice_enhancements => {
699 type => 'string',
700 format => $spice_enhancements_fmt,
701 description => "Configure additional enhancements for SPICE.",
702 optional => 1
703 },
b8e7068a
DC
704 tags => {
705 type => 'string', format => 'pve-tag-list',
706 description => 'Tags of the VM. This is only meta information.',
707 optional => 1,
708 },
2cf61f33
SR
709 rng0 => {
710 type => 'string',
711 format => $rng_fmt,
712 description => "Configure a VirtIO-based Random Number Generator.",
713 optional => 1,
714 },
26b443c8
TL
715 meta => {
716 type => 'string',
717 format => $meta_info_fmt,
718 description => "Some (read-only) meta-information about this guest.",
719 optional => 1,
720 },
83870398
DB
721 affinity => {
722 type => 'string', format => 'pve-cpuset',
326704e7 723 description => "List of host cores used to execute guest processes, for example: 0,5,8-11",
83870398
DB
724 optional => 1,
725 },
9ed7a77c
WB
726};
727
cb702ebe
DL
728my $cicustom_fmt = {
729 meta => {
730 type => 'string',
731 optional => 1,
4df98f2f
TL
732 description => 'Specify a custom file containing all meta data passed to the VM via"
733 ." cloud-init. This is provider specific meaning configdrive2 and nocloud differ.',
cb702ebe
DL
734 format => 'pve-volume-id',
735 format_description => 'volume',
736 },
737 network => {
738 type => 'string',
739 optional => 1,
eba285f5 740 description => 'To pass a custom file containing all network data to the VM via cloud-init.',
cb702ebe
DL
741 format => 'pve-volume-id',
742 format_description => 'volume',
743 },
744 user => {
745 type => 'string',
746 optional => 1,
eba285f5 747 description => 'To pass a custom file containing all user data to the VM via cloud-init.',
cb702ebe
DL
748 format => 'pve-volume-id',
749 format_description => 'volume',
750 },
101beafe 751 vendor => {
eba285f5
TL
752 type => 'string',
753 optional => 1,
754 description => 'To pass a custom file containing all vendor data to the VM via cloud-init.',
755 format => 'pve-volume-id',
756 format_description => 'volume',
101beafe 757 },
cb702ebe
DL
758};
759PVE::JSONSchema::register_format('pve-qm-cicustom', $cicustom_fmt);
760
9ed7a77c 761my $confdesc_cloudinit = {
41cd94a0
WB
762 citype => {
763 optional => 1,
764 type => 'string',
4df98f2f
TL
765 description => 'Specifies the cloud-init configuration format. The default depends on the'
766 .' configured operating system type (`ostype`. We use the `nocloud` format for Linux,'
767 .' and `configdrive2` for windows.',
545eec65 768 enum => ['configdrive2', 'nocloud', 'opennebula'],
41cd94a0 769 },
7b42f951
WB
770 ciuser => {
771 optional => 1,
772 type => 'string',
4df98f2f
TL
773 description => "cloud-init: User name to change ssh keys and password for instead of the"
774 ." image's configured default user.",
7b42f951
WB
775 },
776 cipassword => {
777 optional => 1,
778 type => 'string',
4df98f2f
TL
779 description => 'cloud-init: Password to assign the user. Using this is generally not'
780 .' recommended. Use ssh keys instead. Also note that older cloud-init versions do not'
781 .' support hashed passwords.',
7b42f951 782 },
cb702ebe
DL
783 cicustom => {
784 optional => 1,
785 type => 'string',
4df98f2f
TL
786 description => 'cloud-init: Specify custom files to replace the automatically generated'
787 .' ones at start.',
cb702ebe
DL
788 format => 'pve-qm-cicustom',
789 },
0c9a7596
AD
790 searchdomain => {
791 optional => 1,
792 type => 'string',
bd49ecb4 793 description => 'cloud-init: Sets DNS search domains for a container. Create will'
4df98f2f 794 .' automatically use the setting from the host if neither searchdomain nor nameserver'
bd49ecb4 795 .' are set.',
0c9a7596
AD
796 },
797 nameserver => {
798 optional => 1,
799 type => 'string', format => 'address-list',
bd49ecb4 800 description => 'cloud-init: Sets DNS server IP address for a container. Create will'
4df98f2f 801 .' automatically use the setting from the host if neither searchdomain nor nameserver'
bd49ecb4 802 .' are set.',
0c9a7596
AD
803 },
804 sshkeys => {
805 optional => 1,
806 type => 'string',
807 format => 'urlencoded',
1d1c4e1c 808 description => "cloud-init: Setup public SSH keys (one key per line, OpenSSH format).",
0c9a7596 809 },
1e3baf05
DM
810};
811
812# what about other qemu settings ?
813#cpu => 'string',
814#machine => 'string',
815#fda => 'file',
816#fdb => 'file',
817#mtdblock => 'file',
818#sd => 'file',
819#pflash => 'file',
820#snapshot => 'bool',
821#bootp => 'file',
822##tftp => 'dir',
823##smb => 'dir',
824#kernel => 'file',
825#append => 'string',
826#initrd => 'file',
827##soundhw => 'string',
828
829while (my ($k, $v) = each %$confdesc) {
830 PVE::JSONSchema::register_standard_option("pve-qm-$k", $v);
831}
832
0c3d18ef 833my $MAX_USB_DEVICES = 14;
5bdcf937 834my $MAX_NETS = 32;
bae179aa 835my $MAX_SERIAL_PORTS = 4;
1989a89c 836my $MAX_PARALLEL_PORTS = 3;
2ed5d572
AD
837my $MAX_NUMA = 8;
838
ffc0d8c7
WB
839my $numa_fmt = {
840 cpus => {
841 type => "string",
842 pattern => qr/\d+(?:-\d+)?(?:;\d+(?:-\d+)?)*/,
52261945 843 description => "CPUs accessing this NUMA node.",
ffc0d8c7
WB
844 format_description => "id[-id];...",
845 },
846 memory => {
847 type => "number",
52261945 848 description => "Amount of memory this NUMA node provides.",
ffc0d8c7
WB
849 optional => 1,
850 },
851 hostnodes => {
852 type => "string",
853 pattern => qr/\d+(?:-\d+)?(?:;\d+(?:-\d+)?)*/,
52261945 854 description => "Host NUMA nodes to use.",
ffc0d8c7
WB
855 format_description => "id[-id];...",
856 optional => 1,
857 },
858 policy => {
859 type => 'string',
860 enum => [qw(preferred bind interleave)],
52261945 861 description => "NUMA allocation policy.",
ffc0d8c7
WB
862 optional => 1,
863 },
864};
865PVE::JSONSchema::register_format('pve-qm-numanode', $numa_fmt);
2ed5d572
AD
866my $numadesc = {
867 optional => 1,
ffc0d8c7 868 type => 'string', format => $numa_fmt,
52261945 869 description => "NUMA topology.",
2ed5d572
AD
870};
871PVE::JSONSchema::register_standard_option("pve-qm-numanode", $numadesc);
872
873for (my $i = 0; $i < $MAX_NUMA; $i++) {
874 $confdesc->{"numa$i"} = $numadesc;
875}
1e3baf05 876
f7bc17ca
TL
877my $nic_model_list = [
878 'e1000',
879 'e1000-82540em',
880 'e1000-82544gc',
881 'e1000-82545em',
e83dd50a 882 'e1000e',
f7bc17ca
TL
883 'i82551',
884 'i82557b',
885 'i82559er',
886 'ne2k_isa',
887 'ne2k_pci',
888 'pcnet',
889 'rtl8139',
890 'virtio',
891 'vmxnet3',
892];
6b64503e 893my $nic_model_list_txt = join(' ', sort @$nic_model_list);
1e3baf05 894
52261945
DM
895my $net_fmt_bridge_descr = <<__EOD__;
896Bridge to attach the network device to. The Proxmox VE standard bridge
897is called 'vmbr0'.
898
899If you do not specify a bridge, we create a kvm user (NATed) network
900device, which provides DHCP and DNS services. The following addresses
901are used:
902
903 10.0.2.2 Gateway
904 10.0.2.3 DNS Server
905 10.0.2.4 SMB Server
906
907The DHCP server assign addresses to the guest starting from 10.0.2.15.
908__EOD__
909
cd9c34d1 910my $net_fmt = {
399d96db 911 macaddr => get_standard_option('mac-addr', {
4df98f2f
TL
912 description => "MAC address. That address must be unique withing your network. This is"
913 ." automatically generated if not specified.",
399d96db 914 }),
7f694a71
DM
915 model => {
916 type => 'string',
4df98f2f
TL
917 description => "Network Card Model. The 'virtio' model provides the best performance with"
918 ." very low CPU overhead. If your guest does not support this driver, it is usually"
919 ." best to use 'e1000'.",
7f694a71
DM
920 enum => $nic_model_list,
921 default_key => 1,
922 },
923 (map { $_ => { keyAlias => 'model', alias => 'macaddr' }} @$nic_model_list),
dbdcc5cd 924 bridge => get_standard_option('pve-bridge-id', {
52261945 925 description => $net_fmt_bridge_descr,
cd9c34d1 926 optional => 1,
dbdcc5cd 927 }),
cd9c34d1
WB
928 queues => {
929 type => 'integer',
66222265 930 minimum => 0, maximum => 64,
cd9c34d1 931 description => 'Number of packet queues to be used on the device.',
cd9c34d1
WB
932 optional => 1,
933 },
934 rate => {
935 type => 'number',
936 minimum => 0,
52261945 937 description => "Rate limit in mbps (megabytes per second) as floating point number.",
cd9c34d1
WB
938 optional => 1,
939 },
940 tag => {
941 type => 'integer',
9f41a659 942 minimum => 1, maximum => 4094,
cd9c34d1 943 description => 'VLAN tag to apply to packets on this interface.',
cd9c34d1
WB
944 optional => 1,
945 },
946 trunks => {
947 type => 'string',
948 pattern => qr/\d+(?:-\d+)?(?:;\d+(?:-\d+)?)*/,
949 description => 'VLAN trunks to pass through this interface.',
7f694a71 950 format_description => 'vlanid[;vlanid...]',
cd9c34d1
WB
951 optional => 1,
952 },
953 firewall => {
954 type => 'boolean',
955 description => 'Whether this interface should be protected by the firewall.',
cd9c34d1
WB
956 optional => 1,
957 },
958 link_down => {
959 type => 'boolean',
52261945 960 description => 'Whether this interface should be disconnected (like pulling the plug).',
cd9c34d1
WB
961 optional => 1,
962 },
61a14cde
AD
963 mtu => {
964 type => 'integer',
965 minimum => 1, maximum => 65520,
0530177b 966 description => "Force MTU, for VirtIO only. Set to '1' to use the bridge MTU",
61a14cde
AD
967 optional => 1,
968 },
cd9c34d1 969};
52261945 970
1e3baf05
DM
971my $netdesc = {
972 optional => 1,
7f694a71 973 type => 'string', format => $net_fmt,
52261945 974 description => "Specify network devices.",
1e3baf05 975};
52261945 976
1e3baf05
DM
977PVE::JSONSchema::register_standard_option("pve-qm-net", $netdesc);
978
0c9a7596
AD
979my $ipconfig_fmt = {
980 ip => {
981 type => 'string',
982 format => 'pve-ipv4-config',
983 format_description => 'IPv4Format/CIDR',
984 description => 'IPv4 address in CIDR format.',
985 optional => 1,
986 default => 'dhcp',
987 },
988 gw => {
989 type => 'string',
990 format => 'ipv4',
991 format_description => 'GatewayIPv4',
992 description => 'Default gateway for IPv4 traffic.',
993 optional => 1,
994 requires => 'ip',
995 },
996 ip6 => {
997 type => 'string',
998 format => 'pve-ipv6-config',
999 format_description => 'IPv6Format/CIDR',
1000 description => 'IPv6 address in CIDR format.',
1001 optional => 1,
1002 default => 'dhcp',
1003 },
1004 gw6 => {
1005 type => 'string',
1006 format => 'ipv6',
1007 format_description => 'GatewayIPv6',
1008 description => 'Default gateway for IPv6 traffic.',
1009 optional => 1,
1010 requires => 'ip6',
1011 },
1012};
1013PVE::JSONSchema::register_format('pve-qm-ipconfig', $ipconfig_fmt);
1014my $ipconfigdesc = {
1015 optional => 1,
1016 type => 'string', format => 'pve-qm-ipconfig',
1017 description => <<'EODESCR',
1018cloud-init: Specify IP addresses and gateways for the corresponding interface.
1019
1020IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.
1021
4df98f2f
TL
1022The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit
1023gateway should be provided.
988be8d0
ML
1024For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires
1025cloud-init 19.4 or newer.
0c9a7596 1026
4df98f2f
TL
1027If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using
1028dhcp on IPv4.
0c9a7596
AD
1029EODESCR
1030};
1031PVE::JSONSchema::register_standard_option("pve-qm-ipconfig", $netdesc);
1032
1e3baf05
DM
1033for (my $i = 0; $i < $MAX_NETS; $i++) {
1034 $confdesc->{"net$i"} = $netdesc;
9ed7a77c
WB
1035 $confdesc_cloudinit->{"ipconfig$i"} = $ipconfigdesc;
1036}
1037
1038foreach my $key (keys %$confdesc_cloudinit) {
1039 $confdesc->{$key} = $confdesc_cloudinit->{$key};
1e3baf05
DM
1040}
1041
83870398
DB
1042PVE::JSONSchema::register_format('pve-cpuset', \&pve_verify_cpuset);
1043sub pve_verify_cpuset {
1044 my ($set_text, $noerr) = @_;
1045
1046 my ($count, $members) = eval { PVE::CpuSet::parse_cpuset($set_text) };
1047
1048 if ($@) {
1049 return if $noerr;
1050 die "unable to parse cpuset option\n";
1051 }
1052
1053 return PVE::CpuSet->new($members)->short_string();
1054}
1055
ffa42b86
DC
1056PVE::JSONSchema::register_format('pve-volume-id-or-qm-path', \&verify_volume_id_or_qm_path);
1057sub verify_volume_id_or_qm_path {
822c8a07
WB
1058 my ($volid, $noerr) = @_;
1059
6e55f579
FE
1060 return $volid if $volid eq 'none' || $volid eq 'cdrom';
1061
1062 return verify_volume_id_or_absolute_path($volid, $noerr);
1063}
1064
1065PVE::JSONSchema::register_format('pve-volume-id-or-absolute-path', \&verify_volume_id_or_absolute_path);
1066sub verify_volume_id_or_absolute_path {
1067 my ($volid, $noerr) = @_;
1068
1069 return $volid if $volid =~ m|^/|;
ffa42b86 1070
822c8a07
WB
1071 $volid = eval { PVE::JSONSchema::check_format('pve-volume-id', $volid, '') };
1072 if ($@) {
d1c1af4b 1073 return if $noerr;
822c8a07
WB
1074 die $@;
1075 }
1076 return $volid;
1077}
1078
ff6ffe20 1079my $usb_fmt = {
a6b9aee4
DC
1080 host => {
1081 default_key => 1,
1082 type => 'string', format => 'pve-qm-usb-device',
1083 format_description => 'HOSTUSBDEVICE|spice',
52261945
DM
1084 description => <<EODESCR,
1085The Host USB device or port or the value 'spice'. HOSTUSBDEVICE syntax is:
1086
1087 'bus-port(.port)*' (decimal numbers) or
1088 'vendor_id:product_id' (hexadeciaml numbers) or
1089 'spice'
1090
1091You can use the 'lsusb -t' command to list existing usb devices.
1092
4df98f2f
TL
1093NOTE: This option allows direct access to host hardware. So it is no longer possible to migrate such
1094machines - use with special care.
52261945
DM
1095
1096The value 'spice' can be used to add a usb redirection devices for spice.
1097EODESCR
a6b9aee4
DC
1098 },
1099 usb3 => {
1100 optional => 1,
1101 type => 'boolean',
4862922a
DC
1102 description => "Specifies whether if given host option is a USB3 device or port."
1103 ." For modern guests (machine version >= 7.1 and ostype l26 and windows > 7), this flag"
1104 ." is irrelevant (all devices are plugged into a xhci controller).",
52261945 1105 default => 0,
a6b9aee4
DC
1106 },
1107};
1108
1e3baf05
DM
1109my $usbdesc = {
1110 optional => 1,
ff6ffe20 1111 type => 'string', format => $usb_fmt,
0c3d18ef
DC
1112 description => "Configure an USB device (n is 0 to 4, for machine version >= 7.1 and ostype"
1113 ." l26 or windows > 7, n can be up to 14).",
1e3baf05
DM
1114};
1115PVE::JSONSchema::register_standard_option("pve-qm-usb", $usbdesc);
1116
bae179aa
DA
1117my $serialdesc = {
1118 optional => 1,
ca0cef26 1119 type => 'string',
1b0b51ed 1120 pattern => '(/dev/.+|socket)',
52261945
DM
1121 description => "Create a serial device inside the VM (n is 0 to 3)",
1122 verbose_description => <<EODESCR,
52261945
DM
1123Create a serial device inside the VM (n is 0 to 3), and pass through a
1124host serial device (i.e. /dev/ttyS0), or create a unix socket on the
1125host side (use 'qm terminal' to open a terminal connection).
bae179aa 1126
4df98f2f
TL
1127NOTE: If you pass through a host serial device, it is no longer possible to migrate such machines -
1128use with special care.
bae179aa 1129
52261945 1130CAUTION: Experimental! User reported problems with this option.
bae179aa
DA
1131EODESCR
1132};
bae179aa 1133
1989a89c
DA
1134my $paralleldesc= {
1135 optional => 1,
ca0cef26 1136 type => 'string',
9ecc8431 1137 pattern => '/dev/parport\d+|/dev/usb/lp\d+',
52261945
DM
1138 description => "Map host parallel devices (n is 0 to 2).",
1139 verbose_description => <<EODESCR,
19672434 1140Map host parallel devices (n is 0 to 2).
1989a89c 1141
4df98f2f
TL
1142NOTE: This option allows direct access to host hardware. So it is no longer possible to migrate such
1143machines - use with special care.
1989a89c 1144
52261945 1145CAUTION: Experimental! User reported problems with this option.
1989a89c
DA
1146EODESCR
1147};
1989a89c
DA
1148
1149for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
1150 $confdesc->{"parallel$i"} = $paralleldesc;
1151}
1152
bae179aa
DA
1153for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
1154 $confdesc->{"serial$i"} = $serialdesc;
1155}
1156
74c17b7a
SR
1157for (my $i = 0; $i < $PVE::QemuServer::PCI::MAX_HOSTPCI_DEVICES; $i++) {
1158 $confdesc->{"hostpci$i"} = $PVE::QemuServer::PCI::hostpcidesc;
040b06b7 1159}
1e3baf05 1160
e0fd2b2f
FE
1161for my $key (keys %{$PVE::QemuServer::Drive::drivedesc_hash}) {
1162 $confdesc->{$key} = $PVE::QemuServer::Drive::drivedesc_hash->{$key};
cdb0931f
DA
1163}
1164
1e3baf05
DM
1165for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
1166 $confdesc->{"usb$i"} = $usbdesc;
1167}
1168
5cfa9f5f
SR
1169my $boot_fmt = {
1170 legacy => {
1171 optional => 1,
1172 default_key => 1,
1173 type => 'string',
1174 description => "Boot on floppy (a), hard disk (c), CD-ROM (d), or network (n)."
1175 . " Deprecated, use 'order=' instead.",
1176 pattern => '[acdn]{1,4}',
1177 format_description => "[acdn]{1,4}",
1178
1179 # note: this is also the fallback if boot: is not given at all
1180 default => 'cdn',
1181 },
1182 order => {
1183 optional => 1,
1184 type => 'string',
1185 format => 'pve-qm-bootdev-list',
1186 format_description => "device[;device...]",
1187 description => <<EODESC,
1188The guest will attempt to boot from devices in the order they appear here.
1189
1190Disks, optical drives and passed-through storage USB devices will be directly
1191booted from, NICs will load PXE, and PCIe devices will either behave like disks
1192(e.g. NVMe) or load an option ROM (e.g. RAID controller, hardware NIC).
1193
1194Note that only devices in this list will be marked as bootable and thus loaded
1195by the guest firmware (BIOS/UEFI). If you require multiple disks for booting
1196(e.g. software-raid), you need to specify all of them here.
1197
1198Overrides the deprecated 'legacy=[acdn]*' value when given.
1199EODESC
1200 },
1201};
1202PVE::JSONSchema::register_format('pve-qm-boot', $boot_fmt);
1203
1204PVE::JSONSchema::register_format('pve-qm-bootdev', \&verify_bootdev);
1205sub verify_bootdev {
1206 my ($dev, $noerr) = @_;
1207
f9dde219
SR
1208 my $special = $dev =~ m/^efidisk/ || $dev =~ m/^tpmstate/;
1209 return $dev if PVE::QemuServer::Drive::is_valid_drivename($dev) && !$special;
5cfa9f5f
SR
1210
1211 my $check = sub {
1212 my ($base) = @_;
1213 return 0 if $dev !~ m/^$base\d+$/;
1214 return 0 if !$confdesc->{$dev};
1215 return 1;
1216 };
1217
1218 return $dev if $check->("net");
1219 return $dev if $check->("usb");
1220 return $dev if $check->("hostpci");
1221
d1c1af4b 1222 return if $noerr;
5cfa9f5f
SR
1223 die "invalid boot device '$dev'\n";
1224}
1225
1226sub print_bootorder {
1227 my ($devs) = @_;
4c27b18c 1228 return "" if !@$devs;
5cfa9f5f
SR
1229 my $data = { order => join(';', @$devs) };
1230 return PVE::JSONSchema::print_property_string($data, $boot_fmt);
1231}
1232
1e3baf05
DM
1233my $kvm_api_version = 0;
1234
1235sub kvm_version {
1e3baf05
DM
1236 return $kvm_api_version if $kvm_api_version;
1237
808a65b5 1238 open my $fh, '<', '/dev/kvm' or return;
1e3baf05 1239
646f2df4
WB
1240 # 0xae00 => KVM_GET_API_VERSION
1241 $kvm_api_version = ioctl($fh, 0xae00, 0);
808a65b5 1242 close($fh);
1e3baf05 1243
646f2df4 1244 return $kvm_api_version;
1e3baf05
DM
1245}
1246
1476b99f
DC
1247my $kvm_user_version = {};
1248my $kvm_mtime = {};
1e3baf05
DM
1249
1250sub kvm_user_version {
1476b99f 1251 my ($binary) = @_;
1e3baf05 1252
1476b99f
DC
1253 $binary //= get_command_for_arch(get_host_arch()); # get the native arch by default
1254 my $st = stat($binary);
1e3baf05 1255
1476b99f
DC
1256 my $cachedmtime = $kvm_mtime->{$binary} // -1;
1257 return $kvm_user_version->{$binary} if $kvm_user_version->{$binary} &&
1258 $cachedmtime == $st->mtime;
1259
1260 $kvm_user_version->{$binary} = 'unknown';
1261 $kvm_mtime->{$binary} = $st->mtime;
1e3baf05 1262
09b11429
TL
1263 my $code = sub {
1264 my $line = shift;
1265 if ($line =~ m/^QEMU( PC)? emulator version (\d+\.\d+(\.\d+)?)(\.\d+)?[,\s]/) {
1476b99f 1266 $kvm_user_version->{$binary} = $2;
09b11429
TL
1267 }
1268 };
19672434 1269
1476b99f 1270 eval { run_command([$binary, '--version'], outfunc => $code); };
09b11429 1271 warn $@ if $@;
1e3baf05 1272
1476b99f 1273 return $kvm_user_version->{$binary};
1e3baf05
DM
1274
1275}
4df98f2f
TL
1276my sub extract_version {
1277 my ($machine_type, $version) = @_;
1278 $version = kvm_user_version() if !defined($version);
8eb73377 1279 return PVE::QemuServer::Machine::extract_version($machine_type, $version)
4df98f2f 1280}
1e3baf05 1281
db70021b
TL
1282sub kernel_has_vhost_net {
1283 return -c '/dev/vhost-net';
1284}
1e3baf05 1285
1e3baf05
DM
1286sub option_exists {
1287 my $key = shift;
1288 return defined($confdesc->{$key});
19672434 1289}
1e3baf05 1290
1e3baf05 1291my $cdrom_path;
1e3baf05
DM
1292sub get_cdrom_path {
1293
259470ee 1294 return $cdrom_path if defined($cdrom_path);
1e3baf05 1295
c3d15108
TL
1296 $cdrom_path = first { -l $_ } map { "/dev/cdrom$_" } ('', '1', '2');
1297
1298 if (!defined($cdrom_path)) {
490b7308
SS
1299 log_warn("no physical CD-ROM available, ignoring");
1300 $cdrom_path = '';
1301 }
259470ee
SS
1302
1303 return $cdrom_path;
1e3baf05
DM
1304}
1305
1306sub get_iso_path {
1307 my ($storecfg, $vmid, $cdrom) = @_;
1308
1309 if ($cdrom eq 'cdrom') {
1310 return get_cdrom_path();
1311 } elsif ($cdrom eq 'none') {
1312 return '';
1313 } elsif ($cdrom =~ m|^/|) {
1314 return $cdrom;
1315 } else {
6b64503e 1316 return PVE::Storage::path($storecfg, $cdrom);
1e3baf05
DM
1317 }
1318}
1319
1320# try to convert old style file names to volume IDs
1321sub filename_to_volume_id {
1322 my ($vmid, $file, $media) = @_;
1323
0c9a7596 1324 if (!($file eq 'none' || $file eq 'cdrom' ||
1e3baf05 1325 $file =~ m|^/dev/.+| || $file =~ m/^([^:]+):(.+)$/)) {
19672434 1326
d1c1af4b 1327 return if $file =~ m|/|;
19672434 1328
1e3baf05
DM
1329 if ($media && $media eq 'cdrom') {
1330 $file = "local:iso/$file";
1331 } else {
1332 $file = "local:$vmid/$file";
1333 }
1334 }
1335
1336 return $file;
1337}
1338
1339sub verify_media_type {
1340 my ($opt, $vtype, $media) = @_;
1341
1342 return if !$media;
1343
1344 my $etype;
1345 if ($media eq 'disk') {
a125592c 1346 $etype = 'images';
1e3baf05
DM
1347 } elsif ($media eq 'cdrom') {
1348 $etype = 'iso';
1349 } else {
1350 die "internal error";
1351 }
1352
1353 return if ($vtype eq $etype);
19672434 1354
1e3baf05
DM
1355 raise_param_exc({ $opt => "unexpected media type ($vtype != $etype)" });
1356}
1357
1358sub cleanup_drive_path {
1359 my ($opt, $storecfg, $drive) = @_;
1360
1361 # try to convert filesystem paths to volume IDs
1362
1363 if (($drive->{file} !~ m/^(cdrom|none)$/) &&
1364 ($drive->{file} !~ m|^/dev/.+|) &&
1365 ($drive->{file} !~ m/^([^:]+):(.+)$/) &&
19672434 1366 ($drive->{file} !~ m/^\d+$/)) {
1e3baf05 1367 my ($vtype, $volid) = PVE::Storage::path_to_volume_id($storecfg, $drive->{file});
4df98f2f
TL
1368 raise_param_exc({ $opt => "unable to associate path '$drive->{file}' to any storage"})
1369 if !$vtype;
1e3baf05
DM
1370 $drive->{media} = 'cdrom' if !$drive->{media} && $vtype eq 'iso';
1371 verify_media_type($opt, $vtype, $drive->{media});
1372 $drive->{file} = $volid;
1373 }
1374
1375 $drive->{media} = 'cdrom' if !$drive->{media} && $drive->{file} =~ m/^(cdrom|none)$/;
1376}
1377
b3c2bdd1
DM
1378sub parse_hotplug_features {
1379 my ($data) = @_;
1380
1381 my $res = {};
1382
1383 return $res if $data eq '0';
a1b7d579 1384
b3c2bdd1
DM
1385 $data = $confdesc->{hotplug}->{default} if $data eq '1';
1386
45827685 1387 foreach my $feature (PVE::Tools::split_list($data)) {
94ec5e7c 1388 if ($feature =~ m/^(network|disk|cpu|memory|usb|cloudinit)$/) {
b3c2bdd1
DM
1389 $res->{$1} = 1;
1390 } else {
596a0a20 1391 die "invalid hotplug feature '$feature'\n";
b3c2bdd1
DM
1392 }
1393 }
1394 return $res;
1395}
1396
1397PVE::JSONSchema::register_format('pve-hotplug-features', \&pve_verify_hotplug_features);
1398sub pve_verify_hotplug_features {
1399 my ($value, $noerr) = @_;
1400
1401 return $value if parse_hotplug_features($value);
1402
d1c1af4b 1403 return if $noerr;
b3c2bdd1
DM
1404
1405 die "unable to parse hotplug option\n";
1406}
1407
28ef82d3
DM
1408sub scsi_inquiry {
1409 my($fh, $noerr) = @_;
1410
1411 my $SG_IO = 0x2285;
1412 my $SG_GET_VERSION_NUM = 0x2282;
1413
1414 my $versionbuf = "\x00" x 8;
1415 my $ret = ioctl($fh, $SG_GET_VERSION_NUM, $versionbuf);
1416 if (!$ret) {
1417 die "scsi ioctl SG_GET_VERSION_NUM failoed - $!\n" if !$noerr;
d1c1af4b 1418 return;
28ef82d3 1419 }
97d62eb7 1420 my $version = unpack("I", $versionbuf);
28ef82d3
DM
1421 if ($version < 30000) {
1422 die "scsi generic interface too old\n" if !$noerr;
d1c1af4b 1423 return;
28ef82d3 1424 }
97d62eb7 1425
28ef82d3
DM
1426 my $buf = "\x00" x 36;
1427 my $sensebuf = "\x00" x 8;
f334aa3e 1428 my $cmd = pack("C x3 C x1", 0x12, 36);
97d62eb7 1429
28ef82d3
DM
1430 # see /usr/include/scsi/sg.h
1431 my $sg_io_hdr_t = "i i C C s I P P P I I i P C C C C S S i I I";
1432
f606d5bd
TL
1433 my $packet = pack(
1434 $sg_io_hdr_t, ord('S'), -3, length($cmd), length($sensebuf), 0, length($buf), $buf, $cmd, $sensebuf, 6000
1435 );
28ef82d3
DM
1436
1437 $ret = ioctl($fh, $SG_IO, $packet);
1438 if (!$ret) {
1439 die "scsi ioctl SG_IO failed - $!\n" if !$noerr;
d1c1af4b 1440 return;
28ef82d3 1441 }
97d62eb7 1442
28ef82d3
DM
1443 my @res = unpack($sg_io_hdr_t, $packet);
1444 if ($res[17] || $res[18]) {
1445 die "scsi ioctl SG_IO status error - $!\n" if !$noerr;
d1c1af4b 1446 return;
28ef82d3
DM
1447 }
1448
1449 my $res = {};
f606d5bd 1450 $res->@{qw(type removable vendor product revision)} = unpack("C C x6 A8 A16 A4", $buf);
28ef82d3 1451
f606d5bd
TL
1452 $res->{removable} = $res->{removable} & 128 ? 1 : 0;
1453 $res->{type} &= 0x1F;
09984754 1454
28ef82d3
DM
1455 return $res;
1456}
1457
1458sub path_is_scsi {
1459 my ($path) = @_;
1460
d1c1af4b 1461 my $fh = IO::File->new("+<$path") || return;
28ef82d3
DM
1462 my $res = scsi_inquiry($fh, 1);
1463 close($fh);
1464
1465 return $res;
1466}
1467
db656e5f 1468sub print_tabletdevice_full {
d559309f 1469 my ($conf, $arch) = @_;
b467f79a 1470
3392d6ca 1471 my $q35 = PVE::QemuServer::Machine::machine_type_is_q35($conf);
db656e5f
DM
1472
1473 # we use uhci for old VMs because tablet driver was buggy in older qemu
d559309f 1474 my $usbbus;
2b938c7d 1475 if ($q35 || $arch eq 'aarch64') {
d559309f
WB
1476 $usbbus = 'ehci';
1477 } else {
1478 $usbbus = 'uhci';
1479 }
b467f79a 1480
db656e5f
DM
1481 return "usb-tablet,id=tablet,bus=$usbbus.0,port=1";
1482}
1483
d559309f 1484sub print_keyboarddevice_full {
6971c38e 1485 my ($conf, $arch) = @_;
d559309f 1486
d1c1af4b 1487 return if $arch ne 'aarch64';
d559309f
WB
1488
1489 return "usb-kbd,id=keyboard,bus=ehci.0,port=2";
1490}
1491
a183df68
TL
1492my sub get_drive_id {
1493 my ($drive) = @_;
1494 return "$drive->{interface}$drive->{index}";
1495}
1496
ca916ecc 1497sub print_drivedevice_full {
d559309f 1498 my ($storecfg, $conf, $vmid, $drive, $bridges, $arch, $machine_type) = @_;
ca916ecc
DA
1499
1500 my $device = '';
1501 my $maxdev = 0;
19672434 1502
a183df68 1503 my $drive_id = get_drive_id($drive);
ca916ecc 1504 if ($drive->{interface} eq 'virtio') {
4df98f2f
TL
1505 my $pciaddr = print_pci_addr("$drive_id", $bridges, $arch, $machine_type);
1506 $device = "virtio-blk-pci,drive=drive-$drive_id,id=${drive_id}${pciaddr}";
1507 $device .= ",iothread=iothread-$drive_id" if $drive->{iothread};
2ed36a41 1508 } elsif ($drive->{interface} eq 'scsi') {
6731a4cf 1509
ee034f5c 1510 my ($maxdev, $controller, $controller_prefix) = scsihw_infos($conf, $drive);
2ed36a41
DM
1511 my $unit = $drive->{index} % $maxdev;
1512 my $devicetype = 'hd';
69bcf246
WB
1513 my $path = '';
1514 if (drive_is_cdrom($drive)) {
1515 $devicetype = 'cd';
29b19529 1516 } else {
69bcf246
WB
1517 if ($drive->{file} =~ m|^/|) {
1518 $path = $drive->{file};
1519 if (my $info = path_is_scsi($path)) {
8e3c33ab 1520 if ($info->{type} == 0 && $drive->{scsiblock}) {
69bcf246
WB
1521 $devicetype = 'block';
1522 } elsif ($info->{type} == 1) { # tape
1523 $devicetype = 'generic';
1524 }
1525 }
1526 } else {
1527 $path = PVE::Storage::path($storecfg, $drive->{file});
1528 }
1529
a034e3d6 1530 # for compatibility only, we prefer scsi-hd (#2408, #2355, #2380)
4df98f2f 1531 my $version = extract_version($machine_type, kvm_user_version());
a034e3d6 1532 if ($path =~ m/^iscsi\:\/\// &&
2ea5fb7e 1533 !min_version($version, 4, 1)) {
69bcf246
WB
1534 $devicetype = 'generic';
1535 }
1536 }
1537
ef88eaaa 1538 if (!$conf->{scsihw} || $conf->{scsihw} =~ m/^lsi/ || $conf->{scsihw} eq 'pvscsi') {
4df98f2f 1539 $device = "scsi-$devicetype,bus=$controller_prefix$controller.0,scsi-id=$unit";
69bcf246 1540 } else {
4df98f2f
TL
1541 $device = "scsi-$devicetype,bus=$controller_prefix$controller.0,channel=0,scsi-id=0"
1542 .",lun=$drive->{index}";
69bcf246 1543 }
4df98f2f 1544 $device .= ",drive=drive-$drive_id,id=$drive_id";
cdd20088 1545
6c875f9f
NC
1546 if ($drive->{ssd} && ($devicetype eq 'block' || $devicetype eq 'hd')) {
1547 $device .= ",rotation_rate=1";
1548 }
e741c516 1549 $device .= ",wwn=$drive->{wwn}" if $drive->{wwn};
6c875f9f
NC
1550
1551 } elsif ($drive->{interface} eq 'ide' || $drive->{interface} eq 'sata') {
e0fd2b2f 1552 my $maxdev = ($drive->{interface} eq 'sata') ? $PVE::QemuServer::Drive::MAX_SATA_DISKS : 2;
2ed36a41
DM
1553 my $controller = int($drive->{index} / $maxdev);
1554 my $unit = $drive->{index} % $maxdev;
1555 my $devicetype = ($drive->{media} && $drive->{media} eq 'cdrom') ? "cd" : "hd";
1556
6c875f9f
NC
1557 $device = "ide-$devicetype";
1558 if ($drive->{interface} eq 'ide') {
1559 $device .= ",bus=ide.$controller,unit=$unit";
1560 } else {
1561 $device .= ",bus=ahci$controller.$unit";
1562 }
4df98f2f 1563 $device .= ",drive=drive-$drive_id,id=$drive_id";
6c875f9f
NC
1564
1565 if ($devicetype eq 'hd') {
1566 if (my $model = $drive->{model}) {
1567 $model = URI::Escape::uri_unescape($model);
1568 $device .= ",model=$model";
1569 }
1570 if ($drive->{ssd}) {
1571 $device .= ",rotation_rate=1";
1572 }
0f2812c2 1573 }
e741c516 1574 $device .= ",wwn=$drive->{wwn}" if $drive->{wwn};
2ed36a41
DM
1575 } elsif ($drive->{interface} eq 'usb') {
1576 die "implement me";
1577 # -device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0
1578 } else {
1579 die "unsupported interface type";
ca916ecc
DA
1580 }
1581
3b408e82
DM
1582 $device .= ",bootindex=$drive->{bootindex}" if $drive->{bootindex};
1583
a70e7e6c
TL
1584 if (my $serial = $drive->{serial}) {
1585 $serial = URI::Escape::uri_unescape($serial);
1586 $device .= ",serial=$serial";
1587 }
1588
1589
ca916ecc
DA
1590 return $device;
1591}
1592
15b21acc 1593sub get_initiator_name {
46f58b5f 1594 my $initiator;
15b21acc 1595
d1c1af4b 1596 my $fh = IO::File->new('/etc/iscsi/initiatorname.iscsi') || return;
46f58b5f
DM
1597 while (defined(my $line = <$fh>)) {
1598 next if $line !~ m/^\s*InitiatorName\s*=\s*([\.\-:\w]+)/;
15b21acc
MR
1599 $initiator = $1;
1600 last;
1601 }
46f58b5f
DM
1602 $fh->close();
1603
15b21acc
MR
1604 return $initiator;
1605}
1606
eec9f9fe
FE
1607my sub storage_allows_io_uring_default {
1608 my ($scfg, $cache_direct) = @_;
1609
1610 # io_uring with cache mode writeback or writethrough on krbd will hang...
1611 return if $scfg && $scfg->{type} eq 'rbd' && $scfg->{krbd} && !$cache_direct;
1612
1613 # io_uring with cache mode writeback or writethrough on LVM will hang, without cache only
1614 # sometimes, just plain disable...
1615 return if $scfg && $scfg->{type} eq 'lvm';
1616
1617 # io_uring causes problems when used with CIFS since kernel 5.15
1618 # Some discussion: https://www.spinics.net/lists/linux-cifs/msg26734.html
1619 return if $scfg && $scfg->{type} eq 'cifs';
1620
1621 return 1;
1622}
1623
b7071d6c
FE
1624my sub drive_uses_cache_direct {
1625 my ($drive, $scfg) = @_;
1626
1627 my $cache_direct = 0;
1628
1629 if (my $cache = $drive->{cache}) {
1630 $cache_direct = $cache =~ /^(?:off|none|directsync)$/;
1631 } elsif (!drive_is_cdrom($drive) && !($scfg && $scfg->{type} eq 'btrfs' && !$scfg->{nocow})) {
1632 $cache_direct = 1;
1633 }
1634
1635 return $cache_direct;
1636}
1637
776c5f50 1638sub print_drive_commandline_full {
6d5673c3 1639 my ($storecfg, $vmid, $drive, $pbs_name, $io_uring) = @_;
1e3baf05 1640
d81f0f09
DM
1641 my $path;
1642 my $volid = $drive->{file};
5921764c 1643 my $format = $drive->{format};
a183df68 1644 my $drive_id = get_drive_id($drive);
370b05e7 1645
0fe779a6
WB
1646 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1647 my $scfg = $storeid ? PVE::Storage::storage_config($storecfg, $storeid) : undef;
1648
d81f0f09
DM
1649 if (drive_is_cdrom($drive)) {
1650 $path = get_iso_path($storecfg, $vmid, $volid);
a183df68 1651 die "$drive_id: cannot back cdrom drive with PBS snapshot\n" if $pbs_name;
d81f0f09 1652 } else {
d81f0f09
DM
1653 if ($storeid) {
1654 $path = PVE::Storage::path($storecfg, $volid);
5921764c 1655 $format //= qemu_img_format($scfg, $volname);
d81f0f09
DM
1656 } else {
1657 $path = $volid;
5921764c 1658 $format //= "raw";
d81f0f09
DM
1659 }
1660 }
1661
5921764c
SR
1662 my $is_rbd = $path =~ m/^rbd:/;
1663
1e3baf05 1664 my $opts = '';
5921764c 1665 my @qemu_drive_options = qw(heads secs cyls trans media cache rerror werror aio discard);
1e3baf05 1666 foreach my $o (@qemu_drive_options) {
5fc74861 1667 $opts .= ",$o=$drive->{$o}" if defined($drive->{$o});
19672434 1668 }
8a267708
DC
1669
1670 # snapshot only accepts on|off
1671 if (defined($drive->{snapshot})) {
1672 my $v = $drive->{snapshot} ? 'on' : 'off';
1673 $opts .= ",snapshot=$v";
1674 }
1675
1f91f7b4
TL
1676 if (defined($drive->{ro})) { # ro maps to QEMUs `readonly`, which accepts `on` or `off` only
1677 $opts .= ",readonly=" . ($drive->{ro} ? 'on' : 'off');
12e1d472
DC
1678 }
1679
fb8e95a2
WB
1680 foreach my $type (['', '-total'], [_rd => '-read'], [_wr => '-write']) {
1681 my ($dir, $qmpname) = @$type;
1682 if (my $v = $drive->{"mbps$dir"}) {
1683 $opts .= ",throttling.bps$qmpname=".int($v*1024*1024);
1684 }
1685 if (my $v = $drive->{"mbps${dir}_max"}) {
1686 $opts .= ",throttling.bps$qmpname-max=".int($v*1024*1024);
1687 }
1688 if (my $v = $drive->{"bps${dir}_max_length"}) {
1689 $opts .= ",throttling.bps$qmpname-max-length=$v";
1690 }
1691 if (my $v = $drive->{"iops${dir}"}) {
1692 $opts .= ",throttling.iops$qmpname=$v";
1693 }
1694 if (my $v = $drive->{"iops${dir}_max"}) {
8aca1654 1695 $opts .= ",throttling.iops$qmpname-max=$v";
fb8e95a2
WB
1696 }
1697 if (my $v = $drive->{"iops${dir}_max_length"}) {
8aca1654 1698 $opts .= ",throttling.iops$qmpname-max-length=$v";
fb8e95a2
WB
1699 }
1700 }
1701
5921764c
SR
1702 if ($pbs_name) {
1703 $format = "rbd" if $is_rbd;
a183df68
TL
1704 die "$drive_id: Proxmox Backup Server backed drive cannot auto-detect the format\n"
1705 if !$format;
5921764c
SR
1706 $opts .= ",format=alloc-track,file.driver=$format";
1707 } elsif ($format) {
1708 $opts .= ",format=$format";
1709 }
d81f0f09 1710
b7071d6c 1711 my $cache_direct = drive_uses_cache_direct($drive, $scfg);
b2ee900e 1712
b7071d6c 1713 $opts .= ",cache=none" if !$drive->{cache} && $cache_direct;
b2ee900e 1714
b2ee900e 1715 if (!$drive->{aio}) {
eec9f9fe 1716 if ($io_uring && storage_allows_io_uring_default($scfg, $cache_direct)) {
6d5673c3
SR
1717 # io_uring supports all cache modes
1718 $opts .= ",aio=io_uring";
b2ee900e 1719 } else {
6d5673c3
SR
1720 # aio native works only with O_DIRECT
1721 if($cache_direct) {
1722 $opts .= ",aio=native";
1723 } else {
1724 $opts .= ",aio=threads";
1725 }
b2ee900e
WB
1726 }
1727 }
11490cf2 1728
6e47c3b4
WB
1729 if (!drive_is_cdrom($drive)) {
1730 my $detectzeroes;
7d4e30f3 1731 if (defined($drive->{detect_zeroes}) && !$drive->{detect_zeroes}) {
6e47c3b4
WB
1732 $detectzeroes = 'off';
1733 } elsif ($drive->{discard}) {
1734 $detectzeroes = $drive->{discard} eq 'on' ? 'unmap' : 'on';
1735 } else {
1736 # This used to be our default with discard not being specified:
1737 $detectzeroes = 'on';
1738 }
5921764c
SR
1739
1740 # note: 'detect-zeroes' works per blockdev and we want it to persist
1741 # after the alloc-track is removed, so put it on 'file' directly
1742 my $dz_param = $pbs_name ? "file.detect-zeroes" : "detect-zeroes";
1743 $opts .= ",$dz_param=$detectzeroes" if $detectzeroes;
6e47c3b4 1744 }
f1e05305 1745
5921764c
SR
1746 if ($pbs_name) {
1747 $opts .= ",backing=$pbs_name";
1748 $opts .= ",auto-remove=on";
1749 }
1750
1751 # my $file_param = $pbs_name ? "file.file.filename" : "file";
1752 my $file_param = "file";
1753 if ($pbs_name) {
1754 # non-rbd drivers require the underlying file to be a seperate block
1755 # node, so add a second .file indirection
1756 $file_param .= ".file" if !$is_rbd;
1757 $file_param .= ".filename";
1758 }
1759 my $pathinfo = $path ? "$file_param=$path," : '';
1e3baf05 1760
3ebfcc86 1761 return "${pathinfo}if=none,id=drive-$drive->{interface}$drive->{index}$opts";
1e3baf05
DM
1762}
1763
5921764c
SR
1764sub print_pbs_blockdev {
1765 my ($pbs_conf, $pbs_name) = @_;
1766 my $blockdev = "driver=pbs,node-name=$pbs_name,read-only=on";
1767 $blockdev .= ",repository=$pbs_conf->{repository}";
2dda626d 1768 $blockdev .= ",namespace=$pbs_conf->{namespace}" if $pbs_conf->{namespace};
5921764c
SR
1769 $blockdev .= ",snapshot=$pbs_conf->{snapshot}";
1770 $blockdev .= ",archive=$pbs_conf->{archive}";
1771 $blockdev .= ",keyfile=$pbs_conf->{keyfile}" if $pbs_conf->{keyfile};
1772 return $blockdev;
1773}
1774
cc4d6182 1775sub print_netdevice_full {
0c03a390 1776 my ($vmid, $conf, $net, $netid, $bridges, $use_old_bios_files, $arch, $machine_type, $machine_version) = @_;
cc4d6182 1777
cc4d6182
DA
1778 my $device = $net->{model};
1779 if ($net->{model} eq 'virtio') {
1780 $device = 'virtio-net-pci';
1781 };
1782
d559309f 1783 my $pciaddr = print_pci_addr("$netid", $bridges, $arch, $machine_type);
5e2068d2 1784 my $tmpstr = "$device,mac=$net->{macaddr},netdev=$netid$pciaddr,id=$netid";
a9410357 1785 if ($net->{queues} && $net->{queues} > 1 && $net->{model} eq 'virtio'){
4df98f2f
TL
1786 # Consider we have N queues, the number of vectors needed is 2 * N + 2, i.e., one per in
1787 # and out of each queue plus one config interrupt and control vector queue
a9410357
AD
1788 my $vectors = $net->{queues} * 2 + 2;
1789 $tmpstr .= ",vectors=$vectors,mq=on";
0c03a390
AD
1790 if (min_version($machine_version, 7, 1)) {
1791 $tmpstr .= ",packed=on";
1792 }
a9410357 1793 }
620d6b32
AD
1794
1795 if (min_version($machine_version, 7, 1) && $net->{model} eq 'virtio'){
1796 $tmpstr .= ",rx_queue_size=1024,tx_queue_size=1024";
1797 }
1798
cc4d6182 1799 $tmpstr .= ",bootindex=$net->{bootindex}" if $net->{bootindex} ;
ba9e1000 1800
0530177b
TL
1801 if (my $mtu = $net->{mtu}) {
1802 if ($net->{model} eq 'virtio' && $net->{bridge}) {
1803 my $bridge_mtu = PVE::Network::read_bridge_mtu($net->{bridge});
1804 if ($mtu == 1) {
1805 $mtu = $bridge_mtu;
1806 } elsif ($mtu < 576) {
1807 die "netdev $netid: MTU '$mtu' is smaller than the IP minimum MTU '576'\n";
1808 } elsif ($mtu > $bridge_mtu) {
1809 die "netdev $netid: MTU '$mtu' is bigger than the bridge MTU '$bridge_mtu'\n";
1810 }
1811 $tmpstr .= ",host_mtu=$mtu";
1812 } else {
1813 warn "WARN: netdev $netid: ignoring MTU '$mtu', not using VirtIO or no bridge configured.\n";
61a14cde 1814 }
61a14cde
AD
1815 }
1816
ba9e1000
DM
1817 if ($use_old_bios_files) {
1818 my $romfile;
1819 if ($device eq 'virtio-net-pci') {
1820 $romfile = 'pxe-virtio.rom';
1821 } elsif ($device eq 'e1000') {
1822 $romfile = 'pxe-e1000.rom';
e83dd50a
TL
1823 } elsif ($device eq 'e1000e') {
1824 $romfile = 'pxe-e1000e.rom';
ba9e1000
DM
1825 } elsif ($device eq 'ne2k') {
1826 $romfile = 'pxe-ne2k_pci.rom';
1827 } elsif ($device eq 'pcnet') {
1828 $romfile = 'pxe-pcnet.rom';
1829 } elsif ($device eq 'rtl8139') {
1830 $romfile = 'pxe-rtl8139.rom';
1831 }
1832 $tmpstr .= ",romfile=$romfile" if $romfile;
1833 }
1834
cc4d6182
DA
1835 return $tmpstr;
1836}
1837
1838sub print_netdev_full {
d559309f 1839 my ($vmid, $conf, $arch, $net, $netid, $hotplug) = @_;
cc4d6182
DA
1840
1841 my $i = '';
1842 if ($netid =~ m/^net(\d+)$/) {
1843 $i = int($1);
1844 }
1845
1846 die "got strange net id '$i'\n" if $i >= ${MAX_NETS};
1847
1848 my $ifname = "tap${vmid}i$i";
1849
1850 # kvm uses TUNSETIFF ioctl, and that limits ifname length
1851 die "interface name '$ifname' is too long (max 15 character)\n"
1852 if length($ifname) >= 16;
1853
1854 my $vhostparam = '';
6f0cb675 1855 if (is_native($arch)) {
db70021b 1856 $vhostparam = ',vhost=on' if kernel_has_vhost_net() && $net->{model} eq 'virtio';
6f0cb675 1857 }
cc4d6182
DA
1858
1859 my $vmname = $conf->{name} || "vm$vmid";
1860
a9410357 1861 my $netdev = "";
208ba94e 1862 my $script = $hotplug ? "pve-bridge-hotplug" : "pve-bridge";
a9410357 1863
cc4d6182 1864 if ($net->{bridge}) {
4df98f2f
TL
1865 $netdev = "type=tap,id=$netid,ifname=${ifname},script=/var/lib/qemu-server/$script"
1866 .",downscript=/var/lib/qemu-server/pve-bridgedown$vhostparam";
cc4d6182 1867 } else {
a9410357 1868 $netdev = "type=user,id=$netid,hostname=$vmname";
cc4d6182 1869 }
a9410357
AD
1870
1871 $netdev .= ",queues=$net->{queues}" if ($net->{queues} && $net->{model} eq 'virtio');
1872
1873 return $netdev;
cc4d6182 1874}
1e3baf05 1875
55655ebc
DC
1876my $vga_map = {
1877 'cirrus' => 'cirrus-vga',
1878 'std' => 'VGA',
1879 'vmware' => 'vmware-svga',
1880 'virtio' => 'virtio-vga',
6f070e39 1881 'virtio-gl' => 'virtio-vga-gl',
55655ebc
DC
1882};
1883
1884sub print_vga_device {
2ea5fb7e 1885 my ($conf, $vga, $arch, $machine_version, $machine, $id, $qxlnum, $bridges) = @_;
55655ebc
DC
1886
1887 my $type = $vga_map->{$vga->{type}};
86c9fafe 1888 if ($arch eq 'aarch64' && defined($type) && $type eq 'virtio-vga') {
d559309f
WB
1889 $type = 'virtio-gpu';
1890 }
55655ebc 1891 my $vgamem_mb = $vga->{memory};
6021c7a5
AL
1892
1893 my $max_outputs = '';
55655ebc
DC
1894 if ($qxlnum) {
1895 $type = $id ? 'qxl' : 'qxl-vga';
6021c7a5 1896
c5a4c92c 1897 if (!$conf->{ostype} || $conf->{ostype} =~ m/^(?:l\d\d)|(?:other)$/) {
6021c7a5 1898 # set max outputs so linux can have up to 4 qxl displays with one device
2ea5fb7e 1899 if (min_version($machine_version, 4, 1)) {
9e8976ea
TL
1900 $max_outputs = ",max_outputs=4";
1901 }
6021c7a5 1902 }
55655ebc 1903 }
6021c7a5 1904
55655ebc
DC
1905 die "no devicetype for $vga->{type}\n" if !$type;
1906
1907 my $memory = "";
1908 if ($vgamem_mb) {
6f070e39 1909 if ($vga->{type} =~ /^virtio/) {
55655ebc
DC
1910 my $bytes = PVE::Tools::convert_size($vgamem_mb, "mb" => "b");
1911 $memory = ",max_hostmem=$bytes";
1912 } elsif ($qxlnum) {
1913 # from https://www.spice-space.org/multiple-monitors.html
1914 $memory = ",vgamem_mb=$vga->{memory}";
1915 my $ram = $vgamem_mb * 4;
1916 my $vram = $vgamem_mb * 2;
1917 $memory .= ",ram_size_mb=$ram,vram_size_mb=$vram";
1918 } else {
1919 $memory = ",vgamem_mb=$vga->{memory}";
1920 }
1921 } elsif ($qxlnum && $id) {
1922 $memory = ",ram_size=67108864,vram_size=33554432";
1923 }
1924
789fe8e8
AL
1925 my $edidoff = "";
1926 if ($type eq 'VGA' && windows_version($conf->{ostype})) {
b5d32c6b 1927 $edidoff=",edid=off" if (!defined($conf->{bios}) || $conf->{bios} ne 'ovmf');
789fe8e8
AL
1928 }
1929
3392d6ca 1930 my $q35 = PVE::QemuServer::Machine::machine_type_is_q35($conf);
55655ebc
DC
1931 my $vgaid = "vga" . ($id // '');
1932 my $pciaddr;
1933 if ($q35 && $vgaid eq 'vga') {
daadd5a4 1934 # the first display uses pcie.0 bus on q35 machines
d559309f 1935 $pciaddr = print_pcie_addr($vgaid, $bridges, $arch, $machine);
55655ebc 1936 } else {
d559309f 1937 $pciaddr = print_pci_addr($vgaid, $bridges, $arch, $machine);
55655ebc
DC
1938 }
1939
9f979d9f 1940 if ($vga->{type} eq 'virtio-gl') {
8884a8bf
TL
1941 my $base = '/usr/lib/x86_64-linux-gnu/lib';
1942 die "missing libraries for '$vga->{type}' detected! Please install 'libgl1' and 'libegl1'\n"
1943 if !-e "${base}EGL.so.1" || !-e "${base}GL.so.1";
9f979d9f 1944
8884a8bf
TL
1945 die "no DRM render node detected (/dev/dri/renderD*), no GPU? - needed for '$vga->{type}' display\n"
1946 if !PVE::Tools::dir_glob_regex('/dev/dri/', "renderD.*");
9f979d9f
SI
1947 }
1948
789fe8e8 1949 return "$type,id=${vgaid}${memory}${max_outputs}${pciaddr}${edidoff}";
55655ebc
DC
1950}
1951
ffc0d8c7
WB
1952sub parse_number_sets {
1953 my ($set) = @_;
1954 my $res = [];
1955 foreach my $part (split(/;/, $set)) {
1956 if ($part =~ /^\s*(\d+)(?:-(\d+))?\s*$/) {
1957 die "invalid range: $part ($2 < $1)\n" if defined($2) && $2 < $1;
1958 push @$res, [ $1, $2 ];
2ed5d572 1959 } else {
ffc0d8c7 1960 die "invalid range: $part\n";
2ed5d572
AD
1961 }
1962 }
ffc0d8c7
WB
1963 return $res;
1964}
2ed5d572 1965
ffc0d8c7
WB
1966sub parse_numa {
1967 my ($data) = @_;
1968
4df98f2f 1969 my $res = parse_property_string($numa_fmt, $data);
ffc0d8c7
WB
1970 $res->{cpus} = parse_number_sets($res->{cpus}) if defined($res->{cpus});
1971 $res->{hostnodes} = parse_number_sets($res->{hostnodes}) if defined($res->{hostnodes});
2ed5d572
AD
1972 return $res;
1973}
1974
1e3baf05
DM
1975# netX: e1000=XX:XX:XX:XX:XX:XX,bridge=vmbr0,rate=<mbps>
1976sub parse_net {
4ddd2ca2 1977 my ($data, $disable_mac_autogen) = @_;
1e3baf05 1978
4df98f2f 1979 my $res = eval { parse_property_string($net_fmt, $data) };
cd9c34d1
WB
1980 if ($@) {
1981 warn $@;
d1c1af4b 1982 return;
1e3baf05 1983 }
4ddd2ca2 1984 if (!defined($res->{macaddr}) && !$disable_mac_autogen) {
b5b99790
WB
1985 my $dc = PVE::Cluster::cfs_read_file('datacenter.cfg');
1986 $res->{macaddr} = PVE::Tools::random_ether_addr($dc->{mac_prefix});
1987 }
0c9a7596
AD
1988 return $res;
1989}
1990
1991# ipconfigX ip=cidr,gw=ip,ip6=cidr,gw6=ip
1992sub parse_ipconfig {
1993 my ($data) = @_;
1994
4df98f2f 1995 my $res = eval { parse_property_string($ipconfig_fmt, $data) };
0c9a7596
AD
1996 if ($@) {
1997 warn $@;
d1c1af4b 1998 return;
0c9a7596
AD
1999 }
2000
2001 if ($res->{gw} && !$res->{ip}) {
2002 warn 'gateway specified without specifying an IP address';
d1c1af4b 2003 return;
0c9a7596
AD
2004 }
2005 if ($res->{gw6} && !$res->{ip6}) {
2006 warn 'IPv6 gateway specified without specifying an IPv6 address';
d1c1af4b 2007 return;
0c9a7596
AD
2008 }
2009 if ($res->{gw} && $res->{ip} eq 'dhcp') {
2010 warn 'gateway specified together with DHCP';
d1c1af4b 2011 return;
0c9a7596
AD
2012 }
2013 if ($res->{gw6} && $res->{ip6} !~ /^$IPV6RE/) {
2014 # gw6 + auto/dhcp
2015 warn "IPv6 gateway specified together with $res->{ip6} address";
d1c1af4b 2016 return;
0c9a7596
AD
2017 }
2018
2019 if (!$res->{ip} && !$res->{ip6}) {
2020 return { ip => 'dhcp', ip6 => 'dhcp' };
2021 }
2022
1e3baf05
DM
2023 return $res;
2024}
2025
2026sub print_net {
2027 my $net = shift;
2028
cd9c34d1 2029 return PVE::JSONSchema::print_property_string($net, $net_fmt);
1e3baf05
DM
2030}
2031
2032sub add_random_macs {
2033 my ($settings) = @_;
2034
2035 foreach my $opt (keys %$settings) {
2036 next if $opt !~ m/^net(\d+)$/;
2037 my $net = parse_net($settings->{$opt});
2038 next if !$net;
2039 $settings->{$opt} = print_net($net);
2040 }
2041}
2042
055d554d
DM
2043sub vm_is_volid_owner {
2044 my ($storecfg, $vmid, $volid) = @_;
2045
2046 if ($volid !~ m|^/|) {
2047 my ($path, $owner);
2048 eval { ($path, $owner) = PVE::Storage::path($storecfg, $volid); };
2049 if ($owner && ($owner == $vmid)) {
2050 return 1;
2051 }
2052 }
2053
d1c1af4b 2054 return;
055d554d
DM
2055}
2056
055d554d
DM
2057sub vmconfig_register_unused_drive {
2058 my ($storecfg, $vmid, $conf, $drive) = @_;
2059
2d9ddec5
WB
2060 if (drive_is_cloudinit($drive)) {
2061 eval { PVE::Storage::vdisk_free($storecfg, $drive->{file}) };
2062 warn $@ if $@;
95a5135d 2063 delete $conf->{cloudinit};
2d9ddec5 2064 } elsif (!drive_is_cdrom($drive)) {
055d554d
DM
2065 my $volid = $drive->{file};
2066 if (vm_is_volid_owner($storecfg, $vmid, $volid)) {
8793d495 2067 PVE::QemuConfig->add_unused_volume($conf, $volid, $vmid);
055d554d
DM
2068 }
2069 }
2070}
2071
1f30ac3a 2072# smbios: [manufacturer=str][,product=str][,version=str][,serial=str][,uuid=uuid][,sku=str][,family=str][,base64=bool]
ff6ffe20 2073my $smbios1_fmt = {
bd27e851
WB
2074 uuid => {
2075 type => 'string',
2076 pattern => '[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}',
2077 format_description => 'UUID',
52261945 2078 description => "Set SMBIOS1 UUID.",
bd27e851
WB
2079 optional => 1,
2080 },
2081 version => {
2082 type => 'string',
1f30ac3a
CE
2083 pattern => '[A-Za-z0-9+\/]+={0,2}',
2084 format_description => 'Base64 encoded string',
52261945 2085 description => "Set SMBIOS1 version.",
bd27e851
WB
2086 optional => 1,
2087 },
2088 serial => {
2089 type => 'string',
1f30ac3a
CE
2090 pattern => '[A-Za-z0-9+\/]+={0,2}',
2091 format_description => 'Base64 encoded string',
52261945 2092 description => "Set SMBIOS1 serial number.",
bd27e851
WB
2093 optional => 1,
2094 },
2095 manufacturer => {
2096 type => 'string',
1f30ac3a
CE
2097 pattern => '[A-Za-z0-9+\/]+={0,2}',
2098 format_description => 'Base64 encoded string',
52261945 2099 description => "Set SMBIOS1 manufacturer.",
bd27e851
WB
2100 optional => 1,
2101 },
2102 product => {
2103 type => 'string',
1f30ac3a
CE
2104 pattern => '[A-Za-z0-9+\/]+={0,2}',
2105 format_description => 'Base64 encoded string',
52261945 2106 description => "Set SMBIOS1 product ID.",
bd27e851
WB
2107 optional => 1,
2108 },
2109 sku => {
2110 type => 'string',
1f30ac3a
CE
2111 pattern => '[A-Za-z0-9+\/]+={0,2}',
2112 format_description => 'Base64 encoded string',
52261945 2113 description => "Set SMBIOS1 SKU string.",
bd27e851
WB
2114 optional => 1,
2115 },
2116 family => {
2117 type => 'string',
1f30ac3a
CE
2118 pattern => '[A-Za-z0-9+\/]+={0,2}',
2119 format_description => 'Base64 encoded string',
52261945 2120 description => "Set SMBIOS1 family string.",
bd27e851
WB
2121 optional => 1,
2122 },
1f30ac3a
CE
2123 base64 => {
2124 type => 'boolean',
2125 description => 'Flag to indicate that the SMBIOS values are base64 encoded',
2126 optional => 1,
2127 },
2796e7d5
DM
2128};
2129
2796e7d5
DM
2130sub parse_smbios1 {
2131 my ($data) = @_;
2132
4df98f2f 2133 my $res = eval { parse_property_string($smbios1_fmt, $data) };
bd27e851 2134 warn $@ if $@;
2796e7d5
DM
2135 return $res;
2136}
2137
cd11416f
DM
2138sub print_smbios1 {
2139 my ($smbios1) = @_;
ff6ffe20 2140 return PVE::JSONSchema::print_property_string($smbios1, $smbios1_fmt);
cd11416f
DM
2141}
2142
ff6ffe20 2143PVE::JSONSchema::register_format('pve-qm-smbios1', $smbios1_fmt);
2796e7d5 2144
0ea9541d
DM
2145sub parse_watchdog {
2146 my ($value) = @_;
2147
d1c1af4b 2148 return if !$value;
0ea9541d 2149
4df98f2f 2150 my $res = eval { parse_property_string($watchdog_fmt, $value) };
ec3582b5 2151 warn $@ if $@;
0ea9541d
DM
2152 return $res;
2153}
2154
9d66b397 2155sub parse_guest_agent {
a2af1bbe 2156 my ($conf) = @_;
9d66b397 2157
a2af1bbe 2158 return {} if !defined($conf->{agent});
9d66b397 2159
a2af1bbe 2160 my $res = eval { parse_property_string($agent_fmt, $conf->{agent}) };
9d66b397
SI
2161 warn $@ if $@;
2162
2163 # if the agent is disabled ignore the other potentially set properties
2164 return {} if !$res->{enabled};
2165 return $res;
2166}
2167
a2af1bbe
TL
2168sub get_qga_key {
2169 my ($conf, $key) = @_;
2170 return undef if !defined($conf->{agent});
2171
2172 my $agent = parse_guest_agent($conf);
2173 return $agent->{$key};
2174}
2175
55655ebc
DC
2176sub parse_vga {
2177 my ($value) = @_;
2178
2179 return {} if !$value;
4df98f2f 2180 my $res = eval { parse_property_string($vga_fmt, $value) };
55655ebc
DC
2181 warn $@ if $@;
2182 return $res;
2183}
2184
2cf61f33
SR
2185sub parse_rng {
2186 my ($value) = @_;
2187
d1c1af4b 2188 return if !$value;
2cf61f33 2189
4df98f2f 2190 my $res = eval { parse_property_string($rng_fmt, $value) };
2cf61f33
SR
2191 warn $@ if $@;
2192 return $res;
2193}
2194
26b443c8
TL
2195sub parse_meta_info {
2196 my ($value) = @_;
2197
2198 return if !$value;
2199
2200 my $res = eval { parse_property_string($meta_info_fmt, $value) };
2201 warn $@ if $@;
2202 return $res;
2203}
2204
2205sub new_meta_info_string {
2206 my () = @_; # for now do not allow to override any value
2207
2208 return PVE::JSONSchema::print_property_string(
2209 {
af2a1a1c 2210 'creation-qemu' => kvm_user_version(),
26b443c8
TL
2211 ctime => "". int(time()),
2212 },
2213 $meta_info_fmt
2214 );
2215}
2216
cc181036
TL
2217sub qemu_created_version_fixups {
2218 my ($conf, $forcemachine, $kvmver) = @_;
2219
2220 my $meta = parse_meta_info($conf->{meta}) // {};
2221 my $forced_vers = PVE::QemuServer::Machine::extract_version($forcemachine);
2222
2223 # check if we need to apply some handling for VMs that always use the latest machine version but
2224 # had a machine version transition happen that affected HW such that, e.g., an OS config change
2225 # would be required (we do not want to pin machine version for non-windows OS type)
2226 if (
2227 (!defined($conf->{machine}) || $conf->{machine} =~ m/^(?:pc|q35|virt)$/) # non-versioned machine
2228 && (!defined($meta->{'creation-qemu'}) || !min_version($meta->{'creation-qemu'}, 6, 1)) # created before 6.1
2229 && (!$forced_vers || min_version($forced_vers, 6, 1)) # handle snapshot-rollback/migrations
2230 && min_version($kvmver, 6, 1) # only need to apply the change since 6.1
2231 ) {
2232 my $q35 = PVE::QemuServer::Machine::machine_type_is_q35($conf);
2233 if ($q35 && $conf->{ostype} && $conf->{ostype} eq 'l26') {
2234 # this changed to default-on in Q 6.1 for q35 machines, it will mess with PCI slot view
2235 # and thus with the predictable interface naming of systemd
2236 return ['-global', 'ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off'];
2237 }
2238 }
2239 return;
2240}
2241
1e3baf05
DM
2242PVE::JSONSchema::register_format('pve-qm-usb-device', \&verify_usb_device);
2243sub verify_usb_device {
2244 my ($value, $noerr) = @_;
2245
2246 return $value if parse_usb_device($value);
2247
d1c1af4b 2248 return if $noerr;
19672434 2249
1e3baf05
DM
2250 die "unable to parse usb device\n";
2251}
2252
1e3baf05
DM
2253# add JSON properties for create and set function
2254sub json_config_properties {
c1accf9d 2255 my ($prop, $with_disk_alloc) = @_;
1e3baf05 2256
5a08fb9c
TL
2257 my $skip_json_config_opts = {
2258 parent => 1,
2259 snaptime => 1,
2260 vmstate => 1,
2261 runningmachine => 1,
2262 runningcpu => 1,
26b443c8 2263 meta => 1,
5a08fb9c
TL
2264 };
2265
1e3baf05 2266 foreach my $opt (keys %$confdesc) {
5a08fb9c 2267 next if $skip_json_config_opts->{$opt};
c1accf9d
FE
2268
2269 if ($with_disk_alloc && is_valid_drivename($opt)) {
2270 $prop->{$opt} = $PVE::QemuServer::Drive::drivedesc_hash_with_alloc->{$opt};
2271 } else {
2272 $prop->{$opt} = $confdesc->{$opt};
2273 }
1e3baf05
DM
2274 }
2275
2276 return $prop;
2277}
2278
39051ac0
FE
2279# Properties that we can read from an OVF file
2280sub json_ovf_properties {
2281 my $prop = {};
2282
2283 for my $device (PVE::QemuServer::Drive::valid_drive_names()) {
2284 $prop->{$device} = {
2285 type => 'string',
2286 format => 'pve-volume-id-or-absolute-path',
2287 description => "Disk image that gets imported to $device",
2288 optional => 1,
2289 };
2290 }
2291
2292 $prop->{cores} = {
2293 type => 'integer',
2294 description => "The number of CPU cores.",
2295 optional => 1,
2296 };
2297 $prop->{memory} = {
2298 type => 'integer',
2299 description => "Amount of RAM for the VM in MB.",
2300 optional => 1,
2301 };
2302 $prop->{name} = {
2303 type => 'string',
2304 description => "Name of the VM.",
2305 optional => 1,
2306 };
2307
2308 return $prop;
2309}
2310
d41121fd
DM
2311# return copy of $confdesc_cloudinit to generate documentation
2312sub cloudinit_config_properties {
2313
2314 return dclone($confdesc_cloudinit);
2315}
2316
f16cf6c3
WB
2317sub cloudinit_pending_properties {
2318 my $p = {
2319 map { $_ => 1 } keys $confdesc_cloudinit->%*,
2320 name => 1,
2321 };
2322 $p->{"net$_"} = 1 for 0..($MAX_NETS-1);
2323 return $p;
2324}
2325
1e3baf05
DM
2326sub check_type {
2327 my ($key, $value) = @_;
2328
2329 die "unknown setting '$key'\n" if !$confdesc->{$key};
2330
2331 my $type = $confdesc->{$key}->{type};
2332
6b64503e 2333 if (!defined($value)) {
1e3baf05
DM
2334 die "got undefined value\n";
2335 }
2336
2337 if ($value =~ m/[\n\r]/) {
2338 die "property contains a line feed\n";
2339 }
2340
2341 if ($type eq 'boolean') {
19672434
DM
2342 return 1 if ($value eq '1') || ($value =~ m/^(on|yes|true)$/i);
2343 return 0 if ($value eq '0') || ($value =~ m/^(off|no|false)$/i);
2344 die "type check ('boolean') failed - got '$value'\n";
1e3baf05
DM
2345 } elsif ($type eq 'integer') {
2346 return int($1) if $value =~ m/^(\d+)$/;
2347 die "type check ('integer') failed - got '$value'\n";
04432191
AD
2348 } elsif ($type eq 'number') {
2349 return $value if $value =~ m/^(\d+)(\.\d+)?$/;
2350 die "type check ('number') failed - got '$value'\n";
1e3baf05
DM
2351 } elsif ($type eq 'string') {
2352 if (my $fmt = $confdesc->{$key}->{format}) {
1e3baf05 2353 PVE::JSONSchema::check_format($fmt, $value);
19672434
DM
2354 return $value;
2355 }
1e3baf05 2356 $value =~ s/^\"(.*)\"$/$1/;
19672434 2357 return $value;
1e3baf05
DM
2358 } else {
2359 die "internal error"
2360 }
2361}
2362
1e3baf05 2363sub destroy_vm {
75854662 2364 my ($storecfg, $vmid, $skiplock, $replacement_conf, $purge_unreferenced) = @_;
1e3baf05 2365
ffda963f 2366 my $conf = PVE::QemuConfig->load_config($vmid);
1e3baf05 2367
30fdf99c
SH
2368 if (!$skiplock && !PVE::QemuConfig->has_lock($conf, 'suspended')) {
2369 PVE::QemuConfig->check_lock($conf);
2370 }
1e3baf05 2371
5e67a2d2
DC
2372 if ($conf->{template}) {
2373 # check if any base image is still used by a linked clone
3ab0f925 2374 PVE::QemuConfig->foreach_volume_full($conf, { include_unused => 1 }, sub {
5e67a2d2 2375 my ($ds, $drive) = @_;
5e67a2d2
DC
2376 return if drive_is_cdrom($drive);
2377
2378 my $volid = $drive->{file};
5e67a2d2
DC
2379 return if !$volid || $volid =~ m|^/|;
2380
2381 die "base volume '$volid' is still in use by linked cloned\n"
2382 if PVE::Storage::volume_is_base_and_used($storecfg, $volid);
2383
2384 });
2385 }
2386
3e07c6d5 2387 my $volids = {};
ba1a1984 2388 my $remove_owned_drive = sub {
1e3baf05 2389 my ($ds, $drive) = @_;
9c52f5ed 2390 return if drive_is_cdrom($drive, 1);
1e3baf05
DM
2391
2392 my $volid = $drive->{file};
ff1a2432 2393 return if !$volid || $volid =~ m|^/|;
3e07c6d5 2394 return if $volids->{$volid};
1e3baf05 2395
6b64503e 2396 my ($path, $owner) = PVE::Storage::path($storecfg, $volid);
ff1a2432 2397 return if !$path || !$owner || ($owner != $vmid);
1e3baf05 2398
3e07c6d5 2399 $volids->{$volid} = 1;
a2f50f01 2400 eval { PVE::Storage::vdisk_free($storecfg, $volid) };
31b52247 2401 warn "Could not remove disk '$volid', check manually: $@" if $@;
ba1a1984
FE
2402 };
2403
2404 # only remove disks owned by this VM (referenced in the config)
2405 my $include_opts = {
2406 include_unused => 1,
2407 extra_keys => ['vmstate'],
2408 };
2409 PVE::QemuConfig->foreach_volume_full($conf, $include_opts, $remove_owned_drive);
2410
2411 for my $snap (values %{$conf->{snapshots}}) {
2412 next if !defined($snap->{vmstate});
2413 my $drive = PVE::QemuConfig->parse_volume('vmstate', $snap->{vmstate}, 1);
2414 next if !defined($drive);
2415 $remove_owned_drive->('vmstate', $drive);
2416 }
19672434 2417
3e07c6d5
FG
2418 PVE::QemuConfig->foreach_volume_full($conf->{pending}, $include_opts, $remove_owned_drive);
2419
75854662 2420 if ($purge_unreferenced) { # also remove unreferenced disk
d0ff75d9 2421 my $vmdisks = PVE::Storage::vdisk_list($storecfg, undef, $vmid, undef, 'images');
75854662
TL
2422 PVE::Storage::foreach_volid($vmdisks, sub {
2423 my ($volid, $sid, $volname, $d) = @_;
2424 eval { PVE::Storage::vdisk_free($storecfg, $volid) };
2425 warn $@ if $@;
2426 });
2427 }
dfda979e 2428
b04ea584 2429 if (defined $replacement_conf) {
8baf8bc7 2430 PVE::QemuConfig->write_config($vmid, $replacement_conf);
dfda979e
DJ
2431 } else {
2432 PVE::QemuConfig->destroy_config($vmid);
2433 }
1e3baf05
DM
2434}
2435
1e3baf05 2436sub parse_vm_config {
ad5812d8 2437 my ($filename, $raw, $strict) = @_;
1e3baf05 2438
d1c1af4b 2439 return if !defined($raw);
1e3baf05 2440
554ac7e7 2441 my $res = {
fc1ddcdc 2442 digest => Digest::SHA::sha1_hex($raw),
0d18dcfc 2443 snapshots => {},
0d732d16 2444 pending => {},
95a5135d 2445 cloudinit => {},
554ac7e7 2446 };
1e3baf05 2447
ad5812d8
FG
2448 my $handle_error = sub {
2449 my ($msg) = @_;
2450
2451 if ($strict) {
2452 die $msg;
2453 } else {
2454 warn $msg;
2455 }
2456 };
2457
19672434 2458 $filename =~ m|/qemu-server/(\d+)\.conf$|
1e3baf05
DM
2459 || die "got strange filename '$filename'";
2460
2461 my $vmid = $1;
2462
0d18dcfc 2463 my $conf = $res;
b0ec896e 2464 my $descr;
cbfc9d75
TL
2465 my $finish_description = sub {
2466 if (defined($descr)) {
2467 $descr =~ s/\s+$//;
2468 $conf->{description} = $descr;
2469 }
2470 $descr = undef;
2471 };
e297c490 2472 my $section = '';
0581fe4f 2473
0d18dcfc
DM
2474 my @lines = split(/\n/, $raw);
2475 foreach my $line (@lines) {
1e3baf05 2476 next if $line =~ m/^\s*$/;
be190583 2477
eab09f4e 2478 if ($line =~ m/^\[PENDING\]\s*$/i) {
e297c490 2479 $section = 'pending';
cbfc9d75 2480 $finish_description->();
e297c490 2481 $conf = $res->{$section} = {};
eab09f4e 2482 next;
95a5135d
AD
2483 } elsif ($line =~ m/^\[special:cloudinit\]\s*$/i) {
2484 $section = 'cloudinit';
eb9923f9 2485 $finish_description->();
95a5135d
AD
2486 $conf = $res->{$section} = {};
2487 next;
eab09f4e 2488
0d732d16 2489 } elsif ($line =~ m/^\[([a-z][a-z0-9_\-]+)\]\s*$/i) {
e297c490 2490 $section = $1;
cbfc9d75 2491 $finish_description->();
e297c490 2492 $conf = $res->{snapshots}->{$section} = {};
0d18dcfc
DM
2493 next;
2494 }
1e3baf05 2495
d1e7b922 2496 if ($line =~ m/^\#(.*)$/) {
b0ec896e 2497 $descr = '' if !defined($descr);
0581fe4f
DM
2498 $descr .= PVE::Tools::decode_text($1) . "\n";
2499 next;
2500 }
2501
1e3baf05 2502 if ($line =~ m/^(description):\s*(.*\S)\s*$/) {
b0ec896e 2503 $descr = '' if !defined($descr);
0581fe4f 2504 $descr .= PVE::Tools::decode_text($2);
0d18dcfc
DM
2505 } elsif ($line =~ m/snapstate:\s*(prepare|delete)\s*$/) {
2506 $conf->{snapstate} = $1;
1e3baf05
DM
2507 } elsif ($line =~ m/^(args):\s*(.*\S)\s*$/) {
2508 my $key = $1;
2509 my $value = $2;
0d18dcfc 2510 $conf->{$key} = $value;
ef824322 2511 } elsif ($line =~ m/^delete:\s*(.*\S)\s*$/) {
e297c490 2512 my $value = $1;
ef824322
DM
2513 if ($section eq 'pending') {
2514 $conf->{delete} = $value; # we parse this later
2515 } else {
ad5812d8 2516 $handle_error->("vm $vmid - property 'delete' is only allowed in [PENDING]\n");
eab09f4e 2517 }
15cf7698 2518 } elsif ($line =~ m/^([a-z][a-z_]*\d*):\s*(.+?)\s*$/) {
1e3baf05
DM
2519 my $key = $1;
2520 my $value = $2;
c229961a
TL
2521 if ($section eq 'cloudinit') {
2522 # ignore validation only used for informative purpose
2523 $conf->{$key} = $value;
2524 next;
2525 }
1e3baf05
DM
2526 eval { $value = check_type($key, $value); };
2527 if ($@) {
ad5812d8 2528 $handle_error->("vm $vmid - unable to parse value of '$key' - $@");
1e3baf05 2529 } else {
b799312f 2530 $key = 'ide2' if $key eq 'cdrom';
1e3baf05 2531 my $fmt = $confdesc->{$key}->{format};
b799312f 2532 if ($fmt && $fmt =~ /^pve-qm-(?:ide|scsi|virtio|sata)$/) {
1e3baf05
DM
2533 my $v = parse_drive($key, $value);
2534 if (my $volid = filename_to_volume_id($vmid, $v->{file}, $v->{media})) {
2535 $v->{file} = $volid;
71c58bb7 2536 $value = print_drive($v);
1e3baf05 2537 } else {
ad5812d8 2538 $handle_error->("vm $vmid - unable to parse value of '$key'\n");
1e3baf05
DM
2539 next;
2540 }
2541 }
2542
b799312f 2543 $conf->{$key} = $value;
1e3baf05 2544 }
f8d2a1ce 2545 } else {
ad5812d8 2546 $handle_error->("vm $vmid - unable to parse config: $line\n");
1e3baf05
DM
2547 }
2548 }
2549
cbfc9d75 2550 $finish_description->();
0d18dcfc 2551 delete $res->{snapstate}; # just to be sure
1e3baf05
DM
2552
2553 return $res;
2554}
2555
1858638f
DM
2556sub write_vm_config {
2557 my ($filename, $conf) = @_;
1e3baf05 2558
0d18dcfc
DM
2559 delete $conf->{snapstate}; # just to be sure
2560
1858638f
DM
2561 if ($conf->{cdrom}) {
2562 die "option ide2 conflicts with cdrom\n" if $conf->{ide2};
2563 $conf->{ide2} = $conf->{cdrom};
2564 delete $conf->{cdrom};
2565 }
1e3baf05
DM
2566
2567 # we do not use 'smp' any longer
1858638f
DM
2568 if ($conf->{sockets}) {
2569 delete $conf->{smp};
2570 } elsif ($conf->{smp}) {
2571 $conf->{sockets} = $conf->{smp};
2572 delete $conf->{cores};
2573 delete $conf->{smp};
1e3baf05
DM
2574 }
2575
ee2f90b1 2576 my $used_volids = {};
0d18dcfc 2577
ee2f90b1 2578 my $cleanup_config = sub {
ef824322 2579 my ($cref, $pending, $snapname) = @_;
1858638f 2580
ee2f90b1
DM
2581 foreach my $key (keys %$cref) {
2582 next if $key eq 'digest' || $key eq 'description' || $key eq 'snapshots' ||
95a5135d 2583 $key eq 'snapstate' || $key eq 'pending' || $key eq 'cloudinit';
ee2f90b1 2584 my $value = $cref->{$key};
ef824322
DM
2585 if ($key eq 'delete') {
2586 die "propertry 'delete' is only allowed in [PENDING]\n"
2587 if !$pending;
2588 # fixme: check syntax?
2589 next;
2590 }
ee2f90b1
DM
2591 eval { $value = check_type($key, $value); };
2592 die "unable to parse value of '$key' - $@" if $@;
1858638f 2593
ee2f90b1
DM
2594 $cref->{$key} = $value;
2595
74479ee9 2596 if (!$snapname && is_valid_drivename($key)) {
ed221350 2597 my $drive = parse_drive($key, $value);
ee2f90b1
DM
2598 $used_volids->{$drive->{file}} = 1 if $drive && $drive->{file};
2599 }
1e3baf05 2600 }
ee2f90b1
DM
2601 };
2602
2603 &$cleanup_config($conf);
ef824322
DM
2604
2605 &$cleanup_config($conf->{pending}, 1);
2606
ee2f90b1 2607 foreach my $snapname (keys %{$conf->{snapshots}}) {
15c6e277 2608 die "internal error: snapshot name '$snapname' is forbidden" if lc($snapname) eq 'pending';
ef824322 2609 &$cleanup_config($conf->{snapshots}->{$snapname}, undef, $snapname);
1e3baf05
DM
2610 }
2611
1858638f
DM
2612 # remove 'unusedX' settings if we re-add a volume
2613 foreach my $key (keys %$conf) {
2614 my $value = $conf->{$key};
ee2f90b1 2615 if ($key =~ m/^unused/ && $used_volids->{$value}) {
1858638f 2616 delete $conf->{$key};
1e3baf05 2617 }
1858638f 2618 }
be190583 2619
0d18dcfc 2620 my $generate_raw_config = sub {
b0ec896e 2621 my ($conf, $pending) = @_;
0581fe4f 2622
0d18dcfc
DM
2623 my $raw = '';
2624
2625 # add description as comment to top of file
b0ec896e
DM
2626 if (defined(my $descr = $conf->{description})) {
2627 if ($descr) {
2628 foreach my $cl (split(/\n/, $descr)) {
2629 $raw .= '#' . PVE::Tools::encode_text($cl) . "\n";
2630 }
2631 } else {
2632 $raw .= "#\n" if $pending;
2633 }
0d18dcfc
DM
2634 }
2635
2636 foreach my $key (sort keys %$conf) {
95a5135d 2637 next if $key =~ /^(digest|description|pending|cloudinit|snapshots)$/;
0d18dcfc
DM
2638 $raw .= "$key: $conf->{$key}\n";
2639 }
2640 return $raw;
2641 };
0581fe4f 2642
0d18dcfc 2643 my $raw = &$generate_raw_config($conf);
ef824322
DM
2644
2645 if (scalar(keys %{$conf->{pending}})){
2646 $raw .= "\n[PENDING]\n";
b0ec896e 2647 $raw .= &$generate_raw_config($conf->{pending}, 1);
ef824322
DM
2648 }
2649
1e1d6f58 2650 if (scalar(keys %{$conf->{cloudinit}}) && PVE::QemuConfig->has_cloudinit($conf)){
95a5135d
AD
2651 $raw .= "\n[special:cloudinit]\n";
2652 $raw .= &$generate_raw_config($conf->{cloudinit});
2653 }
2654
0d18dcfc
DM
2655 foreach my $snapname (sort keys %{$conf->{snapshots}}) {
2656 $raw .= "\n[$snapname]\n";
2657 $raw .= &$generate_raw_config($conf->{snapshots}->{$snapname});
1858638f 2658 }
1e3baf05 2659
1858638f
DM
2660 return $raw;
2661}
1e3baf05 2662
19672434 2663sub load_defaults {
1e3baf05
DM
2664
2665 my $res = {};
2666
2667 # we use static defaults from our JSON schema configuration
2668 foreach my $key (keys %$confdesc) {
2669 if (defined(my $default = $confdesc->{$key}->{default})) {
2670 $res->{$key} = $default;
2671 }
2672 }
19672434 2673
1e3baf05
DM
2674 return $res;
2675}
2676
2677sub config_list {
2678 my $vmlist = PVE::Cluster::get_vmlist();
2679 my $res = {};
2680 return $res if !$vmlist || !$vmlist->{ids};
2681 my $ids = $vmlist->{ids};
38277afc 2682 my $nodename = nodename();
1e3baf05 2683
1e3baf05
DM
2684 foreach my $vmid (keys %$ids) {
2685 my $d = $ids->{$vmid};
2686 next if !$d->{node} || $d->{node} ne $nodename;
5ee957cc 2687 next if !$d->{type} || $d->{type} ne 'qemu';
1e3baf05
DM
2688 $res->{$vmid}->{exists} = 1;
2689 }
2690 return $res;
2691}
2692
64e13401
DM
2693# test if VM uses local resources (to prevent migration)
2694sub check_local_resources {
2695 my ($conf, $noerr) = @_;
2696
ca6abacf 2697 my @loc_res = ();
19672434 2698
ca6abacf
TM
2699 push @loc_res, "hostusb" if $conf->{hostusb}; # old syntax
2700 push @loc_res, "hostpci" if $conf->{hostpci}; # old syntax
64e13401 2701
ca6abacf 2702 push @loc_res, "ivshmem" if $conf->{ivshmem};
6dbcb073 2703
0d29ab3b 2704 foreach my $k (keys %$conf) {
a9ce7583 2705 next if $k =~ m/^usb/ && ($conf->{$k} =~ m/^spice(?![^,])/);
d44712fc
EK
2706 # sockets are safe: they will recreated be on the target side post-migrate
2707 next if $k =~ m/^serial/ && ($conf->{$k} eq 'socket');
ca6abacf 2708 push @loc_res, $k if $k =~ m/^(usb|hostpci|serial|parallel)\d+$/;
64e13401
DM
2709 }
2710
ca6abacf 2711 die "VM uses local resources\n" if scalar @loc_res && !$noerr;
64e13401 2712
ca6abacf 2713 return \@loc_res;
64e13401
DM
2714}
2715
719893a9 2716# check if used storages are available on all nodes (use by migrate)
47152e2e
DM
2717sub check_storage_availability {
2718 my ($storecfg, $conf, $node) = @_;
2719
912792e2 2720 PVE::QemuConfig->foreach_volume($conf, sub {
47152e2e
DM
2721 my ($ds, $drive) = @_;
2722
2723 my $volid = $drive->{file};
2724 return if !$volid;
2725
2726 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
2727 return if !$sid;
2728
2729 # check if storage is available on both nodes
0d2db084
FE
2730 my $scfg = PVE::Storage::storage_check_enabled($storecfg, $sid);
2731 PVE::Storage::storage_check_enabled($storecfg, $sid, $node);
24b84b47 2732
3148f0b0
TL
2733 my ($vtype) = PVE::Storage::parse_volname($storecfg, $volid);
2734
2735 die "$volid: content type '$vtype' is not available on storage '$sid'\n"
2736 if !$scfg->{content}->{$vtype};
47152e2e
DM
2737 });
2738}
2739
719893a9
DM
2740# list nodes where all VM images are available (used by has_feature API)
2741sub shared_nodes {
2742 my ($conf, $storecfg) = @_;
2743
2744 my $nodelist = PVE::Cluster::get_nodelist();
2745 my $nodehash = { map { $_ => 1 } @$nodelist };
38277afc 2746 my $nodename = nodename();
be190583 2747
912792e2 2748 PVE::QemuConfig->foreach_volume($conf, sub {
719893a9
DM
2749 my ($ds, $drive) = @_;
2750
2751 my $volid = $drive->{file};
2752 return if !$volid;
2753
2754 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
2755 if ($storeid) {
2756 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
2757 if ($scfg->{disable}) {
2758 $nodehash = {};
2759 } elsif (my $avail = $scfg->{nodes}) {
2760 foreach my $node (keys %$nodehash) {
2761 delete $nodehash->{$node} if !$avail->{$node};
2762 }
2763 } elsif (!$scfg->{shared}) {
2764 foreach my $node (keys %$nodehash) {
2765 delete $nodehash->{$node} if $node ne $nodename
2766 }
2767 }
2768 }
2769 });
2770
2771 return $nodehash
2772}
2773
f25852c2
TM
2774sub check_local_storage_availability {
2775 my ($conf, $storecfg) = @_;
2776
2777 my $nodelist = PVE::Cluster::get_nodelist();
2778 my $nodehash = { map { $_ => {} } @$nodelist };
2779
912792e2 2780 PVE::QemuConfig->foreach_volume($conf, sub {
f25852c2
TM
2781 my ($ds, $drive) = @_;
2782
2783 my $volid = $drive->{file};
2784 return if !$volid;
2785
2786 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
2787 if ($storeid) {
2788 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
2789
2790 if ($scfg->{disable}) {
2791 foreach my $node (keys %$nodehash) {
32075a2c 2792 $nodehash->{$node}->{unavailable_storages}->{$storeid} = 1;
f25852c2
TM
2793 }
2794 } elsif (my $avail = $scfg->{nodes}) {
2795 foreach my $node (keys %$nodehash) {
2796 if (!$avail->{$node}) {
32075a2c 2797 $nodehash->{$node}->{unavailable_storages}->{$storeid} = 1;
f25852c2
TM
2798 }
2799 }
2800 }
2801 }
2802 });
2803
32075a2c
TL
2804 foreach my $node (values %$nodehash) {
2805 if (my $unavail = $node->{unavailable_storages}) {
2806 $node->{unavailable_storages} = [ sort keys %$unavail ];
2807 }
2808 }
2809
f25852c2
TM
2810 return $nodehash
2811}
2812
babf613a 2813# Compat only, use assert_config_exists_on_node and vm_running_locally where possible
1e3baf05 2814sub check_running {
7e8dcf2c 2815 my ($vmid, $nocheck, $node) = @_;
1e3baf05 2816
a20dc58a
FG
2817 # $nocheck is set when called during a migration, in which case the config
2818 # file might still or already reside on the *other* node
2819 # - because rename has already happened, and current node is source
2820 # - because rename hasn't happened yet, and current node is target
2821 # - because rename has happened, current node is target, but hasn't yet
2822 # processed it yet
babf613a
SR
2823 PVE::QemuConfig::assert_config_exists_on_node($vmid, $node) if !$nocheck;
2824 return PVE::QemuServer::Helpers::vm_running_locally($vmid);
1e3baf05
DM
2825}
2826
2827sub vzlist {
19672434 2828
1e3baf05
DM
2829 my $vzlist = config_list();
2830
d036e418 2831 my $fd = IO::Dir->new($PVE::QemuServer::Helpers::var_run_tmpdir) || return $vzlist;
1e3baf05 2832
19672434 2833 while (defined(my $de = $fd->read)) {
1e3baf05
DM
2834 next if $de !~ m/^(\d+)\.pid$/;
2835 my $vmid = $1;
6b64503e
DM
2836 next if !defined($vzlist->{$vmid});
2837 if (my $pid = check_running($vmid)) {
1e3baf05
DM
2838 $vzlist->{$vmid}->{pid} = $pid;
2839 }
2840 }
2841
2842 return $vzlist;
2843}
2844
b1a70cab
DM
2845our $vmstatus_return_properties = {
2846 vmid => get_standard_option('pve-vmid'),
2847 status => {
7bd9abd2 2848 description => "QEMU process status.",
b1a70cab
DM
2849 type => 'string',
2850 enum => ['stopped', 'running'],
2851 },
2852 maxmem => {
2853 description => "Maximum memory in bytes.",
2854 type => 'integer',
2855 optional => 1,
2856 renderer => 'bytes',
2857 },
2858 maxdisk => {
2859 description => "Root disk size in bytes.",
2860 type => 'integer',
2861 optional => 1,
2862 renderer => 'bytes',
2863 },
2864 name => {
2865 description => "VM name.",
2866 type => 'string',
2867 optional => 1,
2868 },
2869 qmpstatus => {
7bd9abd2 2870 description => "QEMU QMP agent status.",
b1a70cab
DM
2871 type => 'string',
2872 optional => 1,
2873 },
2874 pid => {
2875 description => "PID of running qemu process.",
2876 type => 'integer',
2877 optional => 1,
2878 },
2879 uptime => {
2880 description => "Uptime.",
2881 type => 'integer',
2882 optional => 1,
2883 renderer => 'duration',
2884 },
2885 cpus => {
2886 description => "Maximum usable CPUs.",
2887 type => 'number',
2888 optional => 1,
2889 },
e6ed61b4 2890 lock => {
11efdfa5 2891 description => "The current config lock, if any.",
e6ed61b4
DC
2892 type => 'string',
2893 optional => 1,
b8e7068a
DC
2894 },
2895 tags => {
2896 description => "The current configured tags, if any",
2897 type => 'string',
2898 optional => 1,
2899 },
949112c3
FE
2900 'running-machine' => {
2901 description => "The currently running machine type (if running).",
2902 type => 'string',
2903 optional => 1,
2904 },
2905 'running-qemu' => {
2906 description => "The currently running QEMU version (if running).",
2907 type => 'string',
2908 optional => 1,
2909 },
b1a70cab
DM
2910};
2911
1e3baf05
DM
2912my $last_proc_pid_stat;
2913
03a33f30
DM
2914# get VM status information
2915# This must be fast and should not block ($full == false)
2916# We only query KVM using QMP if $full == true (this can be slow)
1e3baf05 2917sub vmstatus {
03a33f30 2918 my ($opt_vmid, $full) = @_;
1e3baf05
DM
2919
2920 my $res = {};
2921
19672434 2922 my $storecfg = PVE::Storage::config();
1e3baf05
DM
2923
2924 my $list = vzlist();
3618ee99
EK
2925 my $defaults = load_defaults();
2926
694fcad4 2927 my ($uptime) = PVE::ProcFSTools::read_proc_uptime(1);
1e3baf05 2928
ae4915a2
DM
2929 my $cpucount = $cpuinfo->{cpus} || 1;
2930
1e3baf05
DM
2931 foreach my $vmid (keys %$list) {
2932 next if $opt_vmid && ($vmid ne $opt_vmid);
2933
9f78b695 2934 my $conf = PVE::QemuConfig->load_config($vmid);
1e3baf05 2935
ad2cad72 2936 my $d = { vmid => int($vmid) };
8a0addab 2937 $d->{pid} = int($list->{$vmid}->{pid}) if $list->{$vmid}->{pid};
1e3baf05
DM
2938
2939 # fixme: better status?
2940 $d->{status} = $list->{$vmid}->{pid} ? 'running' : 'stopped';
2941
776c5f50 2942 my $size = PVE::QemuServer::Drive::bootdisk_size($storecfg, $conf);
af990afe
DM
2943 if (defined($size)) {
2944 $d->{disk} = 0; # no info available
1e3baf05
DM
2945 $d->{maxdisk} = $size;
2946 } else {
2947 $d->{disk} = 0;
2948 $d->{maxdisk} = 0;
2949 }
2950
3618ee99
EK
2951 $d->{cpus} = ($conf->{sockets} || $defaults->{sockets})
2952 * ($conf->{cores} || $defaults->{cores});
ae4915a2 2953 $d->{cpus} = $cpucount if $d->{cpus} > $cpucount;
d7c8364b 2954 $d->{cpus} = $conf->{vcpus} if $conf->{vcpus};
ae4915a2 2955
1e3baf05 2956 $d->{name} = $conf->{name} || "VM $vmid";
3618ee99
EK
2957 $d->{maxmem} = $conf->{memory} ? $conf->{memory}*(1024*1024)
2958 : $defaults->{memory}*(1024*1024);
1e3baf05 2959
8b1accf7 2960 if ($conf->{balloon}) {
4bdb0514 2961 $d->{balloon_min} = $conf->{balloon}*(1024*1024);
3618ee99
EK
2962 $d->{shares} = defined($conf->{shares}) ? $conf->{shares}
2963 : $defaults->{shares};
8b1accf7
DM
2964 }
2965
1e3baf05
DM
2966 $d->{uptime} = 0;
2967 $d->{cpu} = 0;
1e3baf05
DM
2968 $d->{mem} = 0;
2969
2970 $d->{netout} = 0;
2971 $d->{netin} = 0;
2972
2973 $d->{diskread} = 0;
2974 $d->{diskwrite} = 0;
2975
75a2a423 2976 $d->{template} = 1 if PVE::QemuConfig->is_template($conf);
4d8c851b 2977
8107b378 2978 $d->{serial} = 1 if conf_has_serial($conf);
e6ed61b4 2979 $d->{lock} = $conf->{lock} if $conf->{lock};
b8e7068a 2980 $d->{tags} = $conf->{tags} if defined($conf->{tags});
8107b378 2981
1e3baf05
DM
2982 $res->{$vmid} = $d;
2983 }
2984
2985 my $netdev = PVE::ProcFSTools::read_proc_net_dev();
2986 foreach my $dev (keys %$netdev) {
2987 next if $dev !~ m/^tap([1-9]\d*)i/;
2988 my $vmid = $1;
2989 my $d = $res->{$vmid};
2990 next if !$d;
19672434 2991
1e3baf05
DM
2992 $d->{netout} += $netdev->{$dev}->{receive};
2993 $d->{netin} += $netdev->{$dev}->{transmit};
604ea644
AD
2994
2995 if ($full) {
ad2cad72
FE
2996 $d->{nics}->{$dev}->{netout} = int($netdev->{$dev}->{receive});
2997 $d->{nics}->{$dev}->{netin} = int($netdev->{$dev}->{transmit});
604ea644
AD
2998 }
2999
1e3baf05
DM
3000 }
3001
1e3baf05
DM
3002 my $ctime = gettimeofday;
3003
3004 foreach my $vmid (keys %$list) {
3005
3006 my $d = $res->{$vmid};
3007 my $pid = $d->{pid};
3008 next if !$pid;
3009
694fcad4
DM
3010 my $pstat = PVE::ProcFSTools::read_proc_pid_stat($pid);
3011 next if !$pstat; # not running
19672434 3012
694fcad4 3013 my $used = $pstat->{utime} + $pstat->{stime};
1e3baf05 3014
694fcad4 3015 $d->{uptime} = int(($uptime - $pstat->{starttime})/$cpuinfo->{user_hz});
1e3baf05 3016
694fcad4 3017 if ($pstat->{vsize}) {
6b64503e 3018 $d->{mem} = int(($pstat->{rss}/$pstat->{vsize})*$d->{maxmem});
1e3baf05
DM
3019 }
3020
3021 my $old = $last_proc_pid_stat->{$pid};
3022 if (!$old) {
19672434
DM
3023 $last_proc_pid_stat->{$pid} = {
3024 time => $ctime,
1e3baf05
DM
3025 used => $used,
3026 cpu => 0,
1e3baf05
DM
3027 };
3028 next;
3029 }
3030
7f0b5beb 3031 my $dtime = ($ctime - $old->{time}) * $cpucount * $cpuinfo->{user_hz};
1e3baf05
DM
3032
3033 if ($dtime > 1000) {
3034 my $dutime = $used - $old->{used};
3035
ae4915a2 3036 $d->{cpu} = (($dutime/$dtime)* $cpucount) / $d->{cpus};
1e3baf05 3037 $last_proc_pid_stat->{$pid} = {
19672434 3038 time => $ctime,
1e3baf05
DM
3039 used => $used,
3040 cpu => $d->{cpu},
1e3baf05
DM
3041 };
3042 } else {
3043 $d->{cpu} = $old->{cpu};
1e3baf05
DM
3044 }
3045 }
3046
f5eb281a 3047 return $res if !$full;
03a33f30
DM
3048
3049 my $qmpclient = PVE::QMPClient->new();
3050
64e7fcf2
DM
3051 my $ballooncb = sub {
3052 my ($vmid, $resp) = @_;
3053
3054 my $info = $resp->{'return'};
38babf81
DM
3055 return if !$info->{max_mem};
3056
64e7fcf2
DM
3057 my $d = $res->{$vmid};
3058
38babf81
DM
3059 # use memory assigned to VM
3060 $d->{maxmem} = $info->{max_mem};
3061 $d->{balloon} = $info->{actual};
3062
3063 if (defined($info->{total_mem}) && defined($info->{free_mem})) {
3064 $d->{mem} = $info->{total_mem} - $info->{free_mem};
3065 $d->{freemem} = $info->{free_mem};
64e7fcf2
DM
3066 }
3067
604ea644 3068 $d->{ballooninfo} = $info;
64e7fcf2
DM
3069 };
3070
03a33f30
DM
3071 my $blockstatscb = sub {
3072 my ($vmid, $resp) = @_;
3073 my $data = $resp->{'return'} || [];
3074 my $totalrdbytes = 0;
3075 my $totalwrbytes = 0;
604ea644 3076
03a33f30
DM
3077 for my $blockstat (@$data) {
3078 $totalrdbytes = $totalrdbytes + $blockstat->{stats}->{rd_bytes};
3079 $totalwrbytes = $totalwrbytes + $blockstat->{stats}->{wr_bytes};
604ea644
AD
3080
3081 $blockstat->{device} =~ s/drive-//;
3082 $res->{$vmid}->{blockstat}->{$blockstat->{device}} = $blockstat->{stats};
03a33f30
DM
3083 }
3084 $res->{$vmid}->{diskread} = $totalrdbytes;
3085 $res->{$vmid}->{diskwrite} = $totalwrbytes;
3086 };
3087
949112c3
FE
3088 my $machinecb = sub {
3089 my ($vmid, $resp) = @_;
3090 my $data = $resp->{'return'} || [];
3091
3092 $res->{$vmid}->{'running-machine'} =
3093 PVE::QemuServer::Machine::current_from_query_machines($data);
3094 };
3095
3096 my $versioncb = sub {
3097 my ($vmid, $resp) = @_;
3098 my $data = $resp->{'return'} // {};
3099 my $version = 'unknown';
3100
3101 if (my $v = $data->{qemu}) {
3102 $version = $v->{major} . "." . $v->{minor} . "." . $v->{micro};
3103 }
3104
3105 $res->{$vmid}->{'running-qemu'} = $version;
3106 };
3107
03a33f30
DM
3108 my $statuscb = sub {
3109 my ($vmid, $resp) = @_;
64e7fcf2 3110
03a33f30 3111 $qmpclient->queue_cmd($vmid, $blockstatscb, 'query-blockstats');
949112c3
FE
3112 $qmpclient->queue_cmd($vmid, $machinecb, 'query-machines');
3113 $qmpclient->queue_cmd($vmid, $versioncb, 'query-version');
64e7fcf2
DM
3114 # this fails if ballon driver is not loaded, so this must be
3115 # the last commnand (following command are aborted if this fails).
38babf81 3116 $qmpclient->queue_cmd($vmid, $ballooncb, 'query-balloon');
03a33f30
DM
3117
3118 my $status = 'unknown';
3119 if (!defined($status = $resp->{'return'}->{status})) {
3120 warn "unable to get VM status\n";
3121 return;
3122 }
3123
3124 $res->{$vmid}->{qmpstatus} = $resp->{'return'}->{status};
3125 };
3126
3127 foreach my $vmid (keys %$list) {
3128 next if $opt_vmid && ($vmid ne $opt_vmid);
3129 next if !$res->{$vmid}->{pid}; # not running
3130 $qmpclient->queue_cmd($vmid, $statuscb, 'query-status');
3131 }
3132
b017fbda 3133 $qmpclient->queue_execute(undef, 2);
03a33f30 3134
6891fd70
SR
3135 foreach my $vmid (keys %$list) {
3136 next if $opt_vmid && ($vmid ne $opt_vmid);
e5b18771
FG
3137 next if !$res->{$vmid}->{pid}; #not running
3138
6891fd70
SR
3139 # we can't use the $qmpclient since it might have already aborted on
3140 # 'query-balloon', but this might also fail for older versions...
3141 my $qemu_support = eval { mon_cmd($vmid, "query-proxmox-support") };
3142 $res->{$vmid}->{'proxmox-support'} = $qemu_support // {};
3143 }
3144
03a33f30
DM
3145 foreach my $vmid (keys %$list) {
3146 next if $opt_vmid && ($vmid ne $opt_vmid);
3147 $res->{$vmid}->{qmpstatus} = $res->{$vmid}->{status} if !$res->{$vmid}->{qmpstatus};
3148 }
3149
1e3baf05
DM
3150 return $res;
3151}
3152
8107b378
DC
3153sub conf_has_serial {
3154 my ($conf) = @_;
3155
3156 for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
3157 if ($conf->{"serial$i"}) {
3158 return 1;
3159 }
3160 }
3161
3162 return 0;
3163}
3164
d5535a00
TL
3165sub conf_has_audio {
3166 my ($conf, $id) = @_;
3167
3168 $id //= 0;
3169 my $audio = $conf->{"audio$id"};
d1c1af4b 3170 return if !defined($audio);
d5535a00 3171
4df98f2f 3172 my $audioproperties = parse_property_string($audio_fmt, $audio);
d5535a00
TL
3173 my $audiodriver = $audioproperties->{driver} // 'spice';
3174
3175 return {
3176 dev => $audioproperties->{device},
b0f96836 3177 dev_id => "audiodev$id",
d5535a00
TL
3178 backend => $audiodriver,
3179 backend_id => "$audiodriver-backend${id}",
3180 };
3181}
3182
b01de199 3183sub audio_devs {
1cc5ed1b 3184 my ($audio, $audiopciaddr, $machine_version) = @_;
b01de199
TL
3185
3186 my $devs = [];
3187
3188 my $id = $audio->{dev_id};
1cc5ed1b
AL
3189 my $audiodev = "";
3190 if (min_version($machine_version, 4, 2)) {
3191 $audiodev = ",audiodev=$audio->{backend_id}";
3192 }
b01de199
TL
3193
3194 if ($audio->{dev} eq 'AC97') {
1cc5ed1b 3195 push @$devs, '-device', "AC97,id=${id}${audiopciaddr}$audiodev";
b01de199
TL
3196 } elsif ($audio->{dev} =~ /intel\-hda$/) {
3197 push @$devs, '-device', "$audio->{dev},id=${id}${audiopciaddr}";
1cc5ed1b
AL
3198 push @$devs, '-device', "hda-micro,id=${id}-codec0,bus=${id}.0,cad=0$audiodev";
3199 push @$devs, '-device', "hda-duplex,id=${id}-codec1,bus=${id}.0,cad=1$audiodev";
b01de199
TL
3200 } else {
3201 die "unkown audio device '$audio->{dev}', implement me!";
3202 }
3203
3204 push @$devs, '-audiodev', "$audio->{backend},id=$audio->{backend_id}";
3205
3206 return $devs;
3207}
3208
f9dde219
SR
3209sub get_tpm_paths {
3210 my ($vmid) = @_;
3211 return {
3212 socket => "/var/run/qemu-server/$vmid.swtpm",
3213 pid => "/var/run/qemu-server/$vmid.swtpm.pid",
3214 };
3215}
3216
3217sub add_tpm_device {
3218 my ($vmid, $devices, $conf) = @_;
3219
3220 return if !$conf->{tpmstate0};
3221
3222 my $paths = get_tpm_paths($vmid);
3223
3224 push @$devices, "-chardev", "socket,id=tpmchar,path=$paths->{socket}";
3225 push @$devices, "-tpmdev", "emulator,id=tpmdev,chardev=tpmchar";
3226 push @$devices, "-device", "tpm-tis,tpmdev=tpmdev";
3227}
3228
3229sub start_swtpm {
3230 my ($storecfg, $vmid, $tpmdrive, $migration) = @_;
3231
3232 return if !$tpmdrive;
3233
3234 my $state;
3235 my $tpm = parse_drive("tpmstate0", $tpmdrive);
3236 my ($storeid, $volname) = PVE::Storage::parse_volume_id($tpm->{file}, 1);
3237 if ($storeid) {
3238 $state = PVE::Storage::map_volume($storecfg, $tpm->{file});
3239 } else {
3240 $state = $tpm->{file};
3241 }
3242
3243 my $paths = get_tpm_paths($vmid);
3244
3245 # during migration, we will get state from remote
3246 #
3247 if (!$migration) {
3248 # run swtpm_setup to create a new TPM state if it doesn't exist yet
3249 my $setup_cmd = [
3250 "swtpm_setup",
3251 "--tpmstate",
3252 "file://$state",
3253 "--createek",
3254 "--create-ek-cert",
3255 "--create-platform-cert",
3256 "--lock-nvram",
3257 "--config",
3258 "/etc/swtpm_setup.conf", # do not use XDG configs
3259 "--runas",
3260 "0", # force creation as root, error if not possible
3261 "--not-overwrite", # ignore existing state, do not modify
3262 ];
3263
3264 push @$setup_cmd, "--tpm2" if $tpm->{version} eq 'v2.0';
3265 # TPM 2.0 supports ECC crypto, use if possible
3266 push @$setup_cmd, "--ecc" if $tpm->{version} eq 'v2.0';
3267
3268 run_command($setup_cmd, outfunc => sub {
3269 print "swtpm_setup: $1\n";
3270 });
3271 }
3272
72a5a176
FE
3273 # Used to distinguish different invocations in the log.
3274 my $log_prefix = "[id=" . int(time()) . "] ";
3275
f9dde219
SR
3276 my $emulator_cmd = [
3277 "swtpm",
3278 "socket",
3279 "--tpmstate",
3280 "backend-uri=file://$state,mode=0600",
3281 "--ctrl",
3282 "type=unixio,path=$paths->{socket},mode=0600",
3283 "--pid",
3284 "file=$paths->{pid}",
3285 "--terminate", # terminate on QEMU disconnect
3286 "--daemon",
b2e9c4d3 3287 "--log",
72a5a176 3288 "file=/run/qemu-server/$vmid-swtpm.log,level=1,prefix=$log_prefix",
f9dde219
SR
3289 ];
3290 push @$emulator_cmd, "--tpm2" if $tpm->{version} eq 'v2.0';
3291 run_command($emulator_cmd, outfunc => sub { print $1; });
3292
6bbcd71f 3293 my $tries = 100; # swtpm may take a bit to start before daemonizing, wait up to 5s for pid
f85951dc 3294 while (! -e $paths->{pid}) {
90c41bac 3295 die "failed to start swtpm: pid file '$paths->{pid}' wasn't created.\n" if --$tries == 0;
6bbcd71f 3296 usleep(50_000);
f85951dc
SR
3297 }
3298
f9dde219
SR
3299 # return untainted PID of swtpm daemon so it can be killed on error
3300 file_read_firstline($paths->{pid}) =~ m/(\d+)/;
3301 return $1;
3302}
3303
86b8228b
DM
3304sub vga_conf_has_spice {
3305 my ($vga) = @_;
3306
55655ebc
DC
3307 my $vgaconf = parse_vga($vga);
3308 my $vgatype = $vgaconf->{type};
3309 return 0 if !$vgatype || $vgatype !~ m/^qxl([234])?$/;
590e698c
DM
3310
3311 return $1 || 1;
86b8228b
DM
3312}
3313
d731ecbe
WB
3314sub is_native($) {
3315 my ($arch) = @_;
3316 return get_host_arch() eq $arch;
3317}
3318
045749f2
TL
3319sub get_vm_arch {
3320 my ($conf) = @_;
3321 return $conf->{arch} // get_host_arch();
3322}
3323
d731ecbe
WB
3324my $default_machines = {
3325 x86_64 => 'pc',
3326 aarch64 => 'virt',
3327};
3328
0761e619
TL
3329sub get_installed_machine_version {
3330 my ($kvmversion) = @_;
3331 $kvmversion = kvm_user_version() if !defined($kvmversion);
3332 $kvmversion =~ m/^(\d+\.\d+)/;
3333 return $1;
3334}
3335
3336sub windows_get_pinned_machine_version {
3337 my ($machine, $base_version, $kvmversion) = @_;
3338
3339 my $pin_version = $base_version;
3340 if (!defined($base_version) ||
3341 !PVE::QemuServer::Machine::can_run_pve_machine_version($base_version, $kvmversion)
3342 ) {
3343 $pin_version = get_installed_machine_version($kvmversion);
3344 }
3345 if (!$machine || $machine eq 'pc') {
3346 $machine = "pc-i440fx-$pin_version";
3347 } elsif ($machine eq 'q35') {
3348 $machine = "pc-q35-$pin_version";
3349 } elsif ($machine eq 'virt') {
3350 $machine = "virt-$pin_version";
3351 } else {
3352 warn "unknown machine type '$machine', not touching that!\n";
3353 }
3354
3355 return $machine;
3356}
3357
045749f2 3358sub get_vm_machine {
ac0077cc 3359 my ($conf, $forcemachine, $arch, $add_pve_version, $kvmversion) = @_;
045749f2
TL
3360
3361 my $machine = $forcemachine || $conf->{machine};
d731ecbe 3362
9471e48b 3363 if (!$machine || $machine =~ m/^(?:pc|q35|virt)$/) {
4dd1e83c
TL
3364 $kvmversion //= kvm_user_version();
3365 # we must pin Windows VMs without a specific version to 5.1, as 5.2 fixed a bug in ACPI
3366 # layout which confuses windows quite a bit and may result in various regressions..
3367 # see: https://lists.gnu.org/archive/html/qemu-devel/2021-02/msg08484.html
3368 if (windows_version($conf->{ostype})) {
0761e619 3369 $machine = windows_get_pinned_machine_version($machine, '5.1', $kvmversion);
4dd1e83c 3370 }
045749f2
TL
3371 $arch //= 'x86_64';
3372 $machine ||= $default_machines->{$arch};
ac0077cc 3373 if ($add_pve_version) {
ac0077cc
SR
3374 my $pvever = PVE::QemuServer::Machine::get_pve_version($kvmversion);
3375 $machine .= "+pve$pvever";
3376 }
3377 }
3378
d4be7f31
SR
3379 if ($add_pve_version && $machine !~ m/\+pve\d+?(?:\.pxe)?$/) {
3380 my $is_pxe = $machine =~ m/^(.*?)\.pxe$/;
3381 $machine = $1 if $is_pxe;
3382
ac0077cc
SR
3383 # for version-pinned machines that do not include a pve-version (e.g.
3384 # pc-q35-4.1), we assume 0 to keep them stable in case we bump
3385 $machine .= '+pve0';
d4be7f31
SR
3386
3387 $machine .= '.pxe' if $is_pxe;
045749f2
TL
3388 }
3389
3390 return $machine;
d731ecbe
WB
3391}
3392
90b20b15
DC
3393sub get_ovmf_files($$$) {
3394 my ($arch, $efidisk, $smm) = @_;
96ed3574 3395
b5099b4f 3396 my $types = $OVMF->{$arch}
96ed3574
WB
3397 or die "no OVMF images known for architecture '$arch'\n";
3398
b5099b4f 3399 my $type = 'default';
1183c8f1 3400 if ($arch ne "aarch64" && defined($efidisk->{efitype}) && $efidisk->{efitype} eq '4m') {
90b20b15
DC
3401 $type = $smm ? "4m" : "4m-no-smm";
3402 $type .= '-ms' if $efidisk->{'pre-enrolled-keys'};
b5099b4f
SR
3403 }
3404
f78c9b6b
NU
3405 my ($ovmf_code, $ovmf_vars) = $types->{$type}->@*;
3406 die "EFI base image '$ovmf_code' not found\n" if ! -f $ovmf_code;
3407 die "EFI vars image '$ovmf_vars' not found\n" if ! -f $ovmf_vars;
3408
3409 return ($ovmf_code, $ovmf_vars);
96ed3574
WB
3410}
3411
6908fd9b
WB
3412my $Arch2Qemu = {
3413 aarch64 => '/usr/bin/qemu-system-aarch64',
3414 x86_64 => '/usr/bin/qemu-system-x86_64',
3415};
3416sub get_command_for_arch($) {
3417 my ($arch) = @_;
3418 return '/usr/bin/kvm' if is_native($arch);
3419
3420 my $cmd = $Arch2Qemu->{$arch}
3421 or die "don't know how to emulate architecture '$arch'\n";
3422 return $cmd;
3423}
3424
05a4c550
SR
3425# To use query_supported_cpu_flags and query_understood_cpu_flags to get flags
3426# to use in a QEMU command line (-cpu element), first array_intersect the result
3427# of query_supported_ with query_understood_. This is necessary because:
3428#
3429# a) query_understood_ returns flags the host cannot use and
3430# b) query_supported_ (rather the QMP call) doesn't actually return CPU
3431# flags, but CPU settings - with most of them being flags. Those settings
3432# (and some flags, curiously) cannot be specified as a "-cpu" argument.
3433#
3434# query_supported_ needs to start up to 2 temporary VMs and is therefore rather
3435# expensive. If you need the value returned from this, you can get it much
3436# cheaper from pmxcfs using PVE::Cluster::get_node_kv('cpuflags-$accel') with
3437# $accel being 'kvm' or 'tcg'.
3438#
3439# pvestatd calls this function on startup and whenever the QEMU/KVM version
3440# changes, automatically populating pmxcfs.
3441#
3442# Returns: { kvm => [ flagX, flagY, ... ], tcg => [ flag1, flag2, ... ] }
3443# since kvm and tcg machines support different flags
3444#
3445sub query_supported_cpu_flags {
52cffab6 3446 my ($arch) = @_;
05a4c550 3447
52cffab6
SR
3448 $arch //= get_host_arch();
3449 my $default_machine = $default_machines->{$arch};
3450
3451 my $flags = {};
05a4c550
SR
3452
3453 # FIXME: Once this is merged, the code below should work for ARM as well:
3454 # https://lists.nongnu.org/archive/html/qemu-devel/2019-06/msg04947.html
3455 die "QEMU/KVM cannot detect CPU flags on ARM (aarch64)\n" if
3456 $arch eq "aarch64";
3457
3458 my $kvm_supported = defined(kvm_version());
3459 my $qemu_cmd = get_command_for_arch($arch);
3460 my $fakevmid = -1;
3461 my $pidfile = PVE::QemuServer::Helpers::pidfile_name($fakevmid);
3462
3463 # Start a temporary (frozen) VM with vmid -1 to allow sending a QMP command
3464 my $query_supported_run_qemu = sub {
3465 my ($kvm) = @_;
3466
3467 my $flags = {};
3468 my $cmd = [
3469 $qemu_cmd,
3470 '-machine', $default_machine,
3471 '-display', 'none',
378ad769 3472 '-chardev', "socket,id=qmp,path=/var/run/qemu-server/$fakevmid.qmp,server=on,wait=off",
05a4c550
SR
3473 '-mon', 'chardev=qmp,mode=control',
3474 '-pidfile', $pidfile,
3475 '-S', '-daemonize'
3476 ];
3477
3478 if (!$kvm) {
3479 push @$cmd, '-accel', 'tcg';
3480 }
3481
3482 my $rc = run_command($cmd, noerr => 1, quiet => 0);
3483 die "QEMU flag querying VM exited with code " . $rc if $rc;
3484
3485 eval {
3486 my $cmd_result = mon_cmd(
3487 $fakevmid,
3488 'query-cpu-model-expansion',
3489 type => 'full',
3490 model => { name => 'host' }
3491 );
3492
3493 my $props = $cmd_result->{model}->{props};
3494 foreach my $prop (keys %$props) {
3495 next if $props->{$prop} ne '1';
3496 # QEMU returns some flags multiple times, with '_', '.' or '-'
3497 # (e.g. lahf_lm and lahf-lm; sse4.2, sse4-2 and sse4_2; ...).
3498 # We only keep those with underscores, to match /proc/cpuinfo
3499 $prop =~ s/\.|-/_/g;
3500 $flags->{$prop} = 1;
3501 }
3502 };
3503 my $err = $@;
3504
6bbcd71f 3505 # force stop with 10 sec timeout and 'nocheck', always stop, even if QMP failed
05a4c550
SR
3506 vm_stop(undef, $fakevmid, 1, 1, 10, 0, 1);
3507
3508 die $err if $err;
3509
3510 return [ sort keys %$flags ];
3511 };
3512
3513 # We need to query QEMU twice, since KVM and TCG have different supported flags
3514 PVE::QemuConfig->lock_config($fakevmid, sub {
3515 $flags->{tcg} = eval { $query_supported_run_qemu->(0) };
3516 warn "warning: failed querying supported tcg flags: $@\n" if $@;
3517
3518 if ($kvm_supported) {
3519 $flags->{kvm} = eval { $query_supported_run_qemu->(1) };
3520 warn "warning: failed querying supported kvm flags: $@\n" if $@;
3521 }
3522 });
3523
3524 return $flags;
3525}
3526
3527# Understood CPU flags are written to a file at 'pve-qemu' compile time
3528my $understood_cpu_flag_dir = "/usr/share/kvm";
3529sub query_understood_cpu_flags {
3530 my $arch = get_host_arch();
3531 my $filepath = "$understood_cpu_flag_dir/recognized-CPUID-flags-$arch";
3532
3533 die "Cannot query understood QEMU CPU flags for architecture: $arch (file not found)\n"
3534 if ! -e $filepath;
3535
3536 my $raw = file_get_contents($filepath);
3537 $raw =~ s/^\s+|\s+$//g;
3538 my @flags = split(/\s+/, $raw);
3539
3540 return \@flags;
3541}
3542
e5a6919c
FE
3543# Since commit 277d33454f77ec1d1e0bc04e37621e4dd2424b67 in pve-qemu, smm is not off by default
3544# anymore. But smm=off seems to be required when using SeaBIOS and serial display.
3545my sub should_disable_smm {
e4263214
FE
3546 my ($conf, $vga, $machine) = @_;
3547
3548 return if $machine =~ m/^virt/; # there is no smm flag that could be disabled
e5a6919c
FE
3549
3550 return (!defined($conf->{bios}) || $conf->{bios} eq 'seabios') &&
bec87424 3551 $vga->{type} && $vga->{type} =~ m/^(serial\d+|none)$/;
e5a6919c
FE
3552}
3553
b7d80c79
FE
3554my sub print_ovmf_drive_commandlines {
3555 my ($conf, $storecfg, $vmid, $arch, $q35, $version_guard) = @_;
3556
3d07669c 3557 my $d = $conf->{efidisk0} ? parse_drive('efidisk0', $conf->{efidisk0}) : undef;
b7d80c79
FE
3558
3559 my ($ovmf_code, $ovmf_vars) = get_ovmf_files($arch, $d, $q35);
b7d80c79 3560
3d07669c 3561 my $var_drive_str = "if=pflash,unit=1,id=drive-efidisk0";
b7d80c79
FE
3562 if ($d) {
3563 my ($storeid, $volname) = PVE::Storage::parse_volume_id($d->{file}, 1);
3d07669c 3564 my ($path, $format) = $d->@{'file', 'format'};
b7d80c79
FE
3565 if ($storeid) {
3566 $path = PVE::Storage::path($storecfg, $d->{file});
3567 if (!defined($format)) {
3568 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
3569 $format = qemu_img_format($scfg, $volname);
3570 }
3d07669c
TL
3571 } elsif (!defined($format)) {
3572 die "efidisk format must be specified\n";
3573 }
3574 # SPI flash does lots of read-modify-write OPs, without writeback this gets really slow #3329
3575 if ($path =~ m/^rbd:/) {
3576 $var_drive_str .= ',cache=writeback';
3577 $path .= ':rbd_cache_policy=writeback'; # avoid write-around, we *need* to cache writes too
b7d80c79 3578 }
3d07669c 3579 $var_drive_str .= ",format=$format,file=$path";
b7d80c79 3580
3d07669c
TL
3581 $var_drive_str .= ",size=" . (-s $ovmf_vars) if $format eq 'raw' && $version_guard->(4, 1, 2);
3582 $var_drive_str .= ',readonly=on' if drive_is_read_only($conf, $d);
b7d80c79
FE
3583 } else {
3584 log_warn("no efidisk configured! Using temporary efivars disk.");
3d07669c 3585 my $path = "/tmp/$vmid-ovmf.fd";
b7d80c79 3586 PVE::Tools::file_copy($ovmf_vars, $path, -s $ovmf_vars);
3d07669c
TL
3587 $var_drive_str .= ",format=raw,file=$path";
3588 $var_drive_str .= ",size=" . (-s $ovmf_vars) if $version_guard->(4, 1, 2);
b7d80c79
FE
3589 }
3590
3d07669c 3591 return ("if=pflash,unit=0,format=raw,readonly=on,file=$ovmf_code", $var_drive_str);
b7d80c79
FE
3592}
3593
1e3baf05 3594sub config_to_command {
5921764c
SR
3595 my ($storecfg, $vmid, $conf, $defaults, $forcemachine, $forcecpu,
3596 $pbs_backing) = @_;
1e3baf05 3597
3326ae19 3598 my ($globalFlags, $machineFlags, $rtcFlags) = ([], [], []);
5bdcf937 3599 my $devices = [];
5bdcf937 3600 my $bridges = {};
b42d3cf9 3601 my $ostype = $conf->{ostype};
4317f69f 3602 my $winversion = windows_version($ostype);
d731ecbe 3603 my $kvm = $conf->{kvm};
38277afc 3604 my $nodename = nodename();
d731ecbe 3605
045749f2 3606 my $arch = get_vm_arch($conf);
1476b99f
DC
3607 my $kvm_binary = get_command_for_arch($arch);
3608 my $kvmver = kvm_user_version($kvm_binary);
045749f2 3609
a04dd5c4
SR
3610 if (!$kvmver || $kvmver !~ m/^(\d+)\.(\d+)/ || $1 < 3) {
3611 $kvmver //= "undefined";
3612 die "Detected old QEMU binary ('$kvmver', at least 3.0 is required)\n";
3613 }
3614
9471e48b
TL
3615 my $add_pve_version = min_version($kvmver, 4, 1);
3616
3617 my $machine_type = get_vm_machine($conf, $forcemachine, $arch, $add_pve_version);
4df98f2f 3618 my $machine_version = extract_version($machine_type, $kvmver);
d731ecbe 3619 $kvm //= 1 if is_native($arch);
4317f69f 3620
a77a53ae 3621 $machine_version =~ m/(\d+)\.(\d+)/;
ac0077cc 3622 my ($machine_major, $machine_minor) = ($1, $2);
ac0077cc 3623
b516c848
SR
3624 if ($kvmver =~ m/^\d+\.\d+\.(\d+)/ && $1 >= 90) {
3625 warn "warning: Installed QEMU version ($kvmver) is a release candidate, ignoring version checks\n";
3626 } elsif (!min_version($kvmver, $machine_major, $machine_minor)) {
4df98f2f
TL
3627 die "Installed QEMU version '$kvmver' is too old to run machine type '$machine_type',"
3628 ." please upgrade node '$nodename'\n"
b516c848 3629 } elsif (!PVE::QemuServer::Machine::can_run_pve_machine_version($machine_version, $kvmver)) {
ac0077cc 3630 my $max_pve_version = PVE::QemuServer::Machine::get_pve_version($machine_version);
4df98f2f
TL
3631 die "Installed qemu-server (max feature level for $machine_major.$machine_minor is"
3632 ." pve$max_pve_version) is too old to run machine type '$machine_type', please upgrade"
3633 ." node '$nodename'\n";
ac0077cc
SR
3634 }
3635
3636 # if a specific +pve version is required for a feature, use $version_guard
3637 # instead of min_version to allow machines to be run with the minimum
3638 # required version
3639 my $required_pve_version = 0;
3640 my $version_guard = sub {
3641 my ($major, $minor, $pve) = @_;
3642 return 0 if !min_version($machine_version, $major, $minor, $pve);
47f35977
SR
3643 my $max_pve = PVE::QemuServer::Machine::get_pve_version("$major.$minor");
3644 return 1 if min_version($machine_version, $major, $minor, $max_pve+1);
ac0077cc
SR
3645 $required_pve_version = $pve if $pve && $pve > $required_pve_version;
3646 return 1;
3647 };
a77a53ae 3648
4df98f2f
TL
3649 if ($kvm && !defined kvm_version()) {
3650 die "KVM virtualisation configured, but not available. Either disable in VM configuration"
3651 ." or enable in BIOS.\n";
d731ecbe 3652 }
bfcd9b7e 3653
3392d6ca 3654 my $q35 = PVE::QemuServer::Machine::machine_type_is_q35($conf);
4d3f29ed 3655 my $hotplug_features = parse_hotplug_features(defined($conf->{hotplug}) ? $conf->{hotplug} : '1');
249c4a6c
AD
3656 my $use_old_bios_files = undef;
3657 ($use_old_bios_files, $machine_type) = qemu_use_old_bios_files($machine_type);
db656e5f 3658
74fe3d9a 3659 my $cmd = [];
83870398 3660 if ($conf->{affinity}) {
74fe3d9a 3661 push @$cmd, '/usr/bin/taskset', '--cpu-list', '--all-tasks', $conf->{affinity};
83870398
DB
3662 }
3663
1476b99f 3664 push @$cmd, $kvm_binary;
1e3baf05
DM
3665
3666 push @$cmd, '-id', $vmid;
3667
e4d4cda1
HR
3668 my $vmname = $conf->{name} || "vm$vmid";
3669
6884a7d7 3670 push @$cmd, '-name', "$vmname,debug-threads=on";
e4d4cda1 3671
27b25d03
SR
3672 push @$cmd, '-no-shutdown';
3673
1e3baf05
DM
3674 my $use_virtio = 0;
3675
d036e418 3676 my $qmpsocket = PVE::QemuServer::Helpers::qmp_socket($vmid);
378ad769 3677 push @$cmd, '-chardev', "socket,id=qmp,path=$qmpsocket,server=on,wait=off";
c971c4f2
AD
3678 push @$cmd, '-mon', "chardev=qmp,mode=control";
3679
2ea5fb7e 3680 if (min_version($machine_version, 2, 12)) {
b4496b9e 3681 push @$cmd, '-chardev', "socket,id=qmp-event,path=/var/run/qmeventd.sock,reconnect=5";
71bd73b5
DC
3682 push @$cmd, '-mon', "chardev=qmp-event,mode=control";
3683 }
1e3baf05 3684
d036e418 3685 push @$cmd, '-pidfile' , PVE::QemuServer::Helpers::pidfile_name($vmid);
19672434 3686
1e3baf05
DM
3687 push @$cmd, '-daemonize';
3688
2796e7d5 3689 if ($conf->{smbios1}) {
1f30ac3a
CE
3690 my $smbios_conf = parse_smbios1($conf->{smbios1});
3691 if ($smbios_conf->{base64}) {
3692 # Do not pass base64 flag to qemu
3693 delete $smbios_conf->{base64};
3694 my $smbios_string = "";
3695 foreach my $key (keys %$smbios_conf) {
3696 my $value;
3697 if ($key eq "uuid") {
3698 $value = $smbios_conf->{uuid}
3699 } else {
3700 $value = decode_base64($smbios_conf->{$key});
3701 }
3702 # qemu accepts any binary data, only commas need escaping by double comma
3703 $value =~ s/,/,,/g;
3704 $smbios_string .= "," . $key . "=" . $value if $value;
3705 }
3706 push @$cmd, '-smbios', "type=1" . $smbios_string;
3707 } else {
3708 push @$cmd, '-smbios', "type=1,$conf->{smbios1}";
3709 }
2796e7d5
DM
3710 }
3711
3edb45e7 3712 if ($conf->{bios} && $conf->{bios} eq 'ovmf') {
b7d80c79
FE
3713 my ($code_drive_str, $var_drive_str) =
3714 print_ovmf_drive_commandlines($conf, $storecfg, $vmid, $arch, $q35, $version_guard);
3715 push $cmd->@*, '-drive', $code_drive_str;
3716 push $cmd->@*, '-drive', $var_drive_str;
a783c78e
AD
3717 }
3718
483ceeab 3719 if ($q35) { # tell QEMU to load q35 config early
7583d156 3720 # we use different pcie-port hardware for qemu >= 4.0 for passthrough
2ea5fb7e 3721 if (min_version($machine_version, 4, 0)) {
7583d156
DC
3722 push @$devices, '-readconfig', '/usr/share/qemu-server/pve-q35-4.0.cfg';
3723 } else {
3724 push @$devices, '-readconfig', '/usr/share/qemu-server/pve-q35.cfg';
3725 }
3726 }
da8b4189 3727
cc181036
TL
3728 if (defined(my $fixups = qemu_created_version_fixups($conf, $forcemachine, $kvmver))) {
3729 push @$cmd, $fixups->@*;
3730 }
3731
844d8fa6
DC
3732 if ($conf->{vmgenid}) {
3733 push @$devices, '-device', 'vmgenid,guid='.$conf->{vmgenid};
3734 }
3735
d40e5e18 3736 # add usb controllers
4df98f2f 3737 my @usbcontrollers = PVE::QemuServer::USB::get_usb_controllers(
4862922a 3738 $conf, $bridges, $arch, $machine_type, $usbdesc->{format}, $MAX_USB_DEVICES, $machine_version);
d40e5e18 3739 push @$devices, @usbcontrollers if @usbcontrollers;
55655ebc 3740 my $vga = parse_vga($conf->{vga});
2fa3151e 3741
55655ebc
DC
3742 my $qxlnum = vga_conf_has_spice($conf->{vga});
3743 $vga->{type} = 'qxl' if $qxlnum;
2fa3151e 3744
55655ebc 3745 if (!$vga->{type}) {
869ad4a7
WB
3746 if ($arch eq 'aarch64') {
3747 $vga->{type} = 'virtio';
2ea5fb7e 3748 } elsif (min_version($machine_version, 2, 9)) {
55655ebc 3749 $vga->{type} = (!$winversion || $winversion >= 6) ? 'std' : 'cirrus';
a2a5cd64 3750 } else {
55655ebc 3751 $vga->{type} = ($winversion >= 6) ? 'std' : 'cirrus';
a2a5cd64 3752 }
5acbfe9e
DM
3753 }
3754
1e3baf05 3755 # enable absolute mouse coordinates (needed by vnc)
fa3b3ce0
TL
3756 my $tablet = $conf->{tablet};
3757 if (!defined($tablet)) {
5acbfe9e 3758 $tablet = $defaults->{tablet};
590e698c 3759 $tablet = 0 if $qxlnum; # disable for spice because it is not needed
55655ebc 3760 $tablet = 0 if $vga->{type} =~ m/^serial\d+$/; # disable if we use serial terminal (no vga card)
5acbfe9e
DM
3761 }
3762
d559309f
WB
3763 if ($tablet) {
3764 push @$devices, '-device', print_tabletdevice_full($conf, $arch) if $tablet;
3765 my $kbd = print_keyboarddevice_full($conf, $arch);
3766 push @$devices, '-device', $kbd if defined($kbd);
3767 }
b467f79a 3768
e5d611c3 3769 my $bootorder = device_bootorder($conf);
2141a802 3770
74c17b7a 3771 # host pci device passthrough
13d68979 3772 my ($kvm_off, $gpu_passthrough, $legacy_igd) = PVE::QemuServer::PCI::print_hostpci_devices(
41af2dfc 3773 $vmid, $conf, $devices, $vga, $winversion, $q35, $bridges, $arch, $machine_type, $bootorder);
1e3baf05
DM
3774
3775 # usb devices
ae36393d 3776 my $usb_dev_features = {};
2ea5fb7e 3777 $usb_dev_features->{spice_usb3} = 1 if min_version($machine_version, 4, 0);
ae36393d 3778
4df98f2f 3779 my @usbdevices = PVE::QemuServer::USB::get_usb_devices(
4862922a 3780 $conf, $usbdesc->{format}, $MAX_USB_DEVICES, $usb_dev_features, $bootorder, $machine_version);
d40e5e18 3781 push @$devices, @usbdevices if @usbdevices;
2141a802 3782
1e3baf05 3783 # serial devices
bae179aa 3784 for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
fa3b3ce0
TL
3785 my $path = $conf->{"serial$i"} or next;
3786 if ($path eq 'socket') {
3787 my $socket = "/var/run/qemu-server/${vmid}.serial$i";
3788 push @$devices, '-chardev', "socket,id=serial$i,path=$socket,server=on,wait=off";
7bd9abd2 3789 # On aarch64, serial0 is the UART device. QEMU only allows
fa3b3ce0
TL
3790 # connecting UART devices via the '-serial' command line, as
3791 # the device has a fixed slot on the hardware...
3792 if ($arch eq 'aarch64' && $i == 0) {
3793 push @$devices, '-serial', "chardev:serial$i";
9f9d2fb2 3794 } else {
9f9d2fb2
DM
3795 push @$devices, '-device', "isa-serial,chardev=serial$i";
3796 }
fa3b3ce0
TL
3797 } else {
3798 die "no such serial device\n" if ! -c $path;
e35eb876 3799 push @$devices, '-chardev', "serial,id=serial$i,path=$path";
fa3b3ce0 3800 push @$devices, '-device', "isa-serial,chardev=serial$i";
34978be3 3801 }
1e3baf05
DM
3802 }
3803
3804 # parallel devices
1989a89c 3805 for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
34978be3 3806 if (my $path = $conf->{"parallel$i"}) {
19672434 3807 die "no such parallel device\n" if ! -c $path;
e35eb876 3808 my $devtype = $path =~ m!^/dev/usb/lp! ? 'serial' : 'parallel';
4c5dbaf6 3809 push @$devices, '-chardev', "$devtype,id=parallel$i,path=$path";
5bdcf937 3810 push @$devices, '-device', "isa-parallel,chardev=parallel$i";
34978be3 3811 }
1e3baf05
DM
3812 }
3813
b01de199 3814 if (min_version($machine_version, 4, 0) && (my $audio = conf_has_audio($conf))) {
2e7b5925 3815 my $audiopciaddr = print_pci_addr("audio0", $bridges, $arch, $machine_type);
1cc5ed1b 3816 my $audio_devs = audio_devs($audio, $audiopciaddr, $machine_version);
b01de199 3817 push @$devices, @$audio_devs;
2e7b5925 3818 }
19672434 3819
f9dde219
SR
3820 add_tpm_device($vmid, $devices, $conf);
3821
1e3baf05
DM
3822 my $sockets = 1;
3823 $sockets = $conf->{smp} if $conf->{smp}; # old style - no longer iused
3824 $sockets = $conf->{sockets} if $conf->{sockets};
3825
3826 my $cores = $conf->{cores} || 1;
3bd18e48 3827
de9d1e55 3828 my $maxcpus = $sockets * $cores;
76267728 3829
de9d1e55 3830 my $vcpus = $conf->{vcpus} ? $conf->{vcpus} : $maxcpus;
76267728 3831
de9d1e55
AD
3832 my $allowed_vcpus = $cpuinfo->{cpus};
3833
483ceeab 3834 die "MAX $allowed_vcpus vcpus allowed per VM on this node\n" if ($allowed_vcpus < $maxcpus);
1e3baf05 3835
483ceeab 3836 if ($hotplug_features->{cpu} && min_version($machine_version, 2, 7)) {
69c81430
AD
3837 push @$cmd, '-smp', "1,sockets=$sockets,cores=$cores,maxcpus=$maxcpus";
3838 for (my $i = 2; $i <= $vcpus; $i++) {
3839 my $cpustr = print_cpu_device($conf,$i);
3840 push @$cmd, '-device', $cpustr;
3841 }
3842
3843 } else {
3844
3845 push @$cmd, '-smp', "$vcpus,sockets=$sockets,cores=$cores,maxcpus=$maxcpus";
3846 }
1e3baf05
DM
3847 push @$cmd, '-nodefaults';
3848
dbea4415 3849 push @$cmd, '-boot', "menu=on,strict=on,reboot-timeout=1000,splash=/usr/share/qemu-server/bootsplash.jpg";
1e3baf05 3850
6b64503e 3851 push @$cmd, '-no-acpi' if defined($conf->{acpi}) && $conf->{acpi} == 0;
1e3baf05 3852
6b64503e 3853 push @$cmd, '-no-reboot' if defined($conf->{reboot}) && $conf->{reboot} == 0;
1e3baf05 3854
84902837 3855 if ($vga->{type} && $vga->{type} !~ m/^serial\d+$/ && $vga->{type} ne 'none'){
4df98f2f
TL
3856 push @$devices, '-device', print_vga_device(
3857 $conf, $vga, $arch, $machine_version, $machine_type, undef, $qxlnum, $bridges);
6f070e39
TL
3858
3859 push @$cmd, '-display', 'egl-headless,gl=core' if $vga->{type} eq 'virtio-gl'; # VIRGL
3860
d036e418 3861 my $socket = PVE::QemuServer::Helpers::vnc_socket($vmid);
378ad769 3862 push @$cmd, '-vnc', "unix:$socket,password=on";
b7be4ba9 3863 } else {
55655ebc 3864 push @$cmd, '-vga', 'none' if $vga->{type} eq 'none';
b7be4ba9
AD
3865 push @$cmd, '-nographic';
3866 }
3867
1e3baf05 3868 # time drift fix
6b64503e 3869 my $tdf = defined($conf->{tdf}) ? $conf->{tdf} : $defaults->{tdf};
8c559505 3870 my $useLocaltime = $conf->{localtime};
1e3baf05 3871
4317f69f
AD
3872 if ($winversion >= 5) { # windows
3873 $useLocaltime = 1 if !defined($conf->{localtime});
7a131888 3874
4317f69f
AD
3875 # use time drift fix when acpi is enabled
3876 if (!(defined($conf->{acpi}) && $conf->{acpi} == 0)) {
3877 $tdf = 1 if !defined($conf->{tdf});
462e8d19 3878 }
4317f69f 3879 }
462e8d19 3880
4317f69f
AD
3881 if ($winversion >= 6) {
3882 push @$globalFlags, 'kvm-pit.lost_tick_policy=discard';
3883 push @$cmd, '-no-hpet';
1e3baf05
DM
3884 }
3885
8c559505
DM
3886 push @$rtcFlags, 'driftfix=slew' if $tdf;
3887
2f6f002c 3888 if ($conf->{startdate} && $conf->{startdate} ne 'now') {
8c559505
DM
3889 push @$rtcFlags, "base=$conf->{startdate}";
3890 } elsif ($useLocaltime) {
3891 push @$rtcFlags, 'base=localtime';
3892 }
1e3baf05 3893
58c64ad5
SR
3894 if ($forcecpu) {
3895 push @$cmd, '-cpu', $forcecpu;
3896 } else {
2f6f002c 3897 push @$cmd, get_cpu_options($conf, $arch, $kvm, $kvm_off, $machine_version, $winversion, $gpu_passthrough);
58c64ad5 3898 }
519ed28c 3899
dafb728c
AD
3900 PVE::QemuServer::Memory::config(
3901 $conf, $vmid, $sockets, $cores, $defaults, $hotplug_features->{memory}, $cmd);
370b05e7 3902
1e3baf05
DM
3903 push @$cmd, '-S' if $conf->{freeze};
3904
b20df606 3905 push @$cmd, '-k', $conf->{keyboard} if defined($conf->{keyboard});
1e3baf05 3906
48657158
MD
3907 my $guest_agent = parse_guest_agent($conf);
3908
3909 if ($guest_agent->{enabled}) {
d036e418 3910 my $qgasocket = PVE::QemuServer::Helpers::qmp_socket($vmid, 1);
378ad769 3911 push @$devices, '-chardev', "socket,path=$qgasocket,server=on,wait=off,id=qga0";
48657158 3912
60f03a11 3913 if (!$guest_agent->{type} || $guest_agent->{type} eq 'virtio') {
48657158
MD
3914 my $pciaddr = print_pci_addr("qga0", $bridges, $arch, $machine_type);
3915 push @$devices, '-device', "virtio-serial,id=qga0$pciaddr";
3916 push @$devices, '-device', 'virtserialport,chardev=qga0,name=org.qemu.guest_agent.0';
3917 } elsif ($guest_agent->{type} eq 'isa') {
3918 push @$devices, '-device', "isa-serial,chardev=qga0";
3919 }
ab6a046f
AD
3920 }
3921
e5d611c3
TL
3922 my $rng = $conf->{rng0} ? parse_rng($conf->{rng0}) : undef;
3923 if ($rng && $version_guard->(4, 1, 2)) {
05853188
SR
3924 check_rng_source($rng->{source});
3925
2cf61f33
SR
3926 my $max_bytes = $rng->{max_bytes} // $rng_fmt->{max_bytes}->{default};
3927 my $period = $rng->{period} // $rng_fmt->{period}->{default};
2cf61f33
SR
3928 my $limiter_str = "";
3929 if ($max_bytes) {
3930 $limiter_str = ",max-bytes=$max_bytes,period=$period";
3931 }
3932
2cf61f33 3933 my $rng_addr = print_pci_addr("rng0", $bridges, $arch, $machine_type);
2cf61f33
SR
3934 push @$devices, '-object', "rng-random,filename=$rng->{source},id=rng0";
3935 push @$devices, '-device', "virtio-rng-pci,rng=rng0$limiter_str$rng_addr";
3936 }
3937
1d794448 3938 my $spice_port;
2fa3151e 3939
f8ea1b30 3940 if ($qxlnum || $vga->{type} =~ /^virtio/) {
590e698c 3941 if ($qxlnum > 1) {
ac087616 3942 if ($winversion){
2f6f002c 3943 for (my $i = 1; $i < $qxlnum; $i++){
4df98f2f
TL
3944 push @$devices, '-device', print_vga_device(
3945 $conf, $vga, $arch, $machine_version, $machine_type, $i, $qxlnum, $bridges);
590e698c
DM
3946 }
3947 } else {
3948 # assume other OS works like Linux
55655ebc
DC
3949 my ($ram, $vram) = ("134217728", "67108864");
3950 if ($vga->{memory}) {
3951 $ram = PVE::Tools::convert_size($qxlnum*4*$vga->{memory}, 'mb' => 'b');
3952 $vram = PVE::Tools::convert_size($qxlnum*2*$vga->{memory}, 'mb' => 'b');
3953 }
3954 push @$cmd, '-global', "qxl-vga.ram_size=$ram";
3955 push @$cmd, '-global', "qxl-vga.vram_size=$vram";
2fa3151e
AD
3956 }
3957 }
3958
d559309f 3959 my $pciaddr = print_pci_addr("spice", $bridges, $arch, $machine_type);
95a4b4a9 3960
af0eba7e 3961 my $pfamily = PVE::Tools::get_host_address_family($nodename);
91152441
WB
3962 my @nodeaddrs = PVE::Tools::getaddrinfo_all('localhost', family => $pfamily);
3963 die "failed to get an ip address of type $pfamily for 'localhost'\n" if !@nodeaddrs;
4d316a63
AL
3964
3965 push @$devices, '-device', "virtio-serial,id=spice$pciaddr";
3966 push @$devices, '-chardev', "spicevmc,id=vdagent,name=vdagent";
3967 push @$devices, '-device', "virtserialport,chardev=vdagent,name=com.redhat.spice.0";
3968
91152441
WB
3969 my $localhost = PVE::Network::addr_to_ip($nodeaddrs[0]->{addr});
3970 $spice_port = PVE::Tools::next_spice_port($pfamily, $localhost);
943340a6 3971
4df98f2f
TL
3972 my $spice_enhancement_str = $conf->{spice_enhancements} // '';
3973 my $spice_enhancement = parse_property_string($spice_enhancements_fmt, $spice_enhancement_str);
caab114a
TL
3974 if ($spice_enhancement->{foldersharing}) {
3975 push @$devices, '-chardev', "spiceport,id=foldershare,name=org.spice-space.webdav.0";
3976 push @$devices, '-device', "virtserialport,chardev=foldershare,name=org.spice-space.webdav.0";
3977 }
c4df18db 3978
caab114a 3979 my $spice_opts = "tls-port=${spice_port},addr=$localhost,tls-ciphers=HIGH,seamless-migration=on";
4df98f2f
TL
3980 $spice_opts .= ",streaming-video=$spice_enhancement->{videostreaming}"
3981 if $spice_enhancement->{videostreaming};
3982
caab114a 3983 push @$devices, '-spice', "$spice_opts";
1011b570
DM
3984 }
3985
8d9ae0d2
DM
3986 # enable balloon by default, unless explicitly disabled
3987 if (!defined($conf->{balloon}) || $conf->{balloon}) {
3326ae19 3988 my $pciaddr = print_pci_addr("balloon0", $bridges, $arch, $machine_type);
c70e4ec3
AD
3989 my $ballooncmd = "virtio-balloon-pci,id=balloon0$pciaddr";
3990 $ballooncmd .= ",free-page-reporting=on" if min_version($machine_version, 6, 2);
3991 push @$devices, '-device', $ballooncmd;
8d9ae0d2 3992 }
1e3baf05 3993
0ea9541d
DM
3994 if ($conf->{watchdog}) {
3995 my $wdopts = parse_watchdog($conf->{watchdog});
3326ae19 3996 my $pciaddr = print_pci_addr("watchdog", $bridges, $arch, $machine_type);
0a40e8ea 3997 my $watchdog = $wdopts->{model} || 'i6300esb';
5bdcf937
AD
3998 push @$devices, '-device', "$watchdog$pciaddr";
3999 push @$devices, '-watchdog-action', $wdopts->{action} if $wdopts->{action};
0ea9541d
DM
4000 }
4001
1e3baf05 4002 my $vollist = [];
941e0c42 4003 my $scsicontroller = {};
26ee04b6 4004 my $ahcicontroller = {};
cdd20088 4005 my $scsihw = defined($conf->{scsihw}) ? $conf->{scsihw} : $defaults->{scsihw};
1e3baf05 4006
5881b913
DM
4007 # Add iscsi initiator name if available
4008 if (my $initiator = get_initiator_name()) {
4009 push @$devices, '-iscsi', "initiator-name=$initiator";
4010 }
4011
912792e2 4012 PVE::QemuConfig->foreach_volume($conf, sub {
1e3baf05
DM
4013 my ($ds, $drive) = @_;
4014
ff1a2432 4015 if (PVE::Storage::parse_volume_id($drive->{file}, 1)) {
3f11f0d7 4016 check_volume_storage_type($storecfg, $drive->{file});
1e3baf05 4017 push @$vollist, $drive->{file};
ff1a2432 4018 }
afdb31d5 4019
4dcce9ee
TL
4020 # ignore efidisk here, already added in bios/fw handling code above
4021 return if $drive->{interface} eq 'efidisk';
f9dde219
SR
4022 # similar for TPM
4023 return if $drive->{interface} eq 'tpmstate';
4dcce9ee 4024
1e3baf05 4025 $use_virtio = 1 if $ds =~ m/^virtio/;
3b408e82 4026
2141a802 4027 $drive->{bootindex} = $bootorder->{$ds} if $bootorder->{$ds};
3b408e82 4028
2f6f002c 4029 if ($drive->{interface} eq 'virtio'){
51f492cd
AD
4030 push @$cmd, '-object', "iothread,id=iothread-$ds" if $drive->{iothread};
4031 }
4032
2f6f002c 4033 if ($drive->{interface} eq 'scsi') {
cdd20088 4034
ee034f5c 4035 my ($maxdev, $controller, $controller_prefix) = scsihw_infos($conf, $drive);
6731a4cf 4036
b8fb1c03
SR
4037 die "scsi$drive->{index}: machine version 4.1~pve2 or higher is required to use more than 14 SCSI disks\n"
4038 if $drive->{index} > 13 && !&$version_guard(4, 1, 2);
4039
3326ae19 4040 my $pciaddr = print_pci_addr("$controller_prefix$controller", $bridges, $arch, $machine_type);
a1b7d579 4041 my $scsihw_type = $scsihw =~ m/^virtio-scsi-single/ ? "virtio-scsi-pci" : $scsihw;
fc8b40fd
AD
4042
4043 my $iothread = '';
4044 if($conf->{scsihw} && $conf->{scsihw} eq "virtio-scsi-single" && $drive->{iothread}){
4045 $iothread .= ",iothread=iothread-$controller_prefix$controller";
4046 push @$cmd, '-object', "iothread,id=iothread-$controller_prefix$controller";
e7a5104d 4047 } elsif ($drive->{iothread}) {
d80ad18c
MH
4048 log_warn(
4049 "iothread is only valid with virtio disk or virtio-scsi-single controller, ignoring\n"
4050 );
fc8b40fd
AD
4051 }
4052
6e11f143
AD
4053 my $queues = '';
4054 if($conf->{scsihw} && $conf->{scsihw} eq "virtio-scsi-single" && $drive->{queues}){
4055 $queues = ",num_queues=$drive->{queues}";
370b05e7 4056 }
6e11f143 4057
4df98f2f
TL
4058 push @$devices, '-device', "$scsihw_type,id=$controller_prefix$controller$pciaddr$iothread$queues"
4059 if !$scsicontroller->{$controller};
cdd20088 4060 $scsicontroller->{$controller}=1;
2f6f002c 4061 }
3b408e82 4062
26ee04b6 4063 if ($drive->{interface} eq 'sata') {
2f6f002c 4064 my $controller = int($drive->{index} / $PVE::QemuServer::Drive::MAX_SATA_DISKS);
3326ae19 4065 my $pciaddr = print_pci_addr("ahci$controller", $bridges, $arch, $machine_type);
4df98f2f
TL
4066 push @$devices, '-device', "ahci,id=ahci$controller,multifunction=on$pciaddr"
4067 if !$ahcicontroller->{$controller};
2f6f002c 4068 $ahcicontroller->{$controller}=1;
26ee04b6 4069 }
46f58b5f 4070
5921764c
SR
4071 my $pbs_conf = $pbs_backing->{$ds};
4072 my $pbs_name = undef;
4073 if ($pbs_conf) {
4074 $pbs_name = "drive-$ds-pbs";
4075 push @$devices, '-blockdev', print_pbs_blockdev($pbs_conf, $pbs_name);
4076 }
4077
6d5673c3
SR
4078 my $drive_cmd = print_drive_commandline_full(
4079 $storecfg, $vmid, $drive, $pbs_name, min_version($kvmver, 6, 0));
3dc33a72
FG
4080
4081 # extra protection for templates, but SATA and IDE don't support it..
75748d44 4082 $drive_cmd .= ',readonly=on' if drive_is_read_only($conf, $drive);
4ef13a7f 4083
15b21acc 4084 push @$devices, '-drive',$drive_cmd;
4df98f2f
TL
4085 push @$devices, '-device', print_drivedevice_full(
4086 $storecfg, $conf, $vmid, $drive, $bridges, $arch, $machine_type);
1e3baf05
DM
4087 });
4088
cc4d6182 4089 for (my $i = 0; $i < $MAX_NETS; $i++) {
2141a802
SR
4090 my $netname = "net$i";
4091
4092 next if !$conf->{$netname};
4093 my $d = parse_net($conf->{$netname});
d0a86b24 4094 next if !$d;
4ddd2ca2 4095 # save the MAC addr here (could be auto-gen. in some odd setups) for FDB registering later?
1e3baf05 4096
d0a86b24 4097 $use_virtio = 1 if $d->{model} eq 'virtio';
1e3baf05 4098
2141a802 4099 $d->{bootindex} = $bootorder->{$netname} if $bootorder->{$netname};
1e3baf05 4100
2141a802 4101 my $netdevfull = print_netdev_full($vmid, $conf, $arch, $d, $netname);
d0a86b24 4102 push @$devices, '-netdev', $netdevfull;
5bdcf937 4103
d0a86b24 4104 my $netdevicefull = print_netdevice_full(
0c03a390 4105 $vmid, $conf, $d, $netname, $bridges, $use_old_bios_files, $arch, $machine_type, $machine_version);
4df98f2f 4106
d0a86b24 4107 push @$devices, '-device', $netdevicefull;
5bdcf937 4108 }
1e3baf05 4109
6dbcb073 4110 if ($conf->{ivshmem}) {
4df98f2f 4111 my $ivshmem = parse_property_string($ivshmem_fmt, $conf->{ivshmem});
e3c27a6a 4112
6dbcb073
DC
4113 my $bus;
4114 if ($q35) {
4115 $bus = print_pcie_addr("ivshmem");
4116 } else {
4117 $bus = print_pci_addr("ivshmem", $bridges, $arch, $machine_type);
4118 }
e3c27a6a
TL
4119
4120 my $ivshmem_name = $ivshmem->{name} // $vmid;
4121 my $path = '/dev/shm/pve-shm-' . $ivshmem_name;
4122
6dbcb073 4123 push @$devices, '-device', "ivshmem-plain,memdev=ivshmem$bus,";
4df98f2f
TL
4124 push @$devices, '-object', "memory-backend-file,id=ivshmem,share=on,mem-path=$path"
4125 .",size=$ivshmem->{size}M";
6dbcb073
DC
4126 }
4127
2513b862
DC
4128 # pci.4 is nested in pci.1
4129 $bridges->{1} = 1 if $bridges->{4};
4130
3326ae19
TL
4131 if (!$q35) { # add pci bridges
4132 if (min_version($machine_version, 2, 3)) {
fc79e813
AD
4133 $bridges->{1} = 1;
4134 $bridges->{2} = 1;
4135 }
6731a4cf 4136 $bridges->{3} = 1 if $scsihw =~ m/^virtio-scsi-single/;
2513b862
DC
4137 }
4138
4139 for my $k (sort {$b cmp $a} keys %$bridges) {
4140 next if $q35 && $k < 4; # q35.cfg already includes bridges up to 3
13d68979
SR
4141
4142 my $k_name = $k;
4143 if ($k == 2 && $legacy_igd) {
4144 $k_name = "$k-igd";
4145 }
3326ae19 4146 my $pciaddr = print_pci_addr("pci.$k_name", undef, $arch, $machine_type);
2513b862 4147 my $devstr = "pci-bridge,id=pci.$k,chassis_nr=$k$pciaddr";
3326ae19
TL
4148
4149 if ($q35) { # add after -readconfig pve-q35.cfg
2513b862
DC
4150 splice @$devices, 2, 0, '-device', $devstr;
4151 } else {
4152 unshift @$devices, '-device', $devstr if $k > 0;
f8e83f05 4153 }
19672434
DM
4154 }
4155
ac0077cc
SR
4156 if (!$kvm) {
4157 push @$machineFlags, 'accel=tcg';
4158 }
4159
e4263214 4160 push @$machineFlags, 'smm=off' if should_disable_smm($conf, $vga, $machine_type);
e5a6919c 4161
ac0077cc
SR
4162 my $machine_type_min = $machine_type;
4163 if ($add_pve_version) {
4164 $machine_type_min =~ s/\+pve\d+$//;
4165 $machine_type_min .= "+pve$required_pve_version";
4166 }
4167 push @$machineFlags, "type=${machine_type_min}";
4168
5bdcf937 4169 push @$cmd, @$devices;
2f6f002c
TL
4170 push @$cmd, '-rtc', join(',', @$rtcFlags) if scalar(@$rtcFlags);
4171 push @$cmd, '-machine', join(',', @$machineFlags) if scalar(@$machineFlags);
4172 push @$cmd, '-global', join(',', @$globalFlags) if scalar(@$globalFlags);
8c559505 4173
7ceade4c
DC
4174 if (my $vmstate = $conf->{vmstate}) {
4175 my $statepath = PVE::Storage::path($storecfg, $vmstate);
24d1f93a 4176 push @$vollist, $vmstate;
7ceade4c 4177 push @$cmd, '-loadstate', $statepath;
b85666cf 4178 print "activating and using '$vmstate' as vmstate\n";
7ceade4c
DC
4179 }
4180
85fcf79e
FG
4181 if (PVE::QemuConfig->is_template($conf)) {
4182 # needed to workaround base volumes being read-only
4183 push @$cmd, '-snapshot';
4184 }
4185
76350670
DC
4186 # add custom args
4187 if ($conf->{args}) {
4188 my $aa = PVE::Tools::split_args($conf->{args});
4189 push @$cmd, @$aa;
4190 }
4191
1d794448 4192 return wantarray ? ($cmd, $vollist, $spice_port) : $cmd;
1e3baf05 4193}
19672434 4194
05853188
SR
4195sub check_rng_source {
4196 my ($source) = @_;
4197
4198 # mostly relevant for /dev/hwrng, but doesn't hurt to check others too
4199 die "cannot create VirtIO RNG device: source file '$source' doesn't exist\n"
4200 if ! -e $source;
4201
4202 my $rng_current = '/sys/devices/virtual/misc/hw_random/rng_current';
4203 if ($source eq '/dev/hwrng' && file_read_firstline($rng_current) eq 'none') {
4df98f2f
TL
4204 # Needs to abort, otherwise QEMU crashes on first rng access. Note that rng_current cannot
4205 # be changed to 'none' manually, so once the VM is past this point, it's no longer an issue.
4206 die "Cannot start VM with passed-through RNG device: '/dev/hwrng' exists, but"
4207 ." '$rng_current' is set to 'none'. Ensure that a compatible hardware-RNG is attached"
4208 ." to the host.\n";
05853188
SR
4209 }
4210}
4211
943340a6 4212sub spice_port {
1011b570 4213 my ($vmid) = @_;
943340a6 4214
0a13e08e 4215 my $res = mon_cmd($vmid, 'query-spice');
943340a6
DM
4216
4217 return $res->{'tls-port'} || $res->{'port'} || die "no spice port\n";
1011b570
DM
4218}
4219
86fdcfb2
DA
4220sub vm_devices_list {
4221 my ($vmid) = @_;
4222
0a13e08e 4223 my $res = mon_cmd($vmid, 'query-pci');
f721624b 4224 my $devices_to_check = [];
ceea9078
DM
4225 my $devices = {};
4226 foreach my $pcibus (@$res) {
f721624b
DC
4227 push @$devices_to_check, @{$pcibus->{devices}},
4228 }
4229
4230 while (@$devices_to_check) {
4231 my $to_check = [];
4232 for my $d (@$devices_to_check) {
4233 $devices->{$d->{'qdev_id'}} = 1 if $d->{'qdev_id'};
b3a3e929 4234 next if !$d->{'pci_bridge'} || !$d->{'pci_bridge'}->{devices};
f721624b
DC
4235
4236 $devices->{$d->{'qdev_id'}} += scalar(@{$d->{'pci_bridge'}->{devices}});
4237 push @$to_check, @{$d->{'pci_bridge'}->{devices}};
f78cc802 4238 }
f721624b 4239 $devices_to_check = $to_check;
f78cc802
AD
4240 }
4241
0a13e08e 4242 my $resblock = mon_cmd($vmid, 'query-block');
f78cc802
AD
4243 foreach my $block (@$resblock) {
4244 if($block->{device} =~ m/^drive-(\S+)/){
4245 $devices->{$1} = 1;
1dc4f496
DM
4246 }
4247 }
86fdcfb2 4248
0a13e08e 4249 my $resmice = mon_cmd($vmid, 'query-mice');
3d7389fe
DM
4250 foreach my $mice (@$resmice) {
4251 if ($mice->{name} eq 'QEMU HID Tablet') {
4252 $devices->{tablet} = 1;
4253 last;
4254 }
4255 }
4256
deb091c5
DC
4257 # for usb devices there is no query-usb
4258 # but we can iterate over the entries in
4259 # qom-list path=/machine/peripheral
0a13e08e 4260 my $resperipheral = mon_cmd($vmid, 'qom-list', path => '/machine/peripheral');
deb091c5 4261 foreach my $per (@$resperipheral) {
c60cad61 4262 if ($per->{name} =~ m/^usb(?:redirdev)?\d+$/) {
deb091c5
DC
4263 $devices->{$per->{name}} = 1;
4264 }
4265 }
4266
1dc4f496 4267 return $devices;
86fdcfb2
DA
4268}
4269
ec21aa11 4270sub vm_deviceplug {
d559309f 4271 my ($storecfg, $conf, $vmid, $deviceid, $device, $arch, $machine_type) = @_;
ae57f6b3 4272
3392d6ca 4273 my $q35 = PVE::QemuServer::Machine::machine_type_is_q35($conf);
db656e5f 4274
95d6343b
DA
4275 my $devices_list = vm_devices_list($vmid);
4276 return 1 if defined($devices_list->{$deviceid});
4277
4df98f2f
TL
4278 # add PCI bridge if we need it for the device
4279 qemu_add_pci_bridge($storecfg, $conf, $vmid, $deviceid, $arch, $machine_type);
fee46675 4280
3d7389fe 4281 if ($deviceid eq 'tablet') {
d559309f 4282 qemu_deviceadd($vmid, print_tabletdevice_full($conf, $arch));
d559309f 4283 } elsif ($deviceid eq 'keyboard') {
d559309f 4284 qemu_deviceadd($vmid, print_keyboarddevice_full($conf, $arch));
c60cad61
DC
4285 } elsif ($deviceid =~ m/^usbredirdev(\d+)$/) {
4286 my $id = $1;
4287 qemu_spice_usbredir_chardev_add($vmid, "usbredirchardev$id");
4288 qemu_deviceadd($vmid, PVE::QemuServer::USB::print_spice_usbdevice($id, "xhci", $id + 1));
4eb68604 4289 } elsif ($deviceid =~ m/^usb(\d+)$/) {
c60cad61 4290 qemu_deviceadd($vmid, PVE::QemuServer::USB::print_usbdevice_full($conf, $deviceid, $device, {}, $1 + 1));
fee46675 4291 } elsif ($deviceid =~ m/^(virtio)(\d+)$/) {
22de899a
AD
4292 qemu_iothread_add($vmid, $deviceid, $device);
4293
3326ae19
TL
4294 qemu_driveadd($storecfg, $vmid, $device);
4295 my $devicefull = print_drivedevice_full($storecfg, $conf, $vmid, $device, undef, $arch, $machine_type);
fee46675 4296
3326ae19 4297 qemu_deviceadd($vmid, $devicefull);
fee46675
DM
4298 eval { qemu_deviceaddverify($vmid, $deviceid); };
4299 if (my $err = $@) {
63c2da2f
DM
4300 eval { qemu_drivedel($vmid, $deviceid); };
4301 warn $@ if $@;
fee46675 4302 die $err;
5e5dcb73 4303 }
2733141c 4304 } elsif ($deviceid =~ m/^(virtioscsi|scsihw)(\d+)$/) {
3326ae19
TL
4305 my $scsihw = defined($conf->{scsihw}) ? $conf->{scsihw} : "lsi";
4306 my $pciaddr = print_pci_addr($deviceid, undef, $arch, $machine_type);
a1b7d579 4307 my $scsihw_type = $scsihw eq 'virtio-scsi-single' ? "virtio-scsi-pci" : $scsihw;
2733141c 4308
3326ae19 4309 my $devicefull = "$scsihw_type,id=$deviceid$pciaddr";
fee46675 4310
fc8b40fd
AD
4311 if($deviceid =~ m/^virtioscsi(\d+)$/ && $device->{iothread}) {
4312 qemu_iothread_add($vmid, $deviceid, $device);
4313 $devicefull .= ",iothread=iothread-$deviceid";
4314 }
4315
6e11f143
AD
4316 if($deviceid =~ m/^virtioscsi(\d+)$/ && $device->{queues}) {
4317 $devicefull .= ",num_queues=$device->{queues}";
4318 }
4319
3326ae19
TL
4320 qemu_deviceadd($vmid, $devicefull);
4321 qemu_deviceaddverify($vmid, $deviceid);
fee46675 4322 } elsif ($deviceid =~ m/^(scsi)(\d+)$/) {
d559309f 4323 qemu_findorcreatescsihw($storecfg,$conf, $vmid, $device, $arch, $machine_type);
fee46675 4324 qemu_driveadd($storecfg, $vmid, $device);
a1b7d579 4325
acfc6ef8 4326 my $devicefull = print_drivedevice_full($storecfg, $conf, $vmid, $device, undef, $arch, $machine_type);
fee46675
DM
4327 eval { qemu_deviceadd($vmid, $devicefull); };
4328 if (my $err = $@) {
63c2da2f
DM
4329 eval { qemu_drivedel($vmid, $deviceid); };
4330 warn $@ if $@;
fee46675 4331 die $err;
a4f091a0 4332 }
fee46675 4333 } elsif ($deviceid =~ m/^(net)(\d+)$/) {
d1c1af4b 4334 return if !qemu_netdevadd($vmid, $conf, $arch, $device, $deviceid);
8718099c 4335
3392d6ca 4336 my $machine_type = PVE::QemuServer::Machine::qemu_machine_pxe($vmid, $conf);
0c03a390 4337 my $machine_version = PVE::QemuServer::Machine::extract_version($machine_type);
95d3be58
DC
4338 my $use_old_bios_files = undef;
4339 ($use_old_bios_files, $machine_type) = qemu_use_old_bios_files($machine_type);
8718099c 4340
4df98f2f 4341 my $netdevicefull = print_netdevice_full(
0c03a390 4342 $vmid, $conf, $device, $deviceid, undef, $use_old_bios_files, $arch, $machine_type, $machine_version);
95d3be58 4343 qemu_deviceadd($vmid, $netdevicefull);
79046fd1
DC
4344 eval {
4345 qemu_deviceaddverify($vmid, $deviceid);
4346 qemu_set_link_status($vmid, $deviceid, !$device->{link_down});
4347 };
fee46675
DM
4348 if (my $err = $@) {
4349 eval { qemu_netdevdel($vmid, $deviceid); };
4350 warn $@ if $@;
4351 die $err;
95d3be58 4352 }
fee46675 4353 } elsif (!$q35 && $deviceid =~ m/^(pci\.)(\d+)$/) {
40f28a9f 4354 my $bridgeid = $2;
d559309f 4355 my $pciaddr = print_pci_addr($deviceid, undef, $arch, $machine_type);
40f28a9f 4356 my $devicefull = "pci-bridge,id=pci.$bridgeid,chassis_nr=$bridgeid$pciaddr";
a1b7d579 4357
40f28a9f 4358 qemu_deviceadd($vmid, $devicefull);
fee46675 4359 qemu_deviceaddverify($vmid, $deviceid);
fee46675 4360 } else {
a1b7d579 4361 die "can't hotplug device '$deviceid'\n";
40f28a9f
AD
4362 }
4363
5e5dcb73 4364 return 1;
a4dea331
DA
4365}
4366
3eec5767 4367# fixme: this should raise exceptions on error!
ec21aa11 4368sub vm_deviceunplug {
f19d1c47 4369 my ($vmid, $conf, $deviceid) = @_;
873c2d69 4370
95d6343b
DA
4371 my $devices_list = vm_devices_list($vmid);
4372 return 1 if !defined($devices_list->{$deviceid});
4373
2141a802
SR
4374 my $bootdisks = PVE::QemuServer::Drive::get_bootdisks($conf);
4375 die "can't unplug bootdisk '$deviceid'\n" if grep {$_ eq $deviceid} @$bootdisks;
63c2da2f 4376
c60cad61 4377 if ($deviceid eq 'tablet' || $deviceid eq 'keyboard' || $deviceid eq 'xhci') {
3d7389fe 4378 qemu_devicedel($vmid, $deviceid);
c60cad61
DC
4379 } elsif ($deviceid =~ m/^usbredirdev\d+$/) {
4380 qemu_devicedel($vmid, $deviceid);
4381 qemu_devicedelverify($vmid, $deviceid);
4eb68604 4382 } elsif ($deviceid =~ m/^usb\d+$/) {
c60cad61
DC
4383 qemu_devicedel($vmid, $deviceid);
4384 qemu_devicedelverify($vmid, $deviceid);
63c2da2f 4385 } elsif ($deviceid =~ m/^(virtio)(\d+)$/) {
9a66c311 4386 my $device = parse_drive($deviceid, $conf->{$deviceid});
f19d1c47 4387
a8d0fec3
TL
4388 qemu_devicedel($vmid, $deviceid);
4389 qemu_devicedelverify($vmid, $deviceid);
4390 qemu_drivedel($vmid, $deviceid);
9a66c311 4391 qemu_iothread_del($vmid, $deviceid, $device);
2733141c 4392 } elsif ($deviceid =~ m/^(virtioscsi|scsihw)(\d+)$/) {
63c2da2f 4393 qemu_devicedel($vmid, $deviceid);
8ce30dde 4394 qemu_devicedelverify($vmid, $deviceid);
63c2da2f 4395 } elsif ($deviceid =~ m/^(scsi)(\d+)$/) {
9a66c311 4396 my $device = parse_drive($deviceid, $conf->{$deviceid});
cfc817c7 4397
a8d0fec3 4398 qemu_devicedel($vmid, $deviceid);
52b361af 4399 qemu_devicedelverify($vmid, $deviceid);
a8d0fec3 4400 qemu_drivedel($vmid, $deviceid);
a1b7d579 4401 qemu_deletescsihw($conf, $vmid, $deviceid);
8ce30dde 4402
9a66c311
FG
4403 qemu_iothread_del($vmid, "virtioscsi$device->{index}", $device)
4404 if $conf->{scsihw} && ($conf->{scsihw} eq 'virtio-scsi-single');
63c2da2f 4405 } elsif ($deviceid =~ m/^(net)(\d+)$/) {
a8d0fec3
TL
4406 qemu_devicedel($vmid, $deviceid);
4407 qemu_devicedelverify($vmid, $deviceid);
4408 qemu_netdevdel($vmid, $deviceid);
63c2da2f
DM
4409 } else {
4410 die "can't unplug device '$deviceid'\n";
2630d2a9
DA
4411 }
4412
5e5dcb73
DA
4413 return 1;
4414}
4415
c60cad61
DC
4416sub qemu_spice_usbredir_chardev_add {
4417 my ($vmid, $id) = @_;
4418
4419 mon_cmd($vmid, "chardev-add" , (
4420 id => $id,
4421 backend => {
4422 type => 'spicevmc',
4423 data => {
4424 type => "usbredir",
4425 },
4426 },
4427 ));
4428}
4429
5e5dcb73
DA
4430sub qemu_deviceadd {
4431 my ($vmid, $devicefull) = @_;
873c2d69 4432
d695b5b7
AD
4433 $devicefull = "driver=".$devicefull;
4434 my %options = split(/[=,]/, $devicefull);
f19d1c47 4435
0a13e08e 4436 mon_cmd($vmid, "device_add" , %options);
5e5dcb73 4437}
afdb31d5 4438
5e5dcb73 4439sub qemu_devicedel {
fee46675 4440 my ($vmid, $deviceid) = @_;
63c2da2f 4441
0a13e08e 4442 my $ret = mon_cmd($vmid, "device_del", id => $deviceid);
5e5dcb73
DA
4443}
4444
22de899a 4445sub qemu_iothread_add {
a8d0fec3 4446 my ($vmid, $deviceid, $device) = @_;
22de899a
AD
4447
4448 if ($device->{iothread}) {
4449 my $iothreads = vm_iothreads_list($vmid);
4450 qemu_objectadd($vmid, "iothread-$deviceid", "iothread") if !$iothreads->{"iothread-$deviceid"};
4451 }
4452}
4453
4454sub qemu_iothread_del {
a8d0fec3 4455 my ($vmid, $deviceid, $device) = @_;
22de899a 4456
22de899a
AD
4457 if ($device->{iothread}) {
4458 my $iothreads = vm_iothreads_list($vmid);
4459 qemu_objectdel($vmid, "iothread-$deviceid") if $iothreads->{"iothread-$deviceid"};
4460 }
4461}
4462
4d3f29ed 4463sub qemu_objectadd {
a8d0fec3 4464 my ($vmid, $objectid, $qomtype) = @_;
4d3f29ed 4465
0a13e08e 4466 mon_cmd($vmid, "object-add", id => $objectid, "qom-type" => $qomtype);
4d3f29ed
AD
4467
4468 return 1;
4469}
4470
4471sub qemu_objectdel {
a8d0fec3 4472 my ($vmid, $objectid) = @_;
4d3f29ed 4473
0a13e08e 4474 mon_cmd($vmid, "object-del", id => $objectid);
4d3f29ed
AD
4475
4476 return 1;
4477}
4478
5e5dcb73 4479sub qemu_driveadd {
fee46675 4480 my ($storecfg, $vmid, $device) = @_;
5e5dcb73 4481
6d5673c3
SR
4482 my $kvmver = get_running_qemu_version($vmid);
4483 my $io_uring = min_version($kvmver, 6, 0);
4484 my $drive = print_drive_commandline_full($storecfg, $vmid, $device, undef, $io_uring);
7a69fc3c 4485 $drive =~ s/\\/\\\\/g;
0a13e08e 4486 my $ret = PVE::QemuServer::Monitor::hmp_cmd($vmid, "drive_add auto \"$drive\"");
fee46675 4487
5e5dcb73 4488 # If the command succeeds qemu prints: "OK"
fee46675
DM
4489 return 1 if $ret =~ m/OK/s;
4490
4491 die "adding drive failed: $ret\n";
5e5dcb73 4492}
afdb31d5 4493
5e5dcb73 4494sub qemu_drivedel {
a8d0fec3 4495 my ($vmid, $deviceid) = @_;
873c2d69 4496
0a13e08e 4497 my $ret = PVE::QemuServer::Monitor::hmp_cmd($vmid, "drive_del drive-$deviceid");
5e5dcb73 4498 $ret =~ s/^\s+//;
a1b7d579 4499
63c2da2f 4500 return 1 if $ret eq "";
a1b7d579 4501
63c2da2f 4502 # NB: device not found errors mean the drive was auto-deleted and we ignore the error
a1b7d579
DM
4503 return 1 if $ret =~ m/Device \'.*?\' not found/s;
4504
63c2da2f 4505 die "deleting drive $deviceid failed : $ret\n";
5e5dcb73 4506}
f19d1c47 4507
5e5dcb73 4508sub qemu_deviceaddverify {
fee46675 4509 my ($vmid, $deviceid) = @_;
873c2d69 4510
5e5dcb73
DA
4511 for (my $i = 0; $i <= 5; $i++) {
4512 my $devices_list = vm_devices_list($vmid);
4513 return 1 if defined($devices_list->{$deviceid});
4514 sleep 1;
afdb31d5 4515 }
fee46675
DM
4516
4517 die "error on hotplug device '$deviceid'\n";
5e5dcb73 4518}
afdb31d5 4519
5e5dcb73
DA
4520
4521sub qemu_devicedelverify {
63c2da2f
DM
4522 my ($vmid, $deviceid) = @_;
4523
a1b7d579 4524 # need to verify that the device is correctly removed as device_del
63c2da2f 4525 # is async and empty return is not reliable
5e5dcb73 4526
5e5dcb73
DA
4527 for (my $i = 0; $i <= 5; $i++) {
4528 my $devices_list = vm_devices_list($vmid);
4529 return 1 if !defined($devices_list->{$deviceid});
4530 sleep 1;
afdb31d5 4531 }
63c2da2f
DM
4532
4533 die "error on hot-unplugging device '$deviceid'\n";
873c2d69
DA
4534}
4535
cdd20088 4536sub qemu_findorcreatescsihw {
d559309f 4537 my ($storecfg, $conf, $vmid, $device, $arch, $machine_type) = @_;
cfc817c7 4538
ee034f5c 4539 my ($maxdev, $controller, $controller_prefix) = scsihw_infos($conf, $device);
2733141c
AD
4540
4541 my $scsihwid="$controller_prefix$controller";
cfc817c7
DA
4542 my $devices_list = vm_devices_list($vmid);
4543
a8d0fec3 4544 if (!defined($devices_list->{$scsihwid})) {
d559309f 4545 vm_deviceplug($storecfg, $conf, $vmid, $scsihwid, $device, $arch, $machine_type);
cfc817c7 4546 }
fee46675 4547
cfc817c7
DA
4548 return 1;
4549}
4550
8ce30dde
AD
4551sub qemu_deletescsihw {
4552 my ($conf, $vmid, $opt) = @_;
4553
4554 my $device = parse_drive($opt, $conf->{$opt});
4555
a1511b3c 4556 if ($conf->{scsihw} && ($conf->{scsihw} eq 'virtio-scsi-single')) {
2733141c
AD
4557 vm_deviceunplug($vmid, $conf, "virtioscsi$device->{index}");
4558 return 1;
4559 }
4560
ee034f5c 4561 my ($maxdev, $controller, $controller_prefix) = scsihw_infos($conf, $device);
8ce30dde
AD
4562
4563 my $devices_list = vm_devices_list($vmid);
4564 foreach my $opt (keys %{$devices_list}) {
e0fd2b2f
FE
4565 if (is_valid_drivename($opt)) {
4566 my $drive = parse_drive($opt, $conf->{$opt});
a8d0fec3 4567 if ($drive->{interface} eq 'scsi' && $drive->{index} < (($maxdev-1)*($controller+1))) {
8ce30dde
AD
4568 return 1;
4569 }
4570 }
4571 }
4572
4573 my $scsihwid="scsihw$controller";
4574
4575 vm_deviceunplug($vmid, $conf, $scsihwid);
4576
4577 return 1;
4578}
4579
281fedb3 4580sub qemu_add_pci_bridge {
d559309f 4581 my ($storecfg, $conf, $vmid, $device, $arch, $machine_type) = @_;
40f28a9f
AD
4582
4583 my $bridges = {};
281fedb3
DM
4584
4585 my $bridgeid;
4586
d559309f 4587 print_pci_addr($device, $bridges, $arch, $machine_type);
40f28a9f
AD
4588
4589 while (my ($k, $v) = each %$bridges) {
4590 $bridgeid = $k;
4591 }
fee46675 4592 return 1 if !defined($bridgeid) || $bridgeid < 1;
281fedb3 4593
40f28a9f
AD
4594 my $bridge = "pci.$bridgeid";
4595 my $devices_list = vm_devices_list($vmid);
4596
281fedb3 4597 if (!defined($devices_list->{$bridge})) {
d559309f 4598 vm_deviceplug($storecfg, $conf, $vmid, $bridge, $arch, $machine_type);
40f28a9f 4599 }
281fedb3 4600
40f28a9f
AD
4601 return 1;
4602}
4603
25088687
DM
4604sub qemu_set_link_status {
4605 my ($vmid, $device, $up) = @_;
4606
0a13e08e 4607 mon_cmd($vmid, "set_link", name => $device,
25088687
DM
4608 up => $up ? JSON::true : JSON::false);
4609}
4610
2630d2a9 4611sub qemu_netdevadd {
d559309f 4612 my ($vmid, $conf, $arch, $device, $deviceid) = @_;
2630d2a9 4613
d559309f 4614 my $netdev = print_netdev_full($vmid, $conf, $arch, $device, $deviceid, 1);
73aa03b8 4615 my %options = split(/[=,]/, $netdev);
2630d2a9 4616
bf5aef9b
DC
4617 if (defined(my $vhost = $options{vhost})) {
4618 $options{vhost} = JSON::boolean(PVE::JSONSchema::parse_boolean($vhost));
4619 }
4620
4621 if (defined(my $queues = $options{queues})) {
4622 $options{queues} = $queues + 0;
4623 }
4624
0a13e08e 4625 mon_cmd($vmid, "netdev_add", %options);
73aa03b8 4626 return 1;
2630d2a9
DA
4627}
4628
4629sub qemu_netdevdel {
4630 my ($vmid, $deviceid) = @_;
4631
0a13e08e 4632 mon_cmd($vmid, "netdev_del", id => $deviceid);
2630d2a9
DA
4633}
4634
16521d63 4635sub qemu_usb_hotplug {
d559309f 4636 my ($storecfg, $conf, $vmid, $deviceid, $device, $arch, $machine_type) = @_;
16521d63
DC
4637
4638 return if !$device;
4639
4640 # remove the old one first
4641 vm_deviceunplug($vmid, $conf, $deviceid);
4642
4643 # check if xhci controller is necessary and available
c60cad61 4644 my $devicelist = vm_devices_list($vmid);
16521d63 4645
c60cad61
DC
4646 if (!$devicelist->{xhci}) {
4647 my $pciaddr = print_pci_addr("xhci", undef, $arch, $machine_type);
4648 qemu_deviceadd($vmid, PVE::QemuServer::USB::print_qemu_xhci_controller($pciaddr));
16521d63 4649 }
c60cad61
DC
4650
4651 # print_usbdevice_full expects the parsed device
16521d63
DC
4652 my $d = parse_usb_device($device->{host});
4653 $d->{usb3} = $device->{usb3};
4654
4655 # add the new one
d559309f 4656 vm_deviceplug($storecfg, $conf, $vmid, $deviceid, $d, $arch, $machine_type);
16521d63
DC
4657}
4658
838776ab 4659sub qemu_cpu_hotplug {
8edc9c08 4660 my ($vmid, $conf, $vcpus) = @_;
838776ab 4661
3392d6ca 4662 my $machine_type = PVE::QemuServer::Machine::get_current_qemu_machine($vmid);
1e881b75 4663
8edc9c08
AD
4664 my $sockets = 1;
4665 $sockets = $conf->{smp} if $conf->{smp}; # old style - no longer iused
4666 $sockets = $conf->{sockets} if $conf->{sockets};
4667 my $cores = $conf->{cores} || 1;
4668 my $maxcpus = $sockets * $cores;
838776ab 4669
8edc9c08 4670 $vcpus = $maxcpus if !$vcpus;
3a11fadb 4671
8edc9c08
AD
4672 die "you can't add more vcpus than maxcpus\n"
4673 if $vcpus > $maxcpus;
3a11fadb 4674
8edc9c08 4675 my $currentvcpus = $conf->{vcpus} || $maxcpus;
1e881b75 4676
eba3e64d 4677 if ($vcpus < $currentvcpus) {
1e881b75 4678
2ea5fb7e 4679 if (PVE::QemuServer::Machine::machine_version($machine_type, 2, 7)) {
1e881b75
AD
4680
4681 for (my $i = $currentvcpus; $i > $vcpus; $i--) {
4682 qemu_devicedel($vmid, "cpu$i");
4683 my $retry = 0;
4684 my $currentrunningvcpus = undef;
4685 while (1) {
65af8c31 4686 $currentrunningvcpus = mon_cmd($vmid, "query-cpus-fast");
1e881b75 4687 last if scalar(@{$currentrunningvcpus}) == $i-1;
961af8a3 4688 raise_param_exc({ vcpus => "error unplugging cpu$i" }) if $retry > 5;
1e881b75
AD
4689 $retry++;
4690 sleep 1;
4691 }
4692 #update conf after each succesfull cpu unplug
4693 $conf->{vcpus} = scalar(@{$currentrunningvcpus});
4694 PVE::QemuConfig->write_config($vmid, $conf);
4695 }
4696 } else {
961af8a3 4697 die "cpu hot-unplugging requires qemu version 2.7 or higher\n";
1e881b75
AD
4698 }
4699
4700 return;
4701 }
838776ab 4702
65af8c31 4703 my $currentrunningvcpus = mon_cmd($vmid, "query-cpus-fast");
961af8a3 4704 die "vcpus in running vm does not match its configuration\n"
8edc9c08 4705 if scalar(@{$currentrunningvcpus}) != $currentvcpus;
838776ab 4706
2ea5fb7e 4707 if (PVE::QemuServer::Machine::machine_version($machine_type, 2, 7)) {
eba3e64d
AD
4708
4709 for (my $i = $currentvcpus+1; $i <= $vcpus; $i++) {
4710 my $cpustr = print_cpu_device($conf, $i);
4711 qemu_deviceadd($vmid, $cpustr);
4712
4713 my $retry = 0;
4714 my $currentrunningvcpus = undef;
4715 while (1) {
65af8c31 4716 $currentrunningvcpus = mon_cmd($vmid, "query-cpus-fast");
eba3e64d 4717 last if scalar(@{$currentrunningvcpus}) == $i;
961af8a3 4718 raise_param_exc({ vcpus => "error hotplugging cpu$i" }) if $retry > 10;
eba3e64d
AD
4719 sleep 1;
4720 $retry++;
4721 }
4722 #update conf after each succesfull cpu hotplug
4723 $conf->{vcpus} = scalar(@{$currentrunningvcpus});
4724 PVE::QemuConfig->write_config($vmid, $conf);
4725 }
4726 } else {
4727
4728 for (my $i = $currentvcpus; $i < $vcpus; $i++) {
0a13e08e 4729 mon_cmd($vmid, "cpu-add", id => int($i));
eba3e64d 4730 }
838776ab
AD
4731 }
4732}
4733
affd2f88 4734sub qemu_block_set_io_throttle {
277ca170
WB
4735 my ($vmid, $deviceid,
4736 $bps, $bps_rd, $bps_wr, $iops, $iops_rd, $iops_wr,
9196a8ec
WB
4737 $bps_max, $bps_rd_max, $bps_wr_max, $iops_max, $iops_rd_max, $iops_wr_max,
4738 $bps_max_length, $bps_rd_max_length, $bps_wr_max_length,
4739 $iops_max_length, $iops_rd_max_length, $iops_wr_max_length) = @_;
affd2f88 4740
f3f323a3
AD
4741 return if !check_running($vmid) ;
4742
0a13e08e 4743 mon_cmd($vmid, "block_set_io_throttle", device => $deviceid,
277ca170
WB
4744 bps => int($bps),
4745 bps_rd => int($bps_rd),
4746 bps_wr => int($bps_wr),
4747 iops => int($iops),
4748 iops_rd => int($iops_rd),
4749 iops_wr => int($iops_wr),
4750 bps_max => int($bps_max),
4751 bps_rd_max => int($bps_rd_max),
4752 bps_wr_max => int($bps_wr_max),
4753 iops_max => int($iops_max),
4754 iops_rd_max => int($iops_rd_max),
9196a8ec
WB
4755 iops_wr_max => int($iops_wr_max),
4756 bps_max_length => int($bps_max_length),
4757 bps_rd_max_length => int($bps_rd_max_length),
4758 bps_wr_max_length => int($bps_wr_max_length),
4759 iops_max_length => int($iops_max_length),
4760 iops_rd_max_length => int($iops_rd_max_length),
4761 iops_wr_max_length => int($iops_wr_max_length),
277ca170 4762 );
f3f323a3 4763
affd2f88
AD
4764}
4765
c1175c92
AD
4766sub qemu_block_resize {
4767 my ($vmid, $deviceid, $storecfg, $volid, $size) = @_;
4768
ed221350 4769 my $running = check_running($vmid);
c1175c92 4770
2e4357c5 4771 PVE::Storage::volume_resize($storecfg, $volid, $size, $running);
c1175c92
AD
4772
4773 return if !$running;
4774
375db731
FE
4775 my $padding = (1024 - $size % 1024) % 1024;
4776 $size = $size + $padding;
4777
190c8461
SR
4778 mon_cmd(
4779 $vmid,
4780 "block_resize",
4781 device => $deviceid,
4782 size => int($size),
4783 timeout => 60,
4784 );
c1175c92
AD
4785}
4786
1ab0057c
AD
4787sub qemu_volume_snapshot {
4788 my ($vmid, $deviceid, $storecfg, $volid, $snap) = @_;
4789
ed221350 4790 my $running = check_running($vmid);
1ab0057c 4791
9d83932d 4792 if ($running && do_snapshots_with_qemu($storecfg, $volid, $deviceid)) {
0a13e08e 4793 mon_cmd($vmid, 'blockdev-snapshot-internal-sync', device => $deviceid, name => $snap);
e5eaa028
WL
4794 } else {
4795 PVE::Storage::volume_snapshot($storecfg, $volid, $snap);
4796 }
1ab0057c
AD
4797}
4798
fc46aff9
AD
4799sub qemu_volume_snapshot_delete {
4800 my ($vmid, $deviceid, $storecfg, $volid, $snap) = @_;
4801
ed221350 4802 my $running = check_running($vmid);
fc46aff9 4803
a2f1554b
AD
4804 if($running) {
4805
4806 $running = undef;
4807 my $conf = PVE::QemuConfig->load_config($vmid);
912792e2 4808 PVE::QemuConfig->foreach_volume($conf, sub {
a2f1554b
AD
4809 my ($ds, $drive) = @_;
4810 $running = 1 if $drive->{file} eq $volid;
4811 });
4812 }
4813
9d83932d 4814 if ($running && do_snapshots_with_qemu($storecfg, $volid, $deviceid)) {
0a13e08e 4815 mon_cmd($vmid, 'blockdev-snapshot-delete-internal-sync', device => $deviceid, name => $snap);
1ef7592f
AD
4816 } else {
4817 PVE::Storage::volume_snapshot_delete($storecfg, $volid, $snap, $running);
4818 }
fc46aff9
AD
4819}
4820
264e519f 4821sub set_migration_caps {
27a5be53 4822 my ($vmid, $savevm) = @_;
a89fded1 4823
acc10e51
SR
4824 my $qemu_support = eval { mon_cmd($vmid, "query-proxmox-support") };
4825
27a5be53
SR
4826 my $bitmap_prop = $savevm ? 'pbs-dirty-bitmap-savevm' : 'pbs-dirty-bitmap-migration';
4827 my $dirty_bitmaps = $qemu_support->{$bitmap_prop} ? 1 : 0;
4828
8b8345f3 4829 my $cap_ref = [];
a89fded1
AD
4830
4831 my $enabled_cap = {
8b8345f3 4832 "auto-converge" => 1,
0b0a47e8 4833 "xbzrle" => 1,
8b8345f3
DM
4834 "x-rdma-pin-all" => 0,
4835 "zero-blocks" => 0,
acc10e51 4836 "compress" => 0,
27a5be53 4837 "dirty-bitmaps" => $dirty_bitmaps,
a89fded1
AD
4838 };
4839
0a13e08e 4840 my $supported_capabilities = mon_cmd($vmid, "query-migrate-capabilities");
a89fded1 4841
8b8345f3 4842 for my $supported_capability (@$supported_capabilities) {
b463a3ce
SP
4843 push @$cap_ref, {
4844 capability => $supported_capability->{capability},
22430fa2
DM
4845 state => $enabled_cap->{$supported_capability->{capability}} ? JSON::true : JSON::false,
4846 };
a89fded1
AD
4847 }
4848
0a13e08e 4849 mon_cmd($vmid, "migrate-set-capabilities", capabilities => $cap_ref);
8b8345f3 4850}
a89fded1 4851
912792e2
FE
4852sub foreach_volid {
4853 my ($conf, $func, @param) = @_;
4854
4855 my $volhash = {};
4856
4857 my $test_volid = sub {
ae180b8f 4858 my ($key, $drive, $snapname) = @_;
912792e2 4859
ae180b8f 4860 my $volid = $drive->{file};
912792e2
FE
4861 return if !$volid;
4862
4863 $volhash->{$volid}->{cdrom} //= 1;
ae180b8f 4864 $volhash->{$volid}->{cdrom} = 0 if !drive_is_cdrom($drive);
912792e2 4865
ae180b8f 4866 my $replicate = $drive->{replicate} // 1;
912792e2
FE
4867 $volhash->{$volid}->{replicate} //= 0;
4868 $volhash->{$volid}->{replicate} = 1 if $replicate;
4869
4870 $volhash->{$volid}->{shared} //= 0;
ae180b8f 4871 $volhash->{$volid}->{shared} = 1 if $drive->{shared};
912792e2
FE
4872
4873 $volhash->{$volid}->{referenced_in_config} //= 0;
4874 $volhash->{$volid}->{referenced_in_config} = 1 if !defined($snapname);
4875
4876 $volhash->{$volid}->{referenced_in_snapshot}->{$snapname} = 1
4877 if defined($snapname);
ae180b8f
FE
4878
4879 my $size = $drive->{size};
4880 $volhash->{$volid}->{size} //= $size if $size;
4881
4882 $volhash->{$volid}->{is_vmstate} //= 0;
4883 $volhash->{$volid}->{is_vmstate} = 1 if $key eq 'vmstate';
4884
f9dde219
SR
4885 $volhash->{$volid}->{is_tpmstate} //= 0;
4886 $volhash->{$volid}->{is_tpmstate} = 1 if $key eq 'tpmstate0';
4887
ae180b8f
FE
4888 $volhash->{$volid}->{is_unused} //= 0;
4889 $volhash->{$volid}->{is_unused} = 1 if $key =~ /^unused\d+$/;
a6be63ac
FE
4890
4891 $volhash->{$volid}->{drivename} = $key if is_valid_drivename($key);
912792e2
FE
4892 };
4893
ae180b8f
FE
4894 my $include_opts = {
4895 extra_keys => ['vmstate'],
4896 include_unused => 1,
4897 };
4898
0b953b8e 4899 PVE::QemuConfig->foreach_volume_full($conf, $include_opts, $test_volid);
912792e2
FE
4900 foreach my $snapname (keys %{$conf->{snapshots}}) {
4901 my $snap = $conf->{snapshots}->{$snapname};
0b953b8e 4902 PVE::QemuConfig->foreach_volume_full($snap, $include_opts, $test_volid, $snapname);
912792e2
FE
4903 }
4904
4905 foreach my $volid (keys %$volhash) {
4906 &$func($volid, $volhash->{$volid}, @param);
4907 }
4908}
4909
81d95ae1 4910my $fast_plug_option = {
7498eb64 4911 'lock' => 1,
81d95ae1 4912 'name' => 1,
a1b7d579 4913 'onboot' => 1,
81d95ae1
DM
4914 'shares' => 1,
4915 'startup' => 1,
b0ec896e 4916 'description' => 1,
ec647db4 4917 'protection' => 1,
8cad5e9b 4918 'vmstatestorage' => 1,
9e784b11 4919 'hookscript' => 1,
b8e7068a 4920 'tags' => 1,
81d95ae1
DM
4921};
4922
71d9006b
AD
4923for my $opt (keys %$confdesc_cloudinit) {
4924 $fast_plug_option->{$opt} = 1;
4925};
4926
3a11fadb
DM
4927# hotplug changes in [PENDING]
4928# $selection hash can be used to only apply specified options, for
4929# example: { cores => 1 } (only apply changed 'cores')
4930# $errors ref is used to return error messages
c427973b 4931sub vmconfig_hotplug_pending {
3a11fadb 4932 my ($vmid, $conf, $storecfg, $selection, $errors) = @_;
c427973b 4933
8e90138a 4934 my $defaults = load_defaults();
045749f2
TL
4935 my $arch = get_vm_arch($conf);
4936 my $machine_type = get_vm_machine($conf, undef, $arch);
c427973b
DM
4937
4938 # commit values which do not have any impact on running VM first
3a11fadb
DM
4939 # Note: those option cannot raise errors, we we do not care about
4940 # $selection and always apply them.
4941
4942 my $add_error = sub {
4943 my ($opt, $msg) = @_;
4944 $errors->{$opt} = "hotplug problem - $msg";
4945 };
c427973b 4946
f16cf6c3
WB
4947 my $cloudinit_pending_properties = PVE::QemuServer::cloudinit_pending_properties();
4948
4949 my $cloudinit_record_changed = sub {
4950 my ($conf, $opt, $old, $new) = @_;
4951 return if !$cloudinit_pending_properties->{$opt};
4952
4953 my $ci = ($conf->{cloudinit} //= {});
4954
4955 my $recorded = $ci->{$opt};
a5409851
WB
4956 my %added = map { $_ => 1 } PVE::Tools::split_list(delete($ci->{added}) // '');
4957
4958 if (defined($new)) {
4959 if (defined($old)) {
4960 # an existing value is being modified
4961 if (defined($recorded)) {
4962 # the value was already not in sync
4963 if ($new eq $recorded) {
4964 # a value is being reverted to the cloud-init state:
4965 delete $ci->{$opt};
4966 delete $added{$opt};
4967 } else {
4968 # the value was changed multiple times, do nothing
4969 }
4970 } elsif ($added{$opt}) {
4971 # the value had been marked as added and is being changed, do nothing
4972 } else {
4973 # the value is new, record it:
4974 $ci->{$opt} = $old;
4975 }
f16cf6c3 4976 } else {
a5409851
WB
4977 # a new value is being added
4978 if (defined($recorded)) {
4979 # it was already not in sync
4980 if ($new eq $recorded) {
4981 # a value is being reverted to the cloud-init state:
4982 delete $ci->{$opt};
4983 delete $added{$opt};
4984 } else {
4985 # the value had temporarily been removed, do nothing
4986 }
4987 } elsif ($added{$opt}) {
4988 # the value had been marked as added already, do nothing
4989 } else {
4990 # the value is new, add it
4991 $added{$opt} = 1;
4992 }
f16cf6c3 4993 }
a5409851
WB
4994 } elsif (!defined($old)) {
4995 # a non-existent value is being removed? ignore...
f16cf6c3 4996 } else {
a5409851
WB
4997 # a value is being deleted
4998 if (defined($recorded)) {
4999 # a value was already recorded, just keep it
5000 } elsif ($added{$opt}) {
5001 # the value was marked as added, remove it
5002 delete $added{$opt};
f16cf6c3 5003 } else {
a5409851
WB
5004 # a previously unrecorded value is being removed, record the old value:
5005 $ci->{$opt} = $old;
f16cf6c3
WB
5006 }
5007 }
a5409851
WB
5008
5009 my $added = join(',', sort keys %added);
5010 $ci->{added} = $added if length($added);
f16cf6c3
WB
5011 };
5012
c427973b
DM
5013 my $changes = 0;
5014 foreach my $opt (keys %{$conf->{pending}}) { # add/change
81d95ae1 5015 if ($fast_plug_option->{$opt}) {
f16cf6c3
WB
5016 my $new = delete $conf->{pending}->{$opt};
5017 $cloudinit_record_changed->($conf, $opt, $conf->{$opt}, $new);
5018 $conf->{$opt} = $new;
c427973b
DM
5019 $changes = 1;
5020 }
5021 }
5022
5023 if ($changes) {
ffda963f 5024 PVE::QemuConfig->write_config($vmid, $conf);
c427973b
DM
5025 }
5026
c60cad61
DC
5027 my $ostype = $conf->{ostype};
5028 my $version = extract_version($machine_type, get_running_qemu_version($vmid));
b3c2bdd1 5029 my $hotplug_features = parse_hotplug_features(defined($conf->{hotplug}) ? $conf->{hotplug} : '1');
c60cad61
DC
5030 my $usb_hotplug = $hotplug_features->{usb}
5031 && min_version($version, 7, 1)
5032 && defined($ostype) && ($ostype eq 'l26' || windows_version($ostype) > 7);
c427973b 5033
5b65b00d 5034 my $cgroup = PVE::QemuServer::CGroup->new($vmid);
98bc3aeb 5035 my $pending_delete_hash = PVE::QemuConfig->parse_pending_delete($conf->{pending}->{delete});
f16cf6c3 5036
d321c4a9 5037 foreach my $opt (sort keys %$pending_delete_hash) {
3a11fadb 5038 next if $selection && !$selection->{$opt};
d321c4a9 5039 my $force = $pending_delete_hash->{$opt}->{force};
3a11fadb 5040 eval {
51a6f637
AD
5041 if ($opt eq 'hotplug') {
5042 die "skip\n" if ($conf->{hotplug} =~ /memory/);
5043 } elsif ($opt eq 'tablet') {
b3c2bdd1 5044 die "skip\n" if !$hotplug_features->{usb};
3a11fadb 5045 if ($defaults->{tablet}) {
d559309f
WB
5046 vm_deviceplug($storecfg, $conf, $vmid, 'tablet', $arch, $machine_type);
5047 vm_deviceplug($storecfg, $conf, $vmid, 'keyboard', $arch, $machine_type)
5048 if $arch eq 'aarch64';
3a11fadb 5049 } else {
d559309f
WB
5050 vm_deviceunplug($vmid, $conf, 'tablet');
5051 vm_deviceunplug($vmid, $conf, 'keyboard') if $arch eq 'aarch64';
3a11fadb 5052 }
c60cad61
DC
5053 } elsif ($opt =~ m/^usb(\d+)$/) {
5054 my $index = $1;
5055 die "skip\n" if !$usb_hotplug;
5056 vm_deviceunplug($vmid, $conf, "usbredirdev$index"); # if it's a spice port
5057 vm_deviceunplug($vmid, $conf, $opt);
8edc9c08 5058 } elsif ($opt eq 'vcpus') {
b3c2bdd1 5059 die "skip\n" if !$hotplug_features->{cpu};
8edc9c08 5060 qemu_cpu_hotplug($vmid, $conf, undef);
9c2f7069 5061 } elsif ($opt eq 'balloon') {
81d95ae1 5062 # enable balloon device is not hotpluggable
75b51053
DC
5063 die "skip\n" if defined($conf->{balloon}) && $conf->{balloon} == 0;
5064 # here we reset the ballooning value to memory
5065 my $balloon = $conf->{memory} || $defaults->{memory};
0a13e08e 5066 mon_cmd($vmid, "balloon", value => $balloon*1024*1024);
81d95ae1
DM
5067 } elsif ($fast_plug_option->{$opt}) {
5068 # do nothing
3eec5767 5069 } elsif ($opt =~ m/^net(\d+)$/) {
b3c2bdd1 5070 die "skip\n" if !$hotplug_features->{network};
3eec5767 5071 vm_deviceunplug($vmid, $conf, $opt);
74479ee9 5072 } elsif (is_valid_drivename($opt)) {
b3c2bdd1 5073 die "skip\n" if !$hotplug_features->{disk} || $opt =~ m/(ide|sata)(\d+)/;
19120f99 5074 vm_deviceunplug($vmid, $conf, $opt);
3dc38fbb 5075 vmconfig_delete_or_detach_drive($vmid, $storecfg, $conf, $opt, $force);
4d3f29ed
AD
5076 } elsif ($opt =~ m/^memory$/) {
5077 die "skip\n" if !$hotplug_features->{memory};
39c074fe 5078 PVE::QemuServer::Memory::qemu_memory_hotplug($vmid, $conf, $defaults);
c8effec3 5079 } elsif ($opt eq 'cpuunits') {
0d318453 5080 $cgroup->change_cpu_shares(undef);
58be00f1 5081 } elsif ($opt eq 'cpulimit') {
25de70ae 5082 $cgroup->change_cpu_quota(undef, undef); # reset, cgroup module can better decide values
3d7389fe 5083 } else {
e56beeda 5084 die "skip\n";
3d7389fe 5085 }
3a11fadb
DM
5086 };
5087 if (my $err = $@) {
e56beeda
DM
5088 &$add_error($opt, $err) if $err ne "skip\n";
5089 } else {
f16cf6c3
WB
5090 my $old = delete $conf->{$opt};
5091 $cloudinit_record_changed->($conf, $opt, $old, undef);
98bc3aeb 5092 PVE::QemuConfig->remove_from_pending_delete($conf, $opt);
3d7389fe 5093 }
3d7389fe
DM
5094 }
5095
4b785da1 5096 my $cloudinit_opt;
3d7389fe 5097 foreach my $opt (keys %{$conf->{pending}}) {
3a11fadb 5098 next if $selection && !$selection->{$opt};
3d7389fe 5099 my $value = $conf->{pending}->{$opt};
3a11fadb 5100 eval {
51a6f637
AD
5101 if ($opt eq 'hotplug') {
5102 die "skip\n" if ($value =~ /memory/) || ($value !~ /memory/ && $conf->{hotplug} =~ /memory/);
5103 } elsif ($opt eq 'tablet') {
b3c2bdd1 5104 die "skip\n" if !$hotplug_features->{usb};
3a11fadb 5105 if ($value == 1) {
d559309f
WB
5106 vm_deviceplug($storecfg, $conf, $vmid, 'tablet', $arch, $machine_type);
5107 vm_deviceplug($storecfg, $conf, $vmid, 'keyboard', $arch, $machine_type)
5108 if $arch eq 'aarch64';
3a11fadb 5109 } elsif ($value == 0) {
d559309f
WB
5110 vm_deviceunplug($vmid, $conf, 'tablet');
5111 vm_deviceunplug($vmid, $conf, 'keyboard') if $arch eq 'aarch64';
3a11fadb 5112 }
c60cad61
DC
5113 } elsif ($opt =~ m/^usb(\d+)$/) {
5114 my $index = $1;
5115 die "skip\n" if !$usb_hotplug;
5116 my $d = eval { parse_property_string($usbdesc->{format}, $value) };
5117 my $id = $opt;
5118 if ($d->{host} eq 'spice') {
5119 $id = "usbredirdev$index";
5120 }
5121 qemu_usb_hotplug($storecfg, $conf, $vmid, $id, $d, $arch, $machine_type);
8edc9c08 5122 } elsif ($opt eq 'vcpus') {
b3c2bdd1 5123 die "skip\n" if !$hotplug_features->{cpu};
3a11fadb
DM
5124 qemu_cpu_hotplug($vmid, $conf, $value);
5125 } elsif ($opt eq 'balloon') {
81d95ae1 5126 # enable/disable balloning device is not hotpluggable
8fe689e7 5127 my $old_balloon_enabled = !!(!defined($conf->{balloon}) || $conf->{balloon});
a1b7d579 5128 my $new_balloon_enabled = !!(!defined($conf->{pending}->{balloon}) || $conf->{pending}->{balloon});
81d95ae1
DM
5129 die "skip\n" if $old_balloon_enabled != $new_balloon_enabled;
5130
3a11fadb 5131 # allow manual ballooning if shares is set to zero
4cc1efa6 5132 if ((defined($conf->{shares}) && ($conf->{shares} == 0))) {
9c2f7069 5133 my $balloon = $conf->{pending}->{balloon} || $conf->{memory} || $defaults->{memory};
0a13e08e 5134 mon_cmd($vmid, "balloon", value => $balloon*1024*1024);
9c2f7069 5135 }
a1b7d579 5136 } elsif ($opt =~ m/^net(\d+)$/) {
3eec5767 5137 # some changes can be done without hotplug
a1b7d579 5138 vmconfig_update_net($storecfg, $conf, $hotplug_features->{network},
d559309f 5139 $vmid, $opt, $value, $arch, $machine_type);
74479ee9 5140 } elsif (is_valid_drivename($opt)) {
f9dde219 5141 die "skip\n" if $opt eq 'efidisk0' || $opt eq 'tpmstate0';
a05cff86 5142 # some changes can be done without hotplug
9ed7a77c
WB
5143 my $drive = parse_drive($opt, $value);
5144 if (drive_is_cloudinit($drive)) {
4b785da1
WB
5145 $cloudinit_opt = [$opt, $drive];
5146 # apply all the other changes first, then generate the cloudinit disk
5147 die "skip\n";
9ed7a77c 5148 }
b3c2bdd1 5149 vmconfig_update_disk($storecfg, $conf, $hotplug_features->{disk},
9e7bce2c 5150 $vmid, $opt, $value, $arch, $machine_type);
4d3f29ed
AD
5151 } elsif ($opt =~ m/^memory$/) { #dimms
5152 die "skip\n" if !$hotplug_features->{memory};
39c074fe 5153 $value = PVE::QemuServer::Memory::qemu_memory_hotplug($vmid, $conf, $defaults, $value);
c8effec3 5154 } elsif ($opt eq 'cpuunits') {
6b7ef5e5 5155 my $new_cpuunits = PVE::CGroup::clamp_cpu_shares($conf->{pending}->{$opt}); #clamp
0d318453 5156 $cgroup->change_cpu_shares($new_cpuunits);
58be00f1 5157 } elsif ($opt eq 'cpulimit') {
c6f773b8 5158 my $cpulimit = $conf->{pending}->{$opt} == 0 ? -1 : int($conf->{pending}->{$opt} * 100000);
5b65b00d 5159 $cgroup->change_cpu_quota($cpulimit, 100000);
74ea2c65
AD
5160 } elsif ($opt eq 'agent') {
5161 vmconfig_update_agent($conf, $opt, $value);
3a11fadb 5162 } else {
e56beeda 5163 die "skip\n"; # skip non-hot-pluggable options
3d7389fe 5164 }
3a11fadb 5165 };
4b785da1
WB
5166 if (my $err = $@) {
5167 &$add_error($opt, $err) if $err ne "skip\n";
5168 } else {
5169 $cloudinit_record_changed->($conf, $opt, $conf->{$opt}, $value);
5170 $conf->{$opt} = $value;
5171 delete $conf->{pending}->{$opt};
5172 }
5173 }
5174
5175 if (defined($cloudinit_opt)) {
5176 my ($opt, $drive) = @$cloudinit_opt;
5177 my $value = $conf->{pending}->{$opt};
5178 eval {
9660e606
WB
5179 my $temp = {%$conf, $opt => $value};
5180 PVE::QemuServer::Cloudinit::apply_cloudinit_config($temp, $vmid);
4b785da1
WB
5181 vmconfig_update_disk($storecfg, $conf, $hotplug_features->{disk},
5182 $vmid, $opt, $value, $arch, $machine_type);
5183 };
3a11fadb 5184 if (my $err = $@) {
e56beeda
DM
5185 &$add_error($opt, $err) if $err ne "skip\n";
5186 } else {
3a11fadb
DM
5187 $conf->{$opt} = $value;
5188 delete $conf->{pending}->{$opt};
3d7389fe 5189 }
3d7389fe 5190 }
c60cad61
DC
5191
5192 # unplug xhci controller if no usb device is left
5193 if ($usb_hotplug) {
5194 my $has_usb = 0;
5195 for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
5196 next if !defined($conf->{"usb$i"});
5197 $has_usb = 1;
5198 last;
5199 }
5200 if (!$has_usb) {
5201 vm_deviceunplug($vmid, $conf, 'xhci');
5202 }
5203 }
5204
4df15a03 5205 PVE::QemuConfig->write_config($vmid, $conf);
94ec5e7c 5206
4b785da1
WB
5207 if ($hotplug_features->{cloudinit} && PVE::QemuServer::Cloudinit::has_changes($conf)) {
5208 PVE::QemuServer::vmconfig_update_cloudinit_drive($storecfg, $conf, $vmid);
94ec5e7c 5209 }
c427973b 5210}
055d554d 5211
3dc38fbb
WB
5212sub try_deallocate_drive {
5213 my ($storecfg, $vmid, $conf, $key, $drive, $rpcenv, $authuser, $force) = @_;
5214
5215 if (($force || $key =~ /^unused/) && !drive_is_cdrom($drive, 1)) {
5216 my $volid = $drive->{file};
5217 if (vm_is_volid_owner($storecfg, $vmid, $volid)) {
5218 my $sid = PVE::Storage::parse_volume_id($volid);
5219 $rpcenv->check($authuser, "/storage/$sid", ['Datastore.AllocateSpace']);
cee01bcb
WB
5220
5221 # check if the disk is really unused
cee01bcb 5222 die "unable to delete '$volid' - volume is still in use (snapshot?)\n"
e0fd2b2f 5223 if PVE::QemuServer::Drive::is_volume_in_use($storecfg, $conf, $key, $volid);
cee01bcb 5224 PVE::Storage::vdisk_free($storecfg, $volid);
3dc38fbb 5225 return 1;
40b977f3
WL
5226 } else {
5227 # If vm is not owner of this disk remove from config
5228 return 1;
3dc38fbb
WB
5229 }
5230 }
5231
d1c1af4b 5232 return;
3dc38fbb
WB
5233}
5234
5235sub vmconfig_delete_or_detach_drive {
5236 my ($vmid, $storecfg, $conf, $opt, $force) = @_;
5237
5238 my $drive = parse_drive($opt, $conf->{$opt});
5239
5240 my $rpcenv = PVE::RPCEnvironment::get();
5241 my $authuser = $rpcenv->get_user();
5242
5243 if ($force) {
5244 $rpcenv->check_vm_perm($authuser, $vmid, undef, ['VM.Config.Disk']);
5245 try_deallocate_drive($storecfg, $vmid, $conf, $opt, $drive, $rpcenv, $authuser, $force);
5246 } else {
5247 vmconfig_register_unused_drive($storecfg, $vmid, $conf, $drive);
5248 }
5249}
5250
98bc3aeb
OB
5251
5252
055d554d 5253sub vmconfig_apply_pending {
e97bbbb6 5254 my ($vmid, $conf, $storecfg, $errors, $skip_cloud_init) = @_;
eb5e482d 5255
a644de29
OB
5256 return if !scalar(keys %{$conf->{pending}});
5257
eb5e482d
OB
5258 my $add_apply_error = sub {
5259 my ($opt, $msg) = @_;
5260 my $err_msg = "unable to apply pending change $opt : $msg";
5261 $errors->{$opt} = $err_msg;
5262 warn $err_msg;
5263 };
c427973b
DM
5264
5265 # cold plug
055d554d 5266
98bc3aeb 5267 my $pending_delete_hash = PVE::QemuConfig->parse_pending_delete($conf->{pending}->{delete});
d321c4a9 5268 foreach my $opt (sort keys %$pending_delete_hash) {
fb4d1ba2 5269 my $force = $pending_delete_hash->{$opt}->{force};
eb5e482d 5270 eval {
3d48b95a
OB
5271 if ($opt =~ m/^unused/) {
5272 die "internal error";
5273 } elsif (defined($conf->{$opt}) && is_valid_drivename($opt)) {
eb5e482d 5274 vmconfig_delete_or_detach_drive($vmid, $storecfg, $conf, $opt, $force);
eb5e482d
OB
5275 }
5276 };
5277 if (my $err = $@) {
5278 $add_apply_error->($opt, $err);
055d554d 5279 } else {
98bc3aeb 5280 PVE::QemuConfig->remove_from_pending_delete($conf, $opt);
055d554d 5281 delete $conf->{$opt};
055d554d
DM
5282 }
5283 }
5284
3d48b95a 5285 PVE::QemuConfig->cleanup_pending($conf);
055d554d 5286
7a24c98a 5287 my $generate_cloudinit = $skip_cloud_init ? 0 : undef;
c930f99e 5288
055d554d 5289 foreach my $opt (keys %{$conf->{pending}}) { # add/change
3d48b95a 5290 next if $opt eq 'delete'; # just to be sure
eb5e482d 5291 eval {
3d48b95a 5292 if (defined($conf->{$opt}) && is_valid_drivename($opt)) {
eb5e482d 5293 vmconfig_register_unused_drive($storecfg, $vmid, $conf, parse_drive($opt, $conf->{$opt}))
eb5e482d
OB
5294 }
5295 };
5296 if (my $err = $@) {
5297 $add_apply_error->($opt, $err);
055d554d 5298 } else {
c930f99e
AD
5299
5300 if (is_valid_drivename($opt)) {
5301 my $drive = parse_drive($opt, $conf->{pending}->{$opt});
7a24c98a 5302 $generate_cloudinit //= 1 if drive_is_cloudinit($drive);
c930f99e
AD
5303 }
5304
eb5e482d 5305 $conf->{$opt} = delete $conf->{pending}->{$opt};
055d554d 5306 }
055d554d 5307 }
3d48b95a
OB
5308
5309 # write all changes at once to avoid unnecessary i/o
5310 PVE::QemuConfig->write_config($vmid, $conf);
7a24c98a 5311 if ($generate_cloudinit) {
4b785da1
WB
5312 if (PVE::QemuServer::Cloudinit::apply_cloudinit_config($conf, $vmid)) {
5313 # After successful generation and if there were changes to be applied, update the
5314 # config to drop the {cloudinit} entry.
5315 PVE::QemuConfig->write_config($vmid, $conf);
5316 }
5317 }
055d554d
DM
5318}
5319
3eec5767 5320sub vmconfig_update_net {
d559309f 5321 my ($storecfg, $conf, $hotplug, $vmid, $opt, $value, $arch, $machine_type) = @_;
3eec5767
DM
5322
5323 my $newnet = parse_net($value);
5324
5325 if ($conf->{$opt}) {
5326 my $oldnet = parse_net($conf->{$opt});
5327
0f1af9e7
OB
5328 if (safe_string_ne($oldnet->{model}, $newnet->{model}) ||
5329 safe_string_ne($oldnet->{macaddr}, $newnet->{macaddr}) ||
5330 safe_num_ne($oldnet->{queues}, $newnet->{queues}) ||
62fdcfd4 5331 safe_num_ne($oldnet->{mtu}, $newnet->{mtu}) ||
3eec5767
DM
5332 !($newnet->{bridge} && $oldnet->{bridge})) { # bridge/nat mode change
5333
5334 # for non online change, we try to hot-unplug
7196b757 5335 die "skip\n" if !$hotplug;
3eec5767
DM
5336 vm_deviceunplug($vmid, $conf, $opt);
5337 } else {
5338
5339 die "internal error" if $opt !~ m/net(\d+)/;
5340 my $iface = "tap${vmid}i$1";
a1b7d579 5341
0f1af9e7
OB
5342 if (safe_string_ne($oldnet->{bridge}, $newnet->{bridge}) ||
5343 safe_num_ne($oldnet->{tag}, $newnet->{tag}) ||
5344 safe_string_ne($oldnet->{trunks}, $newnet->{trunks}) ||
5345 safe_num_ne($oldnet->{firewall}, $newnet->{firewall})) {
3eec5767 5346 PVE::Network::tap_unplug($iface);
28e129cc
AD
5347
5348 if ($have_sdn) {
5349 PVE::Network::SDN::Zones::tap_plug($iface, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
5350 } else {
5351 PVE::Network::tap_plug($iface, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
5352 }
0f1af9e7 5353 } elsif (safe_num_ne($oldnet->{rate}, $newnet->{rate})) {
4f4fbeb0
WB
5354 # Rate can be applied on its own but any change above needs to
5355 # include the rate in tap_plug since OVS resets everything.
5356 PVE::Network::tap_rate_limit($iface, $newnet->{rate});
3eec5767 5357 }
38c590d9 5358
0f1af9e7 5359 if (safe_string_ne($oldnet->{link_down}, $newnet->{link_down})) {
25088687
DM
5360 qemu_set_link_status($vmid, $opt, !$newnet->{link_down});
5361 }
5362
38c590d9 5363 return 1;
3eec5767
DM
5364 }
5365 }
a1b7d579 5366
7196b757 5367 if ($hotplug) {
d559309f 5368 vm_deviceplug($storecfg, $conf, $vmid, $opt, $newnet, $arch, $machine_type);
38c590d9
DM
5369 } else {
5370 die "skip\n";
5371 }
3eec5767
DM
5372}
5373
74ea2c65
AD
5374sub vmconfig_update_agent {
5375 my ($conf, $opt, $value) = @_;
5376
5377 die "skip\n" if !$conf->{$opt};
5378
5379 my $hotplug_options = { fstrim_cloned_disks => 1 };
5380
5381 my $old_agent = parse_guest_agent($conf);
5382 my $agent = parse_guest_agent({$opt => $value});
5383
33f8b887 5384 for my $option (keys %$agent) { # added/changed options
74ea2c65
AD
5385 next if defined($hotplug_options->{$option});
5386 die "skip\n" if safe_string_ne($agent->{$option}, $old_agent->{$option});
5387 }
5388
33f8b887 5389 for my $option (keys %$old_agent) { # removed options
74ea2c65
AD
5390 next if defined($hotplug_options->{$option});
5391 die "skip\n" if safe_string_ne($old_agent->{$option}, $agent->{$option});
5392 }
33f8b887
TL
5393
5394 return; # either no actual change (e.g., format string reordered) or just hotpluggable changes
74ea2c65
AD
5395}
5396
a05cff86 5397sub vmconfig_update_disk {
9e7bce2c 5398 my ($storecfg, $conf, $hotplug, $vmid, $opt, $value, $arch, $machine_type) = @_;
a05cff86
DM
5399
5400 my $drive = parse_drive($opt, $value);
5401
4df98f2f
TL
5402 if ($conf->{$opt} && (my $old_drive = parse_drive($opt, $conf->{$opt}))) {
5403 my $media = $drive->{media} || 'disk';
5404 my $oldmedia = $old_drive->{media} || 'disk';
5405 die "unable to change media type\n" if $media ne $oldmedia;
a05cff86 5406
4df98f2f 5407 if (!drive_is_cdrom($old_drive)) {
a05cff86 5408
4df98f2f 5409 if ($drive->{file} ne $old_drive->{file}) {
a05cff86 5410
4df98f2f 5411 die "skip\n" if !$hotplug;
a05cff86 5412
4df98f2f
TL
5413 # unplug and register as unused
5414 vm_deviceunplug($vmid, $conf, $opt);
5415 vmconfig_register_unused_drive($storecfg, $vmid, $conf, $old_drive)
a1b7d579 5416
4df98f2f
TL
5417 } else {
5418 # update existing disk
5419
5420 # skip non hotpluggable value
ea7c3b39
FE
5421 if (safe_string_ne($drive->{aio}, $old_drive->{aio}) ||
5422 safe_string_ne($drive->{discard}, $old_drive->{discard}) ||
4df98f2f
TL
5423 safe_string_ne($drive->{iothread}, $old_drive->{iothread}) ||
5424 safe_string_ne($drive->{queues}, $old_drive->{queues}) ||
5425 safe_string_ne($drive->{cache}, $old_drive->{cache}) ||
e0e036e1
LN
5426 safe_string_ne($drive->{ssd}, $old_drive->{ssd}) ||
5427 safe_string_ne($drive->{ro}, $old_drive->{ro})) {
4df98f2f
TL
5428 die "skip\n";
5429 }
a05cff86 5430
4df98f2f
TL
5431 # apply throttle
5432 if (safe_num_ne($drive->{mbps}, $old_drive->{mbps}) ||
5433 safe_num_ne($drive->{mbps_rd}, $old_drive->{mbps_rd}) ||
5434 safe_num_ne($drive->{mbps_wr}, $old_drive->{mbps_wr}) ||
5435 safe_num_ne($drive->{iops}, $old_drive->{iops}) ||
5436 safe_num_ne($drive->{iops_rd}, $old_drive->{iops_rd}) ||
5437 safe_num_ne($drive->{iops_wr}, $old_drive->{iops_wr}) ||
5438 safe_num_ne($drive->{mbps_max}, $old_drive->{mbps_max}) ||
5439 safe_num_ne($drive->{mbps_rd_max}, $old_drive->{mbps_rd_max}) ||
5440 safe_num_ne($drive->{mbps_wr_max}, $old_drive->{mbps_wr_max}) ||
5441 safe_num_ne($drive->{iops_max}, $old_drive->{iops_max}) ||
5442 safe_num_ne($drive->{iops_rd_max}, $old_drive->{iops_rd_max}) ||
5443 safe_num_ne($drive->{iops_wr_max}, $old_drive->{iops_wr_max}) ||
5444 safe_num_ne($drive->{bps_max_length}, $old_drive->{bps_max_length}) ||
5445 safe_num_ne($drive->{bps_rd_max_length}, $old_drive->{bps_rd_max_length}) ||
5446 safe_num_ne($drive->{bps_wr_max_length}, $old_drive->{bps_wr_max_length}) ||
5447 safe_num_ne($drive->{iops_max_length}, $old_drive->{iops_max_length}) ||
5448 safe_num_ne($drive->{iops_rd_max_length}, $old_drive->{iops_rd_max_length}) ||
5449 safe_num_ne($drive->{iops_wr_max_length}, $old_drive->{iops_wr_max_length})) {
5450
5451 qemu_block_set_io_throttle(
5452 $vmid,"drive-$opt",
5453 ($drive->{mbps} || 0)*1024*1024,
5454 ($drive->{mbps_rd} || 0)*1024*1024,
5455 ($drive->{mbps_wr} || 0)*1024*1024,
5456 $drive->{iops} || 0,
5457 $drive->{iops_rd} || 0,
5458 $drive->{iops_wr} || 0,
5459 ($drive->{mbps_max} || 0)*1024*1024,
5460 ($drive->{mbps_rd_max} || 0)*1024*1024,
5461 ($drive->{mbps_wr_max} || 0)*1024*1024,
5462 $drive->{iops_max} || 0,
5463 $drive->{iops_rd_max} || 0,
5464 $drive->{iops_wr_max} || 0,
5465 $drive->{bps_max_length} || 1,
5466 $drive->{bps_rd_max_length} || 1,
5467 $drive->{bps_wr_max_length} || 1,
5468 $drive->{iops_max_length} || 1,
5469 $drive->{iops_rd_max_length} || 1,
5470 $drive->{iops_wr_max_length} || 1,
5471 );
a05cff86 5472
4df98f2f 5473 }
a1b7d579 5474
4df98f2f
TL
5475 return 1;
5476 }
4de1bb25 5477
4df98f2f 5478 } else { # cdrom
a1b7d579 5479
4df98f2f
TL
5480 if ($drive->{file} eq 'none') {
5481 mon_cmd($vmid, "eject", force => JSON::true, id => "$opt");
5482 if (drive_is_cloudinit($old_drive)) {
5483 vmconfig_register_unused_drive($storecfg, $vmid, $conf, $old_drive);
5484 }
5485 } else {
5486 my $path = get_iso_path($storecfg, $vmid, $drive->{file});
ce9fce79 5487
4df98f2f
TL
5488 # force eject if locked
5489 mon_cmd($vmid, "eject", force => JSON::true, id => "$opt");
ce9fce79 5490
4df98f2f
TL
5491 if ($path) {
5492 mon_cmd($vmid, "blockdev-change-medium",
5493 id => "$opt", filename => "$path");
4de1bb25 5494 }
a05cff86 5495 }
4df98f2f
TL
5496
5497 return 1;
a05cff86
DM
5498 }
5499 }
5500
a1b7d579 5501 die "skip\n" if !$hotplug || $opt =~ m/(ide|sata)(\d+)/;
4de1bb25 5502 # hotplug new disks
f7b4356f 5503 PVE::Storage::activate_volumes($storecfg, [$drive->{file}]) if $drive->{file} !~ m|^/dev/.+|;
d559309f 5504 vm_deviceplug($storecfg, $conf, $vmid, $opt, $drive, $arch, $machine_type);
a05cff86
DM
5505}
5506
9687287b
AD
5507sub vmconfig_update_cloudinit_drive {
5508 my ($storecfg, $conf, $vmid) = @_;
5509
5510 my $cloudinit_ds = undef;
5511 my $cloudinit_drive = undef;
5512
5513 PVE::QemuConfig->foreach_volume($conf, sub {
5514 my ($ds, $drive) = @_;
5515 if (PVE::QemuServer::drive_is_cloudinit($drive)) {
5516 $cloudinit_ds = $ds;
5517 $cloudinit_drive = $drive;
5518 }
5519 });
5520
5521 return if !$cloudinit_drive;
5522
4b785da1
WB
5523 if (PVE::QemuServer::Cloudinit::apply_cloudinit_config($conf, $vmid)) {
5524 PVE::QemuConfig->write_config($vmid, $conf);
5525 }
5526
9687287b
AD
5527 my $running = PVE::QemuServer::check_running($vmid);
5528
5529 if ($running) {
5530 my $path = PVE::Storage::path($storecfg, $cloudinit_drive->{file});
5531 if ($path) {
5532 mon_cmd($vmid, "eject", force => JSON::true, id => "$cloudinit_ds");
5533 mon_cmd($vmid, "blockdev-change-medium", id => "$cloudinit_ds", filename => "$path");
5534 }
5535 }
5536}
5537
13cfe3b7 5538# called in locked context by incoming migration
ba5396b5
FG
5539sub vm_migrate_get_nbd_disks {
5540 my ($storecfg, $conf, $replicated_volumes) = @_;
13cfe3b7
FG
5541
5542 my $local_volumes = {};
912792e2 5543 PVE::QemuConfig->foreach_volume($conf, sub {
13cfe3b7
FG
5544 my ($ds, $drive) = @_;
5545
5546 return if drive_is_cdrom($drive);
41c8671e 5547 return if $ds eq 'tpmstate0';
13cfe3b7
FG
5548
5549 my $volid = $drive->{file};
5550
5551 return if !$volid;
5552
5553 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid);
5554
5555 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
5556 return if $scfg->{shared};
ba5396b5
FG
5557
5558 # replicated disks re-use existing state via bitmap
5559 my $use_existing = $replicated_volumes->{$volid} ? 1 : 0;
5560 $local_volumes->{$ds} = [$volid, $storeid, $volname, $drive, $use_existing];
13cfe3b7 5561 });
ba5396b5
FG
5562 return $local_volumes;
5563}
5564
5565# called in locked context by incoming migration
5566sub vm_migrate_alloc_nbd_disks {
5567 my ($storecfg, $vmid, $source_volumes, $storagemap) = @_;
13cfe3b7 5568
13cfe3b7 5569 my $nbd = {};
ba5396b5 5570 foreach my $opt (sort keys %$source_volumes) {
5668463b 5571 my ($volid, $storeid, $volname, $drive, $use_existing, $format) = @{$source_volumes->{$opt}};
ba5396b5
FG
5572
5573 if ($use_existing) {
5574 $nbd->{$opt}->{drivestr} = print_drive($drive);
5575 $nbd->{$opt}->{volid} = $volid;
5576 $nbd->{$opt}->{replicated} = 1;
13cfe3b7
FG
5577 next;
5578 }
13cfe3b7 5579
5668463b
FG
5580 # storage mapping + volname = regular migration
5581 # storage mapping + format = remote migration
5582 # order of precedence, filtered by whether storage supports it:
5583 # 1. explicit requested format
5584 # 2. format of current volume
5585 # 3. default format of storage
bf8fc5a3 5586 if (!$storagemap->{identity}) {
82a03671 5587 $storeid = PVE::JSONSchema::map_id($storagemap, $storeid);
13cfe3b7 5588 my ($defFormat, $validFormats) = PVE::Storage::storage_default_format($storecfg, $storeid);
5668463b
FG
5589 if (!$format || !grep { $format eq $_ } @$validFormats) {
5590 if ($volname) {
5591 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
5592 my $fileFormat = qemu_img_format($scfg, $volname);
5593 $format = $fileFormat
5594 if grep { $fileFormat eq $_ } @$validFormats;
5595 }
5596 $format //= $defFormat;
5597 }
13cfe3b7 5598 } else {
5668463b 5599 # can't happen for remote migration, so $volname is always defined
13cfe3b7
FG
5600 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
5601 $format = qemu_img_format($scfg, $volname);
5602 }
5603
4df98f2f
TL
5604 my $size = $drive->{size} / 1024;
5605 my $newvolid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $vmid, $format, undef, $size);
13cfe3b7
FG
5606 my $newdrive = $drive;
5607 $newdrive->{format} = $format;
5608 $newdrive->{file} = $newvolid;
5609 my $drivestr = print_drive($newdrive);
ba5396b5
FG
5610 $nbd->{$opt}->{drivestr} = $drivestr;
5611 $nbd->{$opt}->{volid} = $newvolid;
13cfe3b7
FG
5612 }
5613
5614 return $nbd;
5615}
5616
5617# see vm_start_nolock for parameters, additionally:
5618# migrate_opts:
bf8fc5a3 5619# storagemap = parsed storage map for allocating NBD disks
3898a563
FG
5620sub vm_start {
5621 my ($storecfg, $vmid, $params, $migrate_opts) = @_;
5622
84da8217 5623 return PVE::QemuConfig->lock_config($vmid, sub {
3898a563
FG
5624 my $conf = PVE::QemuConfig->load_config($vmid, $migrate_opts->{migratedfrom});
5625
4ef13a7f
FG
5626 die "you can't start a vm if it's a template\n"
5627 if !$params->{skiptemplate} && PVE::QemuConfig->is_template($conf);
3898a563 5628
d544e0e0 5629 my $has_suspended_lock = PVE::QemuConfig->has_lock($conf, 'suspended');
8e0c97bb
SR
5630 my $has_backup_lock = PVE::QemuConfig->has_lock($conf, 'backup');
5631
5632 my $running = check_running($vmid, undef, $migrate_opts->{migratedfrom});
5633
5634 if ($has_backup_lock && $running) {
5635 # a backup is currently running, attempt to start the guest in the
5636 # existing QEMU instance
5637 return vm_resume($vmid);
5638 }
3898a563
FG
5639
5640 PVE::QemuConfig->check_lock($conf)
d544e0e0
FE
5641 if !($params->{skiplock} || $has_suspended_lock);
5642
5643 $params->{resume} = $has_suspended_lock || defined($conf->{vmstate});
3898a563 5644
8e0c97bb 5645 die "VM $vmid already running\n" if $running;
3898a563 5646
ba5396b5
FG
5647 if (my $storagemap = $migrate_opts->{storagemap}) {
5648 my $replicated = $migrate_opts->{replicated_volumes};
5649 my $disks = vm_migrate_get_nbd_disks($storecfg, $conf, $replicated);
5650 $migrate_opts->{nbd} = vm_migrate_alloc_nbd_disks($storecfg, $vmid, $disks, $storagemap);
5651
5652 foreach my $opt (keys %{$migrate_opts->{nbd}}) {
5653 $conf->{$opt} = $migrate_opts->{nbd}->{$opt}->{drivestr};
5654 }
5655 }
13cfe3b7 5656
84da8217 5657 return vm_start_nolock($storecfg, $vmid, $conf, $params, $migrate_opts);
3898a563
FG
5658 });
5659}
5660
5661
0c498cca
FG
5662# params:
5663# statefile => 'tcp', 'unix' for migration or path/volid for RAM state
5664# skiplock => 0/1, skip checking for config lock
4ef13a7f 5665# skiptemplate => 0/1, skip checking whether VM is template
7bd9abd2 5666# forcemachine => to force QEMU machine (rollback/migration)
58c64ad5 5667# forcecpu => a QEMU '-cpu' argument string to override get_cpu_options
0c498cca
FG
5668# timeout => in seconds
5669# paused => start VM in paused state (backup)
3898a563 5670# resume => resume from hibernation
5921764c
SR
5671# pbs-backing => {
5672# sata0 => {
5673# repository
5674# snapshot
5675# keyfile
5676# archive
5677# },
5678# virtio2 => ...
5679# }
0c498cca 5680# migrate_opts:
ba5396b5 5681# nbd => volumes for NBD exports (vm_migrate_alloc_nbd_disks)
0c498cca
FG
5682# migratedfrom => source node
5683# spice_ticket => used for spice migration, passed via tunnel/stdin
5684# network => CIDR of migration network
5685# type => secure/insecure - tunnel over encrypted connection or plain-text
0c498cca 5686# nbd_proto_version => int, 0 for TCP, 1 for UNIX
fd95d780 5687# replicated_volumes => which volids should be re-used with bitmaps for nbd migration
13d121d7
FE
5688# offline_volumes => new volids of offline migrated disks like tpmstate and cloudinit, not yet
5689# contained in config
3898a563
FG
5690sub vm_start_nolock {
5691 my ($storecfg, $vmid, $conf, $params, $migrate_opts) = @_;
1e3baf05 5692
3898a563
FG
5693 my $statefile = $params->{statefile};
5694 my $resume = $params->{resume};
3dcb98d5 5695
3898a563
FG
5696 my $migratedfrom = $migrate_opts->{migratedfrom};
5697 my $migration_type = $migrate_opts->{type};
7ceade4c 5698
84da8217
FG
5699 my $res = {};
5700
3898a563
FG
5701 # clean up leftover reboot request files
5702 eval { clear_reboot_request($vmid); };
5703 warn $@ if $@;
1e3baf05 5704
3898a563
FG
5705 if (!$statefile && scalar(keys %{$conf->{pending}})) {
5706 vmconfig_apply_pending($vmid, $conf, $storecfg);
5707 $conf = PVE::QemuConfig->load_config($vmid); # update/reload
5708 }
64457ed4 5709
3de134ef
WB
5710 # don't regenerate the ISO if the VM is started as part of a live migration
5711 # this way we can reuse the old ISO with the correct config
4b785da1
WB
5712 if (!$migratedfrom) {
5713 if (PVE::QemuServer::Cloudinit::apply_cloudinit_config($conf, $vmid)) {
5714 # FIXME: apply_cloudinit_config updates $conf in this case, and it would only drop
5715 # $conf->{cloudinit}, so we could just not do this?
5716 # But we do it above, so for now let's be consistent.
5717 $conf = PVE::QemuConfig->load_config($vmid); # update/reload
5718 }
5719 }
3de134ef 5720
13d121d7
FE
5721 # override offline migrated volumes, conf is out of date still
5722 if (my $offline_volumes = $migrate_opts->{offline_volumes}) {
5723 for my $key (sort keys $offline_volumes->%*) {
5724 my $parsed = parse_drive($key, $conf->{$key});
5725 $parsed->{file} = $offline_volumes->{$key};
5726 $conf->{$key} = print_drive($parsed);
5727 }
fd95d780
FG
5728 }
5729
3898a563 5730 my $defaults = load_defaults();
0c9a7596 5731
3898a563 5732 # set environment variable useful inside network script
eef93bc5
FG
5733 # for remote migration the config is available on the target node!
5734 if (!$migrate_opts->{remote_node}) {
5735 $ENV{PVE_MIGRATED_FROM} = $migratedfrom;
5736 }
6c47d546 5737
3898a563 5738 PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'pre-start', 1);
9e784b11 5739
3898a563 5740 my $forcemachine = $params->{forcemachine};
ea1c2110 5741 my $forcecpu = $params->{forcecpu};
3898a563 5742 if ($resume) {
ea1c2110 5743 # enforce machine and CPU type on suspended vm to ensure HW compatibility
3898a563 5744 $forcemachine = $conf->{runningmachine};
ea1c2110 5745 $forcecpu = $conf->{runningcpu};
3898a563
FG
5746 print "Resuming suspended VM\n";
5747 }
7ceade4c 5748
5921764c
SR
5749 my ($cmd, $vollist, $spice_port) = config_to_command($storecfg, $vmid,
5750 $conf, $defaults, $forcemachine, $forcecpu, $params->{'pbs-backing'});
6c47d546 5751
3898a563
FG
5752 my $migration_ip;
5753 my $get_migration_ip = sub {
5754 my ($nodename) = @_;
b24e1ac2 5755
3898a563 5756 return $migration_ip if defined($migration_ip);
b24e1ac2 5757
3898a563 5758 my $cidr = $migrate_opts->{network};
0c498cca 5759
3898a563
FG
5760 if (!defined($cidr)) {
5761 my $dc_conf = PVE::Cluster::cfs_read_file('datacenter.cfg');
5762 $cidr = $dc_conf->{migration}->{network};
5763 }
b24e1ac2 5764
3898a563
FG
5765 if (defined($cidr)) {
5766 my $ips = PVE::Network::get_local_ip_from_cidr($cidr);
b24e1ac2 5767
3898a563
FG
5768 die "could not get IP: no address configured on local " .
5769 "node for network '$cidr'\n" if scalar(@$ips) == 0;
b24e1ac2 5770
3898a563
FG
5771 die "could not get IP: multiple addresses configured on local " .
5772 "node for network '$cidr'\n" if scalar(@$ips) > 1;
b24e1ac2 5773
3898a563
FG
5774 $migration_ip = @$ips[0];
5775 }
b24e1ac2 5776
3898a563
FG
5777 $migration_ip = PVE::Cluster::remote_node_ip($nodename, 1)
5778 if !defined($migration_ip);
b24e1ac2 5779
3898a563
FG
5780 return $migration_ip;
5781 };
b24e1ac2 5782
3898a563
FG
5783 if ($statefile) {
5784 if ($statefile eq 'tcp') {
05b2a4ae
FG
5785 my $migrate = $res->{migrate} = { proto => 'tcp' };
5786 $migrate->{addr} = "localhost";
3898a563
FG
5787 my $datacenterconf = PVE::Cluster::cfs_read_file('datacenter.cfg');
5788 my $nodename = nodename();
2de2d6f7 5789
3898a563
FG
5790 if (!defined($migration_type)) {
5791 if (defined($datacenterconf->{migration}->{type})) {
5792 $migration_type = $datacenterconf->{migration}->{type};
5793 } else {
5794 $migration_type = 'secure';
b7a5a225 5795 }
3898a563 5796 }
b7a5a225 5797
3898a563 5798 if ($migration_type eq 'insecure') {
05b2a4ae
FG
5799 $migrate->{addr} = $get_migration_ip->($nodename);
5800 $migrate->{addr} = "[$migrate->{addr}]" if Net::IP::ip_is_ipv6($migrate->{addr});
3898a563 5801 }
2de2d6f7 5802
3898a563 5803 my $pfamily = PVE::Tools::get_host_address_family($nodename);
05b2a4ae
FG
5804 $migrate->{port} = PVE::Tools::next_migrate_port($pfamily);
5805 $migrate->{uri} = "tcp:$migrate->{addr}:$migrate->{port}";
5806 push @$cmd, '-incoming', $migrate->{uri};
3898a563 5807 push @$cmd, '-S';
1c9d54bf 5808
3898a563
FG
5809 } elsif ($statefile eq 'unix') {
5810 # should be default for secure migrations as a ssh TCP forward
5811 # tunnel is not deterministic reliable ready and fails regurarly
5812 # to set up in time, so use UNIX socket forwards
05b2a4ae
FG
5813 my $migrate = $res->{migrate} = { proto => 'unix' };
5814 $migrate->{addr} = "/run/qemu-server/$vmid.migrate";
5815 unlink $migrate->{addr};
54323eed 5816
05b2a4ae
FG
5817 $migrate->{uri} = "unix:$migrate->{addr}";
5818 push @$cmd, '-incoming', $migrate->{uri};
3898a563 5819 push @$cmd, '-S';
1c9d54bf 5820
3898a563
FG
5821 } elsif (-e $statefile) {
5822 push @$cmd, '-loadstate', $statefile;
5823 } else {
5824 my $statepath = PVE::Storage::path($storecfg, $statefile);
5825 push @$vollist, $statefile;
5826 push @$cmd, '-loadstate', $statepath;
5827 }
5828 } elsif ($params->{paused}) {
5829 push @$cmd, '-S';
5830 }
5831
1fb1822e
DC
5832 my $start_timeout = $params->{timeout} // config_aware_timeout($conf, $resume);
5833
5834 my $pci_devices = {}; # host pci devices
74c17b7a 5835 for (my $i = 0; $i < $PVE::QemuServer::PCI::MAX_HOSTPCI_DEVICES; $i++) {
1fb1822e
DC
5836 my $dev = $conf->{"hostpci$i"} or next;
5837 $pci_devices->{$i} = parse_hostpci($dev);
5838 }
5839
9c85548f
DC
5840 # do not reserve pciid for mediated devices, sysfs will error out for duplicate assignment
5841 my $real_pci_devices = [ grep { !(defined($_->{mdev}) && scalar($_->{pciid}->@*) == 1) } values $pci_devices->%* ];
5842
5843 # map to a flat list of pci ids
5844 my $pci_id_list = [ map { $_->{id} } map { $_->{pciid}->@* } $real_pci_devices->@* ];
5845
1fb1822e
DC
5846 # reserve all PCI IDs before actually doing anything with them
5847 PVE::QemuServer::PCI::reserve_pci_usage($pci_id_list, $vmid, $start_timeout);
5848
5849 eval {
bbf96e0f 5850 my $uuid;
1fb1822e
DC
5851 for my $id (sort keys %$pci_devices) {
5852 my $d = $pci_devices->{$id};
5853 for my $dev ($d->{pciid}->@*) {
bbf96e0f
DC
5854 my $info = PVE::QemuServer::PCI::prepare_pci_device($vmid, $dev->{id}, $id, $d->{mdev});
5855
c8bd54e9
DC
5856 # nvidia grid needs the qemu parameter '-uuid' set
5857 # use smbios uuid or mdev uuid as fallback for that
bbf96e0f 5858 if ($d->{mdev} && !defined($uuid) && $info->{vendor} eq '10de') {
c8bd54e9
DC
5859 if (defined($conf->{smbios1})) {
5860 my $smbios_conf = parse_smbios1($conf->{smbios1});
5861 $uuid = $smbios_conf->{uuid} if defined($smbios_conf->{uuid});
5862 }
5863 $uuid = PVE::QemuServer::PCI::generate_mdev_uuid($vmid, $id) if !defined($uuid);
bbf96e0f 5864 }
1fb1822e
DC
5865 }
5866 }
bbf96e0f 5867 push @$cmd, '-uuid', $uuid if defined($uuid);
1fb1822e
DC
5868 };
5869 if (my $err = $@) {
1b189121 5870 eval { cleanup_pci_devices($vmid, $conf) };
1fb1822e
DC
5871 warn $@ if $@;
5872 die $err;
3898a563 5873 }
1e3baf05 5874
3898a563 5875 PVE::Storage::activate_volumes($storecfg, $vollist);
1e3baf05 5876
3898a563 5877 eval {
6bbcd71f 5878 run_command(['/bin/systemctl', 'stop', "$vmid.scope"], outfunc => sub{}, errfunc => sub{});
3898a563
FG
5879 };
5880 # Issues with the above 'stop' not being fully completed are extremely rare, a very low
5881 # timeout should be more than enough here...
39abafc8 5882 PVE::Systemd::wait_for_unit_removed("$vmid.scope", 20);
3898a563 5883
6b7ef5e5 5884 my $cpuunits = PVE::CGroup::clamp_cpu_shares($conf->{cpuunits});
3898a563 5885
3898a563
FG
5886 my %run_params = (
5887 timeout => $statefile ? undef : $start_timeout,
5888 umask => 0077,
5889 noerr => 1,
5890 );
1e3baf05 5891
3898a563
FG
5892 # when migrating, prefix QEMU output so other side can pick up any
5893 # errors that might occur and show the user
5894 if ($migratedfrom) {
5895 $run_params{quiet} = 1;
5896 $run_params{logfunc} = sub { print "QEMU: $_[0]\n" };
5897 }
8bf30c2a 5898
212220a4 5899 my %systemd_properties = (
3898a563 5900 Slice => 'qemu.slice',
354e61aa
SR
5901 KillMode => 'process',
5902 SendSIGKILL => 0,
5903 TimeoutStopUSec => ULONG_MAX, # infinity
3898a563 5904 );
7023f3ea 5905
6cbd3eb8 5906 if (PVE::CGroup::cgroup_mode() == 2) {
212220a4 5907 $systemd_properties{CPUWeight} = $cpuunits;
6cbd3eb8 5908 } else {
212220a4 5909 $systemd_properties{CPUShares} = $cpuunits;
6cbd3eb8
AD
5910 }
5911
3898a563 5912 if (my $cpulimit = $conf->{cpulimit}) {
212220a4 5913 $systemd_properties{CPUQuota} = int($cpulimit * 100);
3898a563 5914 }
212220a4 5915 $systemd_properties{timeout} = 10 if $statefile; # setting up the scope shoul be quick
7023f3ea 5916
3898a563
FG
5917 my $run_qemu = sub {
5918 PVE::Tools::run_fork sub {
212220a4 5919 PVE::Systemd::enter_systemd_scope($vmid, "Proxmox VE VM $vmid", %systemd_properties);
6e0216d8 5920
f9dde219
SR
5921 my $tpmpid;
5922 if (my $tpm = $conf->{tpmstate0}) {
5923 # start the TPM emulator so QEMU can connect on start
5924 $tpmpid = start_swtpm($storecfg, $vmid, $tpm, $migratedfrom);
5925 }
5926
3898a563 5927 my $exitcode = run_command($cmd, %run_params);
f9dde219 5928 if ($exitcode) {
23bee97d
FE
5929 if ($tpmpid) {
5930 warn "stopping swtpm instance (pid $tpmpid) due to QEMU startup error\n";
5931 kill 'TERM', $tpmpid;
5932 }
f9dde219
SR
5933 die "QEMU exited with code $exitcode\n";
5934 }
503308ed 5935 };
3898a563 5936 };
503308ed 5937
3898a563 5938 if ($conf->{hugepages}) {
7023f3ea 5939
3898a563 5940 my $code = sub {
dafb728c
AD
5941 my $hotplug_features =
5942 parse_hotplug_features(defined($conf->{hotplug}) ? $conf->{hotplug} : '1');
5943 my $hugepages_topology =
5944 PVE::QemuServer::Memory::hugepages_topology($conf, $hotplug_features->{memory});
5945
3898a563 5946 my $hugepages_host_topology = PVE::QemuServer::Memory::hugepages_host_topology();
7023f3ea 5947
3898a563
FG
5948 PVE::QemuServer::Memory::hugepages_mount();
5949 PVE::QemuServer::Memory::hugepages_allocate($hugepages_topology, $hugepages_host_topology);
7023f3ea 5950
503308ed 5951 eval { $run_qemu->() };
3898a563 5952 if (my $err = $@) {
f36e9894
SR
5953 PVE::QemuServer::Memory::hugepages_reset($hugepages_host_topology)
5954 if !$conf->{keephugepages};
3898a563
FG
5955 die $err;
5956 }
77cde36b 5957
f36e9894
SR
5958 PVE::QemuServer::Memory::hugepages_pre_deallocate($hugepages_topology)
5959 if !$conf->{keephugepages};
3898a563
FG
5960 };
5961 eval { PVE::QemuServer::Memory::hugepages_update_locked($code); };
1e3baf05 5962
3898a563
FG
5963 } else {
5964 eval { $run_qemu->() };
5965 }
afdb31d5 5966
3898a563
FG
5967 if (my $err = $@) {
5968 # deactivate volumes if start fails
5969 eval { PVE::Storage::deactivate_volumes($storecfg, $vollist); };
1b189121
DC
5970 warn $@ if $@;
5971 eval { cleanup_pci_devices($vmid, $conf) };
5972 warn $@ if $@;
1fb1822e 5973
3898a563
FG
5974 die "start failed: $err";
5975 }
62de2cbd 5976
1fb1822e
DC
5977 # re-reserve all PCI IDs now that we can know the actual VM PID
5978 my $pid = PVE::QemuServer::Helpers::vm_running_locally($vmid);
5979 eval { PVE::QemuServer::PCI::reserve_pci_usage($pci_id_list, $vmid, undef, $pid) };
5980 warn $@ if $@;
5981
05b2a4ae
FG
5982 if (defined($res->{migrate})) {
5983 print "migration listens on $res->{migrate}->{uri}\n";
5984 } elsif ($statefile) {
3898a563
FG
5985 eval { mon_cmd($vmid, "cont"); };
5986 warn $@ if $@;
5987 }
2189246c 5988
3898a563 5989 #start nbd server for storage migration
13cfe3b7 5990 if (my $nbd = $migrate_opts->{nbd}) {
3898a563 5991 my $nbd_protocol_version = $migrate_opts->{nbd_proto_version} // 0;
2189246c 5992
3898a563
FG
5993 my $migrate_storage_uri;
5994 # nbd_protocol_version > 0 for unix socket support
eef93bc5 5995 if ($nbd_protocol_version > 0 && ($migration_type eq 'secure' || $migration_type eq 'websocket')) {
3898a563
FG
5996 my $socket_path = "/run/qemu-server/$vmid\_nbd.migrate";
5997 mon_cmd($vmid, "nbd-server-start", addr => { type => 'unix', data => { path => $socket_path } } );
5998 $migrate_storage_uri = "nbd:unix:$socket_path";
05b2a4ae 5999 $res->{migrate}->{unix_sockets} = [$socket_path];
3898a563
FG
6000 } else {
6001 my $nodename = nodename();
6002 my $localip = $get_migration_ip->($nodename);
6003 my $pfamily = PVE::Tools::get_host_address_family($nodename);
6004 my $storage_migrate_port = PVE::Tools::next_migrate_port($pfamily);
6005
4df98f2f
TL
6006 mon_cmd($vmid, "nbd-server-start", addr => {
6007 type => 'inet',
6008 data => {
6009 host => "${localip}",
6010 port => "${storage_migrate_port}",
6011 },
6012 });
3898a563
FG
6013 $localip = "[$localip]" if Net::IP::ip_is_ipv6($localip);
6014 $migrate_storage_uri = "nbd:${localip}:${storage_migrate_port}";
2189246c
AD
6015 }
6016
83f04be3
FE
6017 my $block_info = mon_cmd($vmid, "query-block");
6018 $block_info = { map { $_->{device} => $_ } $block_info->@* };
6019
13cfe3b7 6020 foreach my $opt (sort keys %$nbd) {
ba5396b5
FG
6021 my $drivestr = $nbd->{$opt}->{drivestr};
6022 my $volid = $nbd->{$opt}->{volid};
83f04be3
FE
6023
6024 my $block_node = $block_info->{"drive-$opt"}->{inserted}->{'node-name'};
6025
6026 mon_cmd(
6027 $vmid,
6028 "block-export-add",
6029 id => "drive-$opt",
6030 'node-name' => $block_node,
6031 writable => JSON::true,
6032 type => "nbd",
6033 name => "drive-$opt", # NBD export name
6034 );
6035
84da8217
FG
6036 my $nbd_uri = "$migrate_storage_uri:exportname=drive-$opt";
6037 print "storage migration listens on $nbd_uri volume:$drivestr\n";
ba5396b5
FG
6038 print "re-using replicated volume: $opt - $volid\n"
6039 if $nbd->{$opt}->{replicated};
84da8217
FG
6040
6041 $res->{drives}->{$opt} = $nbd->{$opt};
6042 $res->{drives}->{$opt}->{nbd_uri} = $nbd_uri;
3898a563
FG
6043 }
6044 }
a89fded1 6045
3898a563
FG
6046 if ($migratedfrom) {
6047 eval {
6048 set_migration_caps($vmid);
6049 };
6050 warn $@ if $@;
6051
6052 if ($spice_port) {
6053 print "spice listens on port $spice_port\n";
84da8217 6054 $res->{spice_port} = $spice_port;
3898a563 6055 if ($migrate_opts->{spice_ticket}) {
4df98f2f
TL
6056 mon_cmd($vmid, "set_password", protocol => 'spice', password =>
6057 $migrate_opts->{spice_ticket});
3898a563 6058 mon_cmd($vmid, "expire_password", protocol => 'spice', time => "+30");
95a4b4a9 6059 }
3898a563 6060 }
95a4b4a9 6061
3898a563
FG
6062 } else {
6063 mon_cmd($vmid, "balloon", value => $conf->{balloon}*1024*1024)
6064 if !$statefile && $conf->{balloon};
25088687 6065
3898a563
FG
6066 foreach my $opt (keys %$conf) {
6067 next if $opt !~ m/^net\d+$/;
6068 my $nicconf = parse_net($conf->{$opt});
6069 qemu_set_link_status($vmid, $opt, 0) if $nicconf->{link_down};
e18b0b99 6070 }
21947fea 6071 add_nets_bridge_fdb($conf, $vmid);
3898a563 6072 }
a1b7d579 6073
4044ae1f 6074 if (!defined($conf->{balloon}) || $conf->{balloon}) {
cb64a643
FE
6075 eval {
6076 mon_cmd(
6077 $vmid,
6078 'qom-set',
6079 path => "machine/peripheral/balloon0",
6080 property => "guest-stats-polling-interval",
6081 value => 2
6082 );
6083 };
6084 log_warn("could not set polling interval for ballooning - $@") if $@;
4044ae1f 6085 }
eb065317 6086
3898a563
FG
6087 if ($resume) {
6088 print "Resumed VM, removing state\n";
6089 if (my $vmstate = $conf->{vmstate}) {
6090 PVE::Storage::deactivate_volumes($storecfg, [$vmstate]);
6091 PVE::Storage::vdisk_free($storecfg, $vmstate);
7ceade4c 6092 }
ea1c2110 6093 delete $conf->@{qw(lock vmstate runningmachine runningcpu)};
3898a563
FG
6094 PVE::QemuConfig->write_config($vmid, $conf);
6095 }
7ceade4c 6096
3898a563 6097 PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'post-start');
84da8217
FG
6098
6099 return $res;
1e3baf05
DM
6100}
6101
1e3baf05 6102sub vm_commandline {
b14477e7 6103 my ($storecfg, $vmid, $snapname) = @_;
1e3baf05 6104
ffda963f 6105 my $conf = PVE::QemuConfig->load_config($vmid);
1e3baf05 6106
e8a26810 6107 my ($forcemachine, $forcecpu);
b14477e7
RV
6108 if ($snapname) {
6109 my $snapshot = $conf->{snapshots}->{$snapname};
87d92707
TL
6110 die "snapshot '$snapname' does not exist\n" if !defined($snapshot);
6111
ea1c2110
SR
6112 # check for machine or CPU overrides in snapshot
6113 $forcemachine = $snapshot->{runningmachine};
6114 $forcecpu = $snapshot->{runningcpu};
092868c4 6115
87d92707 6116 $snapshot->{digest} = $conf->{digest}; # keep file digest for API
b14477e7 6117
b14477e7
RV
6118 $conf = $snapshot;
6119 }
6120
1e3baf05
DM
6121 my $defaults = load_defaults();
6122
e8a26810 6123 my $cmd = config_to_command($storecfg, $vmid, $conf, $defaults, $forcemachine, $forcecpu);
1e3baf05 6124
5930c1ff 6125 return PVE::Tools::cmd2string($cmd);
1e3baf05
DM
6126}
6127
6128sub vm_reset {
6129 my ($vmid, $skiplock) = @_;
6130
ffda963f 6131 PVE::QemuConfig->lock_config($vmid, sub {
1e3baf05 6132
ffda963f 6133 my $conf = PVE::QemuConfig->load_config($vmid);
1e3baf05 6134
ffda963f 6135 PVE::QemuConfig->check_lock($conf) if !$skiplock;
1e3baf05 6136
0a13e08e 6137 mon_cmd($vmid, "system_reset");
ff1a2432
DM
6138 });
6139}
6140
6141sub get_vm_volumes {
6142 my ($conf) = @_;
1e3baf05 6143
ff1a2432 6144 my $vollist = [];
d5769dc2 6145 foreach_volid($conf, sub {
392f8b5d 6146 my ($volid, $attr) = @_;
ff1a2432 6147
d5769dc2 6148 return if $volid =~ m|^/|;
ff1a2432 6149
d5769dc2
DM
6150 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
6151 return if !$sid;
ff1a2432
DM
6152
6153 push @$vollist, $volid;
1e3baf05 6154 });
ff1a2432
DM
6155
6156 return $vollist;
6157}
6158
1b189121
DC
6159sub cleanup_pci_devices {
6160 my ($vmid, $conf) = @_;
6161
6162 foreach my $key (keys %$conf) {
6163 next if $key !~ m/^hostpci(\d+)$/;
6164 my $hostpciindex = $1;
6165 my $uuid = PVE::SysFSTools::generate_mdev_uuid($vmid, $hostpciindex);
6166 my $d = parse_hostpci($conf->{$key});
faf72d6c
TL
6167 if ($d->{mdev}) {
6168 # NOTE: avoid PVE::SysFSTools::pci_cleanup_mdev_device as it requires PCI ID and we
6169 # don't want to break ABI just for this two liner
6170 my $dev_sysfs_dir = "/sys/bus/mdev/devices/$uuid";
49c51a60
DC
6171
6172 # some nvidia vgpu driver versions want to clean the mdevs up themselves, and error
6173 # out when we do it first. so wait for 10 seconds and then try it
6174 my $pciid = $d->{pciid}->[0]->{id};
6175 my $info = PVE::SysFSTools::pci_device_info("$pciid");
6176 if ($info->{vendor} eq '10de') {
6177 sleep 10;
6178 }
6179
faf72d6c
TL
6180 PVE::SysFSTools::file_write("$dev_sysfs_dir/remove", "1") if -e $dev_sysfs_dir;
6181 }
1b189121
DC
6182 }
6183 PVE::QemuServer::PCI::remove_pci_reservation($vmid);
6184}
6185
ff1a2432 6186sub vm_stop_cleanup {
70b04821 6187 my ($storecfg, $vmid, $conf, $keepActive, $apply_pending_changes) = @_;
ff1a2432 6188
745fed70 6189 eval {
ff1a2432 6190
254575e9
DM
6191 if (!$keepActive) {
6192 my $vollist = get_vm_volumes($conf);
6193 PVE::Storage::deactivate_volumes($storecfg, $vollist);
f9dde219
SR
6194
6195 if (my $tpmdrive = $conf->{tpmstate0}) {
6196 my $tpm = parse_drive("tpmstate0", $tpmdrive);
6197 my ($storeid, $volname) = PVE::Storage::parse_volume_id($tpm->{file}, 1);
6198 if ($storeid) {
6199 PVE::Storage::unmap_volume($storecfg, $tpm->{file});
6200 }
6201 }
254575e9 6202 }
a1b7d579 6203
ab6a046f 6204 foreach my $ext (qw(mon qmp pid vnc qga)) {
961bfcb2
DM
6205 unlink "/var/run/qemu-server/${vmid}.$ext";
6206 }
a1b7d579 6207
6dbcb073 6208 if ($conf->{ivshmem}) {
4df98f2f 6209 my $ivshmem = parse_property_string($ivshmem_fmt, $conf->{ivshmem});
4c5a6a24
TL
6210 # just delete it for now, VMs which have this already open do not
6211 # are affected, but new VMs will get a separated one. If this
6212 # becomes an issue we either add some sort of ref-counting or just
6213 # add a "don't delete on stop" flag to the ivshmem format.
6dbcb073
DC
6214 unlink '/dev/shm/pve-shm-' . ($ivshmem->{name} // $vmid);
6215 }
6216
1b189121 6217 cleanup_pci_devices($vmid, $conf);
6ab45bd7 6218
70b04821 6219 vmconfig_apply_pending($vmid, $conf, $storecfg) if $apply_pending_changes;
745fed70
DM
6220 };
6221 warn $@ if $@; # avoid errors - just warn
1e3baf05
DM
6222}
6223
575d19da
DC
6224# call only in locked context
6225sub _do_vm_stop {
6226 my ($storecfg, $vmid, $skiplock, $nocheck, $timeout, $shutdown, $force, $keepActive) = @_;
9269013a 6227
575d19da
DC
6228 my $pid = check_running($vmid, $nocheck);
6229 return if !$pid;
1e3baf05 6230
575d19da
DC
6231 my $conf;
6232 if (!$nocheck) {
6233 $conf = PVE::QemuConfig->load_config($vmid);
6234 PVE::QemuConfig->check_lock($conf) if !$skiplock;
6235 if (!defined($timeout) && $shutdown && $conf->{startup}) {
6236 my $opts = PVE::JSONSchema::pve_parse_startup_order($conf->{startup});
6237 $timeout = $opts->{down} if $opts->{down};
e6c3b671 6238 }
575d19da
DC
6239 PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'pre-stop');
6240 }
19672434 6241
575d19da
DC
6242 eval {
6243 if ($shutdown) {
a2af1bbe 6244 if (defined($conf) && get_qga_key($conf, 'enabled')) {
0a13e08e 6245 mon_cmd($vmid, "guest-shutdown", timeout => $timeout);
9269013a 6246 } else {
0a13e08e 6247 mon_cmd($vmid, "system_powerdown");
1e3baf05
DM
6248 }
6249 } else {
0a13e08e 6250 mon_cmd($vmid, "quit");
1e3baf05 6251 }
575d19da
DC
6252 };
6253 my $err = $@;
1e3baf05 6254
575d19da
DC
6255 if (!$err) {
6256 $timeout = 60 if !defined($timeout);
1e3baf05
DM
6257
6258 my $count = 0;
e6c3b671 6259 while (($count < $timeout) && check_running($vmid, $nocheck)) {
1e3baf05
DM
6260 $count++;
6261 sleep 1;
6262 }
6263
6264 if ($count >= $timeout) {
575d19da
DC
6265 if ($force) {
6266 warn "VM still running - terminating now with SIGTERM\n";
6267 kill 15, $pid;
6268 } else {
6269 die "VM quit/powerdown failed - got timeout\n";
6270 }
6271 } else {
6272 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive, 1) if $conf;
6273 return;
1e3baf05 6274 }
575d19da 6275 } else {
d60cbb97
TL
6276 if (!check_running($vmid, $nocheck)) {
6277 warn "Unexpected: VM shutdown command failed, but VM not running anymore..\n";
6278 return;
6279 }
6280 if ($force) {
575d19da
DC
6281 warn "VM quit/powerdown failed - terminating now with SIGTERM\n";
6282 kill 15, $pid;
6283 } else {
6284 die "VM quit/powerdown failed\n";
6285 }
6286 }
6287
6288 # wait again
6289 $timeout = 10;
6290
6291 my $count = 0;
6292 while (($count < $timeout) && check_running($vmid, $nocheck)) {
6293 $count++;
6294 sleep 1;
6295 }
6296
6297 if ($count >= $timeout) {
6298 warn "VM still running - terminating now with SIGKILL\n";
6299 kill 9, $pid;
6300 sleep 1;
6301 }
1e3baf05 6302
575d19da
DC
6303 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive, 1) if $conf;
6304}
6305
6306# Note: use $nocheck to skip tests if VM configuration file exists.
6307# We need that when migration VMs to other nodes (files already moved)
6308# Note: we set $keepActive in vzdump stop mode - volumes need to stay active
6309sub vm_stop {
6310 my ($storecfg, $vmid, $skiplock, $nocheck, $timeout, $shutdown, $force, $keepActive, $migratedfrom) = @_;
6311
6312 $force = 1 if !defined($force) && !$shutdown;
6313
6314 if ($migratedfrom){
6315 my $pid = check_running($vmid, $nocheck, $migratedfrom);
6316 kill 15, $pid if $pid;
6317 my $conf = PVE::QemuConfig->load_config($vmid, $migratedfrom);
6318 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive, 0);
6319 return;
6320 }
6321
6322 PVE::QemuConfig->lock_config($vmid, sub {
6323 _do_vm_stop($storecfg, $vmid, $skiplock, $nocheck, $timeout, $shutdown, $force, $keepActive);
ff1a2432 6324 });
1e3baf05
DM
6325}
6326
165411f0
DC
6327sub vm_reboot {
6328 my ($vmid, $timeout) = @_;
6329
6330 PVE::QemuConfig->lock_config($vmid, sub {
66026117 6331 eval {
165411f0 6332
66026117
OB
6333 # only reboot if running, as qmeventd starts it again on a stop event
6334 return if !check_running($vmid);
165411f0 6335
66026117 6336 create_reboot_request($vmid);
165411f0 6337
66026117
OB
6338 my $storecfg = PVE::Storage::config();
6339 _do_vm_stop($storecfg, $vmid, undef, undef, $timeout, 1);
165411f0 6340
66026117
OB
6341 };
6342 if (my $err = $@) {
3c1c3fe6 6343 # avoid that the next normal shutdown will be confused for a reboot
66026117
OB
6344 clear_reboot_request($vmid);
6345 die $err;
6346 }
165411f0
DC
6347 });
6348}
6349
75c24bba 6350# note: if using the statestorage parameter, the caller has to check privileges
1e3baf05 6351sub vm_suspend {
48b4cdc2 6352 my ($vmid, $skiplock, $includestate, $statestorage) = @_;
159719e5
DC
6353
6354 my $conf;
6355 my $path;
6356 my $storecfg;
6357 my $vmstate;
1e3baf05 6358
ffda963f 6359 PVE::QemuConfig->lock_config($vmid, sub {
1e3baf05 6360
159719e5 6361 $conf = PVE::QemuConfig->load_config($vmid);
1e3baf05 6362
159719e5 6363 my $is_backing_up = PVE::QemuConfig->has_lock($conf, 'backup');
e79706d4 6364 PVE::QemuConfig->check_lock($conf)
159719e5
DC
6365 if !($skiplock || $is_backing_up);
6366
6367 die "cannot suspend to disk during backup\n"
6368 if $is_backing_up && $includestate;
bcb7c9cf 6369
159719e5
DC
6370 if ($includestate) {
6371 $conf->{lock} = 'suspending';
6372 my $date = strftime("%Y-%m-%d", localtime(time()));
6373 $storecfg = PVE::Storage::config();
75c24bba
DC
6374 if (!$statestorage) {
6375 $statestorage = find_vmstate_storage($conf, $storecfg);
6376 # check permissions for the storage
6377 my $rpcenv = PVE::RPCEnvironment::get();
6378 if ($rpcenv->{type} ne 'cli') {
6379 my $authuser = $rpcenv->get_user();
6380 $rpcenv->check($authuser, "/storage/$statestorage", ['Datastore.AllocateSpace']);
6381 }
6382 }
6383
6384
4df98f2f
TL
6385 $vmstate = PVE::QemuConfig->__snapshot_save_vmstate(
6386 $vmid, $conf, "suspend-$date", $storecfg, $statestorage, 1);
159719e5
DC
6387 $path = PVE::Storage::path($storecfg, $vmstate);
6388 PVE::QemuConfig->write_config($vmid, $conf);
6389 } else {
0a13e08e 6390 mon_cmd($vmid, "stop");
159719e5 6391 }
1e3baf05 6392 });
159719e5
DC
6393
6394 if ($includestate) {
6395 # save vm state
6396 PVE::Storage::activate_volumes($storecfg, [$vmstate]);
6397
6398 eval {
27a5be53 6399 set_migration_caps($vmid, 1);
0a13e08e 6400 mon_cmd($vmid, "savevm-start", statefile => $path);
159719e5 6401 for(;;) {
0a13e08e 6402 my $state = mon_cmd($vmid, "query-savevm");
159719e5
DC
6403 if (!$state->{status}) {
6404 die "savevm not active\n";
6405 } elsif ($state->{status} eq 'active') {
6406 sleep(1);
6407 next;
6408 } elsif ($state->{status} eq 'completed') {
b0a9a385 6409 print "State saved, quitting\n";
159719e5
DC
6410 last;
6411 } elsif ($state->{status} eq 'failed' && $state->{error}) {
6412 die "query-savevm failed with error '$state->{error}'\n"
6413 } else {
6414 die "query-savevm returned status '$state->{status}'\n";
6415 }
6416 }
6417 };
6418 my $err = $@;
6419
6420 PVE::QemuConfig->lock_config($vmid, sub {
6421 $conf = PVE::QemuConfig->load_config($vmid);
6422 if ($err) {
6423 # cleanup, but leave suspending lock, to indicate something went wrong
6424 eval {
0a13e08e 6425 mon_cmd($vmid, "savevm-end");
159719e5
DC
6426 PVE::Storage::deactivate_volumes($storecfg, [$vmstate]);
6427 PVE::Storage::vdisk_free($storecfg, $vmstate);
ea1c2110 6428 delete $conf->@{qw(vmstate runningmachine runningcpu)};
159719e5
DC
6429 PVE::QemuConfig->write_config($vmid, $conf);
6430 };
6431 warn $@ if $@;
6432 die $err;
6433 }
6434
6435 die "lock changed unexpectedly\n"
6436 if !PVE::QemuConfig->has_lock($conf, 'suspending');
6437
0a13e08e 6438 mon_cmd($vmid, "quit");
159719e5
DC
6439 $conf->{lock} = 'suspended';
6440 PVE::QemuConfig->write_config($vmid, $conf);
6441 });
6442 }
1e3baf05
DM
6443}
6444
a20dc58a
FG
6445# $nocheck is set when called as part of a migration - in this context the
6446# location of the config file (source or target node) is not deterministic,
6447# since migration cannot wait for pmxcfs to process the rename
1e3baf05 6448sub vm_resume {
289e0b85 6449 my ($vmid, $skiplock, $nocheck) = @_;
1e3baf05 6450
ffda963f 6451 PVE::QemuConfig->lock_config($vmid, sub {
0a13e08e 6452 my $res = mon_cmd($vmid, 'query-status');
c2786bed 6453 my $resume_cmd = 'cont';
8e0c97bb 6454 my $reset = 0;
270bfff2
FG
6455 my $conf;
6456 if ($nocheck) {
ad9e347c
FG
6457 $conf = eval { PVE::QemuConfig->load_config($vmid) }; # try on target node
6458 if ($@) {
6459 my $vmlist = PVE::Cluster::get_vmlist();
6460 if (exists($vmlist->{ids}->{$vmid})) {
6461 my $node = $vmlist->{ids}->{$vmid}->{node};
6462 $conf = eval { PVE::QemuConfig->load_config($vmid, $node) }; # try on source node
6463 }
6464 if (!$conf) {
6465 PVE::Cluster::cfs_update(); # vmlist was wrong, invalidate cache
6466 $conf = PVE::QemuConfig->load_config($vmid); # last try on target node again
6467 }
270bfff2 6468 }
270bfff2
FG
6469 } else {
6470 $conf = PVE::QemuConfig->load_config($vmid);
6471 }
c2786bed 6472
8e0c97bb
SR
6473 if ($res->{status}) {
6474 return if $res->{status} eq 'running'; # job done, go home
6475 $resume_cmd = 'system_wakeup' if $res->{status} eq 'suspended';
6476 $reset = 1 if $res->{status} eq 'shutdown';
c2786bed
DC
6477 }
6478
289e0b85 6479 if (!$nocheck) {
e79706d4
FG
6480 PVE::QemuConfig->check_lock($conf)
6481 if !($skiplock || PVE::QemuConfig->has_lock($conf, 'backup'));
289e0b85 6482 }
3e24733b 6483
8e0c97bb
SR
6484 if ($reset) {
6485 # required if a VM shuts down during a backup and we get a resume
6486 # request before the backup finishes for example
6487 mon_cmd($vmid, "system_reset");
6488 }
21947fea
AD
6489
6490 add_nets_bridge_fdb($conf, $vmid) if $resume_cmd eq 'cont';
6491
0a13e08e 6492 mon_cmd($vmid, $resume_cmd);
1e3baf05
DM
6493 });
6494}
6495
5fdbe4f0
DM
6496sub vm_sendkey {
6497 my ($vmid, $skiplock, $key) = @_;
1e3baf05 6498
ffda963f 6499 PVE::QemuConfig->lock_config($vmid, sub {
1e3baf05 6500
ffda963f 6501 my $conf = PVE::QemuConfig->load_config($vmid);
f5eb281a 6502
7b7c6d1b 6503 # there is no qmp command, so we use the human monitor command
0a13e08e 6504 my $res = PVE::QemuServer::Monitor::hmp_cmd($vmid, "sendkey $key");
d30820d6 6505 die $res if $res ne '';
1e3baf05
DM
6506 });
6507}
6508
3e16d5fc
DM
6509# vzdump restore implementaion
6510
ed221350 6511sub tar_archive_read_firstfile {
3e16d5fc 6512 my $archive = shift;
afdb31d5 6513
3e16d5fc
DM
6514 die "ERROR: file '$archive' does not exist\n" if ! -f $archive;
6515
6516 # try to detect archive type first
387ba257 6517 my $pid = open (my $fh, '-|', 'tar', 'tf', $archive) ||
3e16d5fc 6518 die "unable to open file '$archive'\n";
387ba257 6519 my $firstfile = <$fh>;
3e16d5fc 6520 kill 15, $pid;
387ba257 6521 close $fh;
3e16d5fc
DM
6522
6523 die "ERROR: archive contaions no data\n" if !$firstfile;
6524 chomp $firstfile;
6525
6526 return $firstfile;
6527}
6528
ed221350
DM
6529sub tar_restore_cleanup {
6530 my ($storecfg, $statfile) = @_;
3e16d5fc
DM
6531
6532 print STDERR "starting cleanup\n";
6533
6534 if (my $fd = IO::File->new($statfile, "r")) {
6535 while (defined(my $line = <$fd>)) {
6536 if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
6537 my $volid = $2;
6538 eval {
6539 if ($volid =~ m|^/|) {
6540 unlink $volid || die 'unlink failed\n';
6541 } else {
ed221350 6542 PVE::Storage::vdisk_free($storecfg, $volid);
3e16d5fc 6543 }
afdb31d5 6544 print STDERR "temporary volume '$volid' sucessfuly removed\n";
3e16d5fc
DM
6545 };
6546 print STDERR "unable to cleanup '$volid' - $@" if $@;
6547 } else {
6548 print STDERR "unable to parse line in statfile - $line";
afdb31d5 6549 }
3e16d5fc
DM
6550 }
6551 $fd->close();
6552 }
6553}
6554
d1e92cf6 6555sub restore_file_archive {
a0d1b1a2 6556 my ($archive, $vmid, $user, $opts) = @_;
3e16d5fc 6557
a2ec5a67
FG
6558 return restore_vma_archive($archive, $vmid, $user, $opts)
6559 if $archive eq '-';
6560
c6d51783
AA
6561 my $info = PVE::Storage::archive_info($archive);
6562 my $format = $opts->{format} // $info->{format};
6563 my $comp = $info->{compression};
91bd6c90
DM
6564
6565 # try to detect archive format
6566 if ($format eq 'tar') {
6567 return restore_tar_archive($archive, $vmid, $user, $opts);
6568 } else {
6569 return restore_vma_archive($archive, $vmid, $user, $opts, $comp);
6570 }
6571}
6572
d1e92cf6
DM
6573# hepler to remove disks that will not be used after restore
6574my $restore_cleanup_oldconf = sub {
6575 my ($storecfg, $vmid, $oldconf, $virtdev_hash) = @_;
6576
01a4377f
FE
6577 my $kept_disks = {};
6578
912792e2 6579 PVE::QemuConfig->foreach_volume($oldconf, sub {
d1e92cf6
DM
6580 my ($ds, $drive) = @_;
6581
6582 return if drive_is_cdrom($drive, 1);
6583
6584 my $volid = $drive->{file};
6585 return if !$volid || $volid =~ m|^/|;
6586
6587 my ($path, $owner) = PVE::Storage::path($storecfg, $volid);
6588 return if !$path || !$owner || ($owner != $vmid);
6589
6590 # Note: only delete disk we want to restore
6591 # other volumes will become unused
6592 if ($virtdev_hash->{$ds}) {
6593 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
6594 if (my $err = $@) {
6595 warn $err;
6596 }
01a4377f
FE
6597 } else {
6598 $kept_disks->{$volid} = 1;
d1e92cf6
DM
6599 }
6600 });
6601
01a4377f
FE
6602 # after the restore we have no snapshots anymore
6603 for my $snapname (keys $oldconf->{snapshots}->%*) {
d1e92cf6
DM
6604 my $snap = $oldconf->{snapshots}->{$snapname};
6605 if ($snap->{vmstate}) {
6606 eval { PVE::Storage::vdisk_free($storecfg, $snap->{vmstate}); };
6607 if (my $err = $@) {
6608 warn $err;
6609 }
6610 }
01a4377f
FE
6611
6612 for my $volid (keys $kept_disks->%*) {
6613 eval { PVE::Storage::volume_snapshot_delete($storecfg, $volid, $snapname); };
6614 warn $@ if $@;
6615 }
d1e92cf6
DM
6616 }
6617};
6618
9f3d73bc
DM
6619# Helper to parse vzdump backup device hints
6620#
6621# $rpcenv: Environment, used to ckeck storage permissions
6622# $user: User ID, to check storage permissions
6623# $storecfg: Storage configuration
6624# $fh: the file handle for reading the configuration
6625# $devinfo: should contain device sizes for all backu-up'ed devices
6626# $options: backup options (pool, default storage)
6627#
6628# Return: $virtdev_hash, updates $devinfo (add devname, virtdev, format, storeid)
6629my $parse_backup_hints = sub {
6630 my ($rpcenv, $user, $storecfg, $fh, $devinfo, $options) = @_;
d1e92cf6 6631
36d4bdcb
TL
6632 my $check_storage = sub { # assert if an image can be allocate
6633 my ($storeid, $scfg) = @_;
6634 die "Content type 'images' is not available on storage '$storeid'\n"
6635 if !$scfg->{content}->{images};
6636 $rpcenv->check($user, "/storage/$storeid", ['Datastore.AllocateSpace'])
6637 if $user ne 'root@pam';
6638 };
d1e92cf6 6639
36d4bdcb 6640 my $virtdev_hash = {};
9f3d73bc
DM
6641 while (defined(my $line = <$fh>)) {
6642 if ($line =~ m/^\#qmdump\#map:(\S+):(\S+):(\S*):(\S*):$/) {
6643 my ($virtdev, $devname, $storeid, $format) = ($1, $2, $3, $4);
6644 die "archive does not contain data for drive '$virtdev'\n"
6645 if !$devinfo->{$devname};
6646
6647 if (defined($options->{storage})) {
6648 $storeid = $options->{storage} || 'local';
6649 } elsif (!$storeid) {
6650 $storeid = 'local';
d1e92cf6 6651 }
9f3d73bc
DM
6652 $format = 'raw' if !$format;
6653 $devinfo->{$devname}->{devname} = $devname;
6654 $devinfo->{$devname}->{virtdev} = $virtdev;
6655 $devinfo->{$devname}->{format} = $format;
6656 $devinfo->{$devname}->{storeid} = $storeid;
6657
62af60cd 6658 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
36d4bdcb 6659 $check_storage->($storeid, $scfg); # permission and content type check
d1e92cf6 6660
9f3d73bc
DM
6661 $virtdev_hash->{$virtdev} = $devinfo->{$devname};
6662 } elsif ($line =~ m/^((?:ide|sata|scsi)\d+):\s*(.*)\s*$/) {
6663 my $virtdev = $1;
6664 my $drive = parse_drive($virtdev, $2);
36d4bdcb 6665
9f3d73bc
DM
6666 if (drive_is_cloudinit($drive)) {
6667 my ($storeid, $volname) = PVE::Storage::parse_volume_id($drive->{file});
5364990d
TL
6668 $storeid = $options->{storage} if defined ($options->{storage});
6669 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
9f3d73bc 6670 my $format = qemu_img_format($scfg, $volname); # has 'raw' fallback
d1e92cf6 6671
36d4bdcb 6672 $check_storage->($storeid, $scfg); # permission and content type check
9f8ba326 6673
9f3d73bc
DM
6674 $virtdev_hash->{$virtdev} = {
6675 format => $format,
5364990d 6676 storeid => $storeid,
9f3d73bc
DM
6677 size => PVE::QemuServer::Cloudinit::CLOUDINIT_DISK_SIZE,
6678 is_cloudinit => 1,
6679 };
d1e92cf6 6680 }
9f3d73bc
DM
6681 }
6682 }
d1e92cf6 6683
9f3d73bc
DM
6684 return $virtdev_hash;
6685};
d1e92cf6 6686
9f3d73bc
DM
6687# Helper to allocate and activate all volumes required for a restore
6688#
6689# $storecfg: Storage configuration
6690# $virtdev_hash: as returned by parse_backup_hints()
6691#
6692# Returns: { $virtdev => $volid }
6693my $restore_allocate_devices = sub {
6694 my ($storecfg, $virtdev_hash, $vmid) = @_;
d1e92cf6 6695
9f3d73bc
DM
6696 my $map = {};
6697 foreach my $virtdev (sort keys %$virtdev_hash) {
6698 my $d = $virtdev_hash->{$virtdev};
6699 my $alloc_size = int(($d->{size} + 1024 - 1)/1024);
6700 my $storeid = $d->{storeid};
6701 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
d1e92cf6 6702
9f3d73bc
DM
6703 # test if requested format is supported
6704 my ($defFormat, $validFormats) = PVE::Storage::storage_default_format($storecfg, $storeid);
6705 my $supported = grep { $_ eq $d->{format} } @$validFormats;
6706 $d->{format} = $defFormat if !$supported;
d1e92cf6 6707
9f3d73bc
DM
6708 my $name;
6709 if ($d->{is_cloudinit}) {
6710 $name = "vm-$vmid-cloudinit";
c997e24a
ML
6711 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
6712 if ($scfg->{path}) {
6713 $name .= ".$d->{format}";
6714 }
d1e92cf6
DM
6715 }
6716
4df98f2f
TL
6717 my $volid = PVE::Storage::vdisk_alloc(
6718 $storecfg, $storeid, $vmid, $d->{format}, $name, $alloc_size);
d1e92cf6 6719
9f3d73bc
DM
6720 print STDERR "new volume ID is '$volid'\n";
6721 $d->{volid} = $volid;
d1e92cf6 6722
9f3d73bc 6723 PVE::Storage::activate_volumes($storecfg, [$volid]);
d1e92cf6 6724
9f3d73bc 6725 $map->{$virtdev} = $volid;
d1e92cf6
DM
6726 }
6727
9f3d73bc
DM
6728 return $map;
6729};
d1e92cf6 6730
c62d7cf5 6731sub restore_update_config_line {
eabac302 6732 my ($cookie, $map, $line, $unique) = @_;
91bd6c90 6733
98a4b3fb
FE
6734 return '' if $line =~ m/^\#qmdump\#/;
6735 return '' if $line =~ m/^\#vzdump\#/;
6736 return '' if $line =~ m/^lock:/;
6737 return '' if $line =~ m/^unused\d+:/;
6738 return '' if $line =~ m/^parent:/;
6739
6740 my $res = '';
91bd6c90 6741
b5b99790 6742 my $dc = PVE::Cluster::cfs_read_file('datacenter.cfg');
91bd6c90
DM
6743 if (($line =~ m/^(vlan(\d+)):\s*(\S+)\s*$/)) {
6744 # try to convert old 1.X settings
6745 my ($id, $ind, $ethcfg) = ($1, $2, $3);
6746 foreach my $devconfig (PVE::Tools::split_list($ethcfg)) {
6747 my ($model, $macaddr) = split(/\=/, $devconfig);
b5b99790 6748 $macaddr = PVE::Tools::random_ether_addr($dc->{mac_prefix}) if !$macaddr || $unique;
91bd6c90
DM
6749 my $net = {
6750 model => $model,
6751 bridge => "vmbr$ind",
6752 macaddr => $macaddr,
6753 };
6754 my $netstr = print_net($net);
6755
98a4b3fb 6756 $res .= "net$cookie->{netcount}: $netstr\n";
91bd6c90
DM
6757 $cookie->{netcount}++;
6758 }
6759 } elsif (($line =~ m/^(net\d+):\s*(\S+)\s*$/) && $unique) {
6760 my ($id, $netstr) = ($1, $2);
6761 my $net = parse_net($netstr);
b5b99790 6762 $net->{macaddr} = PVE::Tools::random_ether_addr($dc->{mac_prefix}) if $net->{macaddr};
91bd6c90 6763 $netstr = print_net($net);
98a4b3fb 6764 $res .= "$id: $netstr\n";
f9dde219 6765 } elsif ($line =~ m/^((ide|scsi|virtio|sata|efidisk|tpmstate)\d+):\s*(\S+)\s*$/) {
91bd6c90 6766 my $virtdev = $1;
907ea891 6767 my $value = $3;
d9faf790
WB
6768 my $di = parse_drive($virtdev, $value);
6769 if (defined($di->{backup}) && !$di->{backup}) {
98a4b3fb 6770 $res .= "#$line";
c0f7406e 6771 } elsif ($map->{$virtdev}) {
8fd57431 6772 delete $di->{format}; # format can change on restore
91bd6c90 6773 $di->{file} = $map->{$virtdev};
71c58bb7 6774 $value = print_drive($di);
98a4b3fb 6775 $res .= "$virtdev: $value\n";
91bd6c90 6776 } else {
98a4b3fb 6777 $res .= $line;
91bd6c90 6778 }
1a0c2f03 6779 } elsif (($line =~ m/^vmgenid: (.*)/)) {
babecffe 6780 my $vmgenid = $1;
6ee499ff 6781 if ($vmgenid ne '0') {
1a0c2f03 6782 # always generate a new vmgenid if there was a valid one setup
6ee499ff
DC
6783 $vmgenid = generate_uuid();
6784 }
98a4b3fb 6785 $res .= "vmgenid: $vmgenid\n";
19a5dd55
WL
6786 } elsif (($line =~ m/^(smbios1: )(.*)/) && $unique) {
6787 my ($uuid, $uuid_str);
6788 UUID::generate($uuid);
6789 UUID::unparse($uuid, $uuid_str);
6790 my $smbios1 = parse_smbios1($2);
6791 $smbios1->{uuid} = $uuid_str;
98a4b3fb 6792 $res .= $1.print_smbios1($smbios1)."\n";
91bd6c90 6793 } else {
98a4b3fb 6794 $res .= $line;
91bd6c90 6795 }
98a4b3fb
FE
6796
6797 return $res;
c62d7cf5 6798}
9f3d73bc
DM
6799
6800my $restore_deactivate_volumes = sub {
e8b07b29 6801 my ($storecfg, $virtdev_hash) = @_;
9f3d73bc
DM
6802
6803 my $vollist = [];
e8b07b29
FE
6804 for my $dev (values $virtdev_hash->%*) {
6805 push $vollist->@*, $dev->{volid} if $dev->{volid};
9f3d73bc
DM
6806 }
6807
ff86112c
FE
6808 eval { PVE::Storage::deactivate_volumes($storecfg, $vollist); };
6809 print STDERR $@ if $@;
9f3d73bc
DM
6810};
6811
6812my $restore_destroy_volumes = sub {
e8b07b29 6813 my ($storecfg, $virtdev_hash) = @_;
9f3d73bc 6814
e8b07b29
FE
6815 for my $dev (values $virtdev_hash->%*) {
6816 my $volid = $dev->{volid} or next;
9f3d73bc 6817 eval {
e60afe82 6818 PVE::Storage::vdisk_free($storecfg, $volid);
9f3d73bc
DM
6819 print STDERR "temporary volume '$volid' sucessfuly removed\n";
6820 };
6821 print STDERR "unable to cleanup '$volid' - $@" if $@;
6822 }
6823};
91bd6c90 6824
202a2a0b
FE
6825my $restore_merge_config = sub {
6826 my ($filename, $backup_conf_raw, $override_conf) = @_;
6827
6828 my $backup_conf = parse_vm_config($filename, $backup_conf_raw);
6829 for my $key (keys $override_conf->%*) {
6830 $backup_conf->{$key} = $override_conf->{$key};
6831 }
6832
6833 return $backup_conf;
6834};
6835
91bd6c90 6836sub scan_volids {
9a8ba127 6837 my ($cfg, $vmid) = @_;
91bd6c90 6838
9a8ba127 6839 my $info = PVE::Storage::vdisk_list($cfg, undef, $vmid, undef, 'images');
91bd6c90
DM
6840
6841 my $volid_hash = {};
6842 foreach my $storeid (keys %$info) {
6843 foreach my $item (@{$info->{$storeid}}) {
6844 next if !($item->{volid} && $item->{size});
5996a936 6845 $item->{path} = PVE::Storage::path($cfg, $item->{volid});
91bd6c90
DM
6846 $volid_hash->{$item->{volid}} = $item;
6847 }
6848 }
6849
6850 return $volid_hash;
6851}
6852
68b108ee 6853sub update_disk_config {
91bd6c90 6854 my ($vmid, $conf, $volid_hash) = @_;
be190583 6855
91bd6c90 6856 my $changes;
9b29cbd0 6857 my $prefix = "VM $vmid";
91bd6c90 6858
c449137a
DC
6859 # used and unused disks
6860 my $referenced = {};
91bd6c90 6861
5996a936
DM
6862 # Note: it is allowed to define multiple storages with same path (alias), so
6863 # we need to check both 'volid' and real 'path' (two different volid can point
6864 # to the same path).
6865
c449137a 6866 my $referencedpath = {};
be190583 6867
91bd6c90 6868 # update size info
0c4fef3f 6869 PVE::QemuConfig->foreach_volume($conf, sub {
ca04977c 6870 my ($opt, $drive) = @_;
91bd6c90 6871
ca04977c
FE
6872 my $volid = $drive->{file};
6873 return if !$volid;
4df98f2f 6874 my $volume = $volid_hash->{$volid};
91bd6c90 6875
ca04977c
FE
6876 # mark volid as "in-use" for next step
6877 $referenced->{$volid} = 1;
4df98f2f 6878 if ($volume && (my $path = $volume->{path})) {
ca04977c 6879 $referencedpath->{$path} = 1;
91bd6c90 6880 }
ca04977c
FE
6881
6882 return if drive_is_cdrom($drive);
4df98f2f 6883 return if !$volume;
ca04977c 6884
4df98f2f 6885 my ($updated, $msg) = PVE::QemuServer::Drive::update_disksize($drive, $volume->{size});
ca04977c
FE
6886 if (defined($updated)) {
6887 $changes = 1;
6888 $conf->{$opt} = print_drive($updated);
9b29cbd0 6889 print "$prefix ($opt): $msg\n";
ca04977c
FE
6890 }
6891 });
91bd6c90 6892
5996a936 6893 # remove 'unusedX' entry if volume is used
ca04977c
FE
6894 PVE::QemuConfig->foreach_unused_volume($conf, sub {
6895 my ($opt, $drive) = @_;
6896
6897 my $volid = $drive->{file};
6898 return if !$volid;
6899
f7d1505b
TL
6900 my $path;
6901 $path = $volid_hash->{$volid}->{path} if $volid_hash->{$volid};
c449137a 6902 if ($referenced->{$volid} || ($path && $referencedpath->{$path})) {
68b108ee 6903 print "$prefix remove entry '$opt', its volume '$volid' is in use\n";
5996a936
DM
6904 $changes = 1;
6905 delete $conf->{$opt};
6906 }
c449137a
DC
6907
6908 $referenced->{$volid} = 1;
6909 $referencedpath->{$path} = 1 if $path;
ca04977c 6910 });
5996a936 6911
91bd6c90
DM
6912 foreach my $volid (sort keys %$volid_hash) {
6913 next if $volid =~ m/vm-$vmid-state-/;
c449137a 6914 next if $referenced->{$volid};
5996a936
DM
6915 my $path = $volid_hash->{$volid}->{path};
6916 next if !$path; # just to be sure
c449137a 6917 next if $referencedpath->{$path};
91bd6c90 6918 $changes = 1;
53b81297 6919 my $key = PVE::QemuConfig->add_unused_volume($conf, $volid);
68b108ee 6920 print "$prefix add unreferenced volume '$volid' as '$key' to config\n";
c449137a 6921 $referencedpath->{$path} = 1; # avoid to add more than once (aliases)
91bd6c90
DM
6922 }
6923
6924 return $changes;
6925}
6926
6927sub rescan {
9224dcee 6928 my ($vmid, $nolock, $dryrun) = @_;
91bd6c90 6929
20519efc 6930 my $cfg = PVE::Storage::config();
91bd6c90 6931
53b81297 6932 print "rescan volumes...\n";
9a8ba127 6933 my $volid_hash = scan_volids($cfg, $vmid);
91bd6c90
DM
6934
6935 my $updatefn = sub {
6936 my ($vmid) = @_;
6937
ffda963f 6938 my $conf = PVE::QemuConfig->load_config($vmid);
be190583 6939
ffda963f 6940 PVE::QemuConfig->check_lock($conf);
91bd6c90 6941
03da3f0d
DM
6942 my $vm_volids = {};
6943 foreach my $volid (keys %$volid_hash) {
6944 my $info = $volid_hash->{$volid};
6945 $vm_volids->{$volid} = $info if $info->{vmid} && $info->{vmid} == $vmid;
6946 }
6947
68b108ee 6948 my $changes = update_disk_config($vmid, $conf, $vm_volids);
91bd6c90 6949
9224dcee 6950 PVE::QemuConfig->write_config($vmid, $conf) if $changes && !$dryrun;
91bd6c90
DM
6951 };
6952
6953 if (defined($vmid)) {
6954 if ($nolock) {
6955 &$updatefn($vmid);
6956 } else {
ffda963f 6957 PVE::QemuConfig->lock_config($vmid, $updatefn, $vmid);
91bd6c90
DM
6958 }
6959 } else {
6960 my $vmlist = config_list();
6961 foreach my $vmid (keys %$vmlist) {
6962 if ($nolock) {
6963 &$updatefn($vmid);
6964 } else {
ffda963f 6965 PVE::QemuConfig->lock_config($vmid, $updatefn, $vmid);
be190583 6966 }
91bd6c90
DM
6967 }
6968 }
6969}
6970
9f3d73bc
DM
6971sub restore_proxmox_backup_archive {
6972 my ($archive, $vmid, $user, $options) = @_;
6973
6974 my $storecfg = PVE::Storage::config();
6975
6976 my ($storeid, $volname) = PVE::Storage::parse_volume_id($archive);
6977 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
6978
9f3d73bc 6979 my $fingerprint = $scfg->{fingerprint};
503e96f8 6980 my $keyfile = PVE::Storage::PBSPlugin::pbs_encryption_key_file_name($storecfg, $storeid);
9f3d73bc 6981
fbec3f89 6982 my $repo = PVE::PBSClient::get_repository($scfg);
2dda626d 6983 my $namespace = $scfg->{namespace};
dea4b04c 6984
26731a3c 6985 # This is only used for `pbs-restore` and the QEMU PBS driver (live-restore)
9f3d73bc
DM
6986 my $password = PVE::Storage::PBSPlugin::pbs_get_password($scfg, $storeid);
6987 local $ENV{PBS_PASSWORD} = $password;
6988 local $ENV{PBS_FINGERPRINT} = $fingerprint if defined($fingerprint);
6989
6990 my ($vtype, $pbs_backup_name, undef, undef, undef, undef, $format) =
6991 PVE::Storage::parse_volname($storecfg, $archive);
6992
6993 die "got unexpected vtype '$vtype'\n" if $vtype ne 'backup';
6994
6995 die "got unexpected backup format '$format'\n" if $format ne 'pbs-vm';
6996
6997 my $tmpdir = "/var/tmp/vzdumptmp$$";
6998 rmtree $tmpdir;
6999 mkpath $tmpdir;
7000
7001 my $conffile = PVE::QemuConfig->config_file($vmid);
9f3d73bc
DM
7002 # disable interrupts (always do cleanups)
7003 local $SIG{INT} =
7004 local $SIG{TERM} =
7005 local $SIG{QUIT} =
7006 local $SIG{HUP} = sub { print STDERR "got interrupt - ignored\n"; };
7007
7008 # Note: $oldconf is undef if VM does not exists
7009 my $cfs_path = PVE::QemuConfig->cfs_config_path($vmid);
7010 my $oldconf = PVE::Cluster::cfs_read_file($cfs_path);
98a4b3fb 7011 my $new_conf_raw = '';
9f3d73bc
DM
7012
7013 my $rpcenv = PVE::RPCEnvironment::get();
e8b07b29
FE
7014 my $devinfo = {}; # info about drives included in backup
7015 my $virtdev_hash = {}; # info about allocated drives
9f3d73bc
DM
7016
7017 eval {
7018 # enable interrupts
7019 local $SIG{INT} =
7020 local $SIG{TERM} =
7021 local $SIG{QUIT} =
7022 local $SIG{HUP} =
7023 local $SIG{PIPE} = sub { die "interrupted by signal\n"; };
7024
7025 my $cfgfn = "$tmpdir/qemu-server.conf";
7026 my $firewall_config_fn = "$tmpdir/fw.conf";
7027 my $index_fn = "$tmpdir/index.json";
7028
7029 my $cmd = "restore";
7030
7031 my $param = [$pbs_backup_name, "index.json", $index_fn];
7032 PVE::Storage::PBSPlugin::run_raw_client_cmd($scfg, $storeid, $cmd, $param);
7033 my $index = PVE::Tools::file_get_contents($index_fn);
7034 $index = decode_json($index);
7035
9f3d73bc
DM
7036 foreach my $info (@{$index->{files}}) {
7037 if ($info->{filename} =~ m/^(drive-\S+).img.fidx$/) {
7038 my $devname = $1;
7039 if ($info->{size} =~ m/^(\d+)$/) { # untaint size
7040 $devinfo->{$devname}->{size} = $1;
7041 } else {
7042 die "unable to parse file size in 'index.json' - got '$info->{size}'\n";
7043 }
7044 }
7045 }
7046
4df98f2f
TL
7047 my $is_qemu_server_backup = scalar(
7048 grep { $_->{filename} eq 'qemu-server.conf.blob' } @{$index->{files}}
7049 );
9f3d73bc
DM
7050 if (!$is_qemu_server_backup) {
7051 die "backup does not look like a qemu-server backup (missing 'qemu-server.conf' file)\n";
7052 }
7053 my $has_firewall_config = scalar(grep { $_->{filename} eq 'fw.conf.blob' } @{$index->{files}});
7054
7055 $param = [$pbs_backup_name, "qemu-server.conf", $cfgfn];
7056 PVE::Storage::PBSPlugin::run_raw_client_cmd($scfg, $storeid, $cmd, $param);
7057
7058 if ($has_firewall_config) {
7059 $param = [$pbs_backup_name, "fw.conf", $firewall_config_fn];
7060 PVE::Storage::PBSPlugin::run_raw_client_cmd($scfg, $storeid, $cmd, $param);
7061
7062 my $pve_firewall_dir = '/etc/pve/firewall';
7063 mkdir $pve_firewall_dir; # make sure the dir exists
7064 PVE::Tools::file_copy($firewall_config_fn, "${pve_firewall_dir}/$vmid.fw");
7065 }
7066
7067 my $fh = IO::File->new($cfgfn, "r") ||
a1cbe55c 7068 die "unable to read qemu-server.conf - $!\n";
9f3d73bc 7069
e8b07b29 7070 $virtdev_hash = $parse_backup_hints->($rpcenv, $user, $storecfg, $fh, $devinfo, $options);
9f3d73bc
DM
7071
7072 # fixme: rate limit?
7073
7074 # create empty/temp config
7075 PVE::Tools::file_set_contents($conffile, "memory: 128\nlock: create");
7076
7077 $restore_cleanup_oldconf->($storecfg, $vmid, $oldconf, $virtdev_hash) if $oldconf;
7078
7079 # allocate volumes
7080 my $map = $restore_allocate_devices->($storecfg, $virtdev_hash, $vmid);
7081
6f94e162
SR
7082 foreach my $virtdev (sort keys %$virtdev_hash) {
7083 my $d = $virtdev_hash->{$virtdev};
7084 next if $d->{is_cloudinit}; # no need to restore cloudinit
9f3d73bc 7085
55c7f9cf 7086 # this fails if storage is unavailable
6f94e162 7087 my $volid = $d->{volid};
6f94e162 7088 my $path = PVE::Storage::path($storecfg, $volid);
9f3d73bc 7089
f9dde219
SR
7090 # for live-restore we only want to preload the efidisk and TPM state
7091 next if $options->{live} && $virtdev ne 'efidisk0' && $virtdev ne 'tpmstate0';
55c7f9cf 7092
21a9ec2a
WB
7093 my @ns_arg;
7094 if (defined(my $ns = $scfg->{namespace})) {
7095 @ns_arg = ('--ns', $ns);
7096 }
7097
6f94e162
SR
7098 my $pbs_restore_cmd = [
7099 '/usr/bin/pbs-restore',
7100 '--repository', $repo,
21a9ec2a 7101 @ns_arg,
6f94e162
SR
7102 $pbs_backup_name,
7103 "$d->{devname}.img.fidx",
7104 $path,
7105 '--verbose',
7106 ];
55fb78aa 7107
6f94e162
SR
7108 push @$pbs_restore_cmd, '--format', $d->{format} if $d->{format};
7109 push @$pbs_restore_cmd, '--keyfile', $keyfile if -e $keyfile;
9f3d73bc 7110
6f94e162
SR
7111 if (PVE::Storage::volume_has_feature($storecfg, 'sparseinit', $volid)) {
7112 push @$pbs_restore_cmd, '--skip-zero';
26731a3c 7113 }
6f94e162
SR
7114
7115 my $dbg_cmdstring = PVE::Tools::cmd2string($pbs_restore_cmd);
7116 print "restore proxmox backup image: $dbg_cmdstring\n";
7117 run_command($pbs_restore_cmd);
9f3d73bc
DM
7118 }
7119
7120 $fh->seek(0, 0) || die "seek failed - $!\n";
7121
9f3d73bc
DM
7122 my $cookie = { netcount => 0 };
7123 while (defined(my $line = <$fh>)) {
c62d7cf5 7124 $new_conf_raw .= restore_update_config_line(
98a4b3fb 7125 $cookie,
98a4b3fb
FE
7126 $map,
7127 $line,
7128 $options->{unique},
7129 );
9f3d73bc
DM
7130 }
7131
7132 $fh->close();
9f3d73bc
DM
7133 };
7134 my $err = $@;
7135
26731a3c 7136 if ($err || !$options->{live}) {
e8b07b29 7137 $restore_deactivate_volumes->($storecfg, $virtdev_hash);
26731a3c 7138 }
9f3d73bc
DM
7139
7140 rmtree $tmpdir;
7141
7142 if ($err) {
e8b07b29 7143 $restore_destroy_volumes->($storecfg, $virtdev_hash);
9f3d73bc
DM
7144 die $err;
7145 }
7146
f7551170
SR
7147 if ($options->{live}) {
7148 # keep lock during live-restore
7149 $new_conf_raw .= "\nlock: create";
7150 }
7151
202a2a0b
FE
7152 my $new_conf = $restore_merge_config->($conffile, $new_conf_raw, $options->{override_conf});
7153 PVE::QemuConfig->write_config($vmid, $new_conf);
9f3d73bc
DM
7154
7155 eval { rescan($vmid, 1); };
7156 warn $@ if $@;
26731a3c
SR
7157
7158 PVE::AccessControl::add_vm_to_pool($vmid, $options->{pool}) if $options->{pool};
7159
7160 if ($options->{live}) {
fefd65a1
SR
7161 # enable interrupts
7162 local $SIG{INT} =
7163 local $SIG{TERM} =
7164 local $SIG{QUIT} =
7165 local $SIG{HUP} =
7166 local $SIG{PIPE} = sub { die "got signal ($!) - abort\n"; };
26731a3c 7167
fefd65a1
SR
7168 my $conf = PVE::QemuConfig->load_config($vmid);
7169 die "cannot do live-restore for template\n" if PVE::QemuConfig->is_template($conf);
26731a3c 7170
f9dde219
SR
7171 # these special drives are already restored before start
7172 delete $devinfo->{'drive-efidisk0'};
7173 delete $devinfo->{'drive-tpmstate0-backup'};
2dda626d
DC
7174
7175 my $pbs_opts = {
7176 repo => $repo,
7177 keyfile => $keyfile,
7178 snapshot => $pbs_backup_name,
7179 namespace => $namespace,
7180 };
7181 pbs_live_restore($vmid, $conf, $storecfg, $devinfo, $pbs_opts);
f7551170
SR
7182
7183 PVE::QemuConfig->remove_lock($vmid, "create");
26731a3c
SR
7184 }
7185}
7186
7187sub pbs_live_restore {
2dda626d 7188 my ($vmid, $conf, $storecfg, $restored_disks, $opts) = @_;
26731a3c 7189
88cabb62 7190 print "starting VM for live-restore\n";
2dda626d 7191 print "repository: '$opts->{repo}', snapshot: '$opts->{snapshot}'\n";
26731a3c
SR
7192
7193 my $pbs_backing = {};
8986e36e 7194 for my $ds (keys %$restored_disks) {
26731a3c 7195 $ds =~ m/^drive-(.*)$/;
88cabb62
SR
7196 my $confname = $1;
7197 $pbs_backing->{$confname} = {
2dda626d
DC
7198 repository => $opts->{repo},
7199 snapshot => $opts->{snapshot},
26731a3c
SR
7200 archive => "$ds.img.fidx",
7201 };
2dda626d
DC
7202 $pbs_backing->{$confname}->{keyfile} = $opts->{keyfile} if -e $opts->{keyfile};
7203 $pbs_backing->{$confname}->{namespace} = $opts->{namespace} if defined($opts->{namespace});
88cabb62
SR
7204
7205 my $drive = parse_drive($confname, $conf->{$confname});
7206 print "restoring '$ds' to '$drive->{file}'\n";
26731a3c
SR
7207 }
7208
fd70c843 7209 my $drives_streamed = 0;
26731a3c
SR
7210 eval {
7211 # make sure HA doesn't interrupt our restore by stopping the VM
7212 if (PVE::HA::Config::vm_is_ha_managed($vmid)) {
fd70c843 7213 run_command(['ha-manager', 'set', "vm:$vmid", '--state', 'started']);
26731a3c
SR
7214 }
7215
fd70c843
TL
7216 # start VM with backing chain pointing to PBS backup, environment vars for PBS driver
7217 # in QEMU (PBS_PASSWORD and PBS_FINGERPRINT) are already set by our caller
bfb12678 7218 vm_start_nolock($storecfg, $vmid, $conf, {paused => 1, 'pbs-backing' => $pbs_backing}, {});
26731a3c 7219
26697640
SR
7220 my $qmeventd_fd = register_qmeventd_handle($vmid);
7221
26731a3c
SR
7222 # begin streaming, i.e. data copy from PBS to target disk for every vol,
7223 # this will effectively collapse the backing image chain consisting of
7224 # [target <- alloc-track -> PBS snapshot] to just [target] (alloc-track
7225 # removes itself once all backing images vanish with 'auto-remove=on')
7226 my $jobs = {};
8986e36e 7227 for my $ds (sort keys %$restored_disks) {
26731a3c
SR
7228 my $job_id = "restore-$ds";
7229 mon_cmd($vmid, 'block-stream',
7230 'job-id' => $job_id,
7231 device => "$ds",
7232 );
7233 $jobs->{$job_id} = {};
7234 }
7235
7236 mon_cmd($vmid, 'cont');
7237 qemu_drive_mirror_monitor($vmid, undef, $jobs, 'auto', 0, 'stream');
7238
a09b39f1
TL
7239 print "restore-drive jobs finished successfully, removing all tracking block devices"
7240 ." to disconnect from Proxmox Backup Server\n";
7241
8986e36e 7242 for my $ds (sort keys %$restored_disks) {
26731a3c
SR
7243 mon_cmd($vmid, 'blockdev-del', 'node-name' => "$ds-pbs");
7244 }
26697640
SR
7245
7246 close($qmeventd_fd);
26731a3c
SR
7247 };
7248
7249 my $err = $@;
7250
7251 if ($err) {
8b8893c3 7252 warn "An error occurred during live-restore: $err\n";
26731a3c
SR
7253 _do_vm_stop($storecfg, $vmid, 1, 1, 10, 0, 1);
7254 die "live-restore failed\n";
7255 }
9f3d73bc
DM
7256}
7257
91bd6c90
DM
7258sub restore_vma_archive {
7259 my ($archive, $vmid, $user, $opts, $comp) = @_;
7260
91bd6c90
DM
7261 my $readfrom = $archive;
7262
7c536e11
WB
7263 my $cfg = PVE::Storage::config();
7264 my $commands = [];
7265 my $bwlimit = $opts->{bwlimit};
7266
7267 my $dbg_cmdstring = '';
7268 my $add_pipe = sub {
7269 my ($cmd) = @_;
7270 push @$commands, $cmd;
7271 $dbg_cmdstring .= ' | ' if length($dbg_cmdstring);
7272 $dbg_cmdstring .= PVE::Tools::cmd2string($cmd);
91bd6c90 7273 $readfrom = '-';
7c536e11
WB
7274 };
7275
7276 my $input = undef;
7277 if ($archive eq '-') {
7278 $input = '<&STDIN';
7279 } else {
7280 # If we use a backup from a PVE defined storage we also consider that
7281 # storage's rate limit:
7282 my (undef, $volid) = PVE::Storage::path_to_volume_id($cfg, $archive);
7283 if (defined($volid)) {
7284 my ($sid, undef) = PVE::Storage::parse_volume_id($volid);
7285 my $readlimit = PVE::Storage::get_bandwidth_limit('restore', [$sid], $bwlimit);
7286 if ($readlimit) {
7287 print STDERR "applying read rate limit: $readlimit\n";
9444c6e4 7288 my $cstream = ['cstream', '-t', $readlimit*1024, '--', $readfrom];
7c536e11
WB
7289 $add_pipe->($cstream);
7290 }
7291 }
7292 }
7293
7294 if ($comp) {
c6d51783
AA
7295 my $info = PVE::Storage::decompressor_info('vma', $comp);
7296 my $cmd = $info->{decompressor};
7297 push @$cmd, $readfrom;
7c536e11 7298 $add_pipe->($cmd);
91bd6c90
DM
7299 }
7300
7301 my $tmpdir = "/var/tmp/vzdumptmp$$";
7302 rmtree $tmpdir;
7303
7304 # disable interrupts (always do cleanups)
5b97ef24
TL
7305 local $SIG{INT} =
7306 local $SIG{TERM} =
7307 local $SIG{QUIT} =
7308 local $SIG{HUP} = sub { warn "got interrupt - ignored\n"; };
91bd6c90
DM
7309
7310 my $mapfifo = "/var/tmp/vzdumptmp$$.fifo";
7311 POSIX::mkfifo($mapfifo, 0600);
7312 my $fifofh;
808a65b5 7313 my $openfifo = sub { open($fifofh, '>', $mapfifo) or die $! };
91bd6c90 7314
7c536e11 7315 $add_pipe->(['vma', 'extract', '-v', '-r', $mapfifo, $readfrom, $tmpdir]);
91bd6c90
DM
7316
7317 my $oldtimeout;
7318 my $timeout = 5;
7319
e8b07b29
FE
7320 my $devinfo = {}; # info about drives included in backup
7321 my $virtdev_hash = {}; # info about allocated drives
91bd6c90
DM
7322
7323 my $rpcenv = PVE::RPCEnvironment::get();
7324
ffda963f 7325 my $conffile = PVE::QemuConfig->config_file($vmid);
91bd6c90 7326
ae200950 7327 # Note: $oldconf is undef if VM does not exist
ffda963f
FG
7328 my $cfs_path = PVE::QemuConfig->cfs_config_path($vmid);
7329 my $oldconf = PVE::Cluster::cfs_read_file($cfs_path);
98a4b3fb 7330 my $new_conf_raw = '';
ed221350 7331
7c536e11
WB
7332 my %storage_limits;
7333
91bd6c90 7334 my $print_devmap = sub {
91bd6c90
DM
7335 my $cfgfn = "$tmpdir/qemu-server.conf";
7336
7337 # we can read the config - that is already extracted
7338 my $fh = IO::File->new($cfgfn, "r") ||
a1cbe55c 7339 die "unable to read qemu-server.conf - $!\n";
91bd6c90 7340
6738ab9c 7341 my $fwcfgfn = "$tmpdir/qemu-server.fw";
3457d090
WL
7342 if (-f $fwcfgfn) {
7343 my $pve_firewall_dir = '/etc/pve/firewall';
7344 mkdir $pve_firewall_dir; # make sure the dir exists
7345 PVE::Tools::file_copy($fwcfgfn, "${pve_firewall_dir}/$vmid.fw");
7346 }
6738ab9c 7347
e8b07b29 7348 $virtdev_hash = $parse_backup_hints->($rpcenv, $user, $cfg, $fh, $devinfo, $opts);
91bd6c90 7349
c8964278
FE
7350 foreach my $info (values %{$virtdev_hash}) {
7351 my $storeid = $info->{storeid};
7352 next if defined($storage_limits{$storeid});
7353
7354 my $limit = PVE::Storage::get_bandwidth_limit('restore', [$storeid], $bwlimit) // 0;
7355 print STDERR "rate limit for storage $storeid: $limit KiB/s\n" if $limit;
7356 $storage_limits{$storeid} = $limit * 1024;
7c536e11
WB
7357 }
7358
91bd6c90 7359 foreach my $devname (keys %$devinfo) {
be190583
DM
7360 die "found no device mapping information for device '$devname'\n"
7361 if !$devinfo->{$devname}->{virtdev};
91bd6c90
DM
7362 }
7363
ed221350 7364 # create empty/temp config
be190583 7365 if ($oldconf) {
ed221350 7366 PVE::Tools::file_set_contents($conffile, "memory: 128\n");
d1e92cf6 7367 $restore_cleanup_oldconf->($cfg, $vmid, $oldconf, $virtdev_hash);
ed221350
DM
7368 }
7369
9f3d73bc
DM
7370 # allocate volumes
7371 my $map = $restore_allocate_devices->($cfg, $virtdev_hash, $vmid);
7372
7373 # print restore information to $fifofh
91bd6c90
DM
7374 foreach my $virtdev (sort keys %$virtdev_hash) {
7375 my $d = $virtdev_hash->{$virtdev};
9f3d73bc
DM
7376 next if $d->{is_cloudinit}; # no need to restore cloudinit
7377
7c536e11 7378 my $storeid = $d->{storeid};
9f3d73bc 7379 my $volid = $d->{volid};
7c536e11
WB
7380
7381 my $map_opts = '';
7382 if (my $limit = $storage_limits{$storeid}) {
7383 $map_opts .= "throttling.bps=$limit:throttling.group=$storeid:";
7384 }
8fd57431 7385
91bd6c90 7386 my $write_zeros = 1;
88240a83 7387 if (PVE::Storage::volume_has_feature($cfg, 'sparseinit', $volid)) {
91bd6c90
DM
7388 $write_zeros = 0;
7389 }
7390
9f3d73bc 7391 my $path = PVE::Storage::path($cfg, $volid);
87056e18 7392
9f3d73bc 7393 print $fifofh "${map_opts}format=$d->{format}:${write_zeros}:$d->{devname}=$path\n";
91bd6c90 7394
9f3d73bc 7395 print "map '$d->{devname}' to '$path' (write zeros = ${write_zeros})\n";
91bd6c90
DM
7396 }
7397
7398 $fh->seek(0, 0) || die "seek failed - $!\n";
7399
91bd6c90
DM
7400 my $cookie = { netcount => 0 };
7401 while (defined(my $line = <$fh>)) {
c62d7cf5 7402 $new_conf_raw .= restore_update_config_line(
98a4b3fb 7403 $cookie,
98a4b3fb
FE
7404 $map,
7405 $line,
7406 $opts->{unique},
7407 );
91bd6c90
DM
7408 }
7409
7410 $fh->close();
91bd6c90
DM
7411 };
7412
7413 eval {
7414 # enable interrupts
6cb0144a
EK
7415 local $SIG{INT} =
7416 local $SIG{TERM} =
7417 local $SIG{QUIT} =
7418 local $SIG{HUP} =
7419 local $SIG{PIPE} = sub { die "interrupted by signal\n"; };
91bd6c90
DM
7420 local $SIG{ALRM} = sub { die "got timeout\n"; };
7421
7422 $oldtimeout = alarm($timeout);
7423
7424 my $parser = sub {
7425 my $line = shift;
7426
7427 print "$line\n";
7428
7429 if ($line =~ m/^DEV:\sdev_id=(\d+)\ssize:\s(\d+)\sdevname:\s(\S+)$/) {
7430 my ($dev_id, $size, $devname) = ($1, $2, $3);
7431 $devinfo->{$devname} = { size => $size, dev_id => $dev_id };
7432 } elsif ($line =~ m/^CTIME: /) {
46f58b5f 7433 # we correctly received the vma config, so we can disable
3cf90d7a
DM
7434 # the timeout now for disk allocation (set to 10 minutes, so
7435 # that we always timeout if something goes wrong)
7436 alarm(600);
91bd6c90
DM
7437 &$print_devmap();
7438 print $fifofh "done\n";
7439 my $tmp = $oldtimeout || 0;
7440 $oldtimeout = undef;
7441 alarm($tmp);
7442 close($fifofh);
808a65b5 7443 $fifofh = undef;
91bd6c90
DM
7444 }
7445 };
be190583 7446
7c536e11
WB
7447 print "restore vma archive: $dbg_cmdstring\n";
7448 run_command($commands, input => $input, outfunc => $parser, afterfork => $openfifo);
91bd6c90
DM
7449 };
7450 my $err = $@;
7451
7452 alarm($oldtimeout) if $oldtimeout;
7453
e8b07b29 7454 $restore_deactivate_volumes->($cfg, $virtdev_hash);
5f96f4df 7455
808a65b5 7456 close($fifofh) if $fifofh;
91bd6c90 7457 unlink $mapfifo;
9f3d73bc 7458 rmtree $tmpdir;
91bd6c90
DM
7459
7460 if ($err) {
e8b07b29 7461 $restore_destroy_volumes->($cfg, $virtdev_hash);
91bd6c90
DM
7462 die $err;
7463 }
7464
202a2a0b
FE
7465 my $new_conf = $restore_merge_config->($conffile, $new_conf_raw, $opts->{override_conf});
7466 PVE::QemuConfig->write_config($vmid, $new_conf);
ed221350 7467
91bd6c90
DM
7468 eval { rescan($vmid, 1); };
7469 warn $@ if $@;
26731a3c
SR
7470
7471 PVE::AccessControl::add_vm_to_pool($vmid, $opts->{pool}) if $opts->{pool};
91bd6c90
DM
7472}
7473
7474sub restore_tar_archive {
7475 my ($archive, $vmid, $user, $opts) = @_;
7476
202a2a0b
FE
7477 if (scalar(keys $opts->{override_conf}->%*) > 0) {
7478 my $keystring = join(' ', keys $opts->{override_conf}->%*);
7479 die "cannot pass along options ($keystring) when restoring from tar archive\n";
7480 }
7481
9c502e26 7482 if ($archive ne '-') {
ed221350 7483 my $firstfile = tar_archive_read_firstfile($archive);
32e54050 7484 die "ERROR: file '$archive' does not look like a QemuServer vzdump backup\n"
9c502e26
DM
7485 if $firstfile ne 'qemu-server.conf';
7486 }
3e16d5fc 7487
20519efc 7488 my $storecfg = PVE::Storage::config();
ebb55558 7489
4b026937
TL
7490 # avoid zombie disks when restoring over an existing VM -> cleanup first
7491 # pass keep_empty_config=1 to keep the config (thus VMID) reserved for us
7492 # skiplock=1 because qmrestore has set the 'create' lock itself already
ffda963f 7493 my $vmcfgfn = PVE::QemuConfig->config_file($vmid);
b04ea584 7494 destroy_vm($storecfg, $vmid, 1, { lock => 'restore' }) if -f $vmcfgfn;
ed221350 7495
3e16d5fc
DM
7496 my $tocmd = "/usr/lib/qemu-server/qmextract";
7497
2415a446 7498 $tocmd .= " --storage " . PVE::Tools::shellquote($opts->{storage}) if $opts->{storage};
a0d1b1a2 7499 $tocmd .= " --pool " . PVE::Tools::shellquote($opts->{pool}) if $opts->{pool};
3e16d5fc
DM
7500 $tocmd .= ' --prealloc' if $opts->{prealloc};
7501 $tocmd .= ' --info' if $opts->{info};
7502
a0d1b1a2 7503 # tar option "xf" does not autodetect compression when read from STDIN,
9c502e26 7504 # so we pipe to zcat
2415a446
DM
7505 my $cmd = "zcat -f|tar xf " . PVE::Tools::shellquote($archive) . " " .
7506 PVE::Tools::shellquote("--to-command=$tocmd");
3e16d5fc
DM
7507
7508 my $tmpdir = "/var/tmp/vzdumptmp$$";
7509 mkpath $tmpdir;
7510
7511 local $ENV{VZDUMP_TMPDIR} = $tmpdir;
7512 local $ENV{VZDUMP_VMID} = $vmid;
a0d1b1a2 7513 local $ENV{VZDUMP_USER} = $user;
3e16d5fc 7514
ffda963f 7515 my $conffile = PVE::QemuConfig->config_file($vmid);
98a4b3fb 7516 my $new_conf_raw = '';
3e16d5fc
DM
7517
7518 # disable interrupts (always do cleanups)
6cb0144a
EK
7519 local $SIG{INT} =
7520 local $SIG{TERM} =
7521 local $SIG{QUIT} =
7522 local $SIG{HUP} = sub { print STDERR "got interrupt - ignored\n"; };
3e16d5fc 7523
afdb31d5 7524 eval {
3e16d5fc 7525 # enable interrupts
6cb0144a
EK
7526 local $SIG{INT} =
7527 local $SIG{TERM} =
7528 local $SIG{QUIT} =
7529 local $SIG{HUP} =
7530 local $SIG{PIPE} = sub { die "interrupted by signal\n"; };
3e16d5fc 7531
9c502e26
DM
7532 if ($archive eq '-') {
7533 print "extracting archive from STDIN\n";
7534 run_command($cmd, input => "<&STDIN");
7535 } else {
7536 print "extracting archive '$archive'\n";
7537 run_command($cmd);
7538 }
3e16d5fc
DM
7539
7540 return if $opts->{info};
7541
7542 # read new mapping
7543 my $map = {};
7544 my $statfile = "$tmpdir/qmrestore.stat";
7545 if (my $fd = IO::File->new($statfile, "r")) {
7546 while (defined (my $line = <$fd>)) {
7547 if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
7548 $map->{$1} = $2 if $1;
7549 } else {
7550 print STDERR "unable to parse line in statfile - $line\n";
7551 }
7552 }
7553 $fd->close();
7554 }
7555
7556 my $confsrc = "$tmpdir/qemu-server.conf";
7557
f7d1505b 7558 my $srcfd = IO::File->new($confsrc, "r") || die "unable to open file '$confsrc'\n";
3e16d5fc 7559
91bd6c90 7560 my $cookie = { netcount => 0 };
3e16d5fc 7561 while (defined (my $line = <$srcfd>)) {
c62d7cf5 7562 $new_conf_raw .= restore_update_config_line(
98a4b3fb 7563 $cookie,
98a4b3fb
FE
7564 $map,
7565 $line,
7566 $opts->{unique},
7567 );
3e16d5fc
DM
7568 }
7569
7570 $srcfd->close();
3e16d5fc 7571 };
7dc7f315 7572 if (my $err = $@) {
ed221350 7573 tar_restore_cleanup($storecfg, "$tmpdir/qmrestore.stat") if !$opts->{info};
3e16d5fc 7574 die $err;
afdb31d5 7575 }
3e16d5fc
DM
7576
7577 rmtree $tmpdir;
7578
98a4b3fb 7579 PVE::Tools::file_set_contents($conffile, $new_conf_raw);
91bd6c90 7580
ed221350
DM
7581 PVE::Cluster::cfs_update(); # make sure we read new file
7582
91bd6c90
DM
7583 eval { rescan($vmid, 1); };
7584 warn $@ if $@;
3e16d5fc
DM
7585};
7586
65a5ce88 7587sub foreach_storage_used_by_vm {
18bfb361
DM
7588 my ($conf, $func) = @_;
7589
7590 my $sidhash = {};
7591
912792e2 7592 PVE::QemuConfig->foreach_volume($conf, sub {
8ddbcf8b
FG
7593 my ($ds, $drive) = @_;
7594 return if drive_is_cdrom($drive);
18bfb361
DM
7595
7596 my $volid = $drive->{file};
7597
7598 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
be190583 7599 $sidhash->{$sid} = $sid if $sid;
8ddbcf8b 7600 });
18bfb361
DM
7601
7602 foreach my $sid (sort keys %$sidhash) {
7603 &$func($sid);
7604 }
7605}
7606
6c9f59c1
TL
7607my $qemu_snap_storage = {
7608 rbd => 1,
7609};
e5eaa028 7610sub do_snapshots_with_qemu {
9d83932d
SR
7611 my ($storecfg, $volid, $deviceid) = @_;
7612
7613 return if $deviceid =~ m/tpmstate0/;
e5eaa028
WL
7614
7615 my $storage_name = PVE::Storage::parse_volume_id($volid);
8aa2ed7c 7616 my $scfg = $storecfg->{ids}->{$storage_name};
f7d1505b 7617 die "could not find storage '$storage_name'\n" if !defined($scfg);
e5eaa028 7618
8aa2ed7c 7619 if ($qemu_snap_storage->{$scfg->{type}} && !$scfg->{krbd}){
e5eaa028
WL
7620 return 1;
7621 }
7622
7623 if ($volid =~ m/\.(qcow2|qed)$/){
7624 return 1;
7625 }
7626
d1c1af4b 7627 return;
e5eaa028
WL
7628}
7629
4dcc780c 7630sub qga_check_running {
a4938c72 7631 my ($vmid, $nowarn) = @_;
4dcc780c 7632
0a13e08e 7633 eval { mon_cmd($vmid, "guest-ping", timeout => 3); };
4dcc780c 7634 if ($@) {
7bd9abd2 7635 warn "QEMU Guest Agent is not running - $@" if !$nowarn;
4dcc780c
WL
7636 return 0;
7637 }
7638 return 1;
7639}
7640
04a69bb4
AD
7641sub template_create {
7642 my ($vmid, $conf, $disk) = @_;
7643
04a69bb4 7644 my $storecfg = PVE::Storage::config();
04a69bb4 7645
912792e2 7646 PVE::QemuConfig->foreach_volume($conf, sub {
9cd07842
DM
7647 my ($ds, $drive) = @_;
7648
7649 return if drive_is_cdrom($drive);
7650 return if $disk && $ds ne $disk;
7651
7652 my $volid = $drive->{file};
bbd56097 7653 return if !PVE::Storage::volume_has_feature($storecfg, 'template', $volid);
9cd07842 7654
04a69bb4
AD
7655 my $voliddst = PVE::Storage::vdisk_create_base($storecfg, $volid);
7656 $drive->{file} = $voliddst;
71c58bb7 7657 $conf->{$ds} = print_drive($drive);
ffda963f 7658 PVE::QemuConfig->write_config($vmid, $conf);
04a69bb4 7659 });
04a69bb4
AD
7660}
7661
92bdc3f0
DC
7662sub convert_iscsi_path {
7663 my ($path) = @_;
7664
7665 if ($path =~ m|^iscsi://([^/]+)/([^/]+)/(.+)$|) {
7666 my $portal = $1;
7667 my $target = $2;
7668 my $lun = $3;
7669
7670 my $initiator_name = get_initiator_name();
7671
7672 return "file.driver=iscsi,file.transport=tcp,file.initiator-name=$initiator_name,".
7673 "file.portal=$portal,file.target=$target,file.lun=$lun,driver=raw";
7674 }
7675
7676 die "cannot convert iscsi path '$path', unkown format\n";
7677}
7678
5133de42 7679sub qemu_img_convert {
56d16f16 7680 my ($src_volid, $dst_volid, $size, $snapname, $is_zero_initialized, $bwlimit) = @_;
5133de42
AD
7681
7682 my $storecfg = PVE::Storage::config();
7683 my ($src_storeid, $src_volname) = PVE::Storage::parse_volume_id($src_volid, 1);
7684 my ($dst_storeid, $dst_volname) = PVE::Storage::parse_volume_id($dst_volid, 1);
7685
af1f1ec0 7686 die "destination '$dst_volid' is not a valid volid form qemu-img convert\n" if !$dst_storeid;
6bb91c17 7687
af1f1ec0
DC
7688 my $cachemode;
7689 my $src_path;
7690 my $src_is_iscsi = 0;
bdd1feef 7691 my $src_format;
6bb91c17 7692
af1f1ec0
DC
7693 if ($src_storeid) {
7694 PVE::Storage::activate_volumes($storecfg, [$src_volid], $snapname);
5133de42 7695 my $src_scfg = PVE::Storage::storage_config($storecfg, $src_storeid);
af1f1ec0
DC
7696 $src_format = qemu_img_format($src_scfg, $src_volname);
7697 $src_path = PVE::Storage::path($storecfg, $src_volid, $snapname);
7698 $src_is_iscsi = ($src_path =~ m|^iscsi://|);
7699 $cachemode = 'none' if $src_scfg->{type} eq 'zfspool';
a23d57d5 7700 } elsif (-f $src_volid || -b $src_volid) {
af1f1ec0 7701 $src_path = $src_volid;
e0fd2b2f 7702 if ($src_path =~ m/\.($PVE::QemuServer::Drive::QEMU_FORMAT_RE)$/) {
af1f1ec0
DC
7703 $src_format = $1;
7704 }
7705 }
5133de42 7706
af1f1ec0 7707 die "source '$src_volid' is not a valid volid nor path for qemu-img convert\n" if !$src_path;
5133de42 7708
af1f1ec0
DC
7709 my $dst_scfg = PVE::Storage::storage_config($storecfg, $dst_storeid);
7710 my $dst_format = qemu_img_format($dst_scfg, $dst_volname);
7711 my $dst_path = PVE::Storage::path($storecfg, $dst_volid);
7712 my $dst_is_iscsi = ($dst_path =~ m|^iscsi://|);
5133de42 7713
af1f1ec0
DC
7714 my $cmd = [];
7715 push @$cmd, '/usr/bin/qemu-img', 'convert', '-p', '-n';
bdd1feef
TL
7716 push @$cmd, '-l', "snapshot.name=$snapname"
7717 if $snapname && $src_format && $src_format eq "qcow2";
af1f1ec0
DC
7718 push @$cmd, '-t', 'none' if $dst_scfg->{type} eq 'zfspool';
7719 push @$cmd, '-T', $cachemode if defined($cachemode);
56d16f16 7720 push @$cmd, '-r', "${bwlimit}K" if defined($bwlimit);
af1f1ec0
DC
7721
7722 if ($src_is_iscsi) {
7723 push @$cmd, '--image-opts';
7724 $src_path = convert_iscsi_path($src_path);
bdd1feef 7725 } elsif ($src_format) {
af1f1ec0
DC
7726 push @$cmd, '-f', $src_format;
7727 }
92bdc3f0 7728
af1f1ec0
DC
7729 if ($dst_is_iscsi) {
7730 push @$cmd, '--target-image-opts';
7731 $dst_path = convert_iscsi_path($dst_path);
7732 } else {
7733 push @$cmd, '-O', $dst_format;
7734 }
92bdc3f0 7735
af1f1ec0 7736 push @$cmd, $src_path;
92bdc3f0 7737
af1f1ec0
DC
7738 if (!$dst_is_iscsi && $is_zero_initialized) {
7739 push @$cmd, "zeroinit:$dst_path";
7740 } else {
7741 push @$cmd, $dst_path;
7742 }
92bdc3f0 7743
af1f1ec0
DC
7744 my $parser = sub {
7745 my $line = shift;
7746 if($line =~ m/\((\S+)\/100\%\)/){
7747 my $percent = $1;
7748 my $transferred = int($size * $percent / 100);
b5e9d97b
TL
7749 my $total_h = render_bytes($size, 1);
7750 my $transferred_h = render_bytes($transferred, 1);
92bdc3f0 7751
6629f976 7752 print "transferred $transferred_h of $total_h ($percent%)\n";
988e2714 7753 }
5133de42 7754
af1f1ec0 7755 };
5133de42 7756
af1f1ec0
DC
7757 eval { run_command($cmd, timeout => undef, outfunc => $parser); };
7758 my $err = $@;
7759 die "copy failed: $err" if $err;
5133de42
AD
7760}
7761
7762sub qemu_img_format {
7763 my ($scfg, $volname) = @_;
7764
e0fd2b2f 7765 if ($scfg->{path} && $volname =~ m/\.($PVE::QemuServer::Drive::QEMU_FORMAT_RE)$/) {
5133de42 7766 return $1;
be190583 7767 } else {
5133de42 7768 return "raw";
5133de42
AD
7769 }
7770}
7771
cfad42af 7772sub qemu_drive_mirror {
bc6c8231 7773 my ($vmid, $drive, $dst_volid, $vmiddst, $is_zero_initialized, $jobs, $completion, $qga, $bwlimit, $src_bitmap) = @_;
cfad42af 7774
5a345967
AD
7775 $jobs = {} if !$jobs;
7776
7777 my $qemu_target;
7778 my $format;
35e4ab04 7779 $jobs->{"drive-$drive"} = {};
152fe752 7780
1e5143de 7781 if ($dst_volid =~ /^nbd:/) {
87955688 7782 $qemu_target = $dst_volid;
5a345967 7783 $format = "nbd";
5a345967 7784 } else {
5a345967
AD
7785 my $storecfg = PVE::Storage::config();
7786 my ($dst_storeid, $dst_volname) = PVE::Storage::parse_volume_id($dst_volid);
7787
7788 my $dst_scfg = PVE::Storage::storage_config($storecfg, $dst_storeid);
cfad42af 7789
5a345967 7790 $format = qemu_img_format($dst_scfg, $dst_volname);
21ccdb50 7791
5a345967 7792 my $dst_path = PVE::Storage::path($storecfg, $dst_volid);
21ccdb50 7793
5a345967
AD
7794 $qemu_target = $is_zero_initialized ? "zeroinit:$dst_path" : $dst_path;
7795 }
988e2714
WB
7796
7797 my $opts = { timeout => 10, device => "drive-$drive", mode => "existing", sync => "full", target => $qemu_target };
88383920
DM
7798 $opts->{format} = $format if $format;
7799
bc6c8231
FG
7800 if (defined($src_bitmap)) {
7801 $opts->{sync} = 'incremental';
7802 $opts->{bitmap} = $src_bitmap;
7803 print "drive mirror re-using dirty bitmap '$src_bitmap'\n";
7804 }
7805
9fa05d31 7806 if (defined($bwlimit)) {
f6409f61
TL
7807 $opts->{speed} = $bwlimit * 1024;
7808 print "drive mirror is starting for drive-$drive with bandwidth limit: ${bwlimit} KB/s\n";
9fa05d31
SI
7809 } else {
7810 print "drive mirror is starting for drive-$drive\n";
7811 }
21ccdb50 7812
6dde5ea2 7813 # if a job already runs for this device we get an error, catch it for cleanup
0a13e08e 7814 eval { mon_cmd($vmid, "drive-mirror", %$opts); };
5a345967
AD
7815 if (my $err = $@) {
7816 eval { PVE::QemuServer::qemu_blockjobs_cancel($vmid, $jobs) };
6dde5ea2
TL
7817 warn "$@\n" if $@;
7818 die "mirroring error: $err\n";
5a345967
AD
7819 }
7820
e02fb126 7821 qemu_drive_mirror_monitor ($vmid, $vmiddst, $jobs, $completion, $qga);
5a345967
AD
7822}
7823
db1f8b39
FG
7824# $completion can be either
7825# 'complete': wait until all jobs are ready, block-job-complete them (default)
7826# 'cancel': wait until all jobs are ready, block-job-cancel them
7827# 'skip': wait until all jobs are ready, return with block jobs in ready state
9e671722 7828# 'auto': wait until all jobs disappear, only use for jobs which complete automatically
5a345967 7829sub qemu_drive_mirror_monitor {
9e671722 7830 my ($vmid, $vmiddst, $jobs, $completion, $qga, $op) = @_;
e02fb126 7831
db1f8b39 7832 $completion //= 'complete';
9e671722 7833 $op //= "mirror";
2e953867 7834
08ac653f 7835 eval {
5a345967
AD
7836 my $err_complete = 0;
7837
3b56383b 7838 my $starttime = time ();
08ac653f 7839 while (1) {
9e671722 7840 die "block job ('$op') timed out\n" if $err_complete > 300;
5a345967 7841
0a13e08e 7842 my $stats = mon_cmd($vmid, "query-block-jobs");
3b56383b 7843 my $ctime = time();
08ac653f 7844
9e671722 7845 my $running_jobs = {};
0ea24bf0 7846 for my $stat (@$stats) {
9e671722
SR
7847 next if $stat->{type} ne $op;
7848 $running_jobs->{$stat->{device}} = $stat;
5a345967 7849 }
08ac653f 7850
5a345967 7851 my $readycounter = 0;
67fb9de6 7852
0ea24bf0 7853 for my $job_id (sort keys %$jobs) {
1057fc74 7854 my $job = $running_jobs->{$job_id};
5a345967 7855
1057fc74 7856 my $vanished = !defined($job);
0ea24bf0 7857 my $complete = defined($jobs->{$job_id}->{complete}) && $vanished;
9e671722 7858 if($complete || ($vanished && $completion eq 'auto')) {
3b56383b 7859 print "$job_id: $op-job finished\n";
0ea24bf0 7860 delete $jobs->{$job_id};
5a345967
AD
7861 next;
7862 }
7863
1057fc74 7864 die "$job_id: '$op' has been cancelled\n" if !defined($job);
f34ebd52 7865
1057fc74
TL
7866 my $busy = $job->{busy};
7867 my $ready = $job->{ready};
7868 if (my $total = $job->{len}) {
7869 my $transferred = $job->{offset} || 0;
5a345967
AD
7870 my $remaining = $total - $transferred;
7871 my $percent = sprintf "%.2f", ($transferred * 100 / $total);
08ac653f 7872
3b56383b
TL
7873 my $duration = $ctime - $starttime;
7874 my $total_h = render_bytes($total, 1);
7875 my $transferred_h = render_bytes($transferred, 1);
7876
7877 my $status = sprintf(
7878 "transferred $transferred_h of $total_h ($percent%%) in %s",
7879 render_duration($duration),
7880 );
7881
7882 if ($ready) {
7883 if ($busy) {
7884 $status .= ", still busy"; # shouldn't even happen? but mirror is weird
7885 } else {
7886 $status .= ", ready";
7887 }
7888 }
67daf692
TL
7889 print "$job_id: $status\n" if !$jobs->{$job_id}->{ready};
7890 $jobs->{$job_id}->{ready} = $ready;
5a345967 7891 }
f34ebd52 7892
1057fc74 7893 $readycounter++ if $job->{ready};
5a345967 7894 }
b467f79a 7895
5a345967
AD
7896 last if scalar(keys %$jobs) == 0;
7897
7898 if ($readycounter == scalar(keys %$jobs)) {
9e671722
SR
7899 print "all '$op' jobs are ready\n";
7900
7901 # do the complete later (or has already been done)
7902 last if $completion eq 'skip' || $completion eq 'auto';
5a345967
AD
7903
7904 if ($vmiddst && $vmiddst != $vmid) {
1a988fd2
DC
7905 my $agent_running = $qga && qga_check_running($vmid);
7906 if ($agent_running) {
5619e74a 7907 print "freeze filesystem\n";
0a13e08e 7908 eval { mon_cmd($vmid, "guest-fsfreeze-freeze"); };
d6cdfae4 7909 warn $@ if $@;
5619e74a
AD
7910 } else {
7911 print "suspend vm\n";
7912 eval { PVE::QemuServer::vm_suspend($vmid, 1); };
d6cdfae4 7913 warn $@ if $@;
5619e74a
AD
7914 }
7915
5a345967
AD
7916 # if we clone a disk for a new target vm, we don't switch the disk
7917 PVE::QemuServer::qemu_blockjobs_cancel($vmid, $jobs);
5619e74a 7918
1a988fd2 7919 if ($agent_running) {
5619e74a 7920 print "unfreeze filesystem\n";
0a13e08e 7921 eval { mon_cmd($vmid, "guest-fsfreeze-thaw"); };
d6cdfae4 7922 warn $@ if $@;
5619e74a
AD
7923 } else {
7924 print "resume vm\n";
d6cdfae4
FE
7925 eval { PVE::QemuServer::vm_resume($vmid, 1, 1); };
7926 warn $@ if $@;
5619e74a
AD
7927 }
7928
2e953867 7929 last;
5a345967
AD
7930 } else {
7931
0ea24bf0 7932 for my $job_id (sort keys %$jobs) {
5a345967 7933 # try to switch the disk if source and destination are on the same guest
0ea24bf0 7934 print "$job_id: Completing block job_id...\n";
5a345967 7935
e02fb126 7936 my $op;
db1f8b39 7937 if ($completion eq 'complete') {
e02fb126 7938 $op = 'block-job-complete';
db1f8b39 7939 } elsif ($completion eq 'cancel') {
e02fb126
ML
7940 $op = 'block-job-cancel';
7941 } else {
7942 die "invalid completion value: $completion\n";
7943 }
0ea24bf0 7944 eval { mon_cmd($vmid, $op, device => $job_id) };
5a345967 7945 if ($@ =~ m/cannot be completed/) {
3b56383b 7946 print "$job_id: block job cannot be completed, trying again.\n";
5a345967
AD
7947 $err_complete++;
7948 }else {
0ea24bf0
TL
7949 print "$job_id: Completed successfully.\n";
7950 $jobs->{$job_id}->{complete} = 1;
5a345967
AD
7951 }
7952 }
2e953867 7953 }
08ac653f 7954 }
08ac653f 7955 sleep 1;
cfad42af 7956 }
08ac653f 7957 };
88383920 7958 my $err = $@;
08ac653f 7959
88383920 7960 if ($err) {
5a345967 7961 eval { PVE::QemuServer::qemu_blockjobs_cancel($vmid, $jobs) };
3b56383b 7962 die "block job ($op) error: $err";
88383920 7963 }
5a345967
AD
7964}
7965
7966sub qemu_blockjobs_cancel {
7967 my ($vmid, $jobs) = @_;
7968
7969 foreach my $job (keys %$jobs) {
bd2d5fe6 7970 print "$job: Cancelling block job\n";
0a13e08e 7971 eval { mon_cmd($vmid, "block-job-cancel", device => $job); };
5a345967
AD
7972 $jobs->{$job}->{cancel} = 1;
7973 }
7974
7975 while (1) {
0a13e08e 7976 my $stats = mon_cmd($vmid, "query-block-jobs");
5a345967
AD
7977
7978 my $running_jobs = {};
7979 foreach my $stat (@$stats) {
7980 $running_jobs->{$stat->{device}} = $stat;
7981 }
7982
7983 foreach my $job (keys %$jobs) {
7984
bd2d5fe6
WB
7985 if (defined($jobs->{$job}->{cancel}) && !defined($running_jobs->{$job})) {
7986 print "$job: Done.\n";
5a345967
AD
7987 delete $jobs->{$job};
7988 }
7989 }
7990
7991 last if scalar(keys %$jobs) == 0;
7992
7993 sleep 1;
cfad42af
AD
7994 }
7995}
7996
8fbae1dc
FE
7997# Check for bug #4525: drive-mirror will open the target drive with the same aio setting as the
7998# source, but some storages have problems with io_uring, sometimes even leading to crashes.
7999my sub clone_disk_check_io_uring {
8000 my ($src_drive, $storecfg, $src_storeid, $dst_storeid, $use_drive_mirror) = @_;
8001
8002 return if !$use_drive_mirror;
8003
8004 # Don't complain when not changing storage.
8005 # Assume if it works for the source, it'll work for the target too.
8006 return if $src_storeid eq $dst_storeid;
8007
8008 my $src_scfg = PVE::Storage::storage_config($storecfg, $src_storeid);
8009 my $dst_scfg = PVE::Storage::storage_config($storecfg, $dst_storeid);
8010
8011 my $cache_direct = drive_uses_cache_direct($src_drive);
8012
8013 my $src_uses_io_uring;
8014 if ($src_drive->{aio}) {
8015 $src_uses_io_uring = $src_drive->{aio} eq 'io_uring';
8016 } else {
8017 $src_uses_io_uring = storage_allows_io_uring_default($src_scfg, $cache_direct);
8018 }
8019
8020 die "target storage is known to cause issues with aio=io_uring (used by current drive)\n"
8021 if $src_uses_io_uring && !storage_allows_io_uring_default($dst_scfg, $cache_direct);
8022}
8023
152fe752 8024sub clone_disk {
1196086f
FE
8025 my ($storecfg, $source, $dest, $full, $newvollist, $jobs, $completion, $qga, $bwlimit) = @_;
8026
8027 my ($vmid, $running) = $source->@{qw(vmid running)};
25166060 8028 my ($src_drivename, $drive, $snapname) = $source->@{qw(drivename drive snapname)};
1196086f 8029
25166060 8030 my ($newvmid, $dst_drivename, $efisize) = $dest->@{qw(vmid drivename efisize)};
1196086f 8031 my ($storage, $format) = $dest->@{qw(storage format)};
152fe752 8032
5f957592
FE
8033 my $use_drive_mirror = $full && $running && $src_drivename && !$snapname;
8034
25166060
FE
8035 if ($src_drivename && $dst_drivename && $src_drivename ne $dst_drivename) {
8036 die "cloning from/to EFI disk requires EFI disk\n"
8037 if $src_drivename eq 'efidisk0' || $dst_drivename eq 'efidisk0';
8038 die "cloning from/to TPM state requires TPM state\n"
8039 if $src_drivename eq 'tpmstate0' || $dst_drivename eq 'tpmstate0';
5f957592
FE
8040
8041 # This would lead to two device nodes in QEMU pointing to the same backing image!
8042 die "cannot change drive name when cloning disk from/to the same VM\n"
8043 if $use_drive_mirror && $vmid == $newvmid;
25166060
FE
8044 }
8045
1d1f8f9a
FE
8046 die "cannot move TPM state while VM is running\n"
8047 if $use_drive_mirror && $src_drivename eq 'tpmstate0';
8048
152fe752
DM
8049 my $newvolid;
8050
25166060
FE
8051 print "create " . ($full ? 'full' : 'linked') . " clone of drive ";
8052 print "$src_drivename " if $src_drivename;
8053 print "($drive->{file})\n";
8054
152fe752 8055 if (!$full) {
258e646c 8056 $newvolid = PVE::Storage::vdisk_clone($storecfg, $drive->{file}, $newvmid, $snapname);
152fe752
DM
8057 push @$newvollist, $newvolid;
8058 } else {
8fbae1dc
FE
8059 my ($src_storeid, $volname) = PVE::Storage::parse_volume_id($drive->{file});
8060 my $storeid = $storage || $src_storeid;
152fe752 8061
44549149 8062 my $dst_format = resolve_dst_disk_format($storecfg, $storeid, $volname, $format);
152fe752 8063
931432bd 8064 my $name = undef;
d0abc774 8065 my $size = undef;
7fe8b44c
TL
8066 if (drive_is_cloudinit($drive)) {
8067 $name = "vm-$newvmid-cloudinit";
c997e24a
ML
8068 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
8069 if ($scfg->{path}) {
8070 $name .= ".$dst_format";
8071 }
7fe8b44c
TL
8072 $snapname = undef;
8073 $size = PVE::QemuServer::Cloudinit::CLOUDINIT_DISK_SIZE;
25166060 8074 } elsif ($dst_drivename eq 'efidisk0') {
7344af7b 8075 $size = $efisize or die "internal error - need to specify EFI disk size\n";
25166060 8076 } elsif ($dst_drivename eq 'tpmstate0') {
5f5aba25 8077 $dst_format = 'raw';
f9dde219 8078 $size = PVE::QemuServer::Drive::TPMSTATE_DISK_SIZE;
d0abc774 8079 } else {
8fbae1dc
FE
8080 clone_disk_check_io_uring($drive, $storecfg, $src_storeid, $storeid, $use_drive_mirror);
8081
efa3aa24 8082 $size = PVE::Storage::volume_size_info($storecfg, $drive->{file}, 10);
7fe8b44c 8083 }
b5688f69
FE
8084 $newvolid = PVE::Storage::vdisk_alloc(
8085 $storecfg, $storeid, $newvmid, $dst_format, $name, ($size/1024)
8086 );
152fe752
DM
8087 push @$newvollist, $newvolid;
8088
3999f370 8089 PVE::Storage::activate_volumes($storecfg, [$newvolid]);
1dbd6d30 8090
7fe8b44c 8091 if (drive_is_cloudinit($drive)) {
1b485263
ML
8092 # when cloning multiple disks (e.g. during clone_vm) it might be the last disk
8093 # if this is the case, we have to complete any block-jobs still there from
8094 # previous drive-mirrors
8095 if (($completion eq 'complete') && (scalar(keys %$jobs) > 0)) {
8096 qemu_drive_mirror_monitor($vmid, $newvmid, $jobs, $completion, $qga);
8097 }
7fe8b44c
TL
8098 goto no_data_clone;
8099 }
8100
988e2714 8101 my $sparseinit = PVE::Storage::volume_has_feature($storecfg, 'sparseinit', $newvolid);
5f957592 8102 if ($use_drive_mirror) {
5f957592
FE
8103 qemu_drive_mirror($vmid, $src_drivename, $newvolid, $newvmid, $sparseinit, $jobs,
8104 $completion, $qga, $bwlimit);
8105 } else {
25166060 8106 if ($dst_drivename eq 'efidisk0') {
818ce80e
DC
8107 # the relevant data on the efidisk may be smaller than the source
8108 # e.g. on RBD/ZFS, so we use dd to copy only the amount
8109 # that is given by the OVMF_VARS.fd
62375438 8110 my $src_path = PVE::Storage::path($storecfg, $drive->{file}, $snapname);
818ce80e 8111 my $dst_path = PVE::Storage::path($storecfg, $newvolid);
fdfdc80e 8112
62375438
FE
8113 my $src_format = (PVE::Storage::parse_volname($storecfg, $drive->{file}))[6];
8114
fdfdc80e
FE
8115 # better for Ceph if block size is not too small, see bug #3324
8116 my $bs = 1024*1024;
8117
62375438 8118 my $cmd = ['qemu-img', 'dd', '-n', '-O', $dst_format];
a9c45bd4
FE
8119
8120 if ($src_format eq 'qcow2' && $snapname) {
8121 die "cannot clone qcow2 EFI disk snapshot - requires QEMU >= 6.2\n"
8122 if !min_version(kvm_user_version(), 6, 2);
8123 push $cmd->@*, '-l', $snapname;
8124 }
62375438
FE
8125 push $cmd->@*, "bs=$bs", "osize=$size", "if=$src_path", "of=$dst_path";
8126 run_command($cmd);
818ce80e 8127 } else {
56d16f16 8128 qemu_img_convert($drive->{file}, $newvolid, $size, $snapname, $sparseinit, $bwlimit);
818ce80e 8129 }
be190583 8130 }
152fe752
DM
8131 }
8132
7fe8b44c 8133no_data_clone:
efa3aa24 8134 my $size = eval { PVE::Storage::volume_size_info($storecfg, $newvolid, 10) };
152fe752 8135
3b53c471
FE
8136 my $disk = dclone($drive);
8137 delete $disk->{format};
152fe752 8138 $disk->{file} = $newvolid;
3bae384f 8139 $disk->{size} = $size if defined($size);
152fe752
DM
8140
8141 return $disk;
8142}
8143
98cfd8b6
AD
8144sub get_running_qemu_version {
8145 my ($vmid) = @_;
0a13e08e 8146 my $res = mon_cmd($vmid, "query-version");
98cfd8b6
AD
8147 return "$res->{qemu}->{major}.$res->{qemu}->{minor}";
8148}
8149
249c4a6c
AD
8150sub qemu_use_old_bios_files {
8151 my ($machine_type) = @_;
8152
8153 return if !$machine_type;
8154
8155 my $use_old_bios_files = undef;
8156
8157 if ($machine_type =~ m/^(\S+)\.pxe$/) {
8158 $machine_type = $1;
8159 $use_old_bios_files = 1;
8160 } else {
4df98f2f 8161 my $version = extract_version($machine_type, kvm_user_version());
249c4a6c
AD
8162 # Note: kvm version < 2.4 use non-efi pxe files, and have problems when we
8163 # load new efi bios files on migration. So this hack is required to allow
8164 # live migration from qemu-2.2 to qemu-2.4, which is sometimes used when
8165 # updrading from proxmox-ve-3.X to proxmox-ve 4.0
2ea5fb7e 8166 $use_old_bios_files = !min_version($version, 2, 4);
249c4a6c
AD
8167 }
8168
8169 return ($use_old_bios_files, $machine_type);
8170}
8171
818ce80e 8172sub get_efivars_size {
ff84f0e3
FE
8173 my ($conf, $efidisk) = @_;
8174
818ce80e 8175 my $arch = get_vm_arch($conf);
ff84f0e3 8176 $efidisk //= $conf->{efidisk0} ? parse_drive('efidisk0', $conf->{efidisk0}) : undef;
90b20b15
DC
8177 my $smm = PVE::QemuServer::Machine::machine_type_is_q35($conf);
8178 my (undef, $ovmf_vars) = get_ovmf_files($arch, $efidisk, $smm);
818ce80e
DC
8179 return -s $ovmf_vars;
8180}
8181
8182sub update_efidisk_size {
8183 my ($conf) = @_;
8184
8185 return if !defined($conf->{efidisk0});
8186
8187 my $disk = PVE::QemuServer::parse_drive('efidisk0', $conf->{efidisk0});
8188 $disk->{size} = get_efivars_size($conf);
8189 $conf->{efidisk0} = print_drive($disk);
8190
8191 return;
8192}
8193
f9dde219
SR
8194sub update_tpmstate_size {
8195 my ($conf) = @_;
8196
8197 my $disk = PVE::QemuServer::parse_drive('tpmstate0', $conf->{tpmstate0});
8198 $disk->{size} = PVE::QemuServer::Drive::TPMSTATE_DISK_SIZE;
8199 $conf->{tpmstate0} = print_drive($disk);
8200}
8201
90b20b15
DC
8202sub create_efidisk($$$$$$$) {
8203 my ($storecfg, $storeid, $vmid, $fmt, $arch, $efidisk, $smm) = @_;
3e1f1122 8204
90b20b15 8205 my (undef, $ovmf_vars) = get_ovmf_files($arch, $efidisk, $smm);
3e1f1122 8206
af1f1ec0
DC
8207 my $vars_size_b = -s $ovmf_vars;
8208 my $vars_size = PVE::Tools::convert_size($vars_size_b, 'b' => 'kb');
3e1f1122
TL
8209 my $volid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $vmid, $fmt, undef, $vars_size);
8210 PVE::Storage::activate_volumes($storecfg, [$volid]);
8211
af1f1ec0 8212 qemu_img_convert($ovmf_vars, $volid, $vars_size_b, undef, 0);
efa3aa24 8213 my $size = PVE::Storage::volume_size_info($storecfg, $volid, 3);
3e1f1122 8214
340dbcf7 8215 return ($volid, $size/1024);
3e1f1122
TL
8216}
8217
22de899a
AD
8218sub vm_iothreads_list {
8219 my ($vmid) = @_;
8220
0a13e08e 8221 my $res = mon_cmd($vmid, 'query-iothreads');
22de899a
AD
8222
8223 my $iothreads = {};
8224 foreach my $iothread (@$res) {
8225 $iothreads->{ $iothread->{id} } = $iothread->{"thread-id"};
8226 }
8227
8228 return $iothreads;
8229}
8230
ee034f5c
AD
8231sub scsihw_infos {
8232 my ($conf, $drive) = @_;
8233
8234 my $maxdev = 0;
8235
7fe1b688 8236 if (!$conf->{scsihw} || ($conf->{scsihw} =~ m/^lsi/)) {
ee034f5c 8237 $maxdev = 7;
a1511b3c 8238 } elsif ($conf->{scsihw} && ($conf->{scsihw} eq 'virtio-scsi-single')) {
ee034f5c
AD
8239 $maxdev = 1;
8240 } else {
8241 $maxdev = 256;
8242 }
8243
8244 my $controller = int($drive->{index} / $maxdev);
4df98f2f
TL
8245 my $controller_prefix = ($conf->{scsihw} && $conf->{scsihw} eq 'virtio-scsi-single')
8246 ? "virtioscsi"
8247 : "scsihw";
ee034f5c
AD
8248
8249 return ($maxdev, $controller, $controller_prefix);
8250}
a1511b3c 8251
44549149
EK
8252sub resolve_dst_disk_format {
8253 my ($storecfg, $storeid, $src_volname, $format) = @_;
8254 my ($defFormat, $validFormats) = PVE::Storage::storage_default_format($storecfg, $storeid);
8255
8256 if (!$format) {
8257 # if no target format is specified, use the source disk format as hint
8258 if ($src_volname) {
8259 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
8260 $format = qemu_img_format($scfg, $src_volname);
8261 } else {
8262 return $defFormat;
8263 }
8264 }
8265
8266 # test if requested format is supported - else use default
8267 my $supported = grep { $_ eq $format } @$validFormats;
8268 $format = $defFormat if !$supported;
8269 return $format;
8270}
8271
66cebc46
DC
8272# NOTE: if this logic changes, please update docs & possibly gui logic
8273sub find_vmstate_storage {
8274 my ($conf, $storecfg) = @_;
8275
8276 # first, return storage from conf if set
8277 return $conf->{vmstatestorage} if $conf->{vmstatestorage};
8278
8279 my ($target, $shared, $local);
8280
8281 foreach_storage_used_by_vm($conf, sub {
8282 my ($sid) = @_;
8283 my $scfg = PVE::Storage::storage_config($storecfg, $sid);
8284 my $dst = $scfg->{shared} ? \$shared : \$local;
8285 $$dst = $sid if !$$dst || $scfg->{path}; # prefer file based storage
8286 });
8287
8288 # second, use shared storage where VM has at least one disk
8289 # third, use local storage where VM has at least one disk
8290 # fall back to local storage
8291 $target = $shared // $local // 'local';
8292
8293 return $target;
8294}
8295
6ee499ff 8296sub generate_uuid {
ae2fcb3b
EK
8297 my ($uuid, $uuid_str);
8298 UUID::generate($uuid);
8299 UUID::unparse($uuid, $uuid_str);
6ee499ff
DC
8300 return $uuid_str;
8301}
8302
8303sub generate_smbios1_uuid {
8304 return "uuid=".generate_uuid();
ae2fcb3b
EK
8305}
8306
9c152e87
TL
8307sub nbd_stop {
8308 my ($vmid) = @_;
8309
0a13e08e 8310 mon_cmd($vmid, 'nbd-server-stop');
9c152e87
TL
8311}
8312
dae98db9
DC
8313sub create_reboot_request {
8314 my ($vmid) = @_;
8315 open(my $fh, '>', "/run/qemu-server/$vmid.reboot")
8316 or die "failed to create reboot trigger file: $!\n";
8317 close($fh);
8318}
8319
8320sub clear_reboot_request {
8321 my ($vmid) = @_;
8322 my $path = "/run/qemu-server/$vmid.reboot";
8323 my $res = 0;
8324
8325 $res = unlink($path);
8326 die "could not remove reboot request for $vmid: $!"
8327 if !$res && $! != POSIX::ENOENT;
8328
8329 return $res;
8330}
8331
5cfa9f5f
SR
8332sub bootorder_from_legacy {
8333 my ($conf, $bootcfg) = @_;
8334
8335 my $boot = $bootcfg->{legacy} || $boot_fmt->{legacy}->{default};
8336 my $bootindex_hash = {};
8337 my $i = 1;
8338 foreach my $o (split(//, $boot)) {
8339 $bootindex_hash->{$o} = $i*100;
8340 $i++;
8341 }
8342
8343 my $bootorder = {};
8344
8345 PVE::QemuConfig->foreach_volume($conf, sub {
8346 my ($ds, $drive) = @_;
8347
8348 if (drive_is_cdrom ($drive, 1)) {
8349 if ($bootindex_hash->{d}) {
8350 $bootorder->{$ds} = $bootindex_hash->{d};
8351 $bootindex_hash->{d} += 1;
8352 }
8353 } elsif ($bootindex_hash->{c}) {
8354 $bootorder->{$ds} = $bootindex_hash->{c}
8355 if $conf->{bootdisk} && $conf->{bootdisk} eq $ds;
8356 $bootindex_hash->{c} += 1;
8357 }
8358 });
8359
8360 if ($bootindex_hash->{n}) {
8361 for (my $i = 0; $i < $MAX_NETS; $i++) {
8362 my $netname = "net$i";
8363 next if !$conf->{$netname};
8364 $bootorder->{$netname} = $bootindex_hash->{n};
8365 $bootindex_hash->{n} += 1;
8366 }
8367 }
8368
8369 return $bootorder;
8370}
8371
8372# Generate default device list for 'boot: order=' property. Matches legacy
8373# default boot order, but with explicit device names. This is important, since
8374# the fallback for when neither 'order' nor the old format is specified relies
8375# on 'bootorder_from_legacy' above, and it would be confusing if this diverges.
8376sub get_default_bootdevices {
8377 my ($conf) = @_;
8378
8379 my @ret = ();
8380
8381 # harddisk
8382 my $first = PVE::QemuServer::Drive::resolve_first_disk($conf, 0);
8383 push @ret, $first if $first;
8384
8385 # cdrom
8386 $first = PVE::QemuServer::Drive::resolve_first_disk($conf, 1);
8387 push @ret, $first if $first;
8388
8389 # network
8390 for (my $i = 0; $i < $MAX_NETS; $i++) {
8391 my $netname = "net$i";
8392 next if !$conf->{$netname};
8393 push @ret, $netname;
8394 last;
8395 }
8396
8397 return \@ret;
8398}
8399
e5d611c3
TL
8400sub device_bootorder {
8401 my ($conf) = @_;
8402
8403 return bootorder_from_legacy($conf) if !defined($conf->{boot});
8404
8405 my $boot = parse_property_string($boot_fmt, $conf->{boot});
8406
8407 my $bootorder = {};
8408 if (!defined($boot) || $boot->{legacy}) {
8409 $bootorder = bootorder_from_legacy($conf, $boot);
8410 } elsif ($boot->{order}) {
8411 my $i = 100; # start at 100 to allow user to insert devices before us with -args
8412 for my $dev (PVE::Tools::split_list($boot->{order})) {
8413 $bootorder->{$dev} = $i++;
8414 }
8415 }
8416
8417 return $bootorder;
8418}
8419
65911545
SR
8420sub register_qmeventd_handle {
8421 my ($vmid) = @_;
8422
8423 my $fh;
8424 my $peer = "/var/run/qmeventd.sock";
8425 my $count = 0;
8426
8427 for (;;) {
8428 $count++;
8429 $fh = IO::Socket::UNIX->new(Peer => $peer, Blocking => 0, Timeout => 1);
8430 last if $fh;
8431 if ($! != EINTR && $! != EAGAIN) {
8432 die "unable to connect to qmeventd socket (vmid: $vmid) - $!\n";
8433 }
8434 if ($count > 4) {
8435 die "unable to connect to qmeventd socket (vmid: $vmid) - timeout "
8436 . "after $count retries\n";
8437 }
8438 usleep(25000);
8439 }
8440
8441 # send handshake to mark VM as backing up
8442 print $fh to_json({vzdump => {vmid => "$vmid"}});
8443
8444 # return handle to be closed later when inhibit is no longer required
8445 return $fh;
8446}
8447
65e866e5
DM
8448# bash completion helper
8449
8450sub complete_backup_archives {
8451 my ($cmdname, $pname, $cvalue) = @_;
8452
8453 my $cfg = PVE::Storage::config();
8454
8455 my $storeid;
8456
8457 if ($cvalue =~ m/^([^:]+):/) {
8458 $storeid = $1;
8459 }
8460
8461 my $data = PVE::Storage::template_list($cfg, $storeid, 'backup');
8462
8463 my $res = [];
8464 foreach my $id (keys %$data) {
8465 foreach my $item (@{$data->{$id}}) {
f43a4f12 8466 next if $item->{format} !~ m/^vma\.(${\PVE::Storage::Plugin::COMPRESSOR_RE})$/;
65e866e5
DM
8467 push @$res, $item->{volid} if defined($item->{volid});
8468 }
8469 }
8470
8471 return $res;
8472}
8473
8474my $complete_vmid_full = sub {
8475 my ($running) = @_;
8476
8477 my $idlist = vmstatus();
8478
8479 my $res = [];
8480
8481 foreach my $id (keys %$idlist) {
8482 my $d = $idlist->{$id};
8483 if (defined($running)) {
8484 next if $d->{template};
8485 next if $running && $d->{status} ne 'running';
8486 next if !$running && $d->{status} eq 'running';
8487 }
8488 push @$res, $id;
8489
8490 }
8491 return $res;
8492};
8493
8494sub complete_vmid {
8495 return &$complete_vmid_full();
8496}
8497
8498sub complete_vmid_stopped {
8499 return &$complete_vmid_full(0);
8500}
8501
8502sub complete_vmid_running {
8503 return &$complete_vmid_full(1);
8504}
8505
335af808
DM
8506sub complete_storage {
8507
8508 my $cfg = PVE::Storage::config();
8509 my $ids = $cfg->{ids};
8510
8511 my $res = [];
8512 foreach my $sid (keys %$ids) {
8513 next if !PVE::Storage::storage_check_enabled($cfg, $sid, undef, 1);
c4c844ef 8514 next if !$ids->{$sid}->{content}->{images};
335af808
DM
8515 push @$res, $sid;
8516 }
8517
8518 return $res;
8519}
8520
255e9c54
AL
8521sub complete_migration_storage {
8522 my ($cmd, $param, $current_value, $all_args) = @_;
8523
8524 my $targetnode = @$all_args[1];
8525
8526 my $cfg = PVE::Storage::config();
8527 my $ids = $cfg->{ids};
8528
8529 my $res = [];
8530 foreach my $sid (keys %$ids) {
8531 next if !PVE::Storage::storage_check_enabled($cfg, $sid, $targetnode, 1);
8532 next if !$ids->{$sid}->{content}->{images};
8533 push @$res, $sid;
8534 }
8535
8536 return $res;
8537}
8538
b08c37c3
DC
8539sub vm_is_paused {
8540 my ($vmid) = @_;
8541 my $qmpstatus = eval {
8542 PVE::QemuConfig::assert_config_exists_on_node($vmid);
8543 mon_cmd($vmid, "query-status");
8544 };
8545 warn "$@\n" if $@;
8546 return $qmpstatus && $qmpstatus->{status} eq "paused";
8547}
8548
3f11f0d7
LS
8549sub check_volume_storage_type {
8550 my ($storecfg, $vol) = @_;
8551
8552 my ($storeid, $volname) = PVE::Storage::parse_volume_id($vol);
8553 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
8554 my ($vtype) = PVE::Storage::parse_volname($storecfg, $vol);
8555
8556 die "storage '$storeid' does not support content-type '$vtype'\n"
8557 if !$scfg->{content}->{$vtype};
8558
8559 return 1;
8560}
8561
21947fea
AD
8562sub add_nets_bridge_fdb {
8563 my ($conf, $vmid) = @_;
8564
1b5ba4dd
TL
8565 for my $opt (keys %$conf) {
8566 next if $opt !~ m/^net(\d+)$/;
8567 my $iface = "tap${vmid}i$1";
4ddd2ca2
TL
8568 # NOTE: expect setups with learning off to *not* use auto-random-generation of MAC on start
8569 my $net = parse_net($conf->{$opt}, 1) or next;
8570
8571 my $mac = $net->{macaddr};
8572 if (!$mac) {
8573 log_warn("MAC learning disabled, but vNIC '$iface' has no static MAC to add to forwarding DB!")
8574 if !file_read_firstline("/sys/class/net/$iface/brport/learning");
8575 next;
8576 }
21947fea 8577
f81c9843 8578 my $bridge = $net->{bridge};
bb547dcb
CE
8579 if (!$bridge) {
8580 log_warn("Interface '$iface' not attached to any bridge.");
8581 next;
8582 }
1b5ba4dd 8583 if ($have_sdn) {
f81c9843 8584 PVE::Network::SDN::Zones::add_bridge_fdb($iface, $mac, $bridge, $net->{firewall});
fe62da4f 8585 } elsif (-d "/sys/class/net/$bridge/bridge") { # avoid fdb management with OVS for now
1b5ba4dd 8586 PVE::Network::add_bridge_fdb($iface, $mac, $net->{firewall});
21947fea
AD
8587 }
8588 }
8589}
1b5ba4dd 8590
73ed6496
AD
8591sub del_nets_bridge_fdb {
8592 my ($conf, $vmid) = @_;
8593
8594 for my $opt (keys %$conf) {
8595 next if $opt !~ m/^net(\d+)$/;
8596 my $iface = "tap${vmid}i$1";
8597
8598 my $net = parse_net($conf->{$opt}) or next;
8599 my $mac = $net->{macaddr} or next;
8600
f81c9843 8601 my $bridge = $net->{bridge};
73ed6496 8602 if ($have_sdn) {
f81c9843 8603 PVE::Network::SDN::Zones::del_bridge_fdb($iface, $mac, $bridge, $net->{firewall});
fe62da4f 8604 } elsif (-d "/sys/class/net/$bridge/bridge") { # avoid fdb management with OVS for now
73ed6496
AD
8605 PVE::Network::del_bridge_fdb($iface, $mac, $net->{firewall});
8606 }
8607 }
8608}
8609
1e3baf05 86101;