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