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