]> git.proxmox.com Git - pve-container.git/blobdiff - src/PVE/API2/LXC.pm
CT protection mode
[pve-container.git] / src / PVE / API2 / LXC.pm
index 121173bb12386e5abecc83e7246b82b1f83d4a13..085a69683792b2eda65f4b32f4419973f7c8d779 100644 (file)
@@ -9,52 +9,45 @@ use PVE::Exception qw(raise raise_param_exc);
 use PVE::INotify;
 use PVE::Cluster qw(cfs_read_file);
 use PVE::AccessControl;
+use PVE::Firewall;
 use PVE::Storage;
 use PVE::RESTHandler;
 use PVE::RPCEnvironment;
 use PVE::LXC;
+use PVE::LXC::Create;
+use PVE::LXC::Migrate;
+use PVE::API2::LXC::Config;
+use PVE::API2::LXC::Status;
+use PVE::API2::LXC::Snapshot;
+use PVE::HA::Config;
 use PVE::JSONSchema qw(get_standard_option);
 use base qw(PVE::RESTHandler);
 
 use Data::Dumper; # fixme: remove
 
-my $get_container_storage = sub {
-    my ($stcfg, $vmid, $lxc_conf) = @_;
-
-    my $path = $lxc_conf->{'lxc.rootfs'};
-    my ($vtype, $volid) = PVE::Storage::path_to_volume_id($stcfg, $path);
-    my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1) if $volid;
-    return wantarray ? ($sid, $volname, $path) : $sid;
-};
-
-my $check_ct_modify_config_perm = sub {
-    my ($rpcenv, $authuser, $vmid, $pool, $key_list) = @_;
-    
-    return 1 if $authuser ne 'root@pam';
-
-    foreach my $opt (@$key_list) {
-
-       if ($opt eq 'cpus' || $opt eq 'cpuunits' || $opt eq 'cpulimit') {
-           $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.CPU']);
-       } elsif ($opt eq 'disk') {
-           $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Disk']);
-       } elsif ($opt eq 'memory' || $opt eq 'swap') {
-           $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Memory']);
-       } elsif ($opt =~ m/^net\d+$/ || $opt eq 'nameserver' || 
-                $opt eq 'searchdomain' || $opt eq 'hostname') {
-           $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Network']);
-       } else {
-           $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Options']);
-       }
-    }
+__PACKAGE__->register_method ({
+    subclass => "PVE::API2::LXC::Config",
+    path => '{vmid}/config',                         
+});
 
-    return 1;
-};
+__PACKAGE__->register_method ({
+    subclass => "PVE::API2::LXC::Status",
+    path => '{vmid}/status',
+});
 
