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