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