]> git.proxmox.com Git - qemu-server.git/blame - PVE/QemuServer.pm
avoid endless loop in QMPClient
[qemu-server.git] / PVE / QemuServer.pm
CommitLineData
1e3baf05
DM
1package PVE::QemuServer;
2
3use strict;
4use POSIX;
5use IO::Handle;
6use IO::Select;
7use IO::File;
8use IO::Dir;
9use IO::Socket::UNIX;
10use File::Basename;
11use File::Path;
12use File::stat;
13use Getopt::Long;
fc1ddcdc 14use Digest::SHA;
1e3baf05
DM
15use Fcntl ':flock';
16use Cwd 'abs_path';
17use IPC::Open3;
c971c4f2 18use JSON;
1e3baf05
DM
19use Fcntl;
20use PVE::SafeSyslog;
21use Storable qw(dclone);
22use PVE::Exception qw(raise raise_param_exc);
23use PVE::Storage;
24use PVE::Tools qw(run_command lock_file file_read_firstline);
b7ba6b79 25use PVE::JSONSchema qw(get_standard_option);
1e3baf05
DM
26use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file);
27use PVE::INotify;
28use PVE::ProcFSTools;
26f11676 29use PVE::QMPClient;
91bd6c90 30use PVE::RPCEnvironment;
6b64503e 31use Time::HiRes qw(gettimeofday);
1e3baf05 32
7f0b5beb 33my $cpuinfo = PVE::ProcFSTools::read_cpuinfo();
1e3baf05 34
19672434 35# Note about locking: we use flock on the config file protect
1e3baf05
DM
36# against concurent actions.
37# Aditionaly, we have a 'lock' setting in the config file. This
22c377f0 38# can be set to 'migrate', 'backup', 'snapshot' or 'rollback'. Most actions are not
1e3baf05
DM
39# allowed when such lock is set. But you can ignore this kind of
40# lock with the --skiplock flag.
41
97d62eb7 42cfs_register_file('/qemu-server/',
1858638f
DM
43 \&parse_vm_config,
44 \&write_vm_config);
1e3baf05 45
3ea94c60
DM
46PVE::JSONSchema::register_standard_option('skiplock', {
47 description => "Ignore locks - only root is allowed to use this option.",
afdb31d5 48 type => 'boolean',
3ea94c60
DM
49 optional => 1,
50});
51
52PVE::JSONSchema::register_standard_option('pve-qm-stateuri', {
53 description => "Some command save/restore state from this location.",
54 type => 'string',
55 maxLength => 128,
56 optional => 1,
57});
58
8abd398b
DM
59PVE::JSONSchema::register_standard_option('pve-snapshot-name', {
60 description => "The name of the snapshot.",
61 type => 'string', format => 'pve-configid',
62 maxLength => 40,
63});
64
1e3baf05
DM
65#no warnings 'redefine';
66
67unless(defined(&_VZSYSCALLS_H_)) {
68 eval 'sub _VZSYSCALLS_H_ () {1;}' unless defined(&_VZSYSCALLS_H_);
69 require 'sys/syscall.ph';
70 if(defined(&__x86_64__)) {
71 eval 'sub __NR_fairsched_vcpus () {499;}' unless defined(&__NR_fairsched_vcpus);
72 eval 'sub __NR_fairsched_mknod () {504;}' unless defined(&__NR_fairsched_mknod);
73 eval 'sub __NR_fairsched_rmnod () {505;}' unless defined(&__NR_fairsched_rmnod);
74 eval 'sub __NR_fairsched_chwt () {506;}' unless defined(&__NR_fairsched_chwt);
75 eval 'sub __NR_fairsched_mvpr () {507;}' unless defined(&__NR_fairsched_mvpr);
76 eval 'sub __NR_fairsched_rate () {508;}' unless defined(&__NR_fairsched_rate);
77 eval 'sub __NR_setluid () {501;}' unless defined(&__NR_setluid);
78 eval 'sub __NR_setublimit () {502;}' unless defined(&__NR_setublimit);
79 }
80 elsif(defined( &__i386__) ) {
81 eval 'sub __NR_fairsched_mknod () {500;}' unless defined(&__NR_fairsched_mknod);
82 eval 'sub __NR_fairsched_rmnod () {501;}' unless defined(&__NR_fairsched_rmnod);
83 eval 'sub __NR_fairsched_chwt () {502;}' unless defined(&__NR_fairsched_chwt);
84 eval 'sub __NR_fairsched_mvpr () {503;}' unless defined(&__NR_fairsched_mvpr);
85 eval 'sub __NR_fairsched_rate () {504;}' unless defined(&__NR_fairsched_rate);
86 eval 'sub __NR_fairsched_vcpus () {505;}' unless defined(&__NR_fairsched_vcpus);
87 eval 'sub __NR_setluid () {511;}' unless defined(&__NR_setluid);
88 eval 'sub __NR_setublimit () {512;}' unless defined(&__NR_setublimit);
89 } else {
90 die("no fairsched syscall for this arch");
91 }
92 require 'asm/ioctl.ph';
93 eval 'sub KVM_GET_API_VERSION () { &_IO(0xAE, 0x);}' unless defined(&KVM_GET_API_VERSION);
94}
95
96sub fairsched_mknod {
97 my ($parent, $weight, $desired) = @_;
98
6b64503e 99 return syscall(&__NR_fairsched_mknod, int($parent), int($weight), int($desired));
1e3baf05
DM
100}
101
102sub fairsched_rmnod {
103 my ($id) = @_;
104
6b64503e 105 return syscall(&__NR_fairsched_rmnod, int($id));
1e3baf05
DM
106}
107
108sub fairsched_mvpr {
109 my ($pid, $newid) = @_;
110
6b64503e 111 return syscall(&__NR_fairsched_mvpr, int($pid), int($newid));
1e3baf05
DM
112}
113
114sub fairsched_vcpus {
115 my ($id, $vcpus) = @_;
116
6b64503e 117 return syscall(&__NR_fairsched_vcpus, int($id), int($vcpus));
1e3baf05
DM
118}
119
120sub fairsched_rate {
121 my ($id, $op, $rate) = @_;
122
6b64503e 123 return syscall(&__NR_fairsched_rate, int($id), int($op), int($rate));
1e3baf05
DM
124}
125
126use constant FAIRSCHED_SET_RATE => 0;
127use constant FAIRSCHED_DROP_RATE => 1;
128use constant FAIRSCHED_GET_RATE => 2;
129
130sub fairsched_cpulimit {
131 my ($id, $limit) = @_;
132
6b64503e 133 my $cpulim1024 = int($limit * 1024 / 100);
1e3baf05
DM
134 my $op = $cpulim1024 ? FAIRSCHED_SET_RATE : FAIRSCHED_DROP_RATE;
135
6b64503e 136 return fairsched_rate($id, $op, $cpulim1024);
1e3baf05
DM
137}
138
139my $nodename = PVE::INotify::nodename();
140
141mkdir "/etc/pve/nodes/$nodename";
142my $confdir = "/etc/pve/nodes/$nodename/qemu-server";
143mkdir $confdir;
144
145my $var_run_tmpdir = "/var/run/qemu-server";
146mkdir $var_run_tmpdir;
147
148my $lock_dir = "/var/lock/qemu-server";
149mkdir $lock_dir;
150
151my $pcisysfs = "/sys/bus/pci";
152
1e3baf05
DM
153my $confdesc = {
154 onboot => {
155 optional => 1,
156 type => 'boolean',
157 description => "Specifies whether a VM will be started during system bootup.",
158 default => 0,
159 },
160 autostart => {
161 optional => 1,
162 type => 'boolean',
163 description => "Automatic restart after crash (currently ignored).",
164 default => 0,
165 },
2ff09f52
DA
166 hotplug => {
167 optional => 1,
e8b9c17c 168 type => 'boolean',
6c52b679 169 description => "Allow hotplug for disk and network device",
2dbe827e 170 default => 0,
2ff09f52 171 },
1e3baf05
DM
172 reboot => {
173 optional => 1,
174 type => 'boolean',
175 description => "Allow reboot. If set to '0' the VM exit on reboot.",
176 default => 1,
177 },
178 lock => {
179 optional => 1,
180 type => 'string',
181 description => "Lock/unlock the VM.",
22c377f0 182 enum => [qw(migrate backup snapshot rollback)],
1e3baf05
DM
183 },
184 cpulimit => {
185 optional => 1,
186 type => 'integer',
187 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.",
188 minimum => 0,
189 default => 0,
190 },
191 cpuunits => {
192 optional => 1,
193 type => 'integer',
194 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.",
195 minimum => 0,
196 maximum => 500000,
197 default => 1000,
198 },
199 memory => {
200 optional => 1,
201 type => 'integer',
7878afeb 202 description => "Amount of RAM for the VM in MB. This is the maximum available memory when you use the balloon device.",
1e3baf05
DM
203 minimum => 16,
204 default => 512,
205 },
13a48620
DA
206 balloon => {
207 optional => 1,
208 type => 'integer',
8b1accf7
DM
209 description => "Amount of target RAM for the VM in MB. Using zero disables the ballon driver.",
210 minimum => 0,
211 },
212 shares => {
213 optional => 1,
214 type => 'integer',
215 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",
216 minimum => 0,
217 maximum => 50000,
218 default => 1000,
13a48620 219 },
1e3baf05
DM
220 keyboard => {
221 optional => 1,
222 type => 'string',
223 description => "Keybord layout for vnc server. Default is read from the datacenter configuration file.",
e95fe75f 224 enum => PVE::Tools::kvmkeymaplist(),
1e3baf05
DM
225 default => 'en-us',
226 },
227 name => {
228 optional => 1,
7fabe17d 229 type => 'string', format => 'dns-name',
1e3baf05
DM
230 description => "Set a name for the VM. Only used on the configuration web interface.",
231 },
cdd20088
AD
232 scsihw => {
233 optional => 1,
234 type => 'string',
235 description => "scsi controller model",
29972af3 236 enum => [qw(lsi virtio-scsi-pci megasas)],
cdd20088
AD
237 default => 'lsi',
238 },
1e3baf05
DM
239 description => {
240 optional => 1,
241 type => 'string',
0581fe4f 242 description => "Description for the VM. Only used on the configuration web interface. This is saved as comment inside the configuration file.",
1e3baf05
DM
243 },
244 ostype => {
245 optional => 1,
246 type => 'string',
a70ebde3 247 enum => [qw(other wxp w2k w2k3 w2k8 wvista win7 win8 l24 l26)],
1e3baf05
DM
248 description => <<EODESC,
249Used to enable special optimization/features for specific
250operating systems:
251
252other => unspecified OS
253wxp => Microsoft Windows XP
254w2k => Microsoft Windows 2000
255w2k3 => Microsoft Windows 2003
256w2k8 => Microsoft Windows 2008
257wvista => Microsoft Windows Vista
258win7 => Microsoft Windows 7
a70ebde3 259win8 => Microsoft Windows 8/2012
1e3baf05
DM
260l24 => Linux 2.4 Kernel
261l26 => Linux 2.6/3.X Kernel
262
a70ebde3
DM
263other|l24|l26 ... no special behaviour
264wxp|w2k|w2k3|w2k8|wvista|win7|win8 ... use --localtime switch
1e3baf05
DM
265EODESC
266 },
267 boot => {
268 optional => 1,
269 type => 'string',
270 description => "Boot on floppy (a), hard disk (c), CD-ROM (d), or network (n).",
271 pattern => '[acdn]{1,4}',
32baffb4 272 default => 'cdn',
1e3baf05
DM
273 },
274 bootdisk => {
275 optional => 1,
276 type => 'string', format => 'pve-qm-bootdisk',
277 description => "Enable booting from specified disk.",
03e480fc 278 pattern => '(ide|sata|scsi|virtio)\d+',
1e3baf05
DM
279 },
280 smp => {
281 optional => 1,
282 type => 'integer',
283 description => "The number of CPUs. Please use option -sockets instead.",
284 minimum => 1,
285 default => 1,
286 },
287 sockets => {
288 optional => 1,
289 type => 'integer',
290 description => "The number of CPU sockets.",
291 minimum => 1,
292 default => 1,
293 },
294 cores => {
295 optional => 1,
296 type => 'integer',
297 description => "The number of cores per socket.",
298 minimum => 1,
299 default => 1,
300 },
301 acpi => {
302 optional => 1,
303 type => 'boolean',
304 description => "Enable/disable ACPI.",
305 default => 1,
306 },
bc84dcca 307 agent => {
ab6a046f
AD
308 optional => 1,
309 type => 'boolean',
310 description => "Enable/disable Qemu GuestAgent.",
be79c214 311 default => 0,
ab6a046f 312 },
1e3baf05
DM
313 kvm => {
314 optional => 1,
315 type => 'boolean',
316 description => "Enable/disable KVM hardware virtualization.",
317 default => 1,
318 },
319 tdf => {
320 optional => 1,
321 type => 'boolean',
8c559505
DM
322 description => "Enable/disable time drift fix.",
323 default => 0,
1e3baf05 324 },
19672434 325 localtime => {
1e3baf05
DM
326 optional => 1,
327 type => 'boolean',
328 description => "Set the real time clock to local time. This is enabled by default if ostype indicates a Microsoft OS.",
329 },
330 freeze => {
331 optional => 1,
332 type => 'boolean',
333 description => "Freeze CPU at startup (use 'c' monitor command to start execution).",
334 },
335 vga => {
336 optional => 1,
337 type => 'string',
a70ebde3 338 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",
1e3baf05
DM
339 enum => [qw(std cirrus vmware)],
340 },
0ea9541d
DM
341 watchdog => {
342 optional => 1,
343 type => 'string', format => 'pve-qm-watchdog',
344 typetext => '[[model=]i6300esb|ib700] [,[action=]reset|shutdown|poweroff|pause|debug|none]',
345 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)",
346 },
1e3baf05
DM
347 startdate => {
348 optional => 1,
19672434 349 type => 'string',
1e3baf05
DM
350 typetext => "(now | YYYY-MM-DD | YYYY-MM-DDTHH:MM:SS)",
351 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'.",
352 pattern => '(now|\d{4}-\d{1,2}-\d{1,2}(T\d{1,2}:\d{1,2}:\d{1,2})?)',
353 default => 'now',
354 },
59411c4e
DM
355 startup => {
356 optional => 1,
357 type => 'string', format => 'pve-qm-startup',
358 typetext => '[[order=]\d+] [,up=\d+] [,down=\d+] ',
359 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.",
360 },
1e3baf05
DM
361 args => {
362 optional => 1,
363 type => 'string',
364 description => <<EODESCR,
365Note: this option is for experts only. It allows you to pass arbitrary arguments to kvm, for example:
366
367args: -no-reboot -no-hpet
368EODESCR
369 },
370 tablet => {
371 optional => 1,
372 type => 'boolean',
373 default => 1,
374 description => "Enable/disable the usb tablet device. This device is usually needed to allow absolute mouse positioning. 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.",
375 },
376 migrate_speed => {
377 optional => 1,
378 type => 'integer',
379 description => "Set maximum speed (in MB/s) for migrations. Value 0 is no limit.",
380 minimum => 0,
381 default => 0,
382 },
383 migrate_downtime => {
384 optional => 1,
04432191 385 type => 'number',
1e3baf05
DM
386 description => "Set maximum tolerated downtime (in seconds) for migrations.",
387 minimum => 0,
04432191 388 default => 0.1,
1e3baf05
DM
389 },
390 cdrom => {
391 optional => 1,
392 type => 'string', format => 'pve-qm-drive',
393 typetext => 'volume',
394 description => "This is an alias for option -ide2",
395 },
396 cpu => {
397 optional => 1,
398 description => "Emulated CPU type.",
399 type => 'string',
98a0dc5e 400 enum => [ qw(486 athlon pentium pentium2 pentium3 coreduo core2duo kvm32 kvm64 qemu32 qemu64 phenom Conroe Penryn Nehalem Westmere SandyBridge Haswell Opteron_G1 Opteron_G2 Opteron_G3 Opteron_G4 Opteron_G5 host) ],
eac6899d 401 default => 'kvm64',
1e3baf05 402 },
b7ba6b79
DM
403 parent => get_standard_option('pve-snapshot-name', {
404 optional => 1,
405 description => "Parent snapshot name. This is used internally, and should not be modified.",
406 }),
982c7f12
DM
407 snaptime => {
408 optional => 1,
409 description => "Timestamp for snapshots.",
410 type => 'integer',
411 minimum => 0,
412 },
18bfb361
DM
413 vmstate => {
414 optional => 1,
415 type => 'string', format => 'pve-volume-id',
416 description => "Reference to a volume which stores the VM state. This is used internally for snapshots.",
417 },
1e3baf05
DM
418};
419
420# what about other qemu settings ?
421#cpu => 'string',
422#machine => 'string',
423#fda => 'file',
424#fdb => 'file',
425#mtdblock => 'file',
426#sd => 'file',
427#pflash => 'file',
428#snapshot => 'bool',
429#bootp => 'file',
430##tftp => 'dir',
431##smb => 'dir',
432#kernel => 'file',
433#append => 'string',
434#initrd => 'file',
435##soundhw => 'string',
436
437while (my ($k, $v) = each %$confdesc) {
438 PVE::JSONSchema::register_standard_option("pve-qm-$k", $v);
439}
440
441my $MAX_IDE_DISKS = 4;
f62db2a4 442my $MAX_SCSI_DISKS = 14;
a2650619 443my $MAX_VIRTIO_DISKS = 16;
cdb0931f 444my $MAX_SATA_DISKS = 6;
1e3baf05 445my $MAX_USB_DEVICES = 5;
5bdcf937 446my $MAX_NETS = 32;
1e3baf05 447my $MAX_UNUSED_DISKS = 8;
040b06b7 448my $MAX_HOSTPCI_DEVICES = 2;
bae179aa 449my $MAX_SERIAL_PORTS = 4;
1989a89c 450my $MAX_PARALLEL_PORTS = 3;
1e3baf05
DM
451
452my $nic_model_list = ['rtl8139', 'ne2k_pci', 'e1000', 'pcnet', 'virtio',
453 'ne2k_isa', 'i82551', 'i82557b', 'i82559er'];
6b64503e 454my $nic_model_list_txt = join(' ', sort @$nic_model_list);
1e3baf05 455
1e3baf05
DM
456my $netdesc = {
457 optional => 1,
458 type => 'string', format => 'pve-qm-net',
5070f384 459 typetext => "MODEL=XX:XX:XX:XX:XX:XX [,bridge=<dev>][,rate=<mbps>][,tag=<vlanid>]",
1e3baf05 460 description => <<EODESCR,
19672434 461Specify network devices.
1e3baf05
DM
462
463MODEL is one of: $nic_model_list_txt
464
19672434 465XX:XX:XX:XX:XX:XX should be an unique MAC address. This is
1e3baf05
DM
466automatically generated if not specified.
467
468The bridge parameter can be used to automatically add the interface to a bridge device. The Proxmox VE standard bridge is called 'vmbr0'.
469
470Option 'rate' is used to limit traffic bandwidth from and to this interface. It is specified as floating point number, unit is 'Megabytes per second'.
471
472If you specify no bridge, we create a kvm 'user' (NATed) network device, which provides DHCP and DNS services. The following addresses are used:
473
47410.0.2.2 Gateway
47510.0.2.3 DNS Server
47610.0.2.4 SMB Server
477
478The DHCP server assign addresses to the guest starting from 10.0.2.15.
479
480EODESCR
481};
482PVE::JSONSchema::register_standard_option("pve-qm-net", $netdesc);
483
484for (my $i = 0; $i < $MAX_NETS; $i++) {
485 $confdesc->{"net$i"} = $netdesc;
486}
487
488my $drivename_hash;
19672434 489
1e3baf05
DM
490my $idedesc = {
491 optional => 1,
492 type => 'string', format => 'pve-qm-drive',
e482cec3 493 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]',
3c770faa 494 description => "Use volume as IDE hard disk or CD-ROM (n is 0 to " .($MAX_IDE_DISKS -1) . ").",
1e3baf05
DM
495};
496PVE::JSONSchema::register_standard_option("pve-qm-ide", $idedesc);
497
498my $scsidesc = {
499 optional => 1,
500 type => 'string', format => 'pve-qm-drive',
e482cec3 501 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]',
3c770faa 502 description => "Use volume as SCSI hard disk or CD-ROM (n is 0 to " . ($MAX_SCSI_DISKS - 1) . ").",
1e3baf05
DM
503};
504PVE::JSONSchema::register_standard_option("pve-qm-scsi", $scsidesc);
505
cdb0931f
DA
506my $satadesc = {
507 optional => 1,
508 type => 'string', format => 'pve-qm-drive',
e482cec3 509 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]',
3c770faa 510 description => "Use volume as SATA hard disk or CD-ROM (n is 0 to " . ($MAX_SATA_DISKS - 1). ").",
cdb0931f
DA
511};
512PVE::JSONSchema::register_standard_option("pve-qm-sata", $satadesc);
513
1e3baf05
DM
514my $virtiodesc = {
515 optional => 1,
516 type => 'string', format => 'pve-qm-drive',
e482cec3 517 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]',
3c770faa 518 description => "Use volume as VIRTIO hard disk (n is 0 to " . ($MAX_VIRTIO_DISKS - 1) . ").",
1e3baf05
DM
519};
520PVE::JSONSchema::register_standard_option("pve-qm-virtio", $virtiodesc);
521
522my $usbdesc = {
523 optional => 1,
524 type => 'string', format => 'pve-qm-usb-device',
525 typetext => 'host=HOSTUSBDEVICE',
526 description => <<EODESCR,
2fe1a152 527Configure an USB device (n is 0 to 4). This can be used to
1e3baf05
DM
528pass-through usb devices to the guest. HOSTUSBDEVICE syntax is:
529
19672434 530'bus-port(.port)*' (decimal numbers) or
1e3baf05
DM
531'vendor_id:product_id' (hexadeciaml numbers)
532
19672434 533You can use the 'lsusb -t' command to list existing usb devices.
1e3baf05
DM
534
535Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
536
537EODESCR
538};
539PVE::JSONSchema::register_standard_option("pve-qm-usb", $usbdesc);
540
040b06b7
DA
541my $hostpcidesc = {
542 optional => 1,
543 type => 'string', format => 'pve-qm-hostpci',
544 typetext => "HOSTPCIDEVICE",
545 description => <<EODESCR,
546Map host pci devices. HOSTPCIDEVICE syntax is:
547
548'bus:dev.func' (hexadecimal numbers)
549
550You can us the 'lspci' command to list existing pci devices.
551
552Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
553
554Experimental: user reported problems with this option.
555EODESCR
556};
557PVE::JSONSchema::register_standard_option("pve-qm-hostpci", $hostpcidesc);
558
bae179aa
DA
559my $serialdesc = {
560 optional => 1,
ca0cef26 561 type => 'string',
2fe1a152 562 pattern => '/dev/ttyS\d+',
bae179aa 563 description => <<EODESCR,
19672434 564Map host serial devices (n is 0 to 3).
bae179aa
DA
565
566Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
567
568Experimental: user reported problems with this option.
569EODESCR
570};
bae179aa 571
1989a89c
DA
572my $paralleldesc= {
573 optional => 1,
ca0cef26 574 type => 'string',
2fe1a152 575 pattern => '/dev/parport\d+',
1989a89c 576 description => <<EODESCR,
19672434 577Map host parallel devices (n is 0 to 2).
1989a89c
DA
578
579Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
580
581Experimental: user reported problems with this option.
582EODESCR
583};
1989a89c
DA
584
585for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
586 $confdesc->{"parallel$i"} = $paralleldesc;
587}
588
bae179aa
DA
589for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
590 $confdesc->{"serial$i"} = $serialdesc;
591}
592
040b06b7
DA
593for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
594 $confdesc->{"hostpci$i"} = $hostpcidesc;
595}
1e3baf05
DM
596
597for (my $i = 0; $i < $MAX_IDE_DISKS; $i++) {
598 $drivename_hash->{"ide$i"} = 1;
599 $confdesc->{"ide$i"} = $idedesc;
600}
601
cdb0931f
DA
602for (my $i = 0; $i < $MAX_SATA_DISKS; $i++) {
603 $drivename_hash->{"sata$i"} = 1;
604 $confdesc->{"sata$i"} = $satadesc;
605}
606
1e3baf05
DM
607for (my $i = 0; $i < $MAX_SCSI_DISKS; $i++) {
608 $drivename_hash->{"scsi$i"} = 1;
609 $confdesc->{"scsi$i"} = $scsidesc ;
610}
611
612for (my $i = 0; $i < $MAX_VIRTIO_DISKS; $i++) {
613 $drivename_hash->{"virtio$i"} = 1;
614 $confdesc->{"virtio$i"} = $virtiodesc;
615}
616
617for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
618 $confdesc->{"usb$i"} = $usbdesc;
619}
620
621my $unuseddesc = {
622 optional => 1,
623 type => 'string', format => 'pve-volume-id',
624 description => "Reference to unused volumes.",
625};
626
627for (my $i = 0; $i < $MAX_UNUSED_DISKS; $i++) {
628 $confdesc->{"unused$i"} = $unuseddesc;
629}
630
631my $kvm_api_version = 0;
632
633sub kvm_version {
634
635 return $kvm_api_version if $kvm_api_version;
636
6b64503e 637 my $fh = IO::File->new("</dev/kvm") ||
1e3baf05
DM
638 return 0;
639
6b64503e 640 if (my $v = $fh->ioctl(KVM_GET_API_VERSION(), 0)) {
1e3baf05
DM
641 $kvm_api_version = $v;
642 }
643
644 $fh->close();
645
646 return $kvm_api_version;
647}
648
649my $kvm_user_version;
650
651sub kvm_user_version {
652
653 return $kvm_user_version if $kvm_user_version;
654
655 $kvm_user_version = 'unknown';
656
657 my $tmp = `kvm -help 2>/dev/null`;
19672434 658
fa7ae705 659 if ($tmp =~ m/^QEMU( PC)? emulator version (\d+\.\d+(\.\d+)?)[,\s]/) {
1e3baf05
DM
660 $kvm_user_version = $2;
661 }
662
663 return $kvm_user_version;
664
665}
666
667my $kernel_has_vhost_net = -c '/dev/vhost-net';
668
669sub disknames {
670 # order is important - used to autoselect boot disk
19672434 671 return ((map { "ide$_" } (0 .. ($MAX_IDE_DISKS - 1))),
1e3baf05 672 (map { "scsi$_" } (0 .. ($MAX_SCSI_DISKS - 1))),
cdb0931f
DA
673 (map { "virtio$_" } (0 .. ($MAX_VIRTIO_DISKS - 1))),
674 (map { "sata$_" } (0 .. ($MAX_SATA_DISKS - 1))));
1e3baf05
DM
675}
676
677sub valid_drivename {
678 my $dev = shift;
679
6b64503e 680 return defined($drivename_hash->{$dev});
1e3baf05
DM
681}
682
683sub option_exists {
684 my $key = shift;
685 return defined($confdesc->{$key});
19672434 686}
1e3baf05
DM
687
688sub nic_models {
689 return $nic_model_list;
690}
691
692sub os_list_description {
693
694 return {
695 other => 'Other',
696 wxp => 'Windows XP',
697 w2k => 'Windows 2000',
698 w2k3 =>, 'Windows 2003',
699 w2k8 => 'Windows 2008',
700 wvista => 'Windows Vista',
701 win7 => 'Windows 7',
a70ebde3 702 win8 => 'Windows 8/2012',
1e3baf05
DM
703 l24 => 'Linux 2.4',
704 l26 => 'Linux 2.6',
19672434 705 };
1e3baf05
DM
706}
707
1e3baf05
DM
708my $cdrom_path;
709
710sub get_cdrom_path {
711
712 return $cdrom_path if $cdrom_path;
713
714 return $cdrom_path = "/dev/cdrom" if -l "/dev/cdrom";
715 return $cdrom_path = "/dev/cdrom1" if -l "/dev/cdrom1";
716 return $cdrom_path = "/dev/cdrom2" if -l "/dev/cdrom2";
717}
718
719sub get_iso_path {
720 my ($storecfg, $vmid, $cdrom) = @_;
721
722 if ($cdrom eq 'cdrom') {
723 return get_cdrom_path();
724 } elsif ($cdrom eq 'none') {
725 return '';
726 } elsif ($cdrom =~ m|^/|) {
727 return $cdrom;
728 } else {
6b64503e 729 return PVE::Storage::path($storecfg, $cdrom);
1e3baf05
DM
730 }
731}
732
733# try to convert old style file names to volume IDs
734sub filename_to_volume_id {
735 my ($vmid, $file, $media) = @_;
736
737 if (!($file eq 'none' || $file eq 'cdrom' ||
738 $file =~ m|^/dev/.+| || $file =~ m/^([^:]+):(.+)$/)) {
19672434 739
1e3baf05 740 return undef if $file =~ m|/|;
19672434 741
1e3baf05
DM
742 if ($media && $media eq 'cdrom') {
743 $file = "local:iso/$file";
744 } else {
745 $file = "local:$vmid/$file";
746 }
747 }
748
749 return $file;
750}
751
752sub verify_media_type {
753 my ($opt, $vtype, $media) = @_;
754
755 return if !$media;
756
757 my $etype;
758 if ($media eq 'disk') {
a125592c 759 $etype = 'images';
1e3baf05
DM
760 } elsif ($media eq 'cdrom') {
761 $etype = 'iso';
762 } else {
763 die "internal error";
764 }
765
766 return if ($vtype eq $etype);
19672434 767
1e3baf05
DM
768 raise_param_exc({ $opt => "unexpected media type ($vtype != $etype)" });
769}
770
771sub cleanup_drive_path {
772 my ($opt, $storecfg, $drive) = @_;
773
774 # try to convert filesystem paths to volume IDs
775
776 if (($drive->{file} !~ m/^(cdrom|none)$/) &&
777 ($drive->{file} !~ m|^/dev/.+|) &&
778 ($drive->{file} !~ m/^([^:]+):(.+)$/) &&
19672434 779 ($drive->{file} !~ m/^\d+$/)) {
1e3baf05
DM
780 my ($vtype, $volid) = PVE::Storage::path_to_volume_id($storecfg, $drive->{file});
781 raise_param_exc({ $opt => "unable to associate path '$drive->{file}' to any storage"}) if !$vtype;
782 $drive->{media} = 'cdrom' if !$drive->{media} && $vtype eq 'iso';
783 verify_media_type($opt, $vtype, $drive->{media});
784 $drive->{file} = $volid;
785 }
786
787 $drive->{media} = 'cdrom' if !$drive->{media} && $drive->{file} =~ m/^(cdrom|none)$/;
788}
789
790sub create_conf_nolock {
791 my ($vmid, $settings) = @_;
792
6b64503e 793 my $filename = config_file($vmid);
1e3baf05
DM
794
795 die "configuration file '$filename' already exists\n" if -f $filename;
19672434 796
1e3baf05
DM
797 my $defaults = load_defaults();
798
799 $settings->{name} = "vm$vmid" if !$settings->{name};
800 $settings->{memory} = $defaults->{memory} if !$settings->{memory};
801
802 my $data = '';
803 foreach my $opt (keys %$settings) {
804 next if !$confdesc->{$opt};
805
806 my $value = $settings->{$opt};
807 next if !$value;
808
809 $data .= "$opt: $value\n";
810 }
811
812 PVE::Tools::file_set_contents($filename, $data);
813}
814
f36ed4f4
DM
815my $parse_size = sub {
816 my ($value) = @_;
817
9bf371a6 818 return undef if $value !~ m/^(\d+(\.\d+)?)([KMG])?$/;
f36ed4f4
DM
819 my ($size, $unit) = ($1, $3);
820 if ($unit) {
821 if ($unit eq 'K') {
822 $size = $size * 1024;
823 } elsif ($unit eq 'M') {
824 $size = $size * 1024 * 1024;
825 } elsif ($unit eq 'G') {
826 $size = $size * 1024 * 1024 * 1024;
827 }
828 }
829 return int($size);
830};
831
832my $format_size = sub {
833 my ($size) = @_;
834
835 $size = int($size);
836
837 my $kb = int($size/1024);
838 return $size if $kb*1024 != $size;
839
840 my $mb = int($kb/1024);
841 return "${kb}K" if $mb*1024 != $kb;
842
843 my $gb = int($mb/1024);
844 return "${mb}M" if $gb*1024 != $mb;
845
846 return "${gb}G";
847};
848
1e3baf05
DM
849# ideX = [volume=]volume-id[,media=d][,cyls=c,heads=h,secs=s[,trans=t]]
850# [,snapshot=on|off][,cache=on|off][,format=f][,backup=yes|no]
036e0e2b 851# [,rerror=ignore|report|stop][,werror=enospc|ignore|report|stop]
1e3baf05
DM
852# [,aio=native|threads]
853
854sub parse_drive {
855 my ($key, $data) = @_;
856
857 my $res = {};
19672434 858
1e3baf05
DM
859 # $key may be undefined - used to verify JSON parameters
860 if (!defined($key)) {
861 $res->{interface} = 'unknown'; # should not harm when used to verify parameters
862 $res->{index} = 0;
863 } elsif ($key =~ m/^([^\d]+)(\d+)$/) {
864 $res->{interface} = $1;
865 $res->{index} = $2;
866 } else {
867 return undef;
868 }
869
870 foreach my $p (split (/,/, $data)) {
871 next if $p =~ m/^\s*$/;
872
9bf371a6 873 if ($p =~ m/^(file|volume|cyls|heads|secs|trans|media|snapshot|cache|format|rerror|werror|backup|aio|bps|mbps|bps_rd|mbps_rd|bps_wr|mbps_wr|iops|iops_rd|iops_wr|size)=(.+)$/) {
1e3baf05
DM
874 my ($k, $v) = ($1, $2);
875
876 $k = 'file' if $k eq 'volume';
877
878 return undef if defined $res->{$k};
19672434 879
9bf371a6
DM
880 if ($k eq 'bps' || $k eq 'bps_rd' || $k eq 'bps_wr') {
881 return undef if !$v || $v !~ m/^\d+/;
882 $k = "m$k";
883 $v = sprintf("%.3f", $v / (1024*1024));
884 }
1e3baf05
DM
885 $res->{$k} = $v;
886 } else {
887 if (!$res->{file} && $p !~ m/=/) {
888 $res->{file} = $p;
889 } else {
890 return undef;
891 }
892 }
893 }
894
895 return undef if !$res->{file};
896
19672434 897 return undef if $res->{cache} &&
e482cec3 898 $res->{cache} !~ m/^(off|none|writethrough|writeback|unsafe|directsync)$/;
1e3baf05
DM
899 return undef if $res->{snapshot} && $res->{snapshot} !~ m/^(on|off)$/;
900 return undef if $res->{cyls} && $res->{cyls} !~ m/^\d+$/;
901 return undef if $res->{heads} && $res->{heads} !~ m/^\d+$/;
902 return undef if $res->{secs} && $res->{secs} !~ m/^\d+$/;
903 return undef if $res->{media} && $res->{media} !~ m/^(disk|cdrom)$/;
904 return undef if $res->{trans} && $res->{trans} !~ m/^(none|lba|auto)$/;
905 return undef if $res->{format} && $res->{format} !~ m/^(raw|cow|qcow|qcow2|vmdk|cloop)$/;
906 return undef if $res->{rerror} && $res->{rerror} !~ m/^(ignore|report|stop)$/;
907 return undef if $res->{werror} && $res->{werror} !~ m/^(enospc|ignore|report|stop)$/;
908 return undef if $res->{backup} && $res->{backup} !~ m/^(yes|no)$/;
909 return undef if $res->{aio} && $res->{aio} !~ m/^(native|threads)$/;
910
9bf371a6
DM
911
912 return undef if $res->{mbps_rd} && $res->{mbps};
913 return undef if $res->{mbps_wr} && $res->{mbps};
914
915 return undef if $res->{mbps} && $res->{mbps} !~ m/^\d+(\.\d+)?$/;
916 return undef if $res->{mbps_rd} && $res->{mbps_rd} !~ m/^\d+(\.\d+)?$/;
917 return undef if $res->{mbps_wr} && $res->{mbps_wr} !~ m/^\d+(\.\d+)?$/;
918
affd2f88
AD
919 return undef if $res->{iops_rd} && $res->{iops};
920 return undef if $res->{iops_wr} && $res->{iops};
affd2f88
AD
921 return undef if $res->{iops} && $res->{iops} !~ m/^\d+$/;
922 return undef if $res->{iops_rd} && $res->{iops_rd} !~ m/^\d+$/;
923 return undef if $res->{iops_wr} && $res->{iops_wr} !~ m/^\d+$/;
924
925
24afaca0 926 if ($res->{size}) {
f36ed4f4 927 return undef if !defined($res->{size} = &$parse_size($res->{size}));
24afaca0
DM
928 }
929
1e3baf05
DM
930 if ($res->{media} && ($res->{media} eq 'cdrom')) {
931 return undef if $res->{snapshot} || $res->{trans} || $res->{format};
19672434 932 return undef if $res->{heads} || $res->{secs} || $res->{cyls};
1e3baf05
DM
933 return undef if $res->{interface} eq 'virtio';
934 }
935
936 # rerror does not work with scsi drives
937 if ($res->{rerror}) {
938 return undef if $res->{interface} eq 'scsi';
939 }
940
941 return $res;
942}
943
9bf371a6 944my @qemu_drive_options = qw(heads secs cyls trans media format cache snapshot rerror werror aio iops iops_rd iops_wr);
1e3baf05
DM
945
946sub print_drive {
947 my ($vmid, $drive) = @_;
948
949 my $opts = '';
9bf371a6 950 foreach my $o (@qemu_drive_options, 'mbps', 'mbps_rd', 'mbps_wr', 'backup') {
1e3baf05
DM
951 $opts .= ",$o=$drive->{$o}" if $drive->{$o};
952 }
953
24afaca0
DM
954 if ($drive->{size}) {
955 $opts .= ",size=" . &$format_size($drive->{size});
956 }
957
1e3baf05
DM
958 return "$drive->{file}$opts";
959}
960
28ef82d3
DM
961sub scsi_inquiry {
962 my($fh, $noerr) = @_;
963
964 my $SG_IO = 0x2285;
965 my $SG_GET_VERSION_NUM = 0x2282;
966
967 my $versionbuf = "\x00" x 8;
968 my $ret = ioctl($fh, $SG_GET_VERSION_NUM, $versionbuf);
969 if (!$ret) {
970 die "scsi ioctl SG_GET_VERSION_NUM failoed - $!\n" if !$noerr;
971 return undef;
972 }
97d62eb7 973 my $version = unpack("I", $versionbuf);
28ef82d3
DM
974 if ($version < 30000) {
975 die "scsi generic interface too old\n" if !$noerr;
976 return undef;
977 }
97d62eb7 978
28ef82d3
DM
979 my $buf = "\x00" x 36;
980 my $sensebuf = "\x00" x 8;
981 my $cmd = pack("C x3 C x11", 0x12, 36);
97d62eb7 982
28ef82d3
DM
983 # see /usr/include/scsi/sg.h
984 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";
985
97d62eb7
DM
986 my $packet = pack($sg_io_hdr_t, ord('S'), -3, length($cmd),
987 length($sensebuf), 0, length($buf), $buf,
28ef82d3
DM
988 $cmd, $sensebuf, 6000);
989
990 $ret = ioctl($fh, $SG_IO, $packet);
991 if (!$ret) {
992 die "scsi ioctl SG_IO failed - $!\n" if !$noerr;
993 return undef;
994 }
97d62eb7 995
28ef82d3
DM
996 my @res = unpack($sg_io_hdr_t, $packet);
997 if ($res[17] || $res[18]) {
998 die "scsi ioctl SG_IO status error - $!\n" if !$noerr;
999 return undef;
1000 }
1001
1002 my $res = {};
1003 ($res->{device}, $res->{removable}, $res->{venodor},
1004 $res->{product}, $res->{revision}) = unpack("C C x6 A8 A16 A4", $buf);
1005
1006 return $res;
1007}
1008
1009sub path_is_scsi {
1010 my ($path) = @_;
1011
1012 my $fh = IO::File->new("+<$path") || return undef;
1013 my $res = scsi_inquiry($fh, 1);
1014 close($fh);
1015
1016 return $res;
1017}
1018
ca916ecc 1019sub print_drivedevice_full {
5bdcf937 1020 my ($storecfg, $conf, $vmid, $drive, $bridges) = @_;
ca916ecc
DA
1021
1022 my $device = '';
1023 my $maxdev = 0;
19672434 1024
ca916ecc 1025 if ($drive->{interface} eq 'virtio') {
5bdcf937 1026 my $pciaddr = print_pci_addr("$drive->{interface}$drive->{index}", $bridges);
2ed36a41
DM
1027 $device = "virtio-blk-pci,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}$pciaddr";
1028 } elsif ($drive->{interface} eq 'scsi') {
cdd20088 1029 $maxdev = ($conf->{scsihw} && $conf->{scsihw} ne 'lsi') ? 256 : 7;
2ed36a41
DM
1030 my $controller = int($drive->{index} / $maxdev);
1031 my $unit = $drive->{index} % $maxdev;
1032 my $devicetype = 'hd';
231f2e13
DA
1033 my $path = '';
1034 if (drive_is_cdrom($drive)) {
1035 $devicetype = 'cd';
1036 } else {
1037 if ($drive->{file} =~ m|^/|) {
1038 $path = $drive->{file};
1039 } else {
1040 $path = PVE::Storage::path($storecfg, $drive->{file});
1041 }
d454d040
AD
1042
1043 if($path =~ m/^iscsi\:\/\//){
1044 $devicetype = 'generic';
1045 }
1046 else {
1047 $devicetype = 'block' if path_is_scsi($path);
1048 }
231f2e13 1049 }
ca916ecc 1050
cdd20088
AD
1051 if (!$conf->{scsihw} || $conf->{scsihw} eq 'lsi'){
1052 $device = "scsi-$devicetype,bus=scsihw$controller.0,scsi-id=$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}" if !$conf->{scsihw} || $conf->{scsihw} eq 'lsi';
1053 } else {
1054 $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}";
1055 }
1056
2ed36a41
DM
1057 } elsif ($drive->{interface} eq 'ide'){
1058 $maxdev = 2;
1059 my $controller = int($drive->{index} / $maxdev);
1060 my $unit = $drive->{index} % $maxdev;
1061 my $devicetype = ($drive->{media} && $drive->{media} eq 'cdrom') ? "cd" : "hd";
1062
7ebe888a 1063 $device = "ide-$devicetype,bus=ide.$controller,unit=$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
cdb0931f
DA
1064 } elsif ($drive->{interface} eq 'sata'){
1065 my $controller = int($drive->{index} / $MAX_SATA_DISKS);
1066 my $unit = $drive->{index} % $MAX_SATA_DISKS;
1067 $device = "ide-drive,bus=ahci$controller.$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
2ed36a41
DM
1068 } elsif ($drive->{interface} eq 'usb') {
1069 die "implement me";
1070 # -device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0
1071 } else {
1072 die "unsupported interface type";
ca916ecc
DA
1073 }
1074
3b408e82
DM
1075 $device .= ",bootindex=$drive->{bootindex}" if $drive->{bootindex};
1076
ca916ecc
DA
1077 return $device;
1078}
1079
1e3baf05
DM
1080sub print_drive_full {
1081 my ($storecfg, $vmid, $drive) = @_;
1082
1083 my $opts = '';
1084 foreach my $o (@qemu_drive_options) {
3b408e82 1085 next if $o eq 'bootindex';
1e3baf05 1086 $opts .= ",$o=$drive->{$o}" if $drive->{$o};
19672434 1087 }
1e3baf05 1088
9bf371a6
DM
1089 foreach my $o (qw(bps bps_rd bps_wr)) {
1090 my $v = $drive->{"m$o"};
1091 $opts .= ",$o=" . int($v*1024*1024) if $v;
1092 }
1093
1e3baf05 1094 # use linux-aio by default (qemu default is threads)
19672434 1095 $opts .= ",aio=native" if !$drive->{aio};
1e3baf05
DM
1096
1097 my $path;
1098 my $volid = $drive->{file};
6b64503e
DM
1099 if (drive_is_cdrom($drive)) {
1100 $path = get_iso_path($storecfg, $vmid, $volid);
1e3baf05
DM
1101 } else {
1102 if ($volid =~ m|^/|) {
1103 $path = $volid;
1104 } else {
6b64503e 1105 $path = PVE::Storage::path($storecfg, $volid);
1e3baf05
DM
1106 }
1107 }
1108
ef86170e 1109 $opts .= ",cache=none" if !$drive->{cache} && !drive_is_cdrom($drive);
11490cf2 1110
1e3baf05
DM
1111 my $pathinfo = $path ? "file=$path," : '';
1112
3ebfcc86 1113 return "${pathinfo}if=none,id=drive-$drive->{interface}$drive->{index}$opts";
1e3baf05
DM
1114}
1115
cc4d6182 1116sub print_netdevice_full {
5bdcf937 1117 my ($vmid, $conf, $net, $netid, $bridges) = @_;
cc4d6182
DA
1118
1119 my $bootorder = $conf->{boot} || $confdesc->{boot}->{default};
1120
1121 my $device = $net->{model};
1122 if ($net->{model} eq 'virtio') {
1123 $device = 'virtio-net-pci';
1124 };
1125
1126 # qemu > 0.15 always try to boot from network - we disable that by
1127 # not loading the pxe rom file
1128 my $extra = ($bootorder !~ m/n/) ? "romfile=," : '';
5bdcf937 1129 my $pciaddr = print_pci_addr("$netid", $bridges);
cc4d6182
DA
1130 my $tmpstr = "$device,${extra}mac=$net->{macaddr},netdev=$netid$pciaddr,id=$netid";
1131 $tmpstr .= ",bootindex=$net->{bootindex}" if $net->{bootindex} ;
1132 return $tmpstr;
1133}
1134
1135sub print_netdev_full {
1136 my ($vmid, $conf, $net, $netid) = @_;
1137
1138 my $i = '';
1139 if ($netid =~ m/^net(\d+)$/) {
1140 $i = int($1);
1141 }
1142
1143 die "got strange net id '$i'\n" if $i >= ${MAX_NETS};
1144
1145 my $ifname = "tap${vmid}i$i";
1146
1147 # kvm uses TUNSETIFF ioctl, and that limits ifname length
1148 die "interface name '$ifname' is too long (max 15 character)\n"
1149 if length($ifname) >= 16;
1150
1151 my $vhostparam = '';
1152 $vhostparam = ',vhost=on' if $kernel_has_vhost_net && $net->{model} eq 'virtio';
1153
1154 my $vmname = $conf->{name} || "vm$vmid";
1155
1156 if ($net->{bridge}) {
1157 return "type=tap,id=$netid,ifname=${ifname},script=/var/lib/qemu-server/pve-bridge$vhostparam";
1158 } else {
1159 return "type=user,id=$netid,hostname=$vmname";
1160 }
1161}
1e3baf05
DM
1162
1163sub drive_is_cdrom {
1164 my ($drive) = @_;
1165
1166 return $drive && $drive->{media} && ($drive->{media} eq 'cdrom');
1167
1168}
1169
040b06b7
DA
1170sub parse_hostpci {
1171 my ($value) = @_;
1172
1173 return undef if !$value;
1174
1175 my $res = {};
1176
1177 if ($value =~ m/^[a-f0-9]{2}:[a-f0-9]{2}\.[a-f0-9]$/) {
1178 $res->{pciid} = $value;
1179 } else {
1180 return undef;
1181 }
1182
1183 return $res;
1184}
1185
1e3baf05
DM
1186# netX: e1000=XX:XX:XX:XX:XX:XX,bridge=vmbr0,rate=<mbps>
1187sub parse_net {
1188 my ($data) = @_;
1189
1190 my $res = {};
1191
6b64503e 1192 foreach my $kvp (split(/,/, $data)) {
1e3baf05
DM
1193
1194 if ($kvp =~ m/^(ne2k_pci|e1000|rtl8139|pcnet|virtio|ne2k_isa|i82551|i82557b|i82559er)(=([0-9a-f]{2}(:[0-9a-f]{2}){5}))?$/i) {
6b64503e 1195 my $model = lc($1);
92f0fedc 1196 my $mac = defined($3) ? uc($3) : PVE::Tools::random_ether_addr();
1e3baf05
DM
1197 $res->{model} = $model;
1198 $res->{macaddr} = $mac;
1199 } elsif ($kvp =~ m/^bridge=(\S+)$/) {
1200 $res->{bridge} = $1;
1201 } elsif ($kvp =~ m/^rate=(\d+(\.\d+)?)$/) {
1202 $res->{rate} = $1;
5070f384
DA
1203 } elsif ($kvp =~ m/^tag=(\d+)$/) {
1204 $res->{tag} = $1;
1e3baf05
DM
1205 } else {
1206 return undef;
1207 }
19672434 1208
1e3baf05
DM
1209 }
1210
1211 return undef if !$res->{model};
1212
1213 return $res;
1214}
1215
1216sub print_net {
1217 my $net = shift;
1218
1219 my $res = "$net->{model}";
1220 $res .= "=$net->{macaddr}" if $net->{macaddr};
1221 $res .= ",bridge=$net->{bridge}" if $net->{bridge};
1222 $res .= ",rate=$net->{rate}" if $net->{rate};
18744ba3 1223 $res .= ",tag=$net->{tag}" if $net->{tag};
1e3baf05
DM
1224
1225 return $res;
1226}
1227
1228sub add_random_macs {
1229 my ($settings) = @_;
1230
1231 foreach my $opt (keys %$settings) {
1232 next if $opt !~ m/^net(\d+)$/;
1233 my $net = parse_net($settings->{$opt});
1234 next if !$net;
1235 $settings->{$opt} = print_net($net);
1236 }
1237}
1238
1239sub add_unused_volume {
1858638f 1240 my ($config, $volid) = @_;
1e3baf05
DM
1241
1242 my $key;
1243 for (my $ind = $MAX_UNUSED_DISKS - 1; $ind >= 0; $ind--) {
1244 my $test = "unused$ind";
1245 if (my $vid = $config->{$test}) {
1246 return if $vid eq $volid; # do not add duplicates
1247 } else {
1248 $key = $test;
19672434 1249 }
1e3baf05
DM
1250 }
1251
1252 die "To many unused volume - please delete them first.\n" if !$key;
97d62eb7 1253
1858638f 1254 $config->{$key} = $volid;
1e3baf05 1255
1858638f 1256 return $key;
1e3baf05
DM
1257}
1258
1e3baf05
DM
1259PVE::JSONSchema::register_format('pve-qm-bootdisk', \&verify_bootdisk);
1260sub verify_bootdisk {
1261 my ($value, $noerr) = @_;
1262
19672434 1263 return $value if valid_drivename($value);
1e3baf05
DM
1264
1265 return undef if $noerr;
1266
1267 die "invalid boot disk '$value'\n";
1268}
1269
1270PVE::JSONSchema::register_format('pve-qm-net', \&verify_net);
1271sub verify_net {
1272 my ($value, $noerr) = @_;
1273
1274 return $value if parse_net($value);
1275
1276 return undef if $noerr;
19672434 1277
1e3baf05
DM
1278 die "unable to parse network options\n";
1279}
1280
1281PVE::JSONSchema::register_format('pve-qm-drive', \&verify_drive);
1282sub verify_drive {
1283 my ($value, $noerr) = @_;
1284
6b64503e 1285 return $value if parse_drive(undef, $value);
1e3baf05
DM
1286
1287 return undef if $noerr;
19672434 1288
1e3baf05
DM
1289 die "unable to parse drive options\n";
1290}
1291
1292PVE::JSONSchema::register_format('pve-qm-hostpci', \&verify_hostpci);
1293sub verify_hostpci {
1294 my ($value, $noerr) = @_;
1295
040b06b7
DA
1296 return $value if parse_hostpci($value);
1297
1298 return undef if $noerr;
1299
1300 die "unable to parse pci id\n";
1e3baf05
DM
1301}
1302
0ea9541d
DM
1303PVE::JSONSchema::register_format('pve-qm-watchdog', \&verify_watchdog);
1304sub verify_watchdog {
1305 my ($value, $noerr) = @_;
1306
1307 return $value if parse_watchdog($value);
1308
1309 return undef if $noerr;
19672434 1310
0ea9541d
DM
1311 die "unable to parse watchdog options\n";
1312}
1313
1314sub parse_watchdog {
1315 my ($value) = @_;
1316
1317 return undef if !$value;
1318
1319 my $res = {};
1320
6b64503e 1321 foreach my $p (split(/,/, $value)) {
0ea9541d
DM
1322 next if $p =~ m/^\s*$/;
1323
1324 if ($p =~ m/^(model=)?(i6300esb|ib700)$/) {
1325 $res->{model} = $2;
1326 } elsif ($p =~ m/^(action=)?(reset|shutdown|poweroff|pause|debug|none)$/) {
1327 $res->{action} = $2;
1328 } else {
1329 return undef;
1330 }
1331 }
1332
1333 return $res;
1334}
1335
59411c4e
DM
1336PVE::JSONSchema::register_format('pve-qm-startup', \&verify_startup);
1337sub verify_startup {
1338 my ($value, $noerr) = @_;
1339
1340 return $value if parse_startup($value);
1341
1342 return undef if $noerr;
1343
1344 die "unable to parse startup options\n";
1345}
1346
1347sub parse_startup {
1348 my ($value) = @_;
1349
1350 return undef if !$value;
1351
1352 my $res = {};
1353
1354 foreach my $p (split(/,/, $value)) {
1355 next if $p =~ m/^\s*$/;
1356
1357 if ($p =~ m/^(order=)?(\d+)$/) {
1358 $res->{order} = $2;
1359 } elsif ($p =~ m/^up=(\d+)$/) {
1360 $res->{up} = $1;
1361 } elsif ($p =~ m/^down=(\d+)$/) {
1362 $res->{down} = $1;
1363 } else {
1364 return undef;
1365 }
1366 }
1367
1368 return $res;
1369}
1370
1e3baf05
DM
1371sub parse_usb_device {
1372 my ($value) = @_;
1373
1374 return undef if !$value;
1375
6b64503e 1376 my @dl = split(/,/, $value);
1e3baf05
DM
1377 my $found;
1378
1379 my $res = {};
1380 foreach my $v (@dl) {
036e0e2b 1381 if ($v =~ m/^host=(0x)?([0-9A-Fa-f]{4}):(0x)?([0-9A-Fa-f]{4})$/) {
1e3baf05 1382 $found = 1;
036e0e2b
DM
1383 $res->{vendorid} = $2;
1384 $res->{productid} = $4;
1e3baf05
DM
1385 } elsif ($v =~ m/^host=(\d+)\-(\d+(\.\d+)*)$/) {
1386 $found = 1;
1387 $res->{hostbus} = $1;
1388 $res->{hostport} = $2;
1389 } else {
1390 return undef;
1391 }
1392 }
1393 return undef if !$found;
1394
1395 return $res;
1396}
19672434 1397
1e3baf05
DM
1398PVE::JSONSchema::register_format('pve-qm-usb-device', \&verify_usb_device);
1399sub verify_usb_device {
1400 my ($value, $noerr) = @_;
1401
1402 return $value if parse_usb_device($value);
1403
1404 return undef if $noerr;
19672434 1405
1e3baf05
DM
1406 die "unable to parse usb device\n";
1407}
1408
1e3baf05
DM
1409# add JSON properties for create and set function
1410sub json_config_properties {
1411 my $prop = shift;
1412
1413 foreach my $opt (keys %$confdesc) {
18bfb361 1414 next if $opt eq 'parent' || $opt eq 'snaptime' || $opt eq 'vmstate';
1e3baf05
DM
1415 $prop->{$opt} = $confdesc->{$opt};
1416 }
1417
1418 return $prop;
1419}
1420
1421sub check_type {
1422 my ($key, $value) = @_;
1423
1424 die "unknown setting '$key'\n" if !$confdesc->{$key};
1425
1426 my $type = $confdesc->{$key}->{type};
1427
6b64503e 1428 if (!defined($value)) {
1e3baf05
DM
1429 die "got undefined value\n";
1430 }
1431
1432 if ($value =~ m/[\n\r]/) {
1433 die "property contains a line feed\n";
1434 }
1435
1436 if ($type eq 'boolean') {
19672434
DM
1437 return 1 if ($value eq '1') || ($value =~ m/^(on|yes|true)$/i);
1438 return 0 if ($value eq '0') || ($value =~ m/^(off|no|false)$/i);
1439 die "type check ('boolean') failed - got '$value'\n";
1e3baf05
DM
1440 } elsif ($type eq 'integer') {
1441 return int($1) if $value =~ m/^(\d+)$/;
1442 die "type check ('integer') failed - got '$value'\n";
04432191
AD
1443 } elsif ($type eq 'number') {
1444 return $value if $value =~ m/^(\d+)(\.\d+)?$/;
1445 die "type check ('number') failed - got '$value'\n";
1e3baf05
DM
1446 } elsif ($type eq 'string') {
1447 if (my $fmt = $confdesc->{$key}->{format}) {
1448 if ($fmt eq 'pve-qm-drive') {
1449 # special case - we need to pass $key to parse_drive()
6b64503e 1450 my $drive = parse_drive($key, $value);
1e3baf05
DM
1451 return $value if $drive;
1452 die "unable to parse drive options\n";
1453 }
1454 PVE::JSONSchema::check_format($fmt, $value);
19672434
DM
1455 return $value;
1456 }
1e3baf05 1457 $value =~ s/^\"(.*)\"$/$1/;
19672434 1458 return $value;
1e3baf05
DM
1459 } else {
1460 die "internal error"
1461 }
1462}
1463
191435c6
DM
1464sub lock_config_full {
1465 my ($vmid, $timeout, $code, @param) = @_;
1e3baf05 1466
6b64503e 1467 my $filename = config_file_lock($vmid);
1e3baf05 1468
191435c6 1469 my $res = lock_file($filename, $timeout, $code, @param);
1e3baf05
DM
1470
1471 die $@ if $@;
5fdbe4f0
DM
1472
1473 return $res;
1e3baf05
DM
1474}
1475
191435c6
DM
1476sub lock_config {
1477 my ($vmid, $code, @param) = @_;
1478
1479 return lock_config_full($vmid, 10, $code, @param);
1480}
1481
1e3baf05 1482sub cfs_config_path {
a78ccf26 1483 my ($vmid, $node) = @_;
1e3baf05 1484
a78ccf26
DM
1485 $node = $nodename if !$node;
1486 return "nodes/$node/qemu-server/$vmid.conf";
1e3baf05
DM
1487}
1488
040b06b7
DA
1489sub check_iommu_support{
1490 #fixme : need to check IOMMU support
1491 #http://www.linux-kvm.org/page/How_to_assign_devices_with_VT-d_in_KVM
1492
1493 my $iommu=1;
1494 return $iommu;
1495
1496}
1497
1e3baf05 1498sub config_file {
a78ccf26 1499 my ($vmid, $node) = @_;
1e3baf05 1500
a78ccf26 1501 my $cfspath = cfs_config_path($vmid, $node);
1e3baf05
DM
1502 return "/etc/pve/$cfspath";
1503}
1504
1505sub config_file_lock {
1506 my ($vmid) = @_;
1507
1508 return "$lock_dir/lock-$vmid.conf";
1509}
1510
1511sub touch_config {
1512 my ($vmid) = @_;
1513
6b64503e 1514 my $conf = config_file($vmid);
1e3baf05
DM
1515 utime undef, undef, $conf;
1516}
1517
1e3baf05 1518sub destroy_vm {
a6af7b3e 1519 my ($storecfg, $vmid, $keep_empty_config) = @_;
1e3baf05 1520
6b64503e 1521 my $conffile = config_file($vmid);
1e3baf05 1522
6b64503e 1523 my $conf = load_config($vmid);
1e3baf05 1524
6b64503e 1525 check_lock($conf);
1e3baf05 1526
19672434 1527 # only remove disks owned by this VM
1e3baf05
DM
1528 foreach_drive($conf, sub {
1529 my ($ds, $drive) = @_;
1530
6b64503e 1531 return if drive_is_cdrom($drive);
1e3baf05
DM
1532
1533 my $volid = $drive->{file};
ed221350 1534
ff1a2432 1535 return if !$volid || $volid =~ m|^/|;
1e3baf05 1536
6b64503e 1537 my ($path, $owner) = PVE::Storage::path($storecfg, $volid);
ff1a2432 1538 return if !$path || !$owner || ($owner != $vmid);
1e3baf05 1539
6b64503e 1540 PVE::Storage::vdisk_free($storecfg, $volid);
1e3baf05 1541 });
19672434 1542
a6af7b3e 1543 if ($keep_empty_config) {
9c502e26 1544 PVE::Tools::file_set_contents($conffile, "memory: 128\n");
a6af7b3e
DM
1545 } else {
1546 unlink $conffile;
1547 }
1e3baf05
DM
1548
1549 # also remove unused disk
1550 eval {
6b64503e 1551 my $dl = PVE::Storage::vdisk_list($storecfg, undef, $vmid);
1e3baf05
DM
1552
1553 eval {
6b64503e 1554 PVE::Storage::foreach_volid($dl, sub {
1e3baf05 1555 my ($volid, $sid, $volname, $d) = @_;
6b64503e 1556 PVE::Storage::vdisk_free($storecfg, $volid);
1e3baf05
DM
1557 });
1558 };
1559 warn $@ if $@;
1560
1561 };
1562 warn $@ if $@;
1563}
1564
1e3baf05 1565sub load_config {
7e8dcf2c 1566 my ($vmid, $node) = @_;
1e3baf05 1567
7e8dcf2c 1568 my $cfspath = cfs_config_path($vmid, $node);
1e3baf05
DM
1569
1570 my $conf = PVE::Cluster::cfs_read_file($cfspath);
1571
1572 die "no such VM ('$vmid')\n" if !defined($conf);
1573
1574 return $conf;
19672434 1575}
1e3baf05
DM
1576
1577sub parse_vm_config {
1578 my ($filename, $raw) = @_;
1579
1580 return undef if !defined($raw);
1581
554ac7e7 1582 my $res = {
fc1ddcdc 1583 digest => Digest::SHA::sha1_hex($raw),
0d18dcfc 1584 snapshots => {},
554ac7e7 1585 };
1e3baf05 1586
19672434 1587 $filename =~ m|/qemu-server/(\d+)\.conf$|
1e3baf05
DM
1588 || die "got strange filename '$filename'";
1589
1590 my $vmid = $1;
1591
0d18dcfc 1592 my $conf = $res;
0581fe4f
DM
1593 my $descr = '';
1594
0d18dcfc
DM
1595 my @lines = split(/\n/, $raw);
1596 foreach my $line (@lines) {
1e3baf05 1597 next if $line =~ m/^\s*$/;
0d18dcfc
DM
1598
1599 if ($line =~ m/^\[([a-z][a-z0-9_\-]+)\]\s*$/i) {
1600 my $snapname = $1;
1601 $conf->{description} = $descr if $descr;
782f4f75 1602 $descr = '';
0d18dcfc
DM
1603 $conf = $res->{snapshots}->{$snapname} = {};
1604 next;
1605 }
1e3baf05 1606
0581fe4f
DM
1607 if ($line =~ m/^\#(.*)\s*$/) {
1608 $descr .= PVE::Tools::decode_text($1) . "\n";
1609 next;
1610 }
1611
1e3baf05 1612 if ($line =~ m/^(description):\s*(.*\S)\s*$/) {
0581fe4f 1613 $descr .= PVE::Tools::decode_text($2);
0d18dcfc
DM
1614 } elsif ($line =~ m/snapstate:\s*(prepare|delete)\s*$/) {
1615 $conf->{snapstate} = $1;
1e3baf05
DM
1616 } elsif ($line =~ m/^(args):\s*(.*\S)\s*$/) {
1617 my $key = $1;
1618 my $value = $2;
0d18dcfc 1619 $conf->{$key} = $value;
1e3baf05
DM
1620 } elsif ($line =~ m/^([a-z][a-z_]*\d*):\s*(\S+)\s*$/) {
1621 my $key = $1;
1622 my $value = $2;
1623 eval { $value = check_type($key, $value); };
1624 if ($@) {
1625 warn "vm $vmid - unable to parse value of '$key' - $@";
1626 } else {
1627 my $fmt = $confdesc->{$key}->{format};
1628 if ($fmt && $fmt eq 'pve-qm-drive') {
1629 my $v = parse_drive($key, $value);
1630 if (my $volid = filename_to_volume_id($vmid, $v->{file}, $v->{media})) {
1631 $v->{file} = $volid;
6b64503e 1632 $value = print_drive($vmid, $v);
1e3baf05
DM
1633 } else {
1634 warn "vm $vmid - unable to parse value of '$key'\n";
1635 next;
1636 }
1637 }
1638
1639 if ($key eq 'cdrom') {
0d18dcfc 1640 $conf->{ide2} = $value;
1e3baf05 1641 } else {
0d18dcfc 1642 $conf->{$key} = $value;
1e3baf05
DM
1643 }
1644 }
1645 }
1646 }
1647
0d18dcfc 1648 $conf->{description} = $descr if $descr;
0581fe4f 1649
0d18dcfc 1650 delete $res->{snapstate}; # just to be sure
1e3baf05
DM
1651
1652 return $res;
1653}
1654
1858638f
DM
1655sub write_vm_config {
1656 my ($filename, $conf) = @_;
1e3baf05 1657
0d18dcfc
DM
1658 delete $conf->{snapstate}; # just to be sure
1659
1858638f
DM
1660 if ($conf->{cdrom}) {
1661 die "option ide2 conflicts with cdrom\n" if $conf->{ide2};
1662 $conf->{ide2} = $conf->{cdrom};
1663 delete $conf->{cdrom};
1664 }
1e3baf05
DM
1665
1666 # we do not use 'smp' any longer
1858638f
DM
1667 if ($conf->{sockets}) {
1668 delete $conf->{smp};
1669 } elsif ($conf->{smp}) {
1670 $conf->{sockets} = $conf->{smp};
1671 delete $conf->{cores};
1672 delete $conf->{smp};
1e3baf05
DM
1673 }
1674
ee2f90b1 1675 my $used_volids = {};
0d18dcfc 1676
ee2f90b1
DM
1677 my $cleanup_config = sub {
1678 my ($cref) = @_;
1858638f 1679
ee2f90b1
DM
1680 foreach my $key (keys %$cref) {
1681 next if $key eq 'digest' || $key eq 'description' || $key eq 'snapshots' ||
1682 $key eq 'snapstate';
1683 my $value = $cref->{$key};
1684 eval { $value = check_type($key, $value); };
1685 die "unable to parse value of '$key' - $@" if $@;
1858638f 1686
ee2f90b1
DM
1687 $cref->{$key} = $value;
1688
1689 if (valid_drivename($key)) {
ed221350 1690 my $drive = parse_drive($key, $value);
ee2f90b1
DM
1691 $used_volids->{$drive->{file}} = 1 if $drive && $drive->{file};
1692 }
1e3baf05 1693 }
ee2f90b1
DM
1694 };
1695
1696 &$cleanup_config($conf);
1697 foreach my $snapname (keys %{$conf->{snapshots}}) {
1698 &$cleanup_config($conf->{snapshots}->{$snapname});
1e3baf05
DM
1699 }
1700
1858638f
DM
1701 # remove 'unusedX' settings if we re-add a volume
1702 foreach my $key (keys %$conf) {
1703 my $value = $conf->{$key};
ee2f90b1 1704 if ($key =~ m/^unused/ && $used_volids->{$value}) {
1858638f 1705 delete $conf->{$key};
1e3baf05 1706 }
1858638f 1707 }
ee2f90b1 1708
0d18dcfc
DM
1709 my $generate_raw_config = sub {
1710 my ($conf) = @_;
0581fe4f 1711
0d18dcfc
DM
1712 my $raw = '';
1713
1714 # add description as comment to top of file
1715 my $descr = $conf->{description} || '';
1716 foreach my $cl (split(/\n/, $descr)) {
1717 $raw .= '#' . PVE::Tools::encode_text($cl) . "\n";
1718 }
1719
1720 foreach my $key (sort keys %$conf) {
1721 next if $key eq 'digest' || $key eq 'description' || $key eq 'snapshots';
1722 $raw .= "$key: $conf->{$key}\n";
1723 }
1724 return $raw;
1725 };
0581fe4f 1726
0d18dcfc
DM
1727 my $raw = &$generate_raw_config($conf);
1728 foreach my $snapname (sort keys %{$conf->{snapshots}}) {
1729 $raw .= "\n[$snapname]\n";
1730 $raw .= &$generate_raw_config($conf->{snapshots}->{$snapname});
1858638f 1731 }
1e3baf05 1732
1858638f
DM
1733 return $raw;
1734}
1e3baf05 1735
1858638f
DM
1736sub update_config_nolock {
1737 my ($vmid, $conf, $skiplock) = @_;
1e3baf05 1738
1858638f 1739 check_lock($conf) if !$skiplock;
97d62eb7 1740
1858638f 1741 my $cfspath = cfs_config_path($vmid);
1e3baf05 1742
1858638f
DM
1743 PVE::Cluster::cfs_write_file($cfspath, $conf);
1744}
1e3baf05 1745
1858638f
DM
1746sub update_config {
1747 my ($vmid, $conf, $skiplock) = @_;
1e3baf05 1748
1858638f 1749 lock_config($vmid, &update_config_nolock, $conf, $skiplock);
1e3baf05
DM
1750}
1751
19672434 1752sub load_defaults {
1e3baf05
DM
1753
1754 my $res = {};
1755
1756 # we use static defaults from our JSON schema configuration
1757 foreach my $key (keys %$confdesc) {
1758 if (defined(my $default = $confdesc->{$key}->{default})) {
1759 $res->{$key} = $default;
1760 }
1761 }
19672434 1762
1e3baf05
DM
1763 my $conf = PVE::Cluster::cfs_read_file('datacenter.cfg');
1764 $res->{keyboard} = $conf->{keyboard} if $conf->{keyboard};
1765
1766 return $res;
1767}
1768
1769sub config_list {
1770 my $vmlist = PVE::Cluster::get_vmlist();
1771 my $res = {};
1772 return $res if !$vmlist || !$vmlist->{ids};
1773 my $ids = $vmlist->{ids};
1774
1e3baf05
DM
1775 foreach my $vmid (keys %$ids) {
1776 my $d = $ids->{$vmid};
1777 next if !$d->{node} || $d->{node} ne $nodename;
5ee957cc 1778 next if !$d->{type} || $d->{type} ne 'qemu';
1e3baf05
DM
1779 $res->{$vmid}->{exists} = 1;
1780 }
1781 return $res;
1782}
1783
64e13401
DM
1784# test if VM uses local resources (to prevent migration)
1785sub check_local_resources {
1786 my ($conf, $noerr) = @_;
1787
1788 my $loc_res = 0;
19672434 1789
e0ab7331
DM
1790 $loc_res = 1 if $conf->{hostusb}; # old syntax
1791 $loc_res = 1 if $conf->{hostpci}; # old syntax
64e13401 1792
0d29ab3b 1793 foreach my $k (keys %$conf) {
2fe1a152 1794 $loc_res = 1 if $k =~ m/^(usb|hostpci|serial|parallel)\d+$/;
64e13401
DM
1795 }
1796
1797 die "VM uses local resources\n" if $loc_res && !$noerr;
1798
1799 return $loc_res;
1800}
1801
47152e2e
DM
1802# check is used storages are available on all nodes (use by migrate)
1803sub check_storage_availability {
1804 my ($storecfg, $conf, $node) = @_;
1805
1806 foreach_drive($conf, sub {
1807 my ($ds, $drive) = @_;
1808
1809 my $volid = $drive->{file};
1810 return if !$volid;
1811
1812 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1813 return if !$sid;
1814
1815 # check if storage is available on both nodes
1816 my $scfg = PVE::Storage::storage_check_node($storecfg, $sid);
1817 PVE::Storage::storage_check_node($storecfg, $sid, $node);
1818 });
1819}
1820
1e3baf05
DM
1821sub check_lock {
1822 my ($conf) = @_;
1823
1824 die "VM is locked ($conf->{lock})\n" if $conf->{lock};
1825}
1826
1827sub check_cmdline {
1828 my ($pidfile, $pid) = @_;
1829
6b64503e
DM
1830 my $fh = IO::File->new("/proc/$pid/cmdline", "r");
1831 if (defined($fh)) {
1e3baf05
DM
1832 my $line = <$fh>;
1833 $fh->close;
1834 return undef if !$line;
6b64503e 1835 my @param = split(/\0/, $line);
1e3baf05
DM
1836
1837 my $cmd = $param[0];
06094efd 1838 return if !$cmd || ($cmd !~ m|kvm$| && $cmd !~ m|qemu-system-x86_64$|);
1e3baf05
DM
1839
1840 for (my $i = 0; $i < scalar (@param); $i++) {
1841 my $p = $param[$i];
1842 next if !$p;
1843 if (($p eq '-pidfile') || ($p eq '--pidfile')) {
1844 my $p = $param[$i+1];
1845 return 1 if $p && ($p eq $pidfile);
1846 return undef;
1847 }
1848 }
1849 }
1850 return undef;
1851}
1852
1853sub check_running {
7e8dcf2c 1854 my ($vmid, $nocheck, $node) = @_;
1e3baf05 1855
7e8dcf2c 1856 my $filename = config_file($vmid, $node);
1e3baf05
DM
1857
1858 die "unable to find configuration file for VM $vmid - no such machine\n"
e6c3b671 1859 if !$nocheck && ! -f $filename;
1e3baf05 1860
e6c3b671 1861 my $pidfile = pidfile_name($vmid);
1e3baf05 1862
e6c3b671
DM
1863 if (my $fd = IO::File->new("<$pidfile")) {
1864 my $st = stat($fd);
1e3baf05 1865 my $line = <$fd>;
6b64503e 1866 close($fd);
1e3baf05
DM
1867
1868 my $mtime = $st->mtime;
1869 if ($mtime > time()) {
1870 warn "file '$filename' modified in future\n";
1871 }
1872
1873 if ($line =~ m/^(\d+)$/) {
1874 my $pid = $1;
e6c3b671
DM
1875 if (check_cmdline($pidfile, $pid)) {
1876 if (my $pinfo = PVE::ProcFSTools::check_process_running($pid)) {
1877 return $pid;
1878 }
1879 }
1e3baf05
DM
1880 }
1881 }
1882
1883 return undef;
1884}
1885
1886sub vzlist {
19672434 1887
1e3baf05
DM
1888 my $vzlist = config_list();
1889
6b64503e 1890 my $fd = IO::Dir->new($var_run_tmpdir) || return $vzlist;
1e3baf05 1891
19672434 1892 while (defined(my $de = $fd->read)) {
1e3baf05
DM
1893 next if $de !~ m/^(\d+)\.pid$/;
1894 my $vmid = $1;
6b64503e
DM
1895 next if !defined($vzlist->{$vmid});
1896 if (my $pid = check_running($vmid)) {
1e3baf05
DM
1897 $vzlist->{$vmid}->{pid} = $pid;
1898 }
1899 }
1900
1901 return $vzlist;
1902}
1903
1e3baf05
DM
1904sub disksize {
1905 my ($storecfg, $conf) = @_;
1906
1907 my $bootdisk = $conf->{bootdisk};
1908 return undef if !$bootdisk;
1909 return undef if !valid_drivename($bootdisk);
1910
1911 return undef if !$conf->{$bootdisk};
1912
1913 my $drive = parse_drive($bootdisk, $conf->{$bootdisk});
1914 return undef if !defined($drive);
1915
1916 return undef if drive_is_cdrom($drive);
1917
1918 my $volid = $drive->{file};
1919 return undef if !$volid;
1920
24afaca0 1921 return $drive->{size};
1e3baf05
DM
1922}
1923
1924my $last_proc_pid_stat;
1925
03a33f30
DM
1926# get VM status information
1927# This must be fast and should not block ($full == false)
1928# We only query KVM using QMP if $full == true (this can be slow)
1e3baf05 1929sub vmstatus {
03a33f30 1930 my ($opt_vmid, $full) = @_;
1e3baf05
DM
1931
1932 my $res = {};
1933
19672434 1934 my $storecfg = PVE::Storage::config();
1e3baf05
DM
1935
1936 my $list = vzlist();
694fcad4 1937 my ($uptime) = PVE::ProcFSTools::read_proc_uptime(1);
1e3baf05 1938
ae4915a2
DM
1939 my $cpucount = $cpuinfo->{cpus} || 1;
1940
1e3baf05
DM
1941 foreach my $vmid (keys %$list) {
1942 next if $opt_vmid && ($vmid ne $opt_vmid);
1943
1944 my $cfspath = cfs_config_path($vmid);
1945 my $conf = PVE::Cluster::cfs_read_file($cfspath) || {};
1946
1947 my $d = {};
1948 $d->{pid} = $list->{$vmid}->{pid};
1949
1950 # fixme: better status?
1951 $d->{status} = $list->{$vmid}->{pid} ? 'running' : 'stopped';
1952
af990afe
DM
1953 my $size = disksize($storecfg, $conf);
1954 if (defined($size)) {
1955 $d->{disk} = 0; # no info available
1e3baf05
DM
1956 $d->{maxdisk} = $size;
1957 } else {
1958 $d->{disk} = 0;
1959 $d->{maxdisk} = 0;
1960 }
1961
1962 $d->{cpus} = ($conf->{sockets} || 1) * ($conf->{cores} || 1);
ae4915a2
DM
1963 $d->{cpus} = $cpucount if $d->{cpus} > $cpucount;
1964
1e3baf05 1965 $d->{name} = $conf->{name} || "VM $vmid";
19672434 1966 $d->{maxmem} = $conf->{memory} ? $conf->{memory}*(1024*1024) : 0;
1e3baf05 1967
8b1accf7 1968 if ($conf->{balloon}) {
4bdb0514 1969 $d->{balloon_min} = $conf->{balloon}*(1024*1024);
074e01c8 1970 $d->{shares} = defined($conf->{shares}) ? $conf->{shares} : 1000;
8b1accf7
DM
1971 }
1972
1e3baf05
DM
1973 $d->{uptime} = 0;
1974 $d->{cpu} = 0;
1e3baf05
DM
1975 $d->{mem} = 0;
1976
1977 $d->{netout} = 0;
1978 $d->{netin} = 0;
1979
1980 $d->{diskread} = 0;
1981 $d->{diskwrite} = 0;
1982
4d8c851b
AD
1983 $d->{template} = is_template($conf);
1984
1e3baf05
DM
1985 $res->{$vmid} = $d;
1986 }
1987
1988 my $netdev = PVE::ProcFSTools::read_proc_net_dev();
1989 foreach my $dev (keys %$netdev) {
1990 next if $dev !~ m/^tap([1-9]\d*)i/;
1991 my $vmid = $1;
1992 my $d = $res->{$vmid};
1993 next if !$d;
19672434 1994
1e3baf05
DM
1995 $d->{netout} += $netdev->{$dev}->{receive};
1996 $d->{netin} += $netdev->{$dev}->{transmit};
1997 }
1998
1e3baf05
DM
1999 my $ctime = gettimeofday;
2000
2001 foreach my $vmid (keys %$list) {
2002
2003 my $d = $res->{$vmid};
2004 my $pid = $d->{pid};
2005 next if !$pid;
2006
694fcad4
DM
2007 my $pstat = PVE::ProcFSTools::read_proc_pid_stat($pid);
2008 next if !$pstat; # not running
19672434 2009
694fcad4 2010 my $used = $pstat->{utime} + $pstat->{stime};
1e3baf05 2011
694fcad4 2012 $d->{uptime} = int(($uptime - $pstat->{starttime})/$cpuinfo->{user_hz});
1e3baf05 2013
694fcad4 2014 if ($pstat->{vsize}) {
6b64503e 2015 $d->{mem} = int(($pstat->{rss}/$pstat->{vsize})*$d->{maxmem});
1e3baf05
DM
2016 }
2017
2018 my $old = $last_proc_pid_stat->{$pid};
2019 if (!$old) {
19672434
DM
2020 $last_proc_pid_stat->{$pid} = {
2021 time => $ctime,
1e3baf05
DM
2022 used => $used,
2023 cpu => 0,
1e3baf05
DM
2024 };
2025 next;
2026 }
2027
7f0b5beb 2028 my $dtime = ($ctime - $old->{time}) * $cpucount * $cpuinfo->{user_hz};
1e3baf05
DM
2029
2030 if ($dtime > 1000) {
2031 my $dutime = $used - $old->{used};
2032
ae4915a2 2033 $d->{cpu} = (($dutime/$dtime)* $cpucount) / $d->{cpus};
1e3baf05 2034 $last_proc_pid_stat->{$pid} = {
19672434 2035 time => $ctime,
1e3baf05
DM
2036 used => $used,
2037 cpu => $d->{cpu},
1e3baf05
DM
2038 };
2039 } else {
2040 $d->{cpu} = $old->{cpu};
1e3baf05
DM
2041 }
2042 }
2043
f5eb281a 2044 return $res if !$full;
03a33f30
DM
2045
2046 my $qmpclient = PVE::QMPClient->new();
2047
64e7fcf2
DM
2048 my $ballooncb = sub {
2049 my ($vmid, $resp) = @_;
2050
2051 my $info = $resp->{'return'};
2052 return if !$info->{max_mem};
2053
2054 my $d = $res->{$vmid};
2055
2056 # use memory assigned to VM
2057 $d->{maxmem} = $info->{max_mem};
2058 $d->{balloon} = $info->{actual};
2059
2060 if (defined($info->{total_mem}) && defined($info->{free_mem})) {
2061 $d->{mem} = $info->{total_mem} - $info->{free_mem};
2062 $d->{freemem} = $info->{free_mem};
2063 }
2064
2065 };
2066
03a33f30
DM
2067 my $blockstatscb = sub {
2068 my ($vmid, $resp) = @_;
2069 my $data = $resp->{'return'} || [];
2070 my $totalrdbytes = 0;
2071 my $totalwrbytes = 0;
2072 for my $blockstat (@$data) {
2073 $totalrdbytes = $totalrdbytes + $blockstat->{stats}->{rd_bytes};
2074 $totalwrbytes = $totalwrbytes + $blockstat->{stats}->{wr_bytes};
2075 }
2076 $res->{$vmid}->{diskread} = $totalrdbytes;
2077 $res->{$vmid}->{diskwrite} = $totalwrbytes;
2078 };
2079
2080 my $statuscb = sub {
2081 my ($vmid, $resp) = @_;
64e7fcf2 2082
03a33f30 2083 $qmpclient->queue_cmd($vmid, $blockstatscb, 'query-blockstats');
64e7fcf2
DM
2084 # this fails if ballon driver is not loaded, so this must be
2085 # the last commnand (following command are aborted if this fails).
2086 $qmpclient->queue_cmd($vmid, $ballooncb, 'query-balloon');
03a33f30
DM
2087
2088 my $status = 'unknown';
2089 if (!defined($status = $resp->{'return'}->{status})) {
2090 warn "unable to get VM status\n";
2091 return;
2092 }
2093
2094 $res->{$vmid}->{qmpstatus} = $resp->{'return'}->{status};
2095 };
2096
2097 foreach my $vmid (keys %$list) {
2098 next if $opt_vmid && ($vmid ne $opt_vmid);
2099 next if !$res->{$vmid}->{pid}; # not running
2100 $qmpclient->queue_cmd($vmid, $statuscb, 'query-status');
2101 }
2102
2103 $qmpclient->queue_execute();
2104
2105 foreach my $vmid (keys %$list) {
2106 next if $opt_vmid && ($vmid ne $opt_vmid);
2107 $res->{$vmid}->{qmpstatus} = $res->{$vmid}->{status} if !$res->{$vmid}->{qmpstatus};
2108 }
2109
1e3baf05
DM
2110 return $res;
2111}
2112
2113sub foreach_drive {
2114 my ($conf, $func) = @_;
2115
2116 foreach my $ds (keys %$conf) {
2117 next if !valid_drivename($ds);
2118
6b64503e 2119 my $drive = parse_drive($ds, $conf->{$ds});
1e3baf05
DM
2120 next if !$drive;
2121
2122 &$func($ds, $drive);
2123 }
2124}
2125
d5769dc2
DM
2126sub foreach_volid {
2127 my ($conf, $func) = @_;
2128
2129 my $volhash = {};
2130
2131 my $test_volid = sub {
2132 my ($volid, $is_cdrom) = @_;
2133
2134 return if !$volid;
2135
2136 $volhash->{$volid} = $is_cdrom || 0;
2137 };
2138
ed221350 2139 foreach_drive($conf, sub {
d5769dc2
DM
2140 my ($ds, $drive) = @_;
2141 &$test_volid($drive->{file}, drive_is_cdrom($drive));
2142 });
2143
2144 foreach my $snapname (keys %{$conf->{snapshots}}) {
2145 my $snap = $conf->{snapshots}->{$snapname};
2146 &$test_volid($snap->{vmstate}, 0);
ed221350 2147 foreach_drive($snap, sub {
d5769dc2
DM
2148 my ($ds, $drive) = @_;
2149 &$test_volid($drive->{file}, drive_is_cdrom($drive));
2150 });
2151 }
2152
2153 foreach my $volid (keys %$volhash) {
2154 &$func($volid, $volhash->{$volid});
2155 }
2156}
2157
1e3baf05 2158sub config_to_command {
6c47d546 2159 my ($storecfg, $vmid, $conf, $defaults) = @_;
1e3baf05
DM
2160
2161 my $cmd = [];
8c559505
DM
2162 my $globalFlags = [];
2163 my $machineFlags = [];
2164 my $rtcFlags = [];
5bdcf937 2165 my $devices = [];
b78ebef7 2166 my $pciaddr = '';
5bdcf937 2167 my $bridges = {};
1e3baf05
DM
2168 my $kvmver = kvm_user_version();
2169 my $vernum = 0; # unknown
a3c52213
DM
2170 if ($kvmver =~ m/^(\d+)\.(\d+)$/) {
2171 $vernum = $1*1000000+$2*1000;
2172 } elsif ($kvmver =~ m/^(\d+)\.(\d+)\.(\d+)$/) {
1e3baf05
DM
2173 $vernum = $1*1000000+$2*1000+$3;
2174 }
2175
a3c52213 2176 die "detected old qemu-kvm binary ($kvmver)\n" if $vernum < 15000;
1e3baf05
DM
2177
2178 my $have_ovz = -f '/proc/vz/vestat';
2179
2180 push @$cmd, '/usr/bin/kvm';
2181
2182 push @$cmd, '-id', $vmid;
2183
2184 my $use_virtio = 0;
2185
c971c4f2
AD
2186 my $qmpsocket = qmp_socket($vmid);
2187 push @$cmd, '-chardev', "socket,id=qmp,path=$qmpsocket,server,nowait";
2188 push @$cmd, '-mon', "chardev=qmp,mode=control";
2189
7b7c6d1b 2190 my $socket = vnc_socket($vmid);
1e3baf05
DM
2191 push @$cmd, '-vnc', "unix:$socket,x509,password";
2192
6b64503e 2193 push @$cmd, '-pidfile' , pidfile_name($vmid);
19672434 2194
1e3baf05
DM
2195 push @$cmd, '-daemonize';
2196
24f0d39a
AD
2197 $pciaddr = print_pci_addr("piix3", $bridges);
2198 push @$devices, '-device', "piix3-usb-uhci,id=uhci$pciaddr.0x2";
2199
fcc573ab
DM
2200 my $use_usb2 = 0;
2201 for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
2202 next if !$conf->{"usb$i"};
2203 $use_usb2 = 1;
2204 }
2205 # include usb device config
2206 push @$devices, '-readconfig', '/usr/share/qemu-server/pve-usb.cfg' if $use_usb2;
19672434 2207
1e3baf05 2208 # enable absolute mouse coordinates (needed by vnc)
6b64503e 2209 my $tablet = defined($conf->{tablet}) ? $conf->{tablet} : $defaults->{tablet};
0ecf8463 2210 push @$devices, '-device', 'usb-tablet,id=tablet,bus=uhci.0,port=1' if $tablet;
1e3baf05
DM
2211
2212 # host pci devices
040b06b7
DA
2213 for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
2214 my $d = parse_hostpci($conf->{"hostpci$i"});
2215 next if !$d;
5bdcf937
AD
2216 $pciaddr = print_pci_addr("hostpci$i", $bridges);
2217 push @$devices, '-device', "pci-assign,host=$d->{pciid},id=hostpci$i$pciaddr";
1e3baf05
DM
2218 }
2219
2220 # usb devices
2221 for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
2222 my $d = parse_usb_device($conf->{"usb$i"});
2223 next if !$d;
2224 if ($d->{vendorid} && $d->{productid}) {
5bdcf937 2225 push @$devices, '-device', "usb-host,vendorid=0x$d->{vendorid},productid=0x$d->{productid}";
1e3baf05 2226 } elsif (defined($d->{hostbus}) && defined($d->{hostport})) {
5bdcf937 2227 push @$devices, '-device', "usb-host,hostbus=$d->{hostbus},hostport=$d->{hostport}";
1e3baf05
DM
2228 }
2229 }
2230
1e3baf05 2231 # serial devices
bae179aa 2232 for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
34978be3 2233 if (my $path = $conf->{"serial$i"}) {
19672434 2234 die "no such serial device\n" if ! -c $path;
5bdcf937
AD
2235 push @$devices, '-chardev', "tty,id=serial$i,path=$path";
2236 push @$devices, '-device', "isa-serial,chardev=serial$i";
34978be3 2237 }
1e3baf05
DM
2238 }
2239
2240 # parallel devices
1989a89c 2241 for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
34978be3 2242 if (my $path = $conf->{"parallel$i"}) {
19672434 2243 die "no such parallel device\n" if ! -c $path;
5bdcf937
AD
2244 push @$devices, '-chardev', "parport,id=parallel$i,path=$path";
2245 push @$devices, '-device', "isa-parallel,chardev=parallel$i";
34978be3 2246 }
1e3baf05
DM
2247 }
2248
2249 my $vmname = $conf->{name} || "vm$vmid";
2250
2251 push @$cmd, '-name', $vmname;
19672434 2252
1e3baf05
DM
2253 my $sockets = 1;
2254 $sockets = $conf->{smp} if $conf->{smp}; # old style - no longer iused
2255 $sockets = $conf->{sockets} if $conf->{sockets};
2256
2257 my $cores = $conf->{cores} || 1;
2258
1e3baf05
DM
2259 push @$cmd, '-smp', "sockets=$sockets,cores=$cores";
2260
2261 push @$cmd, '-cpu', $conf->{cpu} if $conf->{cpu};
2262
1e3baf05
DM
2263 push @$cmd, '-nodefaults';
2264
32baffb4 2265 my $bootorder = $conf->{boot} || $confdesc->{boot}->{default};
3b408e82 2266
0888fdce
DM
2267 my $bootindex_hash = {};
2268 my $i = 1;
2269 foreach my $o (split(//, $bootorder)) {
2270 $bootindex_hash->{$o} = $i*100;
2271 $i++;
afdb31d5 2272 }
3b408e82
DM
2273
2274 push @$cmd, '-boot', "menu=on";
1e3baf05 2275
6b64503e 2276 push @$cmd, '-no-acpi' if defined($conf->{acpi}) && $conf->{acpi} == 0;
1e3baf05 2277
6b64503e 2278 push @$cmd, '-no-reboot' if defined($conf->{reboot}) && $conf->{reboot} == 0;
1e3baf05
DM
2279
2280 my $vga = $conf->{vga};
2281 if (!$vga) {
a70ebde3 2282 if ($conf->{ostype} && ($conf->{ostype} eq 'win8' || $conf->{ostype} eq 'win7' || $conf->{ostype} eq 'w2k8')) {
1e3baf05
DM
2283 $vga = 'std';
2284 } else {
2285 $vga = 'cirrus';
2286 }
2287 }
19672434 2288
1e3baf05
DM
2289 push @$cmd, '-vga', $vga if $vga; # for kvm 77 and later
2290
2291 # time drift fix
6b64503e 2292 my $tdf = defined($conf->{tdf}) ? $conf->{tdf} : $defaults->{tdf};
1e3baf05 2293
6b64503e 2294 my $nokvm = defined($conf->{kvm}) && $conf->{kvm} == 0 ? 1 : 0;
8c559505 2295 my $useLocaltime = $conf->{localtime};
1e3baf05
DM
2296
2297 if (my $ost = $conf->{ostype}) {
a70ebde3 2298 # other, wxp, w2k, w2k3, w2k8, wvista, win7, win8, l24, l26
1e3baf05
DM
2299
2300 if ($ost =~ m/^w/) { # windows
8c559505 2301 $useLocaltime = 1 if !defined($conf->{localtime});
1e3baf05 2302
8c559505 2303 # use time drift fix when acpi is enabled
6b64503e 2304 if (!(defined($conf->{acpi}) && $conf->{acpi} == 0)) {
8c559505 2305 $tdf = 1 if !defined($conf->{tdf});
1e3baf05
DM
2306 }
2307 }
2308
a70ebde3
DM
2309 if ($ost eq 'win7' || $ost eq 'win8' || $ost eq 'w2k8' ||
2310 $ost eq 'wvista') {
8c559505 2311 push @$globalFlags, 'kvm-pit.lost_tick_policy=discard';
b7e0c8bf
DM
2312 push @$cmd, '-no-hpet';
2313 }
1e3baf05
DM
2314 }
2315
8c559505
DM
2316 push @$rtcFlags, 'driftfix=slew' if $tdf;
2317
7f0b5beb 2318 if ($nokvm) {
8c559505 2319 push @$machineFlags, 'accel=tcg';
7f0b5beb
DM
2320 } else {
2321 die "No accelerator found!\n" if !$cpuinfo->{hvm};
2322 }
1e3baf05 2323
8c559505
DM
2324 if ($conf->{startdate}) {
2325 push @$rtcFlags, "base=$conf->{startdate}";
2326 } elsif ($useLocaltime) {
2327 push @$rtcFlags, 'base=localtime';
2328 }
1e3baf05
DM
2329
2330 push @$cmd, '-S' if $conf->{freeze};
2331
2332 # set keyboard layout
2333 my $kb = $conf->{keyboard} || $defaults->{keyboard};
2334 push @$cmd, '-k', $kb if $kb;
2335
2336 # enable sound
2337 #my $soundhw = $conf->{soundhw} || $defaults->{soundhw};
2338 #push @$cmd, '-soundhw', 'es1370';
2339 #push @$cmd, '-soundhw', $soundhw if $soundhw;
ab6a046f 2340
bc84dcca 2341 if($conf->{agent}) {
ab6a046f
AD
2342 my $qgasocket = qga_socket($vmid);
2343 my $pciaddr = print_pci_addr("qga0", $bridges);
2344 push @$devices, '-chardev', "socket,path=$qgasocket,server,nowait,id=qga0";
2345 push @$devices, '-device', "virtio-serial,id=qga0$pciaddr";
2346 push @$devices, '-device', 'virtserialport,chardev=qga0,name=org.qemu.guest_agent.0';
2347 }
2348
8d9ae0d2
DM
2349 # enable balloon by default, unless explicitly disabled
2350 if (!defined($conf->{balloon}) || $conf->{balloon}) {
2351 $pciaddr = print_pci_addr("balloon0", $bridges);
2352 push @$devices, '-device', "virtio-balloon-pci,id=balloon0$pciaddr";
2353 }
1e3baf05 2354
0ea9541d
DM
2355 if ($conf->{watchdog}) {
2356 my $wdopts = parse_watchdog($conf->{watchdog});
5bdcf937 2357 $pciaddr = print_pci_addr("watchdog", $bridges);
0a40e8ea 2358 my $watchdog = $wdopts->{model} || 'i6300esb';
5bdcf937
AD
2359 push @$devices, '-device', "$watchdog$pciaddr";
2360 push @$devices, '-watchdog-action', $wdopts->{action} if $wdopts->{action};
0ea9541d
DM
2361 }
2362
1e3baf05 2363 my $vollist = [];
941e0c42 2364 my $scsicontroller = {};
26ee04b6 2365 my $ahcicontroller = {};
cdd20088 2366 my $scsihw = defined($conf->{scsihw}) ? $conf->{scsihw} : $defaults->{scsihw};
1e3baf05
DM
2367
2368 foreach_drive($conf, sub {
2369 my ($ds, $drive) = @_;
2370
ff1a2432 2371 if (PVE::Storage::parse_volume_id($drive->{file}, 1)) {
1e3baf05 2372 push @$vollist, $drive->{file};
ff1a2432 2373 }
afdb31d5 2374
1e3baf05 2375 $use_virtio = 1 if $ds =~ m/^virtio/;
3b408e82
DM
2376
2377 if (drive_is_cdrom ($drive)) {
2378 if ($bootindex_hash->{d}) {
2379 $drive->{bootindex} = $bootindex_hash->{d};
2380 $bootindex_hash->{d} += 1;
2381 }
2382 } else {
2383 if ($bootindex_hash->{c}) {
2384 $drive->{bootindex} = $bootindex_hash->{c} if $conf->{bootdisk} && ($conf->{bootdisk} eq $ds);
2385 $bootindex_hash->{c} += 1;
2386 }
2387 }
2388
941e0c42 2389 if ($drive->{interface} eq 'scsi') {
cdd20088
AD
2390
2391 my $maxdev = ($scsihw ne 'lsi') ? 256 : 7;
2392 my $controller = int($drive->{index} / $maxdev);
5bdcf937
AD
2393 $pciaddr = print_pci_addr("scsihw$controller", $bridges);
2394 push @$devices, '-device', "$scsihw,id=scsihw$controller$pciaddr" if !$scsicontroller->{$controller};
cdd20088 2395 $scsicontroller->{$controller}=1;
941e0c42 2396 }
3b408e82 2397
26ee04b6
DA
2398 if ($drive->{interface} eq 'sata') {
2399 my $controller = int($drive->{index} / $MAX_SATA_DISKS);
5bdcf937
AD
2400 $pciaddr = print_pci_addr("ahci$controller", $bridges);
2401 push @$devices, '-device', "ahci,id=ahci$controller,multifunction=on$pciaddr" if !$ahcicontroller->{$controller};
26ee04b6
DA
2402 $ahcicontroller->{$controller}=1;
2403 }
2404
5bdcf937
AD
2405 push @$devices, '-drive',print_drive_full($storecfg, $vmid, $drive);
2406 push @$devices, '-device',print_drivedevice_full($storecfg, $conf, $vmid, $drive, $bridges);
1e3baf05
DM
2407 });
2408
2409 push @$cmd, '-m', $conf->{memory} || $defaults->{memory};
19672434 2410
cc4d6182 2411 for (my $i = 0; $i < $MAX_NETS; $i++) {
5f0c4c32 2412 next if !$conf->{"net$i"};
cc4d6182
DA
2413 my $d = parse_net($conf->{"net$i"});
2414 next if !$d;
1e3baf05 2415
cc4d6182 2416 $use_virtio = 1 if $d->{model} eq 'virtio';
1e3baf05 2417
cc4d6182
DA
2418 if ($bootindex_hash->{n}) {
2419 $d->{bootindex} = $bootindex_hash->{n};
2420 $bootindex_hash->{n} += 1;
2421 }
1e3baf05 2422
cc4d6182 2423 my $netdevfull = print_netdev_full($vmid,$conf,$d,"net$i");
5bdcf937
AD
2424 push @$devices, '-netdev', $netdevfull;
2425
2426 my $netdevicefull = print_netdevice_full($vmid,$conf,$d,"net$i",$bridges);
2427 push @$devices, '-device', $netdevicefull;
2428 }
1e3baf05 2429
5bdcf937
AD
2430 #bridges
2431 while (my ($k, $v) = each %$bridges) {
2432 $pciaddr = print_pci_addr("pci.$k");
2433 unshift @$devices, '-device', "pci-bridge,id=pci.$k,chassis_nr=$k$pciaddr" if $k > 0;
19672434
DM
2434 }
2435
1e3baf05
DM
2436
2437 # hack: virtio with fairsched is unreliable, so we do not use fairsched
2438 # when the VM uses virtio devices.
19672434
DM
2439 if (!$use_virtio && $have_ovz) {
2440
6b64503e 2441 my $cpuunits = defined($conf->{cpuunits}) ?
1e3baf05
DM
2442 $conf->{cpuunits} : $defaults->{cpuunits};
2443
2444 push @$cmd, '-cpuunits', $cpuunits if $cpuunits;
2445
2446 # fixme: cpulimit is currently ignored
2447 #push @$cmd, '-cpulimit', $conf->{cpulimit} if $conf->{cpulimit};
2448 }
2449
2450 # add custom args
2451 if ($conf->{args}) {
3ada46c9 2452 my $aa = PVE::Tools::split_args($conf->{args});
1e3baf05
DM
2453 push @$cmd, @$aa;
2454 }
2455
5bdcf937 2456 push @$cmd, @$devices;
8c559505
DM
2457 push @$cmd, '-rtc', join(',', @$rtcFlags)
2458 if scalar(@$rtcFlags);
2459 push @$cmd, '-machine', join(',', @$machineFlags)
2460 if scalar(@$machineFlags);
2461 push @$cmd, '-global', join(',', @$globalFlags)
2462 if scalar(@$globalFlags);
2463
1e3baf05
DM
2464 return wantarray ? ($cmd, $vollist) : $cmd;
2465}
19672434 2466
1e3baf05
DM
2467sub vnc_socket {
2468 my ($vmid) = @_;
2469 return "${var_run_tmpdir}/$vmid.vnc";
2470}
2471
c971c4f2
AD
2472sub qmp_socket {
2473 my ($vmid) = @_;
2474 return "${var_run_tmpdir}/$vmid.qmp";
2475}
2476
ab6a046f
AD
2477sub qga_socket {
2478 my ($vmid) = @_;
2479 return "${var_run_tmpdir}/$vmid.qga";
2480}
2481
1e3baf05
DM
2482sub pidfile_name {
2483 my ($vmid) = @_;
2484 return "${var_run_tmpdir}/$vmid.pid";
2485}
2486
1e3baf05
DM
2487sub next_migrate_port {
2488
2489 for (my $p = 60000; $p < 60010; $p++) {
2490
6b64503e
DM
2491 my $sock = IO::Socket::INET->new(Listen => 5,
2492 LocalAddr => 'localhost',
2493 LocalPort => $p,
2494 ReuseAddr => 1,
2495 Proto => 0);
1e3baf05
DM
2496
2497 if ($sock) {
6b64503e 2498 close($sock);
1e3baf05
DM
2499 return $p;
2500 }
2501 }
2502
2503 die "unable to find free migration port";
2504}
2505
86fdcfb2
DA
2506sub vm_devices_list {
2507 my ($vmid) = @_;
2508
ceea9078
DM
2509 my $res = vm_mon_cmd($vmid, 'query-pci');
2510
2511 my $devices = {};
2512 foreach my $pcibus (@$res) {
2513 foreach my $device (@{$pcibus->{devices}}) {
2514 next if !$device->{'qdev_id'};
2515 $devices->{$device->{'qdev_id'}} = $device;
1dc4f496
DM
2516 }
2517 }
86fdcfb2 2518
1dc4f496 2519 return $devices;
86fdcfb2
DA
2520}
2521
ec21aa11 2522sub vm_deviceplug {
f19d1c47 2523 my ($storecfg, $conf, $vmid, $deviceid, $device) = @_;
ae57f6b3 2524
cd6ecb89
AD
2525 return 1 if !check_running($vmid);
2526
2527 if ($deviceid eq 'tablet') {
0ecf8463 2528 my $devicefull = "usb-tablet,id=tablet,bus=uhci.0,port=1";
cd6ecb89
AD
2529 qemu_deviceadd($vmid, $devicefull);
2530 return 1;
2531 }
2532
2dbe827e 2533 return 1 if !$conf->{hotplug};
afdb31d5 2534
95d6343b
DA
2535 my $devices_list = vm_devices_list($vmid);
2536 return 1 if defined($devices_list->{$deviceid});
2537
40f28a9f
AD
2538 qemu_bridgeadd($storecfg, $conf, $vmid, $deviceid); #add bridge if we need it for the device
2539
5e5dcb73
DA
2540 if ($deviceid =~ m/^(virtio)(\d+)$/) {
2541 return undef if !qemu_driveadd($storecfg, $vmid, $device);
cdd20088 2542 my $devicefull = print_drivedevice_full($storecfg, $conf, $vmid, $device);
5e5dcb73
DA
2543 qemu_deviceadd($vmid, $devicefull);
2544 if(!qemu_deviceaddverify($vmid, $deviceid)) {
2545 qemu_drivedel($vmid, $deviceid);
2546 return undef;
2547 }
f19d1c47 2548 }
cfc817c7 2549
cdd20088
AD
2550 if ($deviceid =~ m/^(scsihw)(\d+)$/) {
2551 my $scsihw = defined($conf->{scsihw}) ? $conf->{scsihw} : "lsi";
cfc817c7 2552 my $pciaddr = print_pci_addr($deviceid);
cdd20088 2553 my $devicefull = "$scsihw,id=$deviceid$pciaddr";
cfc817c7
DA
2554 qemu_deviceadd($vmid, $devicefull);
2555 return undef if(!qemu_deviceaddverify($vmid, $deviceid));
2556 }
2557
a4f091a0 2558 if ($deviceid =~ m/^(scsi)(\d+)$/) {
cdd20088
AD
2559 return 1 if ($conf->{scsihw} && $conf->{scsihw} ne 'lsi'); #virtio-scsi not yet support hotplug
2560 return undef if !qemu_findorcreatescsihw($storecfg,$conf, $vmid, $device);
a4f091a0 2561 return undef if !qemu_driveadd($storecfg, $vmid, $device);
cdd20088 2562 my $devicefull = print_drivedevice_full($storecfg, $conf, $vmid, $device);
a4f091a0
DA
2563 if(!qemu_deviceadd($vmid, $devicefull)) {
2564 qemu_drivedel($vmid, $deviceid);
2565 return undef;
2566 }
2567 }
2568
2630d2a9
DA
2569 if ($deviceid =~ m/^(net)(\d+)$/) {
2570 return undef if !qemu_netdevadd($vmid, $conf, $device, $deviceid);
2571 my $netdevicefull = print_netdevice_full($vmid, $conf, $device, $deviceid);
2572 qemu_deviceadd($vmid, $netdevicefull);
2573 if(!qemu_deviceaddverify($vmid, $deviceid)) {
2574 qemu_netdevdel($vmid, $deviceid);
2575 return undef;
2576 }
2577 }
2578
40f28a9f
AD
2579 if ($deviceid =~ m/^(pci\.)(\d+)$/) {
2580 my $bridgeid = $2;
2581 my $pciaddr = print_pci_addr($deviceid);
2582 my $devicefull = "pci-bridge,id=pci.$bridgeid,chassis_nr=$bridgeid$pciaddr";
2583 qemu_deviceadd($vmid, $devicefull);
2584 return undef if !qemu_deviceaddverify($vmid, $deviceid);
2585 }
2586
5e5dcb73 2587 return 1;
a4dea331
DA
2588}
2589
ec21aa11 2590sub vm_deviceunplug {
f19d1c47 2591 my ($vmid, $conf, $deviceid) = @_;
873c2d69 2592
cd6ecb89
AD
2593 return 1 if !check_running ($vmid);
2594
2595 if ($deviceid eq 'tablet') {
2596 qemu_devicedel($vmid, $deviceid);
2597 return 1;
2598 }
2599
2dbe827e 2600 return 1 if !$conf->{hotplug};
873c2d69 2601
95d6343b
DA
2602 my $devices_list = vm_devices_list($vmid);
2603 return 1 if !defined($devices_list->{$deviceid});
2604
ae57f6b3 2605 die "can't unplug bootdisk" if $conf->{bootdisk} && $conf->{bootdisk} eq $deviceid;
f19d1c47 2606
5e5dcb73 2607 if ($deviceid =~ m/^(virtio)(\d+)$/) {
5e5dcb73
DA
2608 qemu_devicedel($vmid, $deviceid);
2609 return undef if !qemu_devicedelverify($vmid, $deviceid);
1f219ef5 2610 return undef if !qemu_drivedel($vmid, $deviceid);
5e5dcb73 2611 }
cfc817c7
DA
2612
2613 if ($deviceid =~ m/^(lsi)(\d+)$/) {
2614 return undef if !qemu_devicedel($vmid, $deviceid);
2615 }
2616
a4f091a0
DA
2617 if ($deviceid =~ m/^(scsi)(\d+)$/) {
2618 return undef if !qemu_devicedel($vmid, $deviceid);
2619 return undef if !qemu_drivedel($vmid, $deviceid);
2620 }
2621
2630d2a9 2622 if ($deviceid =~ m/^(net)(\d+)$/) {
2630d2a9
DA
2623 qemu_devicedel($vmid, $deviceid);
2624 return undef if !qemu_devicedelverify($vmid, $deviceid);
750886f8 2625 return undef if !qemu_netdevdel($vmid, $deviceid);
2630d2a9
DA
2626 }
2627
5e5dcb73
DA
2628 return 1;
2629}
2630
2631sub qemu_deviceadd {
2632 my ($vmid, $devicefull) = @_;
873c2d69 2633
d695b5b7
AD
2634 $devicefull = "driver=".$devicefull;
2635 my %options = split(/[=,]/, $devicefull);
f19d1c47 2636
d695b5b7
AD
2637 vm_mon_cmd($vmid, "device_add" , %options);
2638 return 1;
5e5dcb73 2639}
afdb31d5 2640
5e5dcb73
DA
2641sub qemu_devicedel {
2642 my($vmid, $deviceid) = @_;
5a77d8c1
AD
2643 my $ret = vm_mon_cmd($vmid, "device_del", id => $deviceid);
2644 return 1;
5e5dcb73
DA
2645}
2646
2647sub qemu_driveadd {
2648 my($storecfg, $vmid, $device) = @_;
2649
2650 my $drive = print_drive_full($storecfg, $vmid, $device);
7b7c6d1b 2651 my $ret = vm_human_monitor_command($vmid, "drive_add auto $drive");
5e5dcb73
DA
2652 # If the command succeeds qemu prints: "OK"
2653 if ($ret !~ m/OK/s) {
2654 syslog("err", "adding drive failed: $ret");
2655 return undef;
f19d1c47 2656 }
5e5dcb73
DA
2657 return 1;
2658}
afdb31d5 2659
5e5dcb73
DA
2660sub qemu_drivedel {
2661 my($vmid, $deviceid) = @_;
873c2d69 2662
7b7c6d1b 2663 my $ret = vm_human_monitor_command($vmid, "drive_del drive-$deviceid");
5e5dcb73
DA
2664 $ret =~ s/^\s+//;
2665 if ($ret =~ m/Device \'.*?\' not found/s) {
afdb31d5 2666 # NB: device not found errors mean the drive was auto-deleted and we ignore the error
5e5dcb73
DA
2667 }
2668 elsif ($ret ne "") {
2669 syslog("err", "deleting drive $deviceid failed : $ret");
2670 return undef;
873c2d69 2671 }
5e5dcb73
DA
2672 return 1;
2673}
f19d1c47 2674
5e5dcb73
DA
2675sub qemu_deviceaddverify {
2676 my ($vmid,$deviceid) = @_;
873c2d69 2677
5e5dcb73
DA
2678 for (my $i = 0; $i <= 5; $i++) {
2679 my $devices_list = vm_devices_list($vmid);
2680 return 1 if defined($devices_list->{$deviceid});
2681 sleep 1;
afdb31d5 2682 }
5e5dcb73
DA
2683 syslog("err", "error on hotplug device $deviceid");
2684 return undef;
2685}
afdb31d5 2686
5e5dcb73
DA
2687
2688sub qemu_devicedelverify {
2689 my ($vmid,$deviceid) = @_;
2690
2691 #need to verify the device is correctly remove as device_del is async and empty return is not reliable
2692 for (my $i = 0; $i <= 5; $i++) {
2693 my $devices_list = vm_devices_list($vmid);
2694 return 1 if !defined($devices_list->{$deviceid});
2695 sleep 1;
afdb31d5 2696 }
5e5dcb73
DA
2697 syslog("err", "error on hot-unplugging device $deviceid");
2698 return undef;
873c2d69
DA
2699}
2700
cdd20088 2701sub qemu_findorcreatescsihw {
cfc817c7
DA
2702 my ($storecfg, $conf, $vmid, $device) = @_;
2703
cdd20088 2704 my $maxdev = ($conf->{scsihw} && $conf->{scsihw} ne 'lsi') ? 256 : 7;
cfc817c7 2705 my $controller = int($device->{index} / $maxdev);
cdd20088 2706 my $scsihwid="scsihw$controller";
cfc817c7
DA
2707 my $devices_list = vm_devices_list($vmid);
2708
cdd20088
AD
2709 if(!defined($devices_list->{$scsihwid})) {
2710 return undef if !vm_deviceplug($storecfg, $conf, $vmid, $scsihwid);
cfc817c7
DA
2711 }
2712 return 1;
2713}
2714
40f28a9f
AD
2715sub qemu_bridgeadd {
2716 my ($storecfg, $conf, $vmid, $device) = @_;
2717
2718 my $bridges = {};
2719 my $bridgeid = undef;
2720 print_pci_addr($device, $bridges);
2721
2722 while (my ($k, $v) = each %$bridges) {
2723 $bridgeid = $k;
2724 }
2725 return if $bridgeid < 1;
2726 my $bridge = "pci.$bridgeid";
2727 my $devices_list = vm_devices_list($vmid);
2728
2729 if(!defined($devices_list->{$bridge})) {
2730 return undef if !vm_deviceplug($storecfg, $conf, $vmid, $bridge);
2731 }
2732 return 1;
2733}
2734
2630d2a9
DA
2735sub qemu_netdevadd {
2736 my ($vmid, $conf, $device, $deviceid) = @_;
2737
2738 my $netdev = print_netdev_full($vmid, $conf, $device, $deviceid);
73aa03b8 2739 my %options = split(/[=,]/, $netdev);
2630d2a9 2740
73aa03b8
AD
2741 vm_mon_cmd($vmid, "netdev_add", %options);
2742 return 1;
2630d2a9
DA
2743}
2744
2745sub qemu_netdevdel {
2746 my ($vmid, $deviceid) = @_;
2747
89c1e0f4
AD
2748 vm_mon_cmd($vmid, "netdev_del", id => $deviceid);
2749 return 1;
2630d2a9
DA
2750}
2751
affd2f88
AD
2752sub qemu_block_set_io_throttle {
2753 my ($vmid, $deviceid, $bps, $bps_rd, $bps_wr, $iops, $iops_rd, $iops_wr) = @_;
2754
f3f323a3
AD
2755 return if !check_running($vmid) ;
2756
affd2f88
AD
2757 $bps = 0 if !$bps;
2758 $bps_rd = 0 if !$bps_rd;
2759 $bps_wr = 0 if !$bps_wr;
2760 $iops = 0 if !$iops;
2761 $iops_rd = 0 if !$iops_rd;
2762 $iops_wr = 0 if !$iops_wr;
2763
f3f323a3
AD
2764 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));
2765
affd2f88
AD
2766}
2767
f5eb281a 2768# old code, only used to shutdown old VM after update
dab36e1e
DM
2769sub __read_avail {
2770 my ($fh, $timeout) = @_;
2771
2772 my $sel = new IO::Select;
2773 $sel->add($fh);
2774
2775 my $res = '';
2776 my $buf;
2777
2778 my @ready;
2779 while (scalar (@ready = $sel->can_read($timeout))) {
2780 my $count;
2781 if ($count = $fh->sysread($buf, 8192)) {
2782 if ($buf =~ /^(.*)\(qemu\) $/s) {
2783 $res .= $1;
2784 last;
2785 } else {
2786 $res .= $buf;
2787 }
2788 } else {
2789 if (!defined($count)) {
2790 die "$!\n";
2791 }
2792 last;
2793 }
2794 }
2795
2796 die "monitor read timeout\n" if !scalar(@ready);
f5eb281a 2797
dab36e1e
DM
2798 return $res;
2799}
2800
f5eb281a 2801# old code, only used to shutdown old VM after update
dab36e1e
DM
2802sub vm_monitor_command {
2803 my ($vmid, $cmdstr, $nocheck) = @_;
f5eb281a 2804
dab36e1e
DM
2805 my $res;
2806
2807 eval {
2808 die "VM $vmid not running\n" if !check_running($vmid, $nocheck);
2809
2810 my $sname = "${var_run_tmpdir}/$vmid.mon";
2811
2812 my $sock = IO::Socket::UNIX->new( Peer => $sname ) ||
2813 die "unable to connect to VM $vmid socket - $!\n";
2814
2815 my $timeout = 3;
2816
2817 # hack: migrate sometime blocks the monitor (when migrate_downtime
2818 # is set)
2819 if ($cmdstr =~ m/^(info\s+migrate|migrate\s)/) {
2820 $timeout = 60*60; # 1 hour
2821 }
2822
2823 # read banner;
2824 my $data = __read_avail($sock, $timeout);
2825
2826 if ($data !~ m/^QEMU\s+(\S+)\s+monitor\s/) {
2827 die "got unexpected qemu monitor banner\n";
2828 }
2829
2830 my $sel = new IO::Select;
2831 $sel->add($sock);
2832
2833 if (!scalar(my @ready = $sel->can_write($timeout))) {
2834 die "monitor write error - timeout";
2835 }
2836
2837 my $fullcmd = "$cmdstr\r";
2838
2839 # syslog('info', "VM $vmid monitor command: $cmdstr");
2840
2841 my $b;
2842 if (!($b = $sock->syswrite($fullcmd)) || ($b != length($fullcmd))) {
2843 die "monitor write error - $!";
2844 }
2845
2846 return if ($cmdstr eq 'q') || ($cmdstr eq 'quit');
2847
2848 $timeout = 20;
2849
2850 if ($cmdstr =~ m/^(info\s+migrate|migrate\s)/) {
2851 $timeout = 60*60; # 1 hour
2852 } elsif ($cmdstr =~ m/^(eject|change)/) {
2853 $timeout = 60; # note: cdrom mount command is slow
2854 }
2855 if ($res = __read_avail($sock, $timeout)) {
2856
2857 my @lines = split("\r?\n", $res);
f5eb281a 2858
dab36e1e 2859 shift @lines if $lines[0] !~ m/^unknown command/; # skip echo
f5eb281a 2860
dab36e1e
DM
2861 $res = join("\n", @lines);
2862 $res .= "\n";
2863 }
2864 };
2865
2866 my $err = $@;
2867
2868 if ($err) {
2869 syslog("err", "VM $vmid monitor command failed - $err");
2870 die $err;
2871 }
f5eb281a 2872
dab36e1e
DM
2873 return $res;
2874}
2875
c1175c92
AD
2876sub qemu_block_resize {
2877 my ($vmid, $deviceid, $storecfg, $volid, $size) = @_;
2878
ed221350 2879 my $running = check_running($vmid);
c1175c92
AD
2880
2881 return if !PVE::Storage::volume_resize($storecfg, $volid, $size, $running);
2882
2883 return if !$running;
2884
2885 vm_mon_cmd($vmid, "block_resize", device => $deviceid, size => int($size));
2886
2887}
2888
1ab0057c
AD
2889sub qemu_volume_snapshot {
2890 my ($vmid, $deviceid, $storecfg, $volid, $snap) = @_;
2891
ed221350 2892 my $running = check_running($vmid);
1ab0057c
AD
2893
2894 return if !PVE::Storage::volume_snapshot($storecfg, $volid, $snap, $running);
2895
2896 return if !$running;
2897
2898 vm_mon_cmd($vmid, "snapshot-drive", device => $deviceid, name => $snap);
2899
2900}
2901
fc46aff9
AD
2902sub qemu_volume_snapshot_delete {
2903 my ($vmid, $deviceid, $storecfg, $volid, $snap) = @_;
2904
ed221350 2905 my $running = check_running($vmid);
fc46aff9
AD
2906
2907 return if !PVE::Storage::volume_snapshot_delete($storecfg, $volid, $snap, $running);
2908
2909 return if !$running;
2910
18bfb361 2911 vm_mon_cmd($vmid, "delete-drive-snapshot", device => $deviceid, name => $snap);
fc46aff9
AD
2912}
2913
3d5149c9
AD
2914sub qga_freezefs {
2915 my ($vmid) = @_;
2916
2917 #need to impplement call to qemu-ga
2918}
2919
e8f3f18e
AD
2920sub qga_unfreezefs {
2921 my ($vmid) = @_;
2922
2923 #need to impplement call to qemu-ga
2924}
2925
1e3baf05 2926sub vm_start {
91bd6c90 2927 my ($storecfg, $vmid, $statefile, $skiplock, $migratedfrom, $paused) = @_;
1e3baf05 2928
6b64503e 2929 lock_config($vmid, sub {
7e8dcf2c 2930 my $conf = load_config($vmid, $migratedfrom);
1e3baf05 2931
8b43bc11 2932 die "you can't start a vm if it's a template\n" if is_template($conf);
3dcb98d5 2933
6b64503e 2934 check_lock($conf) if !$skiplock;
1e3baf05 2935
7e8dcf2c 2936 die "VM $vmid already running\n" if check_running($vmid, undef, $migratedfrom);
1e3baf05 2937
6c47d546
DM
2938 my $defaults = load_defaults();
2939
2940 # set environment variable useful inside network script
2941 $ENV{PVE_MIGRATED_FROM} = $migratedfrom if $migratedfrom;
2942
2943 my ($cmd, $vollist) = config_to_command($storecfg, $vmid, $conf, $defaults);
2944
1e3baf05
DM
2945 my $migrate_port = 0;
2946
2947 if ($statefile) {
2948 if ($statefile eq 'tcp') {
2949 $migrate_port = next_migrate_port();
6c47d546
DM
2950 my $migrate_uri = "tcp:localhost:${migrate_port}";
2951 push @$cmd, '-incoming', $migrate_uri;
2952 push @$cmd, '-S';
1e3baf05 2953 } else {
6c47d546 2954 push @$cmd, '-loadstate', $statefile;
1e3baf05 2955 }
91bd6c90
DM
2956 } elsif ($paused) {
2957 push @$cmd, '-S';
1e3baf05
DM
2958 }
2959
1e3baf05 2960 # host pci devices
040b06b7
DA
2961 for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
2962 my $d = parse_hostpci($conf->{"hostpci$i"});
2963 next if !$d;
2964 my $info = pci_device_info("0000:$d->{pciid}");
2965 die "IOMMU not present\n" if !check_iommu_support();
2966 die "no pci device info for device '$d->{pciid}'\n" if !$info;
2967 die "can't unbind pci device '$d->{pciid}'\n" if !pci_dev_bind_to_stub($info);
2968 die "can't reset pci device '$d->{pciid}'\n" if !pci_dev_reset($info);
2969 }
1e3baf05
DM
2970
2971 PVE::Storage::activate_volumes($storecfg, $vollist);
2972
585b6e28
DM
2973 eval { run_command($cmd, timeout => $statefile ? undef : 30,
2974 umask => 0077); };
1e3baf05 2975 my $err = $@;
ff1a2432 2976 die "start failed: $err" if $err;
1e3baf05 2977
6c47d546 2978 print "migration listens on port $migrate_port\n" if $migrate_port;
afdb31d5 2979
8c609afd 2980 if ($statefile && $statefile ne 'tcp') {
95381ce0 2981 eval { vm_mon_cmd_nocheck($vmid, "cont"); };
8c609afd 2982 warn $@ if $@;
62de2cbd
DM
2983 }
2984
e18b0b99
AD
2985 if($migratedfrom) {
2986 my $capabilities = {};
2987 $capabilities->{capability} = "xbzrle";
2988 $capabilities->{state} = JSON::true;
ed221350 2989 eval { vm_mon_cmd_nocheck($vmid, "migrate-set-capabilities", capabilities => [$capabilities]); };
8b1accf7 2990 }
4ec05c4c
AD
2991 else{
2992
2993 if (!defined($conf->{balloon}) || $conf->{balloon}) {
2994 vm_mon_cmd_nocheck($vmid, "balloon", value => $conf->{balloon}*1024*1024)
2995 if $conf->{balloon};
2996 vm_mon_cmd_nocheck($vmid, 'qom-set',
2997 path => "machine/peripheral/balloon0",
abebe2f1 2998 property => "guest-stats-polling-interval",
4ec05c4c
AD
2999 value => 2);
3000 }
e18b0b99 3001 }
1e3baf05
DM
3002 });
3003}
3004
0eedc444
AD
3005sub vm_mon_cmd {
3006 my ($vmid, $execute, %params) = @_;
3007
26f11676
DM
3008 my $cmd = { execute => $execute, arguments => \%params };
3009 vm_qmp_command($vmid, $cmd);
0eedc444
AD
3010}
3011
3012sub vm_mon_cmd_nocheck {
3013 my ($vmid, $execute, %params) = @_;
3014
26f11676
DM
3015 my $cmd = { execute => $execute, arguments => \%params };
3016 vm_qmp_command($vmid, $cmd, 1);
0eedc444
AD
3017}
3018
c971c4f2 3019sub vm_qmp_command {
d967756b 3020 my ($vmid, $cmd, $nocheck) = @_;
97d62eb7 3021
c971c4f2 3022 my $res;
26f11676 3023
14db5366
DM
3024 my $timeout;
3025 if ($cmd->{arguments} && $cmd->{arguments}->{timeout}) {
3026 $timeout = $cmd->{arguments}->{timeout};
3027 delete $cmd->{arguments}->{timeout};
3028 }
3029
c971c4f2
AD
3030 eval {
3031 die "VM $vmid not running\n" if !check_running($vmid, $nocheck);
ed221350 3032 my $sname = qmp_socket($vmid);
f5eb281a 3033 if (-e $sname) {
dab36e1e
DM
3034 my $qmpclient = PVE::QMPClient->new();
3035
14db5366 3036 $res = $qmpclient->cmd($vmid, $cmd, $timeout);
dab36e1e
DM
3037 } elsif (-e "${var_run_tmpdir}/$vmid.mon") {
3038 die "can't execute complex command on old monitor - stop/start your vm to fix the problem\n"
3039 if scalar(%{$cmd->{arguments}});
3040 vm_monitor_command($vmid, $cmd->{execute}, $nocheck);
3041 } else {
3042 die "unable to open monitor socket\n";
3043 }
c971c4f2 3044 };
26f11676 3045 if (my $err = $@) {
c971c4f2
AD
3046 syslog("err", "VM $vmid qmp command failed - $err");
3047 die $err;
3048 }
3049
3050 return $res;
3051}
3052
9df5cbcc
DM
3053sub vm_human_monitor_command {
3054 my ($vmid, $cmdline) = @_;
3055
3056 my $res;
3057
f5eb281a 3058 my $cmd = {
9df5cbcc
DM
3059 execute => 'human-monitor-command',
3060 arguments => { 'command-line' => $cmdline},
3061 };
3062
3063 return vm_qmp_command($vmid, $cmd);
3064}
3065
1e3baf05
DM
3066sub vm_commandline {
3067 my ($storecfg, $vmid) = @_;
3068
6b64503e 3069 my $conf = load_config($vmid);
1e3baf05
DM
3070
3071 my $defaults = load_defaults();
3072
6b64503e 3073 my $cmd = config_to_command($storecfg, $vmid, $conf, $defaults);
1e3baf05 3074
6b64503e 3075 return join(' ', @$cmd);
1e3baf05
DM
3076}
3077
3078sub vm_reset {
3079 my ($vmid, $skiplock) = @_;
3080
6b64503e 3081 lock_config($vmid, sub {
1e3baf05 3082
6b64503e 3083 my $conf = load_config($vmid);
1e3baf05 3084
6b64503e 3085 check_lock($conf) if !$skiplock;
1e3baf05 3086
816e2c4a 3087 vm_mon_cmd($vmid, "system_reset");
ff1a2432
DM
3088 });
3089}
3090
3091sub get_vm_volumes {
3092 my ($conf) = @_;
1e3baf05 3093
ff1a2432 3094 my $vollist = [];
d5769dc2
DM
3095 foreach_volid($conf, sub {
3096 my ($volid, $is_cdrom) = @_;
ff1a2432 3097
d5769dc2 3098 return if $volid =~ m|^/|;
ff1a2432 3099
d5769dc2
DM
3100 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
3101 return if !$sid;
ff1a2432
DM
3102
3103 push @$vollist, $volid;
1e3baf05 3104 });
ff1a2432
DM
3105
3106 return $vollist;
3107}
3108
3109sub vm_stop_cleanup {
254575e9 3110 my ($storecfg, $vmid, $conf, $keepActive) = @_;
ff1a2432 3111
745fed70
DM
3112 eval {
3113 fairsched_rmnod($vmid); # try to destroy group
ff1a2432 3114
254575e9
DM
3115 if (!$keepActive) {
3116 my $vollist = get_vm_volumes($conf);
3117 PVE::Storage::deactivate_volumes($storecfg, $vollist);
3118 }
961bfcb2 3119
ab6a046f 3120 foreach my $ext (qw(mon qmp pid vnc qga)) {
961bfcb2
DM
3121 unlink "/var/run/qemu-server/${vmid}.$ext";
3122 }
745fed70
DM
3123 };
3124 warn $@ if $@; # avoid errors - just warn
1e3baf05
DM
3125}
3126
e6c3b671 3127# Note: use $nockeck to skip tests if VM configuration file exists.
254575e9
DM
3128# We need that when migration VMs to other nodes (files already moved)
3129# Note: we set $keepActive in vzdump stop mode - volumes need to stay active
1e3baf05 3130sub vm_stop {
af30308f 3131 my ($storecfg, $vmid, $skiplock, $nocheck, $timeout, $shutdown, $force, $keepActive, $migratedfrom) = @_;
9269013a 3132
9269013a 3133 $force = 1 if !defined($force) && !$shutdown;
1e3baf05 3134
af30308f
DM
3135 if ($migratedfrom){
3136 my $pid = check_running($vmid, $nocheck, $migratedfrom);
3137 kill 15, $pid if $pid;
3138 my $conf = load_config($vmid, $migratedfrom);
3139 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive);
3140 return;
3141 }
3142
e6c3b671 3143 lock_config($vmid, sub {
1e3baf05 3144
e6c3b671 3145 my $pid = check_running($vmid, $nocheck);
ff1a2432 3146 return if !$pid;
1e3baf05 3147
ff1a2432 3148 my $conf;
e6c3b671 3149 if (!$nocheck) {
ff1a2432 3150 $conf = load_config($vmid);
e6c3b671 3151 check_lock($conf) if !$skiplock;
7f4a5b5a
DM
3152 if (!defined($timeout) && $shutdown && $conf->{startup}) {
3153 my $opts = parse_startup($conf->{startup});
3154 $timeout = $opts->{down} if $opts->{down};
3155 }
e6c3b671 3156 }
19672434 3157
7f4a5b5a
DM
3158 $timeout = 60 if !defined($timeout);
3159
9269013a
DM
3160 eval {
3161 if ($shutdown) {
988903ca 3162 $nocheck ? vm_mon_cmd_nocheck($vmid, "system_powerdown") : vm_mon_cmd($vmid, "system_powerdown");
bcb7c9cf 3163
9269013a 3164 } else {
988903ca 3165 $nocheck ? vm_mon_cmd_nocheck($vmid, "quit") : vm_mon_cmd($vmid, "quit");
afdb31d5 3166 }
9269013a 3167 };
1e3baf05
DM
3168 my $err = $@;
3169
3170 if (!$err) {
1e3baf05 3171 my $count = 0;
e6c3b671 3172 while (($count < $timeout) && check_running($vmid, $nocheck)) {
1e3baf05
DM
3173 $count++;
3174 sleep 1;
3175 }
3176
3177 if ($count >= $timeout) {
9269013a
DM
3178 if ($force) {
3179 warn "VM still running - terminating now with SIGTERM\n";
3180 kill 15, $pid;
3181 } else {
3182 die "VM quit/powerdown failed - got timeout\n";
3183 }
3184 } else {
254575e9 3185 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive) if $conf;
9269013a 3186 return;
1e3baf05
DM
3187 }
3188 } else {
9269013a
DM
3189 if ($force) {
3190 warn "VM quit/powerdown failed - terminating now with SIGTERM\n";
3191 kill 15, $pid;
3192 } else {
afdb31d5 3193 die "VM quit/powerdown failed\n";
9269013a 3194 }
1e3baf05
DM
3195 }
3196
3197 # wait again
ff1a2432 3198 $timeout = 10;
1e3baf05
DM
3199
3200 my $count = 0;
e6c3b671 3201 while (($count < $timeout) && check_running($vmid, $nocheck)) {
1e3baf05
DM
3202 $count++;
3203 sleep 1;
3204 }
3205
3206 if ($count >= $timeout) {
ff1a2432 3207 warn "VM still running - terminating now with SIGKILL\n";
1e3baf05 3208 kill 9, $pid;
ff1a2432 3209 sleep 1;
1e3baf05
DM
3210 }
3211
254575e9 3212 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive) if $conf;
ff1a2432 3213 });
1e3baf05
DM
3214}
3215
3216sub vm_suspend {
3217 my ($vmid, $skiplock) = @_;
3218
6b64503e 3219 lock_config($vmid, sub {
1e3baf05 3220
6b64503e 3221 my $conf = load_config($vmid);
1e3baf05 3222
051347aa 3223 check_lock($conf) if !($skiplock || ($conf->{lock} && $conf->{lock} eq 'backup'));
bcb7c9cf 3224
f77f91f3 3225 vm_mon_cmd($vmid, "stop");
1e3baf05
DM
3226 });
3227}
3228
3229sub vm_resume {
3230 my ($vmid, $skiplock) = @_;
3231
6b64503e 3232 lock_config($vmid, sub {
1e3baf05 3233
6b64503e 3234 my $conf = load_config($vmid);
1e3baf05 3235
051347aa 3236 check_lock($conf) if !($skiplock || ($conf->{lock} && $conf->{lock} eq 'backup'));
1e3baf05 3237
12060fe8 3238 vm_mon_cmd($vmid, "cont");
1e3baf05
DM
3239 });
3240}
3241
5fdbe4f0
DM
3242sub vm_sendkey {
3243 my ($vmid, $skiplock, $key) = @_;
1e3baf05 3244
6b64503e 3245 lock_config($vmid, sub {
1e3baf05 3246
6b64503e 3247 my $conf = load_config($vmid);
f5eb281a 3248
7b7c6d1b
DM
3249 # there is no qmp command, so we use the human monitor command
3250 vm_human_monitor_command($vmid, "sendkey $key");
1e3baf05
DM
3251 });
3252}
3253
3254sub vm_destroy {
3255 my ($storecfg, $vmid, $skiplock) = @_;
3256
6b64503e 3257 lock_config($vmid, sub {
1e3baf05 3258
6b64503e 3259 my $conf = load_config($vmid);
1e3baf05 3260
6b64503e 3261 check_lock($conf) if !$skiplock;
1e3baf05 3262
ff1a2432
DM
3263 if (!check_running($vmid)) {
3264 fairsched_rmnod($vmid); # try to destroy group
3265 destroy_vm($storecfg, $vmid);
3266 } else {
3267 die "VM $vmid is running - destroy failed\n";
1e3baf05
DM
3268 }
3269 });
3270}
3271
1e3baf05
DM
3272# pci helpers
3273
3274sub file_write {
3275 my ($filename, $buf) = @_;
3276
6b64503e 3277 my $fh = IO::File->new($filename, "w");
1e3baf05
DM
3278 return undef if !$fh;
3279
3280 my $res = print $fh $buf;
3281
3282 $fh->close();
3283
3284 return $res;
3285}
3286
3287sub pci_device_info {
3288 my ($name) = @_;
3289
3290 my $res;
3291
3292 return undef if $name !~ m/^([a-f0-9]{4}):([a-f0-9]{2}):([a-f0-9]{2})\.([a-f0-9])$/;
3293 my ($domain, $bus, $slot, $func) = ($1, $2, $3, $4);
3294
3295 my $irq = file_read_firstline("$pcisysfs/devices/$name/irq");
3296 return undef if !defined($irq) || $irq !~ m/^\d+$/;
3297
3298 my $vendor = file_read_firstline("$pcisysfs/devices/$name/vendor");
3299 return undef if !defined($vendor) || $vendor !~ s/^0x//;
3300
3301 my $product = file_read_firstline("$pcisysfs/devices/$name/device");
3302 return undef if !defined($product) || $product !~ s/^0x//;
3303
3304 $res = {
3305 name => $name,
3306 vendor => $vendor,
3307 product => $product,
3308 domain => $domain,
3309 bus => $bus,
3310 slot => $slot,
3311 func => $func,
3312 irq => $irq,
3313 has_fl_reset => -f "$pcisysfs/devices/$name/reset" || 0,
3314 };
3315
3316 return $res;
3317}
3318
3319sub pci_dev_reset {
3320 my ($dev) = @_;
3321
3322 my $name = $dev->{name};
3323
3324 my $fn = "$pcisysfs/devices/$name/reset";
3325
6b64503e 3326 return file_write($fn, "1");
1e3baf05
DM
3327}
3328
3329sub pci_dev_bind_to_stub {
3330 my ($dev) = @_;
3331
3332 my $name = $dev->{name};
3333
3334 my $testdir = "$pcisysfs/drivers/pci-stub/$name";
3335 return 1 if -d $testdir;
3336
3337 my $data = "$dev->{vendor} $dev->{product}";
6b64503e 3338 return undef if !file_write("$pcisysfs/drivers/pci-stub/new_id", $data);
1e3baf05
DM
3339
3340 my $fn = "$pcisysfs/devices/$name/driver/unbind";
6b64503e 3341 if (!file_write($fn, $name)) {
1e3baf05
DM
3342 return undef if -f $fn;
3343 }
3344
3345 $fn = "$pcisysfs/drivers/pci-stub/bind";
3346 if (! -d $testdir) {
6b64503e 3347 return undef if !file_write($fn, $name);
1e3baf05
DM
3348 }
3349
3350 return -d $testdir;
3351}
3352
afdb31d5 3353sub print_pci_addr {
5bdcf937 3354 my ($id, $bridges) = @_;
6b64503e 3355
72a063e4 3356 my $res = '';
6b64503e 3357 my $devices = {
24f0d39a 3358 piix3 => { bus => 0, addr => 1 },
e5f7f8ed 3359 #addr2 : first videocard
13b5a753 3360 balloon0 => { bus => 0, addr => 3 },
0a40e8ea 3361 watchdog => { bus => 0, addr => 4 },
cdd20088
AD
3362 scsihw0 => { bus => 0, addr => 5 },
3363 scsihw1 => { bus => 0, addr => 6 },
26ee04b6 3364 ahci0 => { bus => 0, addr => 7 },
ab6a046f 3365 qga0 => { bus => 0, addr => 8 },
6b64503e
DM
3366 virtio0 => { bus => 0, addr => 10 },
3367 virtio1 => { bus => 0, addr => 11 },
3368 virtio2 => { bus => 0, addr => 12 },
3369 virtio3 => { bus => 0, addr => 13 },
3370 virtio4 => { bus => 0, addr => 14 },
3371 virtio5 => { bus => 0, addr => 15 },
b78ebef7
DA
3372 hostpci0 => { bus => 0, addr => 16 },
3373 hostpci1 => { bus => 0, addr => 17 },
f290f8d9
DA
3374 net0 => { bus => 0, addr => 18 },
3375 net1 => { bus => 0, addr => 19 },
3376 net2 => { bus => 0, addr => 20 },
3377 net3 => { bus => 0, addr => 21 },
3378 net4 => { bus => 0, addr => 22 },
3379 net5 => { bus => 0, addr => 23 },
e5f7f8ed 3380 #addr29 : usb-host (pve-usb.cfg)
5bdcf937
AD
3381 'pci.1' => { bus => 0, addr => 30 },
3382 'pci.2' => { bus => 0, addr => 31 },
3383 'net6' => { bus => 1, addr => 1 },
3384 'net7' => { bus => 1, addr => 2 },
3385 'net8' => { bus => 1, addr => 3 },
3386 'net9' => { bus => 1, addr => 4 },
3387 'net10' => { bus => 1, addr => 5 },
3388 'net11' => { bus => 1, addr => 6 },
3389 'net12' => { bus => 1, addr => 7 },
3390 'net13' => { bus => 1, addr => 8 },
3391 'net14' => { bus => 1, addr => 9 },
3392 'net15' => { bus => 1, addr => 10 },
3393 'net16' => { bus => 1, addr => 11 },
3394 'net17' => { bus => 1, addr => 12 },
3395 'net18' => { bus => 1, addr => 13 },
3396 'net19' => { bus => 1, addr => 14 },
3397 'net20' => { bus => 1, addr => 15 },
3398 'net21' => { bus => 1, addr => 16 },
3399 'net22' => { bus => 1, addr => 17 },
3400 'net23' => { bus => 1, addr => 18 },
3401 'net24' => { bus => 1, addr => 19 },
3402 'net25' => { bus => 1, addr => 20 },
3403 'net26' => { bus => 1, addr => 21 },
3404 'net27' => { bus => 1, addr => 22 },
3405 'net28' => { bus => 1, addr => 23 },
3406 'net29' => { bus => 1, addr => 24 },
3407 'net30' => { bus => 1, addr => 25 },
3408 'net31' => { bus => 1, addr => 26 },
3409 'virtio6' => { bus => 2, addr => 1 },
3410 'virtio7' => { bus => 2, addr => 2 },
3411 'virtio8' => { bus => 2, addr => 3 },
3412 'virtio9' => { bus => 2, addr => 4 },
3413 'virtio10' => { bus => 2, addr => 5 },
3414 'virtio11' => { bus => 2, addr => 6 },
3415 'virtio12' => { bus => 2, addr => 7 },
3416 'virtio13' => { bus => 2, addr => 8 },
3417 'virtio14' => { bus => 2, addr => 9 },
3418 'virtio15' => { bus => 2, addr => 10 },
6b64503e
DM
3419 };
3420
3421 if (defined($devices->{$id}->{bus}) && defined($devices->{$id}->{addr})) {
72a063e4 3422 my $addr = sprintf("0x%x", $devices->{$id}->{addr});
5bdcf937
AD
3423 my $bus = $devices->{$id}->{bus};
3424 $res = ",bus=pci.$bus,addr=$addr";
98627641 3425 $bridges->{$bus} = 1 if $bridges;
72a063e4
DA
3426 }
3427 return $res;
3428
3429}
3430
3e16d5fc
DM
3431# vzdump restore implementaion
3432
ed221350 3433sub tar_archive_read_firstfile {
3e16d5fc 3434 my $archive = shift;
afdb31d5 3435
3e16d5fc
DM
3436 die "ERROR: file '$archive' does not exist\n" if ! -f $archive;
3437
3438 # try to detect archive type first
3439 my $pid = open (TMP, "tar tf '$archive'|") ||
3440 die "unable to open file '$archive'\n";
3441 my $firstfile = <TMP>;
3442 kill 15, $pid;
3443 close TMP;
3444
3445 die "ERROR: archive contaions no data\n" if !$firstfile;
3446 chomp $firstfile;
3447
3448 return $firstfile;
3449}
3450
ed221350
DM
3451sub tar_restore_cleanup {
3452 my ($storecfg, $statfile) = @_;
3e16d5fc
DM
3453
3454 print STDERR "starting cleanup\n";
3455
3456 if (my $fd = IO::File->new($statfile, "r")) {
3457 while (defined(my $line = <$fd>)) {
3458 if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
3459 my $volid = $2;
3460 eval {
3461 if ($volid =~ m|^/|) {
3462 unlink $volid || die 'unlink failed\n';
3463 } else {
ed221350 3464 PVE::Storage::vdisk_free($storecfg, $volid);
3e16d5fc 3465 }
afdb31d5 3466 print STDERR "temporary volume '$volid' sucessfuly removed\n";
3e16d5fc
DM
3467 };
3468 print STDERR "unable to cleanup '$volid' - $@" if $@;
3469 } else {
3470 print STDERR "unable to parse line in statfile - $line";
afdb31d5 3471 }
3e16d5fc
DM
3472 }
3473 $fd->close();
3474 }
3475}
3476
3477sub restore_archive {
a0d1b1a2 3478 my ($archive, $vmid, $user, $opts) = @_;
3e16d5fc 3479
91bd6c90
DM
3480 my $format = $opts->{format};
3481 my $comp;
3482
3483 if ($archive =~ m/\.tgz$/ || $archive =~ m/\.tar\.gz$/) {
3484 $format = 'tar' if !$format;
3485 $comp = 'gzip';
3486 } elsif ($archive =~ m/\.tar$/) {
3487 $format = 'tar' if !$format;
3488 } elsif ($archive =~ m/.tar.lzo$/) {
3489 $format = 'tar' if !$format;
3490 $comp = 'lzop';
3491 } elsif ($archive =~ m/\.vma$/) {
3492 $format = 'vma' if !$format;
3493 } elsif ($archive =~ m/\.vma\.gz$/) {
3494 $format = 'vma' if !$format;
3495 $comp = 'gzip';
3496 } elsif ($archive =~ m/\.vma\.lzo$/) {
3497 $format = 'vma' if !$format;
3498 $comp = 'lzop';
3499 } else {
3500 $format = 'vma' if !$format; # default
3501 }
3502
3503 # try to detect archive format
3504 if ($format eq 'tar') {
3505 return restore_tar_archive($archive, $vmid, $user, $opts);
3506 } else {
3507 return restore_vma_archive($archive, $vmid, $user, $opts, $comp);
3508 }
3509}
3510
3511sub restore_update_config_line {
3512 my ($outfd, $cookie, $vmid, $map, $line, $unique) = @_;
3513
3514 return if $line =~ m/^\#qmdump\#/;
3515 return if $line =~ m/^\#vzdump\#/;
3516 return if $line =~ m/^lock:/;
3517 return if $line =~ m/^unused\d+:/;
3518 return if $line =~ m/^parent:/;
3519
3520 if (($line =~ m/^(vlan(\d+)):\s*(\S+)\s*$/)) {
3521 # try to convert old 1.X settings
3522 my ($id, $ind, $ethcfg) = ($1, $2, $3);
3523 foreach my $devconfig (PVE::Tools::split_list($ethcfg)) {
3524 my ($model, $macaddr) = split(/\=/, $devconfig);
3525 $macaddr = PVE::Tools::random_ether_addr() if !$macaddr || $unique;
3526 my $net = {
3527 model => $model,
3528 bridge => "vmbr$ind",
3529 macaddr => $macaddr,
3530 };
3531 my $netstr = print_net($net);
3532
3533 print $outfd "net$cookie->{netcount}: $netstr\n";
3534 $cookie->{netcount}++;
3535 }
3536 } elsif (($line =~ m/^(net\d+):\s*(\S+)\s*$/) && $unique) {
3537 my ($id, $netstr) = ($1, $2);
3538 my $net = parse_net($netstr);
3539 $net->{macaddr} = PVE::Tools::random_ether_addr() if $net->{macaddr};
3540 $netstr = print_net($net);
3541 print $outfd "$id: $netstr\n";
3542 } elsif ($line =~ m/^((ide|scsi|virtio|sata)\d+):\s*(\S+)\s*$/) {
3543 my $virtdev = $1;
907ea891 3544 my $value = $3;
91bd6c90
DM
3545 if ($line =~ m/backup=no/) {
3546 print $outfd "#$line";
3547 } elsif ($virtdev && $map->{$virtdev}) {
ed221350 3548 my $di = parse_drive($virtdev, $value);
91bd6c90 3549 $di->{file} = $map->{$virtdev};
ed221350 3550 $value = print_drive($vmid, $di);
91bd6c90
DM
3551 print $outfd "$virtdev: $value\n";
3552 } else {
3553 print $outfd $line;
3554 }
3555 } else {
3556 print $outfd $line;
3557 }
3558}
3559
3560sub scan_volids {
3561 my ($cfg, $vmid) = @_;
3562
3563 my $info = PVE::Storage::vdisk_list($cfg, undef, $vmid);
3564
3565 my $volid_hash = {};
3566 foreach my $storeid (keys %$info) {
3567 foreach my $item (@{$info->{$storeid}}) {
3568 next if !($item->{volid} && $item->{size});
3569 $volid_hash->{$item->{volid}} = $item;
3570 }
3571 }
3572
3573 return $volid_hash;
3574}
3575
3576sub update_disksize {
3577 my ($vmid, $conf, $volid_hash) = @_;
3578
3579 my $changes;
3580
3581 my $used = {};
3582
3583 # update size info
3584 foreach my $opt (keys %$conf) {
ed221350
DM
3585 if (valid_drivename($opt)) {
3586 my $drive = parse_drive($opt, $conf->{$opt});
91bd6c90
DM
3587 my $volid = $drive->{file};
3588 next if !$volid;
3589
3590 $used->{$volid} = 1;
3591
ed221350 3592 next if drive_is_cdrom($drive);
91bd6c90
DM
3593 next if !$volid_hash->{$volid};
3594
3595 $drive->{size} = $volid_hash->{$volid}->{size};
3596 $changes = 1;
ed221350 3597 $conf->{$opt} = print_drive($vmid, $drive);
91bd6c90
DM
3598 }
3599 }
3600
3601 foreach my $volid (sort keys %$volid_hash) {
3602 next if $volid =~ m/vm-$vmid-state-/;
3603 next if $used->{$volid};
3604 $changes = 1;
ed221350 3605 add_unused_volume($conf, $volid);
91bd6c90
DM
3606 }
3607
3608 return $changes;
3609}
3610
3611sub rescan {
3612 my ($vmid, $nolock) = @_;
3613
3614 my $cfg = PVE::Cluster::cfs_read_file("storage.cfg");
3615
3616 my $volid_hash = scan_volids($cfg, $vmid);
3617
3618 my $updatefn = sub {
3619 my ($vmid) = @_;
3620
ed221350 3621 my $conf = load_config($vmid);
91bd6c90 3622
ed221350 3623 check_lock($conf);
91bd6c90 3624
ed221350 3625 my $changes = update_disksize($vmid, $conf, $volid_hash);
91bd6c90 3626
ed221350 3627 update_config_nolock($vmid, $conf, 1) if $changes;
91bd6c90
DM
3628 };
3629
3630 if (defined($vmid)) {
3631 if ($nolock) {
3632 &$updatefn($vmid);
3633 } else {
ed221350 3634 lock_config($vmid, $updatefn, $vmid);
91bd6c90
DM
3635 }
3636 } else {
3637 my $vmlist = config_list();
3638 foreach my $vmid (keys %$vmlist) {
3639 if ($nolock) {
3640 &$updatefn($vmid);
3641 } else {
ed221350 3642 lock_config($vmid, $updatefn, $vmid);
91bd6c90
DM
3643 }
3644 }
3645 }
3646}
3647
3648sub restore_vma_archive {
3649 my ($archive, $vmid, $user, $opts, $comp) = @_;
3650
3651 my $input = $archive eq '-' ? "<&STDIN" : undef;
3652 my $readfrom = $archive;
3653
3654 my $uncomp = '';
3655 if ($comp) {
3656 $readfrom = '-';
3657 my $qarchive = PVE::Tools::shellquote($archive);
3658 if ($comp eq 'gzip') {
3659 $uncomp = "zcat $qarchive|";
3660 } elsif ($comp eq 'lzop') {
3661 $uncomp = "lzop -d -c $qarchive|";
3662 } else {
3663 die "unknown compression method '$comp'\n";
3664 }
3665
3666 }
3667
3668 my $tmpdir = "/var/tmp/vzdumptmp$$";
3669 rmtree $tmpdir;
3670
3671 # disable interrupts (always do cleanups)
3672 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub {
3673 warn "got interrupt - ignored\n";
3674 };
3675
3676 my $mapfifo = "/var/tmp/vzdumptmp$$.fifo";
3677 POSIX::mkfifo($mapfifo, 0600);
3678 my $fifofh;
3679
3680 my $openfifo = sub {
3681 open($fifofh, '>', $mapfifo) || die $!;
3682 };
3683
3684 my $cmd = "${uncomp}vma extract -v -r $mapfifo $readfrom $tmpdir";
3685
3686 my $oldtimeout;
3687 my $timeout = 5;
3688
3689 my $devinfo = {};
3690
3691 my $rpcenv = PVE::RPCEnvironment::get();
3692
ed221350 3693 my $conffile = config_file($vmid);
91bd6c90
DM
3694 my $tmpfn = "$conffile.$$.tmp";
3695
ed221350
DM
3696 # Note: $oldconf is undef if VM does not exists
3697 my $oldconf = PVE::Cluster::cfs_read_file(cfs_config_path($vmid));
3698
91bd6c90
DM
3699 my $print_devmap = sub {
3700 my $virtdev_hash = {};
3701
3702 my $cfgfn = "$tmpdir/qemu-server.conf";
3703
3704 # we can read the config - that is already extracted
3705 my $fh = IO::File->new($cfgfn, "r") ||
3706 "unable to read qemu-server.conf - $!\n";
3707
3708 while (defined(my $line = <$fh>)) {
3709 if ($line =~ m/^\#qmdump\#map:(\S+):(\S+):(\S*):(\S*):$/) {
3710 my ($virtdev, $devname, $storeid, $format) = ($1, $2, $3, $4);
3711 die "archive does not contain data for drive '$virtdev'\n"
3712 if !$devinfo->{$devname};
3713 if (defined($opts->{storage})) {
3714 $storeid = $opts->{storage} || 'local';
3715 } elsif (!$storeid) {
3716 $storeid = 'local';
3717 }
3718 $format = 'raw' if !$format;
3719 $devinfo->{$devname}->{devname} = $devname;
3720 $devinfo->{$devname}->{virtdev} = $virtdev;
3721 $devinfo->{$devname}->{format} = $format;
3722 $devinfo->{$devname}->{storeid} = $storeid;
3723
3724 # check permission on storage
3725 my $pool = $opts->{pool}; # todo: do we need that?
3726 if ($user ne 'root@pam') {
3727 $rpcenv->check($user, "/storage/$storeid", ['Datastore.AllocateSpace']);
3728 }
3729
3730 $virtdev_hash->{$virtdev} = $devinfo->{$devname};
3731 }
3732 }
3733
3734 foreach my $devname (keys %$devinfo) {
3735 die "found no device mapping information for device '$devname'\n"
3736 if !$devinfo->{$devname}->{virtdev};
3737 }
3738
91bd6c90 3739 my $cfg = cfs_read_file('storage.cfg');
ed221350
DM
3740
3741 # create empty/temp config
3742 if ($oldconf) {
3743 PVE::Tools::file_set_contents($conffile, "memory: 128\n");
3744 foreach_drive($oldconf, sub {
3745 my ($ds, $drive) = @_;
3746
3747 return if drive_is_cdrom($drive);
3748
3749 my $volid = $drive->{file};
3750
3751 return if !$volid || $volid =~ m|^/|;
3752
3753 my ($path, $owner) = PVE::Storage::path($cfg, $volid);
3754 return if !$path || !$owner || ($owner != $vmid);
3755
3756 # Note: only delete disk we want to restore
3757 # other volumes will become unused
3758 if ($virtdev_hash->{$ds}) {
3759 PVE::Storage::vdisk_free($cfg, $volid);
3760 }
3761 });
3762 }
3763
3764 my $map = {};
91bd6c90
DM
3765 foreach my $virtdev (sort keys %$virtdev_hash) {
3766 my $d = $virtdev_hash->{$virtdev};
3767 my $alloc_size = int(($d->{size} + 1024 - 1)/1024);
3768 my $scfg = PVE::Storage::storage_config($cfg, $d->{storeid});
3769 my $volid = PVE::Storage::vdisk_alloc($cfg, $d->{storeid}, $vmid,
3770 $d->{format}, undef, $alloc_size);
3771 print STDERR "new volume ID is '$volid'\n";
3772 $d->{volid} = $volid;
3773 my $path = PVE::Storage::path($cfg, $volid);
3774
3775 my $write_zeros = 1;
3776 # fixme: what other storages types initialize volumes with zero?
013d5275
DM
3777 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs' ||
3778 $scfg->{type} eq 'sheepdog' || $scfg->{type} eq 'rbd') {
91bd6c90
DM
3779 $write_zeros = 0;
3780 }
3781
3782 print $fifofh "${write_zeros}:$d->{devname}=$path\n";
3783
3784 print "map '$d->{devname}' to '$path' (write zeros = ${write_zeros})\n";
3785 $map->{$virtdev} = $volid;
3786 }
3787
3788 $fh->seek(0, 0) || die "seek failed - $!\n";
3789
3790 my $outfd = new IO::File ($tmpfn, "w") ||
3791 die "unable to write config for VM $vmid\n";
3792
3793 my $cookie = { netcount => 0 };
3794 while (defined(my $line = <$fh>)) {
3795 restore_update_config_line($outfd, $cookie, $vmid, $map, $line, $opts->{unique});
3796 }
3797
3798 $fh->close();
3799 $outfd->close();
3800 };
3801
3802 eval {
3803 # enable interrupts
3804 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = $SIG{PIPE} = sub {
3805 die "interrupted by signal\n";
3806 };
3807 local $SIG{ALRM} = sub { die "got timeout\n"; };
3808
3809 $oldtimeout = alarm($timeout);
3810
3811 my $parser = sub {
3812 my $line = shift;
3813
3814 print "$line\n";
3815
3816 if ($line =~ m/^DEV:\sdev_id=(\d+)\ssize:\s(\d+)\sdevname:\s(\S+)$/) {
3817 my ($dev_id, $size, $devname) = ($1, $2, $3);
3818 $devinfo->{$devname} = { size => $size, dev_id => $dev_id };
3819 } elsif ($line =~ m/^CTIME: /) {
3820 &$print_devmap();
3821 print $fifofh "done\n";
3822 my $tmp = $oldtimeout || 0;
3823 $oldtimeout = undef;
3824 alarm($tmp);
3825 close($fifofh);
3826 }
3827 };
3828
3829 print "restore vma archive: $cmd\n";
3830 run_command($cmd, input => $input, outfunc => $parser, afterfork => $openfifo);
3831 };
3832 my $err = $@;
3833
3834 alarm($oldtimeout) if $oldtimeout;
3835
3836 unlink $mapfifo;
3837
3838 if ($err) {
3839 rmtree $tmpdir;
3840 unlink $tmpfn;
3841
3842 my $cfg = cfs_read_file('storage.cfg');
3843 foreach my $devname (keys %$devinfo) {
3844 my $volid = $devinfo->{$devname}->{volid};
3845 next if !$volid;
3846 eval {
3847 if ($volid =~ m|^/|) {
3848 unlink $volid || die 'unlink failed\n';
3849 } else {
3850 PVE::Storage::vdisk_free($cfg, $volid);
3851 }
3852 print STDERR "temporary volume '$volid' sucessfuly removed\n";
3853 };
3854 print STDERR "unable to cleanup '$volid' - $@" if $@;
3855 }
3856 die $err;
3857 }
3858
3859 rmtree $tmpdir;
ed221350
DM
3860
3861 rename($tmpfn, $conffile) ||
91bd6c90
DM
3862 die "unable to commit configuration file '$conffile'\n";
3863
ed221350
DM
3864 PVE::Cluster::cfs_update(); # make sure we read new file
3865
91bd6c90
DM
3866 eval { rescan($vmid, 1); };
3867 warn $@ if $@;
3868}
3869
3870sub restore_tar_archive {
3871 my ($archive, $vmid, $user, $opts) = @_;
3872
9c502e26 3873 if ($archive ne '-') {
ed221350 3874 my $firstfile = tar_archive_read_firstfile($archive);
9c502e26
DM
3875 die "ERROR: file '$archive' dos not lock like a QemuServer vzdump backup\n"
3876 if $firstfile ne 'qemu-server.conf';
3877 }
3e16d5fc 3878
ed221350 3879 my $storecfg = cfs_read_file('storage.cfg');
ebb55558 3880
ed221350 3881 # destroy existing data - keep empty config
ebb55558
DM
3882 my $vmcfgfn = PVE::QemuServer::config_file($vmid);
3883 destroy_vm($storecfg, $vmid, 1) if -f $vmcfgfn;
ed221350 3884
3e16d5fc
DM
3885 my $tocmd = "/usr/lib/qemu-server/qmextract";
3886
2415a446 3887 $tocmd .= " --storage " . PVE::Tools::shellquote($opts->{storage}) if $opts->{storage};
a0d1b1a2 3888 $tocmd .= " --pool " . PVE::Tools::shellquote($opts->{pool}) if $opts->{pool};
3e16d5fc
DM
3889 $tocmd .= ' --prealloc' if $opts->{prealloc};
3890 $tocmd .= ' --info' if $opts->{info};
3891
a0d1b1a2 3892 # tar option "xf" does not autodetect compression when read from STDIN,
9c502e26 3893 # so we pipe to zcat
2415a446
DM
3894 my $cmd = "zcat -f|tar xf " . PVE::Tools::shellquote($archive) . " " .
3895 PVE::Tools::shellquote("--to-command=$tocmd");
3e16d5fc
DM
3896
3897 my $tmpdir = "/var/tmp/vzdumptmp$$";
3898 mkpath $tmpdir;
3899
3900 local $ENV{VZDUMP_TMPDIR} = $tmpdir;
3901 local $ENV{VZDUMP_VMID} = $vmid;
a0d1b1a2 3902 local $ENV{VZDUMP_USER} = $user;
3e16d5fc 3903
ed221350 3904 my $conffile = config_file($vmid);
3e16d5fc
DM
3905 my $tmpfn = "$conffile.$$.tmp";
3906
3907 # disable interrupts (always do cleanups)
3908 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub {
3909 print STDERR "got interrupt - ignored\n";
3910 };
3911
afdb31d5 3912 eval {
3e16d5fc
DM
3913 # enable interrupts
3914 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = $SIG{PIPE} = sub {
3915 die "interrupted by signal\n";
3916 };
3917
9c502e26
DM
3918 if ($archive eq '-') {
3919 print "extracting archive from STDIN\n";
3920 run_command($cmd, input => "<&STDIN");
3921 } else {
3922 print "extracting archive '$archive'\n";
3923 run_command($cmd);
3924 }
3e16d5fc
DM
3925
3926 return if $opts->{info};
3927
3928 # read new mapping
3929 my $map = {};
3930 my $statfile = "$tmpdir/qmrestore.stat";
3931 if (my $fd = IO::File->new($statfile, "r")) {
3932 while (defined (my $line = <$fd>)) {
3933 if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
3934 $map->{$1} = $2 if $1;
3935 } else {
3936 print STDERR "unable to parse line in statfile - $line\n";
3937 }
3938 }
3939 $fd->close();
3940 }
3941
3942 my $confsrc = "$tmpdir/qemu-server.conf";
3943
3944 my $srcfd = new IO::File($confsrc, "r") ||
3945 die "unable to open file '$confsrc'\n";
3946
3947 my $outfd = new IO::File ($tmpfn, "w") ||
3948 die "unable to write config for VM $vmid\n";
3949
91bd6c90 3950 my $cookie = { netcount => 0 };
3e16d5fc 3951 while (defined (my $line = <$srcfd>)) {
91bd6c90 3952 restore_update_config_line($outfd, $cookie, $vmid, $map, $line, $opts->{unique});
3e16d5fc
DM
3953 }
3954
3955 $srcfd->close();
3956 $outfd->close();
3957 };
3958 my $err = $@;
3959
afdb31d5 3960 if ($err) {
3e16d5fc
DM
3961
3962 unlink $tmpfn;
3963
ed221350 3964 tar_restore_cleanup($storecfg, "$tmpdir/qmrestore.stat") if !$opts->{info};
afdb31d5 3965
3e16d5fc 3966 die $err;
afdb31d5 3967 }
3e16d5fc
DM
3968
3969 rmtree $tmpdir;
3970
3971 rename $tmpfn, $conffile ||
3972 die "unable to commit configuration file '$conffile'\n";
91bd6c90 3973
ed221350
DM
3974 PVE::Cluster::cfs_update(); # make sure we read new file
3975
91bd6c90
DM
3976 eval { rescan($vmid, 1); };
3977 warn $@ if $@;
3e16d5fc
DM
3978};
3979
0d18dcfc
DM
3980
3981# Internal snapshots
3982
3983# NOTE: Snapshot create/delete involves several non-atomic
3984# action, and can take a long time.
3985# So we try to avoid locking the file and use 'lock' variable
3986# inside the config file instead.
3987
ef59d1ca
DM
3988my $snapshot_copy_config = sub {
3989 my ($source, $dest) = @_;
3990
3991 foreach my $k (keys %$source) {
3992 next if $k eq 'snapshots';
982c7f12
DM
3993 next if $k eq 'snapstate';
3994 next if $k eq 'snaptime';
18bfb361 3995 next if $k eq 'vmstate';
ef59d1ca
DM
3996 next if $k eq 'lock';
3997 next if $k eq 'digest';
db7c26e5 3998 next if $k eq 'description';
ef59d1ca
DM
3999 next if $k =~ m/^unused\d+$/;
4000
4001 $dest->{$k} = $source->{$k};
4002 }
4003};
4004
4005my $snapshot_apply_config = sub {
4006 my ($conf, $snap) = @_;
4007
4008 # copy snapshot list
4009 my $newconf = {
4010 snapshots => $conf->{snapshots},
4011 };
4012
db7c26e5 4013 # keep description and list of unused disks
ef59d1ca 4014 foreach my $k (keys %$conf) {
db7c26e5 4015 next if !($k =~ m/^unused\d+$/ || $k eq 'description');
ef59d1ca
DM
4016 $newconf->{$k} = $conf->{$k};
4017 }
4018
4019 &$snapshot_copy_config($snap, $newconf);
4020
4021 return $newconf;
4022};
4023
18bfb361
DM
4024sub foreach_writable_storage {
4025 my ($conf, $func) = @_;
4026
4027 my $sidhash = {};
4028
4029 foreach my $ds (keys %$conf) {
4030 next if !valid_drivename($ds);
4031
4032 my $drive = parse_drive($ds, $conf->{$ds});
4033 next if !$drive;
4034 next if drive_is_cdrom($drive);
4035
4036 my $volid = $drive->{file};
4037
4038 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
4039 $sidhash->{$sid} = $sid if $sid;
4040 }
4041
4042 foreach my $sid (sort keys %$sidhash) {
4043 &$func($sid);
4044 }
4045}
4046
4047my $alloc_vmstate_volid = sub {
4048 my ($storecfg, $vmid, $conf, $snapname) = @_;
4049
4050 # Note: we try to be smart when selecting a $target storage
4051
4052 my $target;
4053
4054 # search shared storage first
4055 foreach_writable_storage($conf, sub {
4056 my ($sid) = @_;
4057 my $scfg = PVE::Storage::storage_config($storecfg, $sid);
4058 return if !$scfg->{shared};
4059
4060 $target = $sid if !$target || $scfg->{path}; # prefer file based storage
4061 });
4062
4063 if (!$target) {
4064 # now search local storage
4065 foreach_writable_storage($conf, sub {
4066 my ($sid) = @_;
4067 my $scfg = PVE::Storage::storage_config($storecfg, $sid);
4068 return if $scfg->{shared};
4069
4070 $target = $sid if !$target || $scfg->{path}; # prefer file based storage;
4071 });
4072 }
4073
4074 $target = 'local' if !$target;
4075
fe6249f4
DM
4076 my $driver_state_size = 500; # assume 32MB is enough to safe all driver state;
4077 # we abort live save after $conf->{memory}, so we need at max twice that space
4078 my $size = $conf->{memory}*2 + $driver_state_size;
18bfb361
DM
4079
4080 my $name = "vm-$vmid-state-$snapname";
4081 my $scfg = PVE::Storage::storage_config($storecfg, $target);
4082 $name .= ".raw" if $scfg->{path}; # add filename extension for file base storage
4083 my $volid = PVE::Storage::vdisk_alloc($storecfg, $target, $vmid, 'raw', $name, $size*1024);
4084
4085 return $volid;
4086};
4087
0d18dcfc 4088my $snapshot_prepare = sub {
18bfb361 4089 my ($vmid, $snapname, $save_vmstate, $comment) = @_;
22c377f0
DM
4090
4091 my $snap;
0d18dcfc
DM
4092
4093 my $updatefn = sub {
4094
4095 my $conf = load_config($vmid);
4096
8b43bc11 4097 die "you can't take a snapshot if it's a template\n"
5295b23d
DM
4098 if is_template($conf);
4099
0d18dcfc
DM
4100 check_lock($conf);
4101
22c377f0
DM
4102 $conf->{lock} = 'snapshot';
4103
0d18dcfc
DM
4104 die "snapshot name '$snapname' already used\n"
4105 if defined($conf->{snapshots}->{$snapname});
4106
ee2f90b1 4107 my $storecfg = PVE::Storage::config();
7ea975ef 4108 die "snapshot feature is not available" if !has_feature('snapshot', $conf, $storecfg);
18bfb361 4109
782f4f75 4110 $snap = $conf->{snapshots}->{$snapname} = {};
0d18dcfc 4111
18bfb361
DM
4112 if ($save_vmstate && check_running($vmid)) {
4113 $snap->{vmstate} = &$alloc_vmstate_volid($storecfg, $vmid, $conf, $snapname);
4114 }
4115
ef59d1ca 4116 &$snapshot_copy_config($conf, $snap);
0d18dcfc 4117
782f4f75
DM
4118 $snap->{snapstate} = "prepare";
4119 $snap->{snaptime} = time();
4120 $snap->{description} = $comment if $comment;
4121
0d18dcfc
DM
4122 update_config_nolock($vmid, $conf, 1);
4123 };
4124
4125 lock_config($vmid, $updatefn);
22c377f0
DM
4126
4127 return $snap;
0d18dcfc
DM
4128};
4129
4130my $snapshot_commit = sub {
4131 my ($vmid, $snapname) = @_;
4132
4133 my $updatefn = sub {
4134
4135 my $conf = load_config($vmid);
4136
4137 die "missing snapshot lock\n"
4138 if !($conf->{lock} && $conf->{lock} eq 'snapshot');
4139
4140 my $snap = $conf->{snapshots}->{$snapname};
4141
4142 die "snapshot '$snapname' does not exist\n" if !defined($snap);
4143
4144 die "wrong snapshot state\n"
4145 if !($snap->{snapstate} && $snap->{snapstate} eq "prepare");
4146
4147 delete $snap->{snapstate};
ee2f90b1 4148 delete $conf->{lock};
0d18dcfc 4149
ef59d1ca 4150 my $newconf = &$snapshot_apply_config($conf, $snap);
0d18dcfc 4151
05e5ad3f
DM
4152 $newconf->{parent} = $snapname;
4153
0d18dcfc
DM
4154 update_config_nolock($vmid, $newconf, 1);
4155 };
4156
4157 lock_config($vmid, $updatefn);
4158};
4159
22c377f0
DM
4160sub snapshot_rollback {
4161 my ($vmid, $snapname) = @_;
4162
4163 my $snap;
4164
4165 my $prepare = 1;
4166
a3222b91
DM
4167 my $storecfg = PVE::Storage::config();
4168
22c377f0
DM
4169 my $updatefn = sub {
4170
4171 my $conf = load_config($vmid);
4172
8b43bc11 4173 die "you can't rollback if vm is a template\n" if is_template($conf);
90b0c6b3 4174
ab33a7c2
DM
4175 $snap = $conf->{snapshots}->{$snapname};
4176
4177 die "snapshot '$snapname' does not exist\n" if !defined($snap);
4178
4179 die "unable to rollback to incomplete snapshot (snapstate = $snap->{snapstate})\n"
4180 if $snap->{snapstate};
4181
a3222b91
DM
4182 if ($prepare) {
4183 check_lock($conf);
4184 vm_stop($storecfg, $vmid, undef, undef, 5, undef, undef);
4185 }
22c377f0
DM
4186
4187 die "unable to rollback vm $vmid: vm is running\n"
4188 if check_running($vmid);
4189
4190 if ($prepare) {
4191 $conf->{lock} = 'rollback';
4192 } else {
4193 die "got wrong lock\n" if !($conf->{lock} && $conf->{lock} eq 'rollback');
4194 delete $conf->{lock};
4195 }
4196
22c377f0
DM
4197 if (!$prepare) {
4198 # copy snapshot config to current config
ef59d1ca
DM
4199 $conf = &$snapshot_apply_config($conf, $snap);
4200 $conf->{parent} = $snapname;
22c377f0
DM
4201 }
4202
4203 update_config_nolock($vmid, $conf, 1);
a3222b91
DM
4204
4205 if (!$prepare && $snap->{vmstate}) {
4206 my $statefile = PVE::Storage::path($storecfg, $snap->{vmstate});
a3222b91
DM
4207 vm_start($storecfg, $vmid, $statefile);
4208 }
22c377f0
DM
4209 };
4210
4211 lock_config($vmid, $updatefn);
22c377f0
DM
4212
4213 foreach_drive($snap, sub {
4214 my ($ds, $drive) = @_;
4215
4216 return if drive_is_cdrom($drive);
4217
4218 my $volid = $drive->{file};
4219 my $device = "drive-$ds";
4220
79e57b29 4221 PVE::Storage::volume_snapshot_rollback($storecfg, $volid, $snapname);
22c377f0
DM
4222 });
4223
4224 $prepare = 0;
4225 lock_config($vmid, $updatefn);
4226}
4227
9dcf4909
DM
4228my $savevm_wait = sub {
4229 my ($vmid) = @_;
4230
4231 for(;;) {
ed221350 4232 my $stat = vm_mon_cmd_nocheck($vmid, "query-savevm");
9dcf4909
DM
4233 if (!$stat->{status}) {
4234 die "savevm not active\n";
4235 } elsif ($stat->{status} eq 'active') {
4236 sleep(1);
4237 next;
4238 } elsif ($stat->{status} eq 'completed') {
4239 last;
4240 } else {
4241 die "query-savevm returned status '$stat->{status}'\n";
4242 }
4243 }
4244};
4245
0d18dcfc 4246sub snapshot_create {
18bfb361 4247 my ($vmid, $snapname, $save_vmstate, $freezefs, $comment) = @_;
0d18dcfc 4248
18bfb361 4249 my $snap = &$snapshot_prepare($vmid, $snapname, $save_vmstate, $comment);
0d18dcfc 4250
18bfb361 4251 $freezefs = $save_vmstate = 0 if !$snap->{vmstate}; # vm is not running
030dd626 4252
3ee28e38
DM
4253 my $drivehash = {};
4254
18bfb361
DM
4255 my $running = check_running($vmid);
4256
0d18dcfc
DM
4257 eval {
4258 # create internal snapshots of all drives
22c377f0
DM
4259
4260 my $storecfg = PVE::Storage::config();
a3222b91
DM
4261
4262 if ($running) {
4263 if ($snap->{vmstate}) {
4264 my $path = PVE::Storage::path($storecfg, $snap->{vmstate});
9dcf4909
DM
4265 vm_mon_cmd($vmid, "savevm-start", statefile => $path);
4266 &$savevm_wait($vmid);
a3222b91 4267 } else {
9dcf4909 4268 vm_mon_cmd($vmid, "savevm-start");
a3222b91
DM
4269 }
4270 };
4271
4272 qga_freezefs($vmid) if $running && $freezefs;
22c377f0
DM
4273
4274 foreach_drive($snap, sub {
4275 my ($ds, $drive) = @_;
4276
4277 return if drive_is_cdrom($drive);
0d18dcfc 4278
22c377f0
DM
4279 my $volid = $drive->{file};
4280 my $device = "drive-$ds";
4281
4282 qemu_volume_snapshot($vmid, $device, $storecfg, $volid, $snapname);
3ee28e38 4283 $drivehash->{$ds} = 1;
22c377f0 4284 });
0d18dcfc 4285 };
22c377f0
DM
4286 my $err = $@;
4287
18bfb361 4288 eval { gqa_unfreezefs($vmid) if $running && $freezefs; };
22c377f0
DM
4289 warn $@ if $@;
4290
9dcf4909 4291 eval { vm_mon_cmd($vmid, "savevm-end") if $running; };
22c377f0
DM
4292 warn $@ if $@;
4293
4294 if ($err) {
0d18dcfc 4295 warn "snapshot create failed: starting cleanup\n";
3ee28e38 4296 eval { snapshot_delete($vmid, $snapname, 0, $drivehash); };
0d18dcfc
DM
4297 warn $@ if $@;
4298 die $err;
4299 }
4300
4301 &$snapshot_commit($vmid, $snapname);
4302}
4303
3ee28e38 4304# Note: $drivehash is only set when called from snapshot_create.
0d18dcfc 4305sub snapshot_delete {
3ee28e38 4306 my ($vmid, $snapname, $force, $drivehash) = @_;
0d18dcfc
DM
4307
4308 my $prepare = 1;
4309
22c377f0 4310 my $snap;
ee2f90b1 4311 my $unused = [];
0d18dcfc 4312
6cb1a8cf
DM
4313 my $unlink_parent = sub {
4314 my ($confref, $new_parent) = @_;
4315
4316 if ($confref->{parent} && $confref->{parent} eq $snapname) {
4317 if ($new_parent) {
4318 $confref->{parent} = $new_parent;
4319 } else {
4320 delete $confref->{parent};
4321 }
4322 }
4323 };
4324
0d18dcfc 4325 my $updatefn = sub {
2009f324 4326 my ($remove_drive) = @_;
0d18dcfc 4327
22c377f0 4328 my $conf = load_config($vmid);
0d18dcfc 4329
5295b23d
DM
4330 if (!$drivehash) {
4331 check_lock($conf);
8b43bc11 4332 die "you can't delete a snapshot if vm is a template\n"
5295b23d
DM
4333 if is_template($conf);
4334 }
0d18dcfc 4335
22c377f0 4336 $snap = $conf->{snapshots}->{$snapname};
0d18dcfc
DM
4337
4338 die "snapshot '$snapname' does not exist\n" if !defined($snap);
4339
4340 # remove parent refs
6cb1a8cf 4341 &$unlink_parent($conf, $snap->{parent});
0d18dcfc
DM
4342 foreach my $sn (keys %{$conf->{snapshots}}) {
4343 next if $sn eq $snapname;
6cb1a8cf 4344 &$unlink_parent($conf->{snapshots}->{$sn}, $snap->{parent});
0d18dcfc
DM
4345 }
4346
2009f324 4347 if ($remove_drive) {
18bfb361
DM
4348 if ($remove_drive eq 'vmstate') {
4349 delete $snap->{$remove_drive};
4350 } else {
4351 my $drive = parse_drive($remove_drive, $snap->{$remove_drive});
4352 my $volid = $drive->{file};
4353 delete $snap->{$remove_drive};
4354 add_unused_volume($conf, $volid);
4355 }
2009f324
DM
4356 }
4357
0d18dcfc
DM
4358 if ($prepare) {
4359 $snap->{snapstate} = 'delete';
4360 } else {
4361 delete $conf->{snapshots}->{$snapname};
3ee28e38 4362 delete $conf->{lock} if $drivehash;
ee2f90b1
DM
4363 foreach my $volid (@$unused) {
4364 add_unused_volume($conf, $volid);
4365 }
0d18dcfc
DM
4366 }
4367
4368 update_config_nolock($vmid, $conf, 1);
4369 };
4370
4371 lock_config($vmid, $updatefn);
4372
18bfb361 4373 # now remove vmstate file
0d18dcfc 4374
22c377f0
DM
4375 my $storecfg = PVE::Storage::config();
4376
18bfb361
DM
4377 if ($snap->{vmstate}) {
4378 eval { PVE::Storage::vdisk_free($storecfg, $snap->{vmstate}); };
4379 if (my $err = $@) {
4380 die $err if !$force;
4381 warn $err;
4382 }
4383 # save changes (remove vmstate from snapshot)
4384 lock_config($vmid, $updatefn, 'vmstate') if !$force;
4385 };
4386
4387 # now remove all internal snapshots
4388 foreach_drive($snap, sub {
22c377f0
DM
4389 my ($ds, $drive) = @_;
4390
4391 return if drive_is_cdrom($drive);
3ee28e38 4392
22c377f0
DM
4393 my $volid = $drive->{file};
4394 my $device = "drive-$ds";
4395
2009f324
DM
4396 if (!$drivehash || $drivehash->{$ds}) {
4397 eval { qemu_volume_snapshot_delete($vmid, $device, $storecfg, $volid, $snapname); };
4398 if (my $err = $@) {
4399 die $err if !$force;
4400 warn $err;
4401 }
3ee28e38 4402 }
2009f324
DM
4403
4404 # save changes (remove drive fron snapshot)
4405 lock_config($vmid, $updatefn, $ds) if !$force;
ee2f90b1 4406 push @$unused, $volid;
22c377f0 4407 });
0d18dcfc
DM
4408
4409 # now cleanup config
4410 $prepare = 0;
4411 lock_config($vmid, $updatefn);
4412}
4413
9cd07842 4414sub has_feature {
7ea975ef
AD
4415 my ($feature, $conf, $storecfg, $snapname, $running) = @_;
4416
4417 my $err = undef;
4418 foreach_drive($conf, sub {
4419 my ($ds, $drive) = @_;
4420
4421 return if drive_is_cdrom($drive);
4422 my $volid = $drive->{file};
4423 $err = 1 if !PVE::Storage::volume_has_feature($storecfg, $feature, $volid, $snapname, $running);
4424 });
4425
4426 return 1 if !$err;
4427}
04a69bb4
AD
4428
4429sub template_create {
4430 my ($vmid, $conf, $disk) = @_;
4431
4432 my $running = check_running($vmid);
8b43bc11 4433 die "you can't convert a vm to template if vm is running vm\n" if $running;
04a69bb4
AD
4434
4435 my $storecfg = PVE::Storage::config();
4436 my $i = 0;
4437
9cd07842
DM
4438 foreach_drive($conf, sub {
4439 my ($ds, $drive) = @_;
4440
4441 return if drive_is_cdrom($drive);
4442 return if $disk && $ds ne $disk;
4443
4444 my $volid = $drive->{file};
4445 die "volume '$volid' does not support template/clone\n"
a6f0e83b 4446 if !PVE::Storage::volume_has_feature($storecfg, 'template', $volid);
9cd07842
DM
4447 });
4448
04a69bb4
AD
4449 foreach_drive($conf, sub {
4450 my ($ds, $drive) = @_;
4451
4452 return if drive_is_cdrom($drive);
4453 return if $disk && $ds ne $disk;
4454
4455 my $volid = $drive->{file};
4456 my $voliddst = PVE::Storage::vdisk_create_base($storecfg, $volid);
4457 $drive->{file} = $voliddst;
4458 $conf->{$ds} = PVE::QemuServer::print_drive($vmid, $drive);
4459 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
4460
4461 });
4462 if($conf->{snapshots}){
4463 delete $conf->{parent};
4464 delete $conf->{snapshots};
4465 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
4466 #fixme : do we need to delete disks snapshots ?
4467 }
4468}
4469
624361b3
AD
4470sub is_template {
4471 my ($conf) = @_;
4472
4473 my $baseimagecount = 0;
4474 my $totalvolumecount = 0;
4475 my $storecfg = PVE::Storage::config();
4476
4477 foreach_drive($conf, sub {
4478 my ($ds, $drive) = @_;
4479 return if drive_is_cdrom($drive);
4480 $totalvolumecount++;
4481 my $volid = $drive->{file};
4482 if (PVE::Storage::volume_is_base($storecfg, $volid)){
4483 $baseimagecount++;
4484 }
4485
4486 });
4487
3e2bbcdc 4488 return 0 if $baseimagecount == 0;
624361b3
AD
4489 return 1 if $baseimagecount == $totalvolumecount; #full template
4490 return 2 if $baseimagecount < $totalvolumecount; #semi-template
624361b3
AD
4491}
4492
1e3baf05 44931;