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