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