]> git.proxmox.com Git - pve-container.git/blame - src/PVE/LXC/Config.pm
lxc: resize: fix #2790 return message in case of disk already at size
[pve-container.git] / src / PVE / LXC / Config.pm
CommitLineData
67afe46e
FG
1package PVE::LXC::Config;
2
3use strict;
4use warnings;
5
6use PVE::AbstractConfig;
7use PVE::Cluster qw(cfs_register_file);
8b076579 8use PVE::DataCenterConfig;
1a416433 9use PVE::GuestHelpers;
67afe46e
FG
10use PVE::INotify;
11use PVE::JSONSchema qw(get_standard_option);
12use PVE::Tools;
13
14use base qw(PVE::AbstractConfig);
15
16my $nodename = PVE::INotify::nodename();
17my $lock_handles = {};
18my $lockdir = "/run/lock/lxc";
19mkdir $lockdir;
20mkdir "/etc/pve/nodes/$nodename/lxc";
717f70b7 21my $MAX_MOUNT_POINTS = 256;
67afe46e
FG
22my $MAX_UNUSED_DISKS = $MAX_MOUNT_POINTS;
23
24# BEGIN implemented abstract methods from PVE::AbstractConfig
25
26sub guest_type {
27 return "CT";
28}
29
4518000b
FG
30sub __config_max_unused_disks {
31 my ($class) = @_;
32
33 return $MAX_UNUSED_DISKS;
34}
35
67afe46e
FG
36sub config_file_lock {
37 my ($class, $vmid) = @_;
38
39 return "$lockdir/pve-config-${vmid}.lock";
40}
41
42sub cfs_config_path {
43 my ($class, $vmid, $node) = @_;
44
45 $node = $nodename if !$node;
46 return "nodes/$node/lxc/$vmid.conf";
47}
48
1a8269bc 49sub mountpoint_backup_enabled {
ec7f0f09 50 my ($class, $mp_key, $mountpoint) = @_;
1a8269bc 51
dd4fa308
AL
52 my $enabled;
53 my $reason;
54
55 if ($mp_key eq 'rootfs') {
56 $enabled = 1;
57 $reason = 'rootfs';
58 } elsif ($mountpoint->{type} ne 'volume') {
59 $enabled = 0;
60 $reason = 'not a volume';
61 } elsif ($mountpoint->{backup}) {
62 $enabled = 1;
63 $reason = 'enabled';
64 } else {
65 $enabled = 0;
66 $reason = 'disabled';
67 }
68 return wantarray ? ($enabled, $reason) : $enabled;
1a8269bc
DM
69}
70
4518000b
FG
71sub has_feature {
72 my ($class, $feature, $conf, $storecfg, $snapname, $running, $backup_only) = @_;
73 my $err;
74
4a954457
FE
75 my $opts;
76 if ($feature eq 'copy' || $feature eq 'clone') {
77 $opts = {'valid_target_formats' => ['raw', 'subvol']};
78 }
79
015740e6 80 $class->foreach_volume($conf, sub {
4518000b
FG
81 my ($ms, $mountpoint) = @_;
82
83 return if $err; # skip further test
ec7f0f09 84 return if $backup_only && !$class->mountpoint_backup_enabled($ms, $mountpoint);
4518000b
FG
85
86 $err = 1
87 if !PVE::Storage::volume_has_feature($storecfg, $feature,
88 $mountpoint->{volume},
4a954457 89 $snapname, $running, $opts);
4518000b
FG
90 });
91
92 return $err ? 0 : 1;
93}
94
95sub __snapshot_save_vmstate {
96 my ($class, $vmid, $conf, $snapname, $storecfg) = @_;
97 die "implement me - snapshot_save_vmstate\n";
98}
99
100sub __snapshot_check_running {
101 my ($class, $vmid) = @_;
102 return PVE::LXC::check_running($vmid);
103}
104
105sub __snapshot_check_freeze_needed {
106 my ($class, $vmid, $config, $save_vmstate) = @_;
107
108 my $ret = $class->__snapshot_check_running($vmid);
109 return ($ret, $ret);
110}
111
112sub __snapshot_freeze {
113 my ($class, $vmid, $unfreeze) = @_;
114
115 if ($unfreeze) {
89424a8b 116 eval { PVE::LXC::thaw($vmid); };
4518000b
FG
117 warn $@ if $@;
118 } else {
89424a8b 119 PVE::LXC::freeze($vmid);
4518000b
FG
120 PVE::LXC::sync_container_namespace($vmid);
121 }
122}
123
124sub __snapshot_create_vol_snapshot {
125 my ($class, $vmid, $ms, $mountpoint, $snapname) = @_;
126
127 my $storecfg = PVE::Storage::config();
128
1a8269bc 129 return if $snapname eq 'vzdump' &&
ec7f0f09 130 !$class->mountpoint_backup_enabled($ms, $mountpoint);
1a8269bc 131
4518000b
FG
132 PVE::Storage::volume_snapshot($storecfg, $mountpoint->{volume}, $snapname);
133}
134
135sub __snapshot_delete_remove_drive {
136 my ($class, $snap, $remove_drive) = @_;
137
138 if ($remove_drive eq 'vmstate') {
139 die "implement me - saving vmstate\n";
140 } else {
141 my $value = $snap->{$remove_drive};
e4034859 142 my $mountpoint = $class->parse_volume($remove_drive, $value, 1);
4518000b 143 delete $snap->{$remove_drive};
d103721f
FG
144
145 $class->add_unused_volume($snap, $mountpoint->{volume})
146 if ($mountpoint->{type} eq 'volume');
4518000b
FG
147 }
148}
149
150sub __snapshot_delete_vmstate_file {
151 my ($class, $snap, $force) = @_;
152
153 die "implement me - saving vmstate\n";
154}
155
156sub __snapshot_delete_vol_snapshot {
a8e9a4ea 157 my ($class, $vmid, $ms, $mountpoint, $snapname, $unused) = @_;
4518000b 158
d103721f
FG
159 return if $snapname eq 'vzdump' &&
160 !$class->mountpoint_backup_enabled($ms, $mountpoint);
161
4518000b
FG
162 my $storecfg = PVE::Storage::config();
163 PVE::Storage::volume_snapshot_delete($storecfg, $mountpoint->{volume}, $snapname);
a8e9a4ea 164 push @$unused, $mountpoint->{volume};
4518000b
FG
165}
166
167sub __snapshot_rollback_vol_possible {
168 my ($class, $mountpoint, $snapname) = @_;
169
170 my $storecfg = PVE::Storage::config();
171 PVE::Storage::volume_rollback_is_possible($storecfg, $mountpoint->{volume}, $snapname);
172}
173
174sub __snapshot_rollback_vol_rollback {
175 my ($class, $mountpoint, $snapname) = @_;
176
177 my $storecfg = PVE::Storage::config();
178 PVE::Storage::volume_snapshot_rollback($storecfg, $mountpoint->{volume}, $snapname);
179}
180
181sub __snapshot_rollback_vm_stop {
182 my ($class, $vmid) = @_;
183
b1bad293 184 PVE::LXC::vm_stop($vmid, 1)
4518000b
FG
185 if $class->__snapshot_check_running($vmid);
186}
187
188sub __snapshot_rollback_vm_start {
67779c3c 189 my ($class, $vmid, $vmstate, $data);
4518000b
FG
190
191 die "implement me - save vmstate\n";
192}
193
a8656869
FG
194sub __snapshot_rollback_get_unused {
195 my ($class, $conf, $snap) = @_;
196
197 my $unused = [];
198
5e5d76cf 199 $class->foreach_volume($conf, sub {
a8656869
FG
200 my ($vs, $volume) = @_;
201
202 return if $volume->{type} ne 'volume';
203
204 my $found = 0;
205 my $volid = $volume->{volume};
206
5e5d76cf 207 $class->foreach_volume($snap, sub {
a8656869
FG
208 my ($ms, $mountpoint) = @_;
209
210 return if $found;
211 return if ($mountpoint->{type} ne 'volume');
212
213 $found = 1
214 if ($mountpoint->{volume} && $mountpoint->{volume} eq $volid);
215 });
216
217 push @$unused, $volid if !$found;
218 });
219
220 return $unused;
221}
222
67afe46e
FG
223# END implemented abstract methods from PVE::AbstractConfig
224
1b4cf758
FG
225# BEGIN JSON config code
226
227cfs_register_file('/lxc/', \&parse_pct_config, \&write_pct_config);
228
2bf24eb3 229
e80cb0cd
TL
230my $valid_mount_option_re = qr/(noatime|nodev|nosuid|noexec)/;
231
232sub is_valid_mount_option {
233 my ($option) = @_;
234 return $option =~ $valid_mount_option_re;
2bf24eb3
OB
235}
236
1b4cf758
FG
237my $rootfs_desc = {
238 volume => {
239 type => 'string',
240 default_key => 1,
241 format => 'pve-lxc-mp-string',
242 format_description => 'volume',
243 description => 'Volume, device or directory to mount into the container.',
244 },
1b4cf758
FG
245 size => {
246 type => 'string',
247 format => 'disk-size',
248 format_description => 'DiskSize',
249 description => 'Volume size (read only value).',
250 optional => 1,
251 },
252 acl => {
253 type => 'boolean',
1b4cf758
FG
254 description => 'Explicitly enable or disable ACL support.',
255 optional => 1,
256 },
2bf24eb3
OB
257 mountoptions => {
258 optional => 1,
259 type => 'string',
260 description => 'Extra mount options for rootfs/mps.',
261 format_description => 'opt[;opt...]',
e80cb0cd 262 pattern => qr/$valid_mount_option_re(;$valid_mount_option_re)*/,
2bf24eb3 263 },
1b4cf758
FG
264 ro => {
265 type => 'boolean',
235dbdf3 266 description => 'Read-only mount point',
1b4cf758
FG
267 optional => 1,
268 },
269 quota => {
270 type => 'boolean',
1b4cf758
FG
271 description => 'Enable user quotas inside the container (not supported with zfs subvolumes)',
272 optional => 1,
273 },
76ec0820 274 replicate => {
f8aa3d35
WL
275 type => 'boolean',
276 description => 'Will include this volume to a storage replica job.',
277 optional => 1,
278 default => 1,
279 },
552e168f
FG
280 shared => {
281 type => 'boolean',
282 description => 'Mark this non-volume mount point as available on multiple nodes (see \'nodes\')',
283 verbose_description => "Mark this non-volume mount point as available on all nodes.\n\nWARNING: This option does not share the mount point automatically, it assumes it is shared already!",
284 optional => 1,
285 default => 0,
286 },
1b4cf758
FG
287};
288
289PVE::JSONSchema::register_standard_option('pve-ct-rootfs', {
290 type => 'string', format => $rootfs_desc,
291 description => "Use volume as container root.",
292 optional => 1,
293});
294
5a63f1c5
WB
295my $features_desc = {
296 mount => {
297 optional => 1,
298 type => 'string',
299 description => "Allow mounting file systems of specific types."
300 ." This should be a list of file system types as used with the mount command."
301 ." Note that this can have negative effects on the container's security."
302 ." With access to a loop device, mounting a file can circumvent the mknod"
303 ." permission of the devices cgroup, mounting an NFS file system can"
304 ." block the host's I/O completely and prevent it from rebooting, etc.",
305 format_description => 'fstype;fstype;...',
e188f1bb 306 pattern => qr/[a-zA-Z0-9_; ]+/,
5a63f1c5
WB
307 },
308 nesting => {
309 optional => 1,
310 type => 'boolean',
311 default => 0,
312 description => "Allow nesting."
313 ." Best used with unprivileged containers with additional id mapping."
314 ." Note that this will expose procfs and sysfs contents of the host"
315 ." to the guest.",
316 },
317 keyctl => {
318 optional => 1,
319 type => 'boolean',
320 default => 0,
321 description => "For unprivileged containers only: Allow the use of the keyctl() system call."
322 ." This is required to use docker inside a container."
323 ." By default unprivileged containers will see this system call as non-existent."
324 ." This is mostly a workaround for systemd-networkd, as it will treat it as a fatal"
325 ." error when some keyctl() operations are denied by the kernel due to lacking permissions."
326 ." Essentially, you can choose between running systemd-networkd or docker.",
327 },
96f8d2a2
WB
328 fuse => {
329 optional => 1,
330 type => 'boolean',
331 default => 0,
332 description => "Allow using 'fuse' file systems in a container."
333 ." Note that interactions between fuse and the freezer cgroup can potentially cause I/O deadlocks.",
334 },
2df08734
WB
335 mknod => {
336 optional => 1,
337 type => 'boolean',
338 default => 0,
339 description => "Allow unprivileged containers to use mknod() to add certain device nodes."
340 ." This requires a kernel with seccomp trap to user space support (5.3 or newer)."
341 ." This is experimental.",
342 },
741b7737
TL
343 force_rw_sys => {
344 optional => 1,
345 type => 'boolean',
346 default => 0,
347 description => "Mount /sys in unprivileged containers as `rw` instead of `mixed`."
348 ." This can break networking under newer (>= v245) systemd-network use."
349 },
5a63f1c5
WB
350};
351
1b4cf758
FG
352my $confdesc = {
353 lock => {
354 optional => 1,
355 type => 'string',
356 description => "Lock/unlock the VM.",
7fc1d9eb 357 enum => [qw(backup create destroyed disk fstrim migrate mounted rollback snapshot snapshot-delete)],
1b4cf758
FG
358 },
359 onboot => {
360 optional => 1,
361 type => 'boolean',
362 description => "Specifies whether a VM will be started during system bootup.",
363 default => 0,
364 },
365 startup => get_standard_option('pve-startup-order'),
366 template => {
367 optional => 1,
368 type => 'boolean',
369 description => "Enable/disable Template.",
370 default => 0,
371 },
372 arch => {
373 optional => 1,
374 type => 'string',
e1d54a38 375 enum => ['amd64', 'i386', 'arm64', 'armhf'],
1b4cf758
FG
376 description => "OS architecture type.",
377 default => 'amd64',
378 },
379 ostype => {
380 optional => 1,
381 type => 'string',
ed027b58 382 enum => [qw(debian ubuntu centos fedora opensuse archlinux alpine gentoo unmanaged)],
1b4cf758
FG
383 description => "OS type. This is used to setup configuration inside the container, and corresponds to lxc setup scripts in /usr/share/lxc/config/<ostype>.common.conf. Value 'unmanaged' can be used to skip and OS specific setup.",
384 },
385 console => {
386 optional => 1,
387 type => 'boolean',
388 description => "Attach a console device (/dev/console) to the container.",
389 default => 1,
390 },
391 tty => {
392 optional => 1,
393 type => 'integer',
394 description => "Specify the number of tty available to the container",
395 minimum => 0,
396 maximum => 6,
397 default => 2,
398 },
f2357408
DM
399 cores => {
400 optional => 1,
401 type => 'integer',
402 description => "The number of cores assigned to the container. A container can use all available cores by default.",
403 minimum => 1,
404 maximum => 128,
405 },
1b4cf758
FG
406 cpulimit => {
407 optional => 1,
408 type => 'number',
064529c3 409 description => "Limit of CPU usage.\n\nNOTE: If the computer has 2 CPUs, it has a total of '2' CPU time. Value '0' indicates no CPU limit.",
1b4cf758
FG
410 minimum => 0,
411 maximum => 128,
412 default => 0,
413 },
414 cpuunits => {
415 optional => 1,
416 type => 'integer',
417 description => "CPU weight for a VM. Argument is used in the kernel fair scheduler. The larger the number is, the more CPU time this VM gets. Number is relative to the weights of all the other running VMs.\n\nNOTE: You can disable fair-scheduler configuration by setting this to 0.",
418 minimum => 0,
419 maximum => 500000,
420 default => 1024,
421 },
422 memory => {
423 optional => 1,
424 type => 'integer',
425 description => "Amount of RAM for the VM in MB.",
426 minimum => 16,
427 default => 512,
428 },
429 swap => {
430 optional => 1,
431 type => 'integer',
432 description => "Amount of SWAP for the VM in MB.",
433 minimum => 0,
434 default => 512,
435 },
436 hostname => {
437 optional => 1,
438 description => "Set a host name for the container.",
439 type => 'string', format => 'dns-name',
440 maxLength => 255,
441 },
442 description => {
443 optional => 1,
444 type => 'string',
a069f163 445 description => "Container description. Only used on the configuration web interface.",
1b4cf758
FG
446 },
447 searchdomain => {
448 optional => 1,
449 type => 'string', format => 'dns-name-list',
450 description => "Sets DNS search domains for a container. Create will automatically use the setting from the host if you neither set searchdomain nor nameserver.",
451 },
452 nameserver => {
453 optional => 1,
454 type => 'string', format => 'address-list',
455 description => "Sets DNS server IP address for a container. Create will automatically use the setting from the host if you neither set searchdomain nor nameserver.",
456 },
e6e308ae
OB
457 timezone => {
458 optional => 1,
459 type => 'string', format => 'pve-ct-timezone',
460 description => "Time zone to use in the container. If option isn't set, then nothing will be done. Can be set to 'host' to match the host time zone, or an arbitrary time zone option from /usr/share/zoneinfo/zone.tab",
461 },
1b4cf758
FG
462 rootfs => get_standard_option('pve-ct-rootfs'),
463 parent => {
464 optional => 1,
465 type => 'string', format => 'pve-configid',
466 maxLength => 40,
467 description => "Parent snapshot name. This is used internally, and should not be modified.",
468 },
469 snaptime => {
470 optional => 1,
471 description => "Timestamp for snapshots.",
472 type => 'integer',
473 minimum => 0,
474 },
475 cmode => {
476 optional => 1,
477 description => "Console mode. By default, the console command tries to open a connection to one of the available tty devices. By setting cmode to 'console' it tries to attach to /dev/console instead. If you set cmode to 'shell', it simply invokes a shell inside the container (no login).",
478 type => 'string',
479 enum => ['shell', 'console', 'tty'],
480 default => 'tty',
481 },
482 protection => {
483 optional => 1,
484 type => 'boolean',
485 description => "Sets the protection flag of the container. This will prevent the CT or CT's disk remove/update operation.",
486 default => 0,
487 },
488 unprivileged => {
489 optional => 1,
490 type => 'boolean',
491 description => "Makes the container run as unprivileged user. (Should not be modified manually.)",
492 default => 0,
493 },
5a63f1c5
WB
494 features => {
495 optional => 1,
496 type => 'string',
497 format => $features_desc,
498 description => "Allow containers access to advanced features.",
499 },
1a416433
DC
500 hookscript => {
501 optional => 1,
502 type => 'string',
503 format => 'pve-volume-id',
504 description => 'Script that will be exectued during various steps in the containers lifetime.',
505 },
733e52ec
DC
506 tags => {
507 type => 'string', format => 'pve-tag-list',
508 description => 'Tags of the Container. This is only meta information.',
509 optional => 1,
510 },
1b4cf758
FG
511};
512
513my $valid_lxc_conf_keys = {
108c6cab
WB
514 'lxc.apparmor.profile' => 1,
515 'lxc.apparmor.allow_incomplete' => 1,
d494e03c
WB
516 'lxc.apparmor.allow_nesting' => 1,
517 'lxc.apparmor.raw' => 1,
108c6cab 518 'lxc.selinux.context' => 1,
1b4cf758
FG
519 'lxc.include' => 1,
520 'lxc.arch' => 1,
108c6cab
WB
521 'lxc.uts.name' => 1,
522 'lxc.signal.halt' => 1,
523 'lxc.signal.reboot' => 1,
524 'lxc.signal.stop' => 1,
525 'lxc.init.cmd' => 1,
526 'lxc.pty.max' => 1,
1b4cf758 527 'lxc.console.logfile' => 1,
108c6cab
WB
528 'lxc.console.path' => 1,
529 'lxc.tty.max' => 1,
530 'lxc.devtty.dir' => 1,
1b4cf758
FG
531 'lxc.hook.autodev' => 1,
532 'lxc.autodev' => 1,
533 'lxc.kmsg' => 1,
108c6cab 534 'lxc.mount.fstab' => 1,
1b4cf758
FG
535 'lxc.mount.entry' => 1,
536 'lxc.mount.auto' => 1,
108c6cab 537 'lxc.rootfs.path' => 'lxc.rootfs.path is auto generated from rootfs',
1b4cf758
FG
538 'lxc.rootfs.mount' => 1,
539 'lxc.rootfs.options' => 'lxc.rootfs.options is not supported' .
235dbdf3 540 ', please use mount point options in the "rootfs" key',
1b4cf758 541 # lxc.cgroup.*
108c6cab 542 # lxc.prlimit.*
6eb23d1e 543 # lxc.net.*
1b4cf758
FG
544 'lxc.cap.drop' => 1,
545 'lxc.cap.keep' => 1,
108c6cab 546 'lxc.seccomp.profile' => 1,
832b4a02
WB
547 'lxc.seccomp.notify.proxy' => 1,
548 'lxc.seccomp.notify.cookie' => 1,
108c6cab 549 'lxc.idmap' => 1,
1b4cf758
FG
550 'lxc.hook.pre-start' => 1,
551 'lxc.hook.pre-mount' => 1,
552 'lxc.hook.mount' => 1,
553 'lxc.hook.start' => 1,
554 'lxc.hook.stop' => 1,
555 'lxc.hook.post-stop' => 1,
556 'lxc.hook.clone' => 1,
557 'lxc.hook.destroy' => 1,
f71db91b 558 'lxc.hook.version' => 1,
108c6cab
WB
559 'lxc.log.level' => 1,
560 'lxc.log.file' => 1,
1b4cf758
FG
561 'lxc.start.auto' => 1,
562 'lxc.start.delay' => 1,
563 'lxc.start.order' => 1,
564 'lxc.group' => 1,
565 'lxc.environment' => 1,
d4a135f7
WB
566
567 # All these are namespaced via CLONE_NEWIPC (see namespaces(7)).
568 'lxc.sysctl.fs.mqueue' => 1,
569 'lxc.sysctl.kernel.msgmax' => 1,
570 'lxc.sysctl.kernel.msgmnb' => 1,
571 'lxc.sysctl.kernel.msgmni' => 1,
572 'lxc.sysctl.kernel.sem' => 1,
573 'lxc.sysctl.kernel.shmall' => 1,
574 'lxc.sysctl.kernel.shmmax' => 1,
575 'lxc.sysctl.kernel.shmmni' => 1,
576 'lxc.sysctl.kernel.shm_rmid_forced' => 1,
1b4cf758
FG
577};
578
108c6cab
WB
579my $deprecated_lxc_conf_keys = {
580 # Deprecated (removed with lxc 3.0):
581 'lxc.aa_profile' => 'lxc.apparmor.profile',
582 'lxc.aa_allow_incomplete' => 'lxc.apparmor.allow_incomplete',
583 'lxc.console' => 'lxc.console.path',
584 'lxc.devttydir' => 'lxc.tty.dir',
585 'lxc.haltsignal' => 'lxc.signal.halt',
586 'lxc.rebootsignal' => 'lxc.signal.reboot',
587 'lxc.stopsignal' => 'lxc.signal.stop',
588 'lxc.id_map' => 'lxc.idmap',
589 'lxc.init_cmd' => 'lxc.init.cmd',
590 'lxc.loglevel' => 'lxc.log.level',
591 'lxc.logfile' => 'lxc.log.file',
592 'lxc.mount' => 'lxc.mount.fstab',
593 'lxc.network.type' => 'lxc.net.INDEX.type',
594 'lxc.network.flags' => 'lxc.net.INDEX.flags',
595 'lxc.network.link' => 'lxc.net.INDEX.link',
596 'lxc.network.mtu' => 'lxc.net.INDEX.mtu',
597 'lxc.network.name' => 'lxc.net.INDEX.name',
598 'lxc.network.hwaddr' => 'lxc.net.INDEX.hwaddr',
599 'lxc.network.ipv4' => 'lxc.net.INDEX.ipv4.address',
600 'lxc.network.ipv4.gateway' => 'lxc.net.INDEX.ipv4.gateway',
601 'lxc.network.ipv6' => 'lxc.net.INDEX.ipv6.address',
602 'lxc.network.ipv6.gateway' => 'lxc.net.INDEX.ipv6.gateway',
603 'lxc.network.script.up' => 'lxc.net.INDEX.script.up',
604 'lxc.network.script.down' => 'lxc.net.INDEX.script.down',
605 'lxc.pts' => 'lxc.pty.max',
606 'lxc.se_context' => 'lxc.selinux.context',
607 'lxc.seccomp' => 'lxc.seccomp.profile',
608 'lxc.tty' => 'lxc.tty.max',
609 'lxc.utsname' => 'lxc.uts.name',
610};
611
612sub is_valid_lxc_conf_key {
613 my ($vmid, $key) = @_;
614 if ($key =~ /^lxc\.limit\./) {
615 warn "vm $vmid - $key: lxc.limit.* was renamed to lxc.prlimit.*\n";
616 return 1;
617 }
618 if (defined(my $new_name = $deprecated_lxc_conf_keys->{$key})) {
619 warn "vm $vmid - $key is deprecated and was renamed to $new_name\n";
620 return 1;
621 }
622 my $validity = $valid_lxc_conf_keys->{$key};
623 return $validity if defined($validity);
979ea389 624 return 1 if $key =~ /^lxc\.cgroup2?\./ # allow all cgroup values
108c6cab
WB
625 || $key =~ /^lxc\.prlimit\./ # allow all prlimits
626 || $key =~ /^lxc\.net\./; # allow custom network definitions
627 return 0;
628}
629
5e5915c5 630our $netconf_desc = {
1b4cf758
FG
631 type => {
632 type => 'string',
633 optional => 1,
634 description => "Network interface type.",
635 enum => [qw(veth)],
636 },
637 name => {
638 type => 'string',
a069f163
DM
639 format_description => 'string',
640 description => 'Name of the network device as seen from inside the container. (lxc.network.name)',
1b4cf758
FG
641 pattern => '[-_.\w\d]+',
642 },
643 bridge => {
644 type => 'string',
a069f163 645 format_description => 'bridge',
1b4cf758
FG
646 description => 'Bridge to attach the network device to.',
647 pattern => '[-_.\w\d]+',
648 optional => 1,
649 },
603536e0 650 hwaddr => get_standard_option('mac-addr', {
e6f20294 651 description => 'The interface MAC address. This is dynamically allocated by default, but you can set that statically if needed, for example to always have the same link-local IPv6 address. (lxc.network.hwaddr)',
603536e0 652 }),
1b4cf758
FG
653 mtu => {
654 type => 'integer',
1b4cf758
FG
655 description => 'Maximum transfer unit of the interface. (lxc.network.mtu)',
656 minimum => 64, # minimum ethernet frame is 64 bytes
657 optional => 1,
658 },
659 ip => {
660 type => 'string',
661 format => 'pve-ipv4-config',
718a67d6 662 format_description => '(IPv4/CIDR|dhcp|manual)',
1b4cf758
FG
663 description => 'IPv4 address in CIDR format.',
664 optional => 1,
665 },
666 gw => {
667 type => 'string',
668 format => 'ipv4',
669 format_description => 'GatewayIPv4',
670 description => 'Default gateway for IPv4 traffic.',
671 optional => 1,
672 },
673 ip6 => {
674 type => 'string',
675 format => 'pve-ipv6-config',
6ea7095c 676 format_description => '(IPv6/CIDR|auto|dhcp|manual)',
1b4cf758
FG
677 description => 'IPv6 address in CIDR format.',
678 optional => 1,
679 },
680 gw6 => {
681 type => 'string',
682 format => 'ipv6',
683 format_description => 'GatewayIPv6',
684 description => 'Default gateway for IPv6 traffic.',
685 optional => 1,
686 },
687 firewall => {
688 type => 'boolean',
1b4cf758
FG
689 description => "Controls whether this interface's firewall rules should be used.",
690 optional => 1,
691 },
692 tag => {
693 type => 'integer',
6b202dd5
DM
694 minimum => 1,
695 maximum => 4094,
1b4cf758
FG
696 description => "VLAN tag for this interface.",
697 optional => 1,
698 },
699 trunks => {
700 type => 'string',
701 pattern => qr/\d+(?:;\d+)*/,
702 format_description => 'vlanid[;vlanid...]',
703 description => "VLAN ids to pass through the interface",
704 optional => 1,
705 },
380962c7
WB
706 rate => {
707 type => 'number',
708 format_description => 'mbps',
709 description => "Apply rate limiting to the interface",
710 optional => 1,
711 },
1b4cf758
FG
712};
713PVE::JSONSchema::register_format('pve-lxc-network', $netconf_desc);
714
715my $MAX_LXC_NETWORKS = 10;
716for (my $i = 0; $i < $MAX_LXC_NETWORKS; $i++) {
717 $confdesc->{"net$i"} = {
718 optional => 1,
719 type => 'string', format => $netconf_desc,
720 description => "Specifies network interfaces for the container.",
721 };
722}
723
e6e308ae
OB
724PVE::JSONSchema::register_format('pve-ct-timezone', \&verify_ct_timezone);
725sub verify_ct_timezone {
726 my ($timezone, $noerr) = @_;
727
728 return if $timezone eq 'host'; # using host settings
729
730 PVE::JSONSchema::pve_verify_timezone($timezone);
731}
732
1b4cf758
FG
733PVE::JSONSchema::register_format('pve-lxc-mp-string', \&verify_lxc_mp_string);
734sub verify_lxc_mp_string {
735 my ($mp, $noerr) = @_;
736
737 # do not allow:
738 # /./ or /../
739 # /. or /.. at the end
740 # ../ at the beginning
741
742 if($mp =~ m@/\.\.?/@ ||
743 $mp =~ m@/\.\.?$@ ||
744 $mp =~ m@^\.\./@) {
745 return undef if $noerr;
746 die "$mp contains illegal character sequences\n";
747 }
748 return $mp;
749}
750
751my $mp_desc = {
752 %$rootfs_desc,
84820d40
DM
753 backup => {
754 type => 'boolean',
235dbdf3
FG
755 description => 'Whether to include the mount point in backups.',
756 verbose_description => 'Whether to include the mount point in backups '.
757 '(only used for volume mount points).',
84820d40
DM
758 optional => 1,
759 },
1b4cf758
FG
760 mp => {
761 type => 'string',
762 format => 'pve-lxc-mp-string',
763 format_description => 'Path',
235dbdf3 764 description => 'Path to the mount point as seen from inside the container '.
52b6f941 765 '(must not contain symlinks).',
235dbdf3 766 verbose_description => "Path to the mount point as seen from inside the container.\n\n".
52b6f941 767 "NOTE: Must not contain any symlinks for security reasons."
1b4cf758
FG
768 },
769};
770PVE::JSONSchema::register_format('pve-ct-mountpoint', $mp_desc);
771
9dabb518
FE
772my $unused_desc = {
773 volume => {
774 type => 'string',
775 default_key => 1,
776 format => 'pve-volume-id',
777 format_description => 'volume',
778 description => 'The volume that is not used currently.',
779 }
1b4cf758
FG
780};
781
782for (my $i = 0; $i < $MAX_MOUNT_POINTS; $i++) {
783 $confdesc->{"mp$i"} = {
784 optional => 1,
785 type => 'string', format => $mp_desc,
2928e616 786 description => "Use volume as container mount point.",
1b4cf758
FG
787 optional => 1,
788 };
789}
790
9dabb518
FE
791for (my $i = 0; $i < $MAX_UNUSED_DISKS; $i++) {
792 $confdesc->{"unused$i"} = {
793 optional => 1,
794 type => 'string', format => $unused_desc,
795 description => "Reference to unused volumes. This is used internally, and should not be modified manually.",
796 }
1b4cf758
FG
797}
798
799sub parse_pct_config {
800 my ($filename, $raw) = @_;
801
802 return undef if !defined($raw);
803
804 my $res = {
805 digest => Digest::SHA::sha1_hex($raw),
806 snapshots => {},
7547dc63 807 pending => {},
1b4cf758
FG
808 };
809
810 $filename =~ m|/lxc/(\d+).conf$|
811 || die "got strange filename '$filename'";
812
813 my $vmid = $1;
814
815 my $conf = $res;
816 my $descr = '';
817 my $section = '';
818
819 my @lines = split(/\n/, $raw);
820 foreach my $line (@lines) {
821 next if $line =~ m/^\s*$/;
822
7547dc63
OB
823 if ($line =~ m/^\[pve:pending\]\s*$/i) {
824 $section = 'pending';
825 $conf->{description} = $descr if $descr;
826 $descr = '';
827 $conf = $res->{$section} = {};
828 next;
829 } elsif ($line =~ m/^\[([a-z][a-z0-9_\-]+)\]\s*$/i) {
1b4cf758
FG
830 $section = $1;
831 $conf->{description} = $descr if $descr;
832 $descr = '';
833 $conf = $res->{snapshots}->{$section} = {};
834 next;
835 }
836
837 if ($line =~ m/^\#(.*)\s*$/) {
838 $descr .= PVE::Tools::decode_text($1) . "\n";
839 next;
840 }
841
842 if ($line =~ m/^(lxc\.[a-z0-9_\-\.]+)(:|\s*=)\s*(.*?)\s*$/) {
843 my $key = $1;
844 my $value = $3;
108c6cab
WB
845 my $validity = is_valid_lxc_conf_key($vmid, $key);
846 if ($validity eq 1) {
1b4cf758
FG
847 push @{$conf->{lxc}}, [$key, $value];
848 } elsif (my $errmsg = $validity) {
849 warn "vm $vmid - $key: $errmsg\n";
850 } else {
851 warn "vm $vmid - unable to parse config: $line\n";
852 }
853 } elsif ($line =~ m/^(description):\s*(.*\S)\s*$/) {
854 $descr .= PVE::Tools::decode_text($2);
855 } elsif ($line =~ m/snapstate:\s*(prepare|delete)\s*$/) {
856 $conf->{snapstate} = $1;
7547dc63
OB
857 } elsif ($line =~ m/^delete:\s*(.*\S)\s*$/) {
858 my $value = $1;
859 if ($section eq 'pending') {
860 $conf->{delete} = $value;
861 } else {
862 warn "vm $vmid - property 'delete' is only allowed in [pve:pending]\n";
863 }
1b4cf758
FG
864 } elsif ($line =~ m/^([a-z][a-z_]*\d*):\s*(\S.*)\s*$/) {
865 my $key = $1;
866 my $value = $2;
867 eval { $value = PVE::LXC::Config->check_type($key, $value); };
868 warn "vm $vmid - unable to parse value of '$key' - $@" if $@;
869 $conf->{$key} = $value;
870 } else {
871 warn "vm $vmid - unable to parse config: $line\n";
872 }
873 }
874
875 $conf->{description} = $descr if $descr;
876
877 delete $res->{snapstate}; # just to be sure
878
879 return $res;
880}
881
882sub write_pct_config {
883 my ($filename, $conf) = @_;
884
885 delete $conf->{snapstate}; # just to be sure
886
887 my $volidlist = PVE::LXC::Config->get_vm_volumes($conf);
888 my $used_volids = {};
889 foreach my $vid (@$volidlist) {
890 $used_volids->{$vid} = 1;
891 }
892
893 # remove 'unusedX' settings if the volume is still used
894 foreach my $key (keys %$conf) {
895 my $value = $conf->{$key};
896 if ($key =~ m/^unused/ && $used_volids->{$value}) {
897 delete $conf->{$key};
898 }
899 }
900
901 my $generate_raw_config = sub {
902 my ($conf) = @_;
903
904 my $raw = '';
905
906 # add description as comment to top of file
907 my $descr = $conf->{description} || '';
908 foreach my $cl (split(/\n/, $descr)) {
7547dc63 909 $raw .= '#' . PVE::Tools::encode_text($cl) . "\n";
1b4cf758
FG
910 }
911
912 foreach my $key (sort keys %$conf) {
913 next if $key eq 'digest' || $key eq 'description' ||
914 $key eq 'pending' || $key eq 'snapshots' ||
915 $key eq 'snapname' || $key eq 'lxc';
916 my $value = $conf->{$key};
917 die "detected invalid newline inside property '$key'\n"
918 if $value =~ m/\n/;
919 $raw .= "$key: $value\n";
920 }
921
922 if (my $lxcconf = $conf->{lxc}) {
923 foreach my $entry (@$lxcconf) {
924 my ($k, $v) = @$entry;
925 $raw .= "$k: $v\n";
926 }
927 }
928
929 return $raw;
930 };
931
932 my $raw = &$generate_raw_config($conf);
933
7547dc63
OB
934 if (scalar(keys %{$conf->{pending}})){
935 $raw .= "\n[pve:pending]\n";
936 $raw .= &$generate_raw_config($conf->{pending});
937 }
938
1b4cf758
FG
939 foreach my $snapname (sort keys %{$conf->{snapshots}}) {
940 $raw .= "\n[$snapname]\n";
941 $raw .= &$generate_raw_config($conf->{snapshots}->{$snapname});
942 }
943
944 return $raw;
945}
946
947sub update_pct_config {
6517e001 948 my ($class, $vmid, $conf, $running, $param, $delete, $revert) = @_;
1b4cf758 949
6517e001 950 my $storage_cfg = PVE::Storage::config();
1b4cf758 951
6517e001
OB
952 foreach my $opt (@$revert) {
953 delete $conf->{pending}->{$opt};
954 $class->remove_from_pending_delete($conf, $opt); # also remove from deletion queue
1b4cf758
FG
955 }
956
6517e001
OB
957 # write updates to pending section
958 my $modified = {}; # record modified options
1b4cf758 959
6517e001
OB
960 foreach my $opt (@$delete) {
961 if (!defined($conf->{$opt}) && !defined($conf->{pending}->{$opt})) {
962 warn "cannot delete '$opt' - not set in current configuration!\n";
963 next;
1b4cf758 964 }
6517e001
OB
965 $modified->{$opt} = 1;
966 if ($opt eq 'memory' || $opt eq 'rootfs' || $opt eq 'ostype') {
967 die "unable to delete required option '$opt'\n";
968 } elsif ($opt =~ m/^unused(\d+)$/) {
969 $class->check_protection($conf, "can't remove CT $vmid drive '$opt'");
970 } elsif ($opt =~ m/^mp(\d+)$/) {
971 $class->check_protection($conf, "can't remove CT $vmid drive '$opt'");
972 } elsif ($opt eq 'unprivileged') {
973 die "unable to delete read-only option: '$opt'\n";
1b4cf758 974 }
6517e001 975 $class->add_to_pending_delete($conf, $opt);
1b4cf758
FG
976 }
977
1b3213ae
FG
978 my $check_content_type = sub {
979 my ($mp) = @_;
980 my $sid = PVE::Storage::parse_volume_id($mp->{volume});
6517e001 981 my $storage_config = PVE::Storage::storage_config($storage_cfg, $sid);
1b3213ae
FG
982 die "storage '$sid' does not allow content type 'rootdir' (Container)\n"
983 if !$storage_config->{content}->{rootdir};
984 };
1b4cf758 985
c10951f7 986 foreach my $opt (sort keys %$param) { # add/change
6517e001 987 $modified->{$opt} = 1;
1b4cf758 988 my $value = $param->{$opt};
6517e001
OB
989 if ($opt =~ m/^mp(\d+)$/ || $opt eq 'rootfs') {
990 $class->check_protection($conf, "can't update CT $vmid drive '$opt'");
e4034859 991 my $mp = $class->parse_volume($opt, $value);
3927ae96 992 $check_content_type->($mp) if ($mp->{type} eq 'volume');
6517e001
OB
993 } elsif ($opt eq 'hookscript') {
994 PVE::GuestHelpers::check_hookscript($value);
1b4cf758 995 } elsif ($opt eq 'nameserver') {
6517e001 996 $value = PVE::LXC::verify_nameserver_list($value);
1b4cf758 997 } elsif ($opt eq 'searchdomain') {
6517e001 998 $value = PVE::LXC::verify_searchdomain_list($value);
1b4cf758
FG
999 } elsif ($opt eq 'unprivileged') {
1000 die "unable to modify read-only option: '$opt'\n";
1b4cf758 1001 }
6517e001
OB
1002 $conf->{pending}->{$opt} = $value;
1003 $class->remove_from_pending_delete($conf, $opt);
f8aa3d35
WL
1004 }
1005
6517e001 1006 my $changes = $class->cleanup_pending($conf);
1b4cf758 1007
6517e001
OB
1008 my $errors = {};
1009 if ($running) {
1010 $class->vmconfig_hotplug_pending($vmid, $conf, $storage_cfg, $modified, $errors);
1011 } else {
1012 $class->vmconfig_apply_pending($vmid, $conf, $storage_cfg, $modified, $errors);
1b4cf758
FG
1013 }
1014
6517e001 1015 return $errors;
1b4cf758
FG
1016}
1017
1018sub check_type {
1019 my ($class, $key, $value) = @_;
1020
1021 die "unknown setting '$key'\n" if !$confdesc->{$key};
1022
1023 my $type = $confdesc->{$key}->{type};
1024
1025 if (!defined($value)) {
1026 die "got undefined value\n";
1027 }
1028
1029 if ($value =~ m/[\n\r]/) {
1030 die "property contains a line feed\n";
1031 }
1032
1033 if ($type eq 'boolean') {
1034 return 1 if ($value eq '1') || ($value =~ m/^(on|yes|true)$/i);
1035 return 0 if ($value eq '0') || ($value =~ m/^(off|no|false)$/i);
1036 die "type check ('boolean') failed - got '$value'\n";
1037 } elsif ($type eq 'integer') {
1038 return int($1) if $value =~ m/^(\d+)$/;
1039 die "type check ('integer') failed - got '$value'\n";
1040 } elsif ($type eq 'number') {
1041 return $value if $value =~ m/^(\d+)(\.\d+)?$/;
1042 die "type check ('number') failed - got '$value'\n";
1043 } elsif ($type eq 'string') {
1044 if (my $fmt = $confdesc->{$key}->{format}) {
1045 PVE::JSONSchema::check_format($fmt, $value);
1046 return $value;
1047 }
1048 return $value;
1049 } else {
1050 die "internal error"
1051 }
1052}
1053
1054
1055# add JSON properties for create and set function
1056sub json_config_properties {
1057 my ($class, $prop) = @_;
1058
1059 foreach my $opt (keys %$confdesc) {
1060 next if $opt eq 'parent' || $opt eq 'snaptime';
1061 next if $prop->{$opt};
1062 $prop->{$opt} = $confdesc->{$opt};
1063 }
1064
1065 return $prop;
1066}
1067
c0a17956 1068my $parse_ct_mountpoint_full = sub {
1b4cf758
FG
1069 my ($class, $desc, $data, $noerr) = @_;
1070
1071 $data //= '';
1072
1073 my $res;
1074 eval { $res = PVE::JSONSchema::parse_property_string($desc, $data) };
1075 if ($@) {
1076 return undef if $noerr;
1077 die $@;
1078 }
1079
1080 if (defined(my $size = $res->{size})) {
1081 $size = PVE::JSONSchema::parse_size($size);
1082 if (!defined($size)) {
1083 return undef if $noerr;
1084 die "invalid size: $size\n";
1085 }
1086 $res->{size} = $size;
1087 }
1088
1089 $res->{type} = $class->classify_mountpoint($res->{volume});
1090
1091 return $res;
1092};
1093
1b4cf758
FG
1094sub print_ct_mountpoint {
1095 my ($class, $info, $nomp) = @_;
1096 my $skip = [ 'type' ];
1097 push @$skip, 'mp' if $nomp;
1098 return PVE::JSONSchema::print_property_string($info, $mp_desc, $skip);
1099}
1100
5e5d76cf
FE
1101sub parse_volume {
1102 my ($class, $key, $volume_string, $noerr) = @_;
1103
1104 if ($key eq 'rootfs') {
c0a17956 1105 my $res = $parse_ct_mountpoint_full->($class, $rootfs_desc, $volume_string, $noerr);
e4034859
FE
1106 $res->{mp} = '/' if defined($res);
1107 return $res;
9dabb518 1108 } elsif ($key =~ m/^mp\d+$/) {
c0a17956 1109 return $parse_ct_mountpoint_full->($class, $mp_desc, $volume_string, $noerr);
9dabb518
FE
1110 } elsif ($key =~ m/^unused\d+$/) {
1111 return $parse_ct_mountpoint_full->($class, $unused_desc, $volume_string, $noerr);
5e5d76cf
FE
1112 }
1113
1114 die "parse_volume - unknown type: $key\n";
1115}
1116
1117sub print_volume {
1118 my ($class, $key, $volume) = @_;
1119
1120 return $class->print_ct_mountpoint($volume, $key eq 'rootfs');
1121}
1122
1123sub volid_key {
1124 my ($class) = @_;
1125
1126 return 'volume';
1127}
1128
1b4cf758
FG
1129sub print_lxc_network {
1130 my ($class, $net) = @_;
1131 return PVE::JSONSchema::print_property_string($net, $netconf_desc);
1132}
1133
1134sub parse_lxc_network {
1135 my ($class, $data) = @_;
1136
1137 my $res = {};
1138
1139 return $res if !$data;
1140
1141 $res = PVE::JSONSchema::parse_property_string($netconf_desc, $data);
1142
1143 $res->{type} = 'veth';
2f19133b
WB
1144 if (!$res->{hwaddr}) {
1145 my $dc = PVE::Cluster::cfs_read_file('datacenter.cfg');
1146 $res->{hwaddr} = PVE::Tools::random_ether_addr($dc->{mac_prefix});
1147 }
1b4cf758
FG
1148
1149 return $res;
1150}
1151
5a63f1c5
WB
1152sub parse_features {
1153 my ($class, $data) = @_;
1154 return {} if !$data;
1155 return PVE::JSONSchema::parse_property_string($features_desc, $data);
1156}
1157
1b4cf758
FG
1158sub option_exists {
1159 my ($class, $name) = @_;
1160
1161 return defined($confdesc->{$name});
1162}
1163# END JSON config code
1164
32e15a2b
OB
1165my $LXC_FASTPLUG_OPTIONS= {
1166 'description' => 1,
1167 'onboot' => 1,
1168 'startup' => 1,
1169 'protection' => 1,
1170 'hostname' => 1,
1171 'hookscript' => 1,
1172 'cores' => 1,
1173 'tags' => 1,
db15c375 1174 'lock' => 1,
32e15a2b
OB
1175};
1176
1177sub vmconfig_hotplug_pending {
1178 my ($class, $vmid, $conf, $storecfg, $selection, $errors) = @_;
1179
1180 my $pid = PVE::LXC::find_lxc_pid($vmid);
1181 my $rootdir = "/proc/$pid/root";
1182
1183 my $add_hotplug_error = sub {
1184 my ($opt, $msg) = @_;
1185 $errors->{$opt} = "unable to hotplug $opt: $msg";
1186 };
1187
c10951f7 1188 foreach my $opt (sort keys %{$conf->{pending}}) { # add/change
32e15a2b
OB
1189 next if $selection && !$selection->{$opt};
1190 if ($LXC_FASTPLUG_OPTIONS->{$opt}) {
1191 $conf->{$opt} = delete $conf->{pending}->{$opt};
32e15a2b
OB
1192 }
1193 }
1194
2a4fddef
WB
1195 my $cgroup = PVE::LXC::CGroup->new($vmid);
1196
32e15a2b
OB
1197 # There's no separate swap size to configure, there's memory and "total"
1198 # memory (iow. memory+swap). This means we have to change them together.
1199 my $hotplug_memory_done;
1200 my $hotplug_memory = sub {
1201 my ($wanted_memory, $wanted_swap) = @_;
2a4fddef
WB
1202
1203 $wanted_memory = int($wanted_memory * 1024 * 1024) if defined($wanted_memory);
1204 $wanted_swap = int($wanted_swap * 1024 * 1024) if defined($wanted_swap);
1205 $cgroup->change_memory_limit($wanted_memory, $wanted_swap);
1206
32e15a2b
OB
1207 $hotplug_memory_done = 1;
1208 };
1209
1210 my $pending_delete_hash = $class->parse_pending_delete($conf->{pending}->{delete});
1211 # FIXME: $force deletion is not implemented for CTs
8ec10817 1212 foreach my $opt (sort keys %$pending_delete_hash) {
32e15a2b
OB
1213 next if $selection && !$selection->{$opt};
1214 eval {
1215 if ($LXC_FASTPLUG_OPTIONS->{$opt}) {
1216 # pass
1217 } elsif ($opt =~ m/^unused(\d+)$/) {
1218 PVE::LXC::delete_mountpoint_volume($storecfg, $vmid, $conf->{$opt})
1219 if !$class->is_volume_in_use($conf, $conf->{$opt}, 1, 1);
1220 } elsif ($opt eq 'swap') {
1221 $hotplug_memory->(undef, 0);
1222 } elsif ($opt eq 'cpulimit') {
6e8ce610 1223 $cgroup->change_cpu_quota(-1, 100000);
32e15a2b 1224 } elsif ($opt eq 'cpuunits') {
6e8ce610 1225 $cgroup->change_cpu_shares(undef, $confdesc->{cpuunits}->{default});
32e15a2b
OB
1226 } elsif ($opt =~ m/^net(\d)$/) {
1227 my $netid = $1;
1228 PVE::Network::veth_delete("veth${vmid}i$netid");
1229 } else {
1230 die "skip\n"; # skip non-hotpluggable opts
1231 }
1232 };
1233 if (my $err = $@) {
1234 $add_hotplug_error->($opt, $err) if $err ne "skip\n";
1235 } else {
1236 delete $conf->{$opt};
1237 $class->remove_from_pending_delete($conf, $opt);
1238 }
1239 }
1240
c10951f7 1241 foreach my $opt (sort keys %{$conf->{pending}}) {
32e15a2b
OB
1242 next if $opt eq 'delete'; # just to be sure
1243 next if $selection && !$selection->{$opt};
1244 my $value = $conf->{pending}->{$opt};
1245 eval {
1246 if ($opt eq 'cpulimit') {
6e8ce610
WB
1247 my $quota = 100000 * $value;
1248 $cgroup->change_cpu_quota(int(100000 * $value), 100000);
32e15a2b 1249 } elsif ($opt eq 'cpuunits') {
6e8ce610 1250 $cgroup->change_cpu_shares($value, $confdesc->{cpuunits}->{default});
32e15a2b
OB
1251 } elsif ($opt =~ m/^net(\d+)$/) {
1252 my $netid = $1;
1253 my $net = $class->parse_lxc_network($value);
7eff309b 1254 $value = $class->print_lxc_network($net);
32e15a2b
OB
1255 PVE::LXC::update_net($vmid, $conf, $opt, $net, $netid, $rootdir);
1256 } elsif ($opt eq 'memory' || $opt eq 'swap') {
1257 if (!$hotplug_memory_done) { # don't call twice if both opts are passed
1258 $hotplug_memory->($conf->{pending}->{memory}, $conf->{pending}->{swap});
1259 }
b2de4c04
WB
1260 } elsif ($opt =~ m/^mp(\d+)$/) {
1261 if (!PVE::LXC::Tools::can_use_new_mount_api()) {
1262 die "skip\n";
1263 }
1264
c7ce07e0
OB
1265 if (exists($conf->{$opt})) {
1266 die "skip\n"; # don't try to hotplug over existing mp
1267 }
1268
b2de4c04
WB
1269 $class->apply_pending_mountpoint($vmid, $conf, $opt, $storecfg, 1);
1270 # apply_pending_mountpoint modifies the value if it creates a new disk
1271 $value = $conf->{pending}->{$opt};
32e15a2b
OB
1272 } else {
1273 die "skip\n"; # skip non-hotpluggable
1274 }
1275 };
1276 if (my $err = $@) {
1277 $add_hotplug_error->($opt, $err) if $err ne "skip\n";
1278 } else {
1279 $conf->{$opt} = $value;
1280 delete $conf->{pending}->{$opt};
1281 }
1282 }
32e15a2b
OB
1283}
1284
1285sub vmconfig_apply_pending {
1286 my ($class, $vmid, $conf, $storecfg, $selection, $errors) = @_;
1287
1288 my $add_apply_error = sub {
1289 my ($opt, $msg) = @_;
1290 my $err_msg = "unable to apply pending change $opt : $msg";
1291 $errors->{$opt} = $err_msg;
1292 warn $err_msg;
1293 };
1294
32e15a2b
OB
1295 my $pending_delete_hash = $class->parse_pending_delete($conf->{pending}->{delete});
1296 # FIXME: $force deletion is not implemented for CTs
8ec10817 1297 foreach my $opt (sort keys %$pending_delete_hash) {
32e15a2b 1298 next if $selection && !$selection->{$opt};
32e15a2b
OB
1299 eval {
1300 if ($opt =~ m/^mp(\d+)$/) {
e4034859 1301 my $mp = $class->parse_volume($opt, $conf->{$opt});
32e15a2b
OB
1302 if ($mp->{type} eq 'volume') {
1303 $class->add_unused_volume($conf, $mp->{volume})
1304 if !$class->is_volume_in_use($conf, $conf->{$opt}, 1, 1);
1305 }
1306 } elsif ($opt =~ m/^unused(\d+)$/) {
1307 PVE::LXC::delete_mountpoint_volume($storecfg, $vmid, $conf->{$opt})
1308 if !$class->is_volume_in_use($conf, $conf->{$opt}, 1, 1);
1309 }
1310 };
1311 if (my $err = $@) {
1312 $add_apply_error->($opt, $err);
1313 } else {
1314 delete $conf->{$opt};
1315 $class->remove_from_pending_delete($conf, $opt);
1316 }
1317 }
1318
132c0a90
OB
1319 $class->cleanup_pending($conf);
1320
c10951f7 1321 foreach my $opt (sort keys %{$conf->{pending}}) { # add/change
32e15a2b
OB
1322 next if $opt eq 'delete'; # just to be sure
1323 next if $selection && !$selection->{$opt};
1324 eval {
1325 if ($opt =~ m/^mp(\d+)$/) {
869081a2 1326 $class->apply_pending_mountpoint($vmid, $conf, $opt, $storecfg, 0);
7eff309b
OB
1327 } elsif ($opt =~ m/^net(\d+)$/) {
1328 my $netid = $1;
1329 my $net = $class->parse_lxc_network($conf->{pending}->{$opt});
1330 $conf->{pending}->{$opt} = $class->print_lxc_network($net);
32e15a2b
OB
1331 }
1332 };
1333 if (my $err = $@) {
1334 $add_apply_error->($opt, $err);
1335 } else {
32e15a2b
OB
1336 $conf->{$opt} = delete $conf->{pending}->{$opt};
1337 }
1338 }
32e15a2b
OB
1339}
1340
869081a2
WB
1341my $rescan_volume = sub {
1342 my ($storecfg, $mp) = @_;
1343 eval {
0c69dcfc 1344 $mp->{size} = PVE::Storage::volume_size_info($storecfg, $mp->{volume}, 5);
869081a2
WB
1345 };
1346 warn "Could not rescan volume size - $@\n" if $@;
1347};
1348
1349sub apply_pending_mountpoint {
1350 my ($class, $vmid, $conf, $opt, $storecfg, $running) = @_;
1351
e4034859 1352 my $mp = $class->parse_volume($opt, $conf->{pending}->{$opt});
869081a2
WB
1353 my $old = $conf->{$opt};
1354 if ($mp->{type} eq 'volume') {
1355 if ($mp->{volume} =~ $PVE::LXC::NEW_DISK_RE) {
b2de4c04 1356 my $original_value = $conf->{pending}->{$opt};
869081a2
WB
1357 my $vollist = PVE::LXC::create_disks(
1358 $storecfg,
1359 $vmid,
b2de4c04 1360 { $opt => $original_value },
869081a2
WB
1361 $conf,
1362 1,
1363 );
b2de4c04
WB
1364 if ($running) {
1365 # Re-parse mount point:
e4034859 1366 my $mp = $class->parse_volume($opt, $conf->{pending}->{$opt});
b2de4c04
WB
1367 eval {
1368 PVE::LXC::mountpoint_hotplug($vmid, $conf, $opt, $mp, $storecfg);
1369 };
1370 my $err = $@;
1371 if ($err) {
1372 PVE::LXC::destroy_disks($storecfg, $vollist);
1373 # The pending-changes code collects errors but keeps on looping through further
1374 # pending changes, so unroll the change in $conf as well if destroy_disks()
1375 # didn't die().
1376 $conf->{pending}->{$opt} = $original_value;
1377 die $err;
1378 }
1379 }
869081a2 1380 } else {
b2de4c04 1381 die "skip\n" if $running && defined($old); # TODO: "changing" mount points?
869081a2 1382 $rescan_volume->($storecfg, $mp);
b2de4c04
WB
1383 if ($running) {
1384 PVE::LXC::mountpoint_hotplug($vmid, $conf, $opt, $mp, $storecfg);
1385 }
869081a2
WB
1386 $conf->{pending}->{$opt} = $class->print_ct_mountpoint($mp);
1387 }
1388 }
1389
1390 if (defined($old)) {
e4034859 1391 my $mp = $class->parse_volume($opt, $old);
869081a2
WB
1392 if ($mp->{type} eq 'volume') {
1393 $class->add_unused_volume($conf, $mp->{volume})
1394 if !$class->is_volume_in_use($conf, $conf->{$opt}, 1, 1);
1395 }
1396 }
1397}
1398
d250604f
FG
1399sub classify_mountpoint {
1400 my ($class, $vol) = @_;
1401 if ($vol =~ m!^/!) {
1402 return 'device' if $vol =~ m!^/dev/!;
1403 return 'bind';
1404 }
1405 return 'volume';
1406}
1407
7b4237c5 1408my $__is_volume_in_use = sub {
72e6bc20 1409 my ($class, $config, $volid) = @_;
d250604f
FG
1410 my $used = 0;
1411
015740e6 1412 $class->foreach_volume($config, sub {
d250604f
FG
1413 my ($ms, $mountpoint) = @_;
1414 return if $used;
1415 $used = $mountpoint->{type} eq 'volume' && $mountpoint->{volume} eq $volid;
1416 });
1417
72e6bc20
WB
1418 return $used;
1419};
1420
1421sub is_volume_in_use_by_snapshots {
1422 my ($class, $config, $volid) = @_;
1423
1424 if (my $snapshots = $config->{snapshots}) {
d250604f 1425 foreach my $snap (keys %$snapshots) {
7b4237c5 1426 return 1 if $__is_volume_in_use->($class, $snapshots->{$snap}, $volid);
d250604f
FG
1427 }
1428 }
1429
72e6bc20 1430 return 0;
7b4237c5 1431}
72e6bc20
WB
1432
1433sub is_volume_in_use {
d063af00 1434 my ($class, $config, $volid, $include_snapshots, $include_pending) = @_;
7b4237c5 1435 return 1 if $__is_volume_in_use->($class, $config, $volid);
72e6bc20 1436 return 1 if $include_snapshots && $class->is_volume_in_use_by_snapshots($config, $volid);
d063af00 1437 return 1 if $include_pending && $__is_volume_in_use->($class, $config->{pending}, $volid);
72e6bc20 1438 return 0;
d250604f
FG
1439}
1440
1441sub has_dev_console {
1442 my ($class, $conf) = @_;
1443
1444 return !(defined($conf->{console}) && !$conf->{console});
1445}
1446
be7942f0
DM
1447sub has_lxc_entry {
1448 my ($class, $conf, $keyname) = @_;
1449
1450 if (my $lxcconf = $conf->{lxc}) {
1451 foreach my $entry (@$lxcconf) {
1452 my ($key, undef) = @$entry;
1453 return 1 if $key eq $keyname;
1454 }
1455 }
1456
1457 return 0;
1458}
1459
1b4cf758
FG
1460sub get_tty_count {
1461 my ($class, $conf) = @_;
1462
1463 return $conf->{tty} // $confdesc->{tty}->{default};
1464}
1465
1466sub get_cmode {
1467 my ($class, $conf) = @_;
1468
1469 return $conf->{cmode} // $confdesc->{cmode}->{default};
1470}
1471
5e5d76cf 1472sub valid_volume_keys {
d250604f
FG
1473 my ($class, $reverse) = @_;
1474
1475 my @names = ('rootfs');
1476
1477 for (my $i = 0; $i < $MAX_MOUNT_POINTS; $i++) {
1478 push @names, "mp$i";
1479 }
1480
1481 return $reverse ? reverse @names : @names;
1482}
1483
d250604f
FG
1484sub get_vm_volumes {
1485 my ($class, $conf, $excludes) = @_;
1486
1487 my $vollist = [];
1488
015740e6 1489 $class->foreach_volume($conf, sub {
d250604f
FG
1490 my ($ms, $mountpoint) = @_;
1491
1492 return if $excludes && $ms eq $excludes;
1493
1494 my $volid = $mountpoint->{volume};
1495 return if !$volid || $mountpoint->{type} ne 'volume';
1496
1497 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1498 return if !$sid;
1499
1500 push @$vollist, $volid;
1501 });
1502
1503 return $vollist;
1504}
1505
f78c87a8 1506sub get_replicatable_volumes {
70996986 1507 my ($class, $storecfg, $vmid, $conf, $cleanup, $noerr) = @_;
f78c87a8
DM
1508
1509 my $volhash = {};
1510
1511 my $test_volid = sub {
1512 my ($volid, $mountpoint) = @_;
1513
1514 return if !$volid;
1515
5cf90b0c 1516 my $mptype = $mountpoint->{type};
896cd762 1517 my $replicate = $mountpoint->{replicate} // 1;
d2a046b7
DC
1518
1519 if ($mptype ne 'volume') {
1520 # skip bindmounts if replicate = 0 even for cleanup,
1521 # since bind mounts could not have been replicated ever
1522 return if !$replicate;
1523 die "unable to replicate mountpoint type '$mptype'\n";
1524 }
5cf90b0c
DM
1525
1526 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid, $noerr);
1527 return if !$storeid;
1528
af21e699 1529 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
5cf90b0c
DM
1530 return if $scfg->{shared};
1531
1532 my ($path, $owner, $vtype) = PVE::Storage::path($storecfg, $volid);
1533 return if !$owner || ($owner != $vmid);
1534
1535 die "unable to replicate volume '$volid', type '$vtype'\n" if $vtype ne 'images';
1536
d2a046b7 1537 return if !$cleanup && !$replicate;
f78c87a8
DM
1538
1539 if (!PVE::Storage::volume_has_feature($storecfg, 'replicate', $volid)) {
e65dce6b 1540 return if $cleanup || $noerr;
f78c87a8
DM
1541 die "missing replicate feature on volume '$volid'\n";
1542 }
1543
1544 $volhash->{$volid} = 1;
1545 };
1546
015740e6 1547 $class->foreach_volume($conf, sub {
f78c87a8
DM
1548 my ($ms, $mountpoint) = @_;
1549 $test_volid->($mountpoint->{volume}, $mountpoint);
1550 });
1551
1552 foreach my $snapname (keys %{$conf->{snapshots}}) {
1553 my $snap = $conf->{snapshots}->{$snapname};
015740e6 1554 $class->foreach_volume($snap, sub {
f78c87a8
DM
1555 my ($ms, $mountpoint) = @_;
1556 $test_volid->($mountpoint->{volume}, $mountpoint);
1557 });
1558 }
1559
b03664ae
DM
1560 # add 'unusedX' volumes to volhash
1561 foreach my $key (keys %$conf) {
1562 if ($key =~ m/^unused/) {
1563 $test_volid->($conf->{$key}, { type => 'volume', replicate => 1 });
1564 }
1565 }
1566
f78c87a8
DM
1567 return $volhash;
1568}
1569
efd1706d
AL
1570sub get_backup_volumes {
1571 my ($class, $conf) = @_;
1572
1573 my $return_volumes = [];
1574
1575 my $test_mountpoint = sub {
1576 my ($key, $volume) = @_;
1577
1578 my ($included, $reason) = $class->mountpoint_backup_enabled($key, $volume);
1579
efd1706d
AL
1580 push @$return_volumes, {
1581 key => $key,
1582 included => $included,
1583 reason => $reason,
1584 volume_config => $volume,
1585 };
1586 };
1587
1588 PVE::LXC::Config->foreach_volume($conf, $test_mountpoint);
1589
1590 return $return_volumes;
1591}
1592
f78c87a8 15931;