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