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