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