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