]> git.proxmox.com Git - pve-container.git/blob - src/PVE/API2/LXC.pm
fix #1147: allow marking non-volume mps as shared
[pve-container.git] / src / PVE / API2 / LXC.pm
1 package PVE::API2::LXC;
2
3 use strict;
4 use warnings;
5
6 use PVE::SafeSyslog;
7 use PVE::Tools qw(extract_param run_command);
8 use PVE::Exception qw(raise raise_param_exc);
9 use PVE::INotify;
10 use PVE::Cluster qw(cfs_read_file);
11 use PVE::AccessControl;
12 use PVE::Firewall;
13 use PVE::Storage;
14 use PVE::RESTHandler;
15 use PVE::RPCEnvironment;
16 use PVE::LXC;
17 use PVE::LXC::Create;
18 use PVE::LXC::Migrate;
19 use PVE::API2::LXC::Config;
20 use PVE::API2::LXC::Status;
21 use PVE::API2::LXC::Snapshot;
22 use PVE::HA::Env::PVE2;
23 use PVE::HA::Config;
24 use PVE::JSONSchema qw(get_standard_option);
25 use base qw(PVE::RESTHandler);
26
27 use Data::Dumper; # fixme: remove
28
29 __PACKAGE__->register_method ({
30 subclass => "PVE::API2::LXC::Config",
31 path => '{vmid}/config',
32 });
33
34 __PACKAGE__->register_method ({
35 subclass => "PVE::API2::LXC::Status",
36 path => '{vmid}/status',
37 });
38
39 __PACKAGE__->register_method ({
40 subclass => "PVE::API2::LXC::Snapshot",
41 path => '{vmid}/snapshot',
42 });
43
44 __PACKAGE__->register_method ({
45 subclass => "PVE::API2::Firewall::CT",
46 path => '{vmid}/firewall',
47 });
48
49 __PACKAGE__->register_method({
50 name => 'vmlist',
51 path => '',
52 method => 'GET',
53 description => "LXC container index (per node).",
54 permissions => {
55 description => "Only list CTs where you have VM.Audit permissons on /vms/<vmid>.",
56 user => 'all',
57 },
58 proxyto => 'node',
59 protected => 1, # /proc files are only readable by root
60 parameters => {
61 additionalProperties => 0,
62 properties => {
63 node => get_standard_option('pve-node'),
64 },
65 },
66 returns => {
67 type => 'array',
68 items => {
69 type => "object",
70 properties => {},
71 },
72 links => [ { rel => 'child', href => "{vmid}" } ],
73 },
74 code => sub {
75 my ($param) = @_;
76
77 my $rpcenv = PVE::RPCEnvironment::get();
78 my $authuser = $rpcenv->get_user();
79
80 my $vmstatus = PVE::LXC::vmstatus();
81
82 my $res = [];
83 foreach my $vmid (keys %$vmstatus) {
84 next if !$rpcenv->check($authuser, "/vms/$vmid", [ 'VM.Audit' ], 1);
85
86 my $data = $vmstatus->{$vmid};
87 $data->{vmid} = $vmid;
88 push @$res, $data;
89 }
90
91 return $res;
92
93 }});
94
95 __PACKAGE__->register_method({
96 name => 'create_vm',
97 path => '',
98 method => 'POST',
99 description => "Create or restore a container.",
100 permissions => {
101 user => 'all', # check inside
102 description => "You need 'VM.Allocate' permissions on /vms/{vmid} or on the VM pool /pool/{pool}. " .
103 "For restore, it is enough if the user has 'VM.Backup' permission and the VM already exists. " .
104 "You also need 'Datastore.AllocateSpace' permissions on the storage.",
105 },
106 protected => 1,
107 proxyto => 'node',
108 parameters => {
109 additionalProperties => 0,
110 properties => PVE::LXC::Config->json_config_properties({
111 node => get_standard_option('pve-node'),
112 vmid => get_standard_option('pve-vmid', { completion => \&PVE::Cluster::complete_next_vmid }),
113 ostemplate => {
114 description => "The OS template or backup file.",
115 type => 'string',
116 maxLength => 255,
117 completion => \&PVE::LXC::complete_os_templates,
118 },
119 password => {
120 optional => 1,
121 type => 'string',
122 description => "Sets root password inside container.",
123 minLength => 5,
124 },
125 storage => get_standard_option('pve-storage-id', {
126 description => "Default Storage.",
127 default => 'local',
128 optional => 1,
129 completion => \&PVE::Storage::complete_storage_enabled,
130 }),
131 force => {
132 optional => 1,
133 type => 'boolean',
134 description => "Allow to overwrite existing container.",
135 },
136 restore => {
137 optional => 1,
138 type => 'boolean',
139 description => "Mark this as restore task.",
140 },
141 pool => {
142 optional => 1,
143 type => 'string', format => 'pve-poolid',
144 description => "Add the VM to the specified pool.",
145 },
146 'ignore-unpack-errors' => {
147 optional => 1,
148 type => 'boolean',
149 description => "Ignore errors when extracting the template.",
150 },
151 'ssh-public-keys' => {
152 optional => 1,
153 type => 'string',
154 description => "Setup public SSH keys (one key per line, " .
155 "OpenSSH format).",
156 },
157 }),
158 },
159 returns => {
160 type => 'string',
161 },
162 code => sub {
163 my ($param) = @_;
164
165 my $rpcenv = PVE::RPCEnvironment::get();
166
167 my $authuser = $rpcenv->get_user();
168
169 my $node = extract_param($param, 'node');
170
171 my $vmid = extract_param($param, 'vmid');
172
173 my $ignore_unpack_errors = extract_param($param, 'ignore-unpack-errors');
174
175 my $basecfg_fn = PVE::LXC::Config->config_file($vmid);
176
177 my $same_container_exists = -f $basecfg_fn;
178
179 # 'unprivileged' is read-only, so we can't pass it to update_pct_config
180 my $unprivileged = extract_param($param, 'unprivileged');
181
182 my $restore = extract_param($param, 'restore');
183
184 if ($restore) {
185 # fixme: limit allowed parameters
186
187 }
188
189 my $force = extract_param($param, 'force');
190
191 if (!($same_container_exists && $restore && $force)) {
192 PVE::Cluster::check_vmid_unused($vmid);
193 } else {
194 my $conf = PVE::LXC::Config->load_config($vmid);
195 PVE::LXC::Config->check_protection($conf, "unable to restore CT $vmid");
196 }
197
198 my $password = extract_param($param, 'password');
199
200 my $ssh_keys = extract_param($param, 'ssh-public-keys');
201 PVE::Tools::validate_ssh_public_keys($ssh_keys) if defined($ssh_keys);
202
203 my $pool = extract_param($param, 'pool');
204
205 if (defined($pool)) {
206 $rpcenv->check_pool_exist($pool);
207 $rpcenv->check_perm_modify($authuser, "/pool/$pool");
208 }
209
210 if ($rpcenv->check($authuser, "/vms/$vmid", ['VM.Allocate'], 1)) {
211 # OK
212 } elsif ($pool && $rpcenv->check($authuser, "/pool/$pool", ['VM.Allocate'], 1)) {
213 # OK
214 } elsif ($restore && $force && $same_container_exists &&
215 $rpcenv->check($authuser, "/vms/$vmid", ['VM.Backup'], 1)) {
216 # OK: user has VM.Backup permissions, and want to restore an existing VM
217 } else {
218 raise_perm_exc();
219 }
220
221 PVE::LXC::check_ct_modify_config_perm($rpcenv, $authuser, $vmid, $pool, $param, []);
222
223 my $storage = extract_param($param, 'storage') // 'local';
224
225 my $storage_cfg = cfs_read_file("storage.cfg");
226
227 my $ostemplate = extract_param($param, 'ostemplate');
228
229 my $archive;
230
231 if ($ostemplate eq '-') {
232 die "pipe requires cli environment\n"
233 if $rpcenv->{type} ne 'cli';
234 die "pipe can only be used with restore tasks\n"
235 if !$restore;
236 $archive = '-';
237 die "restore from pipe requires rootfs parameter\n" if !defined($param->{rootfs});
238 } else {
239 $rpcenv->check_volume_access($authuser, $storage_cfg, $vmid, $ostemplate);
240 $archive = PVE::Storage::abs_filesystem_path($storage_cfg, $ostemplate);
241 }
242
243 my $check_and_activate_storage = sub {
244 my ($sid) = @_;
245
246 my $scfg = PVE::Storage::storage_check_node($storage_cfg, $sid, $node);
247
248 raise_param_exc({ storage => "storage '$sid' does not support container directories"})
249 if !$scfg->{content}->{rootdir};
250
251 $rpcenv->check($authuser, "/storage/$sid", ['Datastore.AllocateSpace']);
252
253 PVE::Storage::activate_storage($storage_cfg, $sid);
254 };
255
256 my $conf = {};
257
258 my $no_disk_param = {};
259 my $mp_param = {};
260 my $storage_only_mode = 1;
261 foreach my $opt (keys %$param) {
262 my $value = $param->{$opt};
263 if ($opt eq 'rootfs' || $opt =~ m/^mp\d+$/) {
264 # allow to use simple numbers (add default storage in that case)
265 if ($value =~ m/^\d+(\.\d+)?$/) {
266 $mp_param->{$opt} = "$storage:$value";
267 } else {
268 $mp_param->{$opt} = $value;
269 }
270 $storage_only_mode = 0;
271 } elsif ($opt =~ m/^unused\d+$/) {
272 warn "ignoring '$opt', cannot create/restore with unused volume\n";
273 delete $param->{$opt};
274 } else {
275 $no_disk_param->{$opt} = $value;
276 }
277 }
278
279 die "mountpoints configured, but 'rootfs' not set - aborting\n"
280 if !$storage_only_mode && !defined($mp_param->{rootfs});
281
282 # check storage access, activate storage
283 my $delayed_mp_param = {};
284 PVE::LXC::Config->foreach_mountpoint($mp_param, sub {
285 my ($ms, $mountpoint) = @_;
286
287 my $volid = $mountpoint->{volume};
288 my $mp = $mountpoint->{mp};
289
290 if ($mountpoint->{type} ne 'volume') { # bind or device
291 die "Only root can pass arbitrary filesystem paths.\n"
292 if $authuser ne 'root@pam';
293 } else {
294 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid);
295 &$check_and_activate_storage($sid);
296 }
297 });
298
299 # check/activate default storage
300 &$check_and_activate_storage($storage) if !defined($mp_param->{rootfs});
301
302 PVE::LXC::Config->update_pct_config($vmid, $conf, 0, $no_disk_param);
303
304 $conf->{unprivileged} = 1 if $unprivileged;
305
306 my $check_vmid_usage = sub {
307 if ($force) {
308 die "can't overwrite running container\n"
309 if PVE::LXC::check_running($vmid);
310 } else {
311 PVE::Cluster::check_vmid_unused($vmid);
312 }
313 };
314
315 my $code = sub {
316 &$check_vmid_usage(); # final check after locking
317 my $old_conf;
318
319 my $config_fn = PVE::LXC::Config->config_file($vmid);
320 if (-f $config_fn) {
321 die "container exists" if !$restore; # just to be sure
322 $old_conf = PVE::LXC::Config->load_config($vmid);
323 } else {
324 eval {
325 # try to create empty config on local node, we have an flock
326 PVE::LXC::Config->write_config($vmid, {});
327 };
328
329 # another node was faster, abort
330 die "Could not reserve ID $vmid, already taken\n" if $@;
331 }
332
333 PVE::Cluster::check_cfs_quorum();
334 my $vollist = [];
335
336 eval {
337 if ($storage_only_mode) {
338 if ($restore) {
339 (undef, $mp_param) = PVE::LXC::Create::recover_config($archive);
340 die "rootfs configuration could not be recovered, please check and specify manually!\n"
341 if !defined($mp_param->{rootfs});
342 PVE::LXC::Config->foreach_mountpoint($mp_param, sub {
343 my ($ms, $mountpoint) = @_;
344 my $type = $mountpoint->{type};
345 if ($type eq 'volume') {
346 die "unable to detect disk size - please specify $ms (size)\n"
347 if !defined($mountpoint->{size});
348 my $disksize = $mountpoint->{size} / (1024 * 1024 * 1024); # create_disks expects GB as unit size
349 delete $mountpoint->{size};
350 $mountpoint->{volume} = "$storage:$disksize";
351 $mp_param->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
352 } else {
353 my $type = $mountpoint->{type};
354 die "restoring rootfs to $type mount is only possible by specifying -rootfs manually!\n"
355 if ($ms eq 'rootfs');
356 die "restoring '$ms' to $type mount is only possible for root\n"
357 if $authuser ne 'root@pam';
358
359 if ($mountpoint->{backup}) {
360 warn "WARNING - unsupported configuration!\n";
361 warn "backup was enabled for $type mountpoint $ms ('$mountpoint->{mp}')\n";
362 warn "mountpoint configuration will be restored after archive extraction!\n";
363 warn "contained files will be restored to wrong directory!\n";
364 }
365 delete $mp_param->{$ms}; # actually delay bind/dev mps
366 $delayed_mp_param->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
367 }
368 });
369 } else {
370 $mp_param->{rootfs} = "$storage:4"; # defaults to 4GB
371 }
372 }
373
374 $vollist = PVE::LXC::create_disks($storage_cfg, $vmid, $mp_param, $conf);
375
376 if (defined($old_conf)) {
377 # destroy old container volumes
378 PVE::LXC::destroy_lxc_container($storage_cfg, $vmid, $old_conf, {});
379 }
380
381 eval {
382 my $rootdir = PVE::LXC::mount_all($vmid, $storage_cfg, $conf, 1);
383 PVE::LXC::Create::restore_archive($archive, $rootdir, $conf, $ignore_unpack_errors);
384
385 if ($restore) {
386 PVE::LXC::Create::restore_configuration($vmid, $rootdir, $conf, $authuser ne 'root@pam');
387 } else {
388 my $lxc_setup = PVE::LXC::Setup->new($conf, $rootdir); # detect OS
389 PVE::LXC::Config->write_config($vmid, $conf); # safe config (after OS detection)
390 $lxc_setup->post_create_hook($password, $ssh_keys);
391 }
392 };
393 my $err = $@;
394 PVE::LXC::umount_all($vmid, $storage_cfg, $conf, $err ? 1 : 0);
395 PVE::Storage::deactivate_volumes($storage_cfg, PVE::LXC::Config->get_vm_volumes($conf));
396 die $err if $err;
397 # set some defaults
398 $conf->{hostname} ||= "CT$vmid";
399 $conf->{memory} ||= 512;
400 $conf->{swap} //= 512;
401 foreach my $mp (keys %$delayed_mp_param) {
402 $conf->{$mp} = $delayed_mp_param->{$mp};
403 }
404 PVE::LXC::Config->write_config($vmid, $conf);
405 };
406 if (my $err = $@) {
407 PVE::LXC::destroy_disks($storage_cfg, $vollist);
408 PVE::LXC::destroy_config($vmid);
409 die $err;
410 }
411 PVE::AccessControl::add_vm_to_pool($vmid, $pool) if $pool;
412 };
413
414 my $realcmd = sub { PVE::LXC::Config->lock_config($vmid, $code); };
415
416 &$check_vmid_usage(); # first check before locking
417
418 return $rpcenv->fork_worker($restore ? 'vzrestore' : 'vzcreate',
419 $vmid, $authuser, $realcmd);
420
421 }});
422
423 __PACKAGE__->register_method({
424 name => 'vmdiridx',
425 path => '{vmid}',
426 method => 'GET',
427 proxyto => 'node',
428 description => "Directory index",
429 permissions => {
430 user => 'all',
431 },
432 parameters => {
433 additionalProperties => 0,
434 properties => {
435 node => get_standard_option('pve-node'),
436 vmid => get_standard_option('pve-vmid'),
437 },
438 },
439 returns => {
440 type => 'array',
441 items => {
442 type => "object",
443 properties => {
444 subdir => { type => 'string' },
445 },
446 },
447 links => [ { rel => 'child', href => "{subdir}" } ],
448 },
449 code => sub {
450 my ($param) = @_;
451
452 # test if VM exists
453 my $conf = PVE::LXC::Config->load_config($param->{vmid});
454
455 my $res = [
456 { subdir => 'config' },
457 { subdir => 'status' },
458 { subdir => 'vncproxy' },
459 { subdir => 'vncwebsocket' },
460 { subdir => 'spiceproxy' },
461 { subdir => 'migrate' },
462 { subdir => 'clone' },
463 # { subdir => 'initlog' },
464 { subdir => 'rrd' },
465 { subdir => 'rrddata' },
466 { subdir => 'firewall' },
467 { subdir => 'snapshot' },
468 { subdir => 'resize' },
469 ];
470
471 return $res;
472 }});
473
474
475 __PACKAGE__->register_method({
476 name => 'rrd',
477 path => '{vmid}/rrd',
478 method => 'GET',
479 protected => 1, # fixme: can we avoid that?
480 permissions => {
481 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
482 },
483 description => "Read VM RRD statistics (returns PNG)",
484 parameters => {
485 additionalProperties => 0,
486 properties => {
487 node => get_standard_option('pve-node'),
488 vmid => get_standard_option('pve-vmid'),
489 timeframe => {
490 description => "Specify the time frame you are interested in.",
491 type => 'string',
492 enum => [ 'hour', 'day', 'week', 'month', 'year' ],
493 },
494 ds => {
495 description => "The list of datasources you want to display.",
496 type => 'string', format => 'pve-configid-list',
497 },
498 cf => {
499 description => "The RRD consolidation function",
500 type => 'string',
501 enum => [ 'AVERAGE', 'MAX' ],
502 optional => 1,
503 },
504 },
505 },
506 returns => {
507 type => "object",
508 properties => {
509 filename => { type => 'string' },
510 },
511 },
512 code => sub {
513 my ($param) = @_;
514
515 return PVE::Cluster::create_rrd_graph(
516 "pve2-vm/$param->{vmid}", $param->{timeframe},
517 $param->{ds}, $param->{cf});
518
519 }});
520
521 __PACKAGE__->register_method({
522 name => 'rrddata',
523 path => '{vmid}/rrddata',
524 method => 'GET',
525 protected => 1, # fixme: can we avoid that?
526 permissions => {
527 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
528 },
529 description => "Read VM RRD statistics",
530 parameters => {
531 additionalProperties => 0,
532 properties => {
533 node => get_standard_option('pve-node'),
534 vmid => get_standard_option('pve-vmid'),
535 timeframe => {
536 description => "Specify the time frame you are interested in.",
537 type => 'string',
538 enum => [ 'hour', 'day', 'week', 'month', 'year' ],
539 },
540 cf => {
541 description => "The RRD consolidation function",
542 type => 'string',
543 enum => [ 'AVERAGE', 'MAX' ],
544 optional => 1,
545 },
546 },
547 },
548 returns => {
549 type => "array",
550 items => {
551 type => "object",
552 properties => {},
553 },
554 },
555 code => sub {
556 my ($param) = @_;
557
558 return PVE::Cluster::create_rrd_data(
559 "pve2-vm/$param->{vmid}", $param->{timeframe}, $param->{cf});
560 }});
561
562 __PACKAGE__->register_method({
563 name => 'destroy_vm',
564 path => '{vmid}',
565 method => 'DELETE',
566 protected => 1,
567 proxyto => 'node',
568 description => "Destroy the container (also delete all uses files).",
569 permissions => {
570 check => [ 'perm', '/vms/{vmid}', ['VM.Allocate']],
571 },
572 parameters => {
573 additionalProperties => 0,
574 properties => {
575 node => get_standard_option('pve-node'),
576 vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid_stopped }),
577 },
578 },
579 returns => {
580 type => 'string',
581 },
582 code => sub {
583 my ($param) = @_;
584
585 my $rpcenv = PVE::RPCEnvironment::get();
586
587 my $authuser = $rpcenv->get_user();
588
589 my $vmid = $param->{vmid};
590
591 # test if container exists
592 my $conf = PVE::LXC::Config->load_config($vmid);
593
594 my $storage_cfg = cfs_read_file("storage.cfg");
595
596 PVE::LXC::Config->check_protection($conf, "can't remove CT $vmid");
597
598 die "unable to remove CT $vmid - used in HA resources\n"
599 if PVE::HA::Config::vm_is_ha_managed($vmid);
600
601 my $running_error_msg = "unable to destroy CT $vmid - container is running\n";
602
603 die $running_error_msg if PVE::LXC::check_running($vmid); # check early
604
605 my $code = sub {
606 # reload config after lock
607 $conf = PVE::LXC::Config->load_config($vmid);
608 PVE::LXC::Config->check_lock($conf);
609
610 die $running_error_msg if PVE::LXC::check_running($vmid);
611
612 PVE::LXC::destroy_lxc_container($storage_cfg, $vmid, $conf);
613 PVE::AccessControl::remove_vm_access($vmid);
614 PVE::Firewall::remove_vmfw_conf($vmid);
615 };
616
617 my $realcmd = sub { PVE::LXC::Config->lock_config($vmid, $code); };
618
619 return $rpcenv->fork_worker('vzdestroy', $vmid, $authuser, $realcmd);
620 }});
621
622 my $sslcert;
623
624 __PACKAGE__->register_method ({
625 name => 'vncproxy',
626 path => '{vmid}/vncproxy',
627 method => 'POST',
628 protected => 1,
629 permissions => {
630 check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
631 },
632 description => "Creates a TCP VNC proxy connections.",
633 parameters => {
634 additionalProperties => 0,
635 properties => {
636 node => get_standard_option('pve-node'),
637 vmid => get_standard_option('pve-vmid'),
638 websocket => {
639 optional => 1,
640 type => 'boolean',
641 description => "use websocket instead of standard VNC.",
642 },
643 },
644 },
645 returns => {
646 additionalProperties => 0,
647 properties => {
648 user => { type => 'string' },
649 ticket => { type => 'string' },
650 cert => { type => 'string' },
651 port => { type => 'integer' },
652 upid => { type => 'string' },
653 },
654 },
655 code => sub {
656 my ($param) = @_;
657
658 my $rpcenv = PVE::RPCEnvironment::get();
659
660 my $authuser = $rpcenv->get_user();
661
662 my $vmid = $param->{vmid};
663 my $node = $param->{node};
664
665 my $authpath = "/vms/$vmid";
666
667 my $ticket = PVE::AccessControl::assemble_vnc_ticket($authuser, $authpath);
668
669 $sslcert = PVE::Tools::file_get_contents("/etc/pve/pve-root-ca.pem", 8192)
670 if !$sslcert;
671
672 my ($remip, $family);
673
674 if ($node ne PVE::INotify::nodename()) {
675 ($remip, $family) = PVE::Cluster::remote_node_ip($node);
676 } else {
677 $family = PVE::Tools::get_host_address_family($node);
678 }
679
680 my $port = PVE::Tools::next_vnc_port($family);
681
682 # NOTE: vncterm VNC traffic is already TLS encrypted,
683 # so we select the fastest chipher here (or 'none'?)
684 my $remcmd = $remip ?
685 ['/usr/bin/ssh', '-t', $remip] : [];
686
687 my $conf = PVE::LXC::Config->load_config($vmid, $node);
688 my $concmd = PVE::LXC::get_console_command($vmid, $conf);
689
690 my $shcmd = [ '/usr/bin/dtach', '-A',
691 "/var/run/dtach/vzctlconsole$vmid",
692 '-r', 'winch', '-z', @$concmd];
693
694 my $realcmd = sub {
695 my $upid = shift;
696
697 syslog ('info', "starting lxc vnc proxy $upid\n");
698
699 my $timeout = 10;
700
701 my $cmd = ['/usr/bin/vncterm', '-rfbport', $port,
702 '-timeout', $timeout, '-authpath', $authpath,
703 '-perm', 'VM.Console'];
704
705 if ($param->{websocket}) {
706 $ENV{PVE_VNC_TICKET} = $ticket; # pass ticket to vncterm
707 push @$cmd, '-notls', '-listen', 'localhost';
708 }
709
710 push @$cmd, '-c', @$remcmd, @$shcmd;
711
712 run_command($cmd);
713
714 return;
715 };
716
717 my $upid = $rpcenv->fork_worker('vncproxy', $vmid, $authuser, $realcmd);
718
719 PVE::Tools::wait_for_vnc_port($port);
720
721 return {
722 user => $authuser,
723 ticket => $ticket,
724 port => $port,
725 upid => $upid,
726 cert => $sslcert,
727 };
728 }});
729
730 __PACKAGE__->register_method({
731 name => 'vncwebsocket',
732 path => '{vmid}/vncwebsocket',
733 method => 'GET',
734 permissions => {
735 description => "You also need to pass a valid ticket (vncticket).",
736 check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
737 },
738 description => "Opens a weksocket for VNC traffic.",
739 parameters => {
740 additionalProperties => 0,
741 properties => {
742 node => get_standard_option('pve-node'),
743 vmid => get_standard_option('pve-vmid'),
744 vncticket => {
745 description => "Ticket from previous call to vncproxy.",
746 type => 'string',
747 maxLength => 512,
748 },
749 port => {
750 description => "Port number returned by previous vncproxy call.",
751 type => 'integer',
752 minimum => 5900,
753 maximum => 5999,
754 },
755 },
756 },
757 returns => {
758 type => "object",
759 properties => {
760 port => { type => 'string' },
761 },
762 },
763 code => sub {
764 my ($param) = @_;
765
766 my $rpcenv = PVE::RPCEnvironment::get();
767
768 my $authuser = $rpcenv->get_user();
769
770 my $authpath = "/vms/$param->{vmid}";
771
772 PVE::AccessControl::verify_vnc_ticket($param->{vncticket}, $authuser, $authpath);
773
774 my $port = $param->{port};
775
776 return { port => $port };
777 }});
778
779 __PACKAGE__->register_method ({
780 name => 'spiceproxy',
781 path => '{vmid}/spiceproxy',
782 method => 'POST',
783 protected => 1,
784 proxyto => 'node',
785 permissions => {
786 check => ['perm', '/vms/{vmid}', [ 'VM.Console' ]],
787 },
788 description => "Returns a SPICE configuration to connect to the CT.",
789 parameters => {
790 additionalProperties => 0,
791 properties => {
792 node => get_standard_option('pve-node'),
793 vmid => get_standard_option('pve-vmid'),
794 proxy => get_standard_option('spice-proxy', { optional => 1 }),
795 },
796 },
797 returns => get_standard_option('remote-viewer-config'),
798 code => sub {
799 my ($param) = @_;
800
801 my $vmid = $param->{vmid};
802 my $node = $param->{node};
803 my $proxy = $param->{proxy};
804
805 my $authpath = "/vms/$vmid";
806 my $permissions = 'VM.Console';
807
808 my $conf = PVE::LXC::Config->load_config($vmid);
809
810 die "CT $vmid not running\n" if !PVE::LXC::check_running($vmid);
811
812 my $concmd = PVE::LXC::get_console_command($vmid, $conf);
813
814 my $shcmd = ['/usr/bin/dtach', '-A',
815 "/var/run/dtach/vzctlconsole$vmid",
816 '-r', 'winch', '-z', @$concmd];
817
818 my $title = "CT $vmid";
819
820 return PVE::API2Tools::run_spiceterm($authpath, $permissions, $vmid, $node, $proxy, $title, $shcmd);
821 }});
822
823
824 __PACKAGE__->register_method({
825 name => 'migrate_vm',
826 path => '{vmid}/migrate',
827 method => 'POST',
828 protected => 1,
829 proxyto => 'node',
830 description => "Migrate the container to another node. Creates a new migration task.",
831 permissions => {
832 check => ['perm', '/vms/{vmid}', [ 'VM.Migrate' ]],
833 },
834 parameters => {
835 additionalProperties => 0,
836 properties => {
837 node => get_standard_option('pve-node'),
838 vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid }),
839 target => get_standard_option('pve-node', {
840 description => "Target node.",
841 completion => \&PVE::Cluster::complete_migration_target,
842 }),
843 online => {
844 type => 'boolean',
845 description => "Use online/live migration.",
846 optional => 1,
847 },
848 force => {
849 type => 'boolean',
850 description => "Force migration despite local bind / device" .
851 " mounts. NOTE: deprecated, use 'shared' property of mount point instead.",
852 optional => 1,
853 },
854 },
855 },
856 returns => {
857 type => 'string',
858 description => "the task ID.",
859 },
860 code => sub {
861 my ($param) = @_;
862
863 my $rpcenv = PVE::RPCEnvironment::get();
864
865 my $authuser = $rpcenv->get_user();
866
867 my $target = extract_param($param, 'target');
868
869 my $localnode = PVE::INotify::nodename();
870 raise_param_exc({ target => "target is local node."}) if $target eq $localnode;
871
872 PVE::Cluster::check_cfs_quorum();
873
874 PVE::Cluster::check_node_exists($target);
875
876 my $targetip = PVE::Cluster::remote_node_ip($target);
877
878 my $vmid = extract_param($param, 'vmid');
879
880 # test if VM exists
881 PVE::LXC::Config->load_config($vmid);
882
883 # try to detect errors early
884 if (PVE::LXC::check_running($vmid)) {
885 die "can't migrate running container without --online\n"
886 if !$param->{online};
887 }
888
889 if (PVE::HA::Config::vm_is_ha_managed($vmid) && $rpcenv->{type} ne 'ha') {
890
891 my $hacmd = sub {
892 my $upid = shift;
893
894 my $service = "ct:$vmid";
895
896 my $cmd = ['ha-manager', 'migrate', $service, $target];
897
898 print "Executing HA migrate for CT $vmid to node $target\n";
899
900 PVE::Tools::run_command($cmd);
901
902 return;
903 };
904
905 return $rpcenv->fork_worker('hamigrate', $vmid, $authuser, $hacmd);
906
907 } else {
908
909 my $realcmd = sub {
910 my $upid = shift;
911
912 PVE::LXC::Migrate->migrate($target, $targetip, $vmid, $param);
913
914 return;
915 };
916
917 return $rpcenv->fork_worker('vzmigrate', $vmid, $authuser, $realcmd);
918 }
919 }});
920
921 __PACKAGE__->register_method({
922 name => 'vm_feature',
923 path => '{vmid}/feature',
924 method => 'GET',
925 proxyto => 'node',
926 protected => 1,
927 description => "Check if feature for virtual machine is available.",
928 permissions => {
929 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
930 },
931 parameters => {
932 additionalProperties => 0,
933 properties => {
934 node => get_standard_option('pve-node'),
935 vmid => get_standard_option('pve-vmid'),
936 feature => {
937 description => "Feature to check.",
938 type => 'string',
939 enum => [ 'snapshot' ],
940 },
941 snapname => get_standard_option('pve-lxc-snapshot-name', {
942 optional => 1,
943 }),
944 },
945 },
946 returns => {
947 type => "object",
948 properties => {
949 hasFeature => { type => 'boolean' },
950 #nodes => {
951 #type => 'array',
952 #items => { type => 'string' },
953 #}
954 },
955 },
956 code => sub {
957 my ($param) = @_;
958
959 my $node = extract_param($param, 'node');
960
961 my $vmid = extract_param($param, 'vmid');
962
963 my $snapname = extract_param($param, 'snapname');
964
965 my $feature = extract_param($param, 'feature');
966
967 my $conf = PVE::LXC::Config->load_config($vmid);
968
969 if($snapname){
970 my $snap = $conf->{snapshots}->{$snapname};
971 die "snapshot '$snapname' does not exist\n" if !defined($snap);
972 $conf = $snap;
973 }
974 my $storage_cfg = PVE::Storage::config();
975 #Maybe include later
976 #my $nodelist = PVE::LXC::shared_nodes($conf, $storage_cfg);
977 my $hasFeature = PVE::LXC::Config->has_feature($feature, $conf, $storage_cfg, $snapname);
978
979 return {
980 hasFeature => $hasFeature,
981 #nodes => [ keys %$nodelist ],
982 };
983 }});
984
985 __PACKAGE__->register_method({
986 name => 'template',
987 path => '{vmid}/template',
988 method => 'POST',
989 protected => 1,
990 proxyto => 'node',
991 description => "Create a Template.",
992 permissions => {
993 description => "You need 'VM.Allocate' permissions on /vms/{vmid}",
994 check => [ 'perm', '/vms/{vmid}', ['VM.Allocate']],
995 },
996 parameters => {
997 additionalProperties => 0,
998 properties => {
999 node => get_standard_option('pve-node'),
1000 vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid_stopped }),
1001 experimental => {
1002 type => 'boolean',
1003 description => "The template feature is experimental, set this " .
1004 "flag if you know what you are doing.",
1005 default => 0,
1006 },
1007 },
1008 },
1009 returns => { type => 'null'},
1010 code => sub {
1011 my ($param) = @_;
1012
1013 my $rpcenv = PVE::RPCEnvironment::get();
1014
1015 my $authuser = $rpcenv->get_user();
1016
1017 my $node = extract_param($param, 'node');
1018
1019 my $vmid = extract_param($param, 'vmid');
1020
1021 my $updatefn = sub {
1022
1023 my $conf = PVE::LXC::Config->load_config($vmid);
1024 PVE::LXC::Config->check_lock($conf);
1025
1026 die "unable to create template, because CT contains snapshots\n"
1027 if $conf->{snapshots} && scalar(keys %{$conf->{snapshots}});
1028
1029 die "you can't convert a template to a template\n"
1030 if PVE::LXC::Config->is_template($conf);
1031
1032 die "you can't convert a CT to template if the CT is running\n"
1033 if PVE::LXC::check_running($vmid);
1034
1035 my $realcmd = sub {
1036 PVE::LXC::template_create($vmid, $conf);
1037 };
1038
1039 $conf->{template} = 1;
1040
1041 PVE::LXC::Config->write_config($vmid, $conf);
1042 # and remove lxc config
1043 PVE::LXC::update_lxc_config($vmid, $conf);
1044
1045 return $rpcenv->fork_worker('vztemplate', $vmid, $authuser, $realcmd);
1046 };
1047
1048 PVE::LXC::Config->lock_config($vmid, $updatefn);
1049
1050 return undef;
1051 }});
1052
1053 __PACKAGE__->register_method({
1054 name => 'clone_vm',
1055 path => '{vmid}/clone',
1056 method => 'POST',
1057 protected => 1,
1058 proxyto => 'node',
1059 description => "Create a container clone/copy",
1060 permissions => {
1061 description => "You need 'VM.Clone' permissions on /vms/{vmid}, " .
1062 "and 'VM.Allocate' permissions " .
1063 "on /vms/{newid} (or on the VM pool /pool/{pool}). You also need " .
1064 "'Datastore.AllocateSpace' on any used storage.",
1065 check =>
1066 [ 'and',
1067 ['perm', '/vms/{vmid}', [ 'VM.Clone' ]],
1068 [ 'or',
1069 [ 'perm', '/vms/{newid}', ['VM.Allocate']],
1070 [ 'perm', '/pool/{pool}', ['VM.Allocate'], require_param => 'pool'],
1071 ],
1072 ]
1073 },
1074 parameters => {
1075 additionalProperties => 0,
1076 properties => {
1077 node => get_standard_option('pve-node'),
1078 vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid }),
1079 newid => get_standard_option('pve-vmid', {
1080 completion => \&PVE::Cluster::complete_next_vmid,
1081 description => 'VMID for the clone.' }),
1082 hostname => {
1083 optional => 1,
1084 type => 'string', format => 'dns-name',
1085 description => "Set a hostname for the new CT.",
1086 },
1087 description => {
1088 optional => 1,
1089 type => 'string',
1090 description => "Description for the new CT.",
1091 },
1092 pool => {
1093 optional => 1,
1094 type => 'string', format => 'pve-poolid',
1095 description => "Add the new CT to the specified pool.",
1096 },
1097 snapname => get_standard_option('pve-lxc-snapshot-name', {
1098 optional => 1,
1099 }),
1100 storage => get_standard_option('pve-storage-id', {
1101 description => "Target storage for full clone.",
1102 requires => 'full',
1103 optional => 1,
1104 }),
1105 full => {
1106 optional => 1,
1107 type => 'boolean',
1108 description => "Create a full copy of all disk. This is always done when " .
1109 "you clone a normal CT. For CT templates, we try to create a linked clone by default.",
1110 default => 0,
1111 },
1112 experimental => {
1113 type => 'boolean',
1114 description => "The clone feature is experimental, set this " .
1115 "flag if you know what you are doing.",
1116 default => 0,
1117 },
1118 # target => get_standard_option('pve-node', {
1119 # description => "Target node. Only allowed if the original VM is on shared storage.",
1120 # optional => 1,
1121 # }),
1122 },
1123 },
1124 returns => {
1125 type => 'string',
1126 },
1127 code => sub {
1128 my ($param) = @_;
1129
1130 my $rpcenv = PVE::RPCEnvironment::get();
1131
1132 my $authuser = $rpcenv->get_user();
1133
1134 my $node = extract_param($param, 'node');
1135
1136 my $vmid = extract_param($param, 'vmid');
1137
1138 my $newid = extract_param($param, 'newid');
1139
1140 my $pool = extract_param($param, 'pool');
1141
1142 if (defined($pool)) {
1143 $rpcenv->check_pool_exist($pool);
1144 }
1145
1146 my $snapname = extract_param($param, 'snapname');
1147
1148 my $storage = extract_param($param, 'storage');
1149
1150 my $localnode = PVE::INotify::nodename();
1151
1152 my $storecfg = PVE::Storage::config();
1153
1154 if ($storage) {
1155 # check if storage is enabled on local node
1156 PVE::Storage::storage_check_enabled($storecfg, $storage);
1157 }
1158
1159 PVE::Cluster::check_cfs_quorum();
1160
1161 my $running = PVE::LXC::check_running($vmid) || 0;
1162
1163 my $clonefn = sub {
1164
1165 # do all tests after lock
1166 # we also try to do all tests before we fork the worker
1167 my $conf = PVE::LXC::Config->load_config($vmid);
1168
1169 PVE::LXC::Config->check_lock($conf);
1170
1171 my $verify_running = PVE::LXC::check_running($vmid) || 0;
1172
1173 die "unexpected state change\n" if $verify_running != $running;
1174
1175 die "snapshot '$snapname' does not exist\n"
1176 if $snapname && !defined( $conf->{snapshots}->{$snapname});
1177
1178 my $oldconf = $snapname ? $conf->{snapshots}->{$snapname} : $conf;
1179
1180 my $conffile = PVE::LXC::Config->config_file($newid);
1181 die "unable to create CT $newid: config file already exists\n"
1182 if -f $conffile;
1183
1184 my $newconf = { lock => 'clone' };
1185 my $mountpoints = {};
1186 my $fullclone = {};
1187 my $vollist = [];
1188
1189 foreach my $opt (keys %$oldconf) {
1190 my $value = $oldconf->{$opt};
1191
1192 # no need to copy unused images, because VMID(owner) changes anyways
1193 next if $opt =~ m/^unused\d+$/;
1194
1195 if (($opt eq 'rootfs') || ($opt =~ m/^mp\d+$/)) {
1196 my $mp = $opt eq 'rootfs' ?
1197 PVE::LXC::Config->parse_ct_rootfs($value) :
1198 PVE::LXC::Config->parse_ct_mountpoint($value);
1199
1200 if ($mp->{type} eq 'volume') {
1201 my $volid = $mp->{volume};
1202 if ($param->{full}) {
1203 die "fixme: full clone not implemented";
1204
1205 die "Full clone feature for '$volid' is not available\n"
1206 if !PVE::Storage::volume_has_feature($storecfg, 'copy', $volid, $snapname, $running);
1207 $fullclone->{$opt} = 1;
1208 } else {
1209 # not full means clone instead of copy
1210 die "Linked clone feature for '$volid' is not available\n"
1211 if !PVE::Storage::volume_has_feature($storecfg, 'clone', $volid, $snapname, $running);
1212 }
1213
1214 $mountpoints->{$opt} = $mp;
1215 push @$vollist, $volid;
1216
1217 } else {
1218 # TODO: allow bind mounts?
1219 die "unable to clone mountpint '$opt' (type $mp->{type})\n";
1220 }
1221
1222 } else {
1223 # copy everything else
1224 $newconf->{$opt} = $value;
1225 }
1226 }
1227
1228 delete $newconf->{template};
1229 if ($param->{hostname}) {
1230 $newconf->{hostname} = $param->{hostname};
1231 }
1232
1233 if ($param->{description}) {
1234 $newconf->{description} = $param->{description};
1235 }
1236
1237 # create empty/temp config - this fails if CT already exists on other node
1238 PVE::Tools::file_set_contents($conffile, "# ctclone temporary file\nlock: clone\n");
1239
1240 my $realcmd = sub {
1241 my $upid = shift;
1242
1243 my $newvollist = [];
1244
1245 eval {
1246 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub { die "interrupted by signal\n"; };
1247
1248 PVE::Storage::activate_volumes($storecfg, $vollist, $snapname);
1249
1250 foreach my $opt (keys %$mountpoints) {
1251 my $mp = $mountpoints->{$opt};
1252 my $volid = $mp->{volume};
1253
1254 if ($fullclone->{$opt}) {
1255 die "fixme: full clone not implemented\n";
1256 } else {
1257 print "create linked clone of mountpoint $opt ($volid)\n";
1258 my $newvolid = PVE::Storage::vdisk_clone($storecfg, $volid, $newid, $snapname);
1259 push @$newvollist, $newvolid;
1260 $mp->{volume} = $newvolid;
1261
1262 $newconf->{$opt} = PVE::LXC::Config->print_ct_mountpoint($mp, $opt eq 'rootfs');
1263 PVE::LXC::Config->write_config($newid, $newconf);
1264 }
1265 }
1266
1267 delete $newconf->{lock};
1268 PVE::LXC::Config->write_config($newid, $newconf);
1269
1270 PVE::AccessControl::add_vm_to_pool($newid, $pool) if $pool;
1271 };
1272 if (my $err = $@) {
1273 unlink $conffile;
1274
1275 sleep 1; # some storage like rbd need to wait before release volume - really?
1276
1277 foreach my $volid (@$newvollist) {
1278 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
1279 warn $@ if $@;
1280 }
1281 die "clone failed: $err";
1282 }
1283
1284 return;
1285 };
1286
1287 PVE::Firewall::clone_vmfw_conf($vmid, $newid);
1288
1289 return $rpcenv->fork_worker('vzclone', $vmid, $authuser, $realcmd);
1290
1291 };
1292
1293 return PVE::LXC::Config->lock_config($vmid, $clonefn);
1294 }});
1295
1296
1297 __PACKAGE__->register_method({
1298 name => 'resize_vm',
1299 path => '{vmid}/resize',
1300 method => 'PUT',
1301 protected => 1,
1302 proxyto => 'node',
1303 description => "Resize a container mountpoint.",
1304 permissions => {
1305 check => ['perm', '/vms/{vmid}', ['VM.Config.Disk'], any => 1],
1306 },
1307 parameters => {
1308 additionalProperties => 0,
1309 properties => {
1310 node => get_standard_option('pve-node'),
1311 vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid }),
1312 disk => {
1313 type => 'string',
1314 description => "The disk you want to resize.",
1315 enum => [PVE::LXC::Config->mountpoint_names()],
1316 },
1317 size => {
1318 type => 'string',
1319 pattern => '\+?\d+(\.\d+)?[KMGT]?',
1320 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.",
1321 },
1322 digest => {
1323 type => 'string',
1324 description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.',
1325 maxLength => 40,
1326 optional => 1,
1327 }
1328 },
1329 },
1330 returns => {
1331 type => 'string',
1332 description => "the task ID.",
1333 },
1334 code => sub {
1335 my ($param) = @_;
1336
1337 my $rpcenv = PVE::RPCEnvironment::get();
1338
1339 my $authuser = $rpcenv->get_user();
1340
1341 my $node = extract_param($param, 'node');
1342
1343 my $vmid = extract_param($param, 'vmid');
1344
1345 my $digest = extract_param($param, 'digest');
1346
1347 my $sizestr = extract_param($param, 'size');
1348 my $ext = ($sizestr =~ s/^\+//);
1349 my $newsize = PVE::JSONSchema::parse_size($sizestr);
1350 die "invalid size string" if !defined($newsize);
1351
1352 die "no options specified\n" if !scalar(keys %$param);
1353
1354 PVE::LXC::check_ct_modify_config_perm($rpcenv, $authuser, $vmid, undef, $param, []);
1355
1356 my $storage_cfg = cfs_read_file("storage.cfg");
1357
1358 my $code = sub {
1359
1360 my $conf = PVE::LXC::Config->load_config($vmid);
1361 PVE::LXC::Config->check_lock($conf);
1362
1363 PVE::Tools::assert_if_modified($digest, $conf->{digest});
1364
1365 my $running = PVE::LXC::check_running($vmid);
1366
1367 my $disk = $param->{disk};
1368 my $mp = $disk eq 'rootfs' ? PVE::LXC::Config->parse_ct_rootfs($conf->{$disk}) :
1369 PVE::LXC::Config->parse_ct_mountpoint($conf->{$disk});
1370
1371 my $volid = $mp->{volume};
1372
1373 my (undef, undef, $owner, undef, undef, undef, $format) =
1374 PVE::Storage::parse_volname($storage_cfg, $volid);
1375
1376 die "can't resize mountpoint owned by another container ($owner)"
1377 if $vmid != $owner;
1378
1379 die "can't resize volume: $disk if snapshot exists\n"
1380 if %{$conf->{snapshots}} && $format eq 'qcow2';
1381
1382 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid);
1383
1384 $rpcenv->check($authuser, "/storage/$storeid", ['Datastore.AllocateSpace']);
1385
1386 PVE::Storage::activate_volumes($storage_cfg, [$volid]);
1387
1388 my $size = PVE::Storage::volume_size_info($storage_cfg, $volid, 5);
1389 $newsize += $size if $ext;
1390 $newsize = int($newsize);
1391
1392 die "unable to shrink disk size\n" if $newsize < $size;
1393
1394 return if $size == $newsize;
1395
1396 PVE::Cluster::log_msg('info', $authuser, "update CT $vmid: resize --disk $disk --size $sizestr");
1397 my $realcmd = sub {
1398 # Note: PVE::Storage::volume_resize doesn't do anything if $running=1, so
1399 # we pass 0 here (parameter only makes sense for qemu)
1400 PVE::Storage::volume_resize($storage_cfg, $volid, $newsize, 0);
1401
1402 $mp->{size} = $newsize;
1403 $conf->{$disk} = PVE::LXC::Config->print_ct_mountpoint($mp, $disk eq 'rootfs');
1404
1405 PVE::LXC::Config->write_config($vmid, $conf);
1406
1407 if ($format eq 'raw') {
1408 my $path = PVE::Storage::path($storage_cfg, $volid, undef);
1409 if ($running) {
1410
1411 $mp->{mp} = '/';
1412 my $use_loopdev = (PVE::LXC::mountpoint_mount_path($mp, $storage_cfg))[1];
1413 $path = PVE::LXC::query_loopdev($path) if $use_loopdev;
1414 die "internal error: CT running but mountpoint not attached to a loop device"
1415 if !$path;
1416 PVE::Tools::run_command(['losetup', '--set-capacity', $path]) if $use_loopdev;
1417
1418 # In order for resize2fs to know that we need online-resizing a mountpoint needs
1419 # to be visible to it in its namespace.
1420 # To not interfere with the rest of the system we unshare the current mount namespace,
1421 # mount over /tmp and then run resize2fs.
1422
1423 # interestingly we don't need to e2fsck on mounted systems...
1424 my $quoted = PVE::Tools::shellquote($path);
1425 my $cmd = "mount --make-rprivate / && mount $quoted /tmp && resize2fs $quoted";
1426 eval {
1427 PVE::Tools::run_command(['unshare', '-m', '--', 'sh', '-c', $cmd]);
1428 };
1429 warn "Failed to update the container's filesystem: $@\n" if $@;
1430 } else {
1431 eval {
1432 PVE::Tools::run_command(['e2fsck', '-f', '-y', $path]);
1433 PVE::Tools::run_command(['resize2fs', $path]);
1434 };
1435 warn "Failed to update the container's filesystem: $@\n" if $@;
1436 }
1437 }
1438 };
1439
1440 return $rpcenv->fork_worker('resize', $vmid, $authuser, $realcmd);
1441 };
1442
1443 return PVE::LXC::Config->lock_config($vmid, $code);;
1444 }});
1445
1446 1;