qemu-server/PVE/API2/Qemu/Agent.pm
Dominik Csapak e6bd703b4e change some guest agent commands to GET api calls
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2018-02-20 09:56:50 +01:00

181 lines
3.9 KiB
Perl

package PVE::API2::Qemu::Agent;
use strict;
use warnings;
use PVE::RESTHandler;
use PVE::JSONSchema qw(get_standard_option);
use PVE::QemuServer;
use base qw(PVE::RESTHandler);
# list of commands
# will generate one api endpoint per command
# needs a 'method' property and optionally a 'perms' property (default VM.Monitor)
my $guest_agent_commands = {
'ping' => {
method => 'POST',
},
'get-time' => {
method => 'GET',
},
'info' => {
method => 'GET',
},
'fsfreeze-status' => {
method => 'POST',
},
'fsfreeze-freeze' => {
method => 'POST',
},
'fsfreeze-thaw' => {
method => 'POST',
},
'fstrim' => {
method => 'POST',
},
'network-get-interfaces' => {
method => 'GET',
},
'get-vcpus' => {
method => 'GET',
},
'get-fsinfo' => {
method => 'GET',
},
'get-memory-blocks' => {
method => 'GET',
},
'get-memory-block-info' => {
method => 'GET',
},
'suspend-hybrid' => {
method => 'POST',
},
'suspend-ram' => {
method => 'POST',
},
'suspend-disk' => {
method => 'POST',
},
'shutdown' => {
method => 'POST',
},
};
__PACKAGE__->register_method({
name => 'index',
path => '',
proxyto => 'node',
method => 'GET',
description => "Qemu Agent command index.",
permissions => {
user => 'all',
},
parameters => {
additionalProperties => 1,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid', {
completion => \&PVE::QemuServer::complete_vmid_running }),
},
},
returns => {
type => 'array',
items => {
type => "object",
properties => {},
},
links => [ { rel => 'child', href => '{name}' } ],
description => "Returns the list of Qemu Agent commands",
},
code => sub {
my ($param) = @_;
my $result = [];
for my $cmd (sort keys %$guest_agent_commands) {
push @$result, { name => $cmd };
}
return $result;
}});
sub register_command {
my ($class, $command, $method, $perm) = @_;
die "no method given\n" if !$method;
die "no command given\n" if !defined($command);
my $permission;
if (ref($perm) eq 'HASH') {
$permission = $perm;
} else {
$perm //= 'VM.Monitor';
$permission = { check => [ 'perm', '/vms/{vmid}', [ $perm ]]};
}
my $parameters = {
additionalProperties => 0,
properties => {
node => get_standard_option('pve-node'),
vmid => get_standard_option('pve-vmid', {
completion => \&PVE::QemuServer::complete_vmid_running }),
command => {
type => 'string',
description => "The QGA command.",
enum => [ sort keys %$guest_agent_commands ],
},
},
};
my $description = "Execute Qemu Guest Agent commands.";
my $name = 'agent';
if ($command ne '') {
$description = "Execute $command.";
$name = $command;
delete $parameters->{properties}->{command};
}
__PACKAGE__->register_method({
name => $name,
path => $command,
method => $method,
protected => 1,
proxyto => 'node',
description => $description,
permissions => $permission,
parameters => $parameters,
returns => {
type => 'object',
description => "Returns an object with a single `result` property.",
},
code => sub {
my ($param) = @_;
my $vmid = $param->{vmid};
my $conf = PVE::QemuConfig->load_config ($vmid); # check if VM exists
die "No Qemu Guest Agent\n" if !defined($conf->{agent});
die "VM $vmid is not running\n" if !PVE::QemuServer::check_running($vmid);
my $cmd = $param->{command} // $command;
my $res = PVE::QemuServer::vm_mon_cmd($vmid, "guest-$cmd");
return { result => $res };
}});
}
# old {vmid}/agent POST endpoint, here for compatibility
__PACKAGE__->register_command('', 'POST');
for my $cmd (sort keys %$guest_agent_commands) {
my $props = $guest_agent_commands->{$cmd};
__PACKAGE__->register_command($cmd, $props->{method}, $props->{perms});
}
1;