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