+__PACKAGE__->register_method ({
+    subclass => "PVE::API2::LXC::Snapshot",
+    path => '{vmid}/snapshot',
+});
+
+__PACKAGE__->register_method ({
+    subclass => "PVE::API2::Firewall::CT",
+    path => '{vmid}/firewall',
+});
 
 __PACKAGE__->register_method({
-    name => 'vmlist', 
-    path => '', 
+    name => 'vmlist',
+    path => '',
     method => 'GET',
     description => "LXC container index (per node).",
     permissions => {
@@ -95,12 +88,12 @@ __PACKAGE__->register_method({
        }
 
        return $res;
-  
+
     }});
 
 __PACKAGE__->register_method({
-    name => 'create_vm', 
-    path => '', 
+    name => 'create_vm',
+    path => '',
     method => 'POST',
     description => "Create or restore a container.",
     permissions => {
@@ -115,40 +108,42 @@ __PACKAGE__->register_method({
        additionalProperties => 0,
        properties => PVE::LXC::json_config_properties({
            node => get_standard_option('pve-node'),
-           vmid => get_standard_option('pve-vmid'),
+           vmid => get_standard_option('pve-vmid', { completion => \&PVE::Cluster::complete_next_vmid }),
            ostemplate => {
                description => "The OS template or backup file.",
-               type => 'string', 
+               type => 'string',
                maxLength => 255,
+               completion => \&PVE::LXC::complete_os_templates,
            },
-           password => { 
-               optional => 1, 
+           password => {
+               optional => 1,
                type => 'string',
                description => "Sets root password inside container.",
+               minLength => 5,
            },
            storage => get_standard_option('pve-storage-id', {
-               description => "Target storage.",
+               description => "Default Storage.",
                default => 'local',
                optional => 1,
            }),
            force => {
-               optional => 1, 
+               optional => 1,
                type => 'boolean',
                description => "Allow to overwrite existing container.",
            },
            restore => {
-               optional => 1, 
+               optional => 1,
                type => 'boolean',
                description => "Mark this as restore task.",
            },
-           pool => { 
+           pool => {
                optional => 1,
                type => 'string', format => 'pve-poolid',
                description => "Add the VM to the specified pool.",
            },
        }),
     },
-    returns => { 
+    returns => {
        type => 'string',
     },
     code => sub {
@@ -168,32 +163,40 @@ __PACKAGE__->register_method({
 
        my $restore = extract_param($param, 'restore');
 
+       if ($restore) {
+           # fixme: limit allowed parameters
+
+       }
+       
        my $force = extract_param($param, 'force');
 
        if (!($same_container_exists && $restore && $force)) {
            PVE::Cluster::check_vmid_unused($vmid);
+       } else {
+           my $conf = PVE::LXC::load_config($vmid);
+           PVE::LXC::check_protection($conf, "unable to restore CT $vmid");
        }
-       
-       my $password = extract_param($param, 'password');
 
-       my $storage = extract_param($param, 'storage') || 'local';
+       my $password = extract_param($param, 'password');
 
-       my $pool = extract_param($param, 'pool');
+       my $storage = extract_param($param, 'storage') // 'local';
        
        my $storage_cfg = cfs_read_file("storage.cfg");
 
        my $scfg = PVE::Storage::storage_check_node($storage_cfg, $storage, $node);
 
        raise_param_exc({ storage => "storage '$storage' does not support container root directories"})
-           if !$scfg->{content}->{rootdir};
+           if !($scfg->{content}->{images} || $scfg->{content}->{rootdir});
 
-       my $private = PVE::Storage::get_private_dir($storage_cfg, $storage, $vmid);
+       my $pool = extract_param($param, 'pool');
 
        if (defined($pool)) {
            $rpcenv->check_pool_exist($pool);
            $rpcenv->check_perm_modify($authuser, "/pool/$pool");
-       } 
+       }
 
+       $rpcenv->check($authuser, "/storage/$storage", ['Datastore.AllocateSpace']);
+       
        if ($rpcenv->check($authuser, "/vms/$vmid", ['VM.Allocate'], 1)) {
            # OK
        } elsif ($pool && $rpcenv->check($authuser, "/pool/$pool", ['VM.Allocate'], 1)) {
@@ -205,168 +208,97 @@ __PACKAGE__->register_method({
            raise_perm_exc();
        }
 
-       &$check_ct_modify_config_perm($rpcenv, $authuser, $vmid, $pool, [ keys %$param]);
+       PVE::LXC::check_ct_modify_config_perm($rpcenv, $authuser, $vmid, $pool, [ keys %$param]);
 
        PVE::Storage::activate_storage($storage_cfg, $storage);
 
        my $ostemplate = extract_param($param, 'ostemplate');
-       
+
        my $archive;
 
        if ($ostemplate eq '-') {
-           die "archive pipe not implemented\n" 
-           # $archive = '-';
+           die "pipe requires cli environment\n" 
+               if $rpcenv->{type} ne 'cli'; 
+           die "pipe can only be used with restore tasks\n" 
+               if !$restore;
+           $archive = '-';
+           die "restore from pipe requires rootfs parameter\n" if !defined($param->{rootfs});
        } else {
            $rpcenv->check_volume_access($authuser, $storage_cfg, $vmid, $ostemplate);
            $archive = PVE::Storage::abs_filesystem_path($storage_cfg, $ostemplate);
        }
 
-       my $memory = $param->{memory} || 512;
-       my $hostname = $param->{hostname} || "T$vmid";
        my $conf = {};
-       
-       $conf->{'lxc.utsname'} = $param->{hostname} || "CT$vmid";
-       $conf->{'lxc.cgroup.memory.limit_in_bytes'} = "${memory}M";
-
-       my $code = sub {
-           my $temp_conf_fn = PVE::LXC::write_temp_config($vmid, $conf);
-
-           my $cmd = ['lxc-create', '-f', $temp_conf_fn, '-t', 'pve', '-n', $vmid,
-                      '--', '--archive', $archive];
-
-           eval { PVE::Tools::run_command($cmd); };
-           my $err = $@;
-
-           unlink $temp_conf_fn;
-
-           die $err if $err;
-       };
-       
-       my $realcmd = sub { PVE::LXC::lock_container($vmid, 1, $code); };
 
-       return $rpcenv->fork_worker($param->{restore} ? 'vzrestore' : 'vzcreate', 
-                                   $vmid, $authuser, $realcmd);
-           
-    }});
-
-my $vm_config_perm_list = [
-           'VM.Config.Disk', 
-           'VM.Config.CPU', 
-           'VM.Config.Memory', 
-           'VM.Config.Network', 
-           'VM.Config.Options',
-    ];
-
-__PACKAGE__->register_method({
-    name => 'update_vm', 
-    path => '{vmid}/config', 
-    method => 'PUT',
-    protected => 1,
-    proxyto => 'node',
-    description => "Set container options.",
-    permissions => {
-       check => ['perm', '/vms/{vmid}', $vm_config_perm_list, any => 1],
-    },
-    parameters => {
-       additionalProperties => 0,
-       properties => PVE::LXC::json_config_properties(
-           {
-               node => get_standard_option('pve-node'),
-               vmid => get_standard_option('pve-vmid'),
-               delete => {
-                   type => 'string', format => 'pve-configid-list',
-                   description => "A list of settings you want to delete.",
-                   optional => 1,
-               },
-               digest => {
-                   type => 'string',
-                   description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.',
-                   maxLength => 40,
-                   optional => 1,                  
-               }
-           }),
-    },
-    returns => { type => 'null'},
-    code => sub {
-       my ($param) = @_;
-
-       my $rpcenv = PVE::RPCEnvironment::get();
-
-       my $authuser = $rpcenv->get_user();
-
-       my $node = extract_param($param, 'node');
-
-       my $vmid = extract_param($param, 'vmid');
-
-       my $digest = extract_param($param, 'digest');
-
-       die "no options specified\n" if !scalar(keys %$param);
-
-       my $delete_str = extract_param($param, 'delete');
-       my @delete = PVE::Tools::split_list($delete_str);
-       
-       &$check_ct_modify_config_perm($rpcenv, $authuser, $vmid, undef, [@delete]);
-       
-       foreach my $opt (@delete) {
-           raise_param_exc({ delete => "you can't use '-$opt' and " .
-                                 "-delete $opt' at the same time" })
-               if defined($param->{$opt});
-           
-           if (!PVE::LXC::option_exists($opt)) {
-               raise_param_exc({ delete => "unknown option '$opt'" });
+       my $no_disk_param = {};
+       foreach my $opt (keys %$param) {
+           my $value = $param->{$opt};
+           if ($opt eq 'rootfs' || $opt =~ m/^mp\d+$/) {
+               # allow to use simple numbers (add default storage in that case)
+               $param->{$opt} = "$storage:$value" if $value =~ m/^\d+(\.\d+)?$/;
+           } else {
+               $no_disk_param->{$opt} = $value;
            }
        }
-
-       &$check_ct_modify_config_perm($rpcenv, $authuser, $vmid, undef, [keys %$param]);
+       PVE::LXC::update_pct_config($vmid, $conf, 0, $no_disk_param);
+
+       my $check_vmid_usage = sub {
+           if ($force) {
+               die "can't overwrite running container\n"
+                   if PVE::LXC::check_running($vmid);
+           } else {
+               PVE::Cluster::check_vmid_unused($vmid);
+           }
+       };
 
        my $code = sub {
-
-           my $conf = PVE::LXC::load_config($vmid);
-
-           PVE::Tools::assert_if_modified($digest, $conf->{digest});
-
-           # die if running
-
-           foreach my $opt (@delete) {
-               if ($opt eq 'hostname') {
-                   die "unable to delete required option '$opt'\n";
-               } elsif ($opt =~ m/^net\d$/) {
-                   delete $conf->{$opt};
-               } else {
-                   die "implement me"
+           &$check_vmid_usage(); # final check after locking
+                   
+           PVE::Cluster::check_cfs_quorum();
+           my $vollist = [];
+
+           eval {
+               if (!defined($param->{rootfs})) {
+                   if ($restore) {
+                       my (undef, $disksize) = PVE::LXC::Create::recover_config($archive);
+                       $disksize /= 1024 * 1024 * 1024; # create_disks expects GB as unit size
+                       die "unable to detect disk size - please specify rootfs (size)\n"
+                           if !$disksize;
+                       $param->{rootfs} = "$storage:$disksize";
+                   } else {
+                       $param->{rootfs} = "$storage:4"; # defaults to 4GB
+                   }
                }
-           }
 
-           foreach my $opt (keys %$param) {
-               my $value = $param->{$opt};
-               if ($opt eq 'hostname') {
-                   $conf->{'lxc.utsname'} = $value;
-               } if ($opt =~ m/^net(\d+)$/) {
-                   my $netid = $1;
-                   my $net = PVE::LXC::parse_lxc_network($value);
-                   $net->{'veth.pair'} = "veth${vmid}.$netid";
-                   $conf->{$opt} = $net;
-               } else {
-                   die "implement me"
-               }
+               $vollist = PVE::LXC::create_disks($storage_cfg, $vmid, $param, $conf);
+
+               PVE::LXC::Create::create_rootfs($storage_cfg, $vmid, $conf, $archive, $password, $restore);
+               # set some defaults
+               $conf->{hostname} ||= "CT$vmid";
+               $conf->{memory} ||= 512;
+               $conf->{swap} //= 512;
+               PVE::LXC::create_config($vmid, $conf);
+           };
+           if (my $err = $@) {
+               PVE::LXC::destroy_disks($storage_cfg, $vollist);
+               PVE::LXC::destroy_config($vmid);
+               die $err;
            }
-
-           PVE::LXC::write_config($vmid, $conf);
+           PVE::AccessControl::add_vm_to_pool($vmid, $pool) if $pool;
        };
 
-       PVE::LXC::lock_container($vmid, undef, $code);
+       my $realcmd = sub { PVE::LXC::lock_container($vmid, 1, $code); };
 
-       return undef;
-    }});
+       &$check_vmid_usage(); # first check before locking
 
-__PACKAGE__->register_method ({
-    subclass => "PVE::API2::Firewall::CT",  
-    path => '{vmid}/firewall',
-});
+       return $rpcenv->fork_worker($restore ? 'vzrestore' : 'vzcreate',
+                                   $vmid, $authuser, $realcmd);
+
+    }});
 
 __PACKAGE__->register_method({
     name => 'vmdiridx',
-    path => '{vmid}', 
+    path => '{vmid}',
     method => 'GET',
     proxyto => 'node',
     description => "Directory index",
@@ -394,26 +326,28 @@ __PACKAGE__->register_method({
        my ($param) = @_;
 
        # test if VM exists
-       my $conf = PVE::OpenVZ::load_config($param->{vmid});
+       my $conf = PVE::LXC::load_config($param->{vmid});
 
        my $res = [
            { subdir => 'config' },
-#          { subdir => 'status' },
-#          { subdir => 'vncproxy' },
-#          { subdir => 'spiceproxy' },
-#          { subdir => 'migrate' },
+           { subdir => 'status' },
+           { subdir => 'vncproxy' },
+           { subdir => 'vncwebsocket' },
+           { subdir => 'spiceproxy' },
+           { subdir => 'migrate' },
 #          { subdir => 'initlog' },
            { subdir => 'rrd' },
            { subdir => 'rrddata' },
            { subdir => 'firewall' },
+           { subdir => 'snapshot' },
            ];
-       
+
        return $res;
     }});
 
 __PACKAGE__->register_method({
-    name => 'rrd', 
-    path => '{vmid}/rrd', 
+    name => 'rrd',
+    path => '{vmid}/rrd',
     method => 'GET',
     protected => 1, # fixme: can we avoid that?
     permissions => {
@@ -452,14 +386,14 @@ __PACKAGE__->register_method({
        my ($param) = @_;
 
        return PVE::Cluster::create_rrd_graph(
-           "pve2-vm/$param->{vmid}", $param->{timeframe}, 
+           "pve2-vm/$param->{vmid}", $param->{timeframe},
            $param->{ds}, $param->{cf});
-                                             
+
     }});
 
 __PACKAGE__->register_method({
-    name => 'rrddata', 
-    path => '{vmid}/rrddata', 
+    name => 'rrddata',
+    path => '{vmid}/rrddata',
     method => 'GET',
     protected => 1, # fixme: can we avoid that?
     permissions => {
@@ -498,85 +432,291 @@ __PACKAGE__->register_method({
            "pve2-vm/$param->{vmid}", $param->{timeframe}, $param->{cf});
     }});
 
-
 __PACKAGE__->register_method({
-    name => 'vm_config', 
-    path => '{vmid}/config', 
-    method => 'GET',
+    name => 'destroy_vm',
+    path => '{vmid}',
+    method => 'DELETE',
+    protected => 1,
     proxyto => 'node',
-    description => "Get container configuration.",
+    description => "Destroy the container (also delete all uses files).",
     permissions => {
-       check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
+       check => [ 'perm', '/vms/{vmid}', ['VM.Allocate']],
     },
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           node => get_standard_option('pve-node'),
+           vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid_stopped }),
+       },
+    },
+    returns => {
+       type => 'string',
+    },
+    code => sub {
+       my ($param) = @_;
+
+       my $rpcenv = PVE::RPCEnvironment::get();
+
+       my $authuser = $rpcenv->get_user();
+
+       my $vmid = $param->{vmid};
+
+       # test if container exists
+       my $conf = PVE::LXC::load_config($vmid);
+
+       my $storage_cfg = cfs_read_file("storage.cfg");
+
+       PVE::LXC::check_protection($conf, "can't remove CT $vmid");
+
+       die "unable to remove CT $vmid - used in HA resources\n"
+           if PVE::HA::Config::vm_is_ha_managed($vmid);
+
+       my $code = sub {
+           # reload config after lock
+           $conf = PVE::LXC::load_config($vmid);
+           PVE::LXC::check_lock($conf);
+
+           PVE::LXC::destroy_lxc_container($storage_cfg, $vmid, $conf);
+           PVE::AccessControl::remove_vm_access($vmid);
+           PVE::Firewall::remove_vmfw_conf($vmid);
+       };
+
+       my $realcmd = sub { PVE::LXC::lock_container($vmid, 1, $code); };
+       
+       return $rpcenv->fork_worker('vzdestroy', $vmid, $authuser, $realcmd);
+    }});
+
+my $sslcert;
+
+__PACKAGE__->register_method ({
+    name => 'vncproxy',
+    path => '{vmid}/vncproxy',
+    method => 'POST',
+    protected => 1,
+    permissions => {
+       check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
+    },
+    description => "Creates a TCP VNC proxy connections.",
     parameters => {
        additionalProperties => 0,
        properties => {
            node => get_standard_option('pve-node'),
            vmid => get_standard_option('pve-vmid'),
+           websocket => {
+               optional => 1,
+               type => 'boolean',
+               description => "use websocket instead of standard VNC.",
+           },
        },
     },
-    returns => { 
-       type => "object",
+    returns => {
+       additionalProperties => 0,
        properties => {
-           digest => {
-               type => 'string',
-               description => 'SHA1 digest of configuration file. This can be used to prevent concurrent modifications.',
-           }
+           user => { type => 'string' },
+           ticket => { type => 'string' },
+           cert => { type => 'string' },
+           port => { type => 'integer' },
+           upid => { type => 'string' },
        },
     },
     code => sub {
        my ($param) = @_;
 
-       my $lxc_conf = PVE::LXC::load_config($param->{vmid});
+       my $rpcenv = PVE::RPCEnvironment::get();
 
-       # NOTE: we only return selected/converted values
-       
-       my $conf = { digest => $lxc_conf->{digest} };
+       my $authuser = $rpcenv->get_user();
 
-       my $stcfg = PVE::Cluster::cfs_read_file("storage.cfg");
+       my $vmid = $param->{vmid};
+       my $node = $param->{node};
 
-       my ($sid, undef, $path) = &$get_container_storage($stcfg, $param->{vmid}, $lxc_conf);
-       $conf->{storage} = $sid || $path;
+       my $authpath = "/vms/$vmid";
 
-       my $properties = PVE::LXC::json_config_properties();
+       my $ticket = PVE::AccessControl::assemble_vnc_ticket($authuser, $authpath);
 
-       foreach my $k (keys %$properties) {
+       $sslcert = PVE::Tools::file_get_contents("/etc/pve/pve-root-ca.pem", 8192)
+           if !$sslcert;
 
-           if ($k eq 'description') {
-               if (my $raw = $lxc_conf->{'pve.comment'}) {
-                   $conf->{$k} = PVE::Tools::decode_text($raw);
-               }
-           } elsif ($k eq 'hostname') {
-               $conf->{$k} = $lxc_conf->{'lxc.utsname'} if $lxc_conf->{'lxc.utsname'};
-           } elsif ($k =~ m/^net\d$/) {
-               my $net = $lxc_conf->{$k};
-               next if !$net;
-               $conf->{$k} = PVE::LXC::print_lxc_network($net);
-           }
+       my ($remip, $family);
+
+       if ($node ne PVE::INotify::nodename()) {
+           ($remip, $family) = PVE::Cluster::remote_node_ip($node);
+       } else {
+           $family = PVE::Tools::get_host_address_family($node);
        }
 
-       return $conf;
+       my $port = PVE::Tools::next_vnc_port($family);
+
+       # NOTE: vncterm VNC traffic is already TLS encrypted,
+       # so we select the fastest chipher here (or 'none'?)
+       my $remcmd = $remip ?
+           ['/usr/bin/ssh', '-t', $remip] : [];
+
+       my $conf = PVE::LXC::load_config($vmid, $node);
+       my $concmd = PVE::LXC::get_console_command($vmid, $conf);
+
+       my $shcmd = [ '/usr/bin/dtach', '-A',
+                     "/var/run/dtach/vzctlconsole$vmid",
+                     '-r', 'winch', '-z', @$concmd];
+
+       my $realcmd = sub {
+           my $upid = shift;
+
+           syslog ('info', "starting lxc vnc proxy $upid\n");
+
+           my $timeout = 10;
+
+           my $cmd = ['/usr/bin/vncterm', '-rfbport', $port,
+                      '-timeout', $timeout, '-authpath', $authpath,
+                      '-perm', 'VM.Console'];
+
+           if ($param->{websocket}) {
+               $ENV{PVE_VNC_TICKET} = $ticket; # pass ticket to vncterm
+               push @$cmd, '-notls', '-listen', 'localhost';
+           }
+
+           push @$cmd, '-c', @$remcmd, @$shcmd;
+
+           run_command($cmd);
+
+           return;
+       };
+
+       my $upid = $rpcenv->fork_worker('vncproxy', $vmid, $authuser, $realcmd);
+
+       PVE::Tools::wait_for_vnc_port($port);
+
+       return {
+           user => $authuser,
+           ticket => $ticket,
+           port => $port,
+           upid => $upid,
+           cert => $sslcert,
+       };
     }});
 
 __PACKAGE__->register_method({
-    name => 'destroy_vm', 
-    path => '{vmid}', 
-    method => 'DELETE',
+    name => 'vncwebsocket',
+    path => '{vmid}/vncwebsocket',
+    method => 'GET',
+    permissions => {
+       description => "You also need to pass a valid ticket (vncticket).",
+       check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
+    },
+    description => "Opens a weksocket for VNC traffic.",
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           node => get_standard_option('pve-node'),
+           vmid => get_standard_option('pve-vmid'),
+           vncticket => {
+               description => "Ticket from previous call to vncproxy.",
+               type => 'string',
+               maxLength => 512,
+           },
+           port => {
+               description => "Port number returned by previous vncproxy call.",
+               type => 'integer',
+               minimum => 5900,
+               maximum => 5999,
+           },
+       },
+    },
+    returns => {
+       type => "object",
+       properties => {
+           port => { type => 'string' },
+       },
+    },
+    code => sub {
+       my ($param) = @_;
+
+       my $rpcenv = PVE::RPCEnvironment::get();
+
+       my $authuser = $rpcenv->get_user();
+
+       my $authpath = "/vms/$param->{vmid}";
+
+       PVE::AccessControl::verify_vnc_ticket($param->{vncticket}, $authuser, $authpath);
+
+       my $port = $param->{port};
+
+       return { port => $port };
+    }});
+
+__PACKAGE__->register_method ({
+    name => 'spiceproxy',
+    path => '{vmid}/spiceproxy',
+    method => 'POST',
     protected => 1,
     proxyto => 'node',
-    description => "Destroy the container (also delete all uses files).",
     permissions => {
-       check => [ 'perm', '/vms/{vmid}', ['VM.Allocate']],
+       check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
     },
+    description => "Returns a SPICE configuration to connect to the CT.",
     parameters => {
        additionalProperties => 0,
        properties => {
            node => get_standard_option('pve-node'),
            vmid => get_standard_option('pve-vmid'),
+           proxy => get_standard_option('spice-proxy', { optional => 1 }),
        },
     },
-    returns => { 
+    returns => get_standard_option('remote-viewer-config'),
+    code => sub {
+       my ($param) = @_;
+
+       my $vmid = $param->{vmid};
+       my $node = $param->{node};
+       my $proxy = $param->{proxy};
+
+       my $authpath = "/vms/$vmid";
+       my $permissions = 'VM.Console';
+
+       my $conf = PVE::LXC::load_config($vmid);
+
+       die "CT $vmid not running\n" if !PVE::LXC::check_running($vmid);
+
+       my $concmd = PVE::LXC::get_console_command($vmid, $conf);
+
+       my $shcmd = ['/usr/bin/dtach', '-A',
+                    "/var/run/dtach/vzctlconsole$vmid",
+                    '-r', 'winch', '-z', @$concmd];
+
+       my $title = "CT $vmid";
+
+       return PVE::API2Tools::run_spiceterm($authpath, $permissions, $vmid, $node, $proxy, $title, $shcmd);
+    }});
+
+
+__PACKAGE__->register_method({
+    name => 'migrate_vm',
+    path => '{vmid}/migrate',
+    method => 'POST',
+    protected => 1,
+    proxyto => 'node',
+    description => "Migrate the container to another node. Creates a new migration task.",
+    permissions => {
+       check => ['perm', '/vms/{vmid}', [ 'VM.Migrate' ]],
+    },
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           node => get_standard_option('pve-node'),
+           vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid }),
+           target => get_standard_option('pve-node', {
+               description => "Target node.",
+               completion => \&PVE::Cluster::complete_migration_target,
+           }),
+           online => {
+               type => 'boolean',
+               description => "Use online/live migration.",
+               optional => 1,
+           },
+       },
+    },
+    returns => {
        type => 'string',
+       description => "the task ID.",
     },
     code => sub {
        my ($param) = @_;
@@ -585,20 +725,184 @@ __PACKAGE__->register_method({
 
        my $authuser = $rpcenv->get_user();
 
-       my $vmid = $param->{vmid};
+       my $target = extract_param($param, 'target');
 
-       # test if container exists
-       my $conf = PVE::LXC::load_config($param->{vmid});
+       my $localnode = PVE::INotify::nodename();
+       raise_param_exc({ target => "target is local node."}) if $target eq $localnode;
 
-       my $realcmd = sub {
-           my $cmd = ['lxc-destroy', '-n', $vmid ];
+       PVE::Cluster::check_cfs_quorum();
 
-           run_command($cmd);
+       PVE::Cluster::check_node_exists($target);
+
+       my $targetip = PVE::Cluster::remote_node_ip($target);
+
+       my $vmid = extract_param($param, 'vmid');
+
+       # test if VM exists
+       PVE::LXC::load_config($vmid);
+
+       # try to detect errors early
+       if (PVE::LXC::check_running($vmid)) {
+           die "can't migrate running container without --online\n"
+               if !$param->{online};
+       }
 
-           PVE::AccessControl::remove_vm_from_pool($vmid);
+       if (PVE::HA::Config::vm_is_ha_managed($vmid) && $rpcenv->{type} ne 'ha') {
+
+           my $hacmd = sub {
+               my $upid = shift;
+
+               my $service = "ct:$vmid";
+
+               my $cmd = ['ha-manager', 'migrate', $service, $target];
+
+               print "Executing HA migrate for CT $vmid to node $target\n";
+
+               PVE::Tools::run_command($cmd);
+
+               return;
+           };
+
+           return $rpcenv->fork_worker('hamigrate', $vmid, $authuser, $hacmd);
+
+       } else {
+
+           my $realcmd = sub {
+               my $upid = shift;
+
+               PVE::LXC::Migrate->migrate($target, $targetip, $vmid, $param);
+
+               return;
+           };
+
+           return $rpcenv->fork_worker('vzmigrate', $vmid, $authuser, $realcmd);
+       }
+    }});
+
+__PACKAGE__->register_method({
+    name => 'vm_feature',
+    path => '{vmid}/feature',
+    method => 'GET',
+    proxyto => 'node',
+    protected => 1,
+    description => "Check if feature for virtual machine is available.",
+    permissions => {
+       check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
+    },
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           node => get_standard_option('pve-node'),
+           vmid => get_standard_option('pve-vmid'),
+            feature => {
+                description => "Feature to check.",
+                type => 'string',
+                enum => [ 'snapshot' ],
+            },
+            snapname => get_standard_option('pve-lxc-snapshot-name', {
+                optional => 1,
+            }),
+       },
+    },
+    returns => {
+       type => "object",
+       properties => {
+           hasFeature => { type => 'boolean' },
+           #nodes => {
+               #type => 'array',
+               #items => { type => 'string' },
+           #}
+       },
+    },
+    code => sub {
+       my ($param) = @_;
+
+       my $node = extract_param($param, 'node');
+
+       my $vmid = extract_param($param, 'vmid');
+
+       my $snapname = extract_param($param, 'snapname');
+
+       my $feature = extract_param($param, 'feature');
+
+       my $conf = PVE::LXC::load_config($vmid);
+
+       if($snapname){
+           my $snap = $conf->{snapshots}->{$snapname};
+           die "snapshot '$snapname' does not exist\n" if !defined($snap);
+           $conf = $snap;
+       }
+       my $storage_cfg = PVE::Storage::config();
+       #Maybe include later
+       #my $nodelist = PVE::LXC::shared_nodes($conf, $storage_cfg);
+       my $hasFeature = PVE::LXC::has_feature($feature, $conf, $storage_cfg, $snapname);
+
+       return {
+           hasFeature => $hasFeature,
+           #nodes => [ keys %$nodelist ],
        };
+    }});
 
-       return $rpcenv->fork_worker('vzdestroy', $vmid, $authuser, $realcmd);
+__PACKAGE__->register_method({
+    name => 'template',
+    path => '{vmid}/template',
+    method => 'POST',
+    protected => 1,
+    proxyto => 'node',
+    description => "Create a Template.",
+    permissions => {
+       description => "You need 'VM.Allocate' permissions on /vms/{vmid}",
+       check => [ 'perm', '/vms/{vmid}', ['VM.Allocate']],
+    },
+    parameters => {
+       additionalProperties => 0,
+       properties => {
+           node => get_standard_option('pve-node'),
+           vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid_stopped }),
+       },
+    },
+    returns => { type => 'null'},
+    code => sub {
+       my ($param) = @_;
+
+       my $rpcenv = PVE::RPCEnvironment::get();
+
+       my $authuser = $rpcenv->get_user();
+
+       my $node = extract_param($param, 'node');
+
+       my $vmid = extract_param($param, 'vmid');
+
+       my $updatefn =  sub {
+
+           my $conf = PVE::LXC::load_config($vmid);
+           PVE::LXC::check_lock($conf);
+
+           die "unable to create template, because CT contains snapshots\n"
+               if $conf->{snapshots} && scalar(keys %{$conf->{snapshots}});
+
+           die "you can't convert a template to a template\n"
+               if PVE::LXC::is_template($conf);
+
+           die "you can't convert a CT to template if the CT is running\n"
+               if PVE::LXC::check_running($vmid);
+
+           my $realcmd = sub {
+               PVE::LXC::template_create($vmid, $conf);
+           };
+
+           $conf->{template} = 1;
+
+           PVE::LXC::write_config($vmid, $conf);
+           # and remove lxc config
+           PVE::LXC::update_lxc_config(undef, $vmid, $conf);
+
+           return $rpcenv->fork_worker('vztemplate', $vmid, $authuser, $realcmd);
+       };
+
+       PVE::LXC::lock_container($vmid, undef, $updatefn);
+
+       return undef;
     }});
 
 1;