5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-01-10 01:18:01 +03:00
qemu-server/PVE/QemuServer.pm

5007 lines
132 KiB
Perl
Raw Normal View History

2011-08-23 09:47:04 +04:00
package PVE::QemuServer;
use strict;
2013-10-01 15:14:49 +04:00
use warnings;
2011-08-23 09:47:04 +04:00
use POSIX;
use IO::Handle;
use IO::Select;
use IO::File;
use IO::Dir;
use IO::Socket::UNIX;
use File::Basename;
use File::Path;
use File::stat;
use Getopt::Long;
use Digest::SHA;
2011-08-23 09:47:04 +04:00
use Fcntl ':flock';
use Cwd 'abs_path';
use IPC::Open3;
use JSON;
2011-08-23 09:47:04 +04:00
use Fcntl;
use PVE::SafeSyslog;
use Storable qw(dclone);
use PVE::Exception qw(raise raise_param_exc);
use PVE::Storage;
use PVE::Tools qw(run_command lock_file lock_file_full file_read_firstline);
2012-09-10 12:15:14 +04:00
use PVE::JSONSchema qw(get_standard_option);
2011-08-23 09:47:04 +04:00
use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file);
use PVE::INotify;
use PVE::ProcFSTools;
2012-07-13 09:06:22 +04:00
use PVE::QMPClient;
use PVE::RPCEnvironment;
2011-09-15 11:11:27 +04:00
use Time::HiRes qw(gettimeofday);
2011-08-23 09:47:04 +04:00
2011-09-12 13:03:14 +04:00
my $cpuinfo = PVE::ProcFSTools::read_cpuinfo();
2011-08-23 09:47:04 +04:00
2011-09-12 14:26:00 +04:00
# Note about locking: we use flock on the config file protect
2011-08-23 09:47:04 +04:00
# against concurent actions.
# Aditionaly, we have a 'lock' setting in the config file. This
2012-09-07 15:07:23 +04:00
# can be set to 'migrate', 'backup', 'snapshot' or 'rollback'. Most actions are not
2011-08-23 09:47:04 +04:00
# allowed when such lock is set. But you can ignore this kind of
# lock with the --skiplock flag.
2012-05-30 14:08:33 +04:00
cfs_register_file('/qemu-server/',
\&parse_vm_config,
\&write_vm_config);
2011-08-23 09:47:04 +04:00
PVE::JSONSchema::register_standard_option('skiplock', {
description => "Ignore locks - only root is allowed to use this option.",
2012-01-27 12:35:26 +04:00
type => 'boolean',
optional => 1,
});
PVE::JSONSchema::register_standard_option('pve-qm-stateuri', {
description => "Some command save/restore state from this location.",
type => 'string',
maxLength => 128,
optional => 1,
});
PVE::JSONSchema::register_standard_option('pve-snapshot-name', {
description => "The name of the snapshot.",
type => 'string', format => 'pve-configid',
maxLength => 40,
});
2011-08-23 09:47:04 +04:00
#no warnings 'redefine';
unless(defined(&_VZSYSCALLS_H_)) {
eval 'sub _VZSYSCALLS_H_ () {1;}' unless defined(&_VZSYSCALLS_H_);
require 'sys/syscall.ph';
if(defined(&__x86_64__)) {
eval 'sub __NR_fairsched_vcpus () {499;}' unless defined(&__NR_fairsched_vcpus);
eval 'sub __NR_fairsched_mknod () {504;}' unless defined(&__NR_fairsched_mknod);
eval 'sub __NR_fairsched_rmnod () {505;}' unless defined(&__NR_fairsched_rmnod);
eval 'sub __NR_fairsched_chwt () {506;}' unless defined(&__NR_fairsched_chwt);
eval 'sub __NR_fairsched_mvpr () {507;}' unless defined(&__NR_fairsched_mvpr);
eval 'sub __NR_fairsched_rate () {508;}' unless defined(&__NR_fairsched_rate);
eval 'sub __NR_setluid () {501;}' unless defined(&__NR_setluid);
eval 'sub __NR_setublimit () {502;}' unless defined(&__NR_setublimit);
}
elsif(defined( &__i386__) ) {
eval 'sub __NR_fairsched_mknod () {500;}' unless defined(&__NR_fairsched_mknod);
eval 'sub __NR_fairsched_rmnod () {501;}' unless defined(&__NR_fairsched_rmnod);
eval 'sub __NR_fairsched_chwt () {502;}' unless defined(&__NR_fairsched_chwt);
eval 'sub __NR_fairsched_mvpr () {503;}' unless defined(&__NR_fairsched_mvpr);
eval 'sub __NR_fairsched_rate () {504;}' unless defined(&__NR_fairsched_rate);
eval 'sub __NR_fairsched_vcpus () {505;}' unless defined(&__NR_fairsched_vcpus);
eval 'sub __NR_setluid () {511;}' unless defined(&__NR_setluid);
eval 'sub __NR_setublimit () {512;}' unless defined(&__NR_setublimit);
} else {
die("no fairsched syscall for this arch");
}
require 'asm/ioctl.ph';
eval 'sub KVM_GET_API_VERSION () { &_IO(0xAE, 0x);}' unless defined(&KVM_GET_API_VERSION);
}
sub fairsched_mknod {
my ($parent, $weight, $desired) = @_;
2011-09-15 11:11:27 +04:00
return syscall(&__NR_fairsched_mknod, int($parent), int($weight), int($desired));
2011-08-23 09:47:04 +04:00
}
sub fairsched_rmnod {
my ($id) = @_;
2011-09-15 11:11:27 +04:00
return syscall(&__NR_fairsched_rmnod, int($id));
2011-08-23 09:47:04 +04:00
}
sub fairsched_mvpr {
my ($pid, $newid) = @_;
2011-09-15 11:11:27 +04:00
return syscall(&__NR_fairsched_mvpr, int($pid), int($newid));
2011-08-23 09:47:04 +04:00
}
sub fairsched_vcpus {
my ($id, $vcpus) = @_;
2011-09-15 11:11:27 +04:00
return syscall(&__NR_fairsched_vcpus, int($id), int($vcpus));
2011-08-23 09:47:04 +04:00
}
sub fairsched_rate {
my ($id, $op, $rate) = @_;
2011-09-15 11:11:27 +04:00
return syscall(&__NR_fairsched_rate, int($id), int($op), int($rate));
2011-08-23 09:47:04 +04:00
}
use constant FAIRSCHED_SET_RATE => 0;
use constant FAIRSCHED_DROP_RATE => 1;
use constant FAIRSCHED_GET_RATE => 2;
sub fairsched_cpulimit {
my ($id, $limit) = @_;
2011-09-15 11:11:27 +04:00
my $cpulim1024 = int($limit * 1024 / 100);
2011-08-23 09:47:04 +04:00
my $op = $cpulim1024 ? FAIRSCHED_SET_RATE : FAIRSCHED_DROP_RATE;
2011-09-15 11:11:27 +04:00
return fairsched_rate($id, $op, $cpulim1024);
2011-08-23 09:47:04 +04:00
}
my $nodename = PVE::INotify::nodename();
mkdir "/etc/pve/nodes/$nodename";
my $confdir = "/etc/pve/nodes/$nodename/qemu-server";
mkdir $confdir;
my $var_run_tmpdir = "/var/run/qemu-server";
mkdir $var_run_tmpdir;
my $lock_dir = "/var/lock/qemu-server";
mkdir $lock_dir;
my $pcisysfs = "/sys/bus/pci";
my $confdesc = {
onboot => {
optional => 1,
type => 'boolean',
description => "Specifies whether a VM will be started during system bootup.",
default => 0,
},
autostart => {
optional => 1,
type => 'boolean',
description => "Automatic restart after crash (currently ignored).",
default => 0,
},
hotplug => {
optional => 1,
type => 'boolean',
2013-02-19 13:43:22 +04:00
description => "Allow hotplug for disk and network device",
default => 0,
},
2011-08-23 09:47:04 +04:00
reboot => {
optional => 1,
type => 'boolean',
description => "Allow reboot. If set to '0' the VM exit on reboot.",
default => 1,
},
lock => {
optional => 1,
type => 'string',
description => "Lock/unlock the VM.",
2012-09-07 15:07:23 +04:00
enum => [qw(migrate backup snapshot rollback)],
2011-08-23 09:47:04 +04:00
},
cpulimit => {
optional => 1,
type => 'integer',
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.",
minimum => 0,
default => 0,
},
cpuunits => {
optional => 1,
type => 'integer',
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.",
minimum => 0,
maximum => 500000,
default => 1000,
},
memory => {
optional => 1,
type => 'integer',
description => "Amount of RAM for the VM in MB. This is the maximum available memory when you use the balloon device.",
2011-08-23 09:47:04 +04:00
minimum => 16,
default => 512,
},
balloon => {
optional => 1,
type => 'integer',
description => "Amount of target RAM for the VM in MB. Using zero disables the ballon driver.",
minimum => 0,
},
shares => {
optional => 1,
type => 'integer',
description => "Amount of memory shares for auto-ballooning. The larger the number is, the more memory this VM gets. Number is relative to weights of all other running VMs. Using zero disables auto-ballooning",
minimum => 0,
maximum => 50000,
default => 1000,
},
2011-08-23 09:47:04 +04:00
keyboard => {
optional => 1,
type => 'string',
description => "Keybord layout for vnc server. Default is read from the datacenter configuration file.",
enum => PVE::Tools::kvmkeymaplist(),
2011-08-23 09:47:04 +04:00
default => 'en-us',
},
name => {
optional => 1,
2012-03-13 10:00:27 +04:00
type => 'string', format => 'dns-name',
2011-08-23 09:47:04 +04:00
description => "Set a name for the VM. Only used on the configuration web interface.",
},
scsihw => {
optional => 1,
type => 'string',
description => "scsi controller model",
enum => [qw(lsi lsi53c810 virtio-scsi-pci megasas pvscsi)],
default => 'lsi',
},
2011-08-23 09:47:04 +04:00
description => {
optional => 1,
type => 'string',
2012-03-01 11:13:14 +04:00
description => "Description for the VM. Only used on the configuration web interface. This is saved as comment inside the configuration file.",
2011-08-23 09:47:04 +04:00
},
ostype => {
optional => 1,
type => 'string',
enum => [qw(other wxp w2k w2k3 w2k8 wvista win7 win8 l24 l26 solaris)],
2011-08-23 09:47:04 +04:00
description => <<EODESC,
Used to enable special optimization/features for specific
operating systems:
other => unspecified OS
wxp => Microsoft Windows XP
w2k => Microsoft Windows 2000
w2k3 => Microsoft Windows 2003
w2k8 => Microsoft Windows 2008
wvista => Microsoft Windows Vista
win7 => Microsoft Windows 7
win8 => Microsoft Windows 8/2012
2011-08-23 09:47:04 +04:00
l24 => Linux 2.4 Kernel
l26 => Linux 2.6/3.X Kernel
solaris => solaris/opensolaris/openindiania kernel
2011-08-23 09:47:04 +04:00
other|l24|l26|solaris ... no special behaviour
wxp|w2k|w2k3|w2k8|wvista|win7|win8 ... use --localtime switch
2011-08-23 09:47:04 +04:00
EODESC
},
boot => {
optional => 1,
type => 'string',
description => "Boot on floppy (a), hard disk (c), CD-ROM (d), or network (n).",
pattern => '[acdn]{1,4}',
2011-09-29 09:43:05 +04:00
default => 'cdn',
2011-08-23 09:47:04 +04:00
},
bootdisk => {
optional => 1,
type => 'string', format => 'pve-qm-bootdisk',
description => "Enable booting from specified disk.",
2012-08-29 11:19:21 +04:00
pattern => '(ide|sata|scsi|virtio)\d+',
2011-08-23 09:47:04 +04:00
},
smp => {
optional => 1,
type => 'integer',
description => "The number of CPUs. Please use option -sockets instead.",
minimum => 1,
default => 1,
},
sockets => {
optional => 1,
type => 'integer',
description => "The number of CPU sockets.",
minimum => 1,
default => 1,
},
cores => {
optional => 1,
type => 'integer',
description => "The number of cores per socket.",
minimum => 1,
default => 1,
},
maxcpus => {
optional => 1,
type => 'integer',
description => "Maximum cpus for hotplug.",
minimum => 1,
default => 1,
},
2011-08-23 09:47:04 +04:00
acpi => {
optional => 1,
type => 'boolean',
description => "Enable/disable ACPI.",
default => 1,
},
2012-09-04 08:31:44 +04:00
agent => {
optional => 1,
type => 'boolean',
description => "Enable/disable Qemu GuestAgent.",
default => 0,
},
2011-08-23 09:47:04 +04:00
kvm => {
optional => 1,
type => 'boolean',
description => "Enable/disable KVM hardware virtualization.",
default => 1,
},
tdf => {
optional => 1,
type => 'boolean',
description => "Enable/disable time drift fix.",
default => 0,
2011-08-23 09:47:04 +04:00
},
2011-09-12 14:26:00 +04:00
localtime => {
2011-08-23 09:47:04 +04:00
optional => 1,
type => 'boolean',
description => "Set the real time clock to local time. This is enabled by default if ostype indicates a Microsoft OS.",
},
freeze => {
optional => 1,
type => 'boolean',
description => "Freeze CPU at startup (use 'c' monitor command to start execution).",
},
vga => {
optional => 1,
type => 'string',
description => "Select VGA type. If you want to use high resolution modes (>= 1280x1024x16) then you should use option 'std' or 'vmware'. Default is 'std' for win8/win7/w2k8, and 'cirrur' for other OS types. Option 'qxl' enables the SPICE display sever. You can also run without any graphic card using a serial devive as terminal.",
enum => [qw(std cirrus vmware qxl serial0 serial1 serial2 serial3 qxl2 qxl3 qxl4)],
2011-08-23 09:47:04 +04:00
},
2011-09-08 13:39:56 +04:00
watchdog => {
optional => 1,
type => 'string', format => 'pve-qm-watchdog',
typetext => '[[model=]i6300esb|ib700] [,[action=]reset|shutdown|poweroff|pause|debug|none]',
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)",
},
2011-08-23 09:47:04 +04:00
startdate => {
optional => 1,
2011-09-12 14:26:00 +04:00
type => 'string',
2011-08-23 09:47:04 +04:00
typetext => "(now | YYYY-MM-DD | YYYY-MM-DDTHH:MM:SS)",
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'.",
pattern => '(now|\d{4}-\d{1,2}-\d{1,2}(T\d{1,2}:\d{1,2}:\d{1,2})?)',
default => 'now',
},
startup => {
optional => 1,
type => 'string', format => 'pve-qm-startup',
typetext => '[[order=]\d+] [,up=\d+] [,down=\d+] ',
description => "Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.",
},
template => {
optional => 1,
type => 'boolean',
description => "Enable/disable Template.",
default => 0,
},
2011-08-23 09:47:04 +04:00
args => {
optional => 1,
type => 'string',
description => <<EODESCR,
Note: this option is for experts only. It allows you to pass arbitrary arguments to kvm, for example:
args: -no-reboot -no-hpet
EODESCR
},
tablet => {
optional => 1,
type => 'boolean',
default => 1,
2013-07-19 11:53:44 +04:00
description => "Enable/disable the usb tablet device. This device is usually needed to allow absolute mouse positioning with VNC. Else the mouse runs out of sync with normal VNC clients. If you're running lots of console-only guests on one host, you may consider disabling this to save some context switches. This is turned of by default if you use spice (vga=qxl).",
2011-08-23 09:47:04 +04:00
},
migrate_speed => {
optional => 1,
type => 'integer',
description => "Set maximum speed (in MB/s) for migrations. Value 0 is no limit.",
minimum => 0,
default => 0,
},
migrate_downtime => {
optional => 1,
type => 'number',
2011-08-23 09:47:04 +04:00
description => "Set maximum tolerated downtime (in seconds) for migrations.",
minimum => 0,
default => 0.1,
2011-08-23 09:47:04 +04:00
},
cdrom => {
optional => 1,
type => 'string', format => 'pve-qm-drive',
typetext => 'volume',
description => "This is an alias for option -ide2",
},
cpu => {
optional => 1,
description => "Emulated CPU type.",
type => 'string',
enum => [ qw(486 athlon pentium pentium2 pentium3 coreduo core2duo kvm32 kvm64 qemu32 qemu64 phenom Conroe Penryn Nehalem Westmere SandyBridge Haswell Opteron_G1 Opteron_G2 Opteron_G3 Opteron_G4 Opteron_G5 host) ],
2013-02-25 10:01:51 +04:00
default => 'kvm64',
2011-08-23 09:47:04 +04:00
},
2012-09-10 12:15:14 +04:00
parent => get_standard_option('pve-snapshot-name', {
optional => 1,
description => "Parent snapshot name. This is used internally, and should not be modified.",
}),
2012-09-11 10:45:39 +04:00
snaptime => {
optional => 1,
description => "Timestamp for snapshots.",
type => 'integer',
minimum => 0,
},
vmstate => {
optional => 1,
type => 'string', format => 'pve-volume-id',
description => "Reference to a volume which stores the VM state. This is used internally for snapshots.",
},
2013-06-05 11:18:23 +04:00
machine => {
description => "Specific the Qemu machine type.",
type => 'string',
pattern => '(pc|pc(-i440fx)?-\d+\.\d+|q35|pc-q35-\d+\.\d+)',
maxLength => 40,
optional => 1,
},
2011-08-23 09:47:04 +04:00
};
# what about other qemu settings ?
#cpu => 'string',
#machine => 'string',
#fda => 'file',
#fdb => 'file',
#mtdblock => 'file',
#sd => 'file',
#pflash => 'file',
#snapshot => 'bool',
#bootp => 'file',
##tftp => 'dir',
##smb => 'dir',
#kernel => 'file',
#append => 'string',
#initrd => 'file',
##soundhw => 'string',
while (my ($k, $v) = each %$confdesc) {
PVE::JSONSchema::register_standard_option("pve-qm-$k", $v);
}
my $MAX_IDE_DISKS = 4;
my $MAX_SCSI_DISKS = 14;
my $MAX_VIRTIO_DISKS = 16;
my $MAX_SATA_DISKS = 6;
2011-08-23 09:47:04 +04:00
my $MAX_USB_DEVICES = 5;
my $MAX_NETS = 32;
2011-08-23 09:47:04 +04:00
my $MAX_UNUSED_DISKS = 8;
my $MAX_HOSTPCI_DEVICES = 2;
my $MAX_SERIAL_PORTS = 4;
my $MAX_PARALLEL_PORTS = 3;
2011-08-23 09:47:04 +04:00
my $nic_model_list = ['rtl8139', 'ne2k_pci', 'e1000', 'pcnet', 'virtio',
'ne2k_isa', 'i82551', 'i82557b', 'i82559er', 'vmxnet3'];
2011-09-15 11:11:27 +04:00
my $nic_model_list_txt = join(' ', sort @$nic_model_list);
2011-08-23 09:47:04 +04:00
my $netdesc = {
optional => 1,
type => 'string', format => 'pve-qm-net',
typetext => "MODEL=XX:XX:XX:XX:XX:XX [,bridge=<dev>][,rate=<mbps>][,tag=<vlanid>]",
2011-08-23 09:47:04 +04:00
description => <<EODESCR,
2011-09-12 14:26:00 +04:00
Specify network devices.
2011-08-23 09:47:04 +04:00
MODEL is one of: $nic_model_list_txt
2011-09-12 14:26:00 +04:00
XX:XX:XX:XX:XX:XX should be an unique MAC address. This is
2011-08-23 09:47:04 +04:00
automatically generated if not specified.
The bridge parameter can be used to automatically add the interface to a bridge device. The Proxmox VE standard bridge is called 'vmbr0'.
Option 'rate' is used to limit traffic bandwidth from and to this interface. It is specified as floating point number, unit is 'Megabytes per second'.
If you specify no bridge, we create a kvm 'user' (NATed) network device, which provides DHCP and DNS services. The following addresses are used:
10.0.2.2 Gateway
10.0.2.3 DNS Server
10.0.2.4 SMB Server
The DHCP server assign addresses to the guest starting from 10.0.2.15.
EODESCR
};
PVE::JSONSchema::register_standard_option("pve-qm-net", $netdesc);
for (my $i = 0; $i < $MAX_NETS; $i++) {
$confdesc->{"net$i"} = $netdesc;
}
my $drivename_hash;
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
my $idedesc = {
optional => 1,
type => 'string', format => 'pve-qm-drive',
2013-12-04 11:42:51 +04:00
typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe|directsync] [,format=f] [,backup=yes|no] [,rerror=ignore|report|stop] [,werror=enospc|ignore|report|stop] [,aio=native|threads] [,discard=ignore|on]',
description => "Use volume as IDE hard disk or CD-ROM (n is 0 to " .($MAX_IDE_DISKS -1) . ").",
2011-08-23 09:47:04 +04:00
};
PVE::JSONSchema::register_standard_option("pve-qm-ide", $idedesc);
my $scsidesc = {
optional => 1,
type => 'string', format => 'pve-qm-drive',
2013-12-04 11:42:51 +04:00
typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe|directsync] [,format=f] [,backup=yes|no] [,rerror=ignore|report|stop] [,werror=enospc|ignore|report|stop] [,aio=native|threads] [,discard=ignore|on]',
description => "Use volume as SCSI hard disk or CD-ROM (n is 0 to " . ($MAX_SCSI_DISKS - 1) . ").",
2011-08-23 09:47:04 +04:00
};
PVE::JSONSchema::register_standard_option("pve-qm-scsi", $scsidesc);
my $satadesc = {
optional => 1,
type => 'string', format => 'pve-qm-drive',
2013-12-04 11:42:51 +04:00
typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe|directsync] [,format=f] [,backup=yes|no] [,rerror=ignore|report|stop] [,werror=enospc|ignore|report|stop] [,aio=native|threads] [,discard=ignore|on]',
description => "Use volume as SATA hard disk or CD-ROM (n is 0 to " . ($MAX_SATA_DISKS - 1). ").",
};
PVE::JSONSchema::register_standard_option("pve-qm-sata", $satadesc);
2011-08-23 09:47:04 +04:00
my $virtiodesc = {
optional => 1,
type => 'string', format => 'pve-qm-drive',
2013-12-04 11:42:51 +04:00
typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe|directsync] [,format=f] [,backup=yes|no] [,rerror=ignore|report|stop] [,werror=enospc|ignore|report|stop] [,aio=native|threads] [,discard=ignore|on]',
description => "Use volume as VIRTIO hard disk (n is 0 to " . ($MAX_VIRTIO_DISKS - 1) . ").",
2011-08-23 09:47:04 +04:00
};
PVE::JSONSchema::register_standard_option("pve-qm-virtio", $virtiodesc);
my $usbdesc = {
optional => 1,
type => 'string', format => 'pve-qm-usb-device',
2013-07-19 11:37:04 +04:00
typetext => 'host=HOSTUSBDEVICE|spice',
2011-08-23 09:47:04 +04:00
description => <<EODESCR,
Configure an USB device (n is 0 to 4). This can be used to
2011-08-23 09:47:04 +04:00
pass-through usb devices to the guest. HOSTUSBDEVICE syntax is:
2011-09-12 14:26:00 +04:00
'bus-port(.port)*' (decimal numbers) or
2011-08-23 09:47:04 +04:00
'vendor_id:product_id' (hexadeciaml numbers)
2011-09-12 14:26:00 +04:00
You can use the 'lsusb -t' command to list existing usb devices.
2011-08-23 09:47:04 +04:00
Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
2013-07-19 11:37:04 +04:00
The value 'spice' can be used to add a usb redirection devices for spice.
2011-08-23 09:47:04 +04:00
EODESCR
};
PVE::JSONSchema::register_standard_option("pve-qm-usb", $usbdesc);
my $hostpcidesc = {
optional => 1,
type => 'string', format => 'pve-qm-hostpci',
2013-12-13 14:43:05 +04:00
typetext => "[host=]HOSTPCIDEVICE [,driver=kvm|vfio] [,rombar=on|off]",
description => <<EODESCR,
Map host pci devices. HOSTPCIDEVICE syntax is:
'bus:dev.func' (hexadecimal numbers)
You can us the 'lspci' command to list existing pci devices.
2013-12-13 14:43:05 +04:00
The 'rombar' option determines whether or not the device's ROM will be visible in the guest's memory map (default is 'on').
The 'driver' option is currently ignored.
Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
Experimental: user reported problems with this option.
EODESCR
};
PVE::JSONSchema::register_standard_option("pve-qm-hostpci", $hostpcidesc);
my $serialdesc = {
optional => 1,
type => 'string',
pattern => '(/dev/ttyS\d+|socket)',
description => <<EODESCR,
Create a serial device inside the VM (n is 0 to 3), and pass through a host serial device, or create a unix socket on the host side (use 'qm terminal' to open a terminal connection).
Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
Experimental: user reported problems with this option.
EODESCR
};
my $paralleldesc= {
optional => 1,
type => 'string',
2013-08-14 14:18:54 +04:00
pattern => '/dev/parport\d+|/dev/usb/lp\d+',
description => <<EODESCR,
2011-09-12 14:26:00 +04:00
Map host parallel devices (n is 0 to 2).
Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
Experimental: user reported problems with this option.
EODESCR
};
for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
$confdesc->{"parallel$i"} = $paralleldesc;
}
for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
$confdesc->{"serial$i"} = $serialdesc;
}
for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
$confdesc->{"hostpci$i"} = $hostpcidesc;
}
2011-08-23 09:47:04 +04:00
for (my $i = 0; $i < $MAX_IDE_DISKS; $i++) {
$drivename_hash->{"ide$i"} = 1;
$confdesc->{"ide$i"} = $idedesc;
}
for (my $i = 0; $i < $MAX_SATA_DISKS; $i++) {
$drivename_hash->{"sata$i"} = 1;
$confdesc->{"sata$i"} = $satadesc;
}
2011-08-23 09:47:04 +04:00
for (my $i = 0; $i < $MAX_SCSI_DISKS; $i++) {
$drivename_hash->{"scsi$i"} = 1;
$confdesc->{"scsi$i"} = $scsidesc ;
}
for (my $i = 0; $i < $MAX_VIRTIO_DISKS; $i++) {
$drivename_hash->{"virtio$i"} = 1;
$confdesc->{"virtio$i"} = $virtiodesc;
}
for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
$confdesc->{"usb$i"} = $usbdesc;
}
my $unuseddesc = {
optional => 1,
type => 'string', format => 'pve-volume-id',
description => "Reference to unused volumes.",
};
for (my $i = 0; $i < $MAX_UNUSED_DISKS; $i++) {
$confdesc->{"unused$i"} = $unuseddesc;
}
my $kvm_api_version = 0;
sub kvm_version {
return $kvm_api_version if $kvm_api_version;
2011-09-15 11:11:27 +04:00
my $fh = IO::File->new("</dev/kvm") ||
2011-08-23 09:47:04 +04:00
return 0;
2011-09-15 11:11:27 +04:00
if (my $v = $fh->ioctl(KVM_GET_API_VERSION(), 0)) {
2011-08-23 09:47:04 +04:00
$kvm_api_version = $v;
}
$fh->close();
return $kvm_api_version;
}
my $kvm_user_version;
sub kvm_user_version {
return $kvm_user_version if $kvm_user_version;
$kvm_user_version = 'unknown';
my $tmp = `kvm -help 2>/dev/null`;
2011-09-12 14:26:00 +04:00
2012-11-23 10:45:46 +04:00
if ($tmp =~ m/^QEMU( PC)? emulator version (\d+\.\d+(\.\d+)?)[,\s]/) {
2011-08-23 09:47:04 +04:00
$kvm_user_version = $2;
}
return $kvm_user_version;
}
my $kernel_has_vhost_net = -c '/dev/vhost-net';
sub disknames {
# order is important - used to autoselect boot disk
2011-09-12 14:26:00 +04:00
return ((map { "ide$_" } (0 .. ($MAX_IDE_DISKS - 1))),
2011-08-23 09:47:04 +04:00
(map { "scsi$_" } (0 .. ($MAX_SCSI_DISKS - 1))),
(map { "virtio$_" } (0 .. ($MAX_VIRTIO_DISKS - 1))),
(map { "sata$_" } (0 .. ($MAX_SATA_DISKS - 1))));
2011-08-23 09:47:04 +04:00
}
sub valid_drivename {
my $dev = shift;
2011-09-15 11:11:27 +04:00
return defined($drivename_hash->{$dev});
2011-08-23 09:47:04 +04:00
}
sub option_exists {
my $key = shift;
return defined($confdesc->{$key});
2011-09-12 14:26:00 +04:00
}
2011-08-23 09:47:04 +04:00
sub nic_models {
return $nic_model_list;
}
sub os_list_description {
return {
other => 'Other',
wxp => 'Windows XP',
w2k => 'Windows 2000',
w2k3 =>, 'Windows 2003',
w2k8 => 'Windows 2008',
wvista => 'Windows Vista',
win7 => 'Windows 7',
win8 => 'Windows 8/2012',
2011-08-23 09:47:04 +04:00
l24 => 'Linux 2.4',
l26 => 'Linux 2.6',
2011-09-12 14:26:00 +04:00
};
2011-08-23 09:47:04 +04:00
}
my $cdrom_path;
sub get_cdrom_path {
return $cdrom_path if $cdrom_path;
return $cdrom_path = "/dev/cdrom" if -l "/dev/cdrom";
return $cdrom_path = "/dev/cdrom1" if -l "/dev/cdrom1";
return $cdrom_path = "/dev/cdrom2" if -l "/dev/cdrom2";
}
sub get_iso_path {
my ($storecfg, $vmid, $cdrom) = @_;
if ($cdrom eq 'cdrom') {
return get_cdrom_path();
} elsif ($cdrom eq 'none') {
return '';
} elsif ($cdrom =~ m|^/|) {
return $cdrom;
} else {
2011-09-15 11:11:27 +04:00
return PVE::Storage::path($storecfg, $cdrom);
2011-08-23 09:47:04 +04:00
}
}
# try to convert old style file names to volume IDs
sub filename_to_volume_id {
my ($vmid, $file, $media) = @_;
if (!($file eq 'none' || $file eq 'cdrom' ||
$file =~ m|^/dev/.+| || $file =~ m/^([^:]+):(.+)$/)) {
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
return undef if $file =~ m|/|;
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
if ($media && $media eq 'cdrom') {
$file = "local:iso/$file";
} else {
$file = "local:$vmid/$file";
}
}
return $file;
}
sub verify_media_type {
my ($opt, $vtype, $media) = @_;
return if !$media;
my $etype;
if ($media eq 'disk') {
$etype = 'images';
2011-08-23 09:47:04 +04:00
} elsif ($media eq 'cdrom') {
$etype = 'iso';
} else {
die "internal error";
}
return if ($vtype eq $etype);
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
raise_param_exc({ $opt => "unexpected media type ($vtype != $etype)" });
}
sub cleanup_drive_path {
my ($opt, $storecfg, $drive) = @_;
# try to convert filesystem paths to volume IDs
if (($drive->{file} !~ m/^(cdrom|none)$/) &&
($drive->{file} !~ m|^/dev/.+|) &&
($drive->{file} !~ m/^([^:]+):(.+)$/) &&
2011-09-12 14:26:00 +04:00
($drive->{file} !~ m/^\d+$/)) {
2011-08-23 09:47:04 +04:00
my ($vtype, $volid) = PVE::Storage::path_to_volume_id($storecfg, $drive->{file});
raise_param_exc({ $opt => "unable to associate path '$drive->{file}' to any storage"}) if !$vtype;
$drive->{media} = 'cdrom' if !$drive->{media} && $vtype eq 'iso';
verify_media_type($opt, $vtype, $drive->{media});
$drive->{file} = $volid;
}
$drive->{media} = 'cdrom' if !$drive->{media} && $drive->{file} =~ m/^(cdrom|none)$/;
}
sub create_conf_nolock {
my ($vmid, $settings) = @_;
2011-09-15 11:11:27 +04:00
my $filename = config_file($vmid);
2011-08-23 09:47:04 +04:00
die "configuration file '$filename' already exists\n" if -f $filename;
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
my $defaults = load_defaults();
$settings->{name} = "vm$vmid" if !$settings->{name};
$settings->{memory} = $defaults->{memory} if !$settings->{memory};
my $data = '';
foreach my $opt (keys %$settings) {
next if !$confdesc->{$opt};
my $value = $settings->{$opt};
next if !$value;
$data .= "$opt: $value\n";
}
PVE::Tools::file_set_contents($filename, $data);
}
2012-08-29 15:01:52 +04:00
my $parse_size = sub {
my ($value) = @_;
return undef if $value !~ m/^(\d+(\.\d+)?)([KMG])?$/;
2012-08-29 15:01:52 +04:00
my ($size, $unit) = ($1, $3);
if ($unit) {
if ($unit eq 'K') {
$size = $size * 1024;
} elsif ($unit eq 'M') {
$size = $size * 1024 * 1024;
} elsif ($unit eq 'G') {
$size = $size * 1024 * 1024 * 1024;
}
}
return int($size);
};
my $format_size = sub {
my ($size) = @_;
$size = int($size);
my $kb = int($size/1024);
return $size if $kb*1024 != $size;
my $mb = int($kb/1024);
return "${kb}K" if $mb*1024 != $kb;
my $gb = int($mb/1024);
return "${mb}M" if $gb*1024 != $mb;
return "${gb}G";
};
2011-08-23 09:47:04 +04:00
# ideX = [volume=]volume-id[,media=d][,cyls=c,heads=h,secs=s[,trans=t]]
# [,snapshot=on|off][,cache=on|off][,format=f][,backup=yes|no]
# [,rerror=ignore|report|stop][,werror=enospc|ignore|report|stop]
2013-12-04 11:42:51 +04:00
# [,aio=native|threads][,discard=ignore|on]
2011-08-23 09:47:04 +04:00
sub parse_drive {
my ($key, $data) = @_;
my $res = {};
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
# $key may be undefined - used to verify JSON parameters
if (!defined($key)) {
$res->{interface} = 'unknown'; # should not harm when used to verify parameters
$res->{index} = 0;
} elsif ($key =~ m/^([^\d]+)(\d+)$/) {
$res->{interface} = $1;
$res->{index} = $2;
} else {
return undef;
}
foreach my $p (split (/,/, $data)) {
next if $p =~ m/^\s*$/;
if ($p =~ m/^(file|volume|cyls|heads|secs|trans|media|snapshot|cache|format|rerror|werror|backup|aio|bps|mbps|mbps_max|bps_rd|mbps_rd|mbps_rd_max|bps_wr|mbps_wr|mbps_wr_max|iops|iops_max|iops_rd|iops_rd_max|iops_wr|iops_wr_max|size|discard)=(.+)$/) {
2011-08-23 09:47:04 +04:00
my ($k, $v) = ($1, $2);
$k = 'file' if $k eq 'volume';
return undef if defined $res->{$k};
2011-09-12 14:26:00 +04:00
if ($k eq 'bps' || $k eq 'bps_rd' || $k eq 'bps_wr') {
return undef if !$v || $v !~ m/^\d+/;
$k = "m$k";
$v = sprintf("%.3f", $v / (1024*1024));
}
2011-08-23 09:47:04 +04:00
$res->{$k} = $v;
} else {
if (!$res->{file} && $p !~ m/=/) {
$res->{file} = $p;
} else {
return undef;
}
}
}
return undef if !$res->{file};
if($res->{file} =~ m/\.(raw|cow|qcow|qcow2|vmdk|cloop)$/){
$res->{format} = $1;
}
2011-09-12 14:26:00 +04:00
return undef if $res->{cache} &&
$res->{cache} !~ m/^(off|none|writethrough|writeback|unsafe|directsync)$/;
2011-08-23 09:47:04 +04:00
return undef if $res->{snapshot} && $res->{snapshot} !~ m/^(on|off)$/;
return undef if $res->{cyls} && $res->{cyls} !~ m/^\d+$/;
return undef if $res->{heads} && $res->{heads} !~ m/^\d+$/;
return undef if $res->{secs} && $res->{secs} !~ m/^\d+$/;
return undef if $res->{media} && $res->{media} !~ m/^(disk|cdrom)$/;
return undef if $res->{trans} && $res->{trans} !~ m/^(none|lba|auto)$/;
return undef if $res->{format} && $res->{format} !~ m/^(raw|cow|qcow|qcow2|vmdk|cloop)$/;
return undef if $res->{rerror} && $res->{rerror} !~ m/^(ignore|report|stop)$/;
return undef if $res->{werror} && $res->{werror} !~ m/^(enospc|ignore|report|stop)$/;
return undef if $res->{backup} && $res->{backup} !~ m/^(yes|no)$/;
return undef if $res->{aio} && $res->{aio} !~ m/^(native|threads)$/;
2013-12-04 11:42:51 +04:00
return undef if $res->{discard} && $res->{discard} !~ m/^(ignore|on)$/;
return undef if $res->{mbps_rd} && $res->{mbps};
return undef if $res->{mbps_wr} && $res->{mbps};
return undef if $res->{mbps} && $res->{mbps} !~ m/^\d+(\.\d+)?$/;
return undef if $res->{mbps_max} && $res->{mbps_max} !~ m/^\d+(\.\d+)?$/;
return undef if $res->{mbps_rd} && $res->{mbps_rd} !~ m/^\d+(\.\d+)?$/;
return undef if $res->{mbps_rd_max} && $res->{mbps_rd_max} !~ m/^\d+(\.\d+)?$/;
return undef if $res->{mbps_wr} && $res->{mbps_wr} !~ m/^\d+(\.\d+)?$/;
return undef if $res->{mbps_wr_max} && $res->{mbps_wr_max} !~ m/^\d+(\.\d+)?$/;
return undef if $res->{iops_rd} && $res->{iops};
return undef if $res->{iops_wr} && $res->{iops};
return undef if $res->{iops} && $res->{iops} !~ m/^\d+$/;
return undef if $res->{iops_max} && $res->{iops_max} !~ m/^\d+$/;
return undef if $res->{iops_rd} && $res->{iops_rd} !~ m/^\d+$/;
return undef if $res->{iops_rd_max} && $res->{iops_rd_max} !~ m/^\d+$/;
return undef if $res->{iops_wr} && $res->{iops_wr} !~ m/^\d+$/;
return undef if $res->{iops_wr_max} && $res->{iops_wr_max} !~ m/^\d+$/;
if ($res->{size}) {
return undef if !defined($res->{size} = &$parse_size($res->{size}));
}
2011-08-23 09:47:04 +04:00
if ($res->{media} && ($res->{media} eq 'cdrom')) {
return undef if $res->{snapshot} || $res->{trans} || $res->{format};
2011-09-12 14:26:00 +04:00
return undef if $res->{heads} || $res->{secs} || $res->{cyls};
2011-08-23 09:47:04 +04:00
return undef if $res->{interface} eq 'virtio';
}
# rerror does not work with scsi drives
if ($res->{rerror}) {
return undef if $res->{interface} eq 'scsi';
}
return $res;
}
my @qemu_drive_options = qw(heads secs cyls trans media format cache snapshot rerror werror aio discard iops iops_rd iops_wr iops_max iops_rd_max iops_wr_max);
2011-08-23 09:47:04 +04:00
sub print_drive {
my ($vmid, $drive) = @_;
my $opts = '';
foreach my $o (@qemu_drive_options, 'mbps', 'mbps_rd', 'mbps_wr', 'mbps_max', 'mbps_rd_max', 'mbps_wr_max', 'backup') {
2011-08-23 09:47:04 +04:00
$opts .= ",$o=$drive->{$o}" if $drive->{$o};
}
if ($drive->{size}) {
$opts .= ",size=" . &$format_size($drive->{size});
}
2011-08-23 09:47:04 +04:00
return "$drive->{file}$opts";
}
sub scsi_inquiry {
my($fh, $noerr) = @_;
my $SG_IO = 0x2285;
my $SG_GET_VERSION_NUM = 0x2282;
my $versionbuf = "\x00" x 8;
my $ret = ioctl($fh, $SG_GET_VERSION_NUM, $versionbuf);
if (!$ret) {
die "scsi ioctl SG_GET_VERSION_NUM failoed - $!\n" if !$noerr;
return undef;
}
2012-05-30 14:08:33 +04:00
my $version = unpack("I", $versionbuf);
if ($version < 30000) {
die "scsi generic interface too old\n" if !$noerr;
return undef;
}
2012-05-30 14:08:33 +04:00
my $buf = "\x00" x 36;
my $sensebuf = "\x00" x 8;
my $cmd = pack("C x3 C x1", 0x12, 36);
2012-05-30 14:08:33 +04:00
# see /usr/include/scsi/sg.h
my $sg_io_hdr_t = "i i C C s I P P P I I i P C C C C S S i I I";
2012-05-30 14:08:33 +04:00
my $packet = pack($sg_io_hdr_t, ord('S'), -3, length($cmd),
length($sensebuf), 0, length($buf), $buf,
$cmd, $sensebuf, 6000);
$ret = ioctl($fh, $SG_IO, $packet);
if (!$ret) {
die "scsi ioctl SG_IO failed - $!\n" if !$noerr;
return undef;
}
2012-05-30 14:08:33 +04:00
my @res = unpack($sg_io_hdr_t, $packet);
if ($res[17] || $res[18]) {
die "scsi ioctl SG_IO status error - $!\n" if !$noerr;
return undef;
}
my $res = {};
(my $byte0, my $byte1, $res->{vendor},
$res->{product}, $res->{revision}) = unpack("C C x6 A8 A16 A4", $buf);
$res->{removable} = $byte1 & 128 ? 1 : 0;
$res->{type} = $byte0 & 31;
return $res;
}
sub path_is_scsi {
my ($path) = @_;
my $fh = IO::File->new("+<$path") || return undef;
my $res = scsi_inquiry($fh, 1);
close($fh);
return $res;
}
sub print_drivedevice_full {
my ($storecfg, $conf, $vmid, $drive, $bridges) = @_;
my $device = '';
my $maxdev = 0;
2011-09-12 14:26:00 +04:00
if ($drive->{interface} eq 'virtio') {
my $pciaddr = print_pci_addr("$drive->{interface}$drive->{index}", $bridges);
2011-12-07 14:41:27 +04:00
$device = "virtio-blk-pci,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}$pciaddr";
} elsif ($drive->{interface} eq 'scsi') {
$maxdev = ($conf->{scsihw} && ($conf->{scsihw} !~ m/^lsi/)) ? 256 : 7;
2011-12-07 14:41:27 +04:00
my $controller = int($drive->{index} / $maxdev);
my $unit = $drive->{index} % $maxdev;
my $devicetype = 'hd';
my $path = '';
if (drive_is_cdrom($drive)) {
$devicetype = 'cd';
2013-07-15 15:11:28 +04:00
} else {
if ($drive->{file} =~ m|^/|) {
$path = $drive->{file};
} else {
$path = PVE::Storage::path($storecfg, $drive->{file});
}
if($path =~ m/^iscsi\:\/\//){
2013-07-15 15:11:28 +04:00
$devicetype = 'generic';
} else {
if (my $info = path_is_scsi($path)) {
if ($info->{type} == 0) {
$devicetype = 'block';
} elsif ($info->{type} == 1) { # tape
$devicetype = 'generic';
}
}
}
}
if (!$conf->{scsihw} || ($conf->{scsihw} =~ m/^lsi/)){
$device = "scsi-$devicetype,bus=scsihw$controller.0,scsi-id=$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
} else {
$device = "scsi-$devicetype,bus=scsihw$controller.0,channel=0,scsi-id=0,lun=$drive->{index},drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
}
2011-12-07 14:41:27 +04:00
} elsif ($drive->{interface} eq 'ide'){
$maxdev = 2;
my $controller = int($drive->{index} / $maxdev);
my $unit = $drive->{index} % $maxdev;
my $devicetype = ($drive->{media} && $drive->{media} eq 'cdrom') ? "cd" : "hd";
$device = "ide-$devicetype,bus=ide.$controller,unit=$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
} elsif ($drive->{interface} eq 'sata'){
my $controller = int($drive->{index} / $MAX_SATA_DISKS);
my $unit = $drive->{index} % $MAX_SATA_DISKS;
$device = "ide-drive,bus=ahci$controller.$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
2011-12-07 14:41:27 +04:00
} elsif ($drive->{interface} eq 'usb') {
die "implement me";
# -device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0
} else {
die "unsupported interface type";
}
2011-12-07 14:54:31 +04:00
$device .= ",bootindex=$drive->{bootindex}" if $drive->{bootindex};
return $device;
}
2011-08-23 09:47:04 +04:00
sub print_drive_full {
my ($storecfg, $vmid, $drive) = @_;
my $opts = '';
foreach my $o (@qemu_drive_options) {
2011-12-07 14:54:31 +04:00
next if $o eq 'bootindex';
2011-08-23 09:47:04 +04:00
$opts .= ",$o=$drive->{$o}" if $drive->{$o};
2011-09-12 14:26:00 +04:00
}
2011-08-23 09:47:04 +04:00
foreach my $o (qw(bps bps_rd bps_wr)) {
my $v = $drive->{"m$o"};
$opts .= ",$o=" . int($v*1024*1024) if $v;
}
2011-08-23 09:47:04 +04:00
# use linux-aio by default (qemu default is threads)
2011-09-12 14:26:00 +04:00
$opts .= ",aio=native" if !$drive->{aio};
2011-08-23 09:47:04 +04:00
my $path;
my $volid = $drive->{file};
2011-09-15 11:11:27 +04:00
if (drive_is_cdrom($drive)) {
$path = get_iso_path($storecfg, $vmid, $volid);
2011-08-23 09:47:04 +04:00
} else {
if ($volid =~ m|^/|) {
$path = $volid;
} else {
2011-09-15 11:11:27 +04:00
$path = PVE::Storage::path($storecfg, $volid);
2011-08-23 09:47:04 +04:00
}
}
$opts .= ",cache=none" if !$drive->{cache} && !drive_is_cdrom($drive);
2011-08-23 09:47:04 +04:00
my $pathinfo = $path ? "file=$path," : '';
return "${pathinfo}if=none,id=drive-$drive->{interface}$drive->{index}$opts";
2011-08-23 09:47:04 +04:00
}
sub print_netdevice_full {
my ($vmid, $conf, $net, $netid, $bridges) = @_;
my $bootorder = $conf->{boot} || $confdesc->{boot}->{default};
my $device = $net->{model};
if ($net->{model} eq 'virtio') {
$device = 'virtio-net-pci';
};
# qemu > 0.15 always try to boot from network - we disable that by
# not loading the pxe rom file
my $extra = ($bootorder !~ m/n/) ? "romfile=," : '';
my $pciaddr = print_pci_addr("$netid", $bridges);
my $tmpstr = "$device,${extra}mac=$net->{macaddr},netdev=$netid$pciaddr,id=$netid";
$tmpstr .= ",bootindex=$net->{bootindex}" if $net->{bootindex} ;
return $tmpstr;
}
sub print_netdev_full {
my ($vmid, $conf, $net, $netid) = @_;
my $i = '';
if ($netid =~ m/^net(\d+)$/) {
$i = int($1);
}
die "got strange net id '$i'\n" if $i >= ${MAX_NETS};
my $ifname = "tap${vmid}i$i";
# kvm uses TUNSETIFF ioctl, and that limits ifname length
die "interface name '$ifname' is too long (max 15 character)\n"
if length($ifname) >= 16;
my $vhostparam = '';
$vhostparam = ',vhost=on' if $kernel_has_vhost_net && $net->{model} eq 'virtio';
my $vmname = $conf->{name} || "vm$vmid";
if ($net->{bridge}) {
return "type=tap,id=$netid,ifname=${ifname},script=/var/lib/qemu-server/pve-bridge$vhostparam";
} else {
return "type=user,id=$netid,hostname=$vmname";
}
}
2011-08-23 09:47:04 +04:00
sub drive_is_cdrom {
my ($drive) = @_;
return $drive && $drive->{media} && ($drive->{media} eq 'cdrom');
}
sub parse_hostpci {
my ($value) = @_;
return undef if !$value;
2013-12-13 14:43:05 +04:00
my @list = split(/,/, $value);
my $found;
my $res = {};
2013-12-13 14:43:05 +04:00
foreach my $kv (@list) {
2013-12-13 14:43:05 +04:00
if ($kv =~ m/^(host=)?([a-f0-9]{2}:[a-f0-9]{2}\.[a-f0-9])$/) {
$found = 1;
$res->{pciid} = $2;
} elsif ($kv =~ m/^driver=(kvm|vfio)$/) {
$res->{driver} = $1;
} elsif ($kv =~ m/^rombar=(on|off)$/) {
$res->{rombar} = $1;
} else {
warn "unknown hostpci setting '$kv'\n";
}
}
2013-12-13 14:43:05 +04:00
return undef if !$found;
return $res;
}
2011-08-23 09:47:04 +04:00
# netX: e1000=XX:XX:XX:XX:XX:XX,bridge=vmbr0,rate=<mbps>
sub parse_net {
my ($data) = @_;
my $res = {};
2011-09-15 11:11:27 +04:00
foreach my $kvp (split(/,/, $data)) {
2011-08-23 09:47:04 +04:00
if ($kvp =~ m/^(ne2k_pci|e1000|rtl8139|pcnet|virtio|ne2k_isa|i82551|i82557b|i82559er|vmxnet3)(=([0-9a-f]{2}(:[0-9a-f]{2}){5}))?$/i) {
2011-09-15 11:11:27 +04:00
my $model = lc($1);
my $mac = defined($3) ? uc($3) : PVE::Tools::random_ether_addr();
2011-08-23 09:47:04 +04:00
$res->{model} = $model;
$res->{macaddr} = $mac;
} elsif ($kvp =~ m/^bridge=(\S+)$/) {
$res->{bridge} = $1;
} elsif ($kvp =~ m/^rate=(\d+(\.\d+)?)$/) {
$res->{rate} = $1;
} elsif ($kvp =~ m/^tag=(\d+)$/) {
$res->{tag} = $1;
2011-08-23 09:47:04 +04:00
} else {
return undef;
}
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
}
return undef if !$res->{model};
return $res;
}
sub print_net {
my $net = shift;
my $res = "$net->{model}";
$res .= "=$net->{macaddr}" if $net->{macaddr};
$res .= ",bridge=$net->{bridge}" if $net->{bridge};
$res .= ",rate=$net->{rate}" if $net->{rate};
2012-03-22 09:30:43 +04:00
$res .= ",tag=$net->{tag}" if $net->{tag};
2011-08-23 09:47:04 +04:00
return $res;
}
sub add_random_macs {
my ($settings) = @_;
foreach my $opt (keys %$settings) {
next if $opt !~ m/^net(\d+)$/;
my $net = parse_net($settings->{$opt});
next if !$net;
$settings->{$opt} = print_net($net);
}
}
sub add_unused_volume {
my ($config, $volid) = @_;
2011-08-23 09:47:04 +04:00
my $key;
for (my $ind = $MAX_UNUSED_DISKS - 1; $ind >= 0; $ind--) {
my $test = "unused$ind";
if (my $vid = $config->{$test}) {
return if $vid eq $volid; # do not add duplicates
} else {
$key = $test;
2011-09-12 14:26:00 +04:00
}
2011-08-23 09:47:04 +04:00
}
die "To many unused volume - please delete them first.\n" if !$key;
2012-05-30 14:08:33 +04:00
$config->{$key} = $volid;
2011-08-23 09:47:04 +04:00
return $key;
2011-08-23 09:47:04 +04:00
}
PVE::JSONSchema::register_format('pve-qm-bootdisk', \&verify_bootdisk);
sub verify_bootdisk {
my ($value, $noerr) = @_;
2011-09-12 14:26:00 +04:00
return $value if valid_drivename($value);
2011-08-23 09:47:04 +04:00
return undef if $noerr;
die "invalid boot disk '$value'\n";
}
PVE::JSONSchema::register_format('pve-qm-net', \&verify_net);
sub verify_net {
my ($value, $noerr) = @_;
return $value if parse_net($value);
return undef if $noerr;
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
die "unable to parse network options\n";
}
PVE::JSONSchema::register_format('pve-qm-drive', \&verify_drive);
sub verify_drive {
my ($value, $noerr) = @_;
2011-09-15 11:11:27 +04:00
return $value if parse_drive(undef, $value);
2011-08-23 09:47:04 +04:00
return undef if $noerr;
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
die "unable to parse drive options\n";
}
PVE::JSONSchema::register_format('pve-qm-hostpci', \&verify_hostpci);
sub verify_hostpci {
my ($value, $noerr) = @_;
return $value if parse_hostpci($value);
return undef if $noerr;
die "unable to parse pci id\n";
2011-08-23 09:47:04 +04:00
}
2011-09-08 13:39:56 +04:00
PVE::JSONSchema::register_format('pve-qm-watchdog', \&verify_watchdog);
sub verify_watchdog {
my ($value, $noerr) = @_;
return $value if parse_watchdog($value);
return undef if $noerr;
2011-09-12 14:26:00 +04:00
2011-09-08 13:39:56 +04:00
die "unable to parse watchdog options\n";
}
sub parse_watchdog {
my ($value) = @_;
return undef if !$value;
my $res = {};
2011-09-15 11:11:27 +04:00
foreach my $p (split(/,/, $value)) {
2011-09-08 13:39:56 +04:00
next if $p =~ m/^\s*$/;
if ($p =~ m/^(model=)?(i6300esb|ib700)$/) {
$res->{model} = $2;
} elsif ($p =~ m/^(action=)?(reset|shutdown|poweroff|pause|debug|none)$/) {
$res->{action} = $2;
} else {
return undef;
}
}
return $res;
}
PVE::JSONSchema::register_format('pve-qm-startup', \&verify_startup);
sub verify_startup {
my ($value, $noerr) = @_;
return $value if parse_startup($value);
return undef if $noerr;
die "unable to parse startup options\n";
}
sub parse_startup {
my ($value) = @_;
return undef if !$value;
my $res = {};
foreach my $p (split(/,/, $value)) {
next if $p =~ m/^\s*$/;
if ($p =~ m/^(order=)?(\d+)$/) {
$res->{order} = $2;
} elsif ($p =~ m/^up=(\d+)$/) {
$res->{up} = $1;
} elsif ($p =~ m/^down=(\d+)$/) {
$res->{down} = $1;
} else {
return undef;
}
}
return $res;
}
2011-08-23 09:47:04 +04:00
sub parse_usb_device {
my ($value) = @_;
return undef if !$value;
2011-09-15 11:11:27 +04:00
my @dl = split(/,/, $value);
2011-08-23 09:47:04 +04:00
my $found;
my $res = {};
foreach my $v (@dl) {
if ($v =~ m/^host=(0x)?([0-9A-Fa-f]{4}):(0x)?([0-9A-Fa-f]{4})$/) {
2011-08-23 09:47:04 +04:00
$found = 1;
$res->{vendorid} = $2;
$res->{productid} = $4;
2011-08-23 09:47:04 +04:00
} elsif ($v =~ m/^host=(\d+)\-(\d+(\.\d+)*)$/) {
$found = 1;
$res->{hostbus} = $1;
$res->{hostport} = $2;
2013-07-19 11:37:04 +04:00
} elsif ($v =~ m/^spice$/) {
$found = 1;
$res->{spice} = 1;
2011-08-23 09:47:04 +04:00
} else {
return undef;
}
}
return undef if !$found;
return $res;
}
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
PVE::JSONSchema::register_format('pve-qm-usb-device', \&verify_usb_device);
sub verify_usb_device {
my ($value, $noerr) = @_;
return $value if parse_usb_device($value);
return undef if $noerr;
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
die "unable to parse usb device\n";
}
# add JSON properties for create and set function
sub json_config_properties {
my $prop = shift;
foreach my $opt (keys %$confdesc) {
next if $opt eq 'parent' || $opt eq 'snaptime' || $opt eq 'vmstate';
2011-08-23 09:47:04 +04:00
$prop->{$opt} = $confdesc->{$opt};
}
return $prop;
}
sub check_type {
my ($key, $value) = @_;
die "unknown setting '$key'\n" if !$confdesc->{$key};
my $type = $confdesc->{$key}->{type};
2011-09-15 11:11:27 +04:00
if (!defined($value)) {
2011-08-23 09:47:04 +04:00
die "got undefined value\n";
}
if ($value =~ m/[\n\r]/) {
die "property contains a line feed\n";
}
if ($type eq 'boolean') {
2011-09-12 14:26:00 +04:00
return 1 if ($value eq '1') || ($value =~ m/^(on|yes|true)$/i);
return 0 if ($value eq '0') || ($value =~ m/^(off|no|false)$/i);
die "type check ('boolean') failed - got '$value'\n";
2011-08-23 09:47:04 +04:00
} elsif ($type eq 'integer') {
return int($1) if $value =~ m/^(\d+)$/;
die "type check ('integer') failed - got '$value'\n";
} elsif ($type eq 'number') {
return $value if $value =~ m/^(\d+)(\.\d+)?$/;
die "type check ('number') failed - got '$value'\n";
2011-08-23 09:47:04 +04:00
} elsif ($type eq 'string') {
if (my $fmt = $confdesc->{$key}->{format}) {
if ($fmt eq 'pve-qm-drive') {
# special case - we need to pass $key to parse_drive()
2011-09-15 11:11:27 +04:00
my $drive = parse_drive($key, $value);
2011-08-23 09:47:04 +04:00
return $value if $drive;
die "unable to parse drive options\n";
}
PVE::JSONSchema::check_format($fmt, $value);
2011-09-12 14:26:00 +04:00
return $value;
}
2011-08-23 09:47:04 +04:00
$value =~ s/^\"(.*)\"$/$1/;
2011-09-12 14:26:00 +04:00
return $value;
2011-08-23 09:47:04 +04:00
} else {
die "internal error"
}
}
sub lock_config_full {
my ($vmid, $timeout, $code, @param) = @_;
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my $filename = config_file_lock($vmid);
2011-08-23 09:47:04 +04:00
my $res = lock_file($filename, $timeout, $code, @param);
2011-08-23 09:47:04 +04:00
die $@ if $@;
2011-10-10 15:17:40 +04:00
return $res;
2011-08-23 09:47:04 +04:00
}
sub lock_config_mode {
my ($vmid, $timeout, $shared, $code, @param) = @_;
my $filename = config_file_lock($vmid);
my $res = lock_file_full($filename, $timeout, $shared, $code, @param);
die $@ if $@;
return $res;
}
sub lock_config {
my ($vmid, $code, @param) = @_;
return lock_config_full($vmid, 10, $code, @param);
}
2011-08-23 09:47:04 +04:00
sub cfs_config_path {
my ($vmid, $node) = @_;
2011-08-23 09:47:04 +04:00
$node = $nodename if !$node;
return "nodes/$node/qemu-server/$vmid.conf";
2011-08-23 09:47:04 +04:00
}
sub check_iommu_support{
#fixme : need to check IOMMU support
#http://www.linux-kvm.org/page/How_to_assign_devices_with_VT-d_in_KVM
my $iommu=1;
return $iommu;
}
2011-08-23 09:47:04 +04:00
sub config_file {
my ($vmid, $node) = @_;
2011-08-23 09:47:04 +04:00
my $cfspath = cfs_config_path($vmid, $node);
2011-08-23 09:47:04 +04:00
return "/etc/pve/$cfspath";
}
sub config_file_lock {
my ($vmid) = @_;
return "$lock_dir/lock-$vmid.conf";
}
sub touch_config {
my ($vmid) = @_;
2011-09-15 11:11:27 +04:00
my $conf = config_file($vmid);
2011-08-23 09:47:04 +04:00
utime undef, undef, $conf;
}
sub destroy_vm {
my ($storecfg, $vmid, $keep_empty_config) = @_;
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my $conffile = config_file($vmid);
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my $conf = load_config($vmid);
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
check_lock($conf);
2011-08-23 09:47:04 +04:00
2011-09-12 14:26:00 +04:00
# only remove disks owned by this VM
2011-08-23 09:47:04 +04:00
foreach_drive($conf, sub {
my ($ds, $drive) = @_;
2011-09-15 11:11:27 +04:00
return if drive_is_cdrom($drive);
2011-08-23 09:47:04 +04:00
my $volid = $drive->{file};
return if !$volid || $volid =~ m|^/|;
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my ($path, $owner) = PVE::Storage::path($storecfg, $volid);
return if !$path || !$owner || ($owner != $vmid);
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
PVE::Storage::vdisk_free($storecfg, $volid);
2011-08-23 09:47:04 +04:00
});
2011-09-12 14:26:00 +04:00
if ($keep_empty_config) {
2011-10-19 13:27:42 +04:00
PVE::Tools::file_set_contents($conffile, "memory: 128\n");
} else {
unlink $conffile;
}
2011-08-23 09:47:04 +04:00
# also remove unused disk
eval {
2011-09-15 11:11:27 +04:00
my $dl = PVE::Storage::vdisk_list($storecfg, undef, $vmid);
2011-08-23 09:47:04 +04:00
eval {
2011-09-15 11:11:27 +04:00
PVE::Storage::foreach_volid($dl, sub {
2011-08-23 09:47:04 +04:00
my ($volid, $sid, $volname, $d) = @_;
2011-09-15 11:11:27 +04:00
PVE::Storage::vdisk_free($storecfg, $volid);
2011-08-23 09:47:04 +04:00
});
};
warn $@ if $@;
};
warn $@ if $@;
}
sub load_config {
my ($vmid, $node) = @_;
2011-08-23 09:47:04 +04:00
my $cfspath = cfs_config_path($vmid, $node);
2011-08-23 09:47:04 +04:00
my $conf = PVE::Cluster::cfs_read_file($cfspath);
die "no such VM ('$vmid')\n" if !defined($conf);
return $conf;
2011-09-12 14:26:00 +04:00
}
2011-08-23 09:47:04 +04:00
sub parse_vm_config {
my ($filename, $raw) = @_;
return undef if !defined($raw);
my $res = {
digest => Digest::SHA::sha1_hex($raw),
snapshots => {},
};
2011-08-23 09:47:04 +04:00
2011-09-12 14:26:00 +04:00
$filename =~ m|/qemu-server/(\d+)\.conf$|
2011-08-23 09:47:04 +04:00
|| die "got strange filename '$filename'";
my $vmid = $1;
my $conf = $res;
2012-03-01 11:13:14 +04:00
my $descr = '';
my @lines = split(/\n/, $raw);
foreach my $line (@lines) {
2011-08-23 09:47:04 +04:00
next if $line =~ m/^\s*$/;
if ($line =~ m/^\[([a-z][a-z0-9_\-]+)\]\s*$/i) {
my $snapname = $1;
$conf->{description} = $descr if $descr;
2012-09-11 11:00:26 +04:00
$descr = '';
$conf = $res->{snapshots}->{$snapname} = {};
next;
}
2011-08-23 09:47:04 +04:00
2012-03-01 11:13:14 +04:00
if ($line =~ m/^\#(.*)\s*$/) {
$descr .= PVE::Tools::decode_text($1) . "\n";
next;
}
2011-08-23 09:47:04 +04:00
if ($line =~ m/^(description):\s*(.*\S)\s*$/) {
2012-03-01 11:13:14 +04:00
$descr .= PVE::Tools::decode_text($2);
} elsif ($line =~ m/snapstate:\s*(prepare|delete)\s*$/) {
$conf->{snapstate} = $1;
2011-08-23 09:47:04 +04:00
} elsif ($line =~ m/^(args):\s*(.*\S)\s*$/) {
my $key = $1;
my $value = $2;
$conf->{$key} = $value;
2011-08-23 09:47:04 +04:00
} elsif ($line =~ m/^([a-z][a-z_]*\d*):\s*(\S+)\s*$/) {
my $key = $1;
my $value = $2;
eval { $value = check_type($key, $value); };
if ($@) {
warn "vm $vmid - unable to parse value of '$key' - $@";
} else {
my $fmt = $confdesc->{$key}->{format};
if ($fmt && $fmt eq 'pve-qm-drive') {
my $v = parse_drive($key, $value);
if (my $volid = filename_to_volume_id($vmid, $v->{file}, $v->{media})) {
$v->{file} = $volid;
2011-09-15 11:11:27 +04:00
$value = print_drive($vmid, $v);
2011-08-23 09:47:04 +04:00
} else {
warn "vm $vmid - unable to parse value of '$key'\n";
next;
}
}
if ($key eq 'cdrom') {
$conf->{ide2} = $value;
2011-08-23 09:47:04 +04:00
} else {
$conf->{$key} = $value;
2011-08-23 09:47:04 +04:00
}
}
}
}
$conf->{description} = $descr if $descr;
2012-03-01 11:13:14 +04:00
delete $res->{snapstate}; # just to be sure
2011-08-23 09:47:04 +04:00
return $res;
}
sub write_vm_config {
my ($filename, $conf) = @_;
2011-08-23 09:47:04 +04:00
delete $conf->{snapstate}; # just to be sure
if ($conf->{cdrom}) {
die "option ide2 conflicts with cdrom\n" if $conf->{ide2};
$conf->{ide2} = $conf->{cdrom};
delete $conf->{cdrom};
}
2011-08-23 09:47:04 +04:00
# we do not use 'smp' any longer
if ($conf->{sockets}) {
delete $conf->{smp};
} elsif ($conf->{smp}) {
$conf->{sockets} = $conf->{smp};
delete $conf->{cores};
delete $conf->{smp};
2011-08-23 09:47:04 +04:00
}
2014-01-14 13:33:36 +04:00
if ($conf->{maxcpus} && $conf->{sockets}) {
delete $conf->{sockets};
}
2014-01-14 13:33:36 +04:00
my $used_volids = {};
my $cleanup_config = sub {
my ($cref, $snapname) = @_;
foreach my $key (keys %$cref) {
next if $key eq 'digest' || $key eq 'description' || $key eq 'snapshots' ||
$key eq 'snapstate';
my $value = $cref->{$key};
eval { $value = check_type($key, $value); };
die "unable to parse value of '$key' - $@" if $@;
$cref->{$key} = $value;
if (!$snapname && valid_drivename($key)) {
my $drive = parse_drive($key, $value);
$used_volids->{$drive->{file}} = 1 if $drive && $drive->{file};
}
2011-08-23 09:47:04 +04:00
}
};
&$cleanup_config($conf);
foreach my $snapname (keys %{$conf->{snapshots}}) {
&$cleanup_config($conf->{snapshots}->{$snapname}, $snapname);
2011-08-23 09:47:04 +04:00
}
# remove 'unusedX' settings if we re-add a volume
foreach my $key (keys %$conf) {
my $value = $conf->{$key};
if ($key =~ m/^unused/ && $used_volids->{$value}) {
delete $conf->{$key};
2011-08-23 09:47:04 +04:00
}
}
my $generate_raw_config = sub {
my ($conf) = @_;
2012-03-01 11:13:14 +04:00
my $raw = '';
# add description as comment to top of file
my $descr = $conf->{description} || '';
foreach my $cl (split(/\n/, $descr)) {
$raw .= '#' . PVE::Tools::encode_text($cl) . "\n";
}
foreach my $key (sort keys %$conf) {
next if $key eq 'digest' || $key eq 'description' || $key eq 'snapshots';
$raw .= "$key: $conf->{$key}\n";
}
return $raw;
};
2012-03-01 11:13:14 +04:00
my $raw = &$generate_raw_config($conf);
foreach my $snapname (sort keys %{$conf->{snapshots}}) {
$raw .= "\n[$snapname]\n";
$raw .= &$generate_raw_config($conf->{snapshots}->{$snapname});
}
2011-08-23 09:47:04 +04:00
return $raw;
}
2011-08-23 09:47:04 +04:00
sub update_config_nolock {
my ($vmid, $conf, $skiplock) = @_;
2011-08-23 09:47:04 +04:00
check_lock($conf) if !$skiplock;
2012-05-30 14:08:33 +04:00
my $cfspath = cfs_config_path($vmid);
2011-08-23 09:47:04 +04:00
PVE::Cluster::cfs_write_file($cfspath, $conf);
}
2011-08-23 09:47:04 +04:00
sub update_config {
my ($vmid, $conf, $skiplock) = @_;
2011-08-23 09:47:04 +04:00
lock_config($vmid, &update_config_nolock, $conf, $skiplock);
2011-08-23 09:47:04 +04:00
}
2011-09-12 14:26:00 +04:00
sub load_defaults {
2011-08-23 09:47:04 +04:00
my $res = {};
# we use static defaults from our JSON schema configuration
foreach my $key (keys %$confdesc) {
if (defined(my $default = $confdesc->{$key}->{default})) {
$res->{$key} = $default;
}
}
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
my $conf = PVE::Cluster::cfs_read_file('datacenter.cfg');
$res->{keyboard} = $conf->{keyboard} if $conf->{keyboard};
return $res;
}
sub config_list {
my $vmlist = PVE::Cluster::get_vmlist();
my $res = {};
return $res if !$vmlist || !$vmlist->{ids};
my $ids = $vmlist->{ids};
foreach my $vmid (keys %$ids) {
my $d = $ids->{$vmid};
next if !$d->{node} || $d->{node} ne $nodename;
2011-09-26 14:20:05 +04:00
next if !$d->{type} || $d->{type} ne 'qemu';
2011-08-23 09:47:04 +04:00
$res->{$vmid}->{exists} = 1;
}
return $res;
}
# test if VM uses local resources (to prevent migration)
sub check_local_resources {
my ($conf, $noerr) = @_;
my $loc_res = 0;
2011-09-12 14:26:00 +04:00
2011-09-12 10:41:28 +04:00
$loc_res = 1 if $conf->{hostusb}; # old syntax
$loc_res = 1 if $conf->{hostpci}; # old syntax
2011-09-09 16:18:11 +04:00
foreach my $k (keys %$conf) {
next if $k =~ m/^usb/ && ($conf->{$k} eq 'spice');
$loc_res = 1 if $k =~ m/^(usb|hostpci|serial|parallel)\d+$/;
}
die "VM uses local resources\n" if $loc_res && !$noerr;
return $loc_res;
}
# check if used storages are available on all nodes (use by migrate)
sub check_storage_availability {
my ($storecfg, $conf, $node) = @_;
foreach_drive($conf, sub {
my ($ds, $drive) = @_;
my $volid = $drive->{file};
return if !$volid;
my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
return if !$sid;
# check if storage is available on both nodes
my $scfg = PVE::Storage::storage_check_node($storecfg, $sid);
PVE::Storage::storage_check_node($storecfg, $sid, $node);
});
}
# list nodes where all VM images are available (used by has_feature API)
sub shared_nodes {
my ($conf, $storecfg) = @_;
my $nodelist = PVE::Cluster::get_nodelist();
my $nodehash = { map { $_ => 1 } @$nodelist };
my $nodename = PVE::INotify::nodename();
foreach_drive($conf, sub {
my ($ds, $drive) = @_;
my $volid = $drive->{file};
return if !$volid;
my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
if ($storeid) {
my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
if ($scfg->{disable}) {
$nodehash = {};
} elsif (my $avail = $scfg->{nodes}) {
foreach my $node (keys %$nodehash) {
delete $nodehash->{$node} if !$avail->{$node};
}
} elsif (!$scfg->{shared}) {
foreach my $node (keys %$nodehash) {
delete $nodehash->{$node} if $node ne $nodename
}
}
}
});
return $nodehash
}
2011-08-23 09:47:04 +04:00
sub check_lock {
my ($conf) = @_;
die "VM is locked ($conf->{lock})\n" if $conf->{lock};
}
sub check_cmdline {
my ($pidfile, $pid) = @_;
2011-09-15 11:11:27 +04:00
my $fh = IO::File->new("/proc/$pid/cmdline", "r");
if (defined($fh)) {
2011-08-23 09:47:04 +04:00
my $line = <$fh>;
$fh->close;
return undef if !$line;
2011-09-15 11:11:27 +04:00
my @param = split(/\0/, $line);
2011-08-23 09:47:04 +04:00
my $cmd = $param[0];
return if !$cmd || ($cmd !~ m|kvm$| && $cmd !~ m|qemu-system-x86_64$|);
2011-08-23 09:47:04 +04:00
for (my $i = 0; $i < scalar (@param); $i++) {
my $p = $param[$i];
next if !$p;
if (($p eq '-pidfile') || ($p eq '--pidfile')) {
my $p = $param[$i+1];
return 1 if $p && ($p eq $pidfile);
return undef;
}
}
}
return undef;
}
sub check_running {
my ($vmid, $nocheck, $node) = @_;
2011-08-23 09:47:04 +04:00
my $filename = config_file($vmid, $node);
2011-08-23 09:47:04 +04:00
die "unable to find configuration file for VM $vmid - no such machine\n"
2011-09-15 10:21:32 +04:00
if !$nocheck && ! -f $filename;
2011-08-23 09:47:04 +04:00
2011-09-15 10:21:32 +04:00
my $pidfile = pidfile_name($vmid);
2011-08-23 09:47:04 +04:00
2011-09-15 10:21:32 +04:00
if (my $fd = IO::File->new("<$pidfile")) {
my $st = stat($fd);
2011-08-23 09:47:04 +04:00
my $line = <$fd>;
2011-09-15 11:11:27 +04:00
close($fd);
2011-08-23 09:47:04 +04:00
my $mtime = $st->mtime;
if ($mtime > time()) {
warn "file '$filename' modified in future\n";
}
if ($line =~ m/^(\d+)$/) {
my $pid = $1;
2011-09-15 10:21:32 +04:00
if (check_cmdline($pidfile, $pid)) {
if (my $pinfo = PVE::ProcFSTools::check_process_running($pid)) {
return $pid;
}
}
2011-08-23 09:47:04 +04:00
}
}
return undef;
}
sub vzlist {
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
my $vzlist = config_list();
2011-09-15 11:11:27 +04:00
my $fd = IO::Dir->new($var_run_tmpdir) || return $vzlist;
2011-08-23 09:47:04 +04:00
2011-09-12 14:26:00 +04:00
while (defined(my $de = $fd->read)) {
2011-08-23 09:47:04 +04:00
next if $de !~ m/^(\d+)\.pid$/;
my $vmid = $1;
2011-09-15 11:11:27 +04:00
next if !defined($vzlist->{$vmid});
if (my $pid = check_running($vmid)) {
2011-08-23 09:47:04 +04:00
$vzlist->{$vmid}->{pid} = $pid;
}
}
return $vzlist;
}
sub disksize {
my ($storecfg, $conf) = @_;
my $bootdisk = $conf->{bootdisk};
return undef if !$bootdisk;
return undef if !valid_drivename($bootdisk);
return undef if !$conf->{$bootdisk};
my $drive = parse_drive($bootdisk, $conf->{$bootdisk});
return undef if !defined($drive);
return undef if drive_is_cdrom($drive);
my $volid = $drive->{file};
return undef if !$volid;
return $drive->{size};
2011-08-23 09:47:04 +04:00
}
my $last_proc_pid_stat;
# get VM status information
# This must be fast and should not block ($full == false)
# We only query KVM using QMP if $full == true (this can be slow)
2011-08-23 09:47:04 +04:00
sub vmstatus {
my ($opt_vmid, $full) = @_;
2011-08-23 09:47:04 +04:00
my $res = {};
2011-09-12 14:26:00 +04:00
my $storecfg = PVE::Storage::config();
2011-08-23 09:47:04 +04:00
my $list = vzlist();
my ($uptime) = PVE::ProcFSTools::read_proc_uptime(1);
2011-08-23 09:47:04 +04:00
2011-11-18 12:35:32 +04:00
my $cpucount = $cpuinfo->{cpus} || 1;
2011-08-23 09:47:04 +04:00
foreach my $vmid (keys %$list) {
next if $opt_vmid && ($vmid ne $opt_vmid);
my $cfspath = cfs_config_path($vmid);
my $conf = PVE::Cluster::cfs_read_file($cfspath) || {};
my $d = {};
$d->{pid} = $list->{$vmid}->{pid};
# fixme: better status?
$d->{status} = $list->{$vmid}->{pid} ? 'running' : 'stopped';
2012-08-01 15:44:54 +04:00
my $size = disksize($storecfg, $conf);
if (defined($size)) {
$d->{disk} = 0; # no info available
2011-08-23 09:47:04 +04:00
$d->{maxdisk} = $size;
} else {
$d->{disk} = 0;
$d->{maxdisk} = 0;
}
$d->{cpus} = ($conf->{sockets} || 1) * ($conf->{cores} || 1);
2011-11-18 12:35:32 +04:00
$d->{cpus} = $cpucount if $d->{cpus} > $cpucount;
2011-08-23 09:47:04 +04:00
$d->{name} = $conf->{name} || "VM $vmid";
2011-09-12 14:26:00 +04:00
$d->{maxmem} = $conf->{memory} ? $conf->{memory}*(1024*1024) : 0;
2011-08-23 09:47:04 +04:00
if ($conf->{balloon}) {
2012-12-19 12:08:16 +04:00
$d->{balloon_min} = $conf->{balloon}*(1024*1024);
2012-12-28 17:05:58 +04:00
$d->{shares} = defined($conf->{shares}) ? $conf->{shares} : 1000;
}
2011-08-23 09:47:04 +04:00
$d->{uptime} = 0;
$d->{cpu} = 0;
$d->{mem} = 0;
$d->{netout} = 0;
$d->{netin} = 0;
$d->{diskread} = 0;
$d->{diskwrite} = 0;
$d->{template} = is_template($conf);
2011-08-23 09:47:04 +04:00
$res->{$vmid} = $d;
}
my $netdev = PVE::ProcFSTools::read_proc_net_dev();
foreach my $dev (keys %$netdev) {
next if $dev !~ m/^tap([1-9]\d*)i/;
my $vmid = $1;
my $d = $res->{$vmid};
next if !$d;
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
$d->{netout} += $netdev->{$dev}->{receive};
$d->{netin} += $netdev->{$dev}->{transmit};
}
my $ctime = gettimeofday;
foreach my $vmid (keys %$list) {
my $d = $res->{$vmid};
my $pid = $d->{pid};
next if !$pid;
my $pstat = PVE::ProcFSTools::read_proc_pid_stat($pid);
next if !$pstat; # not running
2011-09-12 14:26:00 +04:00
my $used = $pstat->{utime} + $pstat->{stime};
2011-08-23 09:47:04 +04:00
$d->{uptime} = int(($uptime - $pstat->{starttime})/$cpuinfo->{user_hz});
2011-08-23 09:47:04 +04:00
if ($pstat->{vsize}) {
2011-09-15 11:11:27 +04:00
$d->{mem} = int(($pstat->{rss}/$pstat->{vsize})*$d->{maxmem});
2011-08-23 09:47:04 +04:00
}
my $old = $last_proc_pid_stat->{$pid};
if (!$old) {
2011-09-12 14:26:00 +04:00
$last_proc_pid_stat->{$pid} = {
time => $ctime,
2011-08-23 09:47:04 +04:00
used => $used,
cpu => 0,
};
next;
}
2011-09-12 13:03:14 +04:00
my $dtime = ($ctime - $old->{time}) * $cpucount * $cpuinfo->{user_hz};
2011-08-23 09:47:04 +04:00
if ($dtime > 1000) {
my $dutime = $used - $old->{used};
2011-11-18 12:35:32 +04:00
$d->{cpu} = (($dutime/$dtime)* $cpucount) / $d->{cpus};
2011-08-23 09:47:04 +04:00
$last_proc_pid_stat->{$pid} = {
2011-09-12 14:26:00 +04:00
time => $ctime,
2011-08-23 09:47:04 +04:00
used => $used,
cpu => $d->{cpu},
};
} else {
$d->{cpu} = $old->{cpu};
}
}
2012-08-23 09:36:48 +04:00
return $res if !$full;
my $qmpclient = PVE::QMPClient->new();
my $ballooncb = sub {
my ($vmid, $resp) = @_;
my $info = $resp->{'return'};
return if !$info->{max_mem};
my $d = $res->{$vmid};
# use memory assigned to VM
$d->{maxmem} = $info->{max_mem};
$d->{balloon} = $info->{actual};
if (defined($info->{total_mem}) && defined($info->{free_mem})) {
$d->{mem} = $info->{total_mem} - $info->{free_mem};
$d->{freemem} = $info->{free_mem};
}
};
my $blockstatscb = sub {
my ($vmid, $resp) = @_;
my $data = $resp->{'return'} || [];
my $totalrdbytes = 0;
my $totalwrbytes = 0;
for my $blockstat (@$data) {
$totalrdbytes = $totalrdbytes + $blockstat->{stats}->{rd_bytes};
$totalwrbytes = $totalwrbytes + $blockstat->{stats}->{wr_bytes};
}
$res->{$vmid}->{diskread} = $totalrdbytes;
$res->{$vmid}->{diskwrite} = $totalwrbytes;
};
my $statuscb = sub {
my ($vmid, $resp) = @_;
$qmpclient->queue_cmd($vmid, $blockstatscb, 'query-blockstats');
# this fails if ballon driver is not loaded, so this must be
# the last commnand (following command are aborted if this fails).
$qmpclient->queue_cmd($vmid, $ballooncb, 'query-balloon');
my $status = 'unknown';
if (!defined($status = $resp->{'return'}->{status})) {
warn "unable to get VM status\n";
return;
}
$res->{$vmid}->{qmpstatus} = $resp->{'return'}->{status};
};
foreach my $vmid (keys %$list) {
next if $opt_vmid && ($vmid ne $opt_vmid);
next if !$res->{$vmid}->{pid}; # not running
$qmpclient->queue_cmd($vmid, $statuscb, 'query-status');
}
$qmpclient->queue_execute();
foreach my $vmid (keys %$list) {
next if $opt_vmid && ($vmid ne $opt_vmid);
$res->{$vmid}->{qmpstatus} = $res->{$vmid}->{status} if !$res->{$vmid}->{qmpstatus};
}
2011-08-23 09:47:04 +04:00
return $res;
}
sub foreach_drive {
my ($conf, $func) = @_;
foreach my $ds (keys %$conf) {
next if !valid_drivename($ds);
2011-09-15 11:11:27 +04:00
my $drive = parse_drive($ds, $conf->{$ds});
2011-08-23 09:47:04 +04:00
next if !$drive;
&$func($ds, $drive);
}
}
sub foreach_volid {
my ($conf, $func) = @_;
my $volhash = {};
my $test_volid = sub {
my ($volid, $is_cdrom) = @_;
return if !$volid;
$volhash->{$volid} = $is_cdrom || 0;
};
foreach_drive($conf, sub {
my ($ds, $drive) = @_;
&$test_volid($drive->{file}, drive_is_cdrom($drive));
});
foreach my $snapname (keys %{$conf->{snapshots}}) {
my $snap = $conf->{snapshots}->{$snapname};
&$test_volid($snap->{vmstate}, 0);
foreach_drive($snap, sub {
my ($ds, $drive) = @_;
&$test_volid($drive->{file}, drive_is_cdrom($drive));
});
}
foreach my $volid (keys %$volhash) {
&$func($volid, $volhash->{$volid});
}
}
sub vga_conf_has_spice {
my ($vga) = @_;
2013-10-02 11:11:57 +04:00
return 0 if !$vga || $vga !~ m/^qxl([234])?$/;
return $1 || 1;
}
2011-08-23 09:47:04 +04:00
sub config_to_command {
my ($storecfg, $vmid, $conf, $defaults, $forcemachine) = @_;
2011-08-23 09:47:04 +04:00
my $cmd = [];
my $globalFlags = [];
my $machineFlags = [];
my $rtcFlags = [];
my $cpuFlags = [];
my $devices = [];
my $pciaddr = '';
my $bridges = {};
2011-08-23 09:47:04 +04:00
my $kvmver = kvm_user_version();
my $vernum = 0; # unknown
2011-12-07 14:16:57 +04:00
if ($kvmver =~ m/^(\d+)\.(\d+)$/) {
$vernum = $1*1000000+$2*1000;
} elsif ($kvmver =~ m/^(\d+)\.(\d+)\.(\d+)$/) {
2011-08-23 09:47:04 +04:00
$vernum = $1*1000000+$2*1000+$3;
}
2011-12-07 14:16:57 +04:00
die "detected old qemu-kvm binary ($kvmver)\n" if $vernum < 15000;
2011-08-23 09:47:04 +04:00
my $have_ovz = -f '/proc/vz/vestat';
push @$cmd, '/usr/bin/kvm';
push @$cmd, '-id', $vmid;
my $use_virtio = 0;
my $qmpsocket = qmp_socket($vmid);
push @$cmd, '-chardev', "socket,id=qmp,path=$qmpsocket,server,nowait";
push @$cmd, '-mon', "chardev=qmp,mode=control";
my $socket = vnc_socket($vmid);
2011-08-23 09:47:04 +04:00
push @$cmd, '-vnc', "unix:$socket,x509,password";
2011-09-15 11:11:27 +04:00
push @$cmd, '-pidfile' , pidfile_name($vmid);
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
push @$cmd, '-daemonize';
$pciaddr = print_pci_addr("piix3", $bridges);
push @$devices, '-device', "piix3-usb-uhci,id=uhci$pciaddr.0x2";
my $use_usb2 = 0;
for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
next if !$conf->{"usb$i"};
$use_usb2 = 1;
}
# include usb device config
push @$devices, '-readconfig', '/usr/share/qemu-server/pve-usb.cfg' if $use_usb2;
2011-09-12 14:26:00 +04:00
2013-07-19 11:53:44 +04:00
my $vga = $conf->{vga};
2013-10-02 11:11:57 +04:00
my $qxlnum = vga_conf_has_spice($vga);
$vga = 'qxl' if $qxlnum;
2013-07-19 11:53:44 +04:00
if (!$vga) {
2014-01-14 13:33:36 +04:00
if ($conf->{ostype} && ($conf->{ostype} eq 'win8' ||
$conf->{ostype} eq 'win7' ||
2013-07-19 11:53:44 +04:00
$conf->{ostype} eq 'w2k8')) {
$vga = 'std';
} else {
$vga = 'cirrus';
}
}
2011-08-23 09:47:04 +04:00
# enable absolute mouse coordinates (needed by vnc)
2013-07-19 11:53:44 +04:00
my $tablet;
if (defined($conf->{tablet})) {
$tablet = $conf->{tablet};
} else {
$tablet = $defaults->{tablet};
2013-10-02 11:11:57 +04:00
$tablet = 0 if $qxlnum; # disable for spice because it is not needed
$tablet = 0 if $vga =~ m/^serial\d+$/; # disable if we use serial terminal (no vga card)
2013-07-19 11:53:44 +04:00
}
push @$devices, '-device', 'usb-tablet,id=tablet,bus=uhci.0,port=1' if $tablet;
2011-08-23 09:47:04 +04:00
# host pci devices
for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
my $d = parse_hostpci($conf->{"hostpci$i"});
next if !$d;
$pciaddr = print_pci_addr("hostpci$i", $bridges);
2014-01-14 13:33:36 +04:00
my $rombar = $d->{rombar} && $d->{rombar} eq 'off' ? ",rombar=0" : "";
2013-12-13 14:43:05 +04:00
push @$devices, '-device', "pci-assign,host=$d->{pciid},id=hostpci$i$pciaddr$rombar";
2011-08-23 09:47:04 +04:00
}
# usb devices
for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
my $d = parse_usb_device($conf->{"usb$i"});
next if !$d;
if ($d->{vendorid} && $d->{productid}) {
push @$devices, '-device', "usb-host,vendorid=0x$d->{vendorid},productid=0x$d->{productid}";
2011-08-23 09:47:04 +04:00
} elsif (defined($d->{hostbus}) && defined($d->{hostport})) {
push @$devices, '-device', "usb-host,hostbus=$d->{hostbus},hostport=$d->{hostport}";
2013-07-19 11:37:04 +04:00
} elsif ($d->{spice}) {
# usb redir support for spice
push @$devices, '-chardev', "spicevmc,id=usbredirchardev$i,name=usbredir";
push @$devices, '-device', "usb-redir,chardev=usbredirchardev$i,id=usbredirdev$i,bus=ehci.0";
2011-08-23 09:47:04 +04:00
}
}
# serial devices
for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
if (my $path = $conf->{"serial$i"}) {
if ($path eq 'socket') {
my $socket = "/var/run/qemu-server/${vmid}.serial$i";
push @$devices, '-chardev', "socket,id=serial$i,path=$socket,server,nowait";
push @$devices, '-device', "isa-serial,chardev=serial$i";
} else {
die "no such serial device\n" if ! -c $path;
push @$devices, '-chardev', "tty,id=serial$i,path=$path";
push @$devices, '-device', "isa-serial,chardev=serial$i";
}
}
2011-08-23 09:47:04 +04:00
}
# parallel devices
for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
if (my $path = $conf->{"parallel$i"}) {
2011-09-12 14:26:00 +04:00
die "no such parallel device\n" if ! -c $path;
2013-08-14 17:55:01 +04:00
my $devtype = $path =~ m!^/dev/usb/lp! ? 'tty' : 'parport';
2013-08-14 16:22:24 +04:00
push @$devices, '-chardev', "$devtype,id=parallel$i,path=$path";
push @$devices, '-device', "isa-parallel,chardev=parallel$i";
}
2011-08-23 09:47:04 +04:00
}
my $vmname = $conf->{name} || "vm$vmid";
push @$cmd, '-name', $vmname;
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
my $sockets = 1;
$sockets = $conf->{smp} if $conf->{smp}; # old style - no longer iused
$sockets = $conf->{sockets} if $conf->{sockets};
my $cores = $conf->{cores} || 1;
my $maxcpus = $conf->{maxcpus} if $conf->{maxcpus};
2014-01-14 13:33:36 +04:00
if ($maxcpus) {
push @$cmd, '-smp', "cpus=$cores,maxcpus=$maxcpus";
2014-01-14 13:33:36 +04:00
} else {
push @$cmd, '-smp', "sockets=$sockets,cores=$cores";
}
2011-08-23 09:47:04 +04:00
push @$cmd, '-nodefaults';
2011-09-29 09:43:05 +04:00
my $bootorder = $conf->{boot} || $confdesc->{boot}->{default};
2011-12-07 14:54:31 +04:00
2011-12-08 14:41:58 +04:00
my $bootindex_hash = {};
my $i = 1;
foreach my $o (split(//, $bootorder)) {
$bootindex_hash->{$o} = $i*100;
$i++;
2012-01-27 12:35:26 +04:00
}
2011-12-07 14:54:31 +04:00
push @$cmd, '-boot', "menu=on";
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
push @$cmd, '-no-acpi' if defined($conf->{acpi}) && $conf->{acpi} == 0;
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
push @$cmd, '-no-reboot' if defined($conf->{reboot}) && $conf->{reboot} == 0;
2011-08-23 09:47:04 +04:00
push @$cmd, '-vga', $vga if $vga && $vga !~ m/^serial\d+$/; # for kvm 77 and later
2011-08-23 09:47:04 +04:00
# time drift fix
2011-09-15 11:11:27 +04:00
my $tdf = defined($conf->{tdf}) ? $conf->{tdf} : $defaults->{tdf};
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my $nokvm = defined($conf->{kvm}) && $conf->{kvm} == 0 ? 1 : 0;
my $useLocaltime = $conf->{localtime};
2011-08-23 09:47:04 +04:00
if (my $ost = $conf->{ostype}) {
# other, wxp, w2k, w2k3, w2k8, wvista, win7, win8, l24, l26, solaris
2011-08-23 09:47:04 +04:00
if ($ost =~ m/^w/) { # windows
$useLocaltime = 1 if !defined($conf->{localtime});
2011-08-23 09:47:04 +04:00
# use time drift fix when acpi is enabled
2011-09-15 11:11:27 +04:00
if (!(defined($conf->{acpi}) && $conf->{acpi} == 0)) {
$tdf = 1 if !defined($conf->{tdf});
2011-08-23 09:47:04 +04:00
}
}
if ($ost eq 'win7' || $ost eq 'win8' || $ost eq 'w2k8' ||
$ost eq 'wvista') {
push @$globalFlags, 'kvm-pit.lost_tick_policy=discard';
push @$cmd, '-no-hpet';
#push @$cpuFlags , 'hv_vapic" if !$nokvm; #fixme, my win2008R2 hang at boot with this
push @$cpuFlags , 'hv_spinlocks=0xffff' if !$nokvm;
}
if ($ost eq 'win7' || $ost eq 'win8') {
push @$cpuFlags , 'hv_relaxed' if !$nokvm;
}
2011-08-23 09:47:04 +04:00
}
push @$rtcFlags, 'driftfix=slew' if $tdf;
2011-09-12 13:03:14 +04:00
if ($nokvm) {
push @$machineFlags, 'accel=tcg';
2011-09-12 13:03:14 +04:00
} else {
die "No accelerator found!\n" if !$cpuinfo->{hvm};
}
2011-08-23 09:47:04 +04:00
my $machine_type = $forcemachine || $conf->{machine};
if ($machine_type) {
push @$machineFlags, "type=${machine_type}";
2013-06-05 11:18:23 +04:00
}
if ($conf->{startdate}) {
push @$rtcFlags, "base=$conf->{startdate}";
} elsif ($useLocaltime) {
push @$rtcFlags, 'base=localtime';
}
2011-08-23 09:47:04 +04:00
my $cpu = $nokvm ? "qemu64" : "kvm64";
$cpu = $conf->{cpu} if $conf->{cpu};
push @$cpuFlags , '+lahf_lm' if $cpu eq 'kvm64';
push @$cpuFlags , '+x2apic' if !$nokvm && $conf->{ostype} ne 'solaris';
push @$cpuFlags , '-x2apic' if $conf->{ostype} eq 'solaris';
push @$cpuFlags, '+sep' if $cpu eq 'kvm64' || $cpu eq 'kvm32';
$cpu .= "," . join(',', @$cpuFlags) if scalar(@$cpuFlags);
# Note: enforce needs kernel 3.10, so we do not use it for now
# push @$cmd, '-cpu', "$cpu,enforce";
push @$cmd, '-cpu', $cpu;
2011-08-23 09:47:04 +04:00
push @$cmd, '-S' if $conf->{freeze};
# set keyboard layout
my $kb = $conf->{keyboard} || $defaults->{keyboard};
push @$cmd, '-k', $kb if $kb;
# enable sound
#my $soundhw = $conf->{soundhw} || $defaults->{soundhw};
#push @$cmd, '-soundhw', 'es1370';
#push @$cmd, '-soundhw', $soundhw if $soundhw;
2012-09-04 08:31:44 +04:00
if($conf->{agent}) {
my $qgasocket = qga_socket($vmid);
my $pciaddr = print_pci_addr("qga0", $bridges);
push @$devices, '-chardev', "socket,path=$qgasocket,server,nowait,id=qga0";
push @$devices, '-device', "virtio-serial,id=qga0$pciaddr";
push @$devices, '-device', 'virtserialport,chardev=qga0,name=org.qemu.guest_agent.0';
}
my $spice_port;
2013-10-02 11:11:57 +04:00
if ($qxlnum) {
if ($qxlnum > 1) {
if ($conf->{ostype} && $conf->{ostype} =~ m/^w/){
for(my $i = 1; $i < $qxlnum; $i++){
my $pciaddr = print_pci_addr("vga$i", $bridges);
push @$cmd, '-device', "qxl,id=vga$i,ram_size=67108864,vram_size=33554432$pciaddr";
}
} else {
# assume other OS works like Linux
push @$cmd, '-global', 'qxl-vga.ram_size=134217728';
push @$cmd, '-global', 'qxl-vga.vram_size=67108864';
}
}
my $pciaddr = print_pci_addr("spice", $bridges);
$spice_port = PVE::Tools::next_spice_port();
push @$cmd, '-spice', "tls-port=${spice_port},addr=127.0.0.1,tls-ciphers=DES-CBC3-SHA,seamless-migration=on";
push @$cmd, '-device', "virtio-serial,id=spice$pciaddr";
push @$cmd, '-chardev', "spicevmc,id=vdagent,name=vdagent";
push @$cmd, '-device', "virtserialport,chardev=vdagent,name=com.redhat.spice.0";
}
# enable balloon by default, unless explicitly disabled
if (!defined($conf->{balloon}) || $conf->{balloon}) {
$pciaddr = print_pci_addr("balloon0", $bridges);
push @$devices, '-device', "virtio-balloon-pci,id=balloon0$pciaddr";
}
2011-08-23 09:47:04 +04:00
2011-09-08 13:39:56 +04:00
if ($conf->{watchdog}) {
my $wdopts = parse_watchdog($conf->{watchdog});
$pciaddr = print_pci_addr("watchdog", $bridges);
my $watchdog = $wdopts->{model} || 'i6300esb';
push @$devices, '-device', "$watchdog$pciaddr";
push @$devices, '-watchdog-action', $wdopts->{action} if $wdopts->{action};
2011-09-08 13:39:56 +04:00
}
2011-08-23 09:47:04 +04:00
my $vollist = [];
my $scsicontroller = {};
my $ahcicontroller = {};
my $scsihw = defined($conf->{scsihw}) ? $conf->{scsihw} : $defaults->{scsihw};
2011-08-23 09:47:04 +04:00
foreach_drive($conf, sub {
my ($ds, $drive) = @_;
if (PVE::Storage::parse_volume_id($drive->{file}, 1)) {
2011-08-23 09:47:04 +04:00
push @$vollist, $drive->{file};
}
2012-01-27 12:35:26 +04:00
2011-08-23 09:47:04 +04:00
$use_virtio = 1 if $ds =~ m/^virtio/;
2011-12-07 14:54:31 +04:00
if (drive_is_cdrom ($drive)) {
if ($bootindex_hash->{d}) {
$drive->{bootindex} = $bootindex_hash->{d};
$bootindex_hash->{d} += 1;
}
} else {
if ($bootindex_hash->{c}) {
$drive->{bootindex} = $bootindex_hash->{c} if $conf->{bootdisk} && ($conf->{bootdisk} eq $ds);
$bootindex_hash->{c} += 1;
}
}
if ($drive->{interface} eq 'scsi') {
my $maxdev = ($scsihw !~ m/^lsi/) ? 256 : 7;
my $controller = int($drive->{index} / $maxdev);
$pciaddr = print_pci_addr("scsihw$controller", $bridges);
push @$devices, '-device', "$scsihw,id=scsihw$controller$pciaddr" if !$scsicontroller->{$controller};
$scsicontroller->{$controller}=1;
}
2011-12-07 14:54:31 +04:00
if ($drive->{interface} eq 'sata') {
my $controller = int($drive->{index} / $MAX_SATA_DISKS);
$pciaddr = print_pci_addr("ahci$controller", $bridges);
push @$devices, '-device', "ahci,id=ahci$controller,multifunction=on$pciaddr" if !$ahcicontroller->{$controller};
$ahcicontroller->{$controller}=1;
}
push @$devices, '-drive',print_drive_full($storecfg, $vmid, $drive);
push @$devices, '-device',print_drivedevice_full($storecfg, $conf, $vmid, $drive, $bridges);
2011-08-23 09:47:04 +04:00
});
push @$cmd, '-m', $conf->{memory} || $defaults->{memory};
2011-09-12 14:26:00 +04:00
for (my $i = 0; $i < $MAX_NETS; $i++) {
next if !$conf->{"net$i"};
my $d = parse_net($conf->{"net$i"});
next if !$d;
2011-08-23 09:47:04 +04:00
$use_virtio = 1 if $d->{model} eq 'virtio';
2011-08-23 09:47:04 +04:00
if ($bootindex_hash->{n}) {
$d->{bootindex} = $bootindex_hash->{n};
$bootindex_hash->{n} += 1;
}
2011-08-23 09:47:04 +04:00
my $netdevfull = print_netdev_full($vmid,$conf,$d,"net$i");
push @$devices, '-netdev', $netdevfull;
my $netdevicefull = print_netdevice_full($vmid,$conf,$d,"net$i",$bridges);
push @$devices, '-device', $netdevicefull;
}
2011-08-23 09:47:04 +04:00
#bridges
while (my ($k, $v) = each %$bridges) {
$pciaddr = print_pci_addr("pci.$k");
unshift @$devices, '-device', "pci-bridge,id=pci.$k,chassis_nr=$k$pciaddr" if $k > 0;
2011-09-12 14:26:00 +04:00
}
2011-08-23 09:47:04 +04:00
# hack: virtio with fairsched is unreliable, so we do not use fairsched
# when the VM uses virtio devices.
2011-09-12 14:26:00 +04:00
if (!$use_virtio && $have_ovz) {
2011-09-15 11:11:27 +04:00
my $cpuunits = defined($conf->{cpuunits}) ?
2011-08-23 09:47:04 +04:00
$conf->{cpuunits} : $defaults->{cpuunits};
push @$cmd, '-cpuunits', $cpuunits if $cpuunits;
# fixme: cpulimit is currently ignored
#push @$cmd, '-cpulimit', $conf->{cpulimit} if $conf->{cpulimit};
}
# add custom args
if ($conf->{args}) {
2011-10-25 14:19:36 +04:00
my $aa = PVE::Tools::split_args($conf->{args});
2011-08-23 09:47:04 +04:00
push @$cmd, @$aa;
}
push @$cmd, @$devices;
push @$cmd, '-rtc', join(',', @$rtcFlags)
if scalar(@$rtcFlags);
push @$cmd, '-machine', join(',', @$machineFlags)
if scalar(@$machineFlags);
push @$cmd, '-global', join(',', @$globalFlags)
if scalar(@$globalFlags);
return wantarray ? ($cmd, $vollist, $spice_port) : $cmd;
2011-08-23 09:47:04 +04:00
}
2011-09-12 14:26:00 +04:00
2011-08-23 09:47:04 +04:00
sub vnc_socket {
my ($vmid) = @_;
return "${var_run_tmpdir}/$vmid.vnc";
}
sub spice_port {
my ($vmid) = @_;
my $res = vm_mon_cmd($vmid, 'query-spice');
return $res->{'tls-port'} || $res->{'port'} || die "no spice port\n";
}
sub qmp_socket {
my ($vmid) = @_;
return "${var_run_tmpdir}/$vmid.qmp";
}
sub qga_socket {
my ($vmid) = @_;
return "${var_run_tmpdir}/$vmid.qga";
}
2011-08-23 09:47:04 +04:00
sub pidfile_name {
my ($vmid) = @_;
return "${var_run_tmpdir}/$vmid.pid";
}
sub vm_devices_list {
my ($vmid) = @_;
2012-07-13 10:42:13 +04:00
my $res = vm_mon_cmd($vmid, 'query-pci');
my $devices = {};
foreach my $pcibus (@$res) {
foreach my $device (@{$pcibus->{devices}}) {
next if !$device->{'qdev_id'};
$devices->{$device->{'qdev_id'}} = $device;
2011-10-11 15:28:50 +04:00
}
}
2011-10-11 15:28:50 +04:00
return $devices;
}
sub vm_deviceplug {
my ($storecfg, $conf, $vmid, $deviceid, $device) = @_;
return 1 if !check_running($vmid);
if ($deviceid eq 'tablet') {
my $devicefull = "usb-tablet,id=tablet,bus=uhci.0,port=1";
qemu_deviceadd($vmid, $devicefull);
return 1;
}
return 1 if !$conf->{hotplug};
2012-01-27 12:35:26 +04:00
my $devices_list = vm_devices_list($vmid);
return 1 if defined($devices_list->{$deviceid});
qemu_bridgeadd($storecfg, $conf, $vmid, $deviceid); #add bridge if we need it for the device
if ($deviceid =~ m/^(virtio)(\d+)$/) {
return undef if !qemu_driveadd($storecfg, $vmid, $device);
my $devicefull = print_drivedevice_full($storecfg, $conf, $vmid, $device);
qemu_deviceadd($vmid, $devicefull);
if(!qemu_deviceaddverify($vmid, $deviceid)) {
qemu_drivedel($vmid, $deviceid);
return undef;
}
}
if ($deviceid =~ m/^(scsihw)(\d+)$/) {
my $scsihw = defined($conf->{scsihw}) ? $conf->{scsihw} : "lsi";
my $pciaddr = print_pci_addr($deviceid);
my $devicefull = "$scsihw,id=$deviceid$pciaddr";
qemu_deviceadd($vmid, $devicefull);
return undef if(!qemu_deviceaddverify($vmid, $deviceid));
}
if ($deviceid =~ m/^(scsi)(\d+)$/) {
return 1 if ($conf->{scsihw} && ($conf->{scsihw} !~ m/^lsi/)); #virtio-scsi not yet support hotplug
return undef if !qemu_findorcreatescsihw($storecfg,$conf, $vmid, $device);
return undef if !qemu_driveadd($storecfg, $vmid, $device);
my $devicefull = print_drivedevice_full($storecfg, $conf, $vmid, $device);
if(!qemu_deviceadd($vmid, $devicefull)) {
qemu_drivedel($vmid, $deviceid);
return undef;
}
}
if ($deviceid =~ m/^(net)(\d+)$/) {
return undef if !qemu_netdevadd($vmid, $conf, $device, $deviceid);
my $netdevicefull = print_netdevice_full($vmid, $conf, $device, $deviceid);
qemu_deviceadd($vmid, $netdevicefull);
if(!qemu_deviceaddverify($vmid, $deviceid)) {
qemu_netdevdel($vmid, $deviceid);
return undef;
}
}
if ($deviceid =~ m/^(pci\.)(\d+)$/) {
my $bridgeid = $2;
my $pciaddr = print_pci_addr($deviceid);
my $devicefull = "pci-bridge,id=pci.$bridgeid,chassis_nr=$bridgeid$pciaddr";
qemu_deviceadd($vmid, $devicefull);
return undef if !qemu_deviceaddverify($vmid, $deviceid);
}
return 1;
}
sub vm_deviceunplug {
my ($vmid, $conf, $deviceid) = @_;
return 1 if !check_running ($vmid);
if ($deviceid eq 'tablet') {
qemu_devicedel($vmid, $deviceid);
return 1;
}
return 1 if !$conf->{hotplug};
my $devices_list = vm_devices_list($vmid);
return 1 if !defined($devices_list->{$deviceid});
die "can't unplug bootdisk" if $conf->{bootdisk} && $conf->{bootdisk} eq $deviceid;
if ($deviceid =~ m/^(virtio)(\d+)$/) {
qemu_devicedel($vmid, $deviceid);
return undef if !qemu_devicedelverify($vmid, $deviceid);
return undef if !qemu_drivedel($vmid, $deviceid);
}
if ($deviceid =~ m/^(lsi)(\d+)$/) {
return undef if !qemu_devicedel($vmid, $deviceid);
}
if ($deviceid =~ m/^(scsi)(\d+)$/) {
return undef if !qemu_devicedel($vmid, $deviceid);
return undef if !qemu_drivedel($vmid, $deviceid);
}
if ($deviceid =~ m/^(net)(\d+)$/) {
qemu_devicedel($vmid, $deviceid);
return undef if !qemu_devicedelverify($vmid, $deviceid);
return undef if !qemu_netdevdel($vmid, $deviceid);
}
return 1;
}
sub qemu_deviceadd {
my ($vmid, $devicefull) = @_;
$devicefull = "driver=".$devicefull;
my %options = split(/[=,]/, $devicefull);
vm_mon_cmd($vmid, "device_add" , %options);
return 1;
}
2012-01-27 12:35:26 +04:00
sub qemu_devicedel {
my($vmid, $deviceid) = @_;
my $ret = vm_mon_cmd($vmid, "device_del", id => $deviceid);
return 1;
}
sub qemu_driveadd {
my($storecfg, $vmid, $device) = @_;
my $drive = print_drive_full($storecfg, $vmid, $device);
my $ret = vm_human_monitor_command($vmid, "drive_add auto $drive");
# If the command succeeds qemu prints: "OK"
if ($ret !~ m/OK/s) {
syslog("err", "adding drive failed: $ret");
return undef;
}
return 1;
}
2012-01-27 12:35:26 +04:00
sub qemu_drivedel {
my($vmid, $deviceid) = @_;
my $ret = vm_human_monitor_command($vmid, "drive_del drive-$deviceid");
$ret =~ s/^\s+//;
if ($ret =~ m/Device \'.*?\' not found/s) {
2012-01-27 12:35:26 +04:00
# NB: device not found errors mean the drive was auto-deleted and we ignore the error
}
elsif ($ret ne "") {
syslog("err", "deleting drive $deviceid failed : $ret");
return undef;
}
return 1;
}
sub qemu_deviceaddverify {
my ($vmid,$deviceid) = @_;
for (my $i = 0; $i <= 5; $i++) {
my $devices_list = vm_devices_list($vmid);
return 1 if defined($devices_list->{$deviceid});
sleep 1;
2012-01-27 12:35:26 +04:00
}
syslog("err", "error on hotplug device $deviceid");
return undef;
}
2012-01-27 12:35:26 +04:00
sub qemu_devicedelverify {
my ($vmid,$deviceid) = @_;
#need to verify the device is correctly remove as device_del is async and empty return is not reliable
for (my $i = 0; $i <= 5; $i++) {
my $devices_list = vm_devices_list($vmid);
return 1 if !defined($devices_list->{$deviceid});
sleep 1;
2012-01-27 12:35:26 +04:00
}
syslog("err", "error on hot-unplugging device $deviceid");
return undef;
}
sub qemu_findorcreatescsihw {
my ($storecfg, $conf, $vmid, $device) = @_;
my $maxdev = ($conf->{scsihw} && ($conf->{scsihw} !~ m/^lsi/)) ? 256 : 7;
my $controller = int($device->{index} / $maxdev);
my $scsihwid="scsihw$controller";
my $devices_list = vm_devices_list($vmid);
if(!defined($devices_list->{$scsihwid})) {
return undef if !vm_deviceplug($storecfg, $conf, $vmid, $scsihwid);
}
return 1;
}
sub qemu_bridgeadd {
my ($storecfg, $conf, $vmid, $device) = @_;
my $bridges = {};
my $bridgeid = undef;
print_pci_addr($device, $bridges);
while (my ($k, $v) = each %$bridges) {
$bridgeid = $k;
}
return if !$bridgeid || $bridgeid < 1;
my $bridge = "pci.$bridgeid";
my $devices_list = vm_devices_list($vmid);
if(!defined($devices_list->{$bridge})) {
return undef if !vm_deviceplug($storecfg, $conf, $vmid, $bridge);
}
return 1;
}
sub qemu_netdevadd {
my ($vmid, $conf, $device, $deviceid) = @_;
my $netdev = print_netdev_full($vmid, $conf, $device, $deviceid);
my %options = split(/[=,]/, $netdev);
vm_mon_cmd($vmid, "netdev_add", %options);
return 1;
}
sub qemu_netdevdel {
my ($vmid, $deviceid) = @_;
vm_mon_cmd($vmid, "netdev_del", id => $deviceid);
return 1;
}
sub qemu_cpu_hotplug {
my ($vmid, $conf, $cores) = @_;
die "new cores config is not defined" if !$cores;
2014-01-14 13:33:36 +04:00
die "you can't add more cores than maxcpus"
if $conf->{maxcpus} && ($cores > $conf->{maxcpus});
return if !check_running($vmid);
my $currentcores = $conf->{cores} if $conf->{cores};
die "current cores is not defined" if !$currentcores;
die "maxcpus is not defined" if !$conf->{maxcpus};
2014-01-14 13:33:36 +04:00
raise_param_exc({ 'cores' => "online cpu unplug is not yet possible" })
if($cores < $currentcores);
my $currentrunningcores = vm_mon_cmd($vmid, "query-cpus");
2014-01-14 13:33:36 +04:00
raise_param_exc({ 'cores' => "cores number if running vm is different than configuration" })
if scalar (@{$currentrunningcores}) != $currentcores;
2014-01-14 13:33:36 +04:00
for(my $i = $currentcores; $i < $cores; $i++) {
vm_mon_cmd($vmid, "cpu-add", id => int($i));
}
}
sub qemu_block_set_io_throttle {
my ($vmid, $deviceid, $bps, $bps_rd, $bps_wr, $iops, $iops_rd, $iops_wr) = @_;
return if !check_running($vmid) ;
vm_mon_cmd($vmid, "block_set_io_throttle", device => $deviceid, bps => int($bps), bps_rd => int($bps_rd), bps_wr => int($bps_wr), iops => int($iops), iops_rd => int($iops_rd), iops_wr => int($iops_wr));
}
2012-08-23 09:36:48 +04:00
# old code, only used to shutdown old VM after update
2012-08-17 12:34:39 +04:00
sub __read_avail {
my ($fh, $timeout) = @_;
my $sel = new IO::Select;
$sel->add($fh);
my $res = '';
my $buf;
my @ready;
while (scalar (@ready = $sel->can_read($timeout))) {
my $count;
if ($count = $fh->sysread($buf, 8192)) {
if ($buf =~ /^(.*)\(qemu\) $/s) {
$res .= $1;
last;
} else {
$res .= $buf;
}
} else {
if (!defined($count)) {
die "$!\n";
}
last;
}
}
die "monitor read timeout\n" if !scalar(@ready);
2012-08-23 09:36:48 +04:00
2012-08-17 12:34:39 +04:00
return $res;
}
2012-08-23 09:36:48 +04:00
# old code, only used to shutdown old VM after update
2012-08-17 12:34:39 +04:00
sub vm_monitor_command {
my ($vmid, $cmdstr, $nocheck) = @_;
2012-08-23 09:36:48 +04:00
2012-08-17 12:34:39 +04:00
my $res;
eval {
die "VM $vmid not running\n" if !check_running($vmid, $nocheck);
my $sname = "${var_run_tmpdir}/$vmid.mon";
my $sock = IO::Socket::UNIX->new( Peer => $sname ) ||
die "unable to connect to VM $vmid socket - $!\n";
my $timeout = 3;
# hack: migrate sometime blocks the monitor (when migrate_downtime
# is set)
if ($cmdstr =~ m/^(info\s+migrate|migrate\s)/) {
$timeout = 60*60; # 1 hour
}
# read banner;
my $data = __read_avail($sock, $timeout);
if ($data !~ m/^QEMU\s+(\S+)\s+monitor\s/) {
die "got unexpected qemu monitor banner\n";
}
my $sel = new IO::Select;
$sel->add($sock);
if (!scalar(my @ready = $sel->can_write($timeout))) {
die "monitor write error - timeout";
}
my $fullcmd = "$cmdstr\r";
# syslog('info', "VM $vmid monitor command: $cmdstr");
my $b;
if (!($b = $sock->syswrite($fullcmd)) || ($b != length($fullcmd))) {
die "monitor write error - $!";
}
return if ($cmdstr eq 'q') || ($cmdstr eq 'quit');
$timeout = 20;
if ($cmdstr =~ m/^(info\s+migrate|migrate\s)/) {
$timeout = 60*60; # 1 hour
} elsif ($cmdstr =~ m/^(eject|change)/) {
$timeout = 60; # note: cdrom mount command is slow
}
if ($res = __read_avail($sock, $timeout)) {
my @lines = split("\r?\n", $res);
2012-08-23 09:36:48 +04:00
2012-08-17 12:34:39 +04:00
shift @lines if $lines[0] !~ m/^unknown command/; # skip echo
2012-08-23 09:36:48 +04:00
2012-08-17 12:34:39 +04:00
$res = join("\n", @lines);
$res .= "\n";
}
};
my $err = $@;
if ($err) {
syslog("err", "VM $vmid monitor command failed - $err");
die $err;
}
2012-08-23 09:36:48 +04:00
2012-08-17 12:34:39 +04:00
return $res;
}
sub qemu_block_resize {
my ($vmid, $deviceid, $storecfg, $volid, $size) = @_;
my $running = check_running($vmid);
return if !PVE::Storage::volume_resize($storecfg, $volid, $size, $running);
return if !$running;
vm_mon_cmd($vmid, "block_resize", device => $deviceid, size => int($size));
}
sub qemu_volume_snapshot {
my ($vmid, $deviceid, $storecfg, $volid, $snap) = @_;
my $running = check_running($vmid);
return if !PVE::Storage::volume_snapshot($storecfg, $volid, $snap, $running);
return if !$running;
vm_mon_cmd($vmid, "snapshot-drive", device => $deviceid, name => $snap);
}
sub qemu_volume_snapshot_delete {
my ($vmid, $deviceid, $storecfg, $volid, $snap) = @_;
my $running = check_running($vmid);
return if !PVE::Storage::volume_snapshot_delete($storecfg, $volid, $snap, $running);
return if !$running;
vm_mon_cmd($vmid, "delete-drive-snapshot", device => $deviceid, name => $snap);
}
sub qga_freezefs {
my ($vmid) = @_;
#need to impplement call to qemu-ga
}
sub qga_unfreezefs {
my ($vmid) = @_;
#need to impplement call to qemu-ga
}
2014-01-14 13:33:36 +04:00
sub set_migration_caps {
my ($vmid) = @_;
2014-01-10 16:09:19 +04:00
my $cap_ref = [];
my $enabled_cap = {
2014-01-10 16:09:19 +04:00
"auto-converge" => 1,
"xbzrle" => 0,
"x-rdma-pin-all" => 0,
"zero-blocks" => 0,
};
2014-01-10 16:09:19 +04:00
my $supported_capabilities = vm_mon_cmd_nocheck($vmid, "query-migrate-capabilities");
2014-01-10 16:09:19 +04:00
for my $supported_capability (@$supported_capabilities) {
push @$cap_ref, {
capability => $supported_capability->{capability},
2014-02-10 11:03:50 +04:00
state => $enabled_cap->{$supported_capability->{capability}} ? JSON::true : JSON::false,
};
}
2014-01-10 16:09:19 +04:00
vm_mon_cmd_nocheck($vmid, "migrate-set-capabilities", capabilities => $cap_ref);
}
2011-08-23 09:47:04 +04:00
sub vm_start {
my ($storecfg, $vmid, $statefile, $skiplock, $migratedfrom, $paused, $forcemachine, $spice_ticket) = @_;
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
lock_config($vmid, sub {
my $conf = load_config($vmid, $migratedfrom);
2011-08-23 09:47:04 +04:00
2013-02-15 14:08:28 +04:00
die "you can't start a vm if it's a template\n" if is_template($conf);
2011-09-15 11:11:27 +04:00
check_lock($conf) if !$skiplock;
2011-08-23 09:47:04 +04:00
die "VM $vmid already running\n" if check_running($vmid, undef, $migratedfrom);
2011-08-23 09:47:04 +04:00
my $defaults = load_defaults();
# set environment variable useful inside network script
$ENV{PVE_MIGRATED_FROM} = $migratedfrom if $migratedfrom;
my ($cmd, $vollist, $spice_port) = config_to_command($storecfg, $vmid, $conf, $defaults, $forcemachine);
2011-08-23 09:47:04 +04:00
my $migrate_port = 0;
qemu-server: add support for unsecure migration (setting in datacenter.cfg) This patch adds support for unsecure migration using a direct tcp connection KVM <=> KVM instead of an extra SSH tunnel. Without ssh the limit is just the bandwith and no longer the CPU / one single core. You can enable this by adding: migration_unsecure: 1 to datacenter.cfg Examples using qemu 1.4 as migration with qemu 1.3 still does not work for me: current default with SSH Tunnel VM uses 2GB mem: Dec 27 21:10:32 starting migration of VM 105 to node 'cloud1-1202' (10.255.0.20) Dec 27 21:10:32 copying disk images Dec 27 21:10:32 starting VM 105 on remote node 'cloud1-1202' Dec 27 21:10:35 starting ssh migration tunnel Dec 27 21:10:36 starting online/live migration on localhost:60000 Dec 27 21:10:36 migrate_set_speed: 8589934592 Dec 27 21:10:36 migrate_set_downtime: 1 Dec 27 21:10:38 migration status: active (transferred 152481002, remaining 1938546688), total 2156396544) , expected downtime 0 Dec 27 21:10:40 migration status: active (transferred 279836995, remaining 1811140608), total 2156396544) , expected downtime 0 Dec 27 21:10:42 migration status: active (transferred 421265271, remaining 1669840896), total 2156396544) , expected downtime 0 Dec 27 21:10:44 migration status: active (transferred 570987974, remaining 1520152576), total 2156396544) , expected downtime 0 Dec 27 21:10:46 migration status: active (transferred 721469404, remaining 1369939968), total 2156396544) , expected downtime 0 Dec 27 21:10:48 migration status: active (transferred 875595258, remaining 1216057344), total 2156396544) , expected downtime 0 Dec 27 21:10:50 migration status: active (transferred 1034654822, remaining 1056931840), total 2156396544) , expected downtime 0 Dec 27 21:10:54 migration status: active (transferred 1176288424, remaining 915369984), total 2156396544) , expected downtime 0 Dec 27 21:10:56 migration status: active (transferred 1339734759, remaining 752050176), total 2156396544) , expected downtime 0 Dec 27 21:10:58 migration status: active (transferred 1503743261, remaining 588206080), total 2156396544) , expected downtime 0 Dec 27 21:11:02 migration status: active (transferred 1645097827, remaining 446906368), total 2156396544) , expected downtime 0 Dec 27 21:11:04 migration status: active (transferred 1810562934, remaining 281751552), total 2156396544) , expected downtime 0 Dec 27 21:11:06 migration status: active (transferred 1964377505, remaining 126033920), total 2156396544) , expected downtime 0 Dec 27 21:11:08 migration status: active (transferred 2077930417, remaining 0), total 2156396544) , expected downtime 0 Dec 27 21:11:09 migration speed: 62.06 MB/s - downtime 37 ms Dec 27 21:11:09 migration status: completed Dec 27 21:11:13 migration finished successfuly (duration 00:00:41) TASK OK with unsecure migration without SSH Tunnel: Dec 27 22:43:14 starting migration of VM 105 to node 'cloud1-1203' (10.255.0.22) Dec 27 22:43:14 copying disk images Dec 27 22:43:14 starting VM 105 on remote node 'cloud1-1203' Dec 27 22:43:17 starting online/live migration on 10.255.0.22:60000 Dec 27 22:43:17 migrate_set_speed: 8589934592 Dec 27 22:43:17 migrate_set_downtime: 1 Dec 27 22:43:19 migration speed: 1024.00 MB/s - downtime 1100 ms Dec 27 22:43:19 migration status: completed Dec 27 22:43:22 migration finished successfuly (duration 00:00:09) TASK OK
2013-07-26 13:22:58 +04:00
my $migrate_uri;
2011-08-23 09:47:04 +04:00
if ($statefile) {
if ($statefile eq 'tcp') {
qemu-server: add support for unsecure migration (setting in datacenter.cfg) This patch adds support for unsecure migration using a direct tcp connection KVM <=> KVM instead of an extra SSH tunnel. Without ssh the limit is just the bandwith and no longer the CPU / one single core. You can enable this by adding: migration_unsecure: 1 to datacenter.cfg Examples using qemu 1.4 as migration with qemu 1.3 still does not work for me: current default with SSH Tunnel VM uses 2GB mem: Dec 27 21:10:32 starting migration of VM 105 to node 'cloud1-1202' (10.255.0.20) Dec 27 21:10:32 copying disk images Dec 27 21:10:32 starting VM 105 on remote node 'cloud1-1202' Dec 27 21:10:35 starting ssh migration tunnel Dec 27 21:10:36 starting online/live migration on localhost:60000 Dec 27 21:10:36 migrate_set_speed: 8589934592 Dec 27 21:10:36 migrate_set_downtime: 1 Dec 27 21:10:38 migration status: active (transferred 152481002, remaining 1938546688), total 2156396544) , expected downtime 0 Dec 27 21:10:40 migration status: active (transferred 279836995, remaining 1811140608), total 2156396544) , expected downtime 0 Dec 27 21:10:42 migration status: active (transferred 421265271, remaining 1669840896), total 2156396544) , expected downtime 0 Dec 27 21:10:44 migration status: active (transferred 570987974, remaining 1520152576), total 2156396544) , expected downtime 0 Dec 27 21:10:46 migration status: active (transferred 721469404, remaining 1369939968), total 2156396544) , expected downtime 0 Dec 27 21:10:48 migration status: active (transferred 875595258, remaining 1216057344), total 2156396544) , expected downtime 0 Dec 27 21:10:50 migration status: active (transferred 1034654822, remaining 1056931840), total 2156396544) , expected downtime 0 Dec 27 21:10:54 migration status: active (transferred 1176288424, remaining 915369984), total 2156396544) , expected downtime 0 Dec 27 21:10:56 migration status: active (transferred 1339734759, remaining 752050176), total 2156396544) , expected downtime 0 Dec 27 21:10:58 migration status: active (transferred 1503743261, remaining 588206080), total 2156396544) , expected downtime 0 Dec 27 21:11:02 migration status: active (transferred 1645097827, remaining 446906368), total 2156396544) , expected downtime 0 Dec 27 21:11:04 migration status: active (transferred 1810562934, remaining 281751552), total 2156396544) , expected downtime 0 Dec 27 21:11:06 migration status: active (transferred 1964377505, remaining 126033920), total 2156396544) , expected downtime 0 Dec 27 21:11:08 migration status: active (transferred 2077930417, remaining 0), total 2156396544) , expected downtime 0 Dec 27 21:11:09 migration speed: 62.06 MB/s - downtime 37 ms Dec 27 21:11:09 migration status: completed Dec 27 21:11:13 migration finished successfuly (duration 00:00:41) TASK OK with unsecure migration without SSH Tunnel: Dec 27 22:43:14 starting migration of VM 105 to node 'cloud1-1203' (10.255.0.22) Dec 27 22:43:14 copying disk images Dec 27 22:43:14 starting VM 105 on remote node 'cloud1-1203' Dec 27 22:43:17 starting online/live migration on 10.255.0.22:60000 Dec 27 22:43:17 migrate_set_speed: 8589934592 Dec 27 22:43:17 migrate_set_downtime: 1 Dec 27 22:43:19 migration speed: 1024.00 MB/s - downtime 1100 ms Dec 27 22:43:19 migration status: completed Dec 27 22:43:22 migration finished successfuly (duration 00:00:09) TASK OK
2013-07-26 13:22:58 +04:00
my $localip = "localhost";
my $datacenterconf = PVE::Cluster::cfs_read_file('datacenter.cfg');
if ($datacenterconf->{migration_unsecure}) {
my $nodename = PVE::INotify::nodename();
$localip = PVE::Cluster::remote_node_ip($nodename, 1);
}
$migrate_port = PVE::Tools::next_migrate_port();
qemu-server: add support for unsecure migration (setting in datacenter.cfg) This patch adds support for unsecure migration using a direct tcp connection KVM <=> KVM instead of an extra SSH tunnel. Without ssh the limit is just the bandwith and no longer the CPU / one single core. You can enable this by adding: migration_unsecure: 1 to datacenter.cfg Examples using qemu 1.4 as migration with qemu 1.3 still does not work for me: current default with SSH Tunnel VM uses 2GB mem: Dec 27 21:10:32 starting migration of VM 105 to node 'cloud1-1202' (10.255.0.20) Dec 27 21:10:32 copying disk images Dec 27 21:10:32 starting VM 105 on remote node 'cloud1-1202' Dec 27 21:10:35 starting ssh migration tunnel Dec 27 21:10:36 starting online/live migration on localhost:60000 Dec 27 21:10:36 migrate_set_speed: 8589934592 Dec 27 21:10:36 migrate_set_downtime: 1 Dec 27 21:10:38 migration status: active (transferred 152481002, remaining 1938546688), total 2156396544) , expected downtime 0 Dec 27 21:10:40 migration status: active (transferred 279836995, remaining 1811140608), total 2156396544) , expected downtime 0 Dec 27 21:10:42 migration status: active (transferred 421265271, remaining 1669840896), total 2156396544) , expected downtime 0 Dec 27 21:10:44 migration status: active (transferred 570987974, remaining 1520152576), total 2156396544) , expected downtime 0 Dec 27 21:10:46 migration status: active (transferred 721469404, remaining 1369939968), total 2156396544) , expected downtime 0 Dec 27 21:10:48 migration status: active (transferred 875595258, remaining 1216057344), total 2156396544) , expected downtime 0 Dec 27 21:10:50 migration status: active (transferred 1034654822, remaining 1056931840), total 2156396544) , expected downtime 0 Dec 27 21:10:54 migration status: active (transferred 1176288424, remaining 915369984), total 2156396544) , expected downtime 0 Dec 27 21:10:56 migration status: active (transferred 1339734759, remaining 752050176), total 2156396544) , expected downtime 0 Dec 27 21:10:58 migration status: active (transferred 1503743261, remaining 588206080), total 2156396544) , expected downtime 0 Dec 27 21:11:02 migration status: active (transferred 1645097827, remaining 446906368), total 2156396544) , expected downtime 0 Dec 27 21:11:04 migration status: active (transferred 1810562934, remaining 281751552), total 2156396544) , expected downtime 0 Dec 27 21:11:06 migration status: active (transferred 1964377505, remaining 126033920), total 2156396544) , expected downtime 0 Dec 27 21:11:08 migration status: active (transferred 2077930417, remaining 0), total 2156396544) , expected downtime 0 Dec 27 21:11:09 migration speed: 62.06 MB/s - downtime 37 ms Dec 27 21:11:09 migration status: completed Dec 27 21:11:13 migration finished successfuly (duration 00:00:41) TASK OK with unsecure migration without SSH Tunnel: Dec 27 22:43:14 starting migration of VM 105 to node 'cloud1-1203' (10.255.0.22) Dec 27 22:43:14 copying disk images Dec 27 22:43:14 starting VM 105 on remote node 'cloud1-1203' Dec 27 22:43:17 starting online/live migration on 10.255.0.22:60000 Dec 27 22:43:17 migrate_set_speed: 8589934592 Dec 27 22:43:17 migrate_set_downtime: 1 Dec 27 22:43:19 migration speed: 1024.00 MB/s - downtime 1100 ms Dec 27 22:43:19 migration status: completed Dec 27 22:43:22 migration finished successfuly (duration 00:00:09) TASK OK
2013-07-26 13:22:58 +04:00
$migrate_uri = "tcp:${localip}:${migrate_port}";
push @$cmd, '-incoming', $migrate_uri;
push @$cmd, '-S';
2011-08-23 09:47:04 +04:00
} else {
push @$cmd, '-loadstate', $statefile;
2011-08-23 09:47:04 +04:00
}
} elsif ($paused) {
push @$cmd, '-S';
2011-08-23 09:47:04 +04:00
}
# host pci devices
for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
my $d = parse_hostpci($conf->{"hostpci$i"});
next if !$d;
my $info = pci_device_info("0000:$d->{pciid}");
die "IOMMU not present\n" if !check_iommu_support();
die "no pci device info for device '$d->{pciid}'\n" if !$info;
die "can't unbind pci device '$d->{pciid}'\n" if !pci_dev_bind_to_stub($info);
die "can't reset pci device '$d->{pciid}'\n" if !pci_dev_reset($info);
}
2011-08-23 09:47:04 +04:00
PVE::Storage::activate_volumes($storecfg, $vollist);
eval { run_command($cmd, timeout => $statefile ? undef : 30,
umask => 0077); };
2011-08-23 09:47:04 +04:00
my $err = $@;
die "start failed: $err" if $err;
2011-08-23 09:47:04 +04:00
qemu-server: add support for unsecure migration (setting in datacenter.cfg) This patch adds support for unsecure migration using a direct tcp connection KVM <=> KVM instead of an extra SSH tunnel. Without ssh the limit is just the bandwith and no longer the CPU / one single core. You can enable this by adding: migration_unsecure: 1 to datacenter.cfg Examples using qemu 1.4 as migration with qemu 1.3 still does not work for me: current default with SSH Tunnel VM uses 2GB mem: Dec 27 21:10:32 starting migration of VM 105 to node 'cloud1-1202' (10.255.0.20) Dec 27 21:10:32 copying disk images Dec 27 21:10:32 starting VM 105 on remote node 'cloud1-1202' Dec 27 21:10:35 starting ssh migration tunnel Dec 27 21:10:36 starting online/live migration on localhost:60000 Dec 27 21:10:36 migrate_set_speed: 8589934592 Dec 27 21:10:36 migrate_set_downtime: 1 Dec 27 21:10:38 migration status: active (transferred 152481002, remaining 1938546688), total 2156396544) , expected downtime 0 Dec 27 21:10:40 migration status: active (transferred 279836995, remaining 1811140608), total 2156396544) , expected downtime 0 Dec 27 21:10:42 migration status: active (transferred 421265271, remaining 1669840896), total 2156396544) , expected downtime 0 Dec 27 21:10:44 migration status: active (transferred 570987974, remaining 1520152576), total 2156396544) , expected downtime 0 Dec 27 21:10:46 migration status: active (transferred 721469404, remaining 1369939968), total 2156396544) , expected downtime 0 Dec 27 21:10:48 migration status: active (transferred 875595258, remaining 1216057344), total 2156396544) , expected downtime 0 Dec 27 21:10:50 migration status: active (transferred 1034654822, remaining 1056931840), total 2156396544) , expected downtime 0 Dec 27 21:10:54 migration status: active (transferred 1176288424, remaining 915369984), total 2156396544) , expected downtime 0 Dec 27 21:10:56 migration status: active (transferred 1339734759, remaining 752050176), total 2156396544) , expected downtime 0 Dec 27 21:10:58 migration status: active (transferred 1503743261, remaining 588206080), total 2156396544) , expected downtime 0 Dec 27 21:11:02 migration status: active (transferred 1645097827, remaining 446906368), total 2156396544) , expected downtime 0 Dec 27 21:11:04 migration status: active (transferred 1810562934, remaining 281751552), total 2156396544) , expected downtime 0 Dec 27 21:11:06 migration status: active (transferred 1964377505, remaining 126033920), total 2156396544) , expected downtime 0 Dec 27 21:11:08 migration status: active (transferred 2077930417, remaining 0), total 2156396544) , expected downtime 0 Dec 27 21:11:09 migration speed: 62.06 MB/s - downtime 37 ms Dec 27 21:11:09 migration status: completed Dec 27 21:11:13 migration finished successfuly (duration 00:00:41) TASK OK with unsecure migration without SSH Tunnel: Dec 27 22:43:14 starting migration of VM 105 to node 'cloud1-1203' (10.255.0.22) Dec 27 22:43:14 copying disk images Dec 27 22:43:14 starting VM 105 on remote node 'cloud1-1203' Dec 27 22:43:17 starting online/live migration on 10.255.0.22:60000 Dec 27 22:43:17 migrate_set_speed: 8589934592 Dec 27 22:43:17 migrate_set_downtime: 1 Dec 27 22:43:19 migration speed: 1024.00 MB/s - downtime 1100 ms Dec 27 22:43:19 migration status: completed Dec 27 22:43:22 migration finished successfuly (duration 00:00:09) TASK OK
2013-07-26 13:22:58 +04:00
print "migration listens on $migrate_uri\n" if $migrate_uri;
2012-01-27 12:35:26 +04:00
2012-09-19 14:37:33 +04:00
if ($statefile && $statefile ne 'tcp') {
eval { vm_mon_cmd_nocheck($vmid, "cont"); };
2012-09-19 14:37:33 +04:00
warn $@ if $@;
}
if ($migratedfrom) {
eval {
PVE::QemuServer::set_migration_caps($vmid);
};
warn $@ if $@;
if ($spice_port) {
print "spice listens on port $spice_port\n";
if ($spice_ticket) {
PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "set_password", protocol => 'spice', password => $spice_ticket);
PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "expire_password", protocol => 'spice', time => "+30");
}
}
} else {
if (!$statefile && (!defined($conf->{balloon}) || $conf->{balloon})) {
vm_mon_cmd_nocheck($vmid, "balloon", value => $conf->{balloon}*1024*1024)
if $conf->{balloon};
vm_mon_cmd_nocheck($vmid, 'qom-set',
path => "machine/peripheral/balloon0",
property => "guest-stats-polling-interval",
value => 2);
}
}
2011-08-23 09:47:04 +04:00
});
}
sub vm_mon_cmd {
my ($vmid, $execute, %params) = @_;
2012-07-13 09:06:22 +04:00
my $cmd = { execute => $execute, arguments => \%params };
vm_qmp_command($vmid, $cmd);
}
sub vm_mon_cmd_nocheck {
my ($vmid, $execute, %params) = @_;
2012-07-13 09:06:22 +04:00
my $cmd = { execute => $execute, arguments => \%params };
vm_qmp_command($vmid, $cmd, 1);
}
sub vm_qmp_command {
my ($vmid, $cmd, $nocheck) = @_;
2012-05-30 14:08:33 +04:00
my $res;
2012-07-13 09:06:22 +04:00
my $timeout;
if ($cmd->{arguments} && $cmd->{arguments}->{timeout}) {
$timeout = $cmd->{arguments}->{timeout};
delete $cmd->{arguments}->{timeout};
}
eval {
die "VM $vmid not running\n" if !check_running($vmid, $nocheck);
my $sname = qmp_socket($vmid);
2012-08-23 09:36:48 +04:00
if (-e $sname) {
2012-08-17 12:34:39 +04:00
my $qmpclient = PVE::QMPClient->new();
$res = $qmpclient->cmd($vmid, $cmd, $timeout);
2012-08-17 12:34:39 +04:00
} elsif (-e "${var_run_tmpdir}/$vmid.mon") {
die "can't execute complex command on old monitor - stop/start your vm to fix the problem\n"
if scalar(%{$cmd->{arguments}});
vm_monitor_command($vmid, $cmd->{execute}, $nocheck);
} else {
die "unable to open monitor socket\n";
}
};
2012-07-13 09:06:22 +04:00
if (my $err = $@) {
syslog("err", "VM $vmid qmp command failed - $err");
die $err;
}
return $res;
}
sub vm_human_monitor_command {
my ($vmid, $cmdline) = @_;
my $res;
2012-08-23 09:36:48 +04:00
my $cmd = {
execute => 'human-monitor-command',
arguments => { 'command-line' => $cmdline},
};
return vm_qmp_command($vmid, $cmd);
}
2011-08-23 09:47:04 +04:00
sub vm_commandline {
my ($storecfg, $vmid) = @_;
2011-09-15 11:11:27 +04:00
my $conf = load_config($vmid);
2011-08-23 09:47:04 +04:00
my $defaults = load_defaults();
2011-09-15 11:11:27 +04:00
my $cmd = config_to_command($storecfg, $vmid, $conf, $defaults);
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
return join(' ', @$cmd);
2011-08-23 09:47:04 +04:00
}
sub vm_reset {
my ($vmid, $skiplock) = @_;
2011-09-15 11:11:27 +04:00
lock_config($vmid, sub {
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my $conf = load_config($vmid);
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
check_lock($conf) if !$skiplock;
2011-08-23 09:47:04 +04:00
vm_mon_cmd($vmid, "system_reset");
});
}
sub get_vm_volumes {
my ($conf) = @_;
2011-08-23 09:47:04 +04:00
my $vollist = [];
foreach_volid($conf, sub {
my ($volid, $is_cdrom) = @_;
return if $volid =~ m|^/|;
my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
return if !$sid;
push @$vollist, $volid;
2011-08-23 09:47:04 +04:00
});
return $vollist;
}
sub vm_stop_cleanup {
my ($storecfg, $vmid, $conf, $keepActive) = @_;
eval {
fairsched_rmnod($vmid); # try to destroy group
if (!$keepActive) {
my $vollist = get_vm_volumes($conf);
PVE::Storage::deactivate_volumes($storecfg, $vollist);
}
foreach my $ext (qw(mon qmp pid vnc qga)) {
unlink "/var/run/qemu-server/${vmid}.$ext";
}
};
warn $@ if $@; # avoid errors - just warn
2011-08-23 09:47:04 +04:00
}
2011-09-15 10:21:32 +04:00
# Note: use $nockeck to skip tests if VM configuration file exists.
# We need that when migration VMs to other nodes (files already moved)
# Note: we set $keepActive in vzdump stop mode - volumes need to stay active
2011-08-23 09:47:04 +04:00
sub vm_stop {
my ($storecfg, $vmid, $skiplock, $nocheck, $timeout, $shutdown, $force, $keepActive, $migratedfrom) = @_;
2011-12-15 15:47:39 +04:00
$force = 1 if !defined($force) && !$shutdown;
2011-08-23 09:47:04 +04:00
if ($migratedfrom){
my $pid = check_running($vmid, $nocheck, $migratedfrom);
kill 15, $pid if $pid;
my $conf = load_config($vmid, $migratedfrom);
vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive);
return;
}
2011-09-15 10:21:32 +04:00
lock_config($vmid, sub {
2011-08-23 09:47:04 +04:00
2011-09-15 10:21:32 +04:00
my $pid = check_running($vmid, $nocheck);
return if !$pid;
2011-08-23 09:47:04 +04:00
my $conf;
2011-09-15 10:21:32 +04:00
if (!$nocheck) {
$conf = load_config($vmid);
2011-09-15 10:21:32 +04:00
check_lock($conf) if !$skiplock;
if (!defined($timeout) && $shutdown && $conf->{startup}) {
my $opts = parse_startup($conf->{startup});
$timeout = $opts->{down} if $opts->{down};
}
2011-09-15 10:21:32 +04:00
}
2011-09-12 14:26:00 +04:00
$timeout = 60 if !defined($timeout);
2011-12-15 15:47:39 +04:00
eval {
if ($shutdown) {
$nocheck ? vm_mon_cmd_nocheck($vmid, "system_powerdown") : vm_mon_cmd($vmid, "system_powerdown");
2012-06-26 08:42:18 +04:00
2011-12-15 15:47:39 +04:00
} else {
$nocheck ? vm_mon_cmd_nocheck($vmid, "quit") : vm_mon_cmd($vmid, "quit");
2012-01-27 12:35:26 +04:00
}
2011-12-15 15:47:39 +04:00
};
2011-08-23 09:47:04 +04:00
my $err = $@;
if (!$err) {
my $count = 0;
2011-09-15 10:21:32 +04:00
while (($count < $timeout) && check_running($vmid, $nocheck)) {
2011-08-23 09:47:04 +04:00
$count++;
sleep 1;
}
if ($count >= $timeout) {
2011-12-15 15:47:39 +04:00
if ($force) {
warn "VM still running - terminating now with SIGTERM\n";
kill 15, $pid;
} else {
die "VM quit/powerdown failed - got timeout\n";
}
} else {
vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive) if $conf;
2011-12-15 15:47:39 +04:00
return;
2011-08-23 09:47:04 +04:00
}
} else {
2011-12-15 15:47:39 +04:00
if ($force) {
warn "VM quit/powerdown failed - terminating now with SIGTERM\n";
kill 15, $pid;
} else {
2012-01-27 12:35:26 +04:00
die "VM quit/powerdown failed\n";
2011-12-15 15:47:39 +04:00
}
2011-08-23 09:47:04 +04:00
}
# wait again
$timeout = 10;
2011-08-23 09:47:04 +04:00
my $count = 0;
2011-09-15 10:21:32 +04:00
while (($count < $timeout) && check_running($vmid, $nocheck)) {
2011-08-23 09:47:04 +04:00
$count++;
sleep 1;
}
if ($count >= $timeout) {
warn "VM still running - terminating now with SIGKILL\n";
2011-08-23 09:47:04 +04:00
kill 9, $pid;
sleep 1;
2011-08-23 09:47:04 +04:00
}
vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive) if $conf;
});
2011-08-23 09:47:04 +04:00
}
sub vm_suspend {
my ($vmid, $skiplock) = @_;
2011-09-15 11:11:27 +04:00
lock_config($vmid, sub {
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my $conf = load_config($vmid);
2011-08-23 09:47:04 +04:00
check_lock($conf) if !($skiplock || ($conf->{lock} && $conf->{lock} eq 'backup'));
2012-06-26 08:42:18 +04:00
vm_mon_cmd($vmid, "stop");
2011-08-23 09:47:04 +04:00
});
}
sub vm_resume {
my ($vmid, $skiplock) = @_;
2011-09-15 11:11:27 +04:00
lock_config($vmid, sub {
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my $conf = load_config($vmid);
2011-08-23 09:47:04 +04:00
check_lock($conf) if !($skiplock || ($conf->{lock} && $conf->{lock} eq 'backup'));
2011-08-23 09:47:04 +04:00
vm_mon_cmd($vmid, "cont");
2011-08-23 09:47:04 +04:00
});
}
2011-10-10 15:17:40 +04:00
sub vm_sendkey {
my ($vmid, $skiplock, $key) = @_;
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
lock_config($vmid, sub {
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my $conf = load_config($vmid);
2012-08-23 09:36:48 +04:00
# there is no qmp command, so we use the human monitor command
vm_human_monitor_command($vmid, "sendkey $key");
2011-08-23 09:47:04 +04:00
});
}
sub vm_destroy {
my ($storecfg, $vmid, $skiplock) = @_;
2011-09-15 11:11:27 +04:00
lock_config($vmid, sub {
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
my $conf = load_config($vmid);
2011-08-23 09:47:04 +04:00
2011-09-15 11:11:27 +04:00
check_lock($conf) if !$skiplock;
2011-08-23 09:47:04 +04:00
if (!check_running($vmid)) {
fairsched_rmnod($vmid); # try to destroy group
destroy_vm($storecfg, $vmid);
} else {
die "VM $vmid is running - destroy failed\n";
2011-08-23 09:47:04 +04:00
}
});
}
# pci helpers
sub file_write {
my ($filename, $buf) = @_;
2011-09-15 11:11:27 +04:00
my $fh = IO::File->new($filename, "w");
2011-08-23 09:47:04 +04:00
return undef if !$fh;
my $res = print $fh $buf;
$fh->close();
return $res;
}
sub pci_device_info {
my ($name) = @_;
my $res;
return undef if $name !~ m/^([a-f0-9]{4}):([a-f0-9]{2}):([a-f0-9]{2})\.([a-f0-9])$/;
my ($domain, $bus, $slot, $func) = ($1, $2, $3, $4);
my $irq = file_read_firstline("$pcisysfs/devices/$name/irq");
return undef if !defined($irq) || $irq !~ m/^\d+$/;
my $vendor = file_read_firstline("$pcisysfs/devices/$name/vendor");
return undef if !defined($vendor) || $vendor !~ s/^0x//;
my $product = file_read_firstline("$pcisysfs/devices/$name/device");
return undef if !defined($product) || $product !~ s/^0x//;
$res = {
name => $name,
vendor => $vendor,
product => $product,
domain => $domain,
bus => $bus,
slot => $slot,
func => $func,
irq => $irq,
has_fl_reset => -f "$pcisysfs/devices/$name/reset" || 0,
};
return $res;
}
sub pci_dev_reset {
my ($dev) = @_;
my $name = $dev->{name};
my $fn = "$pcisysfs/devices/$name/reset";
2011-09-15 11:11:27 +04:00
return file_write($fn, "1");
2011-08-23 09:47:04 +04:00
}
sub pci_dev_bind_to_stub {
my ($dev) = @_;
my $name = $dev->{name};
my $testdir = "$pcisysfs/drivers/pci-stub/$name";
return 1 if -d $testdir;
my $data = "$dev->{vendor} $dev->{product}";
2011-09-15 11:11:27 +04:00
return undef if !file_write("$pcisysfs/drivers/pci-stub/new_id", $data);
2011-08-23 09:47:04 +04:00
my $fn = "$pcisysfs/devices/$name/driver/unbind";
2011-09-15 11:11:27 +04:00
if (!file_write($fn, $name)) {
2011-08-23 09:47:04 +04:00
return undef if -f $fn;
}
$fn = "$pcisysfs/drivers/pci-stub/bind";
if (! -d $testdir) {
2011-09-15 11:11:27 +04:00
return undef if !file_write($fn, $name);
2011-08-23 09:47:04 +04:00
}
return -d $testdir;
}
2012-01-27 12:35:26 +04:00
sub print_pci_addr {
my ($id, $bridges) = @_;
2011-09-15 11:11:27 +04:00
my $res = '';
2011-09-15 11:11:27 +04:00
my $devices = {
piix3 => { bus => 0, addr => 1 },
#addr2 : first videocard
balloon0 => { bus => 0, addr => 3 },
watchdog => { bus => 0, addr => 4 },
scsihw0 => { bus => 0, addr => 5 },
scsihw1 => { bus => 0, addr => 6 },
ahci0 => { bus => 0, addr => 7 },
qga0 => { bus => 0, addr => 8 },
spice => { bus => 0, addr => 9 },
2011-09-15 11:11:27 +04:00
virtio0 => { bus => 0, addr => 10 },
virtio1 => { bus => 0, addr => 11 },
virtio2 => { bus => 0, addr => 12 },
virtio3 => { bus => 0, addr => 13 },
virtio4 => { bus => 0, addr => 14 },
virtio5 => { bus => 0, addr => 15 },
hostpci0 => { bus => 0, addr => 16 },
hostpci1 => { bus => 0, addr => 17 },
2011-10-04 10:25:37 +04:00
net0 => { bus => 0, addr => 18 },
net1 => { bus => 0, addr => 19 },
net2 => { bus => 0, addr => 20 },
net3 => { bus => 0, addr => 21 },
net4 => { bus => 0, addr => 22 },
net5 => { bus => 0, addr => 23 },
vga1 => { bus => 0, addr => 24 },
vga2 => { bus => 0, addr => 25 },
vga3 => { bus => 0, addr => 26 },
#addr29 : usb-host (pve-usb.cfg)
'pci.1' => { bus => 0, addr => 30 },
'pci.2' => { bus => 0, addr => 31 },
'net6' => { bus => 1, addr => 1 },
'net7' => { bus => 1, addr => 2 },
'net8' => { bus => 1, addr => 3 },
'net9' => { bus => 1, addr => 4 },
'net10' => { bus => 1, addr => 5 },
'net11' => { bus => 1, addr => 6 },
'net12' => { bus => 1, addr => 7 },
'net13' => { bus => 1, addr => 8 },
'net14' => { bus => 1, addr => 9 },
'net15' => { bus => 1, addr => 10 },
'net16' => { bus => 1, addr => 11 },
'net17' => { bus => 1, addr => 12 },
'net18' => { bus => 1, addr => 13 },
'net19' => { bus => 1, addr => 14 },
'net20' => { bus => 1, addr => 15 },
'net21' => { bus => 1, addr => 16 },
'net22' => { bus => 1, addr => 17 },
'net23' => { bus => 1, addr => 18 },
'net24' => { bus => 1, addr => 19 },
'net25' => { bus => 1, addr => 20 },
'net26' => { bus => 1, addr => 21 },
'net27' => { bus => 1, addr => 22 },
'net28' => { bus => 1, addr => 23 },
'net29' => { bus => 1, addr => 24 },
'net30' => { bus => 1, addr => 25 },
'net31' => { bus => 1, addr => 26 },
'virtio6' => { bus => 2, addr => 1 },
'virtio7' => { bus => 2, addr => 2 },
'virtio8' => { bus => 2, addr => 3 },
'virtio9' => { bus => 2, addr => 4 },
'virtio10' => { bus => 2, addr => 5 },
'virtio11' => { bus => 2, addr => 6 },
'virtio12' => { bus => 2, addr => 7 },
'virtio13' => { bus => 2, addr => 8 },
'virtio14' => { bus => 2, addr => 9 },
'virtio15' => { bus => 2, addr => 10 },
2011-09-15 11:11:27 +04:00
};
if (defined($devices->{$id}->{bus}) && defined($devices->{$id}->{addr})) {
my $addr = sprintf("0x%x", $devices->{$id}->{addr});
my $bus = $devices->{$id}->{bus};
$res = ",bus=pci.$bus,addr=$addr";
$bridges->{$bus} = 1 if $bridges;
}
return $res;
}
# vzdump restore implementaion
sub tar_archive_read_firstfile {
my $archive = shift;
2012-01-27 12:35:26 +04:00
die "ERROR: file '$archive' does not exist\n" if ! -f $archive;
# try to detect archive type first
my $pid = open (TMP, "tar tf '$archive'|") ||
die "unable to open file '$archive'\n";
my $firstfile = <TMP>;
kill 15, $pid;
close TMP;
die "ERROR: archive contaions no data\n" if !$firstfile;
chomp $firstfile;
return $firstfile;
}
sub tar_restore_cleanup {
my ($storecfg, $statfile) = @_;
print STDERR "starting cleanup\n";
if (my $fd = IO::File->new($statfile, "r")) {
while (defined(my $line = <$fd>)) {
if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
my $volid = $2;
eval {
if ($volid =~ m|^/|) {
unlink $volid || die 'unlink failed\n';
} else {
PVE::Storage::vdisk_free($storecfg, $volid);
}
2012-01-27 12:35:26 +04:00
print STDERR "temporary volume '$volid' sucessfuly removed\n";
};
print STDERR "unable to cleanup '$volid' - $@" if $@;
} else {
print STDERR "unable to parse line in statfile - $line";
2012-01-27 12:35:26 +04:00
}
}
$fd->close();
}
}
sub restore_archive {
2012-02-02 09:39:38 +04:00
my ($archive, $vmid, $user, $opts) = @_;
my $format = $opts->{format};
my $comp;
if ($archive =~ m/\.tgz$/ || $archive =~ m/\.tar\.gz$/) {
$format = 'tar' if !$format;
$comp = 'gzip';
} elsif ($archive =~ m/\.tar$/) {
$format = 'tar' if !$format;
} elsif ($archive =~ m/.tar.lzo$/) {
$format = 'tar' if !$format;
$comp = 'lzop';
} elsif ($archive =~ m/\.vma$/) {
$format = 'vma' if !$format;
} elsif ($archive =~ m/\.vma\.gz$/) {
$format = 'vma' if !$format;
$comp = 'gzip';
} elsif ($archive =~ m/\.vma\.lzo$/) {
$format = 'vma' if !$format;
$comp = 'lzop';
} else {
$format = 'vma' if !$format; # default
}
# try to detect archive format
if ($format eq 'tar') {
return restore_tar_archive($archive, $vmid, $user, $opts);
} else {
return restore_vma_archive($archive, $vmid, $user, $opts, $comp);
}
}
sub restore_update_config_line {
my ($outfd, $cookie, $vmid, $map, $line, $unique) = @_;
return if $line =~ m/^\#qmdump\#/;
return if $line =~ m/^\#vzdump\#/;
return if $line =~ m/^lock:/;
return if $line =~ m/^unused\d+:/;
return if $line =~ m/^parent:/;
return if $line =~ m/^template:/; # restored VM is never a template
if (($line =~ m/^(vlan(\d+)):\s*(\S+)\s*$/)) {
# try to convert old 1.X settings
my ($id, $ind, $ethcfg) = ($1, $2, $3);
foreach my $devconfig (PVE::Tools::split_list($ethcfg)) {
my ($model, $macaddr) = split(/\=/, $devconfig);
$macaddr = PVE::Tools::random_ether_addr() if !$macaddr || $unique;
my $net = {
model => $model,
bridge => "vmbr$ind",
macaddr => $macaddr,
};
my $netstr = print_net($net);
print $outfd "net$cookie->{netcount}: $netstr\n";
$cookie->{netcount}++;
}
} elsif (($line =~ m/^(net\d+):\s*(\S+)\s*$/) && $unique) {
my ($id, $netstr) = ($1, $2);
my $net = parse_net($netstr);
$net->{macaddr} = PVE::Tools::random_ether_addr() if $net->{macaddr};
$netstr = print_net($net);
print $outfd "$id: $netstr\n";
} elsif ($line =~ m/^((ide|scsi|virtio|sata)\d+):\s*(\S+)\s*$/) {
my $virtdev = $1;
my $value = $3;
if ($line =~ m/backup=no/) {
print $outfd "#$line";
} elsif ($virtdev && $map->{$virtdev}) {
my $di = parse_drive($virtdev, $value);
delete $di->{format}; # format can change on restore
$di->{file} = $map->{$virtdev};
$value = print_drive($vmid, $di);
print $outfd "$virtdev: $value\n";
} else {
print $outfd $line;
}
} else {
print $outfd $line;
}
}
sub scan_volids {
my ($cfg, $vmid) = @_;
my $info = PVE::Storage::vdisk_list($cfg, undef, $vmid);
my $volid_hash = {};
foreach my $storeid (keys %$info) {
foreach my $item (@{$info->{$storeid}}) {
next if !($item->{volid} && $item->{size});
$item->{path} = PVE::Storage::path($cfg, $item->{volid});
$volid_hash->{$item->{volid}} = $item;
}
}
return $volid_hash;
}
sub get_used_paths {
my ($vmid, $storecfg, $conf, $scan_snapshots, $skip_drive) = @_;
my $used_path = {};
my $scan_config = sub {
my ($cref, $snapname) = @_;
foreach my $key (keys %$cref) {
my $value = $cref->{$key};
if (valid_drivename($key)) {
next if $skip_drive && $key eq $skip_drive;
my $drive = parse_drive($key, $value);
next if !$drive || !$drive->{file} || drive_is_cdrom($drive);
if ($drive->{file} =~ m!^/!) {
$used_path->{$drive->{file}}++; # = 1;
} else {
my ($storeid, $volname) = PVE::Storage::parse_volume_id($drive->{file}, 1);
next if !$storeid;
my $scfg = PVE::Storage::storage_config($storecfg, $storeid, 1);
next if !$scfg;
my $path = PVE::Storage::path($storecfg, $drive->{file}, $snapname);
$used_path->{$path}++; # = 1;
}
}
}
};
&$scan_config($conf);
undef $skip_drive;
if ($scan_snapshots) {
foreach my $snapname (keys %{$conf->{snapshots}}) {
&$scan_config($conf->{snapshots}->{$snapname}, $snapname);
}
}
return $used_path;
}
sub update_disksize {
my ($vmid, $conf, $volid_hash) = @_;
my $changes;
my $used = {};
# Note: it is allowed to define multiple storages with same path (alias), so
# we need to check both 'volid' and real 'path' (two different volid can point
# to the same path).
my $usedpath = {};
# update size info
foreach my $opt (keys %$conf) {
if (valid_drivename($opt)) {
my $drive = parse_drive($opt, $conf->{$opt});
my $volid = $drive->{file};
next if !$volid;
$used->{$volid} = 1;
if ($volid_hash->{$volid} &&
(my $path = $volid_hash->{$volid}->{path})) {
$usedpath->{$path} = 1;
}
next if drive_is_cdrom($drive);
next if !$volid_hash->{$volid};
$drive->{size} = $volid_hash->{$volid}->{size};
my $new = print_drive($vmid, $drive);
if ($new ne $conf->{$opt}) {
$changes = 1;
$conf->{$opt} = $new;
}
}
}
# remove 'unusedX' entry if volume is used
foreach my $opt (keys %$conf) {
next if $opt !~ m/^unused\d+$/;
my $volid = $conf->{$opt};
my $path = $volid_hash->{$volid}->{path} if $volid_hash->{$volid};
if ($used->{$volid} || ($path && $usedpath->{$path})) {
$changes = 1;
delete $conf->{$opt};
}
}
foreach my $volid (sort keys %$volid_hash) {
next if $volid =~ m/vm-$vmid-state-/;
next if $used->{$volid};
my $path = $volid_hash->{$volid}->{path};
next if !$path; # just to be sure
next if $usedpath->{$path};
$changes = 1;
add_unused_volume($conf, $volid);
$usedpath->{$path} = 1; # avoid to add more than once (aliases)
}
return $changes;
}
sub rescan {
my ($vmid, $nolock) = @_;
my $cfg = PVE::Cluster::cfs_read_file("storage.cfg");
my $volid_hash = scan_volids($cfg, $vmid);
my $updatefn = sub {
my ($vmid) = @_;
my $conf = load_config($vmid);
check_lock($conf);
my $vm_volids = {};
foreach my $volid (keys %$volid_hash) {
my $info = $volid_hash->{$volid};
$vm_volids->{$volid} = $info if $info->{vmid} && $info->{vmid} == $vmid;
}
my $changes = update_disksize($vmid, $conf, $vm_volids);
update_config_nolock($vmid, $conf, 1) if $changes;
};
if (defined($vmid)) {
if ($nolock) {
&$updatefn($vmid);
} else {
lock_config($vmid, $updatefn, $vmid);
}
} else {
my $vmlist = config_list();
foreach my $vmid (keys %$vmlist) {
if ($nolock) {
&$updatefn($vmid);
} else {
lock_config($vmid, $updatefn, $vmid);
}
}
}
}
sub restore_vma_archive {
my ($archive, $vmid, $user, $opts, $comp) = @_;
my $input = $archive eq '-' ? "<&STDIN" : undef;
my $readfrom = $archive;
my $uncomp = '';
if ($comp) {
$readfrom = '-';
my $qarchive = PVE::Tools::shellquote($archive);
if ($comp eq 'gzip') {
$uncomp = "zcat $qarchive|";
} elsif ($comp eq 'lzop') {
$uncomp = "lzop -d -c $qarchive|";
} else {
die "unknown compression method '$comp'\n";
}
}
my $tmpdir = "/var/tmp/vzdumptmp$$";
rmtree $tmpdir;
# disable interrupts (always do cleanups)
local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub {
warn "got interrupt - ignored\n";
};
my $mapfifo = "/var/tmp/vzdumptmp$$.fifo";
POSIX::mkfifo($mapfifo, 0600);
my $fifofh;
my $openfifo = sub {
open($fifofh, '>', $mapfifo) || die $!;
};
my $cmd = "${uncomp}vma extract -v -r $mapfifo $readfrom $tmpdir";
my $oldtimeout;
my $timeout = 5;
my $devinfo = {};
my $rpcenv = PVE::RPCEnvironment::get();
my $conffile = config_file($vmid);
my $tmpfn = "$conffile.$$.tmp";
# Note: $oldconf is undef if VM does not exists
my $oldconf = PVE::Cluster::cfs_read_file(cfs_config_path($vmid));
my $print_devmap = sub {
my $virtdev_hash = {};
my $cfgfn = "$tmpdir/qemu-server.conf";
# we can read the config - that is already extracted
my $fh = IO::File->new($cfgfn, "r") ||
"unable to read qemu-server.conf - $!\n";
while (defined(my $line = <$fh>)) {
if ($line =~ m/^\#qmdump\#map:(\S+):(\S+):(\S*):(\S*):$/) {
my ($virtdev, $devname, $storeid, $format) = ($1, $2, $3, $4);
die "archive does not contain data for drive '$virtdev'\n"
if !$devinfo->{$devname};
if (defined($opts->{storage})) {
$storeid = $opts->{storage} || 'local';
} elsif (!$storeid) {
$storeid = 'local';
}
$format = 'raw' if !$format;
$devinfo->{$devname}->{devname} = $devname;
$devinfo->{$devname}->{virtdev} = $virtdev;
$devinfo->{$devname}->{format} = $format;
$devinfo->{$devname}->{storeid} = $storeid;
# check permission on storage
my $pool = $opts->{pool}; # todo: do we need that?
if ($user ne 'root@pam') {
$rpcenv->check($user, "/storage/$storeid", ['Datastore.AllocateSpace']);
}
$virtdev_hash->{$virtdev} = $devinfo->{$devname};
}
}
foreach my $devname (keys %$devinfo) {
die "found no device mapping information for device '$devname'\n"
if !$devinfo->{$devname}->{virtdev};
}
my $cfg = cfs_read_file('storage.cfg');
# create empty/temp config
if ($oldconf) {
PVE::Tools::file_set_contents($conffile, "memory: 128\n");
foreach_drive($oldconf, sub {
my ($ds, $drive) = @_;
return if drive_is_cdrom($drive);
my $volid = $drive->{file};
return if !$volid || $volid =~ m|^/|;
my ($path, $owner) = PVE::Storage::path($cfg, $volid);
return if !$path || !$owner || ($owner != $vmid);
# Note: only delete disk we want to restore
# other volumes will become unused
if ($virtdev_hash->{$ds}) {
PVE::Storage::vdisk_free($cfg, $volid);
}
});
}
my $map = {};
foreach my $virtdev (sort keys %$virtdev_hash) {
my $d = $virtdev_hash->{$virtdev};
my $alloc_size = int(($d->{size} + 1024 - 1)/1024);
my $scfg = PVE::Storage::storage_config($cfg, $d->{storeid});
# test if requested format is supported
my ($defFormat, $validFormats) = PVE::Storage::storage_default_format($cfg, $d->{storeid});
my $supported = grep { $_ eq $d->{format} } @$validFormats;
$d->{format} = $defFormat if !$supported;
my $volid = PVE::Storage::vdisk_alloc($cfg, $d->{storeid}, $vmid,
$d->{format}, undef, $alloc_size);
print STDERR "new volume ID is '$volid'\n";
$d->{volid} = $volid;
my $path = PVE::Storage::path($cfg, $volid);
my $write_zeros = 1;
# fixme: what other storages types initialize volumes with zero?
if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs' || $scfg->{type} eq 'glusterfs' ||
$scfg->{type} eq 'sheepdog' || $scfg->{type} eq 'rbd') {
$write_zeros = 0;
}
print $fifofh "${write_zeros}:$d->{devname}=$path\n";
print "map '$d->{devname}' to '$path' (write zeros = ${write_zeros})\n";
$map->{$virtdev} = $volid;
}
$fh->seek(0, 0) || die "seek failed - $!\n";
my $outfd = new IO::File ($tmpfn, "w") ||
die "unable to write config for VM $vmid\n";
my $cookie = { netcount => 0 };
while (defined(my $line = <$fh>)) {
restore_update_config_line($outfd, $cookie, $vmid, $map, $line, $opts->{unique});
}
$fh->close();
$outfd->close();
};
eval {
# enable interrupts
local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = $SIG{PIPE} = sub {
die "interrupted by signal\n";
};
local $SIG{ALRM} = sub { die "got timeout\n"; };
$oldtimeout = alarm($timeout);
my $parser = sub {
my $line = shift;
print "$line\n";
if ($line =~ m/^DEV:\sdev_id=(\d+)\ssize:\s(\d+)\sdevname:\s(\S+)$/) {
my ($dev_id, $size, $devname) = ($1, $2, $3);
$devinfo->{$devname} = { size => $size, dev_id => $dev_id };
} elsif ($line =~ m/^CTIME: /) {
&$print_devmap();
print $fifofh "done\n";
my $tmp = $oldtimeout || 0;
$oldtimeout = undef;
alarm($tmp);
close($fifofh);
}
};
print "restore vma archive: $cmd\n";
run_command($cmd, input => $input, outfunc => $parser, afterfork => $openfifo);
};
my $err = $@;
alarm($oldtimeout) if $oldtimeout;
unlink $mapfifo;
if ($err) {
rmtree $tmpdir;
unlink $tmpfn;
my $cfg = cfs_read_file('storage.cfg');
foreach my $devname (keys %$devinfo) {
my $volid = $devinfo->{$devname}->{volid};
next if !$volid;
eval {
if ($volid =~ m|^/|) {
unlink $volid || die 'unlink failed\n';
} else {
PVE::Storage::vdisk_free($cfg, $volid);
}
print STDERR "temporary volume '$volid' sucessfuly removed\n";
};
print STDERR "unable to cleanup '$volid' - $@" if $@;
}
die $err;
}
rmtree $tmpdir;
rename($tmpfn, $conffile) ||
die "unable to commit configuration file '$conffile'\n";
PVE::Cluster::cfs_update(); # make sure we read new file
eval { rescan($vmid, 1); };
warn $@ if $@;
}
sub restore_tar_archive {
my ($archive, $vmid, $user, $opts) = @_;
2011-10-19 13:27:42 +04:00
if ($archive ne '-') {
my $firstfile = tar_archive_read_firstfile($archive);
2011-10-19 13:27:42 +04:00
die "ERROR: file '$archive' dos not lock like a QemuServer vzdump backup\n"
if $firstfile ne 'qemu-server.conf';
}
my $storecfg = cfs_read_file('storage.cfg');
# destroy existing data - keep empty config
my $vmcfgfn = PVE::QemuServer::config_file($vmid);
destroy_vm($storecfg, $vmid, 1) if -f $vmcfgfn;
my $tocmd = "/usr/lib/qemu-server/qmextract";
2011-10-25 13:37:56 +04:00
$tocmd .= " --storage " . PVE::Tools::shellquote($opts->{storage}) if $opts->{storage};
2012-02-02 09:39:38 +04:00
$tocmd .= " --pool " . PVE::Tools::shellquote($opts->{pool}) if $opts->{pool};
$tocmd .= ' --prealloc' if $opts->{prealloc};
$tocmd .= ' --info' if $opts->{info};
2012-02-02 09:39:38 +04:00
# tar option "xf" does not autodetect compression when read from STDIN,
2011-10-19 13:27:42 +04:00
# so we pipe to zcat
2011-10-25 13:37:56 +04:00
my $cmd = "zcat -f|tar xf " . PVE::Tools::shellquote($archive) . " " .
PVE::Tools::shellquote("--to-command=$tocmd");
my $tmpdir = "/var/tmp/vzdumptmp$$";
mkpath $tmpdir;
local $ENV{VZDUMP_TMPDIR} = $tmpdir;
local $ENV{VZDUMP_VMID} = $vmid;
2012-02-02 09:39:38 +04:00
local $ENV{VZDUMP_USER} = $user;
my $conffile = config_file($vmid);
my $tmpfn = "$conffile.$$.tmp";
# disable interrupts (always do cleanups)
local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub {
print STDERR "got interrupt - ignored\n";
};
2012-01-27 12:35:26 +04:00
eval {
# enable interrupts
local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = $SIG{PIPE} = sub {
die "interrupted by signal\n";
};
2011-10-19 13:27:42 +04:00
if ($archive eq '-') {
print "extracting archive from STDIN\n";
run_command($cmd, input => "<&STDIN");
} else {
print "extracting archive '$archive'\n";
run_command($cmd);
}
return if $opts->{info};
# read new mapping
my $map = {};
my $statfile = "$tmpdir/qmrestore.stat";
if (my $fd = IO::File->new($statfile, "r")) {
while (defined (my $line = <$fd>)) {
if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
$map->{$1} = $2 if $1;
} else {
print STDERR "unable to parse line in statfile - $line\n";
}
}
$fd->close();
}
my $confsrc = "$tmpdir/qemu-server.conf";
my $srcfd = new IO::File($confsrc, "r") ||
die "unable to open file '$confsrc'\n";
my $outfd = new IO::File ($tmpfn, "w") ||
die "unable to write config for VM $vmid\n";
my $cookie = { netcount => 0 };
while (defined (my $line = <$srcfd>)) {
restore_update_config_line($outfd, $cookie, $vmid, $map, $line, $opts->{unique});
}
$srcfd->close();
$outfd->close();
};
my $err = $@;
2012-01-27 12:35:26 +04:00
if ($err) {
unlink $tmpfn;
tar_restore_cleanup($storecfg, "$tmpdir/qmrestore.stat") if !$opts->{info};
2012-01-27 12:35:26 +04:00
die $err;
2012-01-27 12:35:26 +04:00
}
rmtree $tmpdir;
rename $tmpfn, $conffile ||
die "unable to commit configuration file '$conffile'\n";
PVE::Cluster::cfs_update(); # make sure we read new file
eval { rescan($vmid, 1); };
warn $@ if $@;
};
# Internal snapshots
# NOTE: Snapshot create/delete involves several non-atomic
# action, and can take a long time.
# So we try to avoid locking the file and use 'lock' variable
# inside the config file instead.
my $snapshot_copy_config = sub {
my ($source, $dest) = @_;
foreach my $k (keys %$source) {
next if $k eq 'snapshots';
2012-09-11 10:45:39 +04:00
next if $k eq 'snapstate';
next if $k eq 'snaptime';
next if $k eq 'vmstate';
next if $k eq 'lock';
next if $k eq 'digest';
next if $k eq 'description';
next if $k =~ m/^unused\d+$/;
$dest->{$k} = $source->{$k};
}
};
my $snapshot_apply_config = sub {
my ($conf, $snap) = @_;
# copy snapshot list
my $newconf = {
snapshots => $conf->{snapshots},
};
# keep description and list of unused disks
foreach my $k (keys %$conf) {
next if !($k =~ m/^unused\d+$/ || $k eq 'description');
$newconf->{$k} = $conf->{$k};
}
&$snapshot_copy_config($snap, $newconf);
return $newconf;
};
sub foreach_writable_storage {
my ($conf, $func) = @_;
my $sidhash = {};
foreach my $ds (keys %$conf) {
next if !valid_drivename($ds);
my $drive = parse_drive($ds, $conf->{$ds});
next if !$drive;
next if drive_is_cdrom($drive);
my $volid = $drive->{file};
my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
$sidhash->{$sid} = $sid if $sid;
}
foreach my $sid (sort keys %$sidhash) {
&$func($sid);
}
}
my $alloc_vmstate_volid = sub {
my ($storecfg, $vmid, $conf, $snapname) = @_;
# Note: we try to be smart when selecting a $target storage
my $target;
# search shared storage first
foreach_writable_storage($conf, sub {
my ($sid) = @_;
my $scfg = PVE::Storage::storage_config($storecfg, $sid);
return if !$scfg->{shared};
$target = $sid if !$target || $scfg->{path}; # prefer file based storage
});
if (!$target) {
# now search local storage
foreach_writable_storage($conf, sub {
my ($sid) = @_;
my $scfg = PVE::Storage::storage_config($storecfg, $sid);
return if $scfg->{shared};
$target = $sid if !$target || $scfg->{path}; # prefer file based storage;
});
}
$target = 'local' if !$target;
my $driver_state_size = 500; # assume 32MB is enough to safe all driver state;
# we abort live save after $conf->{memory}, so we need at max twice that space
my $size = $conf->{memory}*2 + $driver_state_size;
my $name = "vm-$vmid-state-$snapname";
my $scfg = PVE::Storage::storage_config($storecfg, $target);
$name .= ".raw" if $scfg->{path}; # add filename extension for file base storage
my $volid = PVE::Storage::vdisk_alloc($storecfg, $target, $vmid, 'raw', $name, $size*1024);
return $volid;
};
my $snapshot_prepare = sub {
my ($vmid, $snapname, $save_vmstate, $comment) = @_;
2012-09-07 15:07:23 +04:00
my $snap;
my $updatefn = sub {
my $conf = load_config($vmid);
die "you can't take a snapshot if it's a template\n"
if is_template($conf);
check_lock($conf);
2012-09-07 15:07:23 +04:00
$conf->{lock} = 'snapshot';
die "snapshot name '$snapname' already used\n"
if defined($conf->{snapshots}->{$snapname});
my $storecfg = PVE::Storage::config();
die "snapshot feature is not available" if !has_feature('snapshot', $conf, $storecfg);
2012-09-11 11:00:26 +04:00
$snap = $conf->{snapshots}->{$snapname} = {};
if ($save_vmstate && check_running($vmid)) {
$snap->{vmstate} = &$alloc_vmstate_volid($storecfg, $vmid, $conf, $snapname);
}
&$snapshot_copy_config($conf, $snap);
2012-09-11 11:00:26 +04:00
$snap->{snapstate} = "prepare";
$snap->{snaptime} = time();
$snap->{description} = $comment if $comment;
# always overwrite machine if we save vmstate. This makes sure we
# can restore it later using correct machine type
$snap->{machine} = get_current_qemu_machine($vmid) if $snap->{vmstate};
update_config_nolock($vmid, $conf, 1);
};
lock_config($vmid, $updatefn);
2012-09-07 15:07:23 +04:00
return $snap;
};
my $snapshot_commit = sub {
my ($vmid, $snapname) = @_;
my $updatefn = sub {
my $conf = load_config($vmid);
die "missing snapshot lock\n"
if !($conf->{lock} && $conf->{lock} eq 'snapshot');
my $snap = $conf->{snapshots}->{$snapname};
die "snapshot '$snapname' does not exist\n" if !defined($snap);
die "wrong snapshot state\n"
if !($snap->{snapstate} && $snap->{snapstate} eq "prepare");
delete $snap->{snapstate};
delete $conf->{lock};
my $newconf = &$snapshot_apply_config($conf, $snap);
$newconf->{parent} = $snapname;
update_config_nolock($vmid, $newconf, 1);
};
lock_config($vmid, $updatefn);
};
2012-09-07 15:07:23 +04:00
sub snapshot_rollback {
my ($vmid, $snapname) = @_;
my $snap;
my $prepare = 1;
my $storecfg = PVE::Storage::config();
2012-09-07 15:07:23 +04:00
my $updatefn = sub {
my $conf = load_config($vmid);
2013-02-15 14:08:28 +04:00
die "you can't rollback if vm is a template\n" if is_template($conf);
$snap = $conf->{snapshots}->{$snapname};
die "snapshot '$snapname' does not exist\n" if !defined($snap);
die "unable to rollback to incomplete snapshot (snapstate = $snap->{snapstate})\n"
if $snap->{snapstate};
if ($prepare) {
check_lock($conf);
vm_stop($storecfg, $vmid, undef, undef, 5, undef, undef);
}
2012-09-07 15:07:23 +04:00
die "unable to rollback vm $vmid: vm is running\n"
if check_running($vmid);
if ($prepare) {
$conf->{lock} = 'rollback';
} else {
die "got wrong lock\n" if !($conf->{lock} && $conf->{lock} eq 'rollback');
delete $conf->{lock};
}
my $forcemachine;
2012-09-07 15:07:23 +04:00
if (!$prepare) {
my $has_machine_config = defined($conf->{machine});
2012-09-07 15:07:23 +04:00
# copy snapshot config to current config
$conf = &$snapshot_apply_config($conf, $snap);
$conf->{parent} = $snapname;
# Note: old code did not store 'machine', so we try to be smart
# and guess the snapshot was generated with kvm 1.4 (pc-i440fx-1.4).
$forcemachine = $conf->{machine} || 'pc-i440fx-1.4';
# we remove the 'machine' configuration if not explicitly specified
# in the original config.
delete $conf->{machine} if $snap->{vmstate} && !$has_machine_config;
2012-09-07 15:07:23 +04:00
}
update_config_nolock($vmid, $conf, 1);
if (!$prepare && $snap->{vmstate}) {
my $statefile = PVE::Storage::path($storecfg, $snap->{vmstate});
vm_start($storecfg, $vmid, $statefile, undef, undef, undef, $forcemachine);
}
2012-09-07 15:07:23 +04:00
};
lock_config($vmid, $updatefn);
2012-09-07 15:07:23 +04:00
foreach_drive($snap, sub {
my ($ds, $drive) = @_;
return if drive_is_cdrom($drive);
my $volid = $drive->{file};
my $device = "drive-$ds";
2012-09-10 12:06:01 +04:00
PVE::Storage::volume_snapshot_rollback($storecfg, $volid, $snapname);
2012-09-07 15:07:23 +04:00
});
$prepare = 0;
lock_config($vmid, $updatefn);
}
2012-09-24 12:43:19 +04:00
my $savevm_wait = sub {
my ($vmid) = @_;
for(;;) {
my $stat = vm_mon_cmd_nocheck($vmid, "query-savevm");
2012-09-24 12:43:19 +04:00
if (!$stat->{status}) {
die "savevm not active\n";
} elsif ($stat->{status} eq 'active') {
sleep(1);
next;
} elsif ($stat->{status} eq 'completed') {
last;
} else {
die "query-savevm returned status '$stat->{status}'\n";
}
}
};
sub snapshot_create {
my ($vmid, $snapname, $save_vmstate, $freezefs, $comment) = @_;
my $snap = &$snapshot_prepare($vmid, $snapname, $save_vmstate, $comment);
$freezefs = $save_vmstate = 0 if !$snap->{vmstate}; # vm is not running
my $drivehash = {};
my $running = check_running($vmid);
eval {
# create internal snapshots of all drives
2012-09-07 15:07:23 +04:00
my $storecfg = PVE::Storage::config();
if ($running) {
if ($snap->{vmstate}) {
my $path = PVE::Storage::path($storecfg, $snap->{vmstate});
2012-09-24 12:43:19 +04:00
vm_mon_cmd($vmid, "savevm-start", statefile => $path);
&$savevm_wait($vmid);
} else {
2012-09-24 12:43:19 +04:00
vm_mon_cmd($vmid, "savevm-start");
}
};
qga_freezefs($vmid) if $running && $freezefs;
2012-09-07 15:07:23 +04:00
foreach_drive($snap, sub {
my ($ds, $drive) = @_;
return if drive_is_cdrom($drive);
2012-09-07 15:07:23 +04:00
my $volid = $drive->{file};
my $device = "drive-$ds";
qemu_volume_snapshot($vmid, $device, $storecfg, $volid, $snapname);
$drivehash->{$ds} = 1;
2012-09-07 15:07:23 +04:00
});
};
2012-09-07 15:07:23 +04:00
my $err = $@;
2013-06-04 15:33:35 +04:00
eval { qga_unfreezefs($vmid) if $running && $freezefs; };
2012-09-07 15:07:23 +04:00
warn $@ if $@;
2012-09-24 12:43:19 +04:00
eval { vm_mon_cmd($vmid, "savevm-end") if $running; };
2012-09-07 15:07:23 +04:00
warn $@ if $@;
if ($err) {
warn "snapshot create failed: starting cleanup\n";
eval { snapshot_delete($vmid, $snapname, 0, $drivehash); };
warn $@ if $@;
die $err;
}
&$snapshot_commit($vmid, $snapname);
}
# Note: $drivehash is only set when called from snapshot_create.
sub snapshot_delete {
my ($vmid, $snapname, $force, $drivehash) = @_;
my $prepare = 1;
2012-09-07 15:07:23 +04:00
my $snap;
my $unused = [];
my $unlink_parent = sub {
my ($confref, $new_parent) = @_;
if ($confref->{parent} && $confref->{parent} eq $snapname) {
if ($new_parent) {
$confref->{parent} = $new_parent;
} else {
delete $confref->{parent};
}
}
};
my $updatefn = sub {
my ($remove_drive) = @_;
2012-09-07 15:07:23 +04:00
my $conf = load_config($vmid);
if (!$drivehash) {
check_lock($conf);
die "you can't delete a snapshot if vm is a template\n"
if is_template($conf);
}
2012-09-07 15:07:23 +04:00
$snap = $conf->{snapshots}->{$snapname};
die "snapshot '$snapname' does not exist\n" if !defined($snap);
# remove parent refs
&$unlink_parent($conf, $snap->{parent});
foreach my $sn (keys %{$conf->{snapshots}}) {
next if $sn eq $snapname;
&$unlink_parent($conf->{snapshots}->{$sn}, $snap->{parent});
}
if ($remove_drive) {
if ($remove_drive eq 'vmstate') {
delete $snap->{$remove_drive};
} else {
my $drive = parse_drive($remove_drive, $snap->{$remove_drive});
my $volid = $drive->{file};
delete $snap->{$remove_drive};
add_unused_volume($conf, $volid);
}
}
if ($prepare) {
$snap->{snapstate} = 'delete';
} else {
delete $conf->{snapshots}->{$snapname};
delete $conf->{lock} if $drivehash;
foreach my $volid (@$unused) {
add_unused_volume($conf, $volid);
}
}
update_config_nolock($vmid, $conf, 1);
};
lock_config($vmid, $updatefn);
# now remove vmstate file
2012-09-07 15:07:23 +04:00
my $storecfg = PVE::Storage::config();
if ($snap->{vmstate}) {
eval { PVE::Storage::vdisk_free($storecfg, $snap->{vmstate}); };
if (my $err = $@) {
die $err if !$force;
warn $err;
}
# save changes (remove vmstate from snapshot)
lock_config($vmid, $updatefn, 'vmstate') if !$force;
};
# now remove all internal snapshots
foreach_drive($snap, sub {
2012-09-07 15:07:23 +04:00
my ($ds, $drive) = @_;
return if drive_is_cdrom($drive);
2012-09-07 15:07:23 +04:00
my $volid = $drive->{file};
my $device = "drive-$ds";
if (!$drivehash || $drivehash->{$ds}) {
eval { qemu_volume_snapshot_delete($vmid, $device, $storecfg, $volid, $snapname); };
if (my $err = $@) {
die $err if !$force;
warn $err;
}
}
# save changes (remove drive fron snapshot)
lock_config($vmid, $updatefn, $ds) if !$force;
push @$unused, $volid;
2012-09-07 15:07:23 +04:00
});
# now cleanup config
$prepare = 0;
lock_config($vmid, $updatefn);
}
sub has_feature {
my ($feature, $conf, $storecfg, $snapname, $running) = @_;
my $err;
foreach_drive($conf, sub {
my ($ds, $drive) = @_;
return if drive_is_cdrom($drive);
my $volid = $drive->{file};
$err = 1 if !PVE::Storage::volume_has_feature($storecfg, $feature, $volid, $snapname, $running);
});
return $err ? 0 : 1;
}
sub template_create {
my ($vmid, $conf, $disk) = @_;
my $storecfg = PVE::Storage::config();
foreach_drive($conf, sub {
my ($ds, $drive) = @_;
return if drive_is_cdrom($drive);
return if $disk && $ds ne $disk;
my $volid = $drive->{file};
return if !PVE::Storage::volume_has_feature($storecfg, 'template', $volid);
my $voliddst = PVE::Storage::vdisk_create_base($storecfg, $volid);
$drive->{file} = $voliddst;
$conf->{$ds} = print_drive($vmid, $drive);
update_config_nolock($vmid, $conf, 1);
});
}
sub is_template {
my ($conf) = @_;
return 1 if defined $conf->{template} && $conf->{template} == 1;
}
sub qemu_img_convert {
my ($src_volid, $dst_volid, $size, $snapname) = @_;
my $storecfg = PVE::Storage::config();
my ($src_storeid, $src_volname) = PVE::Storage::parse_volume_id($src_volid, 1);
my ($dst_storeid, $dst_volname) = PVE::Storage::parse_volume_id($dst_volid, 1);
if ($src_storeid && $dst_storeid) {
my $src_scfg = PVE::Storage::storage_config($storecfg, $src_storeid);
my $dst_scfg = PVE::Storage::storage_config($storecfg, $dst_storeid);
my $src_format = qemu_img_format($src_scfg, $src_volname);
my $dst_format = qemu_img_format($dst_scfg, $dst_volname);
my $src_path = PVE::Storage::path($storecfg, $src_volid, $snapname);
my $dst_path = PVE::Storage::path($storecfg, $dst_volid);
my $cmd = [];
push @$cmd, '/usr/bin/qemu-img', 'convert', '-t', 'writeback', '-p', '-n';
push @$cmd, '-s', $snapname if($snapname && $src_format eq "qcow2");
push @$cmd, '-f', $src_format, '-O', $dst_format, $src_path, $dst_path;
my $parser = sub {
my $line = shift;
if($line =~ m/\((\S+)\/100\%\)/){
my $percent = $1;
my $transferred = int($size * $percent / 100);
my $remaining = $size - $transferred;
print "transferred: $transferred bytes remaining: $remaining bytes total: $size bytes progression: $percent %\n";
}
};
eval { run_command($cmd, timeout => undef, outfunc => $parser); };
my $err = $@;
die "copy failed: $err" if $err;
}
}
sub qemu_img_format {
my ($scfg, $volname) = @_;
if ($scfg->{path} && $volname =~ m/\.(raw|qcow2|qed|vmdk)$/) {
return $1;
} elsif ($scfg->{type} eq 'iscsi') {
return "host_device";
} else {
return "raw";
}
}
sub qemu_drive_mirror {
my ($vmid, $drive, $dst_volid, $vmiddst, $maxwait) = @_;
my $count = 1;
my $old_len = 0;
my $frozen = undef;
my $storecfg = PVE::Storage::config();
my ($dst_storeid, $dst_volname) = PVE::Storage::parse_volume_id($dst_volid, 1);
if ($dst_storeid) {
my $dst_scfg = PVE::Storage::storage_config($storecfg, $dst_storeid);
my $format;
if ($dst_volname =~ m/\.(raw|qcow2)$/){
$format = $1;
}
my $dst_path = PVE::Storage::path($storecfg, $dst_volid);
if ($format) {
#fixme : sometime drive-mirror timeout, but works fine after.
# (I have see the problem with big volume > 200GB), so we need to eval
eval { vm_mon_cmd($vmid, "drive-mirror", timeout => 10, device => "drive-$drive", mode => "existing",
sync => "full", target => $dst_path, format => $format); };
} else {
eval { vm_mon_cmd($vmid, "drive-mirror", timeout => 10, device => "drive-$drive", mode => "existing",
sync => "full", target => $dst_path); };
}
eval {
while (1) {
my $stats = vm_mon_cmd($vmid, "query-block-jobs");
my $stat = @$stats[0];
die "mirroring job seem to have die. Maybe do you have bad sectors?" if !$stat;
die "error job is not mirroring" if $stat->{type} ne "mirror";
my $transferred = $stat->{offset};
my $total = $stat->{len};
my $remaining = $total - $transferred;
my $percent = sprintf "%.2f", ($transferred * 100 / $total);
print "transferred: $transferred bytes remaining: $remaining bytes total: $total bytes progression: $percent %\n";
last if ($stat->{len} == $stat->{offset});
if ($old_len == $stat->{offset}) {
if ($maxwait && $count > $maxwait) {
# if writes to disk occurs the disk needs to be freezed
# to be able to complete the migration
vm_suspend($vmid,1);
$count = 0;
$frozen = 1;
} else {
$count++ unless $frozen;
}
} elsif ($frozen) {
vm_resume($vmid,1);
$count = 0;
}
$old_len = $stat->{offset};
sleep 1;
}
if ($vmiddst == $vmid) {
# switch the disk if source and destination are on the same guest
vm_mon_cmd($vmid, "block-job-complete", device => "drive-$drive");
}
};
if (my $err = $@) {
eval { vm_mon_cmd($vmid, "block-job-cancel", device => "drive-$drive"); };
die "mirroring error: $err";
}
if ($vmiddst != $vmid) {
# if we clone a disk for a new target vm, we don't switch the disk
vm_mon_cmd($vmid, "block-job-cancel", device => "drive-$drive");
}
}
}
sub clone_disk {
my ($storecfg, $vmid, $running, $drivename, $drive, $snapname,
$newvmid, $storage, $format, $full, $newvollist) = @_;
my $newvolid;
if (!$full) {
print "create linked clone of drive $drivename ($drive->{file})\n";
$newvolid = PVE::Storage::vdisk_clone($storecfg, $drive->{file}, $newvmid);
push @$newvollist, $newvolid;
} else {
my ($storeid, $volname) = PVE::Storage::parse_volume_id($drive->{file});
$storeid = $storage if $storage;
my ($defFormat, $validFormats) = PVE::Storage::storage_default_format($storecfg, $storeid);
if (!$format) {
$format = $drive->{format} || $defFormat;
}
# test if requested format is supported - else use default
my $supported = grep { $_ eq $format } @$validFormats;
$format = $defFormat if !$supported;
my ($size) = PVE::Storage::volume_size_info($storecfg, $drive->{file}, 3);
print "create full clone of drive $drivename ($drive->{file})\n";
$newvolid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $newvmid, $format, undef, ($size/1024));
push @$newvollist, $newvolid;
if (!$running || $snapname) {
qemu_img_convert($drive->{file}, $newvolid, $size, $snapname);
} else {
qemu_drive_mirror($vmid, $drivename, $newvolid, $newvmid);
}
}
my ($size) = PVE::Storage::volume_size_info($storecfg, $newvolid, 3);
my $disk = $drive;
$disk->{format} = undef;
$disk->{file} = $newvolid;
$disk->{size} = $size;
return $disk;
}
2013-06-05 11:52:22 +04:00
# this only works if VM is running
sub get_current_qemu_machine {
my ($vmid) = @_;
my $cmd = { execute => 'query-machines', arguments => {} };
my $res = PVE::QemuServer::vm_qmp_command($vmid, $cmd);
2013-06-05 11:52:22 +04:00
my ($current, $default);
foreach my $e (@$res) {
$default = $e->{name} if $e->{'is-default'};
$current = $e->{name} if $e->{'is-current'};
}
# fallback to the default machine if current is not supported by qemu
return $current || $default || 'pc';
}
2011-08-23 09:47:04 +04:00
1;