5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-02-03 13:47:15 +03:00
qemu-server/PVE/API2/Qemu.pm

1630 lines
42 KiB
Perl
Raw Normal View History

2011-08-23 07:47:04 +02:00
package PVE::API2::Qemu;
use strict;
use warnings;
use Cwd 'abs_path';
2011-08-23 07:47:04 +02:00
use PVE::Cluster;
use PVE::SafeSyslog;
use PVE::Tools qw(extract_param);
use PVE::Exception qw(raise raise_param_exc);
use PVE::Storage;
use PVE::JSONSchema qw(get_standard_option);
use PVE::RESTHandler;
use PVE::QemuServer;
use PVE::QemuMigrate;
2011-08-23 07:47:04 +02:00
use PVE::RPCEnvironment;
use PVE::AccessControl;
use PVE::INotify;
use Data::Dumper; # fixme: remove
use base qw(PVE::RESTHandler);
my $opt_force_description = "Force physical removal. Without this, we simple remove the disk from the config file and create an additional configuration entry called 'unused[n]', which contains the volume ID. Unlink of unused[n] always cause physical removal.";
my $resolve_cdrom_alias = sub {
my $param = shift;
if (my $value = $param->{cdrom}) {
$value .= ",media=cdrom" if $value !~ m/media=/;
$param->{ide2} = $value;
delete $param->{cdrom};
}
};
2012-02-02 06:39:38 +01:00
my $check_volume_access = sub {
my ($rpcenv, $authuser, $storecfg, $vmid, $volid, $pool) = @_;
my $path;
if (my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1)) {
my ($ownervm, $vtype);
($path, $ownervm, $vtype) = PVE::Storage::path($storecfg, $volid);
if ($vtype eq 'iso' || $vtype eq 'vztmpl') {
# we simply allow access
} elsif (!$ownervm || ($ownervm != $vmid)) {
# allow if we are Datastore administrator
$rpcenv->check_storage_perm($authuser, $vmid, $pool, $sid, [ 'Datastore.Allocate' ]);
}
} else {
die "Only root can pass arbitrary filesystem paths."
if $authuser ne 'root@pam';
$path = abs_path($volid);
}
return $path;
};
my $check_storage_access = sub {
my ($rpcenv, $authuser, $storecfg, $vmid, $pool, $settings, $default_storage) = @_;
2012-02-02 06:39:38 +01:00
PVE::QemuServer::foreach_drive($settings, sub {
my ($ds, $drive) = @_;
2012-02-02 06:39:38 +01:00
my $isCDROM = PVE::QemuServer::drive_is_cdrom($drive);
2012-02-02 06:39:38 +01:00
my $volid = $drive->{file};
2012-02-02 06:39:38 +01:00
2012-02-03 10:49:37 +01:00
if (!$volid || $volid eq 'none') {
# nothing to check
} elsif (!$isCDROM && ($volid =~ m/^(([^:\s]+):)?(\d+(\.\d+)?)$/)) {
2012-02-02 06:39:38 +01:00
my ($storeid, $size) = ($2 || $default_storage, $3);
die "no storage ID specified (and no default storage)\n" if !$storeid;
$rpcenv->check_storage_perm($authuser, $vmid, $pool, $storeid, [ 'Datastore.AllocateSpace' ]);
} else {
my $path = &$check_volume_access($rpcenv, $authuser, $storecfg, $vmid, $volid, $pool);
die "image '$path' does not exists\n" if (!(-f $path || -b $path));
}
});
};
2012-02-02 06:39:38 +01:00
# Note: $pool is only needed when creating a VM, because pool permissions
# are automatically inherited if VM already exists inside a pool.
my $create_disks = sub {
my ($rpcenv, $authuser, $conf, $storecfg, $vmid, $pool, $settings, $default_storage) = @_;
2012-02-02 06:39:38 +01:00
my $vollist = [];
my $res = {};
PVE::QemuServer::foreach_drive($settings, sub {
my ($ds, $disk) = @_;
my $volid = $disk->{file};
2012-02-03 10:49:37 +01:00
if (!$volid || $volid eq 'none') {
$res->{$ds} = $settings->{$ds};
} elsif ($volid =~ m/^(([^:\s]+):)?(\d+(\.\d+)?)$/) {
my ($storeid, $size) = ($2 || $default_storage, $3);
die "no storage ID specified (and no default storage)\n" if !$storeid;
my $defformat = PVE::Storage::storage_default_format($storecfg, $storeid);
my $fmt = $disk->{format} || $defformat;
2012-02-02 06:39:38 +01:00
my $volid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $vmid,
$fmt, undef, $size*1024*1024);
$disk->{file} = $volid;
push @$vollist, $volid;
delete $disk->{format}; # no longer needed
$res->{$ds} = PVE::QemuServer::print_drive($vmid, $disk);
} else {
my $path = &$check_volume_access($rpcenv, $authuser, $storecfg, $vmid, $volid, $pool);
die "image '$path' does not exists\n" if (!(-f $path || -b $path));
2012-02-03 10:49:37 +01:00
$res->{$ds} = $settings->{$ds};
2012-02-02 06:39:38 +01:00
}
});
2012-02-02 06:39:38 +01:00
# free allocated images on error
if (my $err = $@) {
syslog('err', "VM $vmid creating disks failed");
foreach my $volid (@$vollist) {
eval { PVE::Storage::vdisk_free($storecfg, $volid); };
warn $@ if $@;
}
die $err;
}
# modify vm config if everything went well
foreach my $ds (keys %$res) {
$conf->{$ds} = $res->{$ds};
2012-02-02 06:39:38 +01:00
}
return $vollist;
};
my $check_vm_modify_config_perm = sub {
my ($rpcenv, $authuser, $vmid, $pool, $key_list) = @_;
2012-02-02 06:39:38 +01:00
return 1 if $authuser ne 'root@pam';
foreach my $opt (@$key_list) {
2012-02-02 06:39:38 +01:00
# disk checks need to be done somewhere else
next if PVE::QemuServer::valid_drivename($opt);
if ($opt eq 'sockets' || $opt eq 'cores' ||
$opt eq 'cpu' || $opt eq 'smp' ||
$opt eq 'cpuimit' || $opt eq 'cpuunits') {
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.CPU']);
} elsif ($opt eq 'boot' || $opt eq 'bootdisk') {
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Disk']);
} elsif ($opt eq 'memory' || $opt eq 'balloon') {
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Memory']);
} elsif ($opt eq 'args' || $opt eq 'lock') {
die "only root can set '$opt' config\n";
} elsif ($opt eq 'cpu' || $opt eq 'kvm' || $opt eq 'acpi' ||
$opt eq 'vga' || $opt eq 'watchdog' || $opt eq 'tablet') {
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.HWType']);
} elsif ($opt =~ m/^net\d+$/) {
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Network']);
} else {
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Options']);
}
}
return 1;
};
2011-08-23 07:47:04 +02:00
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vmlist',
path => '',
2011-08-23 07:47:04 +02:00
method => 'GET',
description => "Virtual machine index (per node).",
2012-02-02 06:39:38 +01:00
permissions => {
description => "Only list VMs where you have VM.Audit permissons on /vms/<vmid>.",
user => 'all',
},
2011-08-23 07:47:04 +02:00
proxyto => 'node',
protected => 1, # qemu pid files are only readable by root
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
},
},
returns => {
type => 'array',
items => {
type => "object",
properties => {},
},
links => [ { rel => 'child', href => "{vmid}" } ],
},
code => sub {
my ($param) = @_;
2012-02-02 06:39:38 +01:00
my $rpcenv = PVE::RPCEnvironment::get();
my $authuser = $rpcenv->get_user();
2011-08-23 07:47:04 +02:00
my $vmstatus = PVE::QemuServer::vmstatus();
2012-02-02 06:39:38 +01:00
my $res = [];
foreach my $vmid (keys %$vmstatus) {
next if !$rpcenv->check($authuser, "/vms/$vmid", [ 'VM.Audit' ], 1);
my $data = $vmstatus->{$vmid};
$data->{vmid} = $vmid;
push @$res, $data;
}
2011-08-23 07:47:04 +02:00
2012-02-02 06:39:38 +01:00
return $res;
2011-08-23 07:47:04 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'create_vm',
path => '',
2011-08-23 07:47:04 +02:00
method => 'POST',
description => "Create or restore a virtual machine.",
2012-02-02 06:39:38 +01:00
permissions => {
description => "You need 'VM.Allocate' permissions on /vms/{vmid} or on the VM pool /pool/{pool}. If you create disks you need 'Datastore.AllocateSpace' on any used storage.",
check => [ 'or',
[ 'perm', '/vms/{vmid}', ['VM.Allocate']],
[ 'perm', '/pool/{pool}', ['VM.Allocate'], require_param => 'pool'],
],
},
2011-08-23 07:47:04 +02:00
protected => 1,
proxyto => 'node',
parameters => {
additionalProperties => 0,
properties => PVE::QemuServer::json_config_properties(
{
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
archive => {
description => "The backup file.",
type => 'string',
optional => 1,
maxLength => 255,
},
storage => get_standard_option('pve-storage-id', {
description => "Default storage.",
optional => 1,
}),
force => {
2012-01-27 09:35:26 +01:00
optional => 1,
type => 'boolean',
description => "Allow to overwrite existing VM.",
requires => 'archive',
},
unique => {
2012-01-27 09:35:26 +01:00
optional => 1,
type => 'boolean',
description => "Assign a unique random ethernet address.",
requires => 'archive',
},
2012-02-02 06:39:38 +01:00
pool => {
optional => 1,
type => 'string', format => 'pve-poolid',
description => "Add the VM to the specified pool.",
},
2011-08-23 07:47:04 +02:00
}),
},
2012-01-27 09:35:26 +01:00
returns => {
2011-10-10 13:17:40 +02:00
type => 'string',
},
2011-08-23 07:47:04 +02:00
code => sub {
my ($param) = @_;
2011-10-10 13:17:40 +02:00
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-10-10 13:17:40 +02:00
2011-08-23 07:47:04 +02:00
my $node = extract_param($param, 'node');
my $vmid = extract_param($param, 'vmid');
my $archive = extract_param($param, 'archive');
my $storage = extract_param($param, 'storage');
my $force = extract_param($param, 'force');
my $unique = extract_param($param, 'unique');
2012-02-02 06:39:38 +01:00
my $pool = extract_param($param, 'pool');
2011-08-23 07:47:04 +02:00
my $filename = PVE::QemuServer::config_file($vmid);
2012-01-27 09:35:26 +01:00
my $storecfg = PVE::Storage::config();
2011-08-23 07:47:04 +02:00
PVE::Cluster::check_cfs_quorum();
2011-08-23 07:47:04 +02:00
2012-02-02 06:39:38 +01:00
if (defined($pool)) {
$rpcenv->check_pool_exist($pool);
$rpcenv->check_perm_modify($authuser, "/pool/$pool");
}
$rpcenv->check_storage_perm($authuser, $vmid, $pool, $storage, [ 'Datastore.AllocateSpace' ])
if defined($storage);
2012-01-27 09:35:26 +01:00
if (!$archive) {
&$resolve_cdrom_alias($param);
2011-08-23 07:47:04 +02:00
&$check_storage_access($rpcenv, $authuser, $storecfg, $vmid, $pool, $param, $storage);
&$check_vm_modify_config_perm($rpcenv, $authuser, $vmid, $pool, [ keys %$param]);
foreach my $opt (keys %$param) {
if (PVE::QemuServer::valid_drivename($opt)) {
my $drive = PVE::QemuServer::parse_drive($opt, $param->{$opt});
raise_param_exc({ $opt => "unable to parse drive options" }) if !$drive;
2012-01-27 09:35:26 +01:00
PVE::QemuServer::cleanup_drive_path($opt, $storecfg, $drive);
$param->{$opt} = PVE::QemuServer::print_drive($vmid, $drive);
}
2011-08-23 07:47:04 +02:00
}
PVE::QemuServer::add_random_macs($param);
} else {
my $keystr = join(' ', keys %$param);
2011-10-20 10:51:28 +02:00
raise_param_exc({ archive => "option conflicts with other options ($keystr)"}) if $keystr;
if ($archive eq '-') {
2012-01-27 09:35:26 +01:00
die "pipe requires cli environment\n"
&& $rpcenv->{type} ne 'cli';
} else {
2012-02-02 06:39:38 +01:00
my $path = &$check_volume_access($rpcenv, $authuser, $storecfg, $vmid, $archive, $pool);
die "can't find archive file '$archive'\n" if !($path && -f $path);
$archive = $path;
}
2011-08-23 07:47:04 +02:00
}
my $restorefn = sub {
if (-f $filename) {
2012-01-27 09:35:26 +01:00
die "unable to restore vm $vmid: config file already exists\n"
if !$force;
2012-01-27 09:35:26 +01:00
die "unable to restore vm $vmid: vm is running\n"
if PVE::QemuServer::check_running($vmid);
# destroy existing data - keep empty config
PVE::QemuServer::destroy_vm($storecfg, $vmid, 1);
}
my $realcmd = sub {
2012-02-02 06:39:38 +01:00
PVE::QemuServer::restore_archive($archive, $vmid, $authuser, {
storage => $storage,
2012-02-02 06:39:38 +01:00
pool => $pool,
unique => $unique });
};
2012-02-02 06:39:38 +01:00
return $rpcenv->fork_worker('qmrestore', $vmid, $authuser, $realcmd);
};
2011-08-23 07:47:04 +02:00
my $createfn = sub {
# second test (after locking test is accurate)
2012-01-27 09:35:26 +01:00
die "unable to create vm $vmid: config file already exists\n"
2011-08-23 07:47:04 +02:00
if -f $filename;
2011-10-10 13:17:40 +02:00
my $realcmd = sub {
2011-08-23 07:47:04 +02:00
2011-10-10 13:17:40 +02:00
my $vollist = [];
2011-08-23 07:47:04 +02:00
my $conf = $param;
2011-10-10 13:17:40 +02:00
eval {
$vollist = &$create_disks($rpcenv, $authuser, $conf, $storecfg, $vmid, $pool, $param, $storage);
2011-08-23 07:47:04 +02:00
2011-10-10 13:17:40 +02:00
# try to be smart about bootdisk
my @disks = PVE::QemuServer::disknames();
my $firstdisk;
foreach my $ds (reverse @disks) {
next if !$conf->{$ds};
my $disk = PVE::QemuServer::parse_drive($ds, $conf->{$ds});
2011-10-10 13:17:40 +02:00
next if PVE::QemuServer::drive_is_cdrom($disk);
$firstdisk = $ds;
}
2011-08-23 07:47:04 +02:00
if (!$conf->{bootdisk} && $firstdisk) {
$conf->{bootdisk} = $firstdisk;
2011-10-10 13:17:40 +02:00
}
2011-08-23 07:47:04 +02:00
PVE::QemuServer::update_conf_nolock($vmid, $conf);
2011-10-10 13:17:40 +02:00
};
my $err = $@;
2011-08-23 07:47:04 +02:00
2011-10-10 13:17:40 +02:00
if ($err) {
foreach my $volid (@$vollist) {
eval { PVE::Storage::vdisk_free($storecfg, $volid); };
warn $@ if $@;
}
die "create failed - $err";
}
};
2012-02-02 06:39:38 +01:00
return $rpcenv->fork_worker('qmcreate', $vmid, $authuser, $realcmd);
2011-10-10 13:17:40 +02:00
};
return PVE::QemuServer::lock_config($vmid, $archive ? $restorefn : $createfn);
2011-08-23 07:47:04 +02:00
}});
__PACKAGE__->register_method({
name => 'vmdiridx',
2012-01-27 09:35:26 +01:00
path => '{vmid}',
2011-08-23 07:47:04 +02:00
method => 'GET',
proxyto => 'node',
description => "Directory index",
2012-02-02 06:39:38 +01:00
permissions => {
user => 'all',
},
2011-08-23 07:47:04 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
},
},
returns => {
type => 'array',
items => {
type => "object",
properties => {
subdir => { type => 'string' },
},
},
links => [ { rel => 'child', href => "{subdir}" } ],
},
code => sub {
my ($param) = @_;
my $res = [
{ subdir => 'config' },
{ subdir => 'status' },
{ subdir => 'unlink' },
{ subdir => 'vncproxy' },
{ subdir => 'migrate' },
2011-08-23 07:47:04 +02:00
{ subdir => 'rrd' },
{ subdir => 'rrddata' },
2011-11-09 08:26:46 +01:00
{ subdir => 'monitor' },
2011-08-23 07:47:04 +02:00
];
2012-01-27 09:35:26 +01:00
2011-08-23 07:47:04 +02:00
return $res;
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'rrd',
path => '{vmid}/rrd',
2011-08-23 07:47:04 +02:00
method => 'GET',
protected => 1, # fixme: can we avoid that?
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
2011-08-23 07:47:04 +02:00
},
description => "Read VM RRD statistics (returns PNG)",
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
timeframe => {
description => "Specify the time frame you are interested in.",
type => 'string',
enum => [ 'hour', 'day', 'week', 'month', 'year' ],
},
ds => {
description => "The list of datasources you want to display.",
type => 'string', format => 'pve-configid-list',
},
cf => {
description => "The RRD consolidation function",
type => 'string',
enum => [ 'AVERAGE', 'MAX' ],
optional => 1,
},
},
},
returns => {
type => "object",
properties => {
filename => { type => 'string' },
},
},
code => sub {
my ($param) = @_;
return PVE::Cluster::create_rrd_graph(
2012-01-27 09:35:26 +01:00
"pve2-vm/$param->{vmid}", $param->{timeframe},
2011-08-23 07:47:04 +02:00
$param->{ds}, $param->{cf});
2012-01-27 09:35:26 +01:00
2011-08-23 07:47:04 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'rrddata',
path => '{vmid}/rrddata',
2011-08-23 07:47:04 +02:00
method => 'GET',
protected => 1, # fixme: can we avoid that?
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
2011-08-23 07:47:04 +02:00
},
description => "Read VM RRD statistics",
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
timeframe => {
description => "Specify the time frame you are interested in.",
type => 'string',
enum => [ 'hour', 'day', 'week', 'month', 'year' ],
},
cf => {
description => "The RRD consolidation function",
type => 'string',
enum => [ 'AVERAGE', 'MAX' ],
optional => 1,
},
},
},
returns => {
type => "array",
items => {
type => "object",
properties => {},
},
},
code => sub {
my ($param) = @_;
return PVE::Cluster::create_rrd_data(
"pve2-vm/$param->{vmid}", $param->{timeframe}, $param->{cf});
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vm_config',
path => '{vmid}/config',
2011-08-23 07:47:04 +02:00
method => 'GET',
proxyto => 'node',
description => "Get virtual machine configuration.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
},
2011-08-23 07:47:04 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
},
},
2012-01-27 09:35:26 +01:00
returns => {
2011-08-23 07:47:04 +02:00
type => "object",
properties => {
digest => {
type => 'string',
description => 'SHA1 digest of configuration file. This can be used to prevent concurrent modifications.',
}
},
2011-08-23 07:47:04 +02:00
},
code => sub {
my ($param) = @_;
my $conf = PVE::QemuServer::load_config($param->{vmid});
return $conf;
}});
my $vm_is_volid_owner = sub {
my ($storecfg, $vmid, $volid) =@_;
if ($volid !~ m|^/|) {
my ($path, $owner);
eval { ($path, $owner) = PVE::Storage::path($storecfg, $volid); };
if ($owner && ($owner == $vmid)) {
return 1;
}
}
return undef;
};
my $test_deallocate_drive = sub {
my ($storecfg, $vmid, $key, $drive, $force) = @_;
if (!PVE::QemuServer::drive_is_cdrom($drive)) {
my $volid = $drive->{file};
if (&$vm_is_volid_owner($storecfg, $vmid, $volid)) {
if ($force || $key =~ m/^unused/) {
my $sid = PVE::Storage::parse_volume_id($volid);
return $sid;
}
}
}
return undef;
};
my $delete_drive = sub {
my ($conf, $storecfg, $vmid, $key, $drive, $force) = @_;
if (!PVE::QemuServer::drive_is_cdrom($drive)) {
my $volid = $drive->{file};
if (&$vm_is_volid_owner($storecfg, $vmid, $volid)) {
if ($force || $key =~ m/^unused/) {
eval { PVE::Storage::vdisk_free($storecfg, $volid); };
warn $@ if $@;
} else {
PVE::QemuServer::add_unused_volume($conf, $volid, $vmid);
}
delete $conf->{$key};
}
}
};
my $vmconfig_delete_option = sub {
my ($rpcenv, $authuser, $conf, $storecfg, $vmid, $opt, $force) = @_;
return if !defined($conf->{$opt});
my $isDisk = PVE::QemuServer::valid_drivename($opt)|| ($opt =~ m/^unused/);
if ($isDisk) {
$rpcenv->check_vm_perm($authuser, $vmid, undef, ['VM.Config.Disk']);
my $drive = PVE::QemuServer::parse_drive($opt, $conf->{$opt});
if (my $sid = &$test_deallocate_drive($storecfg, $vmid, $opt, $drive, $force)) {
$rpcenv->check_storage_perm($authuser, $vmid, undef, $sid, [ 'Datastore.Allocate' ]);
}
}
die "error hot-unplug $opt" if !PVE::QemuServer::vm_deviceunplug($vmid, $conf, $opt);
if ($isDisk) {
my $drive = PVE::QemuServer::parse_drive($opt, $conf->{$opt});
&$delete_drive($conf, $storecfg, $vmid, $opt, $drive, $force);
} else {
delete $conf->{$opt};
}
PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
};
my $vmconfig_update_disk = sub {
my ($rpcenv, $authuser, $conf, $storecfg, $vmid, $opt, $value, $force) = @_;
my $drive = PVE::QemuServer::parse_drive($opt, $value);
if (PVE::QemuServer::drive_is_cdrom($drive)) { #cdrom
$rpcenv->check_vm_perm($authuser, $vmid, undef, ['VM.Config.CDROM']);
} else {
$rpcenv->check_vm_perm($authuser, $vmid, undef, ['VM.Config.Disk']);
}
if ($conf->{$opt}) {
if (my $old_drive = PVE::QemuServer::parse_drive($opt, $conf->{$opt})) {
my $media = $drive->{media} || 'disk';
my $oldmedia = $old_drive->{media} || 'disk';
die "unable to change media type\n" if $media ne $oldmedia;
if (!PVE::QemuServer::drive_is_cdrom($old_drive) &&
($drive->{file} ne $old_drive->{file})) { # delete old disks
&$vmconfig_delete_option($rpcenv, $authuser, $conf, $storecfg, $vmid, $opt, $force);
$conf = PVE::QemuServer::load_config($vmid); # update/reload
}
}
}
&$create_disks($rpcenv, $authuser, $conf, $storecfg, $vmid, undef, {$opt => $value});
PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
$conf = PVE::QemuServer::load_config($vmid); # update/reload
$drive = PVE::QemuServer::parse_drive($opt, $conf->{$opt});
if (PVE::QemuServer::drive_is_cdrom($drive)) { # cdrom
if (PVE::QemuServer::check_running($vmid)) {
if ($drive->{file} eq 'none') {
PVE::QemuServer::vm_monitor_command($vmid, "eject -f drive-$opt", 0);
} else {
my $path = PVE::QemuServer::get_iso_path($storecfg, $vmid, $drive->{file});
PVE::QemuServer::vm_monitor_command($vmid, "eject -f drive-$opt", 0); #force eject if locked
PVE::QemuServer::vm_monitor_command($vmid, "change drive-$opt \"$path\"", 0) if $path;
}
}
} else { # hotplug new disks
die "error hotplug $opt" if !PVE::QemuServer::vm_deviceplug($storecfg, $conf, $vmid, $opt, $drive);
}
};
my $vmconfig_update_net = sub {
my ($rpcenv, $authuser, $conf, $storecfg, $vmid, $opt, $value) = @_;
if ($conf->{$opt}) {
#if online update, then unplug first
die "error hot-unplug $opt for update" if !PVE::QemuServer::vm_deviceunplug($vmid, $conf, $opt);
}
$conf->{$opt} = $value;
PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
$conf = PVE::QemuServer::load_config($vmid); # update/reload
my $net = PVE::QemuServer::parse_net($conf->{$opt});
die "error hotplug $opt" if !PVE::QemuServer::vm_deviceplug($storecfg, $conf, $vmid, $opt, $net);
};
2012-02-02 06:39:38 +01:00
my $vm_config_perm_list = [
'VM.Config.Disk',
'VM.Config.CDROM',
'VM.Config.CPU',
'VM.Config.Memory',
'VM.Config.Network',
'VM.Config.HWType',
'VM.Config.Options',
];
2011-08-23 07:47:04 +02:00
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'update_vm',
path => '{vmid}/config',
2011-08-23 07:47:04 +02:00
method => 'PUT',
protected => 1,
proxyto => 'node',
description => "Set virtual machine options.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', $vm_config_perm_list, any => 1],
},
2011-08-23 07:47:04 +02:00
parameters => {
additionalProperties => 0,
properties => PVE::QemuServer::json_config_properties(
{
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
skiplock => get_standard_option('skiplock'),
2011-08-23 07:47:04 +02:00
delete => {
type => 'string', format => 'pve-configid-list',
description => "A list of settings you want to delete.",
optional => 1,
},
force => {
type => 'boolean',
description => $opt_force_description,
optional => 1,
requires => 'delete',
},
digest => {
type => 'string',
description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.',
maxLength => 40,
2012-01-27 09:35:26 +01:00
optional => 1,
}
2011-08-23 07:47:04 +02:00
}),
},
returns => { type => 'null'},
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-08-23 07:47:04 +02:00
my $node = extract_param($param, 'node');
my $vmid = extract_param($param, 'vmid');
2011-10-10 13:17:40 +02:00
my $digest = extract_param($param, 'digest');
my @paramarr = (); # used for log message
foreach my $key (keys %$param) {
push @paramarr, "-$key", $param->{$key};
}
2011-08-23 07:47:04 +02:00
my $skiplock = extract_param($param, 'skiplock');
2012-01-27 09:35:26 +01:00
raise_param_exc({ skiplock => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $skiplock && $authuser ne 'root@pam';
2011-08-23 07:47:04 +02:00
my $delete_str = extract_param($param, 'delete');
2011-08-23 07:47:04 +02:00
my $force = extract_param($param, 'force');
die "no options specified\n" if !$delete_str && !scalar(keys %$param);
my $storecfg = PVE::Storage::config();
&$resolve_cdrom_alias($param);
# now try to verify all parameters
my @delete = ();
foreach my $opt (PVE::Tools::split_list($delete_str)) {
$opt = 'ide2' if $opt eq 'cdrom';
raise_param_exc({ delete => "you can't use '-$opt' and " .
"-delete $opt' at the same time" })
if defined($param->{$opt});
if (!PVE::QemuServer::option_exists($opt)) {
raise_param_exc({ delete => "unknown option '$opt'" });
}
push @delete, $opt;
}
2011-08-23 07:47:04 +02:00
foreach my $opt (keys %$param) {
if (PVE::QemuServer::valid_drivename($opt)) {
# cleanup drive path
my $drive = PVE::QemuServer::parse_drive($opt, $param->{$opt});
PVE::QemuServer::cleanup_drive_path($opt, $storecfg, $drive);
$param->{$opt} = PVE::QemuServer::print_drive($vmid, $drive);
} elsif ($opt =~ m/^net(\d+)$/) {
# add macaddr
my $net = PVE::QemuServer::parse_net($param->{$opt});
$param->{$opt} = PVE::QemuServer::print_net($net);
}
}
2011-08-23 07:47:04 +02:00
&$check_vm_modify_config_perm($rpcenv, $authuser, $vmid, undef, [@delete]);
&$check_vm_modify_config_perm($rpcenv, $authuser, $vmid, undef, [keys %$param]);
&$check_storage_access($rpcenv, $authuser, $storecfg, $vmid, undef, $param);
2011-08-23 07:47:04 +02:00
2012-01-27 09:53:48 +01:00
my $updatefn = sub {
2011-08-23 07:47:04 +02:00
2012-01-27 09:53:48 +01:00
my $conf = PVE::QemuServer::load_config($vmid);
2011-08-23 07:47:04 +02:00
2012-01-27 09:53:48 +01:00
die "checksum missmatch (file change by other user?)\n"
if $digest && $digest ne $conf->{digest};
2011-08-23 07:47:04 +02:00
2012-01-27 09:53:48 +01:00
PVE::QemuServer::check_lock($conf) if !$skiplock;
2011-08-23 07:47:04 +02:00
2012-02-02 06:39:38 +01:00
PVE::Cluster::log_msg('info', $authuser, "update VM $vmid: " . join (' ', @paramarr));
foreach my $opt (@delete) { # delete
$conf = PVE::QemuServer::load_config($vmid); # update/reload
&$vmconfig_delete_option($rpcenv, $authuser, $conf, $storecfg, $vmid, $opt, $force);
2012-01-27 09:53:48 +01:00
}
2011-08-23 07:47:04 +02:00
foreach my $opt (keys %$param) { # add/change
2011-08-23 07:47:04 +02:00
$conf = PVE::QemuServer::load_config($vmid); # update/reload
2011-08-23 07:47:04 +02:00
next if $conf->{$opt} && ($param->{$opt} eq $conf->{$opt}); # skip if nothing changed
if (PVE::QemuServer::valid_drivename($opt)) {
&$vmconfig_update_disk($rpcenv, $authuser, $conf, $storecfg, $vmid,
$opt, $param->{$opt}, $force);
} elsif ($opt =~ m/^net(\d+)$/) { #nics
&$vmconfig_update_net($rpcenv, $authuser, $conf, $storecfg, $vmid,
$opt, $param->{$opt});
} else {
$conf->{$opt} = $param->{$opt};
PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
}
2012-01-27 09:53:48 +01:00
}
};
PVE::QemuServer::lock_config($vmid, $updatefn);
2011-08-23 07:47:04 +02:00
return undef;
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'destroy_vm',
path => '{vmid}',
2011-08-23 07:47:04 +02:00
method => 'DELETE',
protected => 1,
proxyto => 'node',
description => "Destroy the vm (also delete all used/owned volumes).",
2012-02-02 06:39:38 +01:00
permissions => {
check => [ 'perm', '/vms/{vmid}', ['VM.Allocate']],
},
2011-08-23 07:47:04 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
skiplock => get_standard_option('skiplock'),
2011-08-23 07:47:04 +02:00
},
},
2012-01-27 09:35:26 +01:00
returns => {
2011-10-10 13:17:40 +02:00
type => 'string',
},
2011-08-23 07:47:04 +02:00
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-08-23 07:47:04 +02:00
my $vmid = $param->{vmid};
my $skiplock = $param->{skiplock};
2012-01-27 09:35:26 +01:00
raise_param_exc({ skiplock => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $skiplock && $authuser ne 'root@pam';
2011-08-23 07:47:04 +02:00
2011-10-10 13:17:40 +02:00
# test if VM exists
my $conf = PVE::QemuServer::load_config($vmid);
2012-01-27 09:35:26 +01:00
my $storecfg = PVE::Storage::config();
2011-08-23 07:47:04 +02:00
2011-10-10 13:17:40 +02:00
my $realcmd = sub {
my $upid = shift;
syslog('info', "destroy VM $vmid: $upid\n");
2011-10-10 13:17:40 +02:00
PVE::QemuServer::vm_destroy($storecfg, $vmid, $skiplock);
};
2011-08-23 07:47:04 +02:00
2012-02-02 06:39:38 +01:00
return $rpcenv->fork_worker('qmdestroy', $vmid, $authuser, $realcmd);
2011-08-23 07:47:04 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'unlink',
path => '{vmid}/unlink',
2011-08-23 07:47:04 +02:00
method => 'PUT',
protected => 1,
proxyto => 'node',
description => "Unlink/delete disk images.",
2012-02-02 06:39:38 +01:00
permissions => {
check => [ 'perm', '/vms/{vmid}', ['VM.Config.Disk']],
},
2011-08-23 07:47:04 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
idlist => {
type => 'string', format => 'pve-configid-list',
description => "A list of disk IDs you want to delete.",
},
force => {
type => 'boolean',
description => $opt_force_description,
optional => 1,
},
},
},
returns => { type => 'null'},
code => sub {
my ($param) = @_;
$param->{delete} = extract_param($param, 'idlist');
__PACKAGE__->update_vm($param);
return undef;
}});
my $sslcert;
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vncproxy',
path => '{vmid}/vncproxy',
2011-08-23 07:47:04 +02:00
method => 'POST',
protected => 1,
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
2011-08-23 07:47:04 +02:00
},
description => "Creates a TCP VNC proxy connections.",
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
},
},
2012-01-27 09:35:26 +01:00
returns => {
2011-08-23 07:47:04 +02:00
additionalProperties => 0,
properties => {
user => { type => 'string' },
ticket => { type => 'string' },
cert => { type => 'string' },
port => { type => 'integer' },
upid => { type => 'string' },
},
},
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-08-23 07:47:04 +02:00
my $vmid = $param->{vmid};
my $node = $param->{node};
2012-01-19 09:31:40 +01:00
my $authpath = "/vms/$vmid";
2012-02-02 06:39:38 +01:00
my $ticket = PVE::AccessControl::assemble_vnc_ticket($authuser, $authpath);
2012-01-19 09:31:40 +01:00
2011-08-23 07:47:04 +02:00
$sslcert = PVE::Tools::file_get_contents("/etc/pve/pve-root-ca.pem", 8192)
if !$sslcert;
my $port = PVE::Tools::next_vnc_port();
my $remip;
2012-01-27 09:35:26 +01:00
2011-11-03 07:39:01 +01:00
if ($node ne 'localhost' && $node ne PVE::INotify::nodename()) {
2011-08-23 07:47:04 +02:00
$remip = PVE::Cluster::remote_node_ip($node);
}
# NOTE: kvm VNC traffic is already TLS encrypted,
# so we select the fastest chipher here (or 'none'?)
my $remcmd = $remip ? ['/usr/bin/ssh', '-T', '-o', 'BatchMode=yes',
'-c', 'blowfish-cbc', $remip] : [];
2012-01-27 09:35:26 +01:00
my $timeout = 10;
2011-08-23 07:47:04 +02:00
my $realcmd = sub {
my $upid = shift;
syslog('info', "starting vnc proxy $upid\n");
my $qmcmd = [@$remcmd, "/usr/sbin/qm", 'vncproxy', $vmid];
my $qmstr = join(' ', @$qmcmd);
# also redirect stderr (else we get RFB protocol errors)
2011-10-05 10:16:20 +02:00
my $cmd = ['/bin/nc', '-l', '-p', $port, '-w', $timeout, '-c', "$qmstr 2>/dev/null"];
2011-08-23 07:47:04 +02:00
2011-10-05 10:16:20 +02:00
PVE::Tools::run_command($cmd);
2011-08-23 07:47:04 +02:00
return;
};
2012-02-02 06:39:38 +01:00
my $upid = $rpcenv->fork_worker('vncproxy', $vmid, $authuser, $realcmd);
2011-08-23 07:47:04 +02:00
return {
2012-02-02 06:39:38 +01:00
user => $authuser,
2011-08-23 07:47:04 +02:00
ticket => $ticket,
2012-01-27 09:35:26 +01:00
port => $port,
upid => $upid,
cert => $sslcert,
2011-08-23 07:47:04 +02:00
};
}});
2011-10-10 13:17:40 +02:00
__PACKAGE__->register_method({
name => 'vmcmdidx',
2012-01-27 09:35:26 +01:00
path => '{vmid}/status',
2011-10-10 13:17:40 +02:00
method => 'GET',
proxyto => 'node',
description => "Directory index",
2012-02-02 06:39:38 +01:00
permissions => {
user => 'all',
},
2011-10-10 13:17:40 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
},
},
returns => {
type => 'array',
items => {
type => "object",
properties => {
subdir => { type => 'string' },
},
},
links => [ { rel => 'child', href => "{subdir}" } ],
},
code => sub {
my ($param) = @_;
# test if VM exists
my $conf = PVE::QemuServer::load_config($param->{vmid});
my $res = [
{ subdir => 'current' },
{ subdir => 'start' },
{ subdir => 'stop' },
];
2012-01-27 09:35:26 +01:00
2011-10-10 13:17:40 +02:00
return $res;
}});
2011-08-23 07:47:04 +02:00
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vm_status',
2011-10-10 13:17:40 +02:00
path => '{vmid}/status/current',
2011-08-23 07:47:04 +02:00
method => 'GET',
proxyto => 'node',
protected => 1, # qemu pid files are only readable by root
description => "Get virtual machine status.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
},
2011-08-23 07:47:04 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
},
},
returns => { type => 'object' },
code => sub {
my ($param) = @_;
# test if VM exists
my $conf = PVE::QemuServer::load_config($param->{vmid});
my $vmstatus = PVE::QemuServer::vmstatus($param->{vmid});
2011-12-22 13:10:27 +01:00
my $status = $vmstatus->{$param->{vmid}};
2011-08-23 07:47:04 +02:00
2011-12-22 13:10:27 +01:00
my $cc = PVE::Cluster::cfs_read_file('cluster.conf');
if (PVE::Cluster::cluster_conf_lookup_pvevm($cc, 0, $param->{vmid}, 1)) {
$status->{ha} = 1;
} else {
$status->{ha} = 0;
}
return $status;
2011-08-23 07:47:04 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vm_start',
2011-10-10 13:17:40 +02:00
path => '{vmid}/status/start',
method => 'POST',
2011-08-23 07:47:04 +02:00
protected => 1,
proxyto => 'node',
2011-10-10 13:17:40 +02:00
description => "Start virtual machine.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
},
2011-08-23 07:47:04 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
skiplock => get_standard_option('skiplock'),
stateuri => get_standard_option('pve-qm-stateuri'),
2011-08-23 07:47:04 +02:00
},
},
2012-01-27 09:35:26 +01:00
returns => {
2011-10-10 13:17:40 +02:00
type => 'string',
},
2011-08-23 07:47:04 +02:00
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-08-23 07:47:04 +02:00
my $node = extract_param($param, 'node');
my $vmid = extract_param($param, 'vmid');
my $stateuri = extract_param($param, 'stateuri');
2012-01-27 09:35:26 +01:00
raise_param_exc({ stateuri => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $stateuri && $authuser ne 'root@pam';
2011-08-23 07:47:04 +02:00
my $skiplock = extract_param($param, 'skiplock');
2012-01-27 09:35:26 +01:00
raise_param_exc({ skiplock => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $skiplock && $authuser ne 'root@pam';
2011-08-23 07:47:04 +02:00
2012-01-27 09:35:26 +01:00
my $storecfg = PVE::Storage::config();
2011-10-10 13:17:40 +02:00
my $realcmd = sub {
my $upid = shift;
syslog('info', "start VM $vmid: $upid\n");
PVE::QemuServer::vm_start($storecfg, $vmid, $stateuri, $skiplock);
2011-10-10 13:17:40 +02:00
return;
};
2012-02-02 06:39:38 +01:00
return $rpcenv->fork_worker('qmstart', $vmid, $authuser, $realcmd);
2011-10-10 13:17:40 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vm_stop',
2011-10-10 13:17:40 +02:00
path => '{vmid}/status/stop',
method => 'POST',
protected => 1,
proxyto => 'node',
description => "Stop virtual machine.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
},
2011-10-10 13:17:40 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
skiplock => get_standard_option('skiplock'),
timeout => {
description => "Wait maximal timeout seconds.",
type => 'integer',
minimum => 0,
optional => 1,
},
keepActive => {
description => "Do not decativate storage volumes.",
type => 'boolean',
optional => 1,
default => 0,
}
2011-10-10 13:17:40 +02:00
},
},
2012-01-27 09:35:26 +01:00
returns => {
2011-10-10 13:17:40 +02:00
type => 'string',
},
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-10-10 13:17:40 +02:00
my $node = extract_param($param, 'node');
my $vmid = extract_param($param, 'vmid');
my $skiplock = extract_param($param, 'skiplock');
2012-01-27 09:35:26 +01:00
raise_param_exc({ skiplock => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $skiplock && $authuser ne 'root@pam';
2011-10-10 13:17:40 +02:00
my $keepActive = extract_param($param, 'keepActive');
2012-01-27 09:35:26 +01:00
raise_param_exc({ keepActive => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $keepActive && $authuser ne 'root@pam';
my $storecfg = PVE::Storage::config();
2011-10-10 13:17:40 +02:00
my $realcmd = sub {
my $upid = shift;
syslog('info', "stop VM $vmid: $upid\n");
2012-01-27 09:35:26 +01:00
PVE::QemuServer::vm_stop($storecfg, $vmid, $skiplock, 0,
$param->{timeout}, 0, 1, $keepActive);
2011-10-10 13:17:40 +02:00
return;
};
2012-02-02 06:39:38 +01:00
return $rpcenv->fork_worker('qmstop', $vmid, $authuser, $realcmd);
2011-10-10 13:17:40 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vm_reset',
2011-10-10 13:17:40 +02:00
path => '{vmid}/status/reset',
method => 'POST',
protected => 1,
proxyto => 'node',
description => "Reset virtual machine.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
},
2011-10-10 13:17:40 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
skiplock => get_standard_option('skiplock'),
},
},
2012-01-27 09:35:26 +01:00
returns => {
2011-10-10 13:17:40 +02:00
type => 'string',
},
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-10-10 13:17:40 +02:00
my $node = extract_param($param, 'node');
my $vmid = extract_param($param, 'vmid');
my $skiplock = extract_param($param, 'skiplock');
2012-01-27 09:35:26 +01:00
raise_param_exc({ skiplock => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $skiplock && $authuser ne 'root@pam';
2011-10-10 13:17:40 +02:00
die "VM $vmid not running\n" if !PVE::QemuServer::check_running($vmid);
2011-10-10 13:17:40 +02:00
my $realcmd = sub {
my $upid = shift;
2011-08-23 07:47:04 +02:00
PVE::QemuServer::vm_reset($vmid, $skiplock);
2011-10-10 13:17:40 +02:00
return;
};
2012-02-02 06:39:38 +01:00
return $rpcenv->fork_worker('qmreset', $vmid, $authuser, $realcmd);
2011-10-10 13:17:40 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vm_shutdown',
2011-10-10 13:17:40 +02:00
path => '{vmid}/status/shutdown',
method => 'POST',
protected => 1,
proxyto => 'node',
description => "Shutdown virtual machine.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
},
2011-10-10 13:17:40 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
skiplock => get_standard_option('skiplock'),
timeout => {
description => "Wait maximal timeout seconds.",
type => 'integer',
minimum => 0,
optional => 1,
2011-12-15 12:47:39 +01:00
},
forceStop => {
description => "Make sure the VM stops.",
type => 'boolean',
optional => 1,
default => 0,
},
keepActive => {
description => "Do not decativate storage volumes.",
type => 'boolean',
optional => 1,
default => 0,
}
2011-10-10 13:17:40 +02:00
},
},
2012-01-27 09:35:26 +01:00
returns => {
2011-10-10 13:17:40 +02:00
type => 'string',
},
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-10-10 13:17:40 +02:00
my $node = extract_param($param, 'node');
my $vmid = extract_param($param, 'vmid');
my $skiplock = extract_param($param, 'skiplock');
2012-01-27 09:35:26 +01:00
raise_param_exc({ skiplock => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $skiplock && $authuser ne 'root@pam';
2011-10-10 13:17:40 +02:00
my $keepActive = extract_param($param, 'keepActive');
2012-01-27 09:35:26 +01:00
raise_param_exc({ keepActive => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $keepActive && $authuser ne 'root@pam';
my $storecfg = PVE::Storage::config();
2011-10-10 13:17:40 +02:00
my $realcmd = sub {
my $upid = shift;
syslog('info', "shutdown VM $vmid: $upid\n");
2012-01-27 09:35:26 +01:00
PVE::QemuServer::vm_stop($storecfg, $vmid, $skiplock, 0, $param->{timeout},
1, $param->{forceStop}, $keepActive);
2011-10-10 13:17:40 +02:00
return;
};
2012-02-02 06:39:38 +01:00
return $rpcenv->fork_worker('qmshutdown', $vmid, $authuser, $realcmd);
2011-10-10 13:17:40 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vm_suspend',
2011-10-10 13:17:40 +02:00
path => '{vmid}/status/suspend',
method => 'POST',
protected => 1,
proxyto => 'node',
description => "Suspend virtual machine.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
},
2011-10-10 13:17:40 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
skiplock => get_standard_option('skiplock'),
},
},
2012-01-27 09:35:26 +01:00
returns => {
2011-10-10 13:17:40 +02:00
type => 'string',
},
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-10-10 13:17:40 +02:00
my $node = extract_param($param, 'node');
my $vmid = extract_param($param, 'vmid');
my $skiplock = extract_param($param, 'skiplock');
2012-01-27 09:35:26 +01:00
raise_param_exc({ skiplock => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $skiplock && $authuser ne 'root@pam';
2011-10-10 13:17:40 +02:00
die "VM $vmid not running\n" if !PVE::QemuServer::check_running($vmid);
2011-10-10 13:17:40 +02:00
my $realcmd = sub {
my $upid = shift;
syslog('info', "suspend VM $vmid: $upid\n");
2011-08-23 07:47:04 +02:00
PVE::QemuServer::vm_suspend($vmid, $skiplock);
2011-10-10 13:17:40 +02:00
return;
};
2012-02-02 06:39:38 +01:00
return $rpcenv->fork_worker('qmsuspend', $vmid, $authuser, $realcmd);
2011-10-10 13:17:40 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vm_resume',
2011-10-10 13:17:40 +02:00
path => '{vmid}/status/resume',
method => 'POST',
protected => 1,
proxyto => 'node',
description => "Resume virtual machine.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
},
2011-10-10 13:17:40 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
skiplock => get_standard_option('skiplock'),
},
},
2012-01-27 09:35:26 +01:00
returns => {
2011-10-10 13:17:40 +02:00
type => 'string',
},
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-10-10 13:17:40 +02:00
my $node = extract_param($param, 'node');
my $vmid = extract_param($param, 'vmid');
my $skiplock = extract_param($param, 'skiplock');
2012-01-27 09:35:26 +01:00
raise_param_exc({ skiplock => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $skiplock && $authuser ne 'root@pam';
2011-10-10 13:17:40 +02:00
die "VM $vmid not running\n" if !PVE::QemuServer::check_running($vmid);
2011-10-10 13:17:40 +02:00
my $realcmd = sub {
my $upid = shift;
syslog('info', "resume VM $vmid: $upid\n");
2011-08-23 07:47:04 +02:00
PVE::QemuServer::vm_resume($vmid, $skiplock);
2011-10-10 13:17:40 +02:00
return;
};
2012-02-02 06:39:38 +01:00
return $rpcenv->fork_worker('qmresume', $vmid, $authuser, $realcmd);
2011-10-10 13:17:40 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'vm_sendkey',
2011-10-10 13:17:40 +02:00
path => '{vmid}/sendkey',
method => 'PUT',
protected => 1,
proxyto => 'node',
description => "Send key event to virtual machine.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
},
2011-10-10 13:17:40 +02:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
skiplock => get_standard_option('skiplock'),
key => {
description => "The key (qemu monitor encoding).",
type => 'string'
}
},
},
returns => { type => 'null'},
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
2011-10-10 13:17:40 +02:00
my $node = extract_param($param, 'node');
my $vmid = extract_param($param, 'vmid');
my $skiplock = extract_param($param, 'skiplock');
2012-01-27 09:35:26 +01:00
raise_param_exc({ skiplock => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $skiplock && $authuser ne 'root@pam';
2011-10-10 13:17:40 +02:00
PVE::QemuServer::vm_sendkey($vmid, $skiplock, $param->{key});
return;
2011-08-23 07:47:04 +02:00
}});
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'migrate_vm',
path => '{vmid}/migrate',
method => 'POST',
protected => 1,
proxyto => 'node',
description => "Migrate virtual machine. Creates a new migration task.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.Migrate' ]],
},
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
target => get_standard_option('pve-node', { description => "Target node." }),
online => {
type => 'boolean',
description => "Use online/live migration.",
optional => 1,
},
force => {
type => 'boolean',
description => "Allow to migrate VMs which use local devices. Only root may use this option.",
optional => 1,
},
},
},
2012-01-27 09:35:26 +01:00
returns => {
type => 'string',
description => "the task ID.",
},
code => sub {
my ($param) = @_;
my $rpcenv = PVE::RPCEnvironment::get();
2012-02-02 06:39:38 +01:00
my $authuser = $rpcenv->get_user();
my $target = extract_param($param, 'target');
my $localnode = PVE::INotify::nodename();
raise_param_exc({ target => "target is local node."}) if $target eq $localnode;
PVE::Cluster::check_cfs_quorum();
PVE::Cluster::check_node_exists($target);
my $targetip = PVE::Cluster::remote_node_ip($target);
my $vmid = extract_param($param, 'vmid');
2012-01-27 09:35:26 +01:00
raise_param_exc({ force => "Only root may use this option." })
2012-02-02 06:39:38 +01:00
if $param->{force} && $authuser ne 'root@pam';
# test if VM exists
my $conf = PVE::QemuServer::load_config($vmid);
# try to detect errors early
PVE::QemuServer::check_lock($conf);
if (PVE::QemuServer::check_running($vmid)) {
2012-01-27 09:35:26 +01:00
die "cant migrate running VM without --online\n"
if !$param->{online};
}
my $realcmd = sub {
my $upid = shift;
2011-12-07 06:36:20 +01:00
PVE::QemuMigrate->migrate($target, $targetip, $vmid, $param);
};
2012-02-02 06:39:38 +01:00
my $upid = $rpcenv->fork_worker('qmigrate', $vmid, $authuser, $realcmd);
return $upid;
}});
2011-08-23 07:47:04 +02:00
2011-11-09 08:26:46 +01:00
__PACKAGE__->register_method({
2012-01-27 09:35:26 +01:00
name => 'monitor',
path => '{vmid}/monitor',
2011-11-09 08:26:46 +01:00
method => 'POST',
protected => 1,
proxyto => 'node',
description => "Execute Qemu monitor commands.",
2012-02-02 06:39:38 +01:00
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.Monitor' ]],
},
2011-11-09 08:26:46 +01:00
parameters => {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid'),
command => {
type => 'string',
description => "The monitor command.",
}
},
},
returns => { type => 'string'},
code => sub {
my ($param) = @_;
my $vmid = $param->{vmid};
my $conf = PVE::QemuServer::load_config ($vmid); # check if VM exists
my $res = '';
eval {
$res = PVE::QemuServer::vm_monitor_command($vmid, $param->{command});
};
$res = "ERROR: $@" if $@;
return $res;
}});
2011-08-23 07:47:04 +02:00
1;