]> git.proxmox.com Git - qemu-server.git/blame - PVE/QemuServer.pm
restrict name to DNS format 'dns-name'
[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;
14use Digest::SHA1;
15use Fcntl ':flock';
16use Cwd 'abs_path';
17use IPC::Open3;
18use Fcntl;
19use PVE::SafeSyslog;
20use Storable qw(dclone);
21use PVE::Exception qw(raise raise_param_exc);
22use PVE::Storage;
23use PVE::Tools qw(run_command lock_file file_read_firstline);
24use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file);
25use PVE::INotify;
26use PVE::ProcFSTools;
6b64503e 27use Time::HiRes qw(gettimeofday);
1e3baf05 28
7f0b5beb 29my $cpuinfo = PVE::ProcFSTools::read_cpuinfo();
1e3baf05 30
19672434 31# Note about locking: we use flock on the config file protect
1e3baf05
DM
32# against concurent actions.
33# Aditionaly, we have a 'lock' setting in the config file. This
34# can be set to 'migrate' or 'backup'. Most actions are not
35# allowed when such lock is set. But you can ignore this kind of
36# lock with the --skiplock flag.
37
1858638f
DM
38cfs_register_file('/qemu-server/',
39 \&parse_vm_config,
40 \&write_vm_config);
1e3baf05 41
3ea94c60
DM
42PVE::JSONSchema::register_standard_option('skiplock', {
43 description => "Ignore locks - only root is allowed to use this option.",
afdb31d5 44 type => 'boolean',
3ea94c60
DM
45 optional => 1,
46});
47
48PVE::JSONSchema::register_standard_option('pve-qm-stateuri', {
49 description => "Some command save/restore state from this location.",
50 type => 'string',
51 maxLength => 128,
52 optional => 1,
53});
54
1e3baf05
DM
55#no warnings 'redefine';
56
57unless(defined(&_VZSYSCALLS_H_)) {
58 eval 'sub _VZSYSCALLS_H_ () {1;}' unless defined(&_VZSYSCALLS_H_);
59 require 'sys/syscall.ph';
60 if(defined(&__x86_64__)) {
61 eval 'sub __NR_fairsched_vcpus () {499;}' unless defined(&__NR_fairsched_vcpus);
62 eval 'sub __NR_fairsched_mknod () {504;}' unless defined(&__NR_fairsched_mknod);
63 eval 'sub __NR_fairsched_rmnod () {505;}' unless defined(&__NR_fairsched_rmnod);
64 eval 'sub __NR_fairsched_chwt () {506;}' unless defined(&__NR_fairsched_chwt);
65 eval 'sub __NR_fairsched_mvpr () {507;}' unless defined(&__NR_fairsched_mvpr);
66 eval 'sub __NR_fairsched_rate () {508;}' unless defined(&__NR_fairsched_rate);
67 eval 'sub __NR_setluid () {501;}' unless defined(&__NR_setluid);
68 eval 'sub __NR_setublimit () {502;}' unless defined(&__NR_setublimit);
69 }
70 elsif(defined( &__i386__) ) {
71 eval 'sub __NR_fairsched_mknod () {500;}' unless defined(&__NR_fairsched_mknod);
72 eval 'sub __NR_fairsched_rmnod () {501;}' unless defined(&__NR_fairsched_rmnod);
73 eval 'sub __NR_fairsched_chwt () {502;}' unless defined(&__NR_fairsched_chwt);
74 eval 'sub __NR_fairsched_mvpr () {503;}' unless defined(&__NR_fairsched_mvpr);
75 eval 'sub __NR_fairsched_rate () {504;}' unless defined(&__NR_fairsched_rate);
76 eval 'sub __NR_fairsched_vcpus () {505;}' unless defined(&__NR_fairsched_vcpus);
77 eval 'sub __NR_setluid () {511;}' unless defined(&__NR_setluid);
78 eval 'sub __NR_setublimit () {512;}' unless defined(&__NR_setublimit);
79 } else {
80 die("no fairsched syscall for this arch");
81 }
82 require 'asm/ioctl.ph';
83 eval 'sub KVM_GET_API_VERSION () { &_IO(0xAE, 0x);}' unless defined(&KVM_GET_API_VERSION);
84}
85
86sub fairsched_mknod {
87 my ($parent, $weight, $desired) = @_;
88
6b64503e 89 return syscall(&__NR_fairsched_mknod, int($parent), int($weight), int($desired));
1e3baf05
DM
90}
91
92sub fairsched_rmnod {
93 my ($id) = @_;
94
6b64503e 95 return syscall(&__NR_fairsched_rmnod, int($id));
1e3baf05
DM
96}
97
98sub fairsched_mvpr {
99 my ($pid, $newid) = @_;
100
6b64503e 101 return syscall(&__NR_fairsched_mvpr, int($pid), int($newid));
1e3baf05
DM
102}
103
104sub fairsched_vcpus {
105 my ($id, $vcpus) = @_;
106
6b64503e 107 return syscall(&__NR_fairsched_vcpus, int($id), int($vcpus));
1e3baf05
DM
108}
109
110sub fairsched_rate {
111 my ($id, $op, $rate) = @_;
112
6b64503e 113 return syscall(&__NR_fairsched_rate, int($id), int($op), int($rate));
1e3baf05
DM
114}
115
116use constant FAIRSCHED_SET_RATE => 0;
117use constant FAIRSCHED_DROP_RATE => 1;
118use constant FAIRSCHED_GET_RATE => 2;
119
120sub fairsched_cpulimit {
121 my ($id, $limit) = @_;
122
6b64503e 123 my $cpulim1024 = int($limit * 1024 / 100);
1e3baf05
DM
124 my $op = $cpulim1024 ? FAIRSCHED_SET_RATE : FAIRSCHED_DROP_RATE;
125
6b64503e 126 return fairsched_rate($id, $op, $cpulim1024);
1e3baf05
DM
127}
128
129my $nodename = PVE::INotify::nodename();
130
131mkdir "/etc/pve/nodes/$nodename";
132my $confdir = "/etc/pve/nodes/$nodename/qemu-server";
133mkdir $confdir;
134
135my $var_run_tmpdir = "/var/run/qemu-server";
136mkdir $var_run_tmpdir;
137
138my $lock_dir = "/var/lock/qemu-server";
139mkdir $lock_dir;
140
141my $pcisysfs = "/sys/bus/pci";
142
1e3baf05
DM
143my $confdesc = {
144 onboot => {
145 optional => 1,
146 type => 'boolean',
147 description => "Specifies whether a VM will be started during system bootup.",
148 default => 0,
149 },
150 autostart => {
151 optional => 1,
152 type => 'boolean',
153 description => "Automatic restart after crash (currently ignored).",
154 default => 0,
155 },
2ff09f52
DA
156 hotplug => {
157 optional => 1,
e8b9c17c 158 type => 'boolean',
2ff09f52
DA
159 description => "Activate hotplug for disk and network device",
160 default => 0,
161 },
1e3baf05
DM
162 reboot => {
163 optional => 1,
164 type => 'boolean',
165 description => "Allow reboot. If set to '0' the VM exit on reboot.",
166 default => 1,
167 },
168 lock => {
169 optional => 1,
170 type => 'string',
171 description => "Lock/unlock the VM.",
172 enum => [qw(migrate backup)],
173 },
174 cpulimit => {
175 optional => 1,
176 type => 'integer',
177 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.",
178 minimum => 0,
179 default => 0,
180 },
181 cpuunits => {
182 optional => 1,
183 type => 'integer',
184 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.",
185 minimum => 0,
186 maximum => 500000,
187 default => 1000,
188 },
189 memory => {
190 optional => 1,
191 type => 'integer',
7878afeb 192 description => "Amount of RAM for the VM in MB. This is the maximum available memory when you use the balloon device.",
1e3baf05
DM
193 minimum => 16,
194 default => 512,
195 },
13a48620
DA
196 balloon => {
197 optional => 1,
198 type => 'integer',
199 description => "Amount of target RAM for the VM in MB.",
7878afeb 200 minimum => 16,
13a48620 201 },
1e3baf05
DM
202 keyboard => {
203 optional => 1,
204 type => 'string',
205 description => "Keybord layout for vnc server. Default is read from the datacenter configuration file.",
e95fe75f 206 enum => PVE::Tools::kvmkeymaplist(),
1e3baf05
DM
207 default => 'en-us',
208 },
209 name => {
210 optional => 1,
7fabe17d 211 type => 'string', format => 'dns-name',
1e3baf05
DM
212 description => "Set a name for the VM. Only used on the configuration web interface.",
213 },
214 description => {
215 optional => 1,
216 type => 'string',
0581fe4f 217 description => "Description for the VM. Only used on the configuration web interface. This is saved as comment inside the configuration file.",
1e3baf05
DM
218 },
219 ostype => {
220 optional => 1,
221 type => 'string',
222 enum => [qw(other wxp w2k w2k3 w2k8 wvista win7 l24 l26)],
223 description => <<EODESC,
224Used to enable special optimization/features for specific
225operating systems:
226
227other => unspecified OS
228wxp => Microsoft Windows XP
229w2k => Microsoft Windows 2000
230w2k3 => Microsoft Windows 2003
231w2k8 => Microsoft Windows 2008
232wvista => Microsoft Windows Vista
233win7 => Microsoft Windows 7
234l24 => Linux 2.4 Kernel
235l26 => Linux 2.6/3.X Kernel
236
237other|l24|l26 ... no special behaviour
238wxp|w2k|w2k3|w2k8|wvista|win7 ... use --localtime switch
239EODESC
240 },
241 boot => {
242 optional => 1,
243 type => 'string',
244 description => "Boot on floppy (a), hard disk (c), CD-ROM (d), or network (n).",
245 pattern => '[acdn]{1,4}',
32baffb4 246 default => 'cdn',
1e3baf05
DM
247 },
248 bootdisk => {
249 optional => 1,
250 type => 'string', format => 'pve-qm-bootdisk',
251 description => "Enable booting from specified disk.",
252 pattern => '(ide|scsi|virtio)\d+',
253 },
254 smp => {
255 optional => 1,
256 type => 'integer',
257 description => "The number of CPUs. Please use option -sockets instead.",
258 minimum => 1,
259 default => 1,
260 },
261 sockets => {
262 optional => 1,
263 type => 'integer',
264 description => "The number of CPU sockets.",
265 minimum => 1,
266 default => 1,
267 },
268 cores => {
269 optional => 1,
270 type => 'integer',
271 description => "The number of cores per socket.",
272 minimum => 1,
273 default => 1,
274 },
275 acpi => {
276 optional => 1,
277 type => 'boolean',
278 description => "Enable/disable ACPI.",
279 default => 1,
280 },
281 kvm => {
282 optional => 1,
283 type => 'boolean',
284 description => "Enable/disable KVM hardware virtualization.",
285 default => 1,
286 },
287 tdf => {
288 optional => 1,
289 type => 'boolean',
da21653b 290 description => "Enable/disable time drift fix. This is ignored for kvm versions newer that 1.0 (not needed anymore).",
1e3baf05
DM
291 default => 1,
292 },
19672434 293 localtime => {
1e3baf05
DM
294 optional => 1,
295 type => 'boolean',
296 description => "Set the real time clock to local time. This is enabled by default if ostype indicates a Microsoft OS.",
297 },
298 freeze => {
299 optional => 1,
300 type => 'boolean',
301 description => "Freeze CPU at startup (use 'c' monitor command to start execution).",
302 },
303 vga => {
304 optional => 1,
305 type => 'string',
306 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 win7/w2k8, and 'cirrur' for other OS types",
307 enum => [qw(std cirrus vmware)],
308 },
0ea9541d
DM
309 watchdog => {
310 optional => 1,
311 type => 'string', format => 'pve-qm-watchdog',
312 typetext => '[[model=]i6300esb|ib700] [,[action=]reset|shutdown|poweroff|pause|debug|none]',
313 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)",
314 },
1e3baf05
DM
315 startdate => {
316 optional => 1,
19672434 317 type => 'string',
1e3baf05
DM
318 typetext => "(now | YYYY-MM-DD | YYYY-MM-DDTHH:MM:SS)",
319 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'.",
320 pattern => '(now|\d{4}-\d{1,2}-\d{1,2}(T\d{1,2}:\d{1,2}:\d{1,2})?)',
321 default => 'now',
322 },
323 args => {
324 optional => 1,
325 type => 'string',
326 description => <<EODESCR,
327Note: this option is for experts only. It allows you to pass arbitrary arguments to kvm, for example:
328
329args: -no-reboot -no-hpet
330EODESCR
331 },
332 tablet => {
333 optional => 1,
334 type => 'boolean',
335 default => 1,
336 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.",
337 },
338 migrate_speed => {
339 optional => 1,
340 type => 'integer',
341 description => "Set maximum speed (in MB/s) for migrations. Value 0 is no limit.",
342 minimum => 0,
343 default => 0,
344 },
345 migrate_downtime => {
346 optional => 1,
347 type => 'integer',
348 description => "Set maximum tolerated downtime (in seconds) for migrations.",
349 minimum => 0,
350 default => 1,
351 },
352 cdrom => {
353 optional => 1,
354 type => 'string', format => 'pve-qm-drive',
355 typetext => 'volume',
356 description => "This is an alias for option -ide2",
357 },
358 cpu => {
359 optional => 1,
360 description => "Emulated CPU type.",
361 type => 'string',
5b805e50 362 enum => [ qw(486 athlon pentium pentium2 pentium3 coreduo core2duo kvm32 kvm64 qemu32 qemu64 phenom cpu64-rhel6 cpu64-rhel5 Conroe Penryn Nehalem Westmere Opteron_G1 Opteron_G2 Opteron_G3 host) ],
1e3baf05
DM
363 default => 'qemu64',
364 },
365};
366
367# what about other qemu settings ?
368#cpu => 'string',
369#machine => 'string',
370#fda => 'file',
371#fdb => 'file',
372#mtdblock => 'file',
373#sd => 'file',
374#pflash => 'file',
375#snapshot => 'bool',
376#bootp => 'file',
377##tftp => 'dir',
378##smb => 'dir',
379#kernel => 'file',
380#append => 'string',
381#initrd => 'file',
382##soundhw => 'string',
383
384while (my ($k, $v) = each %$confdesc) {
385 PVE::JSONSchema::register_standard_option("pve-qm-$k", $v);
386}
387
388my $MAX_IDE_DISKS = 4;
f62db2a4
DA
389my $MAX_SCSI_DISKS = 14;
390my $MAX_VIRTIO_DISKS = 6;
cdb0931f 391my $MAX_SATA_DISKS = 6;
1e3baf05 392my $MAX_USB_DEVICES = 5;
f62db2a4 393my $MAX_NETS = 6;
1e3baf05 394my $MAX_UNUSED_DISKS = 8;
040b06b7 395my $MAX_HOSTPCI_DEVICES = 2;
bae179aa 396my $MAX_SERIAL_PORTS = 4;
1989a89c 397my $MAX_PARALLEL_PORTS = 3;
1e3baf05
DM
398
399my $nic_model_list = ['rtl8139', 'ne2k_pci', 'e1000', 'pcnet', 'virtio',
400 'ne2k_isa', 'i82551', 'i82557b', 'i82559er'];
6b64503e 401my $nic_model_list_txt = join(' ', sort @$nic_model_list);
1e3baf05
DM
402
403# fixme:
404my $netdesc = {
405 optional => 1,
406 type => 'string', format => 'pve-qm-net',
407 typetext => "MODEL=XX:XX:XX:XX:XX:XX [,bridge=<dev>][,rate=<mbps>]",
408 description => <<EODESCR,
19672434 409Specify network devices.
1e3baf05
DM
410
411MODEL is one of: $nic_model_list_txt
412
19672434 413XX:XX:XX:XX:XX:XX should be an unique MAC address. This is
1e3baf05
DM
414automatically generated if not specified.
415
416The bridge parameter can be used to automatically add the interface to a bridge device. The Proxmox VE standard bridge is called 'vmbr0'.
417
418Option 'rate' is used to limit traffic bandwidth from and to this interface. It is specified as floating point number, unit is 'Megabytes per second'.
419
420If you specify no bridge, we create a kvm 'user' (NATed) network device, which provides DHCP and DNS services. The following addresses are used:
421
42210.0.2.2 Gateway
42310.0.2.3 DNS Server
42410.0.2.4 SMB Server
425
426The DHCP server assign addresses to the guest starting from 10.0.2.15.
427
428EODESCR
429};
430PVE::JSONSchema::register_standard_option("pve-qm-net", $netdesc);
431
432for (my $i = 0; $i < $MAX_NETS; $i++) {
433 $confdesc->{"net$i"} = $netdesc;
434}
435
436my $drivename_hash;
19672434 437
1e3baf05
DM
438my $idedesc = {
439 optional => 1,
440 type => 'string', format => 'pve-qm-drive',
5534dd1a 441 typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe] [,format=f] [,backup=yes|no] [,aio=native|threads]',
1e3baf05
DM
442 description => "Use volume as IDE hard disk or CD-ROM (n is 0 to 3).",
443};
444PVE::JSONSchema::register_standard_option("pve-qm-ide", $idedesc);
445
446my $scsidesc = {
447 optional => 1,
448 type => 'string', format => 'pve-qm-drive',
231f2e13 449 typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe] [,format=f] [,backup=yes|no] [,aio=native|threads]',
2fe1a152 450 description => "Use volume as SCSI hard disk or CD-ROM (n is 0 to 13).",
1e3baf05
DM
451};
452PVE::JSONSchema::register_standard_option("pve-qm-scsi", $scsidesc);
453
cdb0931f
DA
454my $satadesc = {
455 optional => 1,
456 type => 'string', format => 'pve-qm-drive',
457 typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe] [,format=f] [,backup=yes|no] [,aio=native|threads]',
458 description => "Use volume as SATA hard disk or CD-ROM (n is 0 to 5).",
459};
460PVE::JSONSchema::register_standard_option("pve-qm-sata", $satadesc);
461
1e3baf05
DM
462my $virtiodesc = {
463 optional => 1,
464 type => 'string', format => 'pve-qm-drive',
5534dd1a 465 typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe] [,format=f] [,backup=yes|no] [,aio=native|threads]',
2fe1a152 466 description => "Use volume as VIRTIO hard disk (n is 0 to 5).",
1e3baf05
DM
467};
468PVE::JSONSchema::register_standard_option("pve-qm-virtio", $virtiodesc);
469
470my $usbdesc = {
471 optional => 1,
472 type => 'string', format => 'pve-qm-usb-device',
473 typetext => 'host=HOSTUSBDEVICE',
474 description => <<EODESCR,
2fe1a152 475Configure an USB device (n is 0 to 4). This can be used to
1e3baf05
DM
476pass-through usb devices to the guest. HOSTUSBDEVICE syntax is:
477
19672434 478'bus-port(.port)*' (decimal numbers) or
1e3baf05
DM
479'vendor_id:product_id' (hexadeciaml numbers)
480
19672434 481You can use the 'lsusb -t' command to list existing usb devices.
1e3baf05
DM
482
483Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
484
485EODESCR
486};
487PVE::JSONSchema::register_standard_option("pve-qm-usb", $usbdesc);
488
040b06b7
DA
489my $hostpcidesc = {
490 optional => 1,
491 type => 'string', format => 'pve-qm-hostpci',
492 typetext => "HOSTPCIDEVICE",
493 description => <<EODESCR,
494Map host pci devices. HOSTPCIDEVICE syntax is:
495
496'bus:dev.func' (hexadecimal numbers)
497
498You can us the 'lspci' command to list existing pci devices.
499
500Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
501
502Experimental: user reported problems with this option.
503EODESCR
504};
505PVE::JSONSchema::register_standard_option("pve-qm-hostpci", $hostpcidesc);
506
bae179aa
DA
507my $serialdesc = {
508 optional => 1,
ca0cef26 509 type => 'string',
2fe1a152 510 pattern => '/dev/ttyS\d+',
bae179aa 511 description => <<EODESCR,
19672434 512Map host serial devices (n is 0 to 3).
bae179aa
DA
513
514Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
515
516Experimental: user reported problems with this option.
517EODESCR
518};
bae179aa 519
1989a89c
DA
520my $paralleldesc= {
521 optional => 1,
ca0cef26 522 type => 'string',
2fe1a152 523 pattern => '/dev/parport\d+',
1989a89c 524 description => <<EODESCR,
19672434 525Map host parallel devices (n is 0 to 2).
1989a89c
DA
526
527Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
528
529Experimental: user reported problems with this option.
530EODESCR
531};
1989a89c
DA
532
533for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
534 $confdesc->{"parallel$i"} = $paralleldesc;
535}
536
bae179aa
DA
537for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
538 $confdesc->{"serial$i"} = $serialdesc;
539}
540
040b06b7
DA
541for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
542 $confdesc->{"hostpci$i"} = $hostpcidesc;
543}
1e3baf05
DM
544
545for (my $i = 0; $i < $MAX_IDE_DISKS; $i++) {
546 $drivename_hash->{"ide$i"} = 1;
547 $confdesc->{"ide$i"} = $idedesc;
548}
549
cdb0931f
DA
550for (my $i = 0; $i < $MAX_SATA_DISKS; $i++) {
551 $drivename_hash->{"sata$i"} = 1;
552 $confdesc->{"sata$i"} = $satadesc;
553}
554
1e3baf05
DM
555for (my $i = 0; $i < $MAX_SCSI_DISKS; $i++) {
556 $drivename_hash->{"scsi$i"} = 1;
557 $confdesc->{"scsi$i"} = $scsidesc ;
558}
559
560for (my $i = 0; $i < $MAX_VIRTIO_DISKS; $i++) {
561 $drivename_hash->{"virtio$i"} = 1;
562 $confdesc->{"virtio$i"} = $virtiodesc;
563}
564
565for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
566 $confdesc->{"usb$i"} = $usbdesc;
567}
568
569my $unuseddesc = {
570 optional => 1,
571 type => 'string', format => 'pve-volume-id',
572 description => "Reference to unused volumes.",
573};
574
575for (my $i = 0; $i < $MAX_UNUSED_DISKS; $i++) {
576 $confdesc->{"unused$i"} = $unuseddesc;
577}
578
579my $kvm_api_version = 0;
580
581sub kvm_version {
582
583 return $kvm_api_version if $kvm_api_version;
584
6b64503e 585 my $fh = IO::File->new("</dev/kvm") ||
1e3baf05
DM
586 return 0;
587
6b64503e 588 if (my $v = $fh->ioctl(KVM_GET_API_VERSION(), 0)) {
1e3baf05
DM
589 $kvm_api_version = $v;
590 }
591
592 $fh->close();
593
594 return $kvm_api_version;
595}
596
597my $kvm_user_version;
598
599sub kvm_user_version {
600
601 return $kvm_user_version if $kvm_user_version;
602
603 $kvm_user_version = 'unknown';
604
605 my $tmp = `kvm -help 2>/dev/null`;
19672434 606
a3c52213 607 if ($tmp =~ m/^QEMU( PC)? emulator version (\d+\.\d+(\.\d+)?) /) {
1e3baf05
DM
608 $kvm_user_version = $2;
609 }
610
611 return $kvm_user_version;
612
613}
614
615my $kernel_has_vhost_net = -c '/dev/vhost-net';
616
617sub disknames {
618 # order is important - used to autoselect boot disk
19672434 619 return ((map { "ide$_" } (0 .. ($MAX_IDE_DISKS - 1))),
1e3baf05 620 (map { "scsi$_" } (0 .. ($MAX_SCSI_DISKS - 1))),
cdb0931f
DA
621 (map { "virtio$_" } (0 .. ($MAX_VIRTIO_DISKS - 1))),
622 (map { "sata$_" } (0 .. ($MAX_SATA_DISKS - 1))));
1e3baf05
DM
623}
624
625sub valid_drivename {
626 my $dev = shift;
627
6b64503e 628 return defined($drivename_hash->{$dev});
1e3baf05
DM
629}
630
631sub option_exists {
632 my $key = shift;
633 return defined($confdesc->{$key});
19672434 634}
1e3baf05
DM
635
636sub nic_models {
637 return $nic_model_list;
638}
639
640sub os_list_description {
641
642 return {
643 other => 'Other',
644 wxp => 'Windows XP',
645 w2k => 'Windows 2000',
646 w2k3 =>, 'Windows 2003',
647 w2k8 => 'Windows 2008',
648 wvista => 'Windows Vista',
649 win7 => 'Windows 7',
650 l24 => 'Linux 2.4',
651 l26 => 'Linux 2.6',
19672434 652 };
1e3baf05
DM
653}
654
1e3baf05
DM
655sub disk_devive_info {
656 my $dev = shift;
657
658 die "unknown disk device format '$dev'" if $dev !~ m/^(ide|scsi|virtio)(\d+)$/;
659
660 my $bus = $1;
661 my $index = $2;
662 my $maxdev = 1024;
663
664 if ($bus eq 'ide') {
665 $maxdev = 2;
666 } elsif ($bus eq 'scsi') {
f62db2a4 667 $maxdev = 7;
1e3baf05
DM
668 }
669
6b64503e 670 my $controller = int($index / $maxdev);
1e3baf05
DM
671 my $unit = $index % $maxdev;
672
673
674 return { bus => $bus, desc => uc($bus) . " $controller:$unit",
675 controller => $controller, unit => $unit, index => $index };
676
677}
678
679sub qemu_drive_name {
19672434 680 my ($dev, $media) = @_;
1e3baf05 681
6b64503e 682 my $info = disk_devive_info($dev);
1e3baf05
DM
683 my $mediastr = '';
684
685 if (($info->{bus} eq 'ide') || ($info->{bus} eq 'scsi')) {
686 $mediastr = ($media eq 'cdrom') ? "-cd" : "-hd";
19672434 687 return sprintf("%s%i%s%i", $info->{bus}, $info->{controller},
1e3baf05
DM
688 $mediastr, $info->{unit});
689 } else {
19672434 690 return sprintf("%s%i", $info->{bus}, $info->{index});
1e3baf05
DM
691 }
692}
693
694my $cdrom_path;
695
696sub get_cdrom_path {
697
698 return $cdrom_path if $cdrom_path;
699
700 return $cdrom_path = "/dev/cdrom" if -l "/dev/cdrom";
701 return $cdrom_path = "/dev/cdrom1" if -l "/dev/cdrom1";
702 return $cdrom_path = "/dev/cdrom2" if -l "/dev/cdrom2";
703}
704
705sub get_iso_path {
706 my ($storecfg, $vmid, $cdrom) = @_;
707
708 if ($cdrom eq 'cdrom') {
709 return get_cdrom_path();
710 } elsif ($cdrom eq 'none') {
711 return '';
712 } elsif ($cdrom =~ m|^/|) {
713 return $cdrom;
714 } else {
6b64503e 715 return PVE::Storage::path($storecfg, $cdrom);
1e3baf05
DM
716 }
717}
718
719# try to convert old style file names to volume IDs
720sub filename_to_volume_id {
721 my ($vmid, $file, $media) = @_;
722
723 if (!($file eq 'none' || $file eq 'cdrom' ||
724 $file =~ m|^/dev/.+| || $file =~ m/^([^:]+):(.+)$/)) {
19672434 725
1e3baf05 726 return undef if $file =~ m|/|;
19672434 727
1e3baf05
DM
728 if ($media && $media eq 'cdrom') {
729 $file = "local:iso/$file";
730 } else {
731 $file = "local:$vmid/$file";
732 }
733 }
734
735 return $file;
736}
737
738sub verify_media_type {
739 my ($opt, $vtype, $media) = @_;
740
741 return if !$media;
742
743 my $etype;
744 if ($media eq 'disk') {
745 $etype = 'image';
746 } elsif ($media eq 'cdrom') {
747 $etype = 'iso';
748 } else {
749 die "internal error";
750 }
751
752 return if ($vtype eq $etype);
19672434 753
1e3baf05
DM
754 raise_param_exc({ $opt => "unexpected media type ($vtype != $etype)" });
755}
756
757sub cleanup_drive_path {
758 my ($opt, $storecfg, $drive) = @_;
759
760 # try to convert filesystem paths to volume IDs
761
762 if (($drive->{file} !~ m/^(cdrom|none)$/) &&
763 ($drive->{file} !~ m|^/dev/.+|) &&
764 ($drive->{file} !~ m/^([^:]+):(.+)$/) &&
19672434 765 ($drive->{file} !~ m/^\d+$/)) {
1e3baf05
DM
766 my ($vtype, $volid) = PVE::Storage::path_to_volume_id($storecfg, $drive->{file});
767 raise_param_exc({ $opt => "unable to associate path '$drive->{file}' to any storage"}) if !$vtype;
768 $drive->{media} = 'cdrom' if !$drive->{media} && $vtype eq 'iso';
769 verify_media_type($opt, $vtype, $drive->{media});
770 $drive->{file} = $volid;
771 }
772
773 $drive->{media} = 'cdrom' if !$drive->{media} && $drive->{file} =~ m/^(cdrom|none)$/;
774}
775
776sub create_conf_nolock {
777 my ($vmid, $settings) = @_;
778
6b64503e 779 my $filename = config_file($vmid);
1e3baf05
DM
780
781 die "configuration file '$filename' already exists\n" if -f $filename;
19672434 782
1e3baf05
DM
783 my $defaults = load_defaults();
784
785 $settings->{name} = "vm$vmid" if !$settings->{name};
786 $settings->{memory} = $defaults->{memory} if !$settings->{memory};
787
788 my $data = '';
789 foreach my $opt (keys %$settings) {
790 next if !$confdesc->{$opt};
791
792 my $value = $settings->{$opt};
793 next if !$value;
794
795 $data .= "$opt: $value\n";
796 }
797
798 PVE::Tools::file_set_contents($filename, $data);
799}
800
801# ideX = [volume=]volume-id[,media=d][,cyls=c,heads=h,secs=s[,trans=t]]
802# [,snapshot=on|off][,cache=on|off][,format=f][,backup=yes|no]
803# [,aio=native|threads]
804
805sub parse_drive {
806 my ($key, $data) = @_;
807
808 my $res = {};
19672434 809
1e3baf05
DM
810 # $key may be undefined - used to verify JSON parameters
811 if (!defined($key)) {
812 $res->{interface} = 'unknown'; # should not harm when used to verify parameters
813 $res->{index} = 0;
814 } elsif ($key =~ m/^([^\d]+)(\d+)$/) {
815 $res->{interface} = $1;
816 $res->{index} = $2;
817 } else {
818 return undef;
819 }
820
821 foreach my $p (split (/,/, $data)) {
822 next if $p =~ m/^\s*$/;
823
824 if ($p =~ m/^(file|volume|cyls|heads|secs|trans|media|snapshot|cache|format|rerror|werror|backup|aio)=(.+)$/) {
825 my ($k, $v) = ($1, $2);
826
827 $k = 'file' if $k eq 'volume';
828
829 return undef if defined $res->{$k};
19672434 830
1e3baf05
DM
831 $res->{$k} = $v;
832 } else {
833 if (!$res->{file} && $p !~ m/=/) {
834 $res->{file} = $p;
835 } else {
836 return undef;
837 }
838 }
839 }
840
841 return undef if !$res->{file};
842
19672434 843 return undef if $res->{cache} &&
5534dd1a 844 $res->{cache} !~ m/^(off|none|writethrough|writeback|unsafe)$/;
1e3baf05
DM
845 return undef if $res->{snapshot} && $res->{snapshot} !~ m/^(on|off)$/;
846 return undef if $res->{cyls} && $res->{cyls} !~ m/^\d+$/;
847 return undef if $res->{heads} && $res->{heads} !~ m/^\d+$/;
848 return undef if $res->{secs} && $res->{secs} !~ m/^\d+$/;
849 return undef if $res->{media} && $res->{media} !~ m/^(disk|cdrom)$/;
850 return undef if $res->{trans} && $res->{trans} !~ m/^(none|lba|auto)$/;
851 return undef if $res->{format} && $res->{format} !~ m/^(raw|cow|qcow|qcow2|vmdk|cloop)$/;
852 return undef if $res->{rerror} && $res->{rerror} !~ m/^(ignore|report|stop)$/;
853 return undef if $res->{werror} && $res->{werror} !~ m/^(enospc|ignore|report|stop)$/;
854 return undef if $res->{backup} && $res->{backup} !~ m/^(yes|no)$/;
855 return undef if $res->{aio} && $res->{aio} !~ m/^(native|threads)$/;
856
857 if ($res->{media} && ($res->{media} eq 'cdrom')) {
858 return undef if $res->{snapshot} || $res->{trans} || $res->{format};
19672434 859 return undef if $res->{heads} || $res->{secs} || $res->{cyls};
1e3baf05
DM
860 return undef if $res->{interface} eq 'virtio';
861 }
862
863 # rerror does not work with scsi drives
864 if ($res->{rerror}) {
865 return undef if $res->{interface} eq 'scsi';
866 }
867
868 return $res;
869}
870
871my @qemu_drive_options = qw(heads secs cyls trans media format cache snapshot rerror werror aio);
872
873sub print_drive {
874 my ($vmid, $drive) = @_;
875
876 my $opts = '';
877 foreach my $o (@qemu_drive_options, 'backup') {
878 $opts .= ",$o=$drive->{$o}" if $drive->{$o};
879 }
880
881 return "$drive->{file}$opts";
882}
883
ca916ecc
DA
884sub print_drivedevice_full {
885 my ($storecfg, $vmid, $drive) = @_;
886
887 my $device = '';
888 my $maxdev = 0;
19672434 889
ca916ecc 890 if ($drive->{interface} eq 'virtio') {
2ed36a41
DM
891 my $pciaddr = print_pci_addr("$drive->{interface}$drive->{index}");
892 $device = "virtio-blk-pci,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}$pciaddr";
893 } elsif ($drive->{interface} eq 'scsi') {
894 $maxdev = 7;
895 my $controller = int($drive->{index} / $maxdev);
896 my $unit = $drive->{index} % $maxdev;
897 my $devicetype = 'hd';
231f2e13
DA
898 my $path = '';
899 if (drive_is_cdrom($drive)) {
900 $devicetype = 'cd';
901 } else {
902 if ($drive->{file} =~ m|^/|) {
903 $path = $drive->{file};
904 } else {
905 $path = PVE::Storage::path($storecfg, $drive->{file});
906 }
907 if ($path =~ m|^/dev/| ) {
908 $devicetype = 'block';
909 }
910 }
ca916ecc 911
7ebe888a 912 $device = "scsi-$devicetype,bus=lsi$controller.0,scsi-id=$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
2ed36a41
DM
913 } elsif ($drive->{interface} eq 'ide'){
914 $maxdev = 2;
915 my $controller = int($drive->{index} / $maxdev);
916 my $unit = $drive->{index} % $maxdev;
917 my $devicetype = ($drive->{media} && $drive->{media} eq 'cdrom') ? "cd" : "hd";
918
7ebe888a 919 $device = "ide-$devicetype,bus=ide.$controller,unit=$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
cdb0931f
DA
920 } elsif ($drive->{interface} eq 'sata'){
921 my $controller = int($drive->{index} / $MAX_SATA_DISKS);
922 my $unit = $drive->{index} % $MAX_SATA_DISKS;
923 $device = "ide-drive,bus=ahci$controller.$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
2ed36a41
DM
924 } elsif ($drive->{interface} eq 'usb') {
925 die "implement me";
926 # -device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0
927 } else {
928 die "unsupported interface type";
ca916ecc
DA
929 }
930
3b408e82
DM
931 $device .= ",bootindex=$drive->{bootindex}" if $drive->{bootindex};
932
ca916ecc
DA
933 return $device;
934}
935
1e3baf05
DM
936sub print_drive_full {
937 my ($storecfg, $vmid, $drive) = @_;
938
939 my $opts = '';
940 foreach my $o (@qemu_drive_options) {
3b408e82 941 next if $o eq 'bootindex';
1e3baf05 942 $opts .= ",$o=$drive->{$o}" if $drive->{$o};
19672434 943 }
1e3baf05
DM
944
945 # use linux-aio by default (qemu default is threads)
19672434 946 $opts .= ",aio=native" if !$drive->{aio};
1e3baf05
DM
947
948 my $path;
949 my $volid = $drive->{file};
6b64503e
DM
950 if (drive_is_cdrom($drive)) {
951 $path = get_iso_path($storecfg, $vmid, $volid);
1e3baf05
DM
952 } else {
953 if ($volid =~ m|^/|) {
954 $path = $volid;
955 } else {
6b64503e 956 $path = PVE::Storage::path($storecfg, $volid);
1e3baf05 957 }
2b556977
DM
958 if (!$drive->{cache} && ($path =~ m|^/dev/| || $path =~ m|\.raw$|)) {
959 $opts .= ",cache=none";
960 }
1e3baf05
DM
961 }
962
963 my $pathinfo = $path ? "file=$path," : '';
964
3ebfcc86 965 return "${pathinfo}if=none,id=drive-$drive->{interface}$drive->{index}$opts";
1e3baf05
DM
966}
967
cc4d6182
DA
968sub print_netdevice_full {
969 my ($vmid, $conf, $net, $netid) = @_;
970
971 my $bootorder = $conf->{boot} || $confdesc->{boot}->{default};
972
973 my $device = $net->{model};
974 if ($net->{model} eq 'virtio') {
975 $device = 'virtio-net-pci';
976 };
977
978 # qemu > 0.15 always try to boot from network - we disable that by
979 # not loading the pxe rom file
980 my $extra = ($bootorder !~ m/n/) ? "romfile=," : '';
981 my $pciaddr = print_pci_addr("$netid");
982 my $tmpstr = "$device,${extra}mac=$net->{macaddr},netdev=$netid$pciaddr,id=$netid";
983 $tmpstr .= ",bootindex=$net->{bootindex}" if $net->{bootindex} ;
984 return $tmpstr;
985}
986
987sub print_netdev_full {
988 my ($vmid, $conf, $net, $netid) = @_;
989
990 my $i = '';
991 if ($netid =~ m/^net(\d+)$/) {
992 $i = int($1);
993 }
994
995 die "got strange net id '$i'\n" if $i >= ${MAX_NETS};
996
997 my $ifname = "tap${vmid}i$i";
998
999 # kvm uses TUNSETIFF ioctl, and that limits ifname length
1000 die "interface name '$ifname' is too long (max 15 character)\n"
1001 if length($ifname) >= 16;
1002
1003 my $vhostparam = '';
1004 $vhostparam = ',vhost=on' if $kernel_has_vhost_net && $net->{model} eq 'virtio';
1005
1006 my $vmname = $conf->{name} || "vm$vmid";
1007
1008 if ($net->{bridge}) {
1009 return "type=tap,id=$netid,ifname=${ifname},script=/var/lib/qemu-server/pve-bridge$vhostparam";
1010 } else {
1011 return "type=user,id=$netid,hostname=$vmname";
1012 }
1013}
1e3baf05
DM
1014
1015sub drive_is_cdrom {
1016 my ($drive) = @_;
1017
1018 return $drive && $drive->{media} && ($drive->{media} eq 'cdrom');
1019
1020}
1021
040b06b7
DA
1022sub parse_hostpci {
1023 my ($value) = @_;
1024
1025 return undef if !$value;
1026
1027 my $res = {};
1028
1029 if ($value =~ m/^[a-f0-9]{2}:[a-f0-9]{2}\.[a-f0-9]$/) {
1030 $res->{pciid} = $value;
1031 } else {
1032 return undef;
1033 }
1034
1035 return $res;
1036}
1037
1e3baf05
DM
1038# netX: e1000=XX:XX:XX:XX:XX:XX,bridge=vmbr0,rate=<mbps>
1039sub parse_net {
1040 my ($data) = @_;
1041
1042 my $res = {};
1043
6b64503e 1044 foreach my $kvp (split(/,/, $data)) {
1e3baf05
DM
1045
1046 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 1047 my $model = lc($1);
9f91ff02 1048 my $mac = uc($3) || PVE::Tools::random_ether_addr();
1e3baf05
DM
1049 $res->{model} = $model;
1050 $res->{macaddr} = $mac;
1051 } elsif ($kvp =~ m/^bridge=(\S+)$/) {
1052 $res->{bridge} = $1;
1053 } elsif ($kvp =~ m/^rate=(\d+(\.\d+)?)$/) {
1054 $res->{rate} = $1;
1055 } else {
1056 return undef;
1057 }
19672434 1058
1e3baf05
DM
1059 }
1060
1061 return undef if !$res->{model};
1062
1063 return $res;
1064}
1065
1066sub print_net {
1067 my $net = shift;
1068
1069 my $res = "$net->{model}";
1070 $res .= "=$net->{macaddr}" if $net->{macaddr};
1071 $res .= ",bridge=$net->{bridge}" if $net->{bridge};
1072 $res .= ",rate=$net->{rate}" if $net->{rate};
1073
1074 return $res;
1075}
1076
1077sub add_random_macs {
1078 my ($settings) = @_;
1079
1080 foreach my $opt (keys %$settings) {
1081 next if $opt !~ m/^net(\d+)$/;
1082 my $net = parse_net($settings->{$opt});
1083 next if !$net;
1084 $settings->{$opt} = print_net($net);
1085 }
1086}
1087
1088sub add_unused_volume {
1858638f 1089 my ($config, $volid) = @_;
1e3baf05
DM
1090
1091 my $key;
1092 for (my $ind = $MAX_UNUSED_DISKS - 1; $ind >= 0; $ind--) {
1093 my $test = "unused$ind";
1094 if (my $vid = $config->{$test}) {
1095 return if $vid eq $volid; # do not add duplicates
1096 } else {
1097 $key = $test;
19672434 1098 }
1e3baf05
DM
1099 }
1100
1101 die "To many unused volume - please delete them first.\n" if !$key;
1858638f
DM
1102
1103 $config->{$key} = $volid;
1e3baf05 1104
1858638f 1105 return $key;
1e3baf05
DM
1106}
1107
1108# fixme: remove all thos $noerr parameters?
1109
1110PVE::JSONSchema::register_format('pve-qm-bootdisk', \&verify_bootdisk);
1111sub verify_bootdisk {
1112 my ($value, $noerr) = @_;
1113
19672434 1114 return $value if valid_drivename($value);
1e3baf05
DM
1115
1116 return undef if $noerr;
1117
1118 die "invalid boot disk '$value'\n";
1119}
1120
1121PVE::JSONSchema::register_format('pve-qm-net', \&verify_net);
1122sub verify_net {
1123 my ($value, $noerr) = @_;
1124
1125 return $value if parse_net($value);
1126
1127 return undef if $noerr;
19672434 1128
1e3baf05
DM
1129 die "unable to parse network options\n";
1130}
1131
1132PVE::JSONSchema::register_format('pve-qm-drive', \&verify_drive);
1133sub verify_drive {
1134 my ($value, $noerr) = @_;
1135
6b64503e 1136 return $value if parse_drive(undef, $value);
1e3baf05
DM
1137
1138 return undef if $noerr;
19672434 1139
1e3baf05
DM
1140 die "unable to parse drive options\n";
1141}
1142
1143PVE::JSONSchema::register_format('pve-qm-hostpci', \&verify_hostpci);
1144sub verify_hostpci {
1145 my ($value, $noerr) = @_;
1146
040b06b7
DA
1147 return $value if parse_hostpci($value);
1148
1149 return undef if $noerr;
1150
1151 die "unable to parse pci id\n";
1e3baf05
DM
1152}
1153
0ea9541d
DM
1154PVE::JSONSchema::register_format('pve-qm-watchdog', \&verify_watchdog);
1155sub verify_watchdog {
1156 my ($value, $noerr) = @_;
1157
1158 return $value if parse_watchdog($value);
1159
1160 return undef if $noerr;
19672434 1161
0ea9541d
DM
1162 die "unable to parse watchdog options\n";
1163}
1164
1165sub parse_watchdog {
1166 my ($value) = @_;
1167
1168 return undef if !$value;
1169
1170 my $res = {};
1171
6b64503e 1172 foreach my $p (split(/,/, $value)) {
0ea9541d
DM
1173 next if $p =~ m/^\s*$/;
1174
1175 if ($p =~ m/^(model=)?(i6300esb|ib700)$/) {
1176 $res->{model} = $2;
1177 } elsif ($p =~ m/^(action=)?(reset|shutdown|poweroff|pause|debug|none)$/) {
1178 $res->{action} = $2;
1179 } else {
1180 return undef;
1181 }
1182 }
1183
1184 return $res;
1185}
1186
1e3baf05
DM
1187sub parse_usb_device {
1188 my ($value) = @_;
1189
1190 return undef if !$value;
1191
6b64503e 1192 my @dl = split(/,/, $value);
1e3baf05
DM
1193 my $found;
1194
1195 my $res = {};
1196 foreach my $v (@dl) {
1197 if ($v =~ m/^host=([0-9A-Fa-f]{4}):([0-9A-Fa-f]{4})$/) {
1198 $found = 1;
1199 $res->{vendorid} = $1;
1200 $res->{productid} = $2;
1201 } elsif ($v =~ m/^host=(\d+)\-(\d+(\.\d+)*)$/) {
1202 $found = 1;
1203 $res->{hostbus} = $1;
1204 $res->{hostport} = $2;
1205 } else {
1206 return undef;
1207 }
1208 }
1209 return undef if !$found;
1210
1211 return $res;
1212}
19672434 1213
1e3baf05
DM
1214PVE::JSONSchema::register_format('pve-qm-usb-device', \&verify_usb_device);
1215sub verify_usb_device {
1216 my ($value, $noerr) = @_;
1217
1218 return $value if parse_usb_device($value);
1219
1220 return undef if $noerr;
19672434 1221
1e3baf05
DM
1222 die "unable to parse usb device\n";
1223}
1224
1e3baf05
DM
1225# add JSON properties for create and set function
1226sub json_config_properties {
1227 my $prop = shift;
1228
1229 foreach my $opt (keys %$confdesc) {
1230 $prop->{$opt} = $confdesc->{$opt};
1231 }
1232
1233 return $prop;
1234}
1235
1236sub check_type {
1237 my ($key, $value) = @_;
1238
1239 die "unknown setting '$key'\n" if !$confdesc->{$key};
1240
1241 my $type = $confdesc->{$key}->{type};
1242
6b64503e 1243 if (!defined($value)) {
1e3baf05
DM
1244 die "got undefined value\n";
1245 }
1246
1247 if ($value =~ m/[\n\r]/) {
1248 die "property contains a line feed\n";
1249 }
1250
1251 if ($type eq 'boolean') {
19672434
DM
1252 return 1 if ($value eq '1') || ($value =~ m/^(on|yes|true)$/i);
1253 return 0 if ($value eq '0') || ($value =~ m/^(off|no|false)$/i);
1254 die "type check ('boolean') failed - got '$value'\n";
1e3baf05
DM
1255 } elsif ($type eq 'integer') {
1256 return int($1) if $value =~ m/^(\d+)$/;
1257 die "type check ('integer') failed - got '$value'\n";
1258 } elsif ($type eq 'string') {
1259 if (my $fmt = $confdesc->{$key}->{format}) {
1260 if ($fmt eq 'pve-qm-drive') {
1261 # special case - we need to pass $key to parse_drive()
6b64503e 1262 my $drive = parse_drive($key, $value);
1e3baf05
DM
1263 return $value if $drive;
1264 die "unable to parse drive options\n";
1265 }
1266 PVE::JSONSchema::check_format($fmt, $value);
19672434
DM
1267 return $value;
1268 }
1e3baf05 1269 $value =~ s/^\"(.*)\"$/$1/;
19672434 1270 return $value;
1e3baf05
DM
1271 } else {
1272 die "internal error"
1273 }
1274}
1275
1276sub lock_config {
1277 my ($vmid, $code, @param) = @_;
1278
6b64503e 1279 my $filename = config_file_lock($vmid);
1e3baf05 1280
5fdbe4f0 1281 my $res = lock_file($filename, 10, $code, @param);
1e3baf05
DM
1282
1283 die $@ if $@;
5fdbe4f0
DM
1284
1285 return $res;
1e3baf05
DM
1286}
1287
1288sub cfs_config_path {
a78ccf26 1289 my ($vmid, $node) = @_;
1e3baf05 1290
a78ccf26
DM
1291 $node = $nodename if !$node;
1292 return "nodes/$node/qemu-server/$vmid.conf";
1e3baf05
DM
1293}
1294
040b06b7
DA
1295sub check_iommu_support{
1296 #fixme : need to check IOMMU support
1297 #http://www.linux-kvm.org/page/How_to_assign_devices_with_VT-d_in_KVM
1298
1299 my $iommu=1;
1300 return $iommu;
1301
1302}
1303
1e3baf05 1304sub config_file {
a78ccf26 1305 my ($vmid, $node) = @_;
1e3baf05 1306
a78ccf26 1307 my $cfspath = cfs_config_path($vmid, $node);
1e3baf05
DM
1308 return "/etc/pve/$cfspath";
1309}
1310
1311sub config_file_lock {
1312 my ($vmid) = @_;
1313
1314 return "$lock_dir/lock-$vmid.conf";
1315}
1316
1317sub touch_config {
1318 my ($vmid) = @_;
1319
6b64503e 1320 my $conf = config_file($vmid);
1e3baf05
DM
1321 utime undef, undef, $conf;
1322}
1323
1e3baf05 1324sub destroy_vm {
a6af7b3e 1325 my ($storecfg, $vmid, $keep_empty_config) = @_;
1e3baf05 1326
6b64503e 1327 my $conffile = config_file($vmid);
1e3baf05 1328
6b64503e 1329 my $conf = load_config($vmid);
1e3baf05 1330
6b64503e 1331 check_lock($conf);
1e3baf05 1332
19672434 1333 # only remove disks owned by this VM
1e3baf05
DM
1334 foreach_drive($conf, sub {
1335 my ($ds, $drive) = @_;
1336
6b64503e 1337 return if drive_is_cdrom($drive);
1e3baf05
DM
1338
1339 my $volid = $drive->{file};
ff1a2432 1340 return if !$volid || $volid =~ m|^/|;
1e3baf05 1341
6b64503e 1342 my ($path, $owner) = PVE::Storage::path($storecfg, $volid);
ff1a2432 1343 return if !$path || !$owner || ($owner != $vmid);
1e3baf05 1344
6b64503e 1345 PVE::Storage::vdisk_free($storecfg, $volid);
1e3baf05 1346 });
19672434 1347
a6af7b3e 1348 if ($keep_empty_config) {
9c502e26 1349 PVE::Tools::file_set_contents($conffile, "memory: 128\n");
a6af7b3e
DM
1350 } else {
1351 unlink $conffile;
1352 }
1e3baf05
DM
1353
1354 # also remove unused disk
1355 eval {
6b64503e 1356 my $dl = PVE::Storage::vdisk_list($storecfg, undef, $vmid);
1e3baf05
DM
1357
1358 eval {
6b64503e 1359 PVE::Storage::foreach_volid($dl, sub {
1e3baf05 1360 my ($volid, $sid, $volname, $d) = @_;
6b64503e 1361 PVE::Storage::vdisk_free($storecfg, $volid);
1e3baf05
DM
1362 });
1363 };
1364 warn $@ if $@;
1365
1366 };
1367 warn $@ if $@;
1368}
1369
1370# fixme: remove?
1371sub load_diskinfo_old {
1372 my ($storecfg, $vmid, $conf) = @_;
1373
1374 my $info = {};
1375 my $res = {};
1376 my $vollist;
1377
1378 foreach_drive($conf, sub {
1379 my ($ds, $di) = @_;
1380
1381 $res->{$ds} = $di;
1382
6b64503e 1383 return if drive_is_cdrom($di);
1e3baf05
DM
1384
1385 if ($di->{file} =~ m|^/dev/.+|) {
6b64503e 1386 $info->{$di->{file}}->{size} = PVE::Storage::file_size_info($di->{file});
1e3baf05
DM
1387 } else {
1388 push @$vollist, $di->{file};
1389 }
1390 });
1391
1392 eval {
6b64503e 1393 my $dl = PVE::Storage::vdisk_list($storecfg, undef, $vmid, $vollist);
1e3baf05 1394
6b64503e 1395 PVE::Storage::foreach_volid($dl, sub {
1e3baf05
DM
1396 my ($volid, $sid, $volname, $d) = @_;
1397 $info->{$volid} = $d;
1398 });
1399 };
1400 warn $@ if $@;
1401
1402 foreach my $ds (keys %$res) {
1403 my $di = $res->{$ds};
1404
19672434 1405 $res->{$ds}->{disksize} = $info->{$di->{file}} ?
1e3baf05
DM
1406 $info->{$di->{file}}->{size} / (1024*1024) : 0;
1407 }
1408
1409 return $res;
1410}
1411
1412sub load_config {
1413 my ($vmid) = @_;
1414
1415 my $cfspath = cfs_config_path($vmid);
1416
1417 my $conf = PVE::Cluster::cfs_read_file($cfspath);
1418
1419 die "no such VM ('$vmid')\n" if !defined($conf);
1420
1421 return $conf;
19672434 1422}
1e3baf05
DM
1423
1424sub parse_vm_config {
1425 my ($filename, $raw) = @_;
1426
1427 return undef if !defined($raw);
1428
554ac7e7
DM
1429 my $res = {
1430 digest => Digest::SHA1::sha1_hex($raw),
1431 };
1e3baf05 1432
19672434 1433 $filename =~ m|/qemu-server/(\d+)\.conf$|
1e3baf05
DM
1434 || die "got strange filename '$filename'";
1435
1436 my $vmid = $1;
1437
0581fe4f
DM
1438 my $descr = '';
1439
1e3baf05
DM
1440 while ($raw && $raw =~ s/^(.*?)(\n|$)//) {
1441 my $line = $1;
19672434 1442
1e3baf05
DM
1443 next if $line =~ m/^\s*$/;
1444
0581fe4f
DM
1445 if ($line =~ m/^\#(.*)\s*$/) {
1446 $descr .= PVE::Tools::decode_text($1) . "\n";
1447 next;
1448 }
1449
1e3baf05 1450 if ($line =~ m/^(description):\s*(.*\S)\s*$/) {
0581fe4f 1451 $descr .= PVE::Tools::decode_text($2);
1e3baf05
DM
1452 } elsif ($line =~ m/^(args):\s*(.*\S)\s*$/) {
1453 my $key = $1;
1454 my $value = $2;
1455 $res->{$key} = $value;
1456 } elsif ($line =~ m/^([a-z][a-z_]*\d*):\s*(\S+)\s*$/) {
1457 my $key = $1;
1458 my $value = $2;
1459 eval { $value = check_type($key, $value); };
1460 if ($@) {
1461 warn "vm $vmid - unable to parse value of '$key' - $@";
1462 } else {
1463 my $fmt = $confdesc->{$key}->{format};
1464 if ($fmt && $fmt eq 'pve-qm-drive') {
1465 my $v = parse_drive($key, $value);
1466 if (my $volid = filename_to_volume_id($vmid, $v->{file}, $v->{media})) {
1467 $v->{file} = $volid;
6b64503e 1468 $value = print_drive($vmid, $v);
1e3baf05
DM
1469 } else {
1470 warn "vm $vmid - unable to parse value of '$key'\n";
1471 next;
1472 }
1473 }
1474
1475 if ($key eq 'cdrom') {
1476 $res->{ide2} = $value;
1477 } else {
1478 $res->{$key} = $value;
1479 }
1480 }
1481 }
1482 }
1483
0581fe4f
DM
1484 $res->{description} = $descr if $descr;
1485
1e3baf05
DM
1486 # convert old smp to sockets
1487 if ($res->{smp} && !$res->{sockets}) {
1488 $res->{sockets} = $res->{smp};
19672434 1489 }
1e3baf05
DM
1490 delete $res->{smp};
1491
1492 return $res;
1493}
1494
1858638f
DM
1495sub write_vm_config {
1496 my ($filename, $conf) = @_;
1e3baf05 1497
1858638f
DM
1498 if ($conf->{cdrom}) {
1499 die "option ide2 conflicts with cdrom\n" if $conf->{ide2};
1500 $conf->{ide2} = $conf->{cdrom};
1501 delete $conf->{cdrom};
1502 }
1e3baf05
DM
1503
1504 # we do not use 'smp' any longer
1858638f
DM
1505 if ($conf->{sockets}) {
1506 delete $conf->{smp};
1507 } elsif ($conf->{smp}) {
1508 $conf->{sockets} = $conf->{smp};
1509 delete $conf->{cores};
1510 delete $conf->{smp};
1e3baf05
DM
1511 }
1512
1513 my $new_volids = {};
1858638f 1514 foreach my $key (keys %$conf) {
0581fe4f 1515 next if $key eq 'digest' || $key eq 'description';
1858638f 1516 my $value = $conf->{$key};
1e3baf05
DM
1517 eval { $value = check_type($key, $value); };
1518 die "unable to parse value of '$key' - $@" if $@;
1858638f
DM
1519
1520 $conf->{$key} = $value;
1521
1e3baf05
DM
1522 if (valid_drivename($key)) {
1523 my $drive = PVE::QemuServer::parse_drive($key, $value);
1524 $new_volids->{$drive->{file}} = 1 if $drive && $drive->{file};
1525 }
1526 }
1527
1858638f
DM
1528 # remove 'unusedX' settings if we re-add a volume
1529 foreach my $key (keys %$conf) {
1530 my $value = $conf->{$key};
1531 if ($key =~ m/^unused/ && $new_volids->{$value}) {
1532 delete $conf->{$key};
1e3baf05 1533 }
1858638f 1534 }
1e3baf05 1535
1858638f
DM
1536 # gererate RAW data
1537 my $raw = '';
0581fe4f
DM
1538
1539 # add description as comment to top of file
1540 my $descr = $conf->{description} || '';
1541 foreach my $cl (split(/\n/, $descr)) {
1542 $raw .= '#' . PVE::Tools::encode_text($cl) . "\n";
1543 }
1544
1858638f 1545 foreach my $key (sort keys %$conf) {
0581fe4f 1546 next if $key eq 'digest' || $key eq 'description';
1858638f
DM
1547 $raw .= "$key: $conf->{$key}\n";
1548 }
1e3baf05 1549
1858638f
DM
1550 return $raw;
1551}
1e3baf05 1552
1858638f
DM
1553sub update_config_nolock {
1554 my ($vmid, $conf, $skiplock) = @_;
1e3baf05 1555
1858638f
DM
1556 check_lock($conf) if !$skiplock;
1557
1558 my $cfspath = cfs_config_path($vmid);
1e3baf05 1559
1858638f
DM
1560 PVE::Cluster::cfs_write_file($cfspath, $conf);
1561}
1e3baf05 1562
1858638f
DM
1563sub update_config {
1564 my ($vmid, $conf, $skiplock) = @_;
1e3baf05 1565
1858638f 1566 lock_config($vmid, &update_config_nolock, $conf, $skiplock);
1e3baf05
DM
1567}
1568
19672434 1569sub load_defaults {
1e3baf05
DM
1570
1571 my $res = {};
1572
1573 # we use static defaults from our JSON schema configuration
1574 foreach my $key (keys %$confdesc) {
1575 if (defined(my $default = $confdesc->{$key}->{default})) {
1576 $res->{$key} = $default;
1577 }
1578 }
19672434 1579
1e3baf05
DM
1580 my $conf = PVE::Cluster::cfs_read_file('datacenter.cfg');
1581 $res->{keyboard} = $conf->{keyboard} if $conf->{keyboard};
1582
1583 return $res;
1584}
1585
1586sub config_list {
1587 my $vmlist = PVE::Cluster::get_vmlist();
1588 my $res = {};
1589 return $res if !$vmlist || !$vmlist->{ids};
1590 my $ids = $vmlist->{ids};
1591
1e3baf05
DM
1592 foreach my $vmid (keys %$ids) {
1593 my $d = $ids->{$vmid};
1594 next if !$d->{node} || $d->{node} ne $nodename;
5ee957cc 1595 next if !$d->{type} || $d->{type} ne 'qemu';
1e3baf05
DM
1596 $res->{$vmid}->{exists} = 1;
1597 }
1598 return $res;
1599}
1600
64e13401
DM
1601# test if VM uses local resources (to prevent migration)
1602sub check_local_resources {
1603 my ($conf, $noerr) = @_;
1604
1605 my $loc_res = 0;
19672434 1606
e0ab7331
DM
1607 $loc_res = 1 if $conf->{hostusb}; # old syntax
1608 $loc_res = 1 if $conf->{hostpci}; # old syntax
64e13401 1609
0d29ab3b 1610 foreach my $k (keys %$conf) {
2fe1a152 1611 $loc_res = 1 if $k =~ m/^(usb|hostpci|serial|parallel)\d+$/;
64e13401
DM
1612 }
1613
1614 die "VM uses local resources\n" if $loc_res && !$noerr;
1615
1616 return $loc_res;
1617}
1618
1e3baf05
DM
1619sub check_lock {
1620 my ($conf) = @_;
1621
1622 die "VM is locked ($conf->{lock})\n" if $conf->{lock};
1623}
1624
1625sub check_cmdline {
1626 my ($pidfile, $pid) = @_;
1627
6b64503e
DM
1628 my $fh = IO::File->new("/proc/$pid/cmdline", "r");
1629 if (defined($fh)) {
1e3baf05
DM
1630 my $line = <$fh>;
1631 $fh->close;
1632 return undef if !$line;
6b64503e 1633 my @param = split(/\0/, $line);
1e3baf05
DM
1634
1635 my $cmd = $param[0];
1636 return if !$cmd || ($cmd !~ m|kvm$|);
1637
1638 for (my $i = 0; $i < scalar (@param); $i++) {
1639 my $p = $param[$i];
1640 next if !$p;
1641 if (($p eq '-pidfile') || ($p eq '--pidfile')) {
1642 my $p = $param[$i+1];
1643 return 1 if $p && ($p eq $pidfile);
1644 return undef;
1645 }
1646 }
1647 }
1648 return undef;
1649}
1650
1651sub check_running {
e6c3b671 1652 my ($vmid, $nocheck) = @_;
1e3baf05 1653
e6c3b671 1654 my $filename = config_file($vmid);
1e3baf05
DM
1655
1656 die "unable to find configuration file for VM $vmid - no such machine\n"
e6c3b671 1657 if !$nocheck && ! -f $filename;
1e3baf05 1658
e6c3b671 1659 my $pidfile = pidfile_name($vmid);
1e3baf05 1660
e6c3b671
DM
1661 if (my $fd = IO::File->new("<$pidfile")) {
1662 my $st = stat($fd);
1e3baf05 1663 my $line = <$fd>;
6b64503e 1664 close($fd);
1e3baf05
DM
1665
1666 my $mtime = $st->mtime;
1667 if ($mtime > time()) {
1668 warn "file '$filename' modified in future\n";
1669 }
1670
1671 if ($line =~ m/^(\d+)$/) {
1672 my $pid = $1;
e6c3b671
DM
1673 if (check_cmdline($pidfile, $pid)) {
1674 if (my $pinfo = PVE::ProcFSTools::check_process_running($pid)) {
1675 return $pid;
1676 }
1677 }
1e3baf05
DM
1678 }
1679 }
1680
1681 return undef;
1682}
1683
1684sub vzlist {
19672434 1685
1e3baf05
DM
1686 my $vzlist = config_list();
1687
6b64503e 1688 my $fd = IO::Dir->new($var_run_tmpdir) || return $vzlist;
1e3baf05 1689
19672434 1690 while (defined(my $de = $fd->read)) {
1e3baf05
DM
1691 next if $de !~ m/^(\d+)\.pid$/;
1692 my $vmid = $1;
6b64503e
DM
1693 next if !defined($vzlist->{$vmid});
1694 if (my $pid = check_running($vmid)) {
1e3baf05
DM
1695 $vzlist->{$vmid}->{pid} = $pid;
1696 }
1697 }
1698
1699 return $vzlist;
1700}
1701
1702my $storage_timeout_hash = {};
1703
1704sub disksize {
1705 my ($storecfg, $conf) = @_;
1706
1707 my $bootdisk = $conf->{bootdisk};
1708 return undef if !$bootdisk;
1709 return undef if !valid_drivename($bootdisk);
1710
1711 return undef if !$conf->{$bootdisk};
1712
1713 my $drive = parse_drive($bootdisk, $conf->{$bootdisk});
1714 return undef if !defined($drive);
1715
1716 return undef if drive_is_cdrom($drive);
1717
1718 my $volid = $drive->{file};
1719 return undef if !$volid;
1720
1721 my $path;
1722 my $storeid;
1723 my $timeoutid;
1724
1725 if ($volid =~ m|^/|) {
1726 $path = $timeoutid = $volid;
1727 } else {
f0cab979
DM
1728 eval {
1729 $storeid = $timeoutid = PVE::Storage::parse_volume_id($volid);
1730 $path = PVE::Storage::path($storecfg, $volid);
1731 };
1732 if (my $err = $@) {
1733 warn $err;
1734 return undef;
1735 }
1e3baf05
DM
1736 }
1737
1738 my $last_timeout = $storage_timeout_hash->{$timeoutid};
1739 if ($last_timeout) {
1740 if ((time() - $last_timeout) < 30) {
1741 # skip storage with errors
1742 return undef ;
1743 }
1744 delete $storage_timeout_hash->{$timeoutid};
1745 }
1746
1747 my ($size, $format, $used);
1748
1749 ($size, $format, $used) = PVE::Storage::file_size_info($path, 1);
1750
1751 if (!defined($format)) {
1752 # got timeout
1753 $storage_timeout_hash->{$timeoutid} = time();
1754 return undef;
1755 }
1756
1757 return wantarray ? ($size, $used) : $size;
1758}
1759
1760my $last_proc_pid_stat;
1761
1762sub vmstatus {
1763 my ($opt_vmid) = @_;
1764
1765 my $res = {};
1766
19672434 1767 my $storecfg = PVE::Storage::config();
1e3baf05
DM
1768
1769 my $list = vzlist();
694fcad4 1770 my ($uptime) = PVE::ProcFSTools::read_proc_uptime(1);
1e3baf05 1771
ae4915a2
DM
1772 my $cpucount = $cpuinfo->{cpus} || 1;
1773
1e3baf05
DM
1774 foreach my $vmid (keys %$list) {
1775 next if $opt_vmid && ($vmid ne $opt_vmid);
1776
1777 my $cfspath = cfs_config_path($vmid);
1778 my $conf = PVE::Cluster::cfs_read_file($cfspath) || {};
1779
1780 my $d = {};
1781 $d->{pid} = $list->{$vmid}->{pid};
1782
1783 # fixme: better status?
1784 $d->{status} = $list->{$vmid}->{pid} ? 'running' : 'stopped';
1785
1786 my ($size, $used) = disksize($storecfg, $conf);
1787 if (defined($size) && defined($used)) {
1788 $d->{disk} = $used;
1789 $d->{maxdisk} = $size;
1790 } else {
1791 $d->{disk} = 0;
1792 $d->{maxdisk} = 0;
1793 }
1794
1795 $d->{cpus} = ($conf->{sockets} || 1) * ($conf->{cores} || 1);
ae4915a2
DM
1796 $d->{cpus} = $cpucount if $d->{cpus} > $cpucount;
1797
1e3baf05 1798 $d->{name} = $conf->{name} || "VM $vmid";
19672434 1799 $d->{maxmem} = $conf->{memory} ? $conf->{memory}*(1024*1024) : 0;
1e3baf05 1800
1e3baf05
DM
1801 $d->{uptime} = 0;
1802 $d->{cpu} = 0;
1e3baf05
DM
1803 $d->{mem} = 0;
1804
1805 $d->{netout} = 0;
1806 $d->{netin} = 0;
1807
1808 $d->{diskread} = 0;
1809 $d->{diskwrite} = 0;
1810
1811 $res->{$vmid} = $d;
1812 }
1813
1814 my $netdev = PVE::ProcFSTools::read_proc_net_dev();
1815 foreach my $dev (keys %$netdev) {
1816 next if $dev !~ m/^tap([1-9]\d*)i/;
1817 my $vmid = $1;
1818 my $d = $res->{$vmid};
1819 next if !$d;
19672434 1820
1e3baf05
DM
1821 $d->{netout} += $netdev->{$dev}->{receive};
1822 $d->{netin} += $netdev->{$dev}->{transmit};
1823 }
1824
1e3baf05
DM
1825 my $ctime = gettimeofday;
1826
1827 foreach my $vmid (keys %$list) {
1828
1829 my $d = $res->{$vmid};
1830 my $pid = $d->{pid};
1831 next if !$pid;
1832
1833 if (my $fh = IO::File->new("/proc/$pid/io", "r")) {
1834 my $data = {};
6b64503e 1835 while (defined(my $line = <$fh>)) {
1e3baf05
DM
1836 if ($line =~ m/^([rw]char):\s+(\d+)$/) {
1837 $data->{$1} = $2;
1838 }
1839 }
1840 close($fh);
1841 $d->{diskread} = $data->{rchar} || 0;
1842 $d->{diskwrite} = $data->{wchar} || 0;
1843 }
1844
694fcad4
DM
1845 my $pstat = PVE::ProcFSTools::read_proc_pid_stat($pid);
1846 next if !$pstat; # not running
19672434 1847
694fcad4 1848 my $used = $pstat->{utime} + $pstat->{stime};
1e3baf05 1849
694fcad4 1850 $d->{uptime} = int(($uptime - $pstat->{starttime})/$cpuinfo->{user_hz});
1e3baf05 1851
694fcad4 1852 if ($pstat->{vsize}) {
6b64503e 1853 $d->{mem} = int(($pstat->{rss}/$pstat->{vsize})*$d->{maxmem});
1e3baf05
DM
1854 }
1855
1856 my $old = $last_proc_pid_stat->{$pid};
1857 if (!$old) {
19672434
DM
1858 $last_proc_pid_stat->{$pid} = {
1859 time => $ctime,
1e3baf05
DM
1860 used => $used,
1861 cpu => 0,
1e3baf05
DM
1862 };
1863 next;
1864 }
1865
7f0b5beb 1866 my $dtime = ($ctime - $old->{time}) * $cpucount * $cpuinfo->{user_hz};
1e3baf05
DM
1867
1868 if ($dtime > 1000) {
1869 my $dutime = $used - $old->{used};
1870
ae4915a2 1871 $d->{cpu} = (($dutime/$dtime)* $cpucount) / $d->{cpus};
1e3baf05 1872 $last_proc_pid_stat->{$pid} = {
19672434 1873 time => $ctime,
1e3baf05
DM
1874 used => $used,
1875 cpu => $d->{cpu},
1e3baf05
DM
1876 };
1877 } else {
1878 $d->{cpu} = $old->{cpu};
1e3baf05
DM
1879 }
1880 }
1881
1882 return $res;
1883}
1884
1885sub foreach_drive {
1886 my ($conf, $func) = @_;
1887
1888 foreach my $ds (keys %$conf) {
1889 next if !valid_drivename($ds);
1890
6b64503e 1891 my $drive = parse_drive($ds, $conf->{$ds});
1e3baf05
DM
1892 next if !$drive;
1893
1894 &$func($ds, $drive);
1895 }
1896}
1897
1898sub config_to_command {
1899 my ($storecfg, $vmid, $conf, $defaults, $migrate_uri) = @_;
1900
1901 my $cmd = [];
b78ebef7 1902 my $pciaddr = '';
1e3baf05
DM
1903 my $kvmver = kvm_user_version();
1904 my $vernum = 0; # unknown
a3c52213
DM
1905 if ($kvmver =~ m/^(\d+)\.(\d+)$/) {
1906 $vernum = $1*1000000+$2*1000;
1907 } elsif ($kvmver =~ m/^(\d+)\.(\d+)\.(\d+)$/) {
1e3baf05
DM
1908 $vernum = $1*1000000+$2*1000+$3;
1909 }
1910
a3c52213 1911 die "detected old qemu-kvm binary ($kvmver)\n" if $vernum < 15000;
1e3baf05
DM
1912
1913 my $have_ovz = -f '/proc/vz/vestat';
1914
1915 push @$cmd, '/usr/bin/kvm';
1916
1917 push @$cmd, '-id', $vmid;
1918
1919 my $use_virtio = 0;
1920
6b64503e 1921 my $socket = monitor_socket($vmid);
abb39b66
DA
1922 push @$cmd, '-chardev', "socket,id=monitor,path=$socket,server,nowait";
1923 push @$cmd, '-mon', "chardev=monitor,mode=readline";
1e3baf05 1924
6b64503e 1925 $socket = vnc_socket($vmid);
1e3baf05
DM
1926 push @$cmd, '-vnc', "unix:$socket,x509,password";
1927
6b64503e 1928 push @$cmd, '-pidfile' , pidfile_name($vmid);
19672434 1929
1e3baf05
DM
1930 push @$cmd, '-daemonize';
1931
1932 push @$cmd, '-incoming', $migrate_uri if $migrate_uri;
1933
1c060867
DM
1934 my $use_usb2 = 0;
1935 for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
1936 next if !$conf->{"usb$i"};
1937 $use_usb2 = 1;
1938 }
1e3baf05 1939 # include usb device config
1c060867 1940 push @$cmd, '-readconfig', '/usr/share/qemu-server/pve-usb.cfg' if $use_usb2;
19672434 1941
1e3baf05 1942 # enable absolute mouse coordinates (needed by vnc)
6b64503e 1943 my $tablet = defined($conf->{tablet}) ? $conf->{tablet} : $defaults->{tablet};
1c060867
DM
1944 if ($tablet) {
1945 if ($use_usb2) {
1946 push @$cmd, '-device', 'usb-tablet,bus=ehci.0,port=6';
1947 } else {
1948 push @$cmd, '-usbdevice', 'tablet';
1949 }
1950 }
1e3baf05
DM
1951
1952 # host pci devices
040b06b7
DA
1953 for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
1954 my $d = parse_hostpci($conf->{"hostpci$i"});
1955 next if !$d;
b78ebef7
DA
1956 $pciaddr = print_pci_addr("hostpci$i");
1957 push @$cmd, '-device', "pci-assign,host=$d->{pciid},id=hostpci$i$pciaddr";
1e3baf05
DM
1958 }
1959
1960 # usb devices
1961 for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
1962 my $d = parse_usb_device($conf->{"usb$i"});
1963 next if !$d;
1964 if ($d->{vendorid} && $d->{productid}) {
1965 push @$cmd, '-device', "usb-host,vendorid=$d->{vendorid},productid=$d->{productid}";
1966 } elsif (defined($d->{hostbus}) && defined($d->{hostport})) {
1967 push @$cmd, '-device', "usb-host,hostbus=$d->{hostbus},hostport=$d->{hostport}";
1968 }
1969 }
1970
1e3baf05 1971 # serial devices
bae179aa 1972 for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
34978be3 1973 if (my $path = $conf->{"serial$i"}) {
19672434 1974 die "no such serial device\n" if ! -c $path;
34978be3
DM
1975 push @$cmd, '-chardev', "tty,id=serial$i,path=$path";
1976 push @$cmd, '-device', "isa-serial,chardev=serial$i";
1977 }
1e3baf05
DM
1978 }
1979
1980 # parallel devices
1989a89c 1981 for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
34978be3 1982 if (my $path = $conf->{"parallel$i"}) {
19672434 1983 die "no such parallel device\n" if ! -c $path;
34978be3
DM
1984 push @$cmd, '-chardev', "parport,id=parallel$i,path=$path";
1985 push @$cmd, '-device', "isa-parallel,chardev=parallel$i";
1986 }
1e3baf05
DM
1987 }
1988
1989 my $vmname = $conf->{name} || "vm$vmid";
1990
1991 push @$cmd, '-name', $vmname;
19672434 1992
1e3baf05
DM
1993 my $sockets = 1;
1994 $sockets = $conf->{smp} if $conf->{smp}; # old style - no longer iused
1995 $sockets = $conf->{sockets} if $conf->{sockets};
1996
1997 my $cores = $conf->{cores} || 1;
1998
1e3baf05
DM
1999 push @$cmd, '-smp', "sockets=$sockets,cores=$cores";
2000
2001 push @$cmd, '-cpu', $conf->{cpu} if $conf->{cpu};
2002
1e3baf05
DM
2003 push @$cmd, '-nodefaults';
2004
32baffb4 2005 my $bootorder = $conf->{boot} || $confdesc->{boot}->{default};
3b408e82 2006
0888fdce
DM
2007 my $bootindex_hash = {};
2008 my $i = 1;
2009 foreach my $o (split(//, $bootorder)) {
2010 $bootindex_hash->{$o} = $i*100;
2011 $i++;
afdb31d5 2012 }
3b408e82
DM
2013
2014 push @$cmd, '-boot', "menu=on";
1e3baf05 2015
6b64503e 2016 push @$cmd, '-no-acpi' if defined($conf->{acpi}) && $conf->{acpi} == 0;
1e3baf05 2017
6b64503e 2018 push @$cmd, '-no-reboot' if defined($conf->{reboot}) && $conf->{reboot} == 0;
1e3baf05
DM
2019
2020 my $vga = $conf->{vga};
2021 if (!$vga) {
2022 if ($conf->{ostype} && ($conf->{ostype} eq 'win7' || $conf->{ostype} eq 'w2k8')) {
2023 $vga = 'std';
2024 } else {
2025 $vga = 'cirrus';
2026 }
2027 }
19672434 2028
1e3baf05
DM
2029 push @$cmd, '-vga', $vga if $vga; # for kvm 77 and later
2030
2031 # time drift fix
6b64503e 2032 my $tdf = defined($conf->{tdf}) ? $conf->{tdf} : $defaults->{tdf};
da21653b
DM
2033 # ignore - no longer supported by newer kvm
2034 # push @$cmd, '-tdf' if $tdf;
1e3baf05 2035
6b64503e 2036 my $nokvm = defined($conf->{kvm}) && $conf->{kvm} == 0 ? 1 : 0;
1e3baf05
DM
2037
2038 if (my $ost = $conf->{ostype}) {
2039 # other, wxp, w2k, w2k3, w2k8, wvista, win7, l24, l26
2040
2041 if ($ost =~ m/^w/) { # windows
6b64503e 2042 push @$cmd, '-localtime' if !defined($conf->{localtime});
1e3baf05
DM
2043
2044 # use rtc-td-hack when acpi is enabled
6b64503e 2045 if (!(defined($conf->{acpi}) && $conf->{acpi} == 0)) {
1e3baf05
DM
2046 push @$cmd, '-rtc-td-hack';
2047 }
2048 }
2049
2050 # -tdf ?
19672434
DM
2051 # -no-acpi
2052 # -no-kvm
1e3baf05
DM
2053 # -win2k-hack ?
2054 }
2055
7f0b5beb
DM
2056 if ($nokvm) {
2057 push @$cmd, '-no-kvm';
2058 } else {
2059 die "No accelerator found!\n" if !$cpuinfo->{hvm};
2060 }
1e3baf05
DM
2061
2062 push @$cmd, '-localtime' if $conf->{localtime};
2063
2064 push @$cmd, '-startdate', $conf->{startdate} if $conf->{startdate};
2065
2066 push @$cmd, '-S' if $conf->{freeze};
2067
2068 # set keyboard layout
2069 my $kb = $conf->{keyboard} || $defaults->{keyboard};
2070 push @$cmd, '-k', $kb if $kb;
2071
2072 # enable sound
2073 #my $soundhw = $conf->{soundhw} || $defaults->{soundhw};
2074 #push @$cmd, '-soundhw', 'es1370';
2075 #push @$cmd, '-soundhw', $soundhw if $soundhw;
b78ebef7 2076 $pciaddr = print_pci_addr("balloon0");
13b5a753 2077 push @$cmd, '-device', "virtio-balloon-pci,id=balloon0$pciaddr" if $conf->{balloon};
1e3baf05 2078
0ea9541d
DM
2079 if ($conf->{watchdog}) {
2080 my $wdopts = parse_watchdog($conf->{watchdog});
0a40e8ea
DA
2081 $pciaddr = print_pci_addr("watchdog");
2082 my $watchdog = $wdopts->{model} || 'i6300esb';
2083 push @$cmd, '-device', "$watchdog$pciaddr";
0ea9541d
DM
2084 push @$cmd, '-watchdog-action', $wdopts->{action} if $wdopts->{action};
2085 }
2086
1e3baf05 2087 my $vollist = [];
941e0c42 2088 my $scsicontroller = {};
26ee04b6 2089 my $ahcicontroller = {};
1e3baf05
DM
2090
2091 foreach_drive($conf, sub {
2092 my ($ds, $drive) = @_;
2093
ff1a2432 2094 if (PVE::Storage::parse_volume_id($drive->{file}, 1)) {
1e3baf05 2095 push @$vollist, $drive->{file};
ff1a2432 2096 }
afdb31d5 2097
1e3baf05 2098 $use_virtio = 1 if $ds =~ m/^virtio/;
3b408e82
DM
2099
2100 if (drive_is_cdrom ($drive)) {
2101 if ($bootindex_hash->{d}) {
2102 $drive->{bootindex} = $bootindex_hash->{d};
2103 $bootindex_hash->{d} += 1;
2104 }
2105 } else {
2106 if ($bootindex_hash->{c}) {
2107 $drive->{bootindex} = $bootindex_hash->{c} if $conf->{bootdisk} && ($conf->{bootdisk} eq $ds);
2108 $bootindex_hash->{c} += 1;
2109 }
2110 }
2111
941e0c42
DA
2112 if ($drive->{interface} eq 'scsi') {
2113 my $maxdev = 7;
6b64503e 2114 my $controller = int($drive->{index} / $maxdev);
69b6ae0c
DA
2115 $pciaddr = print_pci_addr("lsi$controller");
2116 push @$cmd, '-device', "lsi,id=lsi$controller$pciaddr" if !$scsicontroller->{$controller};
58dc808d 2117 $scsicontroller->{$controller}=1;
941e0c42 2118 }
3b408e82 2119
26ee04b6
DA
2120 if ($drive->{interface} eq 'sata') {
2121 my $controller = int($drive->{index} / $MAX_SATA_DISKS);
2122 $pciaddr = print_pci_addr("ahci$controller");
2123 push @$cmd, '-device', "ahci,id=ahci$controller,multifunction=on$pciaddr" if !$ahcicontroller->{$controller};
2124 $ahcicontroller->{$controller}=1;
2125 }
2126
2127 push @$cmd, '-drive',print_drive_full($storecfg, $vmid, $drive);
6b64503e 2128 push @$cmd, '-device',print_drivedevice_full($storecfg,$vmid, $drive);
1e3baf05
DM
2129 });
2130
2131 push @$cmd, '-m', $conf->{memory} || $defaults->{memory};
19672434 2132
cc4d6182 2133 for (my $i = 0; $i < $MAX_NETS; $i++) {
5f0c4c32 2134 next if !$conf->{"net$i"};
cc4d6182
DA
2135 my $d = parse_net($conf->{"net$i"});
2136 next if !$d;
1e3baf05 2137
cc4d6182 2138 $use_virtio = 1 if $d->{model} eq 'virtio';
1e3baf05 2139
cc4d6182
DA
2140 if ($bootindex_hash->{n}) {
2141 $d->{bootindex} = $bootindex_hash->{n};
2142 $bootindex_hash->{n} += 1;
2143 }
1e3baf05 2144
cc4d6182
DA
2145 my $netdevfull = print_netdev_full($vmid,$conf,$d,"net$i");
2146 push @$cmd, '-netdev', $netdevfull;
1e3baf05 2147
cc4d6182
DA
2148 my $netdevicefull = print_netdevice_full($vmid,$conf,$d,"net$i");
2149 push @$cmd, '-device', $netdevicefull;
19672434
DM
2150 }
2151
1e3baf05
DM
2152
2153 # hack: virtio with fairsched is unreliable, so we do not use fairsched
2154 # when the VM uses virtio devices.
19672434
DM
2155 if (!$use_virtio && $have_ovz) {
2156
6b64503e 2157 my $cpuunits = defined($conf->{cpuunits}) ?
1e3baf05
DM
2158 $conf->{cpuunits} : $defaults->{cpuunits};
2159
2160 push @$cmd, '-cpuunits', $cpuunits if $cpuunits;
2161
2162 # fixme: cpulimit is currently ignored
2163 #push @$cmd, '-cpulimit', $conf->{cpulimit} if $conf->{cpulimit};
2164 }
2165
2166 # add custom args
2167 if ($conf->{args}) {
3ada46c9 2168 my $aa = PVE::Tools::split_args($conf->{args});
1e3baf05
DM
2169 push @$cmd, @$aa;
2170 }
2171
2172 return wantarray ? ($cmd, $vollist) : $cmd;
2173}
19672434 2174
1e3baf05
DM
2175sub vnc_socket {
2176 my ($vmid) = @_;
2177 return "${var_run_tmpdir}/$vmid.vnc";
2178}
2179
2180sub monitor_socket {
2181 my ($vmid) = @_;
2182 return "${var_run_tmpdir}/$vmid.mon";
2183}
2184
2185sub pidfile_name {
2186 my ($vmid) = @_;
2187 return "${var_run_tmpdir}/$vmid.pid";
2188}
2189
1e3baf05
DM
2190sub next_migrate_port {
2191
2192 for (my $p = 60000; $p < 60010; $p++) {
2193
6b64503e
DM
2194 my $sock = IO::Socket::INET->new(Listen => 5,
2195 LocalAddr => 'localhost',
2196 LocalPort => $p,
2197 ReuseAddr => 1,
2198 Proto => 0);
1e3baf05
DM
2199
2200 if ($sock) {
6b64503e 2201 close($sock);
1e3baf05
DM
2202 return $p;
2203 }
2204 }
2205
2206 die "unable to find free migration port";
2207}
2208
86fdcfb2
DA
2209sub vm_devices_list {
2210 my ($vmid) = @_;
2211
ff1a2432 2212 my $res = vm_monitor_command ($vmid, "info pci");
1dc4f496
DM
2213
2214 my @lines = split ("\n", $res);
2215 my $devices;
2216 my $bus;
2217 my $addr;
2218 my $id;
afdb31d5 2219
1dc4f496
DM
2220 foreach my $line (@lines) {
2221 $line =~ s/^\s+//;
2222 if ($line =~ m/^Bus (\d+), device (\d+), function (\d+):$/) {
2223 $bus=$1;
2224 $addr=$2;
2225 }
2226 if ($line =~ m/^id "([a-z][a-z_\-]*\d*)"$/) {
86fdcfb2
DA
2227 $id=$1;
2228 $devices->{$id}->{bus}=$bus;
2229 $devices->{$id}->{addr}=$addr;
1dc4f496
DM
2230 }
2231 }
86fdcfb2 2232
1dc4f496 2233 return $devices;
86fdcfb2
DA
2234}
2235
ec21aa11 2236sub vm_deviceplug {
f19d1c47 2237 my ($storecfg, $conf, $vmid, $deviceid, $device) = @_;
ae57f6b3 2238
2630d2a9 2239 return 1 if !check_running($vmid) || !$conf->{hotplug};
afdb31d5 2240
95d6343b
DA
2241 my $devices_list = vm_devices_list($vmid);
2242 return 1 if defined($devices_list->{$deviceid});
2243
5e5dcb73
DA
2244 if ($deviceid =~ m/^(virtio)(\d+)$/) {
2245 return undef if !qemu_driveadd($storecfg, $vmid, $device);
1dc4f496 2246 my $devicefull = print_drivedevice_full($storecfg, $vmid, $device);
5e5dcb73
DA
2247 qemu_deviceadd($vmid, $devicefull);
2248 if(!qemu_deviceaddverify($vmid, $deviceid)) {
2249 qemu_drivedel($vmid, $deviceid);
2250 return undef;
2251 }
f19d1c47 2252 }
cfc817c7
DA
2253
2254 if ($deviceid =~ m/^(lsi)(\d+)$/) {
2255 my $pciaddr = print_pci_addr($deviceid);
2256 my $devicefull = "lsi,id=$deviceid$pciaddr";
2257 qemu_deviceadd($vmid, $devicefull);
2258 return undef if(!qemu_deviceaddverify($vmid, $deviceid));
2259 }
2260
a4f091a0
DA
2261 if ($deviceid =~ m/^(scsi)(\d+)$/) {
2262 return undef if !qemu_findorcreatelsi($storecfg,$conf, $vmid, $device);
2263 return undef if !qemu_driveadd($storecfg, $vmid, $device);
2264 my $devicefull = print_drivedevice_full($storecfg, $vmid, $device);
2265 if(!qemu_deviceadd($vmid, $devicefull)) {
2266 qemu_drivedel($vmid, $deviceid);
2267 return undef;
2268 }
2269 }
2270
2630d2a9
DA
2271 if ($deviceid =~ m/^(net)(\d+)$/) {
2272 return undef if !qemu_netdevadd($vmid, $conf, $device, $deviceid);
2273 my $netdevicefull = print_netdevice_full($vmid, $conf, $device, $deviceid);
2274 qemu_deviceadd($vmid, $netdevicefull);
2275 if(!qemu_deviceaddverify($vmid, $deviceid)) {
2276 qemu_netdevdel($vmid, $deviceid);
2277 return undef;
2278 }
2279 }
2280
5e5dcb73 2281 return 1;
a4dea331
DA
2282}
2283
ec21aa11 2284sub vm_deviceunplug {
f19d1c47 2285 my ($vmid, $conf, $deviceid) = @_;
873c2d69 2286
5e5dcb73 2287 return 1 if !check_running ($vmid) || !$conf->{hotplug};
873c2d69 2288
95d6343b
DA
2289 my $devices_list = vm_devices_list($vmid);
2290 return 1 if !defined($devices_list->{$deviceid});
2291
ae57f6b3 2292 die "can't unplug bootdisk" if $conf->{bootdisk} && $conf->{bootdisk} eq $deviceid;
f19d1c47 2293
5e5dcb73
DA
2294 if ($deviceid =~ m/^(virtio)(\d+)$/) {
2295 return undef if !qemu_drivedel($vmid, $deviceid);
2296 qemu_devicedel($vmid, $deviceid);
2297 return undef if !qemu_devicedelverify($vmid, $deviceid);
2298 }
cfc817c7
DA
2299
2300 if ($deviceid =~ m/^(lsi)(\d+)$/) {
2301 return undef if !qemu_devicedel($vmid, $deviceid);
2302 }
2303
a4f091a0
DA
2304 if ($deviceid =~ m/^(scsi)(\d+)$/) {
2305 return undef if !qemu_devicedel($vmid, $deviceid);
2306 return undef if !qemu_drivedel($vmid, $deviceid);
2307 }
2308
2630d2a9
DA
2309 if ($deviceid =~ m/^(net)(\d+)$/) {
2310 return undef if !qemu_netdevdel($vmid, $deviceid);
2311 qemu_devicedel($vmid, $deviceid);
2312 return undef if !qemu_devicedelverify($vmid, $deviceid);
2313 }
2314
5e5dcb73
DA
2315 return 1;
2316}
2317
2318sub qemu_deviceadd {
2319 my ($vmid, $devicefull) = @_;
873c2d69 2320
5e5dcb73
DA
2321 my $ret = vm_monitor_command($vmid, "device_add $devicefull");
2322 $ret =~ s/^\s+//;
afdb31d5 2323 # Otherwise, if the command succeeds, no output is sent. So any non-empty string shows an error
5e5dcb73
DA
2324 return 1 if $ret eq "";
2325 syslog("err", "error on hotplug device : $ret");
2326 return undef;
f19d1c47 2327
5e5dcb73 2328}
afdb31d5 2329
5e5dcb73
DA
2330sub qemu_devicedel {
2331 my($vmid, $deviceid) = @_;
f19d1c47 2332
5e5dcb73
DA
2333 my $ret = vm_monitor_command($vmid, "device_del $deviceid");
2334 $ret =~ s/^\s+//;
2335 return 1 if $ret eq "";
2336 syslog("err", "detaching device $deviceid failed : $ret");
2337 return undef;
2338}
2339
2340sub qemu_driveadd {
2341 my($storecfg, $vmid, $device) = @_;
2342
2343 my $drive = print_drive_full($storecfg, $vmid, $device);
2344 my $ret = vm_monitor_command($vmid, "drive_add auto $drive");
2345 # If the command succeeds qemu prints: "OK"
2346 if ($ret !~ m/OK/s) {
2347 syslog("err", "adding drive failed: $ret");
2348 return undef;
f19d1c47 2349 }
5e5dcb73
DA
2350 return 1;
2351}
afdb31d5 2352
5e5dcb73
DA
2353sub qemu_drivedel {
2354 my($vmid, $deviceid) = @_;
873c2d69 2355
5e5dcb73
DA
2356 my $ret = vm_monitor_command($vmid, "drive_del drive-$deviceid");
2357 $ret =~ s/^\s+//;
2358 if ($ret =~ m/Device \'.*?\' not found/s) {
afdb31d5 2359 # NB: device not found errors mean the drive was auto-deleted and we ignore the error
5e5dcb73
DA
2360 }
2361 elsif ($ret ne "") {
2362 syslog("err", "deleting drive $deviceid failed : $ret");
2363 return undef;
873c2d69 2364 }
5e5dcb73
DA
2365 return 1;
2366}
f19d1c47 2367
5e5dcb73
DA
2368sub qemu_deviceaddverify {
2369 my ($vmid,$deviceid) = @_;
873c2d69 2370
5e5dcb73
DA
2371 for (my $i = 0; $i <= 5; $i++) {
2372 my $devices_list = vm_devices_list($vmid);
2373 return 1 if defined($devices_list->{$deviceid});
2374 sleep 1;
afdb31d5 2375 }
5e5dcb73
DA
2376 syslog("err", "error on hotplug device $deviceid");
2377 return undef;
2378}
afdb31d5 2379
5e5dcb73
DA
2380
2381sub qemu_devicedelverify {
2382 my ($vmid,$deviceid) = @_;
2383
2384 #need to verify the device is correctly remove as device_del is async and empty return is not reliable
2385 for (my $i = 0; $i <= 5; $i++) {
2386 my $devices_list = vm_devices_list($vmid);
2387 return 1 if !defined($devices_list->{$deviceid});
2388 sleep 1;
afdb31d5 2389 }
5e5dcb73
DA
2390 syslog("err", "error on hot-unplugging device $deviceid");
2391 return undef;
873c2d69
DA
2392}
2393
cfc817c7
DA
2394sub qemu_findorcreatelsi {
2395 my ($storecfg, $conf, $vmid, $device) = @_;
2396
2397 my $maxdev = 7;
2398 my $controller = int($device->{index} / $maxdev);
2399 my $lsiid="lsi$controller";
2400 my $devices_list = vm_devices_list($vmid);
2401
2402 if(!defined($devices_list->{$lsiid})) {
2403 return undef if !vm_deviceplug($storecfg, $conf, $vmid, $lsiid);
2404 }
2405 return 1;
2406}
2407
2630d2a9
DA
2408sub qemu_netdevadd {
2409 my ($vmid, $conf, $device, $deviceid) = @_;
2410
2411 my $netdev = print_netdev_full($vmid, $conf, $device, $deviceid);
2412 my $ret = vm_monitor_command($vmid, "netdev_add $netdev");
2413 $ret =~ s/^\s+//;
2414
2415 #if the command succeeds, no output is sent. So any non-empty string shows an error
2416 return 1 if $ret eq "";
2417 syslog("err", "adding netdev failed: $ret");
2418 return undef;
2419}
2420
2421sub qemu_netdevdel {
2422 my ($vmid, $deviceid) = @_;
2423
2424 my $ret = vm_monitor_command($vmid, "netdev_del $deviceid");
2425 $ret =~ s/^\s+//;
2426 #if the command succeeds, no output is sent. So any non-empty string shows an error
2427 return 1 if $ret eq "";
2428 syslog("err", "deleting netdev failed: $ret");
2429 return undef;
2430}
2431
1e3baf05
DM
2432sub vm_start {
2433 my ($storecfg, $vmid, $statefile, $skiplock) = @_;
2434
6b64503e
DM
2435 lock_config($vmid, sub {
2436 my $conf = load_config($vmid);
1e3baf05 2437
6b64503e 2438 check_lock($conf) if !$skiplock;
1e3baf05 2439
ff1a2432 2440 die "VM $vmid already running\n" if check_running($vmid);
1e3baf05
DM
2441
2442 my $migrate_uri;
2443 my $migrate_port = 0;
2444
2445 if ($statefile) {
2446 if ($statefile eq 'tcp') {
2447 $migrate_port = next_migrate_port();
2448 $migrate_uri = "tcp:localhost:${migrate_port}";
2449 } else {
2450 if (-f $statefile) {
2451 $migrate_uri = "exec:cat $statefile";
2452 } else {
2453 warn "state file '$statefile' does not exist - doing normal startup\n";
2454 }
2455 }
2456 }
2457
2458 my $defaults = load_defaults();
2459
e6c3b671 2460 my ($cmd, $vollist) = config_to_command($storecfg, $vmid, $conf, $defaults, $migrate_uri);
1e3baf05 2461 # host pci devices
040b06b7
DA
2462 for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
2463 my $d = parse_hostpci($conf->{"hostpci$i"});
2464 next if !$d;
2465 my $info = pci_device_info("0000:$d->{pciid}");
2466 die "IOMMU not present\n" if !check_iommu_support();
2467 die "no pci device info for device '$d->{pciid}'\n" if !$info;
2468 die "can't unbind pci device '$d->{pciid}'\n" if !pci_dev_bind_to_stub($info);
2469 die "can't reset pci device '$d->{pciid}'\n" if !pci_dev_reset($info);
2470 }
1e3baf05
DM
2471
2472 PVE::Storage::activate_volumes($storecfg, $vollist);
2473
6b64503e 2474 eval { run_command($cmd, timeout => $migrate_uri ? undef : 30); };
1e3baf05 2475 my $err = $@;
ff1a2432 2476 die "start failed: $err" if $err;
1e3baf05
DM
2477
2478 if ($statefile) {
2479
2480 if ($statefile eq 'tcp') {
2481 print "migration listens on port $migrate_port\n";
2482 } else {
2483 unlink $statefile;
2484 # fixme: send resume - is that necessary ?
ff1a2432 2485 eval { vm_monitor_command($vmid, "cont"); };
1e3baf05
DM
2486 }
2487 }
afdb31d5 2488
48e1a963
DM
2489 # always set migrate speed (overwrite kvm default of 32m)
2490 # we set a very hight default of 8192m which is basically unlimited
2491 my $migrate_speed = $defaults->{migrate_speed} || 8192;
2492 $migrate_speed = $conf->{migrate_speed} || $migrate_speed;
afdb31d5 2493 eval {
1e3baf05 2494 my $cmd = "migrate_set_speed ${migrate_speed}m";
afdb31d5 2495 vm_monitor_command($vmid, $cmd);
48e1a963 2496 };
1e3baf05 2497
19672434 2498 if (my $migrate_downtime =
1e3baf05
DM
2499 $conf->{migrate_downtime} || $defaults->{migrate_downtime}) {
2500 my $cmd = "migrate_set_downtime ${migrate_downtime}";
ff1a2432 2501 eval { vm_monitor_command($vmid, $cmd); };
1e3baf05 2502 }
e6c3b671 2503
7878afeb 2504 vm_balloonset($vmid, $conf->{balloon}) if $conf->{balloon};
ce332eeb 2505
1e3baf05
DM
2506 });
2507}
2508
2509sub __read_avail {
2510 my ($fh, $timeout) = @_;
2511
2512 my $sel = new IO::Select;
6b64503e 2513 $sel->add($fh);
1e3baf05
DM
2514
2515 my $res = '';
2516 my $buf;
2517
2518 my @ready;
6b64503e 2519 while (scalar (@ready = $sel->can_read($timeout))) {
1e3baf05 2520 my $count;
6b64503e 2521 if ($count = $fh->sysread($buf, 8192)) {
1e3baf05
DM
2522 if ($buf =~ /^(.*)\(qemu\) $/s) {
2523 $res .= $1;
2524 last;
2525 } else {
2526 $res .= $buf;
2527 }
2528 } else {
6b64503e 2529 if (!defined($count)) {
1e3baf05
DM
2530 die "$!\n";
2531 }
2532 last;
2533 }
2534 }
2535
6b64503e 2536 die "monitor read timeout\n" if !scalar(@ready);
1e3baf05
DM
2537
2538 return $res;
2539}
2540
2541sub vm_monitor_command {
ff1a2432 2542 my ($vmid, $cmdstr, $nocheck) = @_;
1e3baf05
DM
2543
2544 my $res;
2545
1e3baf05 2546 eval {
ff1a2432 2547 die "VM $vmid not running\n" if !check_running($vmid, $nocheck);
1e3baf05 2548
e6c3b671 2549 my $sname = monitor_socket($vmid);
1e3baf05 2550
6b64503e 2551 my $sock = IO::Socket::UNIX->new( Peer => $sname ) ||
1e3baf05
DM
2552 die "unable to connect to VM $vmid socket - $!\n";
2553
2554 my $timeout = 3;
2555
19672434 2556 # hack: migrate sometime blocks the monitor (when migrate_downtime
1e3baf05
DM
2557 # is set)
2558 if ($cmdstr =~ m/^(info\s+migrate|migrate\s)/) {
2559 $timeout = 60*60; # 1 hour
2560 }
2561
2562 # read banner;
6b64503e 2563 my $data = __read_avail($sock, $timeout);
19672434 2564
1e3baf05
DM
2565 if ($data !~ m/^QEMU\s+(\S+)\s+monitor\s/) {
2566 die "got unexpected qemu monitor banner\n";
2567 }
2568
2569 my $sel = new IO::Select;
6b64503e 2570 $sel->add($sock);
1e3baf05 2571
6b64503e 2572 if (!scalar(my @ready = $sel->can_write($timeout))) {
1e3baf05
DM
2573 die "monitor write error - timeout";
2574 }
2575
2576 my $fullcmd = "$cmdstr\r";
2577
ae57f6b3
DM
2578 # syslog('info', "VM $vmid monitor command: $cmdstr");
2579
1e3baf05 2580 my $b;
6b64503e 2581 if (!($b = $sock->syswrite($fullcmd)) || ($b != length($fullcmd))) {
1e3baf05
DM
2582 die "monitor write error - $!";
2583 }
2584
2585 return if ($cmdstr eq 'q') || ($cmdstr eq 'quit');
2586
19672434 2587 $timeout = 20;
1e3baf05
DM
2588
2589 if ($cmdstr =~ m/^(info\s+migrate|migrate\s)/) {
2590 $timeout = 60*60; # 1 hour
2591 } elsif ($cmdstr =~ m/^(eject|change)/) {
2592 $timeout = 60; # note: cdrom mount command is slow
2593 }
6b64503e 2594 if ($res = __read_avail($sock, $timeout)) {
19672434 2595
6b64503e 2596 my @lines = split("\r?\n", $res);
1e3baf05
DM
2597
2598 shift @lines if $lines[0] !~ m/^unknown command/; # skip echo
19672434 2599
6b64503e 2600 $res = join("\n", @lines);
1e3baf05
DM
2601 $res .= "\n";
2602 }
2603 };
2604
2605 my $err = $@;
2606
2607 if ($err) {
6b64503e 2608 syslog("err", "VM $vmid monitor command failed - $err");
1e3baf05
DM
2609 die $err;
2610 }
2611
2612 return $res;
2613}
2614
2615sub vm_commandline {
2616 my ($storecfg, $vmid) = @_;
2617
6b64503e 2618 my $conf = load_config($vmid);
1e3baf05
DM
2619
2620 my $defaults = load_defaults();
2621
6b64503e 2622 my $cmd = config_to_command($storecfg, $vmid, $conf, $defaults);
1e3baf05 2623
6b64503e 2624 return join(' ', @$cmd);
1e3baf05
DM
2625}
2626
2627sub vm_reset {
2628 my ($vmid, $skiplock) = @_;
2629
6b64503e 2630 lock_config($vmid, sub {
1e3baf05 2631
6b64503e 2632 my $conf = load_config($vmid);
1e3baf05 2633
6b64503e 2634 check_lock($conf) if !$skiplock;
1e3baf05 2635
ff1a2432
DM
2636 vm_monitor_command($vmid, "system_reset");
2637 });
2638}
2639
2640sub get_vm_volumes {
2641 my ($conf) = @_;
1e3baf05 2642
ff1a2432
DM
2643 my $vollist = [];
2644 foreach_drive($conf, sub {
2645 my ($ds, $drive) = @_;
2646
2647 my ($sid, $volname) = PVE::Storage::parse_volume_id($drive->{file}, 1);
2648 return if !$sid;
2649
2650 my $volid = $drive->{file};
2651 return if !$volid || $volid =~ m|^/|;
2652
2653 push @$vollist, $volid;
1e3baf05 2654 });
ff1a2432
DM
2655
2656 return $vollist;
2657}
2658
2659sub vm_stop_cleanup {
254575e9 2660 my ($storecfg, $vmid, $conf, $keepActive) = @_;
ff1a2432 2661
745fed70
DM
2662 eval {
2663 fairsched_rmnod($vmid); # try to destroy group
ff1a2432 2664
254575e9
DM
2665 if (!$keepActive) {
2666 my $vollist = get_vm_volumes($conf);
2667 PVE::Storage::deactivate_volumes($storecfg, $vollist);
2668 }
961bfcb2
DM
2669
2670 foreach my $ext (qw(mon pid vnc)) {
2671 unlink "/var/run/qemu-server/${vmid}.$ext";
2672 }
745fed70
DM
2673 };
2674 warn $@ if $@; # avoid errors - just warn
1e3baf05
DM
2675}
2676
e6c3b671 2677# Note: use $nockeck to skip tests if VM configuration file exists.
254575e9
DM
2678# We need that when migration VMs to other nodes (files already moved)
2679# Note: we set $keepActive in vzdump stop mode - volumes need to stay active
1e3baf05 2680sub vm_stop {
254575e9 2681 my ($storecfg, $vmid, $skiplock, $nocheck, $timeout, $shutdown, $force, $keepActive) = @_;
9269013a
DM
2682
2683 $timeout = 60 if !defined($timeout);
ff1a2432 2684
9269013a 2685 $force = 1 if !defined($force) && !$shutdown;
1e3baf05 2686
e6c3b671 2687 lock_config($vmid, sub {
1e3baf05 2688
e6c3b671 2689 my $pid = check_running($vmid, $nocheck);
ff1a2432 2690 return if !$pid;
1e3baf05 2691
ff1a2432 2692 my $conf;
e6c3b671 2693 if (!$nocheck) {
ff1a2432 2694 $conf = load_config($vmid);
e6c3b671
DM
2695 check_lock($conf) if !$skiplock;
2696 }
19672434 2697
9269013a
DM
2698 eval {
2699 if ($shutdown) {
2700 vm_monitor_command($vmid, "system_powerdown", $nocheck);
2701 } else {
2702 vm_monitor_command($vmid, "quit", $nocheck);
afdb31d5 2703 }
9269013a 2704 };
1e3baf05
DM
2705 my $err = $@;
2706
2707 if (!$err) {
1e3baf05 2708 my $count = 0;
e6c3b671 2709 while (($count < $timeout) && check_running($vmid, $nocheck)) {
1e3baf05
DM
2710 $count++;
2711 sleep 1;
2712 }
2713
2714 if ($count >= $timeout) {
9269013a
DM
2715 if ($force) {
2716 warn "VM still running - terminating now with SIGTERM\n";
2717 kill 15, $pid;
2718 } else {
2719 die "VM quit/powerdown failed - got timeout\n";
2720 }
2721 } else {
254575e9 2722 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive) if $conf;
9269013a 2723 return;
1e3baf05
DM
2724 }
2725 } else {
9269013a
DM
2726 if ($force) {
2727 warn "VM quit/powerdown failed - terminating now with SIGTERM\n";
2728 kill 15, $pid;
2729 } else {
afdb31d5 2730 die "VM quit/powerdown failed\n";
9269013a 2731 }
1e3baf05
DM
2732 }
2733
2734 # wait again
ff1a2432 2735 $timeout = 10;
1e3baf05
DM
2736
2737 my $count = 0;
e6c3b671 2738 while (($count < $timeout) && check_running($vmid, $nocheck)) {
1e3baf05
DM
2739 $count++;
2740 sleep 1;
2741 }
2742
2743 if ($count >= $timeout) {
ff1a2432 2744 warn "VM still running - terminating now with SIGKILL\n";
1e3baf05 2745 kill 9, $pid;
ff1a2432 2746 sleep 1;
1e3baf05
DM
2747 }
2748
254575e9 2749 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive) if $conf;
ff1a2432 2750 });
1e3baf05
DM
2751}
2752
2753sub vm_suspend {
2754 my ($vmid, $skiplock) = @_;
2755
6b64503e 2756 lock_config($vmid, sub {
1e3baf05 2757
6b64503e 2758 my $conf = load_config($vmid);
1e3baf05 2759
6b64503e 2760 check_lock($conf) if !$skiplock;
1e3baf05 2761
ff1a2432 2762 vm_monitor_command($vmid, "stop");
1e3baf05
DM
2763 });
2764}
2765
2766sub vm_resume {
2767 my ($vmid, $skiplock) = @_;
2768
6b64503e 2769 lock_config($vmid, sub {
1e3baf05 2770
6b64503e 2771 my $conf = load_config($vmid);
1e3baf05 2772
6b64503e 2773 check_lock($conf) if !$skiplock;
1e3baf05 2774
ff1a2432 2775 vm_monitor_command($vmid, "cont");
1e3baf05
DM
2776 });
2777}
2778
5fdbe4f0
DM
2779sub vm_sendkey {
2780 my ($vmid, $skiplock, $key) = @_;
1e3baf05 2781
6b64503e 2782 lock_config($vmid, sub {
1e3baf05 2783
6b64503e 2784 my $conf = load_config($vmid);
1e3baf05 2785
ff1a2432 2786 vm_monitor_command($vmid, "sendkey $key");
1e3baf05
DM
2787 });
2788}
2789
2790sub vm_destroy {
2791 my ($storecfg, $vmid, $skiplock) = @_;
2792
6b64503e 2793 lock_config($vmid, sub {
1e3baf05 2794
6b64503e 2795 my $conf = load_config($vmid);
1e3baf05 2796
6b64503e 2797 check_lock($conf) if !$skiplock;
1e3baf05 2798
ff1a2432
DM
2799 if (!check_running($vmid)) {
2800 fairsched_rmnod($vmid); # try to destroy group
2801 destroy_vm($storecfg, $vmid);
2802 } else {
2803 die "VM $vmid is running - destroy failed\n";
1e3baf05
DM
2804 }
2805 });
2806}
2807
2808sub vm_stopall {
ff1a2432 2809 my ($storecfg, $timeout) = @_;
1e3baf05
DM
2810
2811 $timeout = 3*60 if !$timeout;
2812
ff1a2432
DM
2813 my $cleanuphash = {};
2814
1e3baf05
DM
2815 my $vzlist = vzlist();
2816 my $count = 0;
2817 foreach my $vmid (keys %$vzlist) {
2818 next if !$vzlist->{$vmid}->{pid};
2819 $count++;
ff1a2432 2820 $cleanuphash->{$vmid} = 1;
1e3baf05
DM
2821 }
2822
ff1a2432 2823 return if !$count;
1e3baf05 2824
ff1a2432
DM
2825 my $msg = "Stopping Qemu Server - sending shutdown requests to all VMs\n";
2826 syslog('info', $msg);
2827 warn $msg;
1e3baf05 2828
ff1a2432
DM
2829 foreach my $vmid (keys %$vzlist) {
2830 next if !$vzlist->{$vmid}->{pid};
bbbe5146
DM
2831 eval { vm_monitor_command($vmid, "system_powerdown"); };
2832 warn $@ if $@;
ff1a2432 2833 }
1e3baf05 2834
ff1a2432
DM
2835 my $wt = 5;
2836 my $maxtries = int(($timeout + $wt -1)/$wt);
2837 my $try = 0;
2838 while (($try < $maxtries) && $count) {
2839 $try++;
2840 sleep $wt;
afdb31d5 2841
ff1a2432
DM
2842 $vzlist = vzlist();
2843 $count = 0;
2844 foreach my $vmid (keys %$vzlist) {
2845 next if !$vzlist->{$vmid}->{pid};
2846 $count++;
1e3baf05 2847 }
ff1a2432
DM
2848 last if !$count;
2849 }
1e3baf05 2850
ff1a2432 2851 if ($count) {
1e3baf05
DM
2852
2853 foreach my $vmid (keys %$vzlist) {
2854 next if !$vzlist->{$vmid}->{pid};
19672434 2855
ff1a2432
DM
2856 warn "VM $vmid still running - sending stop now\n";
2857 eval { vm_monitor_command($vmid, "quit"); };
2858 warn $@ if $@;
1e3baf05
DM
2859 }
2860
2861 $timeout = 30;
6b64503e 2862 $maxtries = int(($timeout + $wt -1)/$wt);
1e3baf05
DM
2863 $try = 0;
2864 while (($try < $maxtries) && $count) {
2865 $try++;
2866 sleep $wt;
afdb31d5 2867
1e3baf05
DM
2868 $vzlist = vzlist();
2869 $count = 0;
2870 foreach my $vmid (keys %$vzlist) {
2871 next if !$vzlist->{$vmid}->{pid};
2872 $count++;
2873 }
2874 last if !$count;
2875 }
2876
ff1a2432 2877 if ($count) {
1e3baf05 2878
ff1a2432
DM
2879 foreach my $vmid (keys %$vzlist) {
2880 next if !$vzlist->{$vmid}->{pid};
19672434 2881
ff1a2432
DM
2882 warn "VM $vmid still running - terminating now with SIGTERM\n";
2883 kill 15, $vzlist->{$vmid}->{pid};
2884 }
2885 sleep 1;
1e3baf05
DM
2886 }
2887
2888 # this is called by system shotdown scripts, so remaining
2889 # processes gets killed anyways (no need to send kill -9 here)
ff1a2432 2890 }
1e3baf05 2891
ff1a2432
DM
2892 $vzlist = vzlist();
2893 foreach my $vmid (keys %$cleanuphash) {
2894 next if $vzlist->{$vmid}->{pid};
afdb31d5 2895 eval {
ff1a2432 2896 my $conf = load_config($vmid);
afdb31d5 2897 vm_stop_cleanup($storecfg, $vmid, $conf);
ff1a2432
DM
2898 };
2899 warn $@ if $@;
1e3baf05 2900 }
ff1a2432
DM
2901
2902 $msg = "Qemu Server stopped\n";
2903 syslog('info', $msg);
2904 print $msg;
1e3baf05
DM
2905}
2906
2907# pci helpers
2908
2909sub file_write {
2910 my ($filename, $buf) = @_;
2911
6b64503e 2912 my $fh = IO::File->new($filename, "w");
1e3baf05
DM
2913 return undef if !$fh;
2914
2915 my $res = print $fh $buf;
2916
2917 $fh->close();
2918
2919 return $res;
2920}
2921
2922sub pci_device_info {
2923 my ($name) = @_;
2924
2925 my $res;
2926
2927 return undef if $name !~ m/^([a-f0-9]{4}):([a-f0-9]{2}):([a-f0-9]{2})\.([a-f0-9])$/;
2928 my ($domain, $bus, $slot, $func) = ($1, $2, $3, $4);
2929
2930 my $irq = file_read_firstline("$pcisysfs/devices/$name/irq");
2931 return undef if !defined($irq) || $irq !~ m/^\d+$/;
2932
2933 my $vendor = file_read_firstline("$pcisysfs/devices/$name/vendor");
2934 return undef if !defined($vendor) || $vendor !~ s/^0x//;
2935
2936 my $product = file_read_firstline("$pcisysfs/devices/$name/device");
2937 return undef if !defined($product) || $product !~ s/^0x//;
2938
2939 $res = {
2940 name => $name,
2941 vendor => $vendor,
2942 product => $product,
2943 domain => $domain,
2944 bus => $bus,
2945 slot => $slot,
2946 func => $func,
2947 irq => $irq,
2948 has_fl_reset => -f "$pcisysfs/devices/$name/reset" || 0,
2949 };
2950
2951 return $res;
2952}
2953
2954sub pci_dev_reset {
2955 my ($dev) = @_;
2956
2957 my $name = $dev->{name};
2958
2959 my $fn = "$pcisysfs/devices/$name/reset";
2960
6b64503e 2961 return file_write($fn, "1");
1e3baf05
DM
2962}
2963
2964sub pci_dev_bind_to_stub {
2965 my ($dev) = @_;
2966
2967 my $name = $dev->{name};
2968
2969 my $testdir = "$pcisysfs/drivers/pci-stub/$name";
2970 return 1 if -d $testdir;
2971
2972 my $data = "$dev->{vendor} $dev->{product}";
6b64503e 2973 return undef if !file_write("$pcisysfs/drivers/pci-stub/new_id", $data);
1e3baf05
DM
2974
2975 my $fn = "$pcisysfs/devices/$name/driver/unbind";
6b64503e 2976 if (!file_write($fn, $name)) {
1e3baf05
DM
2977 return undef if -f $fn;
2978 }
2979
2980 $fn = "$pcisysfs/drivers/pci-stub/bind";
2981 if (! -d $testdir) {
6b64503e 2982 return undef if !file_write($fn, $name);
1e3baf05
DM
2983 }
2984
2985 return -d $testdir;
2986}
2987
afdb31d5 2988sub print_pci_addr {
72a063e4 2989 my ($id) = @_;
6b64503e 2990
72a063e4 2991 my $res = '';
6b64503e 2992 my $devices = {
e5f7f8ed
DA
2993 #addr1 : ide,parallel,serial (motherboard)
2994 #addr2 : first videocard
13b5a753 2995 balloon0 => { bus => 0, addr => 3 },
0a40e8ea 2996 watchdog => { bus => 0, addr => 4 },
69b6ae0c
DA
2997 lsi0 => { bus => 0, addr => 5 },
2998 lsi1 => { bus => 0, addr => 6 },
26ee04b6 2999 ahci0 => { bus => 0, addr => 7 },
6b64503e
DM
3000 virtio0 => { bus => 0, addr => 10 },
3001 virtio1 => { bus => 0, addr => 11 },
3002 virtio2 => { bus => 0, addr => 12 },
3003 virtio3 => { bus => 0, addr => 13 },
3004 virtio4 => { bus => 0, addr => 14 },
3005 virtio5 => { bus => 0, addr => 15 },
b78ebef7
DA
3006 hostpci0 => { bus => 0, addr => 16 },
3007 hostpci1 => { bus => 0, addr => 17 },
f290f8d9
DA
3008 net0 => { bus => 0, addr => 18 },
3009 net1 => { bus => 0, addr => 19 },
3010 net2 => { bus => 0, addr => 20 },
3011 net3 => { bus => 0, addr => 21 },
3012 net4 => { bus => 0, addr => 22 },
3013 net5 => { bus => 0, addr => 23 },
e5f7f8ed 3014 #addr29 : usb-host (pve-usb.cfg)
6b64503e
DM
3015 };
3016
3017 if (defined($devices->{$id}->{bus}) && defined($devices->{$id}->{addr})) {
72a063e4
DA
3018 my $addr = sprintf("0x%x", $devices->{$id}->{addr});
3019 $res = ",bus=pci.$devices->{$id}->{bus},addr=$addr";
3020 }
3021 return $res;
3022
3023}
3024
13a48620 3025sub vm_balloonset {
7878afeb 3026 my ($vmid, $value) = @_;
13a48620 3027
ff1a2432 3028 vm_monitor_command($vmid, "balloon $value");
13a48620
DA
3029}
3030
3e16d5fc
DM
3031# vzdump restore implementaion
3032
3033sub archive_read_firstfile {
3034 my $archive = shift;
afdb31d5 3035
3e16d5fc
DM
3036 die "ERROR: file '$archive' does not exist\n" if ! -f $archive;
3037
3038 # try to detect archive type first
3039 my $pid = open (TMP, "tar tf '$archive'|") ||
3040 die "unable to open file '$archive'\n";
3041 my $firstfile = <TMP>;
3042 kill 15, $pid;
3043 close TMP;
3044
3045 die "ERROR: archive contaions no data\n" if !$firstfile;
3046 chomp $firstfile;
3047
3048 return $firstfile;
3049}
3050
3051sub restore_cleanup {
3052 my $statfile = shift;
3053
3054 print STDERR "starting cleanup\n";
3055
3056 if (my $fd = IO::File->new($statfile, "r")) {
3057 while (defined(my $line = <$fd>)) {
3058 if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
3059 my $volid = $2;
3060 eval {
3061 if ($volid =~ m|^/|) {
3062 unlink $volid || die 'unlink failed\n';
3063 } else {
3064 my $cfg = cfs_read_file('storage.cfg');
3065 PVE::Storage::vdisk_free($cfg, $volid);
3066 }
afdb31d5 3067 print STDERR "temporary volume '$volid' sucessfuly removed\n";
3e16d5fc
DM
3068 };
3069 print STDERR "unable to cleanup '$volid' - $@" if $@;
3070 } else {
3071 print STDERR "unable to parse line in statfile - $line";
afdb31d5 3072 }
3e16d5fc
DM
3073 }
3074 $fd->close();
3075 }
3076}
3077
3078sub restore_archive {
a0d1b1a2 3079 my ($archive, $vmid, $user, $opts) = @_;
3e16d5fc 3080
9c502e26
DM
3081 if ($archive ne '-') {
3082 my $firstfile = archive_read_firstfile($archive);
3083 die "ERROR: file '$archive' dos not lock like a QemuServer vzdump backup\n"
3084 if $firstfile ne 'qemu-server.conf';
3085 }
3e16d5fc
DM
3086
3087 my $tocmd = "/usr/lib/qemu-server/qmextract";
3088
2415a446 3089 $tocmd .= " --storage " . PVE::Tools::shellquote($opts->{storage}) if $opts->{storage};
a0d1b1a2 3090 $tocmd .= " --pool " . PVE::Tools::shellquote($opts->{pool}) if $opts->{pool};
3e16d5fc
DM
3091 $tocmd .= ' --prealloc' if $opts->{prealloc};
3092 $tocmd .= ' --info' if $opts->{info};
3093
a0d1b1a2 3094 # tar option "xf" does not autodetect compression when read from STDIN,
9c502e26 3095 # so we pipe to zcat
2415a446
DM
3096 my $cmd = "zcat -f|tar xf " . PVE::Tools::shellquote($archive) . " " .
3097 PVE::Tools::shellquote("--to-command=$tocmd");
3e16d5fc
DM
3098
3099 my $tmpdir = "/var/tmp/vzdumptmp$$";
3100 mkpath $tmpdir;
3101
3102 local $ENV{VZDUMP_TMPDIR} = $tmpdir;
3103 local $ENV{VZDUMP_VMID} = $vmid;
a0d1b1a2 3104 local $ENV{VZDUMP_USER} = $user;
3e16d5fc
DM
3105
3106 my $conffile = PVE::QemuServer::config_file($vmid);
3107 my $tmpfn = "$conffile.$$.tmp";
3108
3109 # disable interrupts (always do cleanups)
3110 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub {
3111 print STDERR "got interrupt - ignored\n";
3112 };
3113
afdb31d5 3114 eval {
3e16d5fc
DM
3115 # enable interrupts
3116 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = $SIG{PIPE} = sub {
3117 die "interrupted by signal\n";
3118 };
3119
9c502e26
DM
3120 if ($archive eq '-') {
3121 print "extracting archive from STDIN\n";
3122 run_command($cmd, input => "<&STDIN");
3123 } else {
3124 print "extracting archive '$archive'\n";
3125 run_command($cmd);
3126 }
3e16d5fc
DM
3127
3128 return if $opts->{info};
3129
3130 # read new mapping
3131 my $map = {};
3132 my $statfile = "$tmpdir/qmrestore.stat";
3133 if (my $fd = IO::File->new($statfile, "r")) {
3134 while (defined (my $line = <$fd>)) {
3135 if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
3136 $map->{$1} = $2 if $1;
3137 } else {
3138 print STDERR "unable to parse line in statfile - $line\n";
3139 }
3140 }
3141 $fd->close();
3142 }
3143
3144 my $confsrc = "$tmpdir/qemu-server.conf";
3145
3146 my $srcfd = new IO::File($confsrc, "r") ||
3147 die "unable to open file '$confsrc'\n";
3148
3149 my $outfd = new IO::File ($tmpfn, "w") ||
3150 die "unable to write config for VM $vmid\n";
3151
51586c3a
DM
3152 my $netcount = 0;
3153
3e16d5fc
DM
3154 while (defined (my $line = <$srcfd>)) {
3155 next if $line =~ m/^\#vzdump\#/;
3156 next if $line =~ m/^lock:/;
3157 next if $line =~ m/^unused\d+:/;
3158
51586c3a
DM
3159 if (($line =~ m/^(vlan(\d+)):\s*(\S+)\s*$/)) {
3160 # try to convert old 1.X settings
3161 my ($id, $ind, $ethcfg) = ($1, $2, $3);
3162 foreach my $devconfig (PVE::Tools::split_list($ethcfg)) {
3163 my ($model, $macaddr) = split(/\=/, $devconfig);
3164 $macaddr = PVE::Tools::random_ether_addr() if !$macaddr || $opts->{unique};
3165 my $net = {
3166 model => $model,
3167 bridge => "vmbr$ind",
3168 macaddr => $macaddr,
3169 };
3170 my $netstr = print_net($net);
3171 print $outfd "net${netcount}: $netstr\n";
3172 $netcount++;
3173 }
3174 } elsif (($line =~ m/^(net\d+):\s*(\S+)\s*$/) && ($opts->{unique})) {
3175 my ($id, $netstr) = ($1, $2);
3176 my $net = parse_net($netstr);
3177 $net->{macaddr} = PVE::Tools::random_ether_addr() if $net->{macaddr};
3178 $netstr = print_net($net);
afdb31d5 3179 print $outfd "$id: $netstr\n";
51586c3a 3180 } elsif ($line =~ m/^((ide|scsi|virtio)\d+):\s*(\S+)\s*$/) {
3e16d5fc
DM
3181 my $virtdev = $1;
3182 my $value = $2;
3183 if ($line =~ m/backup=no/) {
3184 print $outfd "#$line";
3185 } elsif ($virtdev && $map->{$virtdev}) {
3186 my $di = PVE::QemuServer::parse_drive($virtdev, $value);
3187 $di->{file} = $map->{$virtdev};
3188 $value = PVE::QemuServer::print_drive($vmid, $di);
3189 print $outfd "$virtdev: $value\n";
3190 } else {
3191 print $outfd $line;
3192 }
3193 } else {
3194 print $outfd $line;
3195 }
3196 }
3197
3198 $srcfd->close();
3199 $outfd->close();
3200 };
3201 my $err = $@;
3202
afdb31d5 3203 if ($err) {
3e16d5fc
DM
3204
3205 unlink $tmpfn;
3206
3207 restore_cleanup("$tmpdir/qmrestore.stat") if !$opts->{info};
afdb31d5 3208
3e16d5fc 3209 die $err;
afdb31d5 3210 }
3e16d5fc
DM
3211
3212 rmtree $tmpdir;
3213
3214 rename $tmpfn, $conffile ||
3215 die "unable to commit configuration file '$conffile'\n";
3216};
3217
1e3baf05 32181;