]> git.proxmox.com Git - qemu-server.git/blame - PVE/API2/Qemu.pm
Switch from netcat-traditional to netcat6
[qemu-server.git] / PVE / API2 / Qemu.pm
CommitLineData
1e3baf05
DM
1package PVE::API2::Qemu;
2
3use strict;
4use warnings;
5b9d692a 5use Cwd 'abs_path';
451b2b81 6use Net::SSLeay;
47314bf5 7use UUID;
1e3baf05 8
502d18a2 9use PVE::Cluster qw (cfs_read_file cfs_write_file);;
1e3baf05
DM
10use PVE::SafeSyslog;
11use PVE::Tools qw(extract_param);
f9bfceef 12use PVE::Exception qw(raise raise_param_exc raise_perm_exc);
1e3baf05
DM
13use PVE::Storage;
14use PVE::JSONSchema qw(get_standard_option);
15use PVE::RESTHandler;
16use PVE::QemuServer;
3ea94c60 17use PVE::QemuMigrate;
1e3baf05
DM
18use PVE::RPCEnvironment;
19use PVE::AccessControl;
20use PVE::INotify;
de8f60b2 21use PVE::Network;
228a998b 22use PVE::API2::Firewall::VM;
2003f0f8 23use PVE::HA::Config;
1e3baf05
DM
24
25use Data::Dumper; # fixme: remove
26
27use base qw(PVE::RESTHandler);
28
29my $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.";
30
31my $resolve_cdrom_alias = sub {
32 my $param = shift;
33
34 if (my $value = $param->{cdrom}) {
35 $value .= ",media=cdrom" if $value !~ m/media=/;
36 $param->{ide2} = $value;
37 delete $param->{cdrom};
38 }
39};
40
39001640
DM
41my $test_deallocate_drive = sub {
42 my ($storecfg, $vmid, $key, $drive, $force) = @_;
43
44 if (!PVE::QemuServer::drive_is_cdrom($drive)) {
45 my $volid = $drive->{file};
055d554d 46 if ( PVE::QemuServer::vm_is_volid_owner($storecfg, $vmid, $volid)) {
39001640
DM
47 if ($force || $key =~ m/^unused/) {
48 my $sid = PVE::Storage::parse_volume_id($volid);
49 return $sid;
50 }
51 }
52 }
53
54 return undef;
55};
56
ae57f6b3 57my $check_storage_access = sub {
fcbb753e 58 my ($rpcenv, $authuser, $storecfg, $vmid, $settings, $default_storage) = @_;
a0d1b1a2 59
ae57f6b3
DM
60 PVE::QemuServer::foreach_drive($settings, sub {
61 my ($ds, $drive) = @_;
a0d1b1a2 62
ae57f6b3 63 my $isCDROM = PVE::QemuServer::drive_is_cdrom($drive);
a0d1b1a2 64
ae57f6b3 65 my $volid = $drive->{file};
a0d1b1a2 66
09d0ee64
DM
67 if (!$volid || $volid eq 'none') {
68 # nothing to check
f5782fd0
DM
69 } elsif ($isCDROM && ($volid eq 'cdrom')) {
70 $rpcenv->check($authuser, "/", ['Sys.Console']);
09d0ee64 71 } elsif (!$isCDROM && ($volid =~ m/^(([^:\s]+):)?(\d+(\.\d+)?)$/)) {
a0d1b1a2
DM
72 my ($storeid, $size) = ($2 || $default_storage, $3);
73 die "no storage ID specified (and no default storage)\n" if !$storeid;
fcbb753e 74 $rpcenv->check($authuser, "/storage/$storeid", ['Datastore.AllocateSpace']);
a0d1b1a2 75 } else {
8b192abf 76 $rpcenv->check_volume_access($authuser, $storecfg, $vmid, $volid);
a0d1b1a2
DM
77 }
78 });
ae57f6b3 79};
a0d1b1a2 80
9418baad 81my $check_storage_access_clone = sub {
81f043eb 82 my ($rpcenv, $authuser, $storecfg, $conf, $storage) = @_;
6116f729 83
55173c6b
DM
84 my $sharedvm = 1;
85
6116f729
DM
86 PVE::QemuServer::foreach_drive($conf, sub {
87 my ($ds, $drive) = @_;
88
89 my $isCDROM = PVE::QemuServer::drive_is_cdrom($drive);
90
91 my $volid = $drive->{file};
92
93 return if !$volid || $volid eq 'none';
94
95 if ($isCDROM) {
96 if ($volid eq 'cdrom') {
97 $rpcenv->check($authuser, "/", ['Sys.Console']);
98 } else {
75466c4f 99 # we simply allow access
55173c6b
DM
100 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid);
101 my $scfg = PVE::Storage::storage_config($storecfg, $sid);
102 $sharedvm = 0 if !$scfg->{shared};
103
6116f729
DM
104 }
105 } else {
55173c6b
DM
106 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid);
107 my $scfg = PVE::Storage::storage_config($storecfg, $sid);
108 $sharedvm = 0 if !$scfg->{shared};
109
81f043eb 110 $sid = $storage if $storage;
6116f729
DM
111 $rpcenv->check($authuser, "/storage/$sid", ['Datastore.AllocateSpace']);
112 }
113 });
55173c6b
DM
114
115 return $sharedvm;
6116f729
DM
116};
117
ae57f6b3
DM
118# Note: $pool is only needed when creating a VM, because pool permissions
119# are automatically inherited if VM already exists inside a pool.
120my $create_disks = sub {
121 my ($rpcenv, $authuser, $conf, $storecfg, $vmid, $pool, $settings, $default_storage) = @_;
a0d1b1a2
DM
122
123 my $vollist = [];
a0d1b1a2 124
ae57f6b3
DM
125 my $res = {};
126 PVE::QemuServer::foreach_drive($settings, sub {
127 my ($ds, $disk) = @_;
128
129 my $volid = $disk->{file};
130
f5782fd0 131 if (!$volid || $volid eq 'none' || $volid eq 'cdrom') {
628e9a2b
AD
132 delete $disk->{size};
133 $res->{$ds} = PVE::QemuServer::print_drive($vmid, $disk);
09d0ee64 134 } elsif ($volid =~ m/^(([^:\s]+):)?(\d+(\.\d+)?)$/) {
ae57f6b3
DM
135 my ($storeid, $size) = ($2 || $default_storage, $3);
136 die "no storage ID specified (and no default storage)\n" if !$storeid;
137 my $defformat = PVE::Storage::storage_default_format($storecfg, $storeid);
138 my $fmt = $disk->{format} || $defformat;
a0d1b1a2
DM
139 my $volid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $vmid,
140 $fmt, undef, $size*1024*1024);
a0d1b1a2 141 $disk->{file} = $volid;
24afaca0 142 $disk->{size} = $size*1024*1024*1024;
a0d1b1a2 143 push @$vollist, $volid;
ae57f6b3
DM
144 delete $disk->{format}; # no longer needed
145 $res->{$ds} = PVE::QemuServer::print_drive($vmid, $disk);
146 } else {
eabe0da0 147
c9928b3d 148 $rpcenv->check_volume_access($authuser, $storecfg, $vmid, $volid);
75466c4f 149
7043d946 150 my $volid_is_new = 1;
35cb731c 151
7043d946
DM
152 if ($conf->{$ds}) {
153 my $olddrive = PVE::QemuServer::parse_drive($ds, $conf->{$ds});
154 $volid_is_new = undef if $olddrive->{file} && $olddrive->{file} eq $volid;
eabe0da0 155 }
75466c4f 156
d52b8b77 157 if ($volid_is_new) {
09a89895 158
7043d946
DM
159 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
160
09a89895 161 PVE::Storage::activate_volumes($storecfg, [ $volid ]) if $storeid;
d52b8b77
DM
162
163 my $size = PVE::Storage::volume_size_info($storecfg, $volid);
164
165 die "volume $volid does not exists\n" if !$size;
166
167 $disk->{size} = $size;
09a89895 168 }
24afaca0 169
24afaca0 170 $res->{$ds} = PVE::QemuServer::print_drive($vmid, $disk);
a0d1b1a2 171 }
ae57f6b3 172 });
a0d1b1a2
DM
173
174 # free allocated images on error
175 if (my $err = $@) {
176 syslog('err', "VM $vmid creating disks failed");
177 foreach my $volid (@$vollist) {
178 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
179 warn $@ if $@;
180 }
181 die $err;
182 }
183
184 # modify vm config if everything went well
ae57f6b3
DM
185 foreach my $ds (keys %$res) {
186 $conf->{$ds} = $res->{$ds};
a0d1b1a2
DM
187 }
188
189 return $vollist;
190};
191
915d3481
DM
192my $delete_drive = sub {
193 my ($conf, $storecfg, $vmid, $key, $drive, $force) = @_;
194
195 if (!PVE::QemuServer::drive_is_cdrom($drive)) {
196 my $volid = $drive->{file};
197
198 if (PVE::QemuServer::vm_is_volid_owner($storecfg, $vmid, $volid)) {
199 if ($force || $key =~ m/^unused/) {
200 eval {
201 # check if the disk is really unused
202 my $used_paths = PVE::QemuServer::get_used_paths($vmid, $storecfg, $conf, 1, $key);
203 my $path = PVE::Storage::path($storecfg, $volid);
204
205 die "unable to delete '$volid' - volume is still in use (snapshot?)\n"
206 if $used_paths->{$path};
207
208 PVE::Storage::vdisk_free($storecfg, $volid);
209 };
210 die $@ if $@;
211 } else {
212 PVE::QemuServer::add_unused_volume($conf, $volid, $vmid);
213 }
214 }
215 }
216
217 delete $conf->{$key};
218};
219
a0d1b1a2 220my $check_vm_modify_config_perm = sub {
ae57f6b3 221 my ($rpcenv, $authuser, $vmid, $pool, $key_list) = @_;
a0d1b1a2 222
6e5c4da7 223 return 1 if $authuser eq 'root@pam';
a0d1b1a2 224
ae57f6b3 225 foreach my $opt (@$key_list) {
a0d1b1a2
DM
226 # disk checks need to be done somewhere else
227 next if PVE::QemuServer::valid_drivename($opt);
228
229 if ($opt eq 'sockets' || $opt eq 'cores' ||
de9d1e55 230 $opt eq 'cpu' || $opt eq 'smp' || $opt eq 'vcpus' ||
ab6b35df 231 $opt eq 'cpulimit' || $opt eq 'cpuunits') {
a0d1b1a2
DM
232 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.CPU']);
233 } elsif ($opt eq 'boot' || $opt eq 'bootdisk') {
234 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Disk']);
ccd5438f 235 } elsif ($opt eq 'memory' || $opt eq 'balloon' || $opt eq 'shares') {
a0d1b1a2
DM
236 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Memory']);
237 } elsif ($opt eq 'args' || $opt eq 'lock') {
238 die "only root can set '$opt' config\n";
6dbe8b45 239 } elsif ($opt eq 'cpu' || $opt eq 'kvm' || $opt eq 'acpi' || $opt eq 'machine' ||
d7fd6a44 240 $opt eq 'vga' || $opt eq 'watchdog' || $opt eq 'tablet' || $opt eq 'smbios1') {
a0d1b1a2
DM
241 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.HWType']);
242 } elsif ($opt =~ m/^net\d+$/) {
243 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Network']);
244 } else {
245 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Options']);
246 }
247 }
248
249 return 1;
250};
251
1e3baf05 252__PACKAGE__->register_method({
afdb31d5
DM
253 name => 'vmlist',
254 path => '',
1e3baf05
DM
255 method => 'GET',
256 description => "Virtual machine index (per node).",
a0d1b1a2
DM
257 permissions => {
258 description => "Only list VMs where you have VM.Audit permissons on /vms/<vmid>.",
259 user => 'all',
260 },
1e3baf05
DM
261 proxyto => 'node',
262 protected => 1, # qemu pid files are only readable by root
263 parameters => {
264 additionalProperties => 0,
265 properties => {
266 node => get_standard_option('pve-node'),
267 },
268 },
269 returns => {
270 type => 'array',
271 items => {
272 type => "object",
273 properties => {},
274 },
275 links => [ { rel => 'child', href => "{vmid}" } ],
276 },
277 code => sub {
278 my ($param) = @_;
279
a0d1b1a2
DM
280 my $rpcenv = PVE::RPCEnvironment::get();
281 my $authuser = $rpcenv->get_user();
282
1e3baf05
DM
283 my $vmstatus = PVE::QemuServer::vmstatus();
284
a0d1b1a2
DM
285 my $res = [];
286 foreach my $vmid (keys %$vmstatus) {
287 next if !$rpcenv->check($authuser, "/vms/$vmid", [ 'VM.Audit' ], 1);
288
289 my $data = $vmstatus->{$vmid};
184955dc 290 $data->{vmid} = int($vmid);
a0d1b1a2
DM
291 push @$res, $data;
292 }
1e3baf05 293
a0d1b1a2 294 return $res;
1e3baf05
DM
295 }});
296
d703d4c0 297
d703d4c0 298
1e3baf05 299__PACKAGE__->register_method({
afdb31d5
DM
300 name => 'create_vm',
301 path => '',
1e3baf05 302 method => 'POST',
3e16d5fc 303 description => "Create or restore a virtual machine.",
a0d1b1a2 304 permissions => {
f9bfceef
DM
305 description => "You need 'VM.Allocate' permissions on /vms/{vmid} or on the VM pool /pool/{pool}. " .
306 "For restore (option 'archive'), it is enough if the user has 'VM.Backup' permission and the VM already exists. " .
307 "If you create disks you need 'Datastore.AllocateSpace' on any used storage.",
308 user => 'all', # check inside
a0d1b1a2 309 },
1e3baf05
DM
310 protected => 1,
311 proxyto => 'node',
312 parameters => {
313 additionalProperties => 0,
314 properties => PVE::QemuServer::json_config_properties(
315 {
316 node => get_standard_option('pve-node'),
317 vmid => get_standard_option('pve-vmid'),
3e16d5fc
DM
318 archive => {
319 description => "The backup file.",
320 type => 'string',
321 optional => 1,
322 maxLength => 255,
323 },
324 storage => get_standard_option('pve-storage-id', {
325 description => "Default storage.",
326 optional => 1,
327 }),
328 force => {
afdb31d5 329 optional => 1,
3e16d5fc
DM
330 type => 'boolean',
331 description => "Allow to overwrite existing VM.",
51586c3a
DM
332 requires => 'archive',
333 },
334 unique => {
afdb31d5 335 optional => 1,
51586c3a
DM
336 type => 'boolean',
337 description => "Assign a unique random ethernet address.",
338 requires => 'archive',
3e16d5fc 339 },
75466c4f 340 pool => {
a0d1b1a2
DM
341 optional => 1,
342 type => 'string', format => 'pve-poolid',
343 description => "Add the VM to the specified pool.",
344 },
1e3baf05
DM
345 }),
346 },
afdb31d5 347 returns => {
5fdbe4f0
DM
348 type => 'string',
349 },
1e3baf05
DM
350 code => sub {
351 my ($param) = @_;
352
5fdbe4f0
DM
353 my $rpcenv = PVE::RPCEnvironment::get();
354
a0d1b1a2 355 my $authuser = $rpcenv->get_user();
5fdbe4f0 356
1e3baf05
DM
357 my $node = extract_param($param, 'node');
358
1e3baf05
DM
359 my $vmid = extract_param($param, 'vmid');
360
3e16d5fc
DM
361 my $archive = extract_param($param, 'archive');
362
363 my $storage = extract_param($param, 'storage');
364
51586c3a
DM
365 my $force = extract_param($param, 'force');
366
367 my $unique = extract_param($param, 'unique');
75466c4f 368
a0d1b1a2 369 my $pool = extract_param($param, 'pool');
51586c3a 370
1e3baf05 371 my $filename = PVE::QemuServer::config_file($vmid);
afdb31d5
DM
372
373 my $storecfg = PVE::Storage::config();
1e3baf05 374
3e16d5fc 375 PVE::Cluster::check_cfs_quorum();
1e3baf05 376
a0d1b1a2
DM
377 if (defined($pool)) {
378 $rpcenv->check_pool_exist($pool);
75466c4f 379 }
a0d1b1a2 380
fcbb753e 381 $rpcenv->check($authuser, "/storage/$storage", ['Datastore.AllocateSpace'])
a0d1b1a2
DM
382 if defined($storage);
383
f9bfceef
DM
384 if ($rpcenv->check($authuser, "/vms/$vmid", ['VM.Allocate'], 1)) {
385 # OK
386 } elsif ($pool && $rpcenv->check($authuser, "/pool/$pool", ['VM.Allocate'], 1)) {
387 # OK
388 } elsif ($archive && $force && (-f $filename) &&
389 $rpcenv->check($authuser, "/vms/$vmid", ['VM.Backup'], 1)) {
390 # OK: user has VM.Backup permissions, and want to restore an existing VM
391 } else {
392 raise_perm_exc();
393 }
394
afdb31d5 395 if (!$archive) {
3e16d5fc 396 &$resolve_cdrom_alias($param);
1e3baf05 397
fcbb753e 398 &$check_storage_access($rpcenv, $authuser, $storecfg, $vmid, $param, $storage);
ae57f6b3
DM
399
400 &$check_vm_modify_config_perm($rpcenv, $authuser, $vmid, $pool, [ keys %$param]);
401
3e16d5fc
DM
402 foreach my $opt (keys %$param) {
403 if (PVE::QemuServer::valid_drivename($opt)) {
404 my $drive = PVE::QemuServer::parse_drive($opt, $param->{$opt});
405 raise_param_exc({ $opt => "unable to parse drive options" }) if !$drive;
afdb31d5 406
3e16d5fc
DM
407 PVE::QemuServer::cleanup_drive_path($opt, $storecfg, $drive);
408 $param->{$opt} = PVE::QemuServer::print_drive($vmid, $drive);
409 }
1e3baf05 410 }
3e16d5fc
DM
411
412 PVE::QemuServer::add_random_macs($param);
51586c3a
DM
413 } else {
414 my $keystr = join(' ', keys %$param);
bc4dcb99
DM
415 raise_param_exc({ archive => "option conflicts with other options ($keystr)"}) if $keystr;
416
5b9d692a 417 if ($archive eq '-') {
afdb31d5 418 die "pipe requires cli environment\n"
d7810bc1 419 if $rpcenv->{type} ne 'cli';
5b9d692a 420 } else {
c9928b3d
DM
421 $rpcenv->check_volume_access($authuser, $storecfg, $vmid, $archive);
422 $archive = PVE::Storage::abs_filesystem_path($storecfg, $archive);
971f27c4 423 }
1e3baf05
DM
424 }
425
3e16d5fc
DM
426 my $restorefn = sub {
427
6116f729 428 # fixme: this test does not work if VM exists on other node!
3e16d5fc 429 if (-f $filename) {
afdb31d5 430 die "unable to restore vm $vmid: config file already exists\n"
51586c3a 431 if !$force;
3e16d5fc 432
afdb31d5 433 die "unable to restore vm $vmid: vm is running\n"
3e16d5fc
DM
434 if PVE::QemuServer::check_running($vmid);
435 }
436
437 my $realcmd = sub {
a0d1b1a2 438 PVE::QemuServer::restore_archive($archive, $vmid, $authuser, {
51586c3a 439 storage => $storage,
a0d1b1a2 440 pool => $pool,
51586c3a 441 unique => $unique });
502d18a2 442
be517049 443 PVE::AccessControl::add_vm_to_pool($vmid, $pool) if $pool;
3e16d5fc
DM
444 };
445
a0d1b1a2 446 return $rpcenv->fork_worker('qmrestore', $vmid, $authuser, $realcmd);
3e16d5fc 447 };
1e3baf05 448
1e3baf05
DM
449 my $createfn = sub {
450
191435c6 451 # test after locking
afdb31d5 452 die "unable to create vm $vmid: config file already exists\n"
1e3baf05
DM
453 if -f $filename;
454
5fdbe4f0 455 my $realcmd = sub {
1e3baf05 456
5fdbe4f0 457 my $vollist = [];
1e3baf05 458
1858638f
DM
459 my $conf = $param;
460
5fdbe4f0 461 eval {
ae57f6b3 462
1858638f 463 $vollist = &$create_disks($rpcenv, $authuser, $conf, $storecfg, $vmid, $pool, $param, $storage);
1e3baf05 464
5fdbe4f0
DM
465 # try to be smart about bootdisk
466 my @disks = PVE::QemuServer::disknames();
467 my $firstdisk;
468 foreach my $ds (reverse @disks) {
1858638f
DM
469 next if !$conf->{$ds};
470 my $disk = PVE::QemuServer::parse_drive($ds, $conf->{$ds});
5fdbe4f0
DM
471 next if PVE::QemuServer::drive_is_cdrom($disk);
472 $firstdisk = $ds;
473 }
1e3baf05 474
1858638f
DM
475 if (!$conf->{bootdisk} && $firstdisk) {
476 $conf->{bootdisk} = $firstdisk;
5fdbe4f0 477 }
1e3baf05 478
47314bf5
DM
479 # auto generate uuid if user did not specify smbios1 option
480 if (!$conf->{smbios1}) {
481 my ($uuid, $uuid_str);
482 UUID::generate($uuid);
483 UUID::unparse($uuid, $uuid_str);
484 $conf->{smbios1} = "uuid=$uuid_str";
485 }
486
ae9ca91d
DM
487 PVE::QemuServer::update_config_nolock($vmid, $conf);
488
5fdbe4f0
DM
489 };
490 my $err = $@;
1e3baf05 491
5fdbe4f0
DM
492 if ($err) {
493 foreach my $volid (@$vollist) {
494 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
495 warn $@ if $@;
496 }
497 die "create failed - $err";
498 }
502d18a2 499
be517049 500 PVE::AccessControl::add_vm_to_pool($vmid, $pool) if $pool;
5fdbe4f0
DM
501 };
502
a0d1b1a2 503 return $rpcenv->fork_worker('qmcreate', $vmid, $authuser, $realcmd);
5fdbe4f0
DM
504 };
505
191435c6 506 return PVE::QemuServer::lock_config_full($vmid, 1, $archive ? $restorefn : $createfn);
1e3baf05
DM
507 }});
508
509__PACKAGE__->register_method({
510 name => 'vmdiridx',
afdb31d5 511 path => '{vmid}',
1e3baf05
DM
512 method => 'GET',
513 proxyto => 'node',
514 description => "Directory index",
a0d1b1a2
DM
515 permissions => {
516 user => 'all',
517 },
1e3baf05
DM
518 parameters => {
519 additionalProperties => 0,
520 properties => {
521 node => get_standard_option('pve-node'),
522 vmid => get_standard_option('pve-vmid'),
523 },
524 },
525 returns => {
526 type => 'array',
527 items => {
528 type => "object",
529 properties => {
530 subdir => { type => 'string' },
531 },
532 },
533 links => [ { rel => 'child', href => "{subdir}" } ],
534 },
535 code => sub {
536 my ($param) = @_;
537
538 my $res = [
539 { subdir => 'config' },
df2a2dbb 540 { subdir => 'pending' },
1e3baf05
DM
541 { subdir => 'status' },
542 { subdir => 'unlink' },
543 { subdir => 'vncproxy' },
3ea94c60 544 { subdir => 'migrate' },
2f48a4f5 545 { subdir => 'resize' },
586bfa78 546 { subdir => 'move' },
1e3baf05
DM
547 { subdir => 'rrd' },
548 { subdir => 'rrddata' },
91c94f0a 549 { subdir => 'monitor' },
7e7d7b61 550 { subdir => 'snapshot' },
288eeea8 551 { subdir => 'spiceproxy' },
7aa608d6 552 { subdir => 'sendkey' },
228a998b 553 { subdir => 'firewall' },
1e3baf05 554 ];
afdb31d5 555
1e3baf05
DM
556 return $res;
557 }});
558
228a998b 559__PACKAGE__->register_method ({
f34ebd52 560 subclass => "PVE::API2::Firewall::VM",
228a998b
DM
561 path => '{vmid}/firewall',
562});
563
1e3baf05 564__PACKAGE__->register_method({
afdb31d5
DM
565 name => 'rrd',
566 path => '{vmid}/rrd',
1e3baf05
DM
567 method => 'GET',
568 protected => 1, # fixme: can we avoid that?
569 permissions => {
378b359e 570 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
1e3baf05
DM
571 },
572 description => "Read VM RRD statistics (returns PNG)",
573 parameters => {
574 additionalProperties => 0,
575 properties => {
576 node => get_standard_option('pve-node'),
577 vmid => get_standard_option('pve-vmid'),
578 timeframe => {
579 description => "Specify the time frame you are interested in.",
580 type => 'string',
581 enum => [ 'hour', 'day', 'week', 'month', 'year' ],
582 },
583 ds => {
584 description => "The list of datasources you want to display.",
585 type => 'string', format => 'pve-configid-list',
586 },
587 cf => {
588 description => "The RRD consolidation function",
589 type => 'string',
590 enum => [ 'AVERAGE', 'MAX' ],
591 optional => 1,
592 },
593 },
594 },
595 returns => {
596 type => "object",
597 properties => {
598 filename => { type => 'string' },
599 },
600 },
601 code => sub {
602 my ($param) = @_;
603
604 return PVE::Cluster::create_rrd_graph(
afdb31d5 605 "pve2-vm/$param->{vmid}", $param->{timeframe},
1e3baf05 606 $param->{ds}, $param->{cf});
afdb31d5 607
1e3baf05
DM
608 }});
609
610__PACKAGE__->register_method({
afdb31d5
DM
611 name => 'rrddata',
612 path => '{vmid}/rrddata',
1e3baf05
DM
613 method => 'GET',
614 protected => 1, # fixme: can we avoid that?
615 permissions => {
378b359e 616 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
1e3baf05
DM
617 },
618 description => "Read VM RRD statistics",
619 parameters => {
620 additionalProperties => 0,
621 properties => {
622 node => get_standard_option('pve-node'),
623 vmid => get_standard_option('pve-vmid'),
624 timeframe => {
625 description => "Specify the time frame you are interested in.",
626 type => 'string',
627 enum => [ 'hour', 'day', 'week', 'month', 'year' ],
628 },
629 cf => {
630 description => "The RRD consolidation function",
631 type => 'string',
632 enum => [ 'AVERAGE', 'MAX' ],
633 optional => 1,
634 },
635 },
636 },
637 returns => {
638 type => "array",
639 items => {
640 type => "object",
641 properties => {},
642 },
643 },
644 code => sub {
645 my ($param) = @_;
646
647 return PVE::Cluster::create_rrd_data(
648 "pve2-vm/$param->{vmid}", $param->{timeframe}, $param->{cf});
649 }});
650
651
652__PACKAGE__->register_method({
afdb31d5
DM
653 name => 'vm_config',
654 path => '{vmid}/config',
1e3baf05
DM
655 method => 'GET',
656 proxyto => 'node',
1e7f2726 657 description => "Get current virtual machine configuration. This does not include pending configuration changes (see 'pending' API).",
a0d1b1a2
DM
658 permissions => {
659 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
660 },
1e3baf05
DM
661 parameters => {
662 additionalProperties => 0,
663 properties => {
664 node => get_standard_option('pve-node'),
665 vmid => get_standard_option('pve-vmid'),
6d89b548
DM
666 current => {
667 description => "Get current values (instead of pending values).",
668 optional => 1,
669 default => 0,
670 type => 'boolean',
671 },
1e3baf05
DM
672 },
673 },
afdb31d5 674 returns => {
1e3baf05 675 type => "object",
554ac7e7
DM
676 properties => {
677 digest => {
678 type => 'string',
679 description => 'SHA1 digest of configuration file. This can be used to prevent concurrent modifications.',
680 }
681 },
1e3baf05
DM
682 },
683 code => sub {
684 my ($param) = @_;
685
686 my $conf = PVE::QemuServer::load_config($param->{vmid});
687
22c377f0 688 delete $conf->{snapshots};
6d89b548
DM
689
690 if (!$param->{current}) {
025e1d90 691 foreach my $opt (keys %{$conf->{pending}}) {
6d89b548
DM
692 next if $opt eq 'delete';
693 my $value = $conf->{pending}->{$opt};
694 next if ref($value); # just to be sure
695 $conf->{$opt} = $value;
696 }
697 foreach my $opt (PVE::Tools::split_list($conf->{pending}->{delete})) {
698 delete $conf->{$opt} if $conf->{$opt};
699 }
700 }
701
1e7f2726 702 delete $conf->{pending};
22c377f0 703
1e3baf05
DM
704 return $conf;
705 }});
706
1e7f2726
DM
707__PACKAGE__->register_method({
708 name => 'vm_pending',
709 path => '{vmid}/pending',
710 method => 'GET',
711 proxyto => 'node',
712 description => "Get virtual machine configuration, including pending changes.",
713 permissions => {
714 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
715 },
716 parameters => {
717 additionalProperties => 0,
718 properties => {
719 node => get_standard_option('pve-node'),
720 vmid => get_standard_option('pve-vmid'),
721 },
722 },
723 returns => {
724 type => "array",
725 items => {
726 type => "object",
727 properties => {
728 key => {
729 description => "Configuration option name.",
730 type => 'string',
731 },
732 value => {
733 description => "Current value.",
734 type => 'string',
735 optional => 1,
736 },
737 pending => {
738 description => "Pending value.",
739 type => 'string',
740 optional => 1,
741 },
742 delete => {
743 description => "Indicated a pending delete request.",
744 type => 'boolean',
745 optional => 1,
746 },
747 },
748 },
749 },
750 code => sub {
751 my ($param) = @_;
752
753 my $conf = PVE::QemuServer::load_config($param->{vmid});
754
755 my $pending_delete_hash = {};
756 foreach my $opt (PVE::Tools::split_list($conf->{pending}->{delete})) {
757 $pending_delete_hash->{$opt} = 1;
758 }
759
760 my $res = [];
761
025e1d90 762 foreach my $opt (keys %$conf) {
1e7f2726
DM
763 next if ref($conf->{$opt});
764 my $item = { key => $opt };
765 $item->{value} = $conf->{$opt} if defined($conf->{$opt});
766 $item->{pending} = $conf->{pending}->{$opt} if defined($conf->{pending}->{$opt});
767 $item->{delete} = 1 if $pending_delete_hash->{$opt};
768 push @$res, $item;
769 }
770
025e1d90 771 foreach my $opt (keys %{$conf->{pending}}) {
1e7f2726
DM
772 next if $opt eq 'delete';
773 next if ref($conf->{pending}->{$opt}); # just to be sure
0e54e1c8 774 next if defined($conf->{$opt});
1e7f2726
DM
775 my $item = { key => $opt };
776 $item->{pending} = $conf->{pending}->{$opt};
777 push @$res, $item;
778 }
779
780 foreach my $opt (PVE::Tools::split_list($conf->{pending}->{delete})) {
781 next if $conf->{pending}->{$opt}; # just to be sure
782 next if $conf->{$opt};
783 my $item = { key => $opt, delete => 1};
784 push @$res, $item;
785 }
786
787 return $res;
788 }});
789
5555edea
DM
790# POST/PUT {vmid}/config implementation
791#
792# The original API used PUT (idempotent) an we assumed that all operations
793# are fast. But it turned out that almost any configuration change can
794# involve hot-plug actions, or disk alloc/free. Such actions can take long
795# time to complete and have side effects (not idempotent).
796#
7043d946 797# The new implementation uses POST and forks a worker process. We added
5555edea 798# a new option 'background_delay'. If specified we wait up to
7043d946 799# 'background_delay' second for the worker task to complete. It returns null
5555edea 800# if the task is finished within that time, else we return the UPID.
7043d946 801
5555edea
DM
802my $update_vm_api = sub {
803 my ($param, $sync) = @_;
a0d1b1a2 804
5555edea 805 my $rpcenv = PVE::RPCEnvironment::get();
1e3baf05 806
5555edea 807 my $authuser = $rpcenv->get_user();
1e3baf05 808
5555edea 809 my $node = extract_param($param, 'node');
1e3baf05 810
5555edea 811 my $vmid = extract_param($param, 'vmid');
1e3baf05 812
5555edea 813 my $digest = extract_param($param, 'digest');
1e3baf05 814
5555edea 815 my $background_delay = extract_param($param, 'background_delay');
1e3baf05 816
5555edea
DM
817 my @paramarr = (); # used for log message
818 foreach my $key (keys %$param) {
819 push @paramarr, "-$key", $param->{$key};
820 }
0532bc63 821
5555edea
DM
822 my $skiplock = extract_param($param, 'skiplock');
823 raise_param_exc({ skiplock => "Only root may use this option." })
824 if $skiplock && $authuser ne 'root@pam';
1e3baf05 825
5555edea 826 my $delete_str = extract_param($param, 'delete');
0532bc63 827
d3df8cf3
DM
828 my $revert_str = extract_param($param, 'revert');
829
5555edea 830 my $force = extract_param($param, 'force');
1e68cb19 831
d3df8cf3 832 die "no options specified\n" if !$delete_str && !$revert_str && !scalar(keys %$param);
7bfdeb5f 833
5555edea 834 my $storecfg = PVE::Storage::config();
1e68cb19 835
5555edea 836 my $defaults = PVE::QemuServer::load_defaults();
1e68cb19 837
5555edea 838 &$resolve_cdrom_alias($param);
0532bc63 839
5555edea 840 # now try to verify all parameters
ae57f6b3 841
d3df8cf3
DM
842 my $revert = {};
843 foreach my $opt (PVE::Tools::split_list($revert_str)) {
844 if (!PVE::QemuServer::option_exists($opt)) {
845 raise_param_exc({ revert => "unknown option '$opt'" });
846 }
847
848 raise_param_exc({ delete => "you can't use '-$opt' and " .
849 "-revert $opt' at the same time" })
850 if defined($param->{$opt});
851
852 $revert->{$opt} = 1;
853 }
854
5555edea
DM
855 my @delete = ();
856 foreach my $opt (PVE::Tools::split_list($delete_str)) {
857 $opt = 'ide2' if $opt eq 'cdrom';
d3df8cf3 858
5555edea
DM
859 raise_param_exc({ delete => "you can't use '-$opt' and " .
860 "-delete $opt' at the same time" })
861 if defined($param->{$opt});
7043d946 862
d3df8cf3
DM
863 raise_param_exc({ revert => "you can't use '-delete $opt' and " .
864 "-revert $opt' at the same time" })
865 if $revert->{$opt};
866
5555edea
DM
867 if (!PVE::QemuServer::option_exists($opt)) {
868 raise_param_exc({ delete => "unknown option '$opt'" });
0532bc63 869 }
1e3baf05 870
5555edea
DM
871 push @delete, $opt;
872 }
873
874 foreach my $opt (keys %$param) {
875 if (PVE::QemuServer::valid_drivename($opt)) {
876 # cleanup drive path
877 my $drive = PVE::QemuServer::parse_drive($opt, $param->{$opt});
878 PVE::QemuServer::cleanup_drive_path($opt, $storecfg, $drive);
879 $param->{$opt} = PVE::QemuServer::print_drive($vmid, $drive);
880 } elsif ($opt =~ m/^net(\d+)$/) {
881 # add macaddr
882 my $net = PVE::QemuServer::parse_net($param->{$opt});
883 $param->{$opt} = PVE::QemuServer::print_net($net);
1e68cb19 884 }
5555edea 885 }
1e3baf05 886
5555edea 887 &$check_vm_modify_config_perm($rpcenv, $authuser, $vmid, undef, [@delete]);
ae57f6b3 888
5555edea 889 &$check_vm_modify_config_perm($rpcenv, $authuser, $vmid, undef, [keys %$param]);
ae57f6b3 890
5555edea 891 &$check_storage_access($rpcenv, $authuser, $storecfg, $vmid, $param);
1e3baf05 892
5555edea 893 my $updatefn = sub {
1e3baf05 894
5555edea 895 my $conf = PVE::QemuServer::load_config($vmid);
1e3baf05 896
5555edea
DM
897 die "checksum missmatch (file change by other user?)\n"
898 if $digest && $digest ne $conf->{digest};
899
900 PVE::QemuServer::check_lock($conf) if !$skiplock;
7043d946 901
d3df8cf3
DM
902 foreach my $opt (keys %$revert) {
903 if (defined($conf->{$opt})) {
904 $param->{$opt} = $conf->{$opt};
905 } elsif (defined($conf->{pending}->{$opt})) {
906 push @delete, $opt;
907 }
908 }
909
5555edea 910 if ($param->{memory} || defined($param->{balloon})) {
6ca8b698
DM
911 my $maxmem = $param->{memory} || $conf->{pending}->{memory} || $conf->{memory} || $defaults->{memory};
912 my $balloon = defined($param->{balloon}) ? $param->{balloon} : $conf->{pending}->{balloon} || $conf->{balloon};
7043d946 913
5555edea
DM
914 die "balloon value too large (must be smaller than assigned memory)\n"
915 if $balloon && $balloon > $maxmem;
916 }
1e3baf05 917
5555edea 918 PVE::Cluster::log_msg('info', $authuser, "update VM $vmid: " . join (' ', @paramarr));
1e3baf05 919
5555edea 920 my $worker = sub {
7bfdeb5f 921
5555edea 922 print "update VM $vmid: " . join (' ', @paramarr) . "\n";
c2a64aa7 923
202d1f45
DM
924 # write updates to pending section
925
3a11fadb
DM
926 my $modified = {}; # record what $option we modify
927
202d1f45 928 foreach my $opt (@delete) {
3a11fadb 929 $modified->{$opt} = 1;
1e68cb19 930 $conf = PVE::QemuServer::load_config($vmid); # update/reload
202d1f45
DM
931 if ($opt =~ m/^unused/) {
932 $rpcenv->check_vm_perm($authuser, $vmid, undef, ['VM.Config.Disk']);
933 my $drive = PVE::QemuServer::parse_drive($opt, $conf->{$opt});
934 if (my $sid = &$test_deallocate_drive($storecfg, $vmid, $opt, $drive, $force)) {
935 $rpcenv->check($authuser, "/storage/$sid", ['Datastore.AllocateSpace']);
936 &$delete_drive($conf, $storecfg, $vmid, $opt, $drive);
937 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
938 }
939 } elsif (PVE::QemuServer::valid_drivename($opt)) {
940 $rpcenv->check_vm_perm($authuser, $vmid, undef, ['VM.Config.Disk']);
055d554d 941 PVE::QemuServer::vmconfig_register_unused_drive($storecfg, $vmid, $conf, PVE::QemuServer::parse_drive($opt, $conf->{pending}->{$opt}))
202d1f45 942 if defined($conf->{pending}->{$opt});
055d554d 943 PVE::QemuServer::vmconfig_delete_pending_option($conf, $opt);
202d1f45
DM
944 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
945 } else {
055d554d 946 PVE::QemuServer::vmconfig_delete_pending_option($conf, $opt);
202d1f45
DM
947 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
948 }
5d39a182 949 }
1e3baf05 950
202d1f45 951 foreach my $opt (keys %$param) { # add/change
3a11fadb 952 $modified->{$opt} = 1;
202d1f45
DM
953 $conf = PVE::QemuServer::load_config($vmid); # update/reload
954 next if defined($conf->{pending}->{$opt}) && ($param->{$opt} eq $conf->{pending}->{$opt}); # skip if nothing changed
955
956 if (PVE::QemuServer::valid_drivename($opt)) {
957 my $drive = PVE::QemuServer::parse_drive($opt, $param->{$opt});
958 if (PVE::QemuServer::drive_is_cdrom($drive)) { # CDROM
959 $rpcenv->check_vm_perm($authuser, $vmid, undef, ['VM.Config.CDROM']);
960 } else {
961 $rpcenv->check_vm_perm($authuser, $vmid, undef, ['VM.Config.Disk']);
962 }
055d554d 963 PVE::QemuServer::vmconfig_register_unused_drive($storecfg, $vmid, $conf, PVE::QemuServer::parse_drive($opt, $conf->{pending}->{$opt}))
202d1f45
DM
964 if defined($conf->{pending}->{$opt});
965
966 &$create_disks($rpcenv, $authuser, $conf->{pending}, $storecfg, $vmid, undef, {$opt => $param->{$opt}});
967 } else {
968 $conf->{pending}->{$opt} = $param->{$opt};
969 }
055d554d 970 PVE::QemuServer::vmconfig_undelete_pending_option($conf, $opt);
202d1f45
DM
971 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
972 }
973
974 # remove pending changes when nothing changed
202d1f45 975 $conf = PVE::QemuServer::load_config($vmid); # update/reload
c750e90a 976 my $changes = PVE::QemuServer::vmconfig_cleanup_pending($conf);
202d1f45
DM
977 PVE::QemuServer::update_config_nolock($vmid, $conf, 1) if $changes;
978
979 return if !scalar(keys %{$conf->{pending}});
980
7bfdeb5f 981 my $running = PVE::QemuServer::check_running($vmid);
39001640
DM
982
983 # apply pending changes
984
985 $conf = PVE::QemuServer::load_config($vmid); # update/reload
39001640 986
3a11fadb
DM
987 if ($running) {
988 my $errors = {};
989 PVE::QemuServer::vmconfig_hotplug_pending($vmid, $conf, $storecfg, $modified, $errors);
990 raise_param_exc($errors) if scalar(keys %$errors);
991 } else {
992 PVE::QemuServer::vmconfig_apply_pending($vmid, $conf, $storecfg, $running);
993 }
1e68cb19 994
915d3481 995 return;
5d39a182
DM
996 };
997
5555edea
DM
998 if ($sync) {
999 &$worker();
1000 return undef;
1001 } else {
1002 my $upid = $rpcenv->fork_worker('qmconfig', $vmid, $authuser, $worker);
fcdb0117 1003
5555edea
DM
1004 if ($background_delay) {
1005
1006 # Note: It would be better to do that in the Event based HTTPServer
7043d946 1007 # to avoid blocking call to sleep.
5555edea
DM
1008
1009 my $end_time = time() + $background_delay;
1010
1011 my $task = PVE::Tools::upid_decode($upid);
1012
1013 my $running = 1;
1014 while (time() < $end_time) {
1015 $running = PVE::ProcFSTools::check_process_running($task->{pid}, $task->{pstart});
1016 last if !$running;
1017 sleep(1); # this gets interrupted when child process ends
1018 }
1019
1020 if (!$running) {
1021 my $status = PVE::Tools::upid_read_status($upid);
1022 return undef if $status eq 'OK';
1023 die $status;
1024 }
7043d946 1025 }
5555edea
DM
1026
1027 return $upid;
1028 }
1029 };
1030
1031 return PVE::QemuServer::lock_config($vmid, $updatefn);
1032};
1033
1034my $vm_config_perm_list = [
1035 'VM.Config.Disk',
1036 'VM.Config.CDROM',
1037 'VM.Config.CPU',
1038 'VM.Config.Memory',
1039 'VM.Config.Network',
1040 'VM.Config.HWType',
1041 'VM.Config.Options',
1042 ];
1043
1044__PACKAGE__->register_method({
1045 name => 'update_vm_async',
1046 path => '{vmid}/config',
1047 method => 'POST',
1048 protected => 1,
1049 proxyto => 'node',
1050 description => "Set virtual machine options (asynchrounous API).",
1051 permissions => {
1052 check => ['perm', '/vms/{vmid}', $vm_config_perm_list, any => 1],
1053 },
1054 parameters => {
1055 additionalProperties => 0,
1056 properties => PVE::QemuServer::json_config_properties(
1057 {
1058 node => get_standard_option('pve-node'),
1059 vmid => get_standard_option('pve-vmid'),
1060 skiplock => get_standard_option('skiplock'),
1061 delete => {
1062 type => 'string', format => 'pve-configid-list',
1063 description => "A list of settings you want to delete.",
1064 optional => 1,
1065 },
4c8365fa
DM
1066 revert => {
1067 type => 'string', format => 'pve-configid-list',
1068 description => "Revert a pending change.",
1069 optional => 1,
1070 },
5555edea
DM
1071 force => {
1072 type => 'boolean',
1073 description => $opt_force_description,
1074 optional => 1,
1075 requires => 'delete',
1076 },
1077 digest => {
1078 type => 'string',
1079 description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.',
1080 maxLength => 40,
1081 optional => 1,
1082 },
1083 background_delay => {
1084 type => 'integer',
1085 description => "Time to wait for the task to finish. We return 'null' if the task finish within that time.",
1086 minimum => 1,
1087 maximum => 30,
1088 optional => 1,
1089 },
1090 }),
1091 },
1092 returns => {
1093 type => 'string',
1094 optional => 1,
1095 },
1096 code => $update_vm_api,
1097});
1098
1099__PACKAGE__->register_method({
1100 name => 'update_vm',
1101 path => '{vmid}/config',
1102 method => 'PUT',
1103 protected => 1,
1104 proxyto => 'node',
1105 description => "Set virtual machine options (synchrounous API) - You should consider using the POST method instead for any actions involving hotplug or storage allocation.",
1106 permissions => {
1107 check => ['perm', '/vms/{vmid}', $vm_config_perm_list, any => 1],
1108 },
1109 parameters => {
1110 additionalProperties => 0,
1111 properties => PVE::QemuServer::json_config_properties(
1112 {
1113 node => get_standard_option('pve-node'),
1114 vmid => get_standard_option('pve-vmid'),
1115 skiplock => get_standard_option('skiplock'),
1116 delete => {
1117 type => 'string', format => 'pve-configid-list',
1118 description => "A list of settings you want to delete.",
1119 optional => 1,
1120 },
4c8365fa
DM
1121 revert => {
1122 type => 'string', format => 'pve-configid-list',
1123 description => "Revert a pending change.",
1124 optional => 1,
1125 },
5555edea
DM
1126 force => {
1127 type => 'boolean',
1128 description => $opt_force_description,
1129 optional => 1,
1130 requires => 'delete',
1131 },
1132 digest => {
1133 type => 'string',
1134 description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.',
1135 maxLength => 40,
1136 optional => 1,
1137 },
1138 }),
1139 },
1140 returns => { type => 'null' },
1141 code => sub {
1142 my ($param) = @_;
1143 &$update_vm_api($param, 1);
1e3baf05 1144 return undef;
5555edea
DM
1145 }
1146});
1e3baf05
DM
1147
1148
1149__PACKAGE__->register_method({
afdb31d5
DM
1150 name => 'destroy_vm',
1151 path => '{vmid}',
1e3baf05
DM
1152 method => 'DELETE',
1153 protected => 1,
1154 proxyto => 'node',
1155 description => "Destroy the vm (also delete all used/owned volumes).",
a0d1b1a2
DM
1156 permissions => {
1157 check => [ 'perm', '/vms/{vmid}', ['VM.Allocate']],
1158 },
1e3baf05
DM
1159 parameters => {
1160 additionalProperties => 0,
1161 properties => {
1162 node => get_standard_option('pve-node'),
1163 vmid => get_standard_option('pve-vmid'),
3ea94c60 1164 skiplock => get_standard_option('skiplock'),
1e3baf05
DM
1165 },
1166 },
afdb31d5 1167 returns => {
5fdbe4f0
DM
1168 type => 'string',
1169 },
1e3baf05
DM
1170 code => sub {
1171 my ($param) = @_;
1172
1173 my $rpcenv = PVE::RPCEnvironment::get();
1174
a0d1b1a2 1175 my $authuser = $rpcenv->get_user();
1e3baf05
DM
1176
1177 my $vmid = $param->{vmid};
1178
1179 my $skiplock = $param->{skiplock};
afdb31d5 1180 raise_param_exc({ skiplock => "Only root may use this option." })
a0d1b1a2 1181 if $skiplock && $authuser ne 'root@pam';
1e3baf05 1182
5fdbe4f0
DM
1183 # test if VM exists
1184 my $conf = PVE::QemuServer::load_config($vmid);
1185
afdb31d5 1186 my $storecfg = PVE::Storage::config();
1e3baf05 1187
75466c4f 1188 my $delVMfromPoolFn = sub {
502d18a2 1189 my $usercfg = cfs_read_file("user.cfg");
5d0094ea
DM
1190 if (my $pool = $usercfg->{vms}->{$vmid}) {
1191 if (my $data = $usercfg->{pools}->{$pool}) {
1192 delete $data->{vms}->{$vmid};
1193 delete $usercfg->{vms}->{$vmid};
1194 cfs_write_file("user.cfg", $usercfg);
1195 }
502d18a2
DM
1196 }
1197 };
1198
5fdbe4f0 1199 my $realcmd = sub {
ff1a2432
DM
1200 my $upid = shift;
1201
1202 syslog('info', "destroy VM $vmid: $upid\n");
1203
5fdbe4f0 1204 PVE::QemuServer::vm_destroy($storecfg, $vmid, $skiplock);
502d18a2 1205
be517049 1206 PVE::AccessControl::remove_vm_from_pool($vmid);
5fdbe4f0 1207 };
1e3baf05 1208
a0d1b1a2 1209 return $rpcenv->fork_worker('qmdestroy', $vmid, $authuser, $realcmd);
1e3baf05
DM
1210 }});
1211
1212__PACKAGE__->register_method({
afdb31d5
DM
1213 name => 'unlink',
1214 path => '{vmid}/unlink',
1e3baf05
DM
1215 method => 'PUT',
1216 protected => 1,
1217 proxyto => 'node',
1218 description => "Unlink/delete disk images.",
a0d1b1a2
DM
1219 permissions => {
1220 check => [ 'perm', '/vms/{vmid}', ['VM.Config.Disk']],
1221 },
1e3baf05
DM
1222 parameters => {
1223 additionalProperties => 0,
1224 properties => {
1225 node => get_standard_option('pve-node'),
1226 vmid => get_standard_option('pve-vmid'),
1227 idlist => {
1228 type => 'string', format => 'pve-configid-list',
1229 description => "A list of disk IDs you want to delete.",
1230 },
1231 force => {
1232 type => 'boolean',
1233 description => $opt_force_description,
1234 optional => 1,
1235 },
1236 },
1237 },
1238 returns => { type => 'null'},
1239 code => sub {
1240 my ($param) = @_;
1241
1242 $param->{delete} = extract_param($param, 'idlist');
1243
1244 __PACKAGE__->update_vm($param);
1245
1246 return undef;
1247 }});
1248
1249my $sslcert;
1250
1251__PACKAGE__->register_method({
afdb31d5
DM
1252 name => 'vncproxy',
1253 path => '{vmid}/vncproxy',
1e3baf05
DM
1254 method => 'POST',
1255 protected => 1,
1256 permissions => {
378b359e 1257 check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
1e3baf05
DM
1258 },
1259 description => "Creates a TCP VNC proxy connections.",
1260 parameters => {
1261 additionalProperties => 0,
1262 properties => {
1263 node => get_standard_option('pve-node'),
1264 vmid => get_standard_option('pve-vmid'),
b4d5c000
SP
1265 websocket => {
1266 optional => 1,
1267 type => 'boolean',
1268 description => "starts websockify instead of vncproxy",
1269 },
1e3baf05
DM
1270 },
1271 },
afdb31d5 1272 returns => {
1e3baf05
DM
1273 additionalProperties => 0,
1274 properties => {
1275 user => { type => 'string' },
1276 ticket => { type => 'string' },
1277 cert => { type => 'string' },
1278 port => { type => 'integer' },
1279 upid => { type => 'string' },
1280 },
1281 },
1282 code => sub {
1283 my ($param) = @_;
1284
1285 my $rpcenv = PVE::RPCEnvironment::get();
1286
a0d1b1a2 1287 my $authuser = $rpcenv->get_user();
1e3baf05
DM
1288
1289 my $vmid = $param->{vmid};
1290 my $node = $param->{node};
983d4582 1291 my $websocket = $param->{websocket};
1e3baf05 1292
2dc9c148 1293 my $conf = PVE::QemuServer::load_config($vmid, $node); # check if VM exists
ef5e2be2 1294
b6f39da2
DM
1295 my $authpath = "/vms/$vmid";
1296
a0d1b1a2 1297 my $ticket = PVE::AccessControl::assemble_vnc_ticket($authuser, $authpath);
b6f39da2 1298
1e3baf05
DM
1299 $sslcert = PVE::Tools::file_get_contents("/etc/pve/pve-root-ca.pem", 8192)
1300 if !$sslcert;
1301
1302 my $port = PVE::Tools::next_vnc_port();
1303
1304 my $remip;
ef5e2be2 1305 my $remcmd = [];
afdb31d5 1306
4f1be36c 1307 if ($node ne 'localhost' && $node ne PVE::INotify::nodename()) {
1e3baf05 1308 $remip = PVE::Cluster::remote_node_ip($node);
b4d5c000 1309 # NOTE: kvm VNC traffic is already TLS encrypted or is known unsecure
ef5e2be2 1310 $remcmd = ['/usr/bin/ssh', '-T', '-o', 'BatchMode=yes', $remip];
1e3baf05
DM
1311 }
1312
afdb31d5 1313 my $timeout = 10;
1e3baf05
DM
1314
1315 my $realcmd = sub {
1316 my $upid = shift;
1317
1318 syslog('info', "starting vnc proxy $upid\n");
1319
ef5e2be2 1320 my $cmd;
1e3baf05 1321
2dc23d72 1322 if ($conf->{vga} && ($conf->{vga} =~ m/^serial\d+$/)) {
ef5e2be2 1323
983d4582 1324 die "Websocket mode is not supported in vga serial mode!" if $websocket;
b4d5c000 1325
ef5e2be2
DM
1326 my $termcmd = [ '/usr/sbin/qm', 'terminal', $vmid, '-iface', $conf->{vga} ];
1327 #my $termcmd = "/usr/bin/qm terminal -iface $conf->{vga}";
1328 $cmd = ['/usr/bin/vncterm', '-rfbport', $port,
fa8ea931 1329 '-timeout', $timeout, '-authpath', $authpath,
ef5e2be2
DM
1330 '-perm', 'Sys.Console', '-c', @$remcmd, @$termcmd];
1331 } else {
1e3baf05 1332
3e7567e0
DM
1333 $ENV{LC_PVE_TICKET} = $ticket if $websocket; # set ticket with "qm vncproxy"
1334
ef5e2be2
DM
1335 my $qmcmd = [@$remcmd, "/usr/sbin/qm", 'vncproxy', $vmid];
1336
1337 my $qmstr = join(' ', @$qmcmd);
1338
1339 # also redirect stderr (else we get RFB protocol errors)
d483fa01 1340 $cmd = ['/bin/nc6', '-l', '-p', $port, '-w', $timeout, '-e', "$qmstr 2>/dev/null"];
ef5e2be2 1341 }
1e3baf05 1342
be62c45c 1343 PVE::Tools::run_command($cmd);
1e3baf05
DM
1344
1345 return;
1346 };
1347
a0d1b1a2 1348 my $upid = $rpcenv->fork_worker('vncproxy', $vmid, $authuser, $realcmd);
1e3baf05 1349
3da85107
DM
1350 PVE::Tools::wait_for_vnc_port($port);
1351
1e3baf05 1352 return {
a0d1b1a2 1353 user => $authuser,
1e3baf05 1354 ticket => $ticket,
afdb31d5
DM
1355 port => $port,
1356 upid => $upid,
1357 cert => $sslcert,
1e3baf05
DM
1358 };
1359 }});
1360
3e7567e0
DM
1361__PACKAGE__->register_method({
1362 name => 'vncwebsocket',
1363 path => '{vmid}/vncwebsocket',
1364 method => 'GET',
3e7567e0 1365 permissions => {
c422ce93 1366 description => "You also need to pass a valid ticket (vncticket).",
3e7567e0
DM
1367 check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
1368 },
4d00f52f 1369 description => "Opens a weksocket for VNC traffic.",
3e7567e0
DM
1370 parameters => {
1371 additionalProperties => 0,
1372 properties => {
1373 node => get_standard_option('pve-node'),
1374 vmid => get_standard_option('pve-vmid'),
c422ce93
DM
1375 vncticket => {
1376 description => "Ticket from previous call to vncproxy.",
1377 type => 'string',
1378 maxLength => 512,
1379 },
3e7567e0
DM
1380 port => {
1381 description => "Port number returned by previous vncproxy call.",
1382 type => 'integer',
1383 minimum => 5900,
1384 maximum => 5999,
1385 },
1386 },
1387 },
1388 returns => {
1389 type => "object",
1390 properties => {
1391 port => { type => 'string' },
1392 },
1393 },
1394 code => sub {
1395 my ($param) = @_;
1396
1397 my $rpcenv = PVE::RPCEnvironment::get();
1398
1399 my $authuser = $rpcenv->get_user();
1400
1401 my $vmid = $param->{vmid};
1402 my $node = $param->{node};
1403
c422ce93
DM
1404 my $authpath = "/vms/$vmid";
1405
1406 PVE::AccessControl::verify_vnc_ticket($param->{vncticket}, $authuser, $authpath);
1407
3e7567e0
DM
1408 my $conf = PVE::QemuServer::load_config($vmid, $node); # VM exists ?
1409
1410 # Note: VNC ports are acessible from outside, so we do not gain any
1411 # security if we verify that $param->{port} belongs to VM $vmid. This
1412 # check is done by verifying the VNC ticket (inside VNC protocol).
1413
1414 my $port = $param->{port};
f34ebd52 1415
3e7567e0
DM
1416 return { port => $port };
1417 }});
1418
288eeea8
DM
1419__PACKAGE__->register_method({
1420 name => 'spiceproxy',
1421 path => '{vmid}/spiceproxy',
78252ce7 1422 method => 'POST',
288eeea8 1423 protected => 1,
78252ce7 1424 proxyto => 'node',
288eeea8
DM
1425 permissions => {
1426 check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
1427 },
1428 description => "Returns a SPICE configuration to connect to the VM.",
1429 parameters => {
1430 additionalProperties => 0,
1431 properties => {
1432 node => get_standard_option('pve-node'),
1433 vmid => get_standard_option('pve-vmid'),
dd25eecf 1434 proxy => get_standard_option('spice-proxy', { optional => 1 }),
288eeea8
DM
1435 },
1436 },
dd25eecf 1437 returns => get_standard_option('remote-viewer-config'),
288eeea8
DM
1438 code => sub {
1439 my ($param) = @_;
1440
1441 my $rpcenv = PVE::RPCEnvironment::get();
1442
1443 my $authuser = $rpcenv->get_user();
1444
1445 my $vmid = $param->{vmid};
1446 my $node = $param->{node};
fb6c7260 1447 my $proxy = $param->{proxy};
288eeea8 1448
3e7567e0
DM
1449 my $conf = PVE::QemuServer::load_config($vmid, $node);
1450 my $title = "VM $vmid - $conf->{'name'}",
288eeea8 1451
943340a6 1452 my $port = PVE::QemuServer::spice_port($vmid);
dd25eecf 1453
f34ebd52 1454 my ($ticket, undef, $remote_viewer_config) =
dd25eecf 1455 PVE::AccessControl::remote_viewer_config($authuser, $vmid, $node, $proxy, $title, $port);
f34ebd52 1456
288eeea8
DM
1457 PVE::QemuServer::vm_mon_cmd($vmid, "set_password", protocol => 'spice', password => $ticket);
1458 PVE::QemuServer::vm_mon_cmd($vmid, "expire_password", protocol => 'spice', time => "+30");
f34ebd52 1459
dd25eecf 1460 return $remote_viewer_config;
288eeea8
DM
1461 }});
1462
5fdbe4f0
DM
1463__PACKAGE__->register_method({
1464 name => 'vmcmdidx',
afdb31d5 1465 path => '{vmid}/status',
5fdbe4f0
DM
1466 method => 'GET',
1467 proxyto => 'node',
1468 description => "Directory index",
a0d1b1a2
DM
1469 permissions => {
1470 user => 'all',
1471 },
5fdbe4f0
DM
1472 parameters => {
1473 additionalProperties => 0,
1474 properties => {
1475 node => get_standard_option('pve-node'),
1476 vmid => get_standard_option('pve-vmid'),
1477 },
1478 },
1479 returns => {
1480 type => 'array',
1481 items => {
1482 type => "object",
1483 properties => {
1484 subdir => { type => 'string' },
1485 },
1486 },
1487 links => [ { rel => 'child', href => "{subdir}" } ],
1488 },
1489 code => sub {
1490 my ($param) = @_;
1491
1492 # test if VM exists
1493 my $conf = PVE::QemuServer::load_config($param->{vmid});
1494
1495 my $res = [
1496 { subdir => 'current' },
1497 { subdir => 'start' },
1498 { subdir => 'stop' },
1499 ];
afdb31d5 1500
5fdbe4f0
DM
1501 return $res;
1502 }});
1503
1e3baf05 1504__PACKAGE__->register_method({
afdb31d5 1505 name => 'vm_status',
5fdbe4f0 1506 path => '{vmid}/status/current',
1e3baf05
DM
1507 method => 'GET',
1508 proxyto => 'node',
1509 protected => 1, # qemu pid files are only readable by root
1510 description => "Get virtual machine status.",
a0d1b1a2
DM
1511 permissions => {
1512 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
1513 },
1e3baf05
DM
1514 parameters => {
1515 additionalProperties => 0,
1516 properties => {
1517 node => get_standard_option('pve-node'),
1518 vmid => get_standard_option('pve-vmid'),
1519 },
1520 },
1521 returns => { type => 'object' },
1522 code => sub {
1523 my ($param) = @_;
1524
1525 # test if VM exists
1526 my $conf = PVE::QemuServer::load_config($param->{vmid});
1527
03a33f30 1528 my $vmstatus = PVE::QemuServer::vmstatus($param->{vmid}, 1);
8610701a 1529 my $status = $vmstatus->{$param->{vmid}};
1e3baf05 1530
2003f0f8 1531 $status->{ha} = PVE::HA::Config::vm_is_ha_managed($param->{vmid});
8610701a 1532
86b8228b 1533 $status->{spice} = 1 if PVE::QemuServer::vga_conf_has_spice($conf->{vga});
46246f04 1534
8610701a 1535 return $status;
1e3baf05
DM
1536 }});
1537
1538__PACKAGE__->register_method({
afdb31d5 1539 name => 'vm_start',
5fdbe4f0
DM
1540 path => '{vmid}/status/start',
1541 method => 'POST',
1e3baf05
DM
1542 protected => 1,
1543 proxyto => 'node',
5fdbe4f0 1544 description => "Start virtual machine.",
a0d1b1a2
DM
1545 permissions => {
1546 check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
1547 },
1e3baf05
DM
1548 parameters => {
1549 additionalProperties => 0,
1550 properties => {
1551 node => get_standard_option('pve-node'),
1552 vmid => get_standard_option('pve-vmid'),
3ea94c60
DM
1553 skiplock => get_standard_option('skiplock'),
1554 stateuri => get_standard_option('pve-qm-stateuri'),
7e8dcf2c 1555 migratedfrom => get_standard_option('pve-node',{ optional => 1 }),
952958bc 1556 machine => get_standard_option('pve-qm-machine'),
1e3baf05
DM
1557 },
1558 },
afdb31d5 1559 returns => {
5fdbe4f0
DM
1560 type => 'string',
1561 },
1e3baf05
DM
1562 code => sub {
1563 my ($param) = @_;
1564
1565 my $rpcenv = PVE::RPCEnvironment::get();
1566
a0d1b1a2 1567 my $authuser = $rpcenv->get_user();
1e3baf05
DM
1568
1569 my $node = extract_param($param, 'node');
1570
1e3baf05
DM
1571 my $vmid = extract_param($param, 'vmid');
1572
952958bc
DM
1573 my $machine = extract_param($param, 'machine');
1574
3ea94c60 1575 my $stateuri = extract_param($param, 'stateuri');
afdb31d5 1576 raise_param_exc({ stateuri => "Only root may use this option." })
a0d1b1a2 1577 if $stateuri && $authuser ne 'root@pam';
3ea94c60 1578
1e3baf05 1579 my $skiplock = extract_param($param, 'skiplock');
afdb31d5 1580 raise_param_exc({ skiplock => "Only root may use this option." })
a0d1b1a2 1581 if $skiplock && $authuser ne 'root@pam';
1e3baf05 1582
7e8dcf2c
AD
1583 my $migratedfrom = extract_param($param, 'migratedfrom');
1584 raise_param_exc({ migratedfrom => "Only root may use this option." })
1585 if $migratedfrom && $authuser ne 'root@pam';
1586
7c14dcae
DM
1587 # read spice ticket from STDIN
1588 my $spice_ticket;
1589 if ($stateuri && ($stateuri eq 'tcp') && $migratedfrom && ($rpcenv->{type} eq 'cli')) {
a64d6146 1590 if (defined(my $line = <>)) {
760fb3c8
DM
1591 chomp $line;
1592 $spice_ticket = $line;
1593 }
7c14dcae
DM
1594 }
1595
afdb31d5 1596 my $storecfg = PVE::Storage::config();
5fdbe4f0 1597
2003f0f8 1598 if (PVE::HA::Config::vm_is_ha_managed($vmid) && !$stateuri &&
cce37749 1599 $rpcenv->{type} ne 'ha') {
5fdbe4f0 1600
88fc87b4
DM
1601 my $hacmd = sub {
1602 my $upid = shift;
5fdbe4f0 1603
c44291cd 1604 my $service = "vm:$vmid";
5fdbe4f0 1605
2003f0f8 1606 my $cmd = ['ha-manager', 'enable', $service];
88fc87b4
DM
1607
1608 print "Executing HA start for VM $vmid\n";
1609
1610 PVE::Tools::run_command($cmd);
1611
1612 return;
1613 };
1614
1615 return $rpcenv->fork_worker('hastart', $vmid, $authuser, $hacmd);
1616
1617 } else {
1618
1619 my $realcmd = sub {
1620 my $upid = shift;
1621
1622 syslog('info', "start VM $vmid: $upid\n");
1623
fa8ea931 1624 PVE::QemuServer::vm_start($storecfg, $vmid, $stateuri, $skiplock, $migratedfrom, undef,
7c14dcae 1625 $machine, $spice_ticket);
88fc87b4
DM
1626
1627 return;
1628 };
5fdbe4f0 1629
88fc87b4
DM
1630 return $rpcenv->fork_worker('qmstart', $vmid, $authuser, $realcmd);
1631 }
5fdbe4f0
DM
1632 }});
1633
1634__PACKAGE__->register_method({
afdb31d5 1635 name => 'vm_stop',
5fdbe4f0
DM
1636 path => '{vmid}/status/stop',
1637 method => 'POST',
1638 protected => 1,
1639 proxyto => 'node',
1640 description => "Stop virtual machine.",
a0d1b1a2
DM
1641 permissions => {
1642 check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
1643 },
5fdbe4f0
DM
1644 parameters => {
1645 additionalProperties => 0,
1646 properties => {
1647 node => get_standard_option('pve-node'),
1648 vmid => get_standard_option('pve-vmid'),
1649 skiplock => get_standard_option('skiplock'),
debe8882 1650 migratedfrom => get_standard_option('pve-node', { optional => 1 }),
c6bb9502
DM
1651 timeout => {
1652 description => "Wait maximal timeout seconds.",
1653 type => 'integer',
1654 minimum => 0,
1655 optional => 1,
254575e9
DM
1656 },
1657 keepActive => {
1658 description => "Do not decativate storage volumes.",
1659 type => 'boolean',
1660 optional => 1,
1661 default => 0,
c6bb9502 1662 }
5fdbe4f0
DM
1663 },
1664 },
afdb31d5 1665 returns => {
5fdbe4f0
DM
1666 type => 'string',
1667 },
1668 code => sub {
1669 my ($param) = @_;
1670
1671 my $rpcenv = PVE::RPCEnvironment::get();
1672
a0d1b1a2 1673 my $authuser = $rpcenv->get_user();
5fdbe4f0
DM
1674
1675 my $node = extract_param($param, 'node');
1676
1677 my $vmid = extract_param($param, 'vmid');
1678
1679 my $skiplock = extract_param($param, 'skiplock');
afdb31d5 1680 raise_param_exc({ skiplock => "Only root may use this option." })
a0d1b1a2 1681 if $skiplock && $authuser ne 'root@pam';
5fdbe4f0 1682
254575e9 1683 my $keepActive = extract_param($param, 'keepActive');
afdb31d5 1684 raise_param_exc({ keepActive => "Only root may use this option." })
a0d1b1a2 1685 if $keepActive && $authuser ne 'root@pam';
254575e9 1686
af30308f
DM
1687 my $migratedfrom = extract_param($param, 'migratedfrom');
1688 raise_param_exc({ migratedfrom => "Only root may use this option." })
1689 if $migratedfrom && $authuser ne 'root@pam';
1690
1691
ff1a2432
DM
1692 my $storecfg = PVE::Storage::config();
1693
2003f0f8 1694 if (PVE::HA::Config::vm_is_ha_managed($vmid) && ($rpcenv->{type} ne 'ha') && !defined($migratedfrom)) {
5fdbe4f0 1695
88fc87b4
DM
1696 my $hacmd = sub {
1697 my $upid = shift;
5fdbe4f0 1698
c44291cd 1699 my $service = "vm:$vmid";
c6bb9502 1700
2003f0f8 1701 my $cmd = ['ha-manager', 'disable', $service];
88fc87b4
DM
1702
1703 print "Executing HA stop for VM $vmid\n";
1704
1705 PVE::Tools::run_command($cmd);
5fdbe4f0 1706
88fc87b4
DM
1707 return;
1708 };
1709
1710 return $rpcenv->fork_worker('hastop', $vmid, $authuser, $hacmd);
1711
1712 } else {
1713 my $realcmd = sub {
1714 my $upid = shift;
1715
1716 syslog('info', "stop VM $vmid: $upid\n");
1717
1718 PVE::QemuServer::vm_stop($storecfg, $vmid, $skiplock, 0,
af30308f 1719 $param->{timeout}, 0, 1, $keepActive, $migratedfrom);
88fc87b4
DM
1720
1721 return;
1722 };
1723
1724 return $rpcenv->fork_worker('qmstop', $vmid, $authuser, $realcmd);
1725 }
5fdbe4f0
DM
1726 }});
1727
1728__PACKAGE__->register_method({
afdb31d5 1729 name => 'vm_reset',
5fdbe4f0
DM
1730 path => '{vmid}/status/reset',
1731 method => 'POST',
1732 protected => 1,
1733 proxyto => 'node',
1734 description => "Reset virtual machine.",
a0d1b1a2
DM
1735 permissions => {
1736 check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
1737 },
5fdbe4f0
DM
1738 parameters => {
1739 additionalProperties => 0,
1740 properties => {
1741 node => get_standard_option('pve-node'),
1742 vmid => get_standard_option('pve-vmid'),
1743 skiplock => get_standard_option('skiplock'),
1744 },
1745 },
afdb31d5 1746 returns => {
5fdbe4f0
DM
1747 type => 'string',
1748 },
1749 code => sub {
1750 my ($param) = @_;
1751
1752 my $rpcenv = PVE::RPCEnvironment::get();
1753
a0d1b1a2 1754 my $authuser = $rpcenv->get_user();
5fdbe4f0
DM
1755
1756 my $node = extract_param($param, 'node');
1757
1758 my $vmid = extract_param($param, 'vmid');
1759
1760 my $skiplock = extract_param($param, 'skiplock');
afdb31d5 1761 raise_param_exc({ skiplock => "Only root may use this option." })
a0d1b1a2 1762 if $skiplock && $authuser ne 'root@pam';
5fdbe4f0 1763
ff1a2432
DM
1764 die "VM $vmid not running\n" if !PVE::QemuServer::check_running($vmid);
1765
5fdbe4f0
DM
1766 my $realcmd = sub {
1767 my $upid = shift;
1768
1e3baf05 1769 PVE::QemuServer::vm_reset($vmid, $skiplock);
5fdbe4f0
DM
1770
1771 return;
1772 };
1773
a0d1b1a2 1774 return $rpcenv->fork_worker('qmreset', $vmid, $authuser, $realcmd);
5fdbe4f0
DM
1775 }});
1776
1777__PACKAGE__->register_method({
afdb31d5 1778 name => 'vm_shutdown',
5fdbe4f0
DM
1779 path => '{vmid}/status/shutdown',
1780 method => 'POST',
1781 protected => 1,
1782 proxyto => 'node',
1783 description => "Shutdown virtual machine.",
a0d1b1a2
DM
1784 permissions => {
1785 check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
1786 },
5fdbe4f0
DM
1787 parameters => {
1788 additionalProperties => 0,
1789 properties => {
1790 node => get_standard_option('pve-node'),
1791 vmid => get_standard_option('pve-vmid'),
1792 skiplock => get_standard_option('skiplock'),
c6bb9502
DM
1793 timeout => {
1794 description => "Wait maximal timeout seconds.",
1795 type => 'integer',
1796 minimum => 0,
1797 optional => 1,
9269013a
DM
1798 },
1799 forceStop => {
1800 description => "Make sure the VM stops.",
1801 type => 'boolean',
1802 optional => 1,
1803 default => 0,
254575e9
DM
1804 },
1805 keepActive => {
1806 description => "Do not decativate storage volumes.",
1807 type => 'boolean',
1808 optional => 1,
1809 default => 0,
c6bb9502 1810 }
5fdbe4f0
DM
1811 },
1812 },
afdb31d5 1813 returns => {
5fdbe4f0
DM
1814 type => 'string',
1815 },
1816 code => sub {
1817 my ($param) = @_;
1818
1819 my $rpcenv = PVE::RPCEnvironment::get();
1820
a0d1b1a2 1821 my $authuser = $rpcenv->get_user();
5fdbe4f0
DM
1822
1823 my $node = extract_param($param, 'node');
1824
1825 my $vmid = extract_param($param, 'vmid');
1826
1827 my $skiplock = extract_param($param, 'skiplock');
afdb31d5 1828 raise_param_exc({ skiplock => "Only root may use this option." })
a0d1b1a2 1829 if $skiplock && $authuser ne 'root@pam';
5fdbe4f0 1830
254575e9 1831 my $keepActive = extract_param($param, 'keepActive');
afdb31d5 1832 raise_param_exc({ keepActive => "Only root may use this option." })
a0d1b1a2 1833 if $keepActive && $authuser ne 'root@pam';
254575e9 1834
02d07cf5
DM
1835 my $storecfg = PVE::Storage::config();
1836
5fdbe4f0
DM
1837 my $realcmd = sub {
1838 my $upid = shift;
1839
1840 syslog('info', "shutdown VM $vmid: $upid\n");
1841
afdb31d5 1842 PVE::QemuServer::vm_stop($storecfg, $vmid, $skiplock, 0, $param->{timeout},
254575e9 1843 1, $param->{forceStop}, $keepActive);
c6bb9502 1844
5fdbe4f0
DM
1845 return;
1846 };
1847
a0d1b1a2 1848 return $rpcenv->fork_worker('qmshutdown', $vmid, $authuser, $realcmd);
5fdbe4f0
DM
1849 }});
1850
1851__PACKAGE__->register_method({
afdb31d5 1852 name => 'vm_suspend',
5fdbe4f0
DM
1853 path => '{vmid}/status/suspend',
1854 method => 'POST',
1855 protected => 1,
1856 proxyto => 'node',
1857 description => "Suspend virtual machine.",
a0d1b1a2
DM
1858 permissions => {
1859 check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
1860 },
5fdbe4f0
DM
1861 parameters => {
1862 additionalProperties => 0,
1863 properties => {
1864 node => get_standard_option('pve-node'),
1865 vmid => get_standard_option('pve-vmid'),
1866 skiplock => get_standard_option('skiplock'),
1867 },
1868 },
afdb31d5 1869 returns => {
5fdbe4f0
DM
1870 type => 'string',
1871 },
1872 code => sub {
1873 my ($param) = @_;
1874
1875 my $rpcenv = PVE::RPCEnvironment::get();
1876
a0d1b1a2 1877 my $authuser = $rpcenv->get_user();
5fdbe4f0
DM
1878
1879 my $node = extract_param($param, 'node');
1880
1881 my $vmid = extract_param($param, 'vmid');
1882
1883 my $skiplock = extract_param($param, 'skiplock');
afdb31d5 1884 raise_param_exc({ skiplock => "Only root may use this option." })
a0d1b1a2 1885 if $skiplock && $authuser ne 'root@pam';
5fdbe4f0 1886
ff1a2432
DM
1887 die "VM $vmid not running\n" if !PVE::QemuServer::check_running($vmid);
1888
5fdbe4f0
DM
1889 my $realcmd = sub {
1890 my $upid = shift;
1891
1892 syslog('info', "suspend VM $vmid: $upid\n");
1893
1e3baf05 1894 PVE::QemuServer::vm_suspend($vmid, $skiplock);
5fdbe4f0
DM
1895
1896 return;
1897 };
1898
a0d1b1a2 1899 return $rpcenv->fork_worker('qmsuspend', $vmid, $authuser, $realcmd);
5fdbe4f0
DM
1900 }});
1901
1902__PACKAGE__->register_method({
afdb31d5 1903 name => 'vm_resume',
5fdbe4f0
DM
1904 path => '{vmid}/status/resume',
1905 method => 'POST',
1906 protected => 1,
1907 proxyto => 'node',
1908 description => "Resume virtual machine.",
a0d1b1a2
DM
1909 permissions => {
1910 check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
1911 },
5fdbe4f0
DM
1912 parameters => {
1913 additionalProperties => 0,
1914 properties => {
1915 node => get_standard_option('pve-node'),
1916 vmid => get_standard_option('pve-vmid'),
1917 skiplock => get_standard_option('skiplock'),
1918 },
1919 },
afdb31d5 1920 returns => {
5fdbe4f0
DM
1921 type => 'string',
1922 },
1923 code => sub {
1924 my ($param) = @_;
1925
1926 my $rpcenv = PVE::RPCEnvironment::get();
1927
a0d1b1a2 1928 my $authuser = $rpcenv->get_user();
5fdbe4f0
DM
1929
1930 my $node = extract_param($param, 'node');
1931
1932 my $vmid = extract_param($param, 'vmid');
1933
1934 my $skiplock = extract_param($param, 'skiplock');
afdb31d5 1935 raise_param_exc({ skiplock => "Only root may use this option." })
a0d1b1a2 1936 if $skiplock && $authuser ne 'root@pam';
5fdbe4f0 1937
b7eeab21 1938 die "VM $vmid not running\n" if !PVE::QemuServer::check_running($vmid);
ff1a2432 1939
5fdbe4f0
DM
1940 my $realcmd = sub {
1941 my $upid = shift;
1942
1943 syslog('info', "resume VM $vmid: $upid\n");
1944
1e3baf05 1945 PVE::QemuServer::vm_resume($vmid, $skiplock);
1e3baf05 1946
5fdbe4f0
DM
1947 return;
1948 };
1949
a0d1b1a2 1950 return $rpcenv->fork_worker('qmresume', $vmid, $authuser, $realcmd);
5fdbe4f0
DM
1951 }});
1952
1953__PACKAGE__->register_method({
afdb31d5 1954 name => 'vm_sendkey',
5fdbe4f0
DM
1955 path => '{vmid}/sendkey',
1956 method => 'PUT',
1957 protected => 1,
1958 proxyto => 'node',
1959 description => "Send key event to virtual machine.",
a0d1b1a2
DM
1960 permissions => {
1961 check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
1962 },
5fdbe4f0
DM
1963 parameters => {
1964 additionalProperties => 0,
1965 properties => {
1966 node => get_standard_option('pve-node'),
1967 vmid => get_standard_option('pve-vmid'),
1968 skiplock => get_standard_option('skiplock'),
1969 key => {
1970 description => "The key (qemu monitor encoding).",
1971 type => 'string'
1972 }
1973 },
1974 },
1975 returns => { type => 'null'},
1976 code => sub {
1977 my ($param) = @_;
1978
1979 my $rpcenv = PVE::RPCEnvironment::get();
1980
a0d1b1a2 1981 my $authuser = $rpcenv->get_user();
5fdbe4f0
DM
1982
1983 my $node = extract_param($param, 'node');
1984
1985 my $vmid = extract_param($param, 'vmid');
1986
1987 my $skiplock = extract_param($param, 'skiplock');
afdb31d5 1988 raise_param_exc({ skiplock => "Only root may use this option." })
a0d1b1a2 1989 if $skiplock && $authuser ne 'root@pam';
5fdbe4f0
DM
1990
1991 PVE::QemuServer::vm_sendkey($vmid, $skiplock, $param->{key});
1992
1993 return;
1e3baf05
DM
1994 }});
1995
1ac0d2ee
AD
1996__PACKAGE__->register_method({
1997 name => 'vm_feature',
1998 path => '{vmid}/feature',
1999 method => 'GET',
2000 proxyto => 'node',
75466c4f 2001 protected => 1,
1ac0d2ee
AD
2002 description => "Check if feature for virtual machine is available.",
2003 permissions => {
2004 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
2005 },
2006 parameters => {
2007 additionalProperties => 0,
2008 properties => {
2009 node => get_standard_option('pve-node'),
2010 vmid => get_standard_option('pve-vmid'),
2011 feature => {
2012 description => "Feature to check.",
2013 type => 'string',
7758ce86 2014 enum => [ 'snapshot', 'clone', 'copy' ],
1ac0d2ee
AD
2015 },
2016 snapname => get_standard_option('pve-snapshot-name', {
2017 optional => 1,
2018 }),
2019 },
1ac0d2ee
AD
2020 },
2021 returns => {
719893a9
DM
2022 type => "object",
2023 properties => {
2024 hasFeature => { type => 'boolean' },
7043d946 2025 nodes => {
719893a9
DM
2026 type => 'array',
2027 items => { type => 'string' },
2028 }
2029 },
1ac0d2ee
AD
2030 },
2031 code => sub {
2032 my ($param) = @_;
2033
2034 my $node = extract_param($param, 'node');
2035
2036 my $vmid = extract_param($param, 'vmid');
2037
2038 my $snapname = extract_param($param, 'snapname');
2039
2040 my $feature = extract_param($param, 'feature');
2041
2042 my $running = PVE::QemuServer::check_running($vmid);
2043
2044 my $conf = PVE::QemuServer::load_config($vmid);
2045
2046 if($snapname){
2047 my $snap = $conf->{snapshots}->{$snapname};
2048 die "snapshot '$snapname' does not exist\n" if !defined($snap);
2049 $conf = $snap;
2050 }
2051 my $storecfg = PVE::Storage::config();
2052
719893a9
DM
2053 my $nodelist = PVE::QemuServer::shared_nodes($conf, $storecfg);
2054 my $hasFeature = PVE::QemuServer::has_feature($feature, $conf, $storecfg, $snapname, $running);
7043d946 2055
719893a9
DM
2056 return {
2057 hasFeature => $hasFeature,
2058 nodes => [ keys %$nodelist ],
7043d946 2059 };
1ac0d2ee
AD
2060 }});
2061
6116f729 2062__PACKAGE__->register_method({
9418baad
DM
2063 name => 'clone_vm',
2064 path => '{vmid}/clone',
6116f729
DM
2065 method => 'POST',
2066 protected => 1,
2067 proxyto => 'node',
37329185 2068 description => "Create a copy of virtual machine/template.",
6116f729 2069 permissions => {
9418baad 2070 description => "You need 'VM.Clone' permissions on /vms/{vmid}, and 'VM.Allocate' permissions " .
6116f729
DM
2071 "on /vms/{newid} (or on the VM pool /pool/{pool}). You also need " .
2072 "'Datastore.AllocateSpace' on any used storage.",
75466c4f
DM
2073 check =>
2074 [ 'and',
9418baad 2075 ['perm', '/vms/{vmid}', [ 'VM.Clone' ]],
75466c4f 2076 [ 'or',
6116f729
DM
2077 [ 'perm', '/vms/{newid}', ['VM.Allocate']],
2078 [ 'perm', '/pool/{pool}', ['VM.Allocate'], require_param => 'pool'],
2079 ],
2080 ]
2081 },
2082 parameters => {
2083 additionalProperties => 0,
2084 properties => {
6116f729
DM
2085 node => get_standard_option('pve-node'),
2086 vmid => get_standard_option('pve-vmid'),
9418baad 2087 newid => get_standard_option('pve-vmid', { description => 'VMID for the clone.' }),
a60ab1a6
DM
2088 name => {
2089 optional => 1,
2090 type => 'string', format => 'dns-name',
2091 description => "Set a name for the new VM.",
2092 },
2093 description => {
2094 optional => 1,
2095 type => 'string',
2096 description => "Description for the new VM.",
2097 },
75466c4f 2098 pool => {
6116f729
DM
2099 optional => 1,
2100 type => 'string', format => 'pve-poolid',
2101 description => "Add the new VM to the specified pool.",
2102 },
9076d880 2103 snapname => get_standard_option('pve-snapshot-name', {
9076d880
DM
2104 optional => 1,
2105 }),
81f043eb 2106 storage => get_standard_option('pve-storage-id', {
9418baad 2107 description => "Target storage for full clone.",
4e4f83fe 2108 requires => 'full',
81f043eb
AD
2109 optional => 1,
2110 }),
55173c6b 2111 'format' => {
42a19c87
AD
2112 description => "Target format for file storage.",
2113 requires => 'full',
2114 type => 'string',
2115 optional => 1,
55173c6b 2116 enum => [ 'raw', 'qcow2', 'vmdk'],
42a19c87 2117 },
6116f729
DM
2118 full => {
2119 optional => 1,
55173c6b
DM
2120 type => 'boolean',
2121 description => "Create a full copy of all disk. This is always done when " .
9418baad 2122 "you clone a normal VM. For VM templates, we try to create a linked clone by default.",
6116f729
DM
2123 default => 0,
2124 },
75466c4f 2125 target => get_standard_option('pve-node', {
55173c6b
DM
2126 description => "Target node. Only allowed if the original VM is on shared storage.",
2127 optional => 1,
2128 }),
2129 },
6116f729
DM
2130 },
2131 returns => {
2132 type => 'string',
2133 },
2134 code => sub {
2135 my ($param) = @_;
2136
2137 my $rpcenv = PVE::RPCEnvironment::get();
2138
55173c6b 2139 my $authuser = $rpcenv->get_user();
6116f729
DM
2140
2141 my $node = extract_param($param, 'node');
2142
2143 my $vmid = extract_param($param, 'vmid');
2144
2145 my $newid = extract_param($param, 'newid');
2146
6116f729
DM
2147 my $pool = extract_param($param, 'pool');
2148
2149 if (defined($pool)) {
2150 $rpcenv->check_pool_exist($pool);
2151 }
2152
55173c6b 2153 my $snapname = extract_param($param, 'snapname');
9076d880 2154
81f043eb
AD
2155 my $storage = extract_param($param, 'storage');
2156
42a19c87
AD
2157 my $format = extract_param($param, 'format');
2158
55173c6b
DM
2159 my $target = extract_param($param, 'target');
2160
2161 my $localnode = PVE::INotify::nodename();
2162
751cc556 2163 undef $target if $target && ($target eq $localnode || $target eq 'localhost');
55173c6b
DM
2164
2165 PVE::Cluster::check_node_exists($target) if $target;
2166
6116f729
DM
2167 my $storecfg = PVE::Storage::config();
2168
4a5a2590
DM
2169 if ($storage) {
2170 # check if storage is enabled on local node
2171 PVE::Storage::storage_check_enabled($storecfg, $storage);
2172 if ($target) {
2173 # check if storage is available on target node
2174 PVE::Storage::storage_check_node($storecfg, $storage, $target);
2175 # clone only works if target storage is shared
2176 my $scfg = PVE::Storage::storage_config($storecfg, $storage);
2177 die "can't clone to non-shared storage '$storage'\n" if !$scfg->{shared};
2178 }
2179 }
2180
55173c6b 2181 PVE::Cluster::check_cfs_quorum();
6116f729 2182
4e4f83fe
DM
2183 my $running = PVE::QemuServer::check_running($vmid) || 0;
2184
4e4f83fe
DM
2185 # exclusive lock if VM is running - else shared lock is enough;
2186 my $shared_lock = $running ? 0 : 1;
2187
9418baad 2188 my $clonefn = sub {
6116f729 2189
829967a9
DM
2190 # do all tests after lock
2191 # we also try to do all tests before we fork the worker
2192
6116f729
DM
2193 my $conf = PVE::QemuServer::load_config($vmid);
2194
2195 PVE::QemuServer::check_lock($conf);
2196
4e4f83fe 2197 my $verify_running = PVE::QemuServer::check_running($vmid) || 0;
6116f729 2198
4e4f83fe 2199 die "unexpected state change\n" if $verify_running != $running;
6116f729 2200
75466c4f
DM
2201 die "snapshot '$snapname' does not exist\n"
2202 if $snapname && !defined( $conf->{snapshots}->{$snapname});
6116f729 2203
75466c4f 2204 my $oldconf = $snapname ? $conf->{snapshots}->{$snapname} : $conf;
9076d880 2205
9418baad 2206 my $sharedvm = &$check_storage_access_clone($rpcenv, $authuser, $storecfg, $oldconf, $storage);
6116f729 2207
9418baad 2208 die "can't clone VM to node '$target' (VM uses local storage)\n" if $target && !$sharedvm;
75466c4f 2209
6116f729
DM
2210 my $conffile = PVE::QemuServer::config_file($newid);
2211
2212 die "unable to create VM $newid: config file already exists\n"
2213 if -f $conffile;
2214
9418baad 2215 my $newconf = { lock => 'clone' };
829967a9
DM
2216 my $drives = {};
2217 my $vollist = [];
2218
2219 foreach my $opt (keys %$oldconf) {
2220 my $value = $oldconf->{$opt};
2221
2222 # do not copy snapshot related info
2223 next if $opt eq 'snapshots' || $opt eq 'parent' || $opt eq 'snaptime' ||
2224 $opt eq 'vmstate' || $opt eq 'snapstate';
2225
2226 # always change MAC! address
2227 if ($opt =~ m/^net(\d+)$/) {
2228 my $net = PVE::QemuServer::parse_net($value);
2229 $net->{macaddr} = PVE::Tools::random_ether_addr();
2230 $newconf->{$opt} = PVE::QemuServer::print_net($net);
1f1412d1
DM
2231 } elsif (PVE::QemuServer::valid_drivename($opt)) {
2232 my $drive = PVE::QemuServer::parse_drive($opt, $value);
2233 die "unable to parse drive options for '$opt'\n" if !$drive;
829967a9
DM
2234 if (PVE::QemuServer::drive_is_cdrom($drive)) {
2235 $newconf->{$opt} = $value; # simply copy configuration
2236 } else {
64ff6fe4 2237 if ($param->{full}) {
2dd53043 2238 die "Full clone feature is not available"
dba198b0 2239 if !PVE::Storage::volume_has_feature($storecfg, 'copy', $drive->{file}, $snapname, $running);
2dd53043 2240 $drive->{full} = 1;
64ff6fe4
SP
2241 } else {
2242 # not full means clone instead of copy
2243 die "Linked clone feature is not available"
2244 if !PVE::Storage::volume_has_feature($storecfg, 'clone', $drive->{file}, $snapname, $running);
dba198b0 2245 }
829967a9
DM
2246 $drives->{$opt} = $drive;
2247 push @$vollist, $drive->{file};
2248 }
2249 } else {
2250 # copy everything else
2251 $newconf->{$opt} = $value;
2252 }
2253 }
2254
cd11416f
DM
2255 # auto generate a new uuid
2256 my ($uuid, $uuid_str);
2257 UUID::generate($uuid);
2258 UUID::unparse($uuid, $uuid_str);
2259 my $smbios1 = PVE::QemuServer::parse_smbios1($newconf->{smbios1} || '');
f34ebd52 2260 $smbios1->{uuid} = $uuid_str;
cd11416f
DM
2261 $newconf->{smbios1} = PVE::QemuServer::print_smbios1($smbios1);
2262
829967a9
DM
2263 delete $newconf->{template};
2264
2265 if ($param->{name}) {
2266 $newconf->{name} = $param->{name};
2267 } else {
c55fee03
DM
2268 if ($oldconf->{name}) {
2269 $newconf->{name} = "Copy-of-$oldconf->{name}";
2270 } else {
2271 $newconf->{name} = "Copy-of-VM-$vmid";
2272 }
829967a9 2273 }
2dd53043 2274
829967a9
DM
2275 if ($param->{description}) {
2276 $newconf->{description} = $param->{description};
2277 }
2278
6116f729 2279 # create empty/temp config - this fails if VM already exists on other node
9418baad 2280 PVE::Tools::file_set_contents($conffile, "# qmclone temporary file\nlock: clone\n");
6116f729
DM
2281
2282 my $realcmd = sub {
2283 my $upid = shift;
2284
b83e0181 2285 my $newvollist = [];
6116f729 2286
b83e0181 2287 eval {
829967a9 2288 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub { die "interrupted by signal\n"; };
75466c4f 2289
6116f729
DM
2290 PVE::Storage::activate_volumes($storecfg, $vollist);
2291
829967a9
DM
2292 foreach my $opt (keys %$drives) {
2293 my $drive = $drives->{$opt};
2dd53043 2294
152fe752
DM
2295 my $newdrive = PVE::QemuServer::clone_disk($storecfg, $vmid, $running, $opt, $drive, $snapname,
2296 $newid, $storage, $format, $drive->{full}, $newvollist);
00b095ca 2297
152fe752 2298 $newconf->{$opt} = PVE::QemuServer::print_drive($vmid, $newdrive);
2dd53043 2299
829967a9
DM
2300 PVE::QemuServer::update_config_nolock($newid, $newconf, 1);
2301 }
b83e0181
DM
2302
2303 delete $newconf->{lock};
2304 PVE::QemuServer::update_config_nolock($newid, $newconf, 1);
55173c6b
DM
2305
2306 if ($target) {
baca276d
DM
2307 # always deactivate volumes - avoid lvm LVs to be active on several nodes
2308 PVE::Storage::deactivate_volumes($storecfg, $vollist);
2309
55173c6b
DM
2310 my $newconffile = PVE::QemuServer::config_file($newid, $target);
2311 die "Failed to move config to node '$target' - rename failed: $!\n"
2312 if !rename($conffile, $newconffile);
2313 }
d703d4c0 2314
be517049 2315 PVE::AccessControl::add_vm_to_pool($newid, $pool) if $pool;
6116f729 2316 };
75466c4f 2317 if (my $err = $@) {
6116f729
DM
2318 unlink $conffile;
2319
b83e0181
DM
2320 sleep 1; # some storage like rbd need to wait before release volume - really?
2321
2322 foreach my $volid (@$newvollist) {
2323 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
2324 warn $@ if $@;
2325 }
9418baad 2326 die "clone failed: $err";
6116f729
DM
2327 }
2328
2329 return;
2330 };
2331
9418baad 2332 return $rpcenv->fork_worker('qmclone', $vmid, $authuser, $realcmd);
6116f729
DM
2333 };
2334
4e4f83fe 2335 return PVE::QemuServer::lock_config_mode($vmid, 1, $shared_lock, sub {
6116f729 2336 # Aquire exclusive lock lock for $newid
9418baad 2337 return PVE::QemuServer::lock_config_full($newid, 1, $clonefn);
6116f729
DM
2338 });
2339
2340 }});
2341
586bfa78 2342__PACKAGE__->register_method({
43bc02a9
DM
2343 name => 'move_vm_disk',
2344 path => '{vmid}/move_disk',
e2cd75fa 2345 method => 'POST',
586bfa78
AD
2346 protected => 1,
2347 proxyto => 'node',
2348 description => "Move volume to different storage.",
2349 permissions => {
e2cd75fa
DM
2350 description => "You need 'VM.Config.Disk' permissions on /vms/{vmid}, " .
2351 "and 'Datastore.AllocateSpace' permissions on the storage.",
7043d946 2352 check =>
e2cd75fa
DM
2353 [ 'and',
2354 ['perm', '/vms/{vmid}', [ 'VM.Config.Disk' ]],
2355 ['perm', '/storage/{storage}', [ 'Datastore.AllocateSpace' ]],
2356 ],
586bfa78
AD
2357 },
2358 parameters => {
2359 additionalProperties => 0,
2360 properties => {
2361 node => get_standard_option('pve-node'),
2362 vmid => get_standard_option('pve-vmid'),
586bfa78
AD
2363 disk => {
2364 type => 'string',
2365 description => "The disk you want to move.",
e2cd75fa 2366 enum => [ PVE::QemuServer::disknames() ],
586bfa78 2367 },
e2cd75fa 2368 storage => get_standard_option('pve-storage-id', { description => "Target Storage." }),
635c3c44 2369 'format' => {
586bfa78
AD
2370 type => 'string',
2371 description => "Target Format.",
2372 enum => [ 'raw', 'qcow2', 'vmdk' ],
2373 optional => 1,
2374 },
70d45e33
DM
2375 delete => {
2376 type => 'boolean',
2377 description => "Delete the original disk after successful copy. By default the original disk is kept as unused disk.",
2378 optional => 1,
2379 default => 0,
2380 },
586bfa78
AD
2381 digest => {
2382 type => 'string',
2383 description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.',
2384 maxLength => 40,
2385 optional => 1,
2386 },
2387 },
2388 },
e2cd75fa
DM
2389 returns => {
2390 type => 'string',
2391 description => "the task ID.",
2392 },
586bfa78
AD
2393 code => sub {
2394 my ($param) = @_;
2395
2396 my $rpcenv = PVE::RPCEnvironment::get();
2397
2398 my $authuser = $rpcenv->get_user();
2399
2400 my $node = extract_param($param, 'node');
2401
2402 my $vmid = extract_param($param, 'vmid');
2403
2404 my $digest = extract_param($param, 'digest');
2405
2406 my $disk = extract_param($param, 'disk');
2407
2408 my $storeid = extract_param($param, 'storage');
2409
2410 my $format = extract_param($param, 'format');
2411
586bfa78
AD
2412 my $storecfg = PVE::Storage::config();
2413
2414 my $updatefn = sub {
2415
2416 my $conf = PVE::QemuServer::load_config($vmid);
2417
2418 die "checksum missmatch (file change by other user?)\n"
2419 if $digest && $digest ne $conf->{digest};
586bfa78
AD
2420
2421 die "disk '$disk' does not exist\n" if !$conf->{$disk};
2422
2423 my $drive = PVE::QemuServer::parse_drive($disk, $conf->{$disk});
2424
70d45e33 2425 my $old_volid = $drive->{file} || die "disk '$disk' has no associated volume\n";
586bfa78
AD
2426
2427 die "you can't move a cdrom\n" if PVE::QemuServer::drive_is_cdrom($drive);
2428
e2cd75fa 2429 my $oldfmt;
70d45e33 2430 my ($oldstoreid, $oldvolname) = PVE::Storage::parse_volume_id($old_volid);
586bfa78
AD
2431 if ($oldvolname =~ m/\.(raw|qcow2|vmdk)$/){
2432 $oldfmt = $1;
2433 }
2434
7043d946 2435 die "you can't move on the same storage with same format\n" if $oldstoreid eq $storeid &&
e2cd75fa 2436 (!$format || !$oldfmt || $oldfmt eq $format);
586bfa78
AD
2437
2438 PVE::Cluster::log_msg('info', $authuser, "move disk VM $vmid: move --disk $disk --storage $storeid");
2439
2440 my $running = PVE::QemuServer::check_running($vmid);
e2cd75fa
DM
2441
2442 PVE::Storage::activate_volumes($storecfg, [ $drive->{file} ]);
2443
586bfa78
AD
2444 my $realcmd = sub {
2445
2446 my $newvollist = [];
2447
2448 eval {
2449 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub { die "interrupted by signal\n"; };
2450
e2cd75fa
DM
2451 my $newdrive = PVE::QemuServer::clone_disk($storecfg, $vmid, $running, $disk, $drive, undef,
2452 $vmid, $storeid, $format, 1, $newvollist);
2453
2454 $conf->{$disk} = PVE::QemuServer::print_drive($vmid, $newdrive);
2455
70d45e33 2456 PVE::QemuServer::add_unused_volume($conf, $old_volid) if !$param->{delete};
7043d946 2457
e2cd75fa 2458 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
73272365 2459
f34ebd52 2460 eval {
73272365 2461 # try to deactivate volumes - avoid lvm LVs to be active on several nodes
f34ebd52 2462 PVE::Storage::deactivate_volumes($storecfg, [ $newdrive->{file} ])
73272365
DM
2463 if !$running;
2464 };
2465 warn $@ if $@;
586bfa78
AD
2466 };
2467 if (my $err = $@) {
2468
2469 foreach my $volid (@$newvollist) {
2470 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
2471 warn $@ if $@;
2472 }
2473 die "storage migration failed: $err";
2474 }
70d45e33
DM
2475
2476 if ($param->{delete}) {
5b0bd20d
AD
2477 my $used_paths = PVE::QemuServer::get_used_paths($vmid, $storecfg, $conf, 1, 1);
2478 my $path = PVE::Storage::path($storecfg, $old_volid);
2479 if ($used_paths->{$path}){
19d13324 2480 warn "volume $old_volid have snapshots. Can't delete it\n";
5b0bd20d
AD
2481 PVE::QemuServer::add_unused_volume($conf, $old_volid);
2482 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
2483 } else {
2484 eval { PVE::Storage::vdisk_free($storecfg, $old_volid); };
2485 warn $@ if $@;
2486 }
70d45e33 2487 }
586bfa78
AD
2488 };
2489
2490 return $rpcenv->fork_worker('qmmove', $vmid, $authuser, $realcmd);
2491 };
e2cd75fa
DM
2492
2493 return PVE::QemuServer::lock_config($vmid, $updatefn);
586bfa78
AD
2494 }});
2495
3ea94c60 2496__PACKAGE__->register_method({
afdb31d5 2497 name => 'migrate_vm',
3ea94c60
DM
2498 path => '{vmid}/migrate',
2499 method => 'POST',
2500 protected => 1,
2501 proxyto => 'node',
2502 description => "Migrate virtual machine. Creates a new migration task.",
a0d1b1a2
DM
2503 permissions => {
2504 check => ['perm', '/vms/{vmid}', [ 'VM.Migrate' ]],
2505 },
3ea94c60
DM
2506 parameters => {
2507 additionalProperties => 0,
2508 properties => {
2509 node => get_standard_option('pve-node'),
2510 vmid => get_standard_option('pve-vmid'),
2511 target => get_standard_option('pve-node', { description => "Target node." }),
2512 online => {
2513 type => 'boolean',
2514 description => "Use online/live migration.",
2515 optional => 1,
2516 },
2517 force => {
2518 type => 'boolean',
2519 description => "Allow to migrate VMs which use local devices. Only root may use this option.",
2520 optional => 1,
2521 },
2522 },
2523 },
afdb31d5 2524 returns => {
3ea94c60
DM
2525 type => 'string',
2526 description => "the task ID.",
2527 },
2528 code => sub {
2529 my ($param) = @_;
2530
2531 my $rpcenv = PVE::RPCEnvironment::get();
2532
a0d1b1a2 2533 my $authuser = $rpcenv->get_user();
3ea94c60
DM
2534
2535 my $target = extract_param($param, 'target');
2536
2537 my $localnode = PVE::INotify::nodename();
2538 raise_param_exc({ target => "target is local node."}) if $target eq $localnode;
2539
2540 PVE::Cluster::check_cfs_quorum();
2541
2542 PVE::Cluster::check_node_exists($target);
2543
2544 my $targetip = PVE::Cluster::remote_node_ip($target);
2545
2546 my $vmid = extract_param($param, 'vmid');
2547
afdb31d5 2548 raise_param_exc({ force => "Only root may use this option." })
a0d1b1a2 2549 if $param->{force} && $authuser ne 'root@pam';
3ea94c60
DM
2550
2551 # test if VM exists
a5ed42d3 2552 my $conf = PVE::QemuServer::load_config($vmid);
3ea94c60
DM
2553
2554 # try to detect errors early
a5ed42d3
DM
2555
2556 PVE::QemuServer::check_lock($conf);
2557
3ea94c60 2558 if (PVE::QemuServer::check_running($vmid)) {
afdb31d5 2559 die "cant migrate running VM without --online\n"
3ea94c60
DM
2560 if !$param->{online};
2561 }
2562
47152e2e 2563 my $storecfg = PVE::Storage::config();
22d646a7 2564 PVE::QemuServer::check_storage_availability($storecfg, $conf, $target);
47152e2e 2565
2003f0f8 2566 if (PVE::HA::Config::vm_is_ha_managed($vmid) && $rpcenv->{type} ne 'ha') {
3ea94c60 2567
88fc87b4
DM
2568 my $hacmd = sub {
2569 my $upid = shift;
3ea94c60 2570
c44291cd 2571 my $service = "vm:$vmid";
88fc87b4 2572
2003f0f8 2573 my $cmd = ['ha-manager', 'migrate', $service, $target];
88fc87b4
DM
2574
2575 print "Executing HA migrate for VM $vmid to node $target\n";
2576
2577 PVE::Tools::run_command($cmd);
2578
2579 return;
2580 };
2581
2582 return $rpcenv->fork_worker('hamigrate', $vmid, $authuser, $hacmd);
2583
2584 } else {
2585
2586 my $realcmd = sub {
2587 my $upid = shift;
2588
2589 PVE::QemuMigrate->migrate($target, $targetip, $vmid, $param);
2590 };
2591
2592 return $rpcenv->fork_worker('qmigrate', $vmid, $authuser, $realcmd);
2593 }
3ea94c60 2594
3ea94c60 2595 }});
1e3baf05 2596
91c94f0a 2597__PACKAGE__->register_method({
afdb31d5
DM
2598 name => 'monitor',
2599 path => '{vmid}/monitor',
91c94f0a
DM
2600 method => 'POST',
2601 protected => 1,
2602 proxyto => 'node',
2603 description => "Execute Qemu monitor commands.",
a0d1b1a2
DM
2604 permissions => {
2605 check => ['perm', '/vms/{vmid}', [ 'VM.Monitor' ]],
2606 },
91c94f0a
DM
2607 parameters => {
2608 additionalProperties => 0,
2609 properties => {
2610 node => get_standard_option('pve-node'),
2611 vmid => get_standard_option('pve-vmid'),
2612 command => {
2613 type => 'string',
2614 description => "The monitor command.",
2615 }
2616 },
2617 },
2618 returns => { type => 'string'},
2619 code => sub {
2620 my ($param) = @_;
2621
2622 my $vmid = $param->{vmid};
2623
2624 my $conf = PVE::QemuServer::load_config ($vmid); # check if VM exists
2625
2626 my $res = '';
2627 eval {
7b7c6d1b 2628 $res = PVE::QemuServer::vm_human_monitor_command($vmid, $param->{command});
91c94f0a
DM
2629 };
2630 $res = "ERROR: $@" if $@;
2631
2632 return $res;
2633 }});
2634
0d02881c
AD
2635__PACKAGE__->register_method({
2636 name => 'resize_vm',
614e3941 2637 path => '{vmid}/resize',
0d02881c
AD
2638 method => 'PUT',
2639 protected => 1,
2640 proxyto => 'node',
2f48a4f5 2641 description => "Extend volume size.",
0d02881c 2642 permissions => {
3b2773f6 2643 check => ['perm', '/vms/{vmid}', [ 'VM.Config.Disk' ]],
0d02881c
AD
2644 },
2645 parameters => {
2646 additionalProperties => 0,
2f48a4f5
DM
2647 properties => {
2648 node => get_standard_option('pve-node'),
2649 vmid => get_standard_option('pve-vmid'),
2650 skiplock => get_standard_option('skiplock'),
2651 disk => {
2652 type => 'string',
2653 description => "The disk you want to resize.",
2654 enum => [PVE::QemuServer::disknames()],
2655 },
2656 size => {
2657 type => 'string',
f91b2e45 2658 pattern => '\+?\d+(\.\d+)?[KMGT]?',
2f48a4f5
DM
2659 description => "The new size. With the '+' sign the value is added to the actual size of the volume and without it, the value is taken as an absolute one. Shrinking disk size is not supported.",
2660 },
2661 digest => {
2662 type => 'string',
2663 description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.',
2664 maxLength => 40,
2665 optional => 1,
2666 },
2667 },
0d02881c
AD
2668 },
2669 returns => { type => 'null'},
2670 code => sub {
2671 my ($param) = @_;
2672
2673 my $rpcenv = PVE::RPCEnvironment::get();
2674
2675 my $authuser = $rpcenv->get_user();
2676
2677 my $node = extract_param($param, 'node');
2678
2679 my $vmid = extract_param($param, 'vmid');
2680
2681 my $digest = extract_param($param, 'digest');
2682
2f48a4f5 2683 my $disk = extract_param($param, 'disk');
75466c4f 2684
2f48a4f5 2685 my $sizestr = extract_param($param, 'size');
0d02881c 2686
f91b2e45 2687 my $skiplock = extract_param($param, 'skiplock');
0d02881c
AD
2688 raise_param_exc({ skiplock => "Only root may use this option." })
2689 if $skiplock && $authuser ne 'root@pam';
2690
0d02881c
AD
2691 my $storecfg = PVE::Storage::config();
2692
0d02881c
AD
2693 my $updatefn = sub {
2694
2695 my $conf = PVE::QemuServer::load_config($vmid);
2696
2697 die "checksum missmatch (file change by other user?)\n"
2698 if $digest && $digest ne $conf->{digest};
2699 PVE::QemuServer::check_lock($conf) if !$skiplock;
2700
f91b2e45
DM
2701 die "disk '$disk' does not exist\n" if !$conf->{$disk};
2702
2703 my $drive = PVE::QemuServer::parse_drive($disk, $conf->{$disk});
2704
2705 my $volid = $drive->{file};
2706
2707 die "disk '$disk' has no associated volume\n" if !$volid;
2708
2709 die "you can't resize a cdrom\n" if PVE::QemuServer::drive_is_cdrom($drive);
2710
2711 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid);
2712
2713 $rpcenv->check($authuser, "/storage/$storeid", ['Datastore.AllocateSpace']);
2714
2715 my $size = PVE::Storage::volume_size_info($storecfg, $volid, 5);
2716
2717 die "internal error" if $sizestr !~ m/^(\+)?(\d+(\.\d+)?)([KMGT])?$/;
2718 my ($ext, $newsize, $unit) = ($1, $2, $4);
2719 if ($unit) {
2720 if ($unit eq 'K') {
2721 $newsize = $newsize * 1024;
2722 } elsif ($unit eq 'M') {
2723 $newsize = $newsize * 1024 * 1024;
2724 } elsif ($unit eq 'G') {
2725 $newsize = $newsize * 1024 * 1024 * 1024;
2726 } elsif ($unit eq 'T') {
2727 $newsize = $newsize * 1024 * 1024 * 1024 * 1024;
2728 }
2729 }
2730 $newsize += $size if $ext;
2731 $newsize = int($newsize);
2732
2733 die "unable to skrink disk size\n" if $newsize < $size;
2734
2735 return if $size == $newsize;
2736
2f48a4f5 2737 PVE::Cluster::log_msg('info', $authuser, "update VM $vmid: resize --disk $disk --size $sizestr");
0d02881c 2738
f91b2e45 2739 PVE::QemuServer::qemu_block_resize($vmid, "drive-$disk", $storecfg, $volid, $newsize);
75466c4f 2740
f91b2e45
DM
2741 $drive->{size} = $newsize;
2742 $conf->{$disk} = PVE::QemuServer::print_drive($vmid, $drive);
2743
2744 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
2745 };
0d02881c
AD
2746
2747 PVE::QemuServer::lock_config($vmid, $updatefn);
2748 return undef;
2749 }});
2750
9dbd1ee4 2751__PACKAGE__->register_method({
7e7d7b61 2752 name => 'snapshot_list',
9dbd1ee4 2753 path => '{vmid}/snapshot',
7e7d7b61
DM
2754 method => 'GET',
2755 description => "List all snapshots.",
2756 permissions => {
2757 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
2758 },
2759 proxyto => 'node',
2760 protected => 1, # qemu pid files are only readable by root
2761 parameters => {
2762 additionalProperties => 0,
2763 properties => {
2764 vmid => get_standard_option('pve-vmid'),
2765 node => get_standard_option('pve-node'),
2766 },
2767 },
2768 returns => {
2769 type => 'array',
2770 items => {
2771 type => "object",
2772 properties => {},
2773 },
2774 links => [ { rel => 'child', href => "{name}" } ],
2775 },
2776 code => sub {
2777 my ($param) = @_;
2778
6aa4651b
DM
2779 my $vmid = $param->{vmid};
2780
2781 my $conf = PVE::QemuServer::load_config($vmid);
7e7d7b61
DM
2782 my $snaphash = $conf->{snapshots} || {};
2783
2784 my $res = [];
2785
2786 foreach my $name (keys %$snaphash) {
0ea6bc69 2787 my $d = $snaphash->{$name};
75466c4f
DM
2788 my $item = {
2789 name => $name,
2790 snaptime => $d->{snaptime} || 0,
6aa4651b 2791 vmstate => $d->{vmstate} ? 1 : 0,
982c7f12
DM
2792 description => $d->{description} || '',
2793 };
0ea6bc69 2794 $item->{parent} = $d->{parent} if $d->{parent};
3ee28e38 2795 $item->{snapstate} = $d->{snapstate} if $d->{snapstate};
0ea6bc69
DM
2796 push @$res, $item;
2797 }
2798
6aa4651b
DM
2799 my $running = PVE::QemuServer::check_running($vmid, 1) ? 1 : 0;
2800 my $current = { name => 'current', digest => $conf->{digest}, running => $running };
d1914468
DM
2801 $current->{parent} = $conf->{parent} if $conf->{parent};
2802
2803 push @$res, $current;
7e7d7b61
DM
2804
2805 return $res;
2806 }});
2807
2808__PACKAGE__->register_method({
2809 name => 'snapshot',
2810 path => '{vmid}/snapshot',
2811 method => 'POST',
9dbd1ee4
AD
2812 protected => 1,
2813 proxyto => 'node',
2814 description => "Snapshot a VM.",
2815 permissions => {
f1baf1df 2816 check => ['perm', '/vms/{vmid}', [ 'VM.Snapshot' ]],
9dbd1ee4
AD
2817 },
2818 parameters => {
2819 additionalProperties => 0,
2820 properties => {
2821 node => get_standard_option('pve-node'),
2822 vmid => get_standard_option('pve-vmid'),
8abd398b 2823 snapname => get_standard_option('pve-snapshot-name'),
9dbd1ee4
AD
2824 vmstate => {
2825 optional => 1,
2826 type => 'boolean',
2827 description => "Save the vmstate",
2828 },
782f4f75
DM
2829 description => {
2830 optional => 1,
2831 type => 'string',
2832 description => "A textual description or comment.",
2833 },
9dbd1ee4
AD
2834 },
2835 },
7e7d7b61
DM
2836 returns => {
2837 type => 'string',
2838 description => "the task ID.",
2839 },
9dbd1ee4
AD
2840 code => sub {
2841 my ($param) = @_;
2842
2843 my $rpcenv = PVE::RPCEnvironment::get();
2844
2845 my $authuser = $rpcenv->get_user();
2846
2847 my $node = extract_param($param, 'node');
2848
2849 my $vmid = extract_param($param, 'vmid');
2850
9dbd1ee4
AD
2851 my $snapname = extract_param($param, 'snapname');
2852
d1914468
DM
2853 die "unable to use snapshot name 'current' (reserved name)\n"
2854 if $snapname eq 'current';
2855
7e7d7b61 2856 my $realcmd = sub {
22c377f0 2857 PVE::Cluster::log_msg('info', $authuser, "snapshot VM $vmid: $snapname");
af9110dd
WL
2858 PVE::QemuServer::snapshot_create($vmid, $snapname, $param->{vmstate},
2859 $param->{description});
7e7d7b61
DM
2860 };
2861
2862 return $rpcenv->fork_worker('qmsnapshot', $vmid, $authuser, $realcmd);
2863 }});
2864
154ccdcd
DM
2865__PACKAGE__->register_method({
2866 name => 'snapshot_cmd_idx',
2867 path => '{vmid}/snapshot/{snapname}',
2868 description => '',
2869 method => 'GET',
2870 permissions => {
2871 user => 'all',
2872 },
2873 parameters => {
2874 additionalProperties => 0,
2875 properties => {
2876 vmid => get_standard_option('pve-vmid'),
2877 node => get_standard_option('pve-node'),
8abd398b 2878 snapname => get_standard_option('pve-snapshot-name'),
154ccdcd
DM
2879 },
2880 },
2881 returns => {
2882 type => 'array',
2883 items => {
2884 type => "object",
2885 properties => {},
2886 },
2887 links => [ { rel => 'child', href => "{cmd}" } ],
2888 },
2889 code => sub {
2890 my ($param) = @_;
2891
2892 my $res = [];
2893
2894 push @$res, { cmd => 'rollback' };
d788cea6 2895 push @$res, { cmd => 'config' };
154ccdcd
DM
2896
2897 return $res;
2898 }});
2899
d788cea6
DM
2900__PACKAGE__->register_method({
2901 name => 'update_snapshot_config',
2902 path => '{vmid}/snapshot/{snapname}/config',
2903 method => 'PUT',
2904 protected => 1,
2905 proxyto => 'node',
2906 description => "Update snapshot metadata.",
2907 permissions => {
2908 check => ['perm', '/vms/{vmid}', [ 'VM.Snapshot' ]],
2909 },
2910 parameters => {
2911 additionalProperties => 0,
2912 properties => {
2913 node => get_standard_option('pve-node'),
2914 vmid => get_standard_option('pve-vmid'),
2915 snapname => get_standard_option('pve-snapshot-name'),
2916 description => {
2917 optional => 1,
2918 type => 'string',
2919 description => "A textual description or comment.",
2920 },
2921 },
2922 },
2923 returns => { type => 'null' },
2924 code => sub {
2925 my ($param) = @_;
2926
2927 my $rpcenv = PVE::RPCEnvironment::get();
2928
2929 my $authuser = $rpcenv->get_user();
2930
2931 my $vmid = extract_param($param, 'vmid');
2932
2933 my $snapname = extract_param($param, 'snapname');
2934
2935 return undef if !defined($param->{description});
2936
2937 my $updatefn = sub {
2938
2939 my $conf = PVE::QemuServer::load_config($vmid);
2940
2941 PVE::QemuServer::check_lock($conf);
2942
2943 my $snap = $conf->{snapshots}->{$snapname};
2944
75466c4f
DM
2945 die "snapshot '$snapname' does not exist\n" if !defined($snap);
2946
d788cea6
DM
2947 $snap->{description} = $param->{description} if defined($param->{description});
2948
2949 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
2950 };
2951
2952 PVE::QemuServer::lock_config($vmid, $updatefn);
2953
2954 return undef;
2955 }});
2956
2957__PACKAGE__->register_method({
2958 name => 'get_snapshot_config',
2959 path => '{vmid}/snapshot/{snapname}/config',
2960 method => 'GET',
2961 proxyto => 'node',
2962 description => "Get snapshot configuration",
2963 permissions => {
2964 check => ['perm', '/vms/{vmid}', [ 'VM.Snapshot' ]],
2965 },
2966 parameters => {
2967 additionalProperties => 0,
2968 properties => {
2969 node => get_standard_option('pve-node'),
2970 vmid => get_standard_option('pve-vmid'),
2971 snapname => get_standard_option('pve-snapshot-name'),
2972 },
2973 },
2974 returns => { type => "object" },
2975 code => sub {
2976 my ($param) = @_;
2977
2978 my $rpcenv = PVE::RPCEnvironment::get();
2979
2980 my $authuser = $rpcenv->get_user();
2981
2982 my $vmid = extract_param($param, 'vmid');
2983
2984 my $snapname = extract_param($param, 'snapname');
2985
2986 my $conf = PVE::QemuServer::load_config($vmid);
2987
2988 my $snap = $conf->{snapshots}->{$snapname};
2989
75466c4f
DM
2990 die "snapshot '$snapname' does not exist\n" if !defined($snap);
2991
d788cea6
DM
2992 return $snap;
2993 }});
2994
7e7d7b61
DM
2995__PACKAGE__->register_method({
2996 name => 'rollback',
154ccdcd 2997 path => '{vmid}/snapshot/{snapname}/rollback',
7e7d7b61
DM
2998 method => 'POST',
2999 protected => 1,
3000 proxyto => 'node',
3001 description => "Rollback VM state to specified snapshot.",
3002 permissions => {
f1baf1df 3003 check => ['perm', '/vms/{vmid}', [ 'VM.Snapshot' ]],
7e7d7b61
DM
3004 },
3005 parameters => {
3006 additionalProperties => 0,
3007 properties => {
3008 node => get_standard_option('pve-node'),
3009 vmid => get_standard_option('pve-vmid'),
8abd398b 3010 snapname => get_standard_option('pve-snapshot-name'),
7e7d7b61
DM
3011 },
3012 },
3013 returns => {
3014 type => 'string',
3015 description => "the task ID.",
3016 },
3017 code => sub {
3018 my ($param) = @_;
3019
3020 my $rpcenv = PVE::RPCEnvironment::get();
3021
3022 my $authuser = $rpcenv->get_user();
3023
3024 my $node = extract_param($param, 'node');
3025
3026 my $vmid = extract_param($param, 'vmid');
3027
3028 my $snapname = extract_param($param, 'snapname');
3029
7e7d7b61 3030 my $realcmd = sub {
22c377f0
DM
3031 PVE::Cluster::log_msg('info', $authuser, "rollback snapshot VM $vmid: $snapname");
3032 PVE::QemuServer::snapshot_rollback($vmid, $snapname);
7e7d7b61
DM
3033 };
3034
3035 return $rpcenv->fork_worker('qmrollback', $vmid, $authuser, $realcmd);
3036 }});
3037
3038__PACKAGE__->register_method({
3039 name => 'delsnapshot',
3040 path => '{vmid}/snapshot/{snapname}',
3041 method => 'DELETE',
3042 protected => 1,
3043 proxyto => 'node',
3044 description => "Delete a VM snapshot.",
3045 permissions => {
f1baf1df 3046 check => ['perm', '/vms/{vmid}', [ 'VM.Snapshot' ]],
7e7d7b61
DM
3047 },
3048 parameters => {
3049 additionalProperties => 0,
3050 properties => {
3051 node => get_standard_option('pve-node'),
3052 vmid => get_standard_option('pve-vmid'),
8abd398b 3053 snapname => get_standard_option('pve-snapshot-name'),
3ee28e38
DM
3054 force => {
3055 optional => 1,
3056 type => 'boolean',
3057 description => "For removal from config file, even if removing disk snapshots fails.",
3058 },
7e7d7b61
DM
3059 },
3060 },
3061 returns => {
3062 type => 'string',
3063 description => "the task ID.",
3064 },
3065 code => sub {
3066 my ($param) = @_;
3067
3068 my $rpcenv = PVE::RPCEnvironment::get();
3069
3070 my $authuser = $rpcenv->get_user();
3071
3072 my $node = extract_param($param, 'node');
3073
3074 my $vmid = extract_param($param, 'vmid');
3075
3076 my $snapname = extract_param($param, 'snapname');
3077
7e7d7b61 3078 my $realcmd = sub {
22c377f0 3079 PVE::Cluster::log_msg('info', $authuser, "delete snapshot VM $vmid: $snapname");
3ee28e38 3080 PVE::QemuServer::snapshot_delete($vmid, $snapname, $param->{force});
7e7d7b61 3081 };
9dbd1ee4 3082
7b2257a8 3083 return $rpcenv->fork_worker('qmdelsnapshot', $vmid, $authuser, $realcmd);
9dbd1ee4
AD
3084 }});
3085
04a69bb4
AD
3086__PACKAGE__->register_method({
3087 name => 'template',
3088 path => '{vmid}/template',
3089 method => 'POST',
3090 protected => 1,
3091 proxyto => 'node',
3092 description => "Create a Template.",
b02691d8 3093 permissions => {
7af0a6c8
DM
3094 description => "You need 'VM.Allocate' permissions on /vms/{vmid}",
3095 check => [ 'perm', '/vms/{vmid}', ['VM.Allocate']],
b02691d8 3096 },
04a69bb4
AD
3097 parameters => {
3098 additionalProperties => 0,
3099 properties => {
3100 node => get_standard_option('pve-node'),
3101 vmid => get_standard_option('pve-vmid'),
3102 disk => {
3103 optional => 1,
3104 type => 'string',
3105 description => "If you want to convert only 1 disk to base image.",
3106 enum => [PVE::QemuServer::disknames()],
3107 },
3108
3109 },
3110 },
3111 returns => { type => 'null'},
3112 code => sub {
3113 my ($param) = @_;
3114
3115 my $rpcenv = PVE::RPCEnvironment::get();
3116
3117 my $authuser = $rpcenv->get_user();
3118
3119 my $node = extract_param($param, 'node');
3120
3121 my $vmid = extract_param($param, 'vmid');
3122
3123 my $disk = extract_param($param, 'disk');
3124
3125 my $updatefn = sub {
3126
3127 my $conf = PVE::QemuServer::load_config($vmid);
3128
3129 PVE::QemuServer::check_lock($conf);
3130
75466c4f 3131 die "unable to create template, because VM contains snapshots\n"
b91c2aae 3132 if $conf->{snapshots} && scalar(keys %{$conf->{snapshots}});
0402a80b 3133
75466c4f 3134 die "you can't convert a template to a template\n"
03c2d0ad 3135 if PVE::QemuServer::is_template($conf) && !$disk;
0402a80b 3136
75466c4f 3137 die "you can't convert a VM to template if VM is running\n"
218cab9a 3138 if PVE::QemuServer::check_running($vmid);
35c5fdef 3139
04a69bb4
AD
3140 my $realcmd = sub {
3141 PVE::QemuServer::template_create($vmid, $conf, $disk);
3142 };
04a69bb4 3143
75e7e997 3144 $conf->{template} = 1;
04a69bb4 3145 PVE::QemuServer::update_config_nolock($vmid, $conf, 1);
75e7e997
DM
3146
3147 return $rpcenv->fork_worker('qmtemplate', $vmid, $authuser, $realcmd);
04a69bb4
AD
3148 };
3149
3150 PVE::QemuServer::lock_config($vmid, $updatefn);
3151 return undef;
3152 }});
3153
1e3baf05 31541;