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