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