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