]> git.proxmox.com Git - pve-container.git/blame_incremental - src/PVE/LXC/Config.pm
vzdump: add reason for mountpoint backup inclusion
[pve-container.git] / src / PVE / LXC / Config.pm
... / ...
CommitLineData
1package PVE::LXC::Config;
2
3use strict;
4use warnings;
5
6use PVE::AbstractConfig;
7use PVE::Cluster qw(cfs_register_file);
8use PVE::DataCenterConfig;
9use PVE::GuestHelpers;
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";
21my $MAX_MOUNT_POINTS = 256;
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
30sub __config_max_unused_disks {
31 my ($class) = @_;
32
33 return $MAX_UNUSED_DISKS;
34}
35
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
49sub mountpoint_backup_enabled {
50 my ($class, $mp_key, $mountpoint) = @_;
51
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;
69}
70
71sub has_feature {
72 my ($class, $feature, $conf, $storecfg, $snapname, $running, $backup_only) = @_;
73 my $err;
74
75 my $opts;
76 if ($feature eq 'copy' || $feature eq 'clone') {
77 $opts = {'valid_target_formats' => ['raw', 'subvol']};
78 }
79
80 $class->foreach_volume($conf, sub {
81 my ($ms, $mountpoint) = @_;
82
83 return if $err; # skip further test
84 return if $backup_only && !$class->mountpoint_backup_enabled($ms, $mountpoint);
85
86 $err = 1
87 if !PVE::Storage::volume_has_feature($storecfg, $feature,
88 $mountpoint->{volume},
89 $snapname, $running, $opts);
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) {
116 eval { PVE::LXC::thaw($vmid); };
117 warn $@ if $@;
118 } else {
119 PVE::LXC::freeze($vmid);
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
129 return if $snapname eq 'vzdump' &&
130 !$class->mountpoint_backup_enabled($ms, $mountpoint);
131
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};
142 my $mountpoint = $class->parse_volume($remove_drive, $value, 1);
143 delete $snap->{$remove_drive};
144
145 $class->add_unused_volume($snap, $mountpoint->{volume})
146 if ($mountpoint->{type} eq 'volume');
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 {
157 my ($class, $vmid, $ms, $mountpoint, $snapname, $unused) = @_;
158
159 return if $snapname eq 'vzdump' &&
160 !$class->mountpoint_backup_enabled($ms, $mountpoint);
161
162 my $storecfg = PVE::Storage::config();
163 PVE::Storage::volume_snapshot_delete($storecfg, $mountpoint->{volume}, $snapname);
164 push @$unused, $mountpoint->{volume};
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
184 PVE::LXC::vm_stop($vmid, 1)
185 if $class->__snapshot_check_running($vmid);
186}
187
188sub __snapshot_rollback_vm_start {
189 my ($class, $vmid, $vmstate, $data);
190
191 die "implement me - save vmstate\n";
192}
193
194sub __snapshot_rollback_get_unused {
195 my ($class, $conf, $snap) = @_;
196
197 my $unused = [];
198
199 $class->foreach_volume($conf, sub {
200 my ($vs, $volume) = @_;
201
202 return if $volume->{type} ne 'volume';
203
204 my $found = 0;
205 my $volid = $volume->{volume};
206
207 $class->foreach_volume($snap, sub {
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
223# END implemented abstract methods from PVE::AbstractConfig
224
225# BEGIN JSON config code
226
227cfs_register_file('/lxc/', \&parse_pct_config, \&write_pct_config);
228
229
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;
235}
236
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 },
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',
254 description => 'Explicitly enable or disable ACL support.',
255 optional => 1,
256 },
257 mountoptions => {
258 optional => 1,
259 type => 'string',
260 description => 'Extra mount options for rootfs/mps.',
261 format_description => 'opt[;opt...]',
262 pattern => qr/$valid_mount_option_re(;$valid_mount_option_re)*/,
263 },
264 ro => {
265 type => 'boolean',
266 description => 'Read-only mount point',
267 optional => 1,
268 },
269 quota => {
270 type => 'boolean',
271 description => 'Enable user quotas inside the container (not supported with zfs subvolumes)',
272 optional => 1,
273 },
274 replicate => {
275 type => 'boolean',
276 description => 'Will include this volume to a storage replica job.',
277 optional => 1,
278 default => 1,
279 },
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 },
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
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;...',
306 pattern => qr/[a-zA-Z0-9_; ]+/,
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 },
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 },
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 },
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 },
350};
351
352my $confdesc = {
353 lock => {
354 optional => 1,
355 type => 'string',
356 description => "Lock/unlock the VM.",
357 enum => [qw(backup create destroyed disk fstrim migrate mounted rollback snapshot snapshot-delete)],
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',
375 enum => ['amd64', 'i386', 'arm64', 'armhf'],
376 description => "OS architecture type.",
377 default => 'amd64',
378 },
379 ostype => {
380 optional => 1,
381 type => 'string',
382 enum => [qw(debian ubuntu centos fedora opensuse archlinux alpine gentoo unmanaged)],
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 },
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 },
406 cpulimit => {
407 optional => 1,
408 type => 'number',
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.",
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',
445 description => "Container description. Only used on the configuration web interface.",
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 },
457 rootfs => get_standard_option('pve-ct-rootfs'),
458 parent => {
459 optional => 1,
460 type => 'string', format => 'pve-configid',
461 maxLength => 40,
462 description => "Parent snapshot name. This is used internally, and should not be modified.",
463 },
464 snaptime => {
465 optional => 1,
466 description => "Timestamp for snapshots.",
467 type => 'integer',
468 minimum => 0,
469 },
470 cmode => {
471 optional => 1,
472 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).",
473 type => 'string',
474 enum => ['shell', 'console', 'tty'],
475 default => 'tty',
476 },
477 protection => {
478 optional => 1,
479 type => 'boolean',
480 description => "Sets the protection flag of the container. This will prevent the CT or CT's disk remove/update operation.",
481 default => 0,
482 },
483 unprivileged => {
484 optional => 1,
485 type => 'boolean',
486 description => "Makes the container run as unprivileged user. (Should not be modified manually.)",
487 default => 0,
488 },
489 features => {
490 optional => 1,
491 type => 'string',
492 format => $features_desc,
493 description => "Allow containers access to advanced features.",
494 },
495 hookscript => {
496 optional => 1,
497 type => 'string',
498 format => 'pve-volume-id',
499 description => 'Script that will be exectued during various steps in the containers lifetime.',
500 },
501 tags => {
502 type => 'string', format => 'pve-tag-list',
503 description => 'Tags of the Container. This is only meta information.',
504 optional => 1,
505 },
506};
507
508my $valid_lxc_conf_keys = {
509 'lxc.apparmor.profile' => 1,
510 'lxc.apparmor.allow_incomplete' => 1,
511 'lxc.apparmor.allow_nesting' => 1,
512 'lxc.apparmor.raw' => 1,
513 'lxc.selinux.context' => 1,
514 'lxc.include' => 1,
515 'lxc.arch' => 1,
516 'lxc.uts.name' => 1,
517 'lxc.signal.halt' => 1,
518 'lxc.signal.reboot' => 1,
519 'lxc.signal.stop' => 1,
520 'lxc.init.cmd' => 1,
521 'lxc.pty.max' => 1,
522 'lxc.console.logfile' => 1,
523 'lxc.console.path' => 1,
524 'lxc.tty.max' => 1,
525 'lxc.devtty.dir' => 1,
526 'lxc.hook.autodev' => 1,
527 'lxc.autodev' => 1,
528 'lxc.kmsg' => 1,
529 'lxc.mount.fstab' => 1,
530 'lxc.mount.entry' => 1,
531 'lxc.mount.auto' => 1,
532 'lxc.rootfs.path' => 'lxc.rootfs.path is auto generated from rootfs',
533 'lxc.rootfs.mount' => 1,
534 'lxc.rootfs.options' => 'lxc.rootfs.options is not supported' .
535 ', please use mount point options in the "rootfs" key',
536 # lxc.cgroup.*
537 # lxc.prlimit.*
538 # lxc.net.*
539 'lxc.cap.drop' => 1,
540 'lxc.cap.keep' => 1,
541 'lxc.seccomp.profile' => 1,
542 'lxc.seccomp.notify.proxy' => 1,
543 'lxc.seccomp.notify.cookie' => 1,
544 'lxc.idmap' => 1,
545 'lxc.hook.pre-start' => 1,
546 'lxc.hook.pre-mount' => 1,
547 'lxc.hook.mount' => 1,
548 'lxc.hook.start' => 1,
549 'lxc.hook.stop' => 1,
550 'lxc.hook.post-stop' => 1,
551 'lxc.hook.clone' => 1,
552 'lxc.hook.destroy' => 1,
553 'lxc.hook.version' => 1,
554 'lxc.log.level' => 1,
555 'lxc.log.file' => 1,
556 'lxc.start.auto' => 1,
557 'lxc.start.delay' => 1,
558 'lxc.start.order' => 1,
559 'lxc.group' => 1,
560 'lxc.environment' => 1,
561
562 # All these are namespaced via CLONE_NEWIPC (see namespaces(7)).
563 'lxc.sysctl.fs.mqueue' => 1,
564 'lxc.sysctl.kernel.msgmax' => 1,
565 'lxc.sysctl.kernel.msgmnb' => 1,
566 'lxc.sysctl.kernel.msgmni' => 1,
567 'lxc.sysctl.kernel.sem' => 1,
568 'lxc.sysctl.kernel.shmall' => 1,
569 'lxc.sysctl.kernel.shmmax' => 1,
570 'lxc.sysctl.kernel.shmmni' => 1,
571 'lxc.sysctl.kernel.shm_rmid_forced' => 1,
572};
573
574my $deprecated_lxc_conf_keys = {
575 # Deprecated (removed with lxc 3.0):
576 'lxc.aa_profile' => 'lxc.apparmor.profile',
577 'lxc.aa_allow_incomplete' => 'lxc.apparmor.allow_incomplete',
578 'lxc.console' => 'lxc.console.path',
579 'lxc.devttydir' => 'lxc.tty.dir',
580 'lxc.haltsignal' => 'lxc.signal.halt',
581 'lxc.rebootsignal' => 'lxc.signal.reboot',
582 'lxc.stopsignal' => 'lxc.signal.stop',
583 'lxc.id_map' => 'lxc.idmap',
584 'lxc.init_cmd' => 'lxc.init.cmd',
585 'lxc.loglevel' => 'lxc.log.level',
586 'lxc.logfile' => 'lxc.log.file',
587 'lxc.mount' => 'lxc.mount.fstab',
588 'lxc.network.type' => 'lxc.net.INDEX.type',
589 'lxc.network.flags' => 'lxc.net.INDEX.flags',
590 'lxc.network.link' => 'lxc.net.INDEX.link',
591 'lxc.network.mtu' => 'lxc.net.INDEX.mtu',
592 'lxc.network.name' => 'lxc.net.INDEX.name',
593 'lxc.network.hwaddr' => 'lxc.net.INDEX.hwaddr',
594 'lxc.network.ipv4' => 'lxc.net.INDEX.ipv4.address',
595 'lxc.network.ipv4.gateway' => 'lxc.net.INDEX.ipv4.gateway',
596 'lxc.network.ipv6' => 'lxc.net.INDEX.ipv6.address',
597 'lxc.network.ipv6.gateway' => 'lxc.net.INDEX.ipv6.gateway',
598 'lxc.network.script.up' => 'lxc.net.INDEX.script.up',
599 'lxc.network.script.down' => 'lxc.net.INDEX.script.down',
600 'lxc.pts' => 'lxc.pty.max',
601 'lxc.se_context' => 'lxc.selinux.context',
602 'lxc.seccomp' => 'lxc.seccomp.profile',
603 'lxc.tty' => 'lxc.tty.max',
604 'lxc.utsname' => 'lxc.uts.name',
605};
606
607sub is_valid_lxc_conf_key {
608 my ($vmid, $key) = @_;
609 if ($key =~ /^lxc\.limit\./) {
610 warn "vm $vmid - $key: lxc.limit.* was renamed to lxc.prlimit.*\n";
611 return 1;
612 }
613 if (defined(my $new_name = $deprecated_lxc_conf_keys->{$key})) {
614 warn "vm $vmid - $key is deprecated and was renamed to $new_name\n";
615 return 1;
616 }
617 my $validity = $valid_lxc_conf_keys->{$key};
618 return $validity if defined($validity);
619 return 1 if $key =~ /^lxc\.cgroup2?\./ # allow all cgroup values
620 || $key =~ /^lxc\.prlimit\./ # allow all prlimits
621 || $key =~ /^lxc\.net\./; # allow custom network definitions
622 return 0;
623}
624
625our $netconf_desc = {
626 type => {
627 type => 'string',
628 optional => 1,
629 description => "Network interface type.",
630 enum => [qw(veth)],
631 },
632 name => {
633 type => 'string',
634 format_description => 'string',
635 description => 'Name of the network device as seen from inside the container. (lxc.network.name)',
636 pattern => '[-_.\w\d]+',
637 },
638 bridge => {
639 type => 'string',
640 format_description => 'bridge',
641 description => 'Bridge to attach the network device to.',
642 pattern => '[-_.\w\d]+',
643 optional => 1,
644 },
645 hwaddr => get_standard_option('mac-addr', {
646 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)',
647 }),
648 mtu => {
649 type => 'integer',
650 description => 'Maximum transfer unit of the interface. (lxc.network.mtu)',
651 minimum => 64, # minimum ethernet frame is 64 bytes
652 optional => 1,
653 },
654 ip => {
655 type => 'string',
656 format => 'pve-ipv4-config',
657 format_description => '(IPv4/CIDR|dhcp|manual)',
658 description => 'IPv4 address in CIDR format.',
659 optional => 1,
660 },
661 gw => {
662 type => 'string',
663 format => 'ipv4',
664 format_description => 'GatewayIPv4',
665 description => 'Default gateway for IPv4 traffic.',
666 optional => 1,
667 },
668 ip6 => {
669 type => 'string',
670 format => 'pve-ipv6-config',
671 format_description => '(IPv6/CIDR|auto|dhcp|manual)',
672 description => 'IPv6 address in CIDR format.',
673 optional => 1,
674 },
675 gw6 => {
676 type => 'string',
677 format => 'ipv6',
678 format_description => 'GatewayIPv6',
679 description => 'Default gateway for IPv6 traffic.',
680 optional => 1,
681 },
682 firewall => {
683 type => 'boolean',
684 description => "Controls whether this interface's firewall rules should be used.",
685 optional => 1,
686 },
687 tag => {
688 type => 'integer',
689 minimum => 1,
690 maximum => 4094,
691 description => "VLAN tag for this interface.",
692 optional => 1,
693 },
694 trunks => {
695 type => 'string',
696 pattern => qr/\d+(?:;\d+)*/,
697 format_description => 'vlanid[;vlanid...]',
698 description => "VLAN ids to pass through the interface",
699 optional => 1,
700 },
701 rate => {
702 type => 'number',
703 format_description => 'mbps',
704 description => "Apply rate limiting to the interface",
705 optional => 1,
706 },
707};
708PVE::JSONSchema::register_format('pve-lxc-network', $netconf_desc);
709
710my $MAX_LXC_NETWORKS = 10;
711for (my $i = 0; $i < $MAX_LXC_NETWORKS; $i++) {
712 $confdesc->{"net$i"} = {
713 optional => 1,
714 type => 'string', format => $netconf_desc,
715 description => "Specifies network interfaces for the container.",
716 };
717}
718
719PVE::JSONSchema::register_format('pve-lxc-mp-string', \&verify_lxc_mp_string);
720sub verify_lxc_mp_string {
721 my ($mp, $noerr) = @_;
722
723 # do not allow:
724 # /./ or /../
725 # /. or /.. at the end
726 # ../ at the beginning
727
728 if($mp =~ m@/\.\.?/@ ||
729 $mp =~ m@/\.\.?$@ ||
730 $mp =~ m@^\.\./@) {
731 return undef if $noerr;
732 die "$mp contains illegal character sequences\n";
733 }
734 return $mp;
735}
736
737my $mp_desc = {
738 %$rootfs_desc,
739 backup => {
740 type => 'boolean',
741 description => 'Whether to include the mount point in backups.',
742 verbose_description => 'Whether to include the mount point in backups '.
743 '(only used for volume mount points).',
744 optional => 1,
745 },
746 mp => {
747 type => 'string',
748 format => 'pve-lxc-mp-string',
749 format_description => 'Path',
750 description => 'Path to the mount point as seen from inside the container '.
751 '(must not contain symlinks).',
752 verbose_description => "Path to the mount point as seen from inside the container.\n\n".
753 "NOTE: Must not contain any symlinks for security reasons."
754 },
755};
756PVE::JSONSchema::register_format('pve-ct-mountpoint', $mp_desc);
757
758my $unused_desc = {
759 volume => {
760 type => 'string',
761 default_key => 1,
762 format => 'pve-volume-id',
763 format_description => 'volume',
764 description => 'The volume that is not used currently.',
765 }
766};
767
768for (my $i = 0; $i < $MAX_MOUNT_POINTS; $i++) {
769 $confdesc->{"mp$i"} = {
770 optional => 1,
771 type => 'string', format => $mp_desc,
772 description => "Use volume as container mount point.",
773 optional => 1,
774 };
775}
776
777for (my $i = 0; $i < $MAX_UNUSED_DISKS; $i++) {
778 $confdesc->{"unused$i"} = {
779 optional => 1,
780 type => 'string', format => $unused_desc,
781 description => "Reference to unused volumes. This is used internally, and should not be modified manually.",
782 }
783}
784
785sub parse_pct_config {
786 my ($filename, $raw) = @_;
787
788 return undef if !defined($raw);
789
790 my $res = {
791 digest => Digest::SHA::sha1_hex($raw),
792 snapshots => {},
793 pending => {},
794 };
795
796 $filename =~ m|/lxc/(\d+).conf$|
797 || die "got strange filename '$filename'";
798
799 my $vmid = $1;
800
801 my $conf = $res;
802 my $descr = '';
803 my $section = '';
804
805 my @lines = split(/\n/, $raw);
806 foreach my $line (@lines) {
807 next if $line =~ m/^\s*$/;
808
809 if ($line =~ m/^\[pve:pending\]\s*$/i) {
810 $section = 'pending';
811 $conf->{description} = $descr if $descr;
812 $descr = '';
813 $conf = $res->{$section} = {};
814 next;
815 } elsif ($line =~ m/^\[([a-z][a-z0-9_\-]+)\]\s*$/i) {
816 $section = $1;
817 $conf->{description} = $descr if $descr;
818 $descr = '';
819 $conf = $res->{snapshots}->{$section} = {};
820 next;
821 }
822
823 if ($line =~ m/^\#(.*)\s*$/) {
824 $descr .= PVE::Tools::decode_text($1) . "\n";
825 next;
826 }
827
828 if ($line =~ m/^(lxc\.[a-z0-9_\-\.]+)(:|\s*=)\s*(.*?)\s*$/) {
829 my $key = $1;
830 my $value = $3;
831 my $validity = is_valid_lxc_conf_key($vmid, $key);
832 if ($validity eq 1) {
833 push @{$conf->{lxc}}, [$key, $value];
834 } elsif (my $errmsg = $validity) {
835 warn "vm $vmid - $key: $errmsg\n";
836 } else {
837 warn "vm $vmid - unable to parse config: $line\n";
838 }
839 } elsif ($line =~ m/^(description):\s*(.*\S)\s*$/) {
840 $descr .= PVE::Tools::decode_text($2);
841 } elsif ($line =~ m/snapstate:\s*(prepare|delete)\s*$/) {
842 $conf->{snapstate} = $1;
843 } elsif ($line =~ m/^delete:\s*(.*\S)\s*$/) {
844 my $value = $1;
845 if ($section eq 'pending') {
846 $conf->{delete} = $value;
847 } else {
848 warn "vm $vmid - property 'delete' is only allowed in [pve:pending]\n";
849 }
850 } elsif ($line =~ m/^([a-z][a-z_]*\d*):\s*(\S.*)\s*$/) {
851 my $key = $1;
852 my $value = $2;
853 eval { $value = PVE::LXC::Config->check_type($key, $value); };
854 warn "vm $vmid - unable to parse value of '$key' - $@" if $@;
855 $conf->{$key} = $value;
856 } else {
857 warn "vm $vmid - unable to parse config: $line\n";
858 }
859 }
860
861 $conf->{description} = $descr if $descr;
862
863 delete $res->{snapstate}; # just to be sure
864
865 return $res;
866}
867
868sub write_pct_config {
869 my ($filename, $conf) = @_;
870
871 delete $conf->{snapstate}; # just to be sure
872
873 my $volidlist = PVE::LXC::Config->get_vm_volumes($conf);
874 my $used_volids = {};
875 foreach my $vid (@$volidlist) {
876 $used_volids->{$vid} = 1;
877 }
878
879 # remove 'unusedX' settings if the volume is still used
880 foreach my $key (keys %$conf) {
881 my $value = $conf->{$key};
882 if ($key =~ m/^unused/ && $used_volids->{$value}) {
883 delete $conf->{$key};
884 }
885 }
886
887 my $generate_raw_config = sub {
888 my ($conf) = @_;
889
890 my $raw = '';
891
892 # add description as comment to top of file
893 my $descr = $conf->{description} || '';
894 foreach my $cl (split(/\n/, $descr)) {
895 $raw .= '#' . PVE::Tools::encode_text($cl) . "\n";
896 }
897
898 foreach my $key (sort keys %$conf) {
899 next if $key eq 'digest' || $key eq 'description' ||
900 $key eq 'pending' || $key eq 'snapshots' ||
901 $key eq 'snapname' || $key eq 'lxc';
902 my $value = $conf->{$key};
903 die "detected invalid newline inside property '$key'\n"
904 if $value =~ m/\n/;
905 $raw .= "$key: $value\n";
906 }
907
908 if (my $lxcconf = $conf->{lxc}) {
909 foreach my $entry (@$lxcconf) {
910 my ($k, $v) = @$entry;
911 $raw .= "$k: $v\n";
912 }
913 }
914
915 return $raw;
916 };
917
918 my $raw = &$generate_raw_config($conf);
919
920 if (scalar(keys %{$conf->{pending}})){
921 $raw .= "\n[pve:pending]\n";
922 $raw .= &$generate_raw_config($conf->{pending});
923 }
924
925 foreach my $snapname (sort keys %{$conf->{snapshots}}) {
926 $raw .= "\n[$snapname]\n";
927 $raw .= &$generate_raw_config($conf->{snapshots}->{$snapname});
928 }
929
930 return $raw;
931}
932
933sub update_pct_config {
934 my ($class, $vmid, $conf, $running, $param, $delete, $revert) = @_;
935
936 my $storage_cfg = PVE::Storage::config();
937
938 foreach my $opt (@$revert) {
939 delete $conf->{pending}->{$opt};
940 $class->remove_from_pending_delete($conf, $opt); # also remove from deletion queue
941 }
942
943 # write updates to pending section
944 my $modified = {}; # record modified options
945
946 foreach my $opt (@$delete) {
947 if (!defined($conf->{$opt}) && !defined($conf->{pending}->{$opt})) {
948 warn "cannot delete '$opt' - not set in current configuration!\n";
949 next;
950 }
951 $modified->{$opt} = 1;
952 if ($opt eq 'memory' || $opt eq 'rootfs' || $opt eq 'ostype') {
953 die "unable to delete required option '$opt'\n";
954 } elsif ($opt =~ m/^unused(\d+)$/) {
955 $class->check_protection($conf, "can't remove CT $vmid drive '$opt'");
956 } elsif ($opt =~ m/^mp(\d+)$/) {
957 $class->check_protection($conf, "can't remove CT $vmid drive '$opt'");
958 } elsif ($opt eq 'unprivileged') {
959 die "unable to delete read-only option: '$opt'\n";
960 }
961 $class->add_to_pending_delete($conf, $opt);
962 }
963
964 my $check_content_type = sub {
965 my ($mp) = @_;
966 my $sid = PVE::Storage::parse_volume_id($mp->{volume});
967 my $storage_config = PVE::Storage::storage_config($storage_cfg, $sid);
968 die "storage '$sid' does not allow content type 'rootdir' (Container)\n"
969 if !$storage_config->{content}->{rootdir};
970 };
971
972 foreach my $opt (sort keys %$param) { # add/change
973 $modified->{$opt} = 1;
974 my $value = $param->{$opt};
975 if ($opt =~ m/^mp(\d+)$/ || $opt eq 'rootfs') {
976 $class->check_protection($conf, "can't update CT $vmid drive '$opt'");
977 my $mp = $class->parse_volume($opt, $value);
978 $check_content_type->($mp) if ($mp->{type} eq 'volume');
979 } elsif ($opt eq 'hookscript') {
980 PVE::GuestHelpers::check_hookscript($value);
981 } elsif ($opt eq 'nameserver') {
982 $value = PVE::LXC::verify_nameserver_list($value);
983 } elsif ($opt eq 'searchdomain') {
984 $value = PVE::LXC::verify_searchdomain_list($value);
985 } elsif ($opt eq 'unprivileged') {
986 die "unable to modify read-only option: '$opt'\n";
987 }
988 $conf->{pending}->{$opt} = $value;
989 $class->remove_from_pending_delete($conf, $opt);
990 }
991
992 my $changes = $class->cleanup_pending($conf);
993
994 my $errors = {};
995 if ($running) {
996 $class->vmconfig_hotplug_pending($vmid, $conf, $storage_cfg, $modified, $errors);
997 } else {
998 $class->vmconfig_apply_pending($vmid, $conf, $storage_cfg, $modified, $errors);
999 }
1000
1001 return $errors;
1002}
1003
1004sub check_type {
1005 my ($class, $key, $value) = @_;
1006
1007 die "unknown setting '$key'\n" if !$confdesc->{$key};
1008
1009 my $type = $confdesc->{$key}->{type};
1010
1011 if (!defined($value)) {
1012 die "got undefined value\n";
1013 }
1014
1015 if ($value =~ m/[\n\r]/) {
1016 die "property contains a line feed\n";
1017 }
1018
1019 if ($type eq 'boolean') {
1020 return 1 if ($value eq '1') || ($value =~ m/^(on|yes|true)$/i);
1021 return 0 if ($value eq '0') || ($value =~ m/^(off|no|false)$/i);
1022 die "type check ('boolean') failed - got '$value'\n";
1023 } elsif ($type eq 'integer') {
1024 return int($1) if $value =~ m/^(\d+)$/;
1025 die "type check ('integer') failed - got '$value'\n";
1026 } elsif ($type eq 'number') {
1027 return $value if $value =~ m/^(\d+)(\.\d+)?$/;
1028 die "type check ('number') failed - got '$value'\n";
1029 } elsif ($type eq 'string') {
1030 if (my $fmt = $confdesc->{$key}->{format}) {
1031 PVE::JSONSchema::check_format($fmt, $value);
1032 return $value;
1033 }
1034 return $value;
1035 } else {
1036 die "internal error"
1037 }
1038}
1039
1040
1041# add JSON properties for create and set function
1042sub json_config_properties {
1043 my ($class, $prop) = @_;
1044
1045 foreach my $opt (keys %$confdesc) {
1046 next if $opt eq 'parent' || $opt eq 'snaptime';
1047 next if $prop->{$opt};
1048 $prop->{$opt} = $confdesc->{$opt};
1049 }
1050
1051 return $prop;
1052}
1053
1054my $parse_ct_mountpoint_full = sub {
1055 my ($class, $desc, $data, $noerr) = @_;
1056
1057 $data //= '';
1058
1059 my $res;
1060 eval { $res = PVE::JSONSchema::parse_property_string($desc, $data) };
1061 if ($@) {
1062 return undef if $noerr;
1063 die $@;
1064 }
1065
1066 if (defined(my $size = $res->{size})) {
1067 $size = PVE::JSONSchema::parse_size($size);
1068 if (!defined($size)) {
1069 return undef if $noerr;
1070 die "invalid size: $size\n";
1071 }
1072 $res->{size} = $size;
1073 }
1074
1075 $res->{type} = $class->classify_mountpoint($res->{volume});
1076
1077 return $res;
1078};
1079
1080sub print_ct_mountpoint {
1081 my ($class, $info, $nomp) = @_;
1082 my $skip = [ 'type' ];
1083 push @$skip, 'mp' if $nomp;
1084 return PVE::JSONSchema::print_property_string($info, $mp_desc, $skip);
1085}
1086
1087sub parse_volume {
1088 my ($class, $key, $volume_string, $noerr) = @_;
1089
1090 if ($key eq 'rootfs') {
1091 my $res = $parse_ct_mountpoint_full->($class, $rootfs_desc, $volume_string, $noerr);
1092 $res->{mp} = '/' if defined($res);
1093 return $res;
1094 } elsif ($key =~ m/^mp\d+$/) {
1095 return $parse_ct_mountpoint_full->($class, $mp_desc, $volume_string, $noerr);
1096 } elsif ($key =~ m/^unused\d+$/) {
1097 return $parse_ct_mountpoint_full->($class, $unused_desc, $volume_string, $noerr);
1098 }
1099
1100 die "parse_volume - unknown type: $key\n";
1101}
1102
1103sub print_volume {
1104 my ($class, $key, $volume) = @_;
1105
1106 return $class->print_ct_mountpoint($volume, $key eq 'rootfs');
1107}
1108
1109sub volid_key {
1110 my ($class) = @_;
1111
1112 return 'volume';
1113}
1114
1115sub print_lxc_network {
1116 my ($class, $net) = @_;
1117 return PVE::JSONSchema::print_property_string($net, $netconf_desc);
1118}
1119
1120sub parse_lxc_network {
1121 my ($class, $data) = @_;
1122
1123 my $res = {};
1124
1125 return $res if !$data;
1126
1127 $res = PVE::JSONSchema::parse_property_string($netconf_desc, $data);
1128
1129 $res->{type} = 'veth';
1130 if (!$res->{hwaddr}) {
1131 my $dc = PVE::Cluster::cfs_read_file('datacenter.cfg');
1132 $res->{hwaddr} = PVE::Tools::random_ether_addr($dc->{mac_prefix});
1133 }
1134
1135 return $res;
1136}
1137
1138sub parse_features {
1139 my ($class, $data) = @_;
1140 return {} if !$data;
1141 return PVE::JSONSchema::parse_property_string($features_desc, $data);
1142}
1143
1144sub option_exists {
1145 my ($class, $name) = @_;
1146
1147 return defined($confdesc->{$name});
1148}
1149# END JSON config code
1150
1151my $LXC_FASTPLUG_OPTIONS= {
1152 'description' => 1,
1153 'onboot' => 1,
1154 'startup' => 1,
1155 'protection' => 1,
1156 'hostname' => 1,
1157 'hookscript' => 1,
1158 'cores' => 1,
1159 'tags' => 1,
1160 'lock' => 1,
1161};
1162
1163sub vmconfig_hotplug_pending {
1164 my ($class, $vmid, $conf, $storecfg, $selection, $errors) = @_;
1165
1166 my $pid = PVE::LXC::find_lxc_pid($vmid);
1167 my $rootdir = "/proc/$pid/root";
1168
1169 my $add_hotplug_error = sub {
1170 my ($opt, $msg) = @_;
1171 $errors->{$opt} = "unable to hotplug $opt: $msg";
1172 };
1173
1174 foreach my $opt (sort keys %{$conf->{pending}}) { # add/change
1175 next if $selection && !$selection->{$opt};
1176 if ($LXC_FASTPLUG_OPTIONS->{$opt}) {
1177 $conf->{$opt} = delete $conf->{pending}->{$opt};
1178 }
1179 }
1180
1181 my $cgroup = PVE::LXC::CGroup->new($vmid);
1182
1183 # There's no separate swap size to configure, there's memory and "total"
1184 # memory (iow. memory+swap). This means we have to change them together.
1185 my $hotplug_memory_done;
1186 my $hotplug_memory = sub {
1187 my ($wanted_memory, $wanted_swap) = @_;
1188
1189 $wanted_memory = int($wanted_memory * 1024 * 1024) if defined($wanted_memory);
1190 $wanted_swap = int($wanted_swap * 1024 * 1024) if defined($wanted_swap);
1191 $cgroup->change_memory_limit($wanted_memory, $wanted_swap);
1192
1193 $hotplug_memory_done = 1;
1194 };
1195
1196 my $pending_delete_hash = $class->parse_pending_delete($conf->{pending}->{delete});
1197 # FIXME: $force deletion is not implemented for CTs
1198 foreach my $opt (sort keys %$pending_delete_hash) {
1199 next if $selection && !$selection->{$opt};
1200 eval {
1201 if ($LXC_FASTPLUG_OPTIONS->{$opt}) {
1202 # pass
1203 } elsif ($opt =~ m/^unused(\d+)$/) {
1204 PVE::LXC::delete_mountpoint_volume($storecfg, $vmid, $conf->{$opt})
1205 if !$class->is_volume_in_use($conf, $conf->{$opt}, 1, 1);
1206 } elsif ($opt eq 'swap') {
1207 $hotplug_memory->(undef, 0);
1208 } elsif ($opt eq 'cpulimit') {
1209 $cgroup->change_cpu_quota(-1, 100000);
1210 } elsif ($opt eq 'cpuunits') {
1211 $cgroup->change_cpu_shares(undef, $confdesc->{cpuunits}->{default});
1212 } elsif ($opt =~ m/^net(\d)$/) {
1213 my $netid = $1;
1214 PVE::Network::veth_delete("veth${vmid}i$netid");
1215 } else {
1216 die "skip\n"; # skip non-hotpluggable opts
1217 }
1218 };
1219 if (my $err = $@) {
1220 $add_hotplug_error->($opt, $err) if $err ne "skip\n";
1221 } else {
1222 delete $conf->{$opt};
1223 $class->remove_from_pending_delete($conf, $opt);
1224 }
1225 }
1226
1227 foreach my $opt (sort keys %{$conf->{pending}}) {
1228 next if $opt eq 'delete'; # just to be sure
1229 next if $selection && !$selection->{$opt};
1230 my $value = $conf->{pending}->{$opt};
1231 eval {
1232 if ($opt eq 'cpulimit') {
1233 my $quota = 100000 * $value;
1234 $cgroup->change_cpu_quota(int(100000 * $value), 100000);
1235 } elsif ($opt eq 'cpuunits') {
1236 $cgroup->change_cpu_shares($value, $confdesc->{cpuunits}->{default});
1237 } elsif ($opt =~ m/^net(\d+)$/) {
1238 my $netid = $1;
1239 my $net = $class->parse_lxc_network($value);
1240 $value = $class->print_lxc_network($net);
1241 PVE::LXC::update_net($vmid, $conf, $opt, $net, $netid, $rootdir);
1242 } elsif ($opt eq 'memory' || $opt eq 'swap') {
1243 if (!$hotplug_memory_done) { # don't call twice if both opts are passed
1244 $hotplug_memory->($conf->{pending}->{memory}, $conf->{pending}->{swap});
1245 }
1246 } elsif ($opt =~ m/^mp(\d+)$/) {
1247 if (!PVE::LXC::Tools::can_use_new_mount_api()) {
1248 die "skip\n";
1249 }
1250
1251 $class->apply_pending_mountpoint($vmid, $conf, $opt, $storecfg, 1);
1252 # apply_pending_mountpoint modifies the value if it creates a new disk
1253 $value = $conf->{pending}->{$opt};
1254 } else {
1255 die "skip\n"; # skip non-hotpluggable
1256 }
1257 };
1258 if (my $err = $@) {
1259 $add_hotplug_error->($opt, $err) if $err ne "skip\n";
1260 } else {
1261 $conf->{$opt} = $value;
1262 delete $conf->{pending}->{$opt};
1263 }
1264 }
1265}
1266
1267sub vmconfig_apply_pending {
1268 my ($class, $vmid, $conf, $storecfg, $selection, $errors) = @_;
1269
1270 my $add_apply_error = sub {
1271 my ($opt, $msg) = @_;
1272 my $err_msg = "unable to apply pending change $opt : $msg";
1273 $errors->{$opt} = $err_msg;
1274 warn $err_msg;
1275 };
1276
1277 my $pending_delete_hash = $class->parse_pending_delete($conf->{pending}->{delete});
1278 # FIXME: $force deletion is not implemented for CTs
1279 foreach my $opt (sort keys %$pending_delete_hash) {
1280 next if $selection && !$selection->{$opt};
1281 eval {
1282 if ($opt =~ m/^mp(\d+)$/) {
1283 my $mp = $class->parse_volume($opt, $conf->{$opt});
1284 if ($mp->{type} eq 'volume') {
1285 $class->add_unused_volume($conf, $mp->{volume})
1286 if !$class->is_volume_in_use($conf, $conf->{$opt}, 1, 1);
1287 }
1288 } elsif ($opt =~ m/^unused(\d+)$/) {
1289 PVE::LXC::delete_mountpoint_volume($storecfg, $vmid, $conf->{$opt})
1290 if !$class->is_volume_in_use($conf, $conf->{$opt}, 1, 1);
1291 }
1292 };
1293 if (my $err = $@) {
1294 $add_apply_error->($opt, $err);
1295 } else {
1296 delete $conf->{$opt};
1297 $class->remove_from_pending_delete($conf, $opt);
1298 }
1299 }
1300
1301 $class->cleanup_pending($conf);
1302
1303 foreach my $opt (sort keys %{$conf->{pending}}) { # add/change
1304 next if $opt eq 'delete'; # just to be sure
1305 next if $selection && !$selection->{$opt};
1306 eval {
1307 if ($opt =~ m/^mp(\d+)$/) {
1308 $class->apply_pending_mountpoint($vmid, $conf, $opt, $storecfg, 0);
1309 } elsif ($opt =~ m/^net(\d+)$/) {
1310 my $netid = $1;
1311 my $net = $class->parse_lxc_network($conf->{pending}->{$opt});
1312 $conf->{pending}->{$opt} = $class->print_lxc_network($net);
1313 }
1314 };
1315 if (my $err = $@) {
1316 $add_apply_error->($opt, $err);
1317 } else {
1318 $conf->{$opt} = delete $conf->{pending}->{$opt};
1319 }
1320 }
1321}
1322
1323my $rescan_volume = sub {
1324 my ($storecfg, $mp) = @_;
1325 eval {
1326 $mp->{size} = PVE::Storage::volume_size_info($storecfg, $mp->{volume}, 5);
1327 };
1328 warn "Could not rescan volume size - $@\n" if $@;
1329};
1330
1331sub apply_pending_mountpoint {
1332 my ($class, $vmid, $conf, $opt, $storecfg, $running) = @_;
1333
1334 my $mp = $class->parse_volume($opt, $conf->{pending}->{$opt});
1335 my $old = $conf->{$opt};
1336 if ($mp->{type} eq 'volume') {
1337 if ($mp->{volume} =~ $PVE::LXC::NEW_DISK_RE) {
1338 my $original_value = $conf->{pending}->{$opt};
1339 my $vollist = PVE::LXC::create_disks(
1340 $storecfg,
1341 $vmid,
1342 { $opt => $original_value },
1343 $conf,
1344 1,
1345 );
1346 if ($running) {
1347 # Re-parse mount point:
1348 my $mp = $class->parse_volume($opt, $conf->{pending}->{$opt});
1349 eval {
1350 PVE::LXC::mountpoint_hotplug($vmid, $conf, $opt, $mp, $storecfg);
1351 };
1352 my $err = $@;
1353 if ($err) {
1354 PVE::LXC::destroy_disks($storecfg, $vollist);
1355 # The pending-changes code collects errors but keeps on looping through further
1356 # pending changes, so unroll the change in $conf as well if destroy_disks()
1357 # didn't die().
1358 $conf->{pending}->{$opt} = $original_value;
1359 die $err;
1360 }
1361 }
1362 } else {
1363 die "skip\n" if $running && defined($old); # TODO: "changing" mount points?
1364 $rescan_volume->($storecfg, $mp);
1365 if ($running) {
1366 PVE::LXC::mountpoint_hotplug($vmid, $conf, $opt, $mp, $storecfg);
1367 }
1368 $conf->{pending}->{$opt} = $class->print_ct_mountpoint($mp);
1369 }
1370 }
1371
1372 if (defined($old)) {
1373 my $mp = $class->parse_volume($opt, $old);
1374 if ($mp->{type} eq 'volume') {
1375 $class->add_unused_volume($conf, $mp->{volume})
1376 if !$class->is_volume_in_use($conf, $conf->{$opt}, 1, 1);
1377 }
1378 }
1379}
1380
1381sub classify_mountpoint {
1382 my ($class, $vol) = @_;
1383 if ($vol =~ m!^/!) {
1384 return 'device' if $vol =~ m!^/dev/!;
1385 return 'bind';
1386 }
1387 return 'volume';
1388}
1389
1390my $__is_volume_in_use = sub {
1391 my ($class, $config, $volid) = @_;
1392 my $used = 0;
1393
1394 $class->foreach_volume($config, sub {
1395 my ($ms, $mountpoint) = @_;
1396 return if $used;
1397 $used = $mountpoint->{type} eq 'volume' && $mountpoint->{volume} eq $volid;
1398 });
1399
1400 return $used;
1401};
1402
1403sub is_volume_in_use_by_snapshots {
1404 my ($class, $config, $volid) = @_;
1405
1406 if (my $snapshots = $config->{snapshots}) {
1407 foreach my $snap (keys %$snapshots) {
1408 return 1 if $__is_volume_in_use->($class, $snapshots->{$snap}, $volid);
1409 }
1410 }
1411
1412 return 0;
1413}
1414
1415sub is_volume_in_use {
1416 my ($class, $config, $volid, $include_snapshots, $include_pending) = @_;
1417 return 1 if $__is_volume_in_use->($class, $config, $volid);
1418 return 1 if $include_snapshots && $class->is_volume_in_use_by_snapshots($config, $volid);
1419 return 1 if $include_pending && $__is_volume_in_use->($class, $config->{pending}, $volid);
1420 return 0;
1421}
1422
1423sub has_dev_console {
1424 my ($class, $conf) = @_;
1425
1426 return !(defined($conf->{console}) && !$conf->{console});
1427}
1428
1429sub has_lxc_entry {
1430 my ($class, $conf, $keyname) = @_;
1431
1432 if (my $lxcconf = $conf->{lxc}) {
1433 foreach my $entry (@$lxcconf) {
1434 my ($key, undef) = @$entry;
1435 return 1 if $key eq $keyname;
1436 }
1437 }
1438
1439 return 0;
1440}
1441
1442sub get_tty_count {
1443 my ($class, $conf) = @_;
1444
1445 return $conf->{tty} // $confdesc->{tty}->{default};
1446}
1447
1448sub get_cmode {
1449 my ($class, $conf) = @_;
1450
1451 return $conf->{cmode} // $confdesc->{cmode}->{default};
1452}
1453
1454sub valid_volume_keys {
1455 my ($class, $reverse) = @_;
1456
1457 my @names = ('rootfs');
1458
1459 for (my $i = 0; $i < $MAX_MOUNT_POINTS; $i++) {
1460 push @names, "mp$i";
1461 }
1462
1463 return $reverse ? reverse @names : @names;
1464}
1465
1466sub get_vm_volumes {
1467 my ($class, $conf, $excludes) = @_;
1468
1469 my $vollist = [];
1470
1471 $class->foreach_volume($conf, sub {
1472 my ($ms, $mountpoint) = @_;
1473
1474 return if $excludes && $ms eq $excludes;
1475
1476 my $volid = $mountpoint->{volume};
1477 return if !$volid || $mountpoint->{type} ne 'volume';
1478
1479 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1480 return if !$sid;
1481
1482 push @$vollist, $volid;
1483 });
1484
1485 return $vollist;
1486}
1487
1488sub get_replicatable_volumes {
1489 my ($class, $storecfg, $vmid, $conf, $cleanup, $noerr) = @_;
1490
1491 my $volhash = {};
1492
1493 my $test_volid = sub {
1494 my ($volid, $mountpoint) = @_;
1495
1496 return if !$volid;
1497
1498 my $mptype = $mountpoint->{type};
1499 my $replicate = $mountpoint->{replicate} // 1;
1500
1501 if ($mptype ne 'volume') {
1502 # skip bindmounts if replicate = 0 even for cleanup,
1503 # since bind mounts could not have been replicated ever
1504 return if !$replicate;
1505 die "unable to replicate mountpoint type '$mptype'\n";
1506 }
1507
1508 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid, $noerr);
1509 return if !$storeid;
1510
1511 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
1512 return if $scfg->{shared};
1513
1514 my ($path, $owner, $vtype) = PVE::Storage::path($storecfg, $volid);
1515 return if !$owner || ($owner != $vmid);
1516
1517 die "unable to replicate volume '$volid', type '$vtype'\n" if $vtype ne 'images';
1518
1519 return if !$cleanup && !$replicate;
1520
1521 if (!PVE::Storage::volume_has_feature($storecfg, 'replicate', $volid)) {
1522 return if $cleanup || $noerr;
1523 die "missing replicate feature on volume '$volid'\n";
1524 }
1525
1526 $volhash->{$volid} = 1;
1527 };
1528
1529 $class->foreach_volume($conf, sub {
1530 my ($ms, $mountpoint) = @_;
1531 $test_volid->($mountpoint->{volume}, $mountpoint);
1532 });
1533
1534 foreach my $snapname (keys %{$conf->{snapshots}}) {
1535 my $snap = $conf->{snapshots}->{$snapname};
1536 $class->foreach_volume($snap, sub {
1537 my ($ms, $mountpoint) = @_;
1538 $test_volid->($mountpoint->{volume}, $mountpoint);
1539 });
1540 }
1541
1542 # add 'unusedX' volumes to volhash
1543 foreach my $key (keys %$conf) {
1544 if ($key =~ m/^unused/) {
1545 $test_volid->($conf->{$key}, { type => 'volume', replicate => 1 });
1546 }
1547 }
1548
1549 return $volhash;
1550}
1551
15521;