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