]> git.proxmox.com Git - pve-container.git/blame - src/PVE/LXC.pm
bump version to 5.0.7
[pve-container.git] / src / PVE / LXC.pm
CommitLineData
f76a2828
DM
1package PVE::LXC;
2
3use strict;
4use warnings;
67afe46e 5
2cfae16e 6use Cwd qw();
ce1976b8
FS
7use Errno qw(ELOOP ENOENT ENOTDIR EROFS ECONNREFUSED EEXIST);
8use Fcntl qw(O_RDONLY O_WRONLY O_NOFOLLOW O_DIRECTORY :mode);
a65984bf
TL
9use File::Path;
10use File::Spec;
0d1d137e 11use IO::Poll qw(POLLIN POLLHUP);
a65984bf
TL
12use IO::Socket::UNIX;
13use POSIX qw(EINTR);
14use Socket;
15use Time::HiRes qw (gettimeofday);
f76a2828 16
a65984bf
TL
17use PVE::AccessControl;
18use PVE::CGroup;
19use PVE::CpuSet;
f1ba1a4b 20use PVE::Exception qw(raise_perm_exc);
ee81952f 21use PVE::GuestHelpers qw(check_vnet_access safe_string_ne safe_num_ne safe_boolean_ne);
f76a2828 22use PVE::INotify;
8233d33d 23use PVE::JSONSchema qw(get_standard_option);
a65984bf
TL
24use PVE::Network;
25use PVE::ProcFSTools;
26use PVE::RESTEnvironment;
27use PVE::SafeSyslog;
28use PVE::Storage;
2df08734 29use PVE::Tools qw(
10937f87
TL
30 run_command
31 dir_glob_foreach
32 file_get_contents
33 file_set_contents
34 AT_FDCWD
35 O_PATH
36 $IPV4RE
37 $IPV6RE
2df08734 38);
ef447944 39use PVE::Syscall qw(:fsmount);
a65984bf 40
0b1b12e0 41use PVE::LXC::CGroup;
a65984bf 42use PVE::LXC::Config;
abaa24bd 43use PVE::LXC::Monitor;
a65984bf 44use PVE::LXC::Tools;
8233d33d 45
ab2ec461
AD
46my $have_sdn;
47eval {
48 require PVE::Network::SDN::Zones;
986c79d6 49 require PVE::Network::SDN::Vnets;
ab2ec461
AD
50 $have_sdn = 1;
51};
f76a2828 52
5a63f1c5
WB
53my $LXC_CONFIG_PATH = '/usr/share/lxc/config';
54
27916659
DM
55my $nodename = PVE::INotify::nodename();
56
688afc63
WL
57my $cpuinfo= PVE::ProcFSTools::read_cpuinfo();
58
c824fbed
FG
59our $NEW_DISK_RE = qr/^([^:\s]+):(\d+(\.\d+)?)$/;
60
f76a2828
DM
61sub config_list {
62 my $vmlist = PVE::Cluster::get_vmlist();
63 my $res = {};
64 return $res if !$vmlist || !$vmlist->{ids};
65 my $ids = $vmlist->{ids};
66
67 foreach my $vmid (keys %$ids) {
68 next if !$vmid; # skip CT0
69 my $d = $ids->{$vmid};
70 next if !$d->{node} || $d->{node} ne $nodename;
71 next if !$d->{type} || $d->{type} ne 'lxc';
8233d33d 72 $res->{$vmid} = { type => 'lxc', vmid => $vmid };
f76a2828
DM
73 }
74 return $res;
75}
76
822de0c3
DM
77# container status helpers
78
79sub list_active_containers {
cbb03fea 80
822de0c3
DM
81 my $filename = "/proc/net/unix";
82
83 # similar test is used by lcxcontainers.c: list_active_containers
84 my $res = {};
cbb03fea 85
822de0c3
DM
86 my $fh = IO::File->new ($filename, "r");
87 return $res if !$fh;
88
89 while (defined(my $line = <$fh>)) {
28df2cde 90 if ($line =~ m/^[a-f0-9]+:\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\d+\s+(\S+)$/) {
822de0c3 91 my $path = $1;
27916659 92 if ($path =~ m!^@/var/lib/lxc/(\d+)/command$!) {
822de0c3
DM
93 $res->{$1} = 1;
94 }
95 }
96 }
97
98 close($fh);
cbb03fea 99
822de0c3
DM
100 return $res;
101}
f76a2828 102
5c752bbf
DM
103# warning: this is slow
104sub check_running {
105 my ($vmid) = @_;
106
107 my $active_hash = list_active_containers();
108
109 return 1 if defined($active_hash->{$vmid});
cbb03fea 110
5c752bbf
DM
111 return undef;
112}
113
10fc3ba5 114sub get_container_disk_usage {
73e03cb7 115 my ($vmid, $pid) = @_;
10fc3ba5 116
73e03cb7 117 return PVE::Tools::df("/proc/$pid/root/", 1);
10fc3ba5
DM
118}
119
688afc63
WL
120my $last_proc_vmid_stat;
121
8233d33d
DM
122our $vmstatus_return_properties = {
123 vmid => get_standard_option('pve-vmid'),
124 status => {
125 description => "LXC Container status.",
126 type => 'string',
127 enum => ['stopped', 'running'],
128 },
129 maxmem => {
130 description => "Maximum memory in bytes.",
131 type => 'integer',
132 optional => 1,
133 renderer => 'bytes',
134 },
135 maxswap => {
136 description => "Maximum SWAP memory in bytes.",
137 type => 'integer',
138 optional => 1,
139 renderer => 'bytes',
140 },
141 maxdisk => {
142 description => "Root disk size in bytes.",
143 type => 'integer',
144 optional => 1,
145 renderer => 'bytes',
146 },
147 name => {
148 description => "Container name.",
149 type => 'string',
150 optional => 1,
151 },
152 uptime => {
153 description => "Uptime.",
154 type => 'integer',
155 optional => 1,
156 renderer => 'duration',
157 },
158 cpus => {
159 description => "Maximum usable CPUs.",
160 type => 'number',
161 optional => 1,
162 },
440b6427 163 lock => {
87c5dc96 164 description => "The current config lock, if any.",
440b6427
DC
165 type => 'string',
166 optional => 1,
733e52ec
DC
167 },
168 tags => {
169 description => "The current configured tags, if any.",
170 type => 'string',
171 optional => 1,
440b6427 172 }
8233d33d
DM
173};
174
f76a2828
DM
175sub vmstatus {
176 my ($opt_vmid) = @_;
177
8808fb65 178 my $list = $opt_vmid ? { $opt_vmid => { type => 'lxc', vmid => int($opt_vmid) }} : config_list();
f76a2828 179
822de0c3 180 my $active_hash = list_active_containers();
cbb03fea 181
688afc63
WL
182 my $cpucount = $cpuinfo->{cpus} || 1;
183
184 my $cdtime = gettimeofday;
185
186 my $uptime = (PVE::ProcFSTools::read_proc_uptime(1))[0];
80d56111 187 my $clock_ticks = POSIX::sysconf(&POSIX::_SC_CLK_TCK);
688afc63 188
3b5070d4
WB
189 my $unprivileged = {};
190
f76a2828 191 foreach my $vmid (keys %$list) {
f76a2828 192 my $d = $list->{$vmid};
10fc3ba5 193
8808fb65 194 eval { $d->{pid} = int(find_lxc_pid($vmid)) if defined($active_hash->{$vmid}); };
d5588ee3 195 warn $@ if $@; # ignore errors (consider them stopped)
cbb03fea 196
2ff1c49c 197 $d->{status} = $active_hash->{$vmid} ? 'running' : 'stopped';
f76a2828 198
67afe46e 199 my $cfspath = PVE::LXC::Config->cfs_config_path($vmid);
238a56cb 200 my $conf = PVE::Cluster::cfs_read_file($cfspath) || {};
cbb03fea 201
3b5070d4
WB
202 $unprivileged->{$vmid} = $conf->{unprivileged};
203
aec218c7 204 $d->{name} = $conf->{'hostname'} || "CT$vmid";
238a56cb 205 $d->{name} =~ s/[\s]//g;
cbb03fea 206
f2357408
DM
207 $d->{cpus} = $conf->{cores} || $conf->{cpulimit};
208 $d->{cpus} = $cpucount if !$d->{cpus};
44da0641 209
733e52ec 210 $d->{tags} = $conf->{tags} if defined($conf->{tags});
d0226204 211
d5588ee3
DM
212 if ($d->{pid}) {
213 my $res = get_container_disk_usage($vmid, $d->{pid});
8808fb65
FE
214 $d->{disk} = int($res->{used});
215 $d->{maxdisk} = int($res->{total});
27916659
DM
216 } else {
217 $d->{disk} = 0;
218 # use 4GB by default ??
219 if (my $rootfs = $conf->{rootfs}) {
e4034859 220 my $rootinfo = PVE::LXC::Config->parse_volume('rootfs', $rootfs);
af02245c 221 $d->{maxdisk} = $rootinfo->{size} || (4*1024*1024*1024);
27916659
DM
222 } else {
223 $d->{maxdisk} = 4*1024*1024*1024;
10fc3ba5 224 }
238a56cb 225 }
cbb03fea 226
238a56cb
DM
227 $d->{mem} = 0;
228 $d->{swap} = 0;
95df9a12
DM
229 $d->{maxmem} = ($conf->{memory}||512)*1024*1024;
230 $d->{maxswap} = ($conf->{swap}//0)*1024*1024;
e901d418 231
238a56cb
DM
232 $d->{uptime} = 0;
233 $d->{cpu} = 0;
e901d418 234
238a56cb
DM
235 $d->{netout} = 0;
236 $d->{netin} = 0;
f76a2828 237
238a56cb
DM
238 $d->{diskread} = 0;
239 $d->{diskwrite} = 0;
bb1ac2de 240
b4eaaabd 241 $d->{template} = 1 if PVE::LXC::Config->is_template($conf);
440b6427 242 $d->{lock} = $conf->{lock} if $conf->{lock};
f76a2828 243 }
cbb03fea 244
238a56cb
DM
245 foreach my $vmid (keys %$list) {
246 my $d = $list->{$vmid};
d5588ee3
DM
247 my $pid = $d->{pid};
248
249 next if !$pid; # skip stopped CTs
f76a2828 250
80d56111
DC
251 my $proc_pid_stat = PVE::ProcFSTools::read_proc_pid_stat($pid);
252 $d->{uptime} = int(($uptime - $proc_pid_stat->{starttime}) / $clock_ticks); # the method lxcfs uses
22a77285 253
3b5070d4
WB
254 my $unpriv = $unprivileged->{$vmid};
255
0b1b12e0
WB
256 my $cgroups = PVE::LXC::CGroup->new($vmid);
257
571e61b4 258 if (defined(my $mem = $cgroups->get_memory_stat())) {
8808fb65
FE
259 $d->{mem} = int($mem->{mem});
260 $d->{swap} = int($mem->{swap});
0b6a2f0e
WB
261 } else {
262 $d->{mem} = 0;
263 $d->{swap} = 0;
264 }
265
0b1b12e0 266 if (defined(my $blkio = $cgroups->get_io_stats())) {
8808fb65
FE
267 $d->{diskread} = int($blkio->{diskread});
268 $d->{diskwrite} = int($blkio->{diskwrite});
0b6a2f0e
WB
269 } else {
270 $d->{diskread} = 0;
271 $d->{diskwrite} = 0;
b5289322 272 }
688afc63 273
204f4fbf
WB
274 if (defined(my $cpu = $cgroups->get_cpu_stat())) {
275 # Total time (in milliseconds) used up by the cpu.
276 my $used_ms = $cpu->{utime} + $cpu->{stime};
688afc63 277
0b6a2f0e
WB
278 my $old = $last_proc_vmid_stat->{$vmid};
279 if (!$old) {
280 $last_proc_vmid_stat->{$vmid} = {
281 time => $cdtime,
204f4fbf 282 used => $used_ms,
0b6a2f0e
WB
283 cpu => 0,
284 };
285 next;
286 }
688afc63 287
204f4fbf
WB
288 my $delta_ms = ($cdtime - $old->{time}) * $cpucount * 1000.0;
289 if ($delta_ms > 1000.0) {
290 my $delta_used_ms = $used_ms - $old->{used};
291 $d->{cpu} = (($delta_used_ms / $delta_ms) * $cpucount) / $d->{cpus};
0b6a2f0e
WB
292 $last_proc_vmid_stat->{$vmid} = {
293 time => $cdtime,
204f4fbf 294 used => $used_ms,
0b6a2f0e
WB
295 cpu => $d->{cpu},
296 };
297 } else {
298 $d->{cpu} = $old->{cpu};
299 }
688afc63 300 } else {
0b6a2f0e 301 $d->{cpu} = 0;
688afc63 302 }
238a56cb 303 }
cbb03fea 304
68b8f4d1
WL
305 my $netdev = PVE::ProcFSTools::read_proc_net_dev();
306
307 foreach my $dev (keys %$netdev) {
308 next if $dev !~ m/^veth([1-9]\d*)i/;
309 my $vmid = $1;
310 my $d = $list->{$vmid};
311
312 next if !$d;
313
314 $d->{netout} += $netdev->{$dev}->{receive};
315 $d->{netin} += $netdev->{$dev}->{transmit};
316
317 }
318
f76a2828
DM
319 return $list;
320}
321
52f1d76b
DM
322sub find_lxc_console_pids {
323
324 my $res = {};
325
326 PVE::Tools::dir_glob_foreach('/proc', '\d+', sub {
327 my ($pid) = @_;
328
329 my $cmdline = PVE::Tools::file_read_firstline("/proc/$pid/cmdline");
330 return if !$cmdline;
331
332 my @args = split(/\0/, $cmdline);
333
c31ad455 334 # search for lxc-console -n <vmid>
cbb03fea 335 return if scalar(@args) != 3;
52f1d76b
DM
336 return if $args[1] ne '-n';
337 return if $args[2] !~ m/^\d+$/;
338 return if $args[0] !~ m|^(/usr/bin/)?lxc-console$|;
cbb03fea 339
52f1d76b 340 my $vmid = $args[2];
cbb03fea 341
52f1d76b
DM
342 push @{$res->{$vmid}}, $pid;
343 });
344
345 return $res;
346}
347
bedeaaf1
AD
348sub find_lxc_pid {
349 my ($vmid) = @_;
350
351 my $pid = undef;
352 my $parser = sub {
353 my $line = shift;
8b25977f 354 $pid = $1 if $line =~ m/^PID:\s+(\d+)$/;
bedeaaf1 355 };
c39aa40a 356 PVE::Tools::run_command(['lxc-info', '-n', $vmid, '-p'], outfunc => $parser);
bedeaaf1 357
8b25977f 358 die "unable to get PID for CT $vmid (not running?)\n" if !$pid;
cbb03fea 359
8b25977f 360 return $pid;
bedeaaf1
AD
361}
362
ab74a9ba
WB
363sub open_pid_fd($) {
364 my ($pid) = @_;
365 sysopen(my $fd, "/proc/$pid", O_RDONLY | O_DIRECTORY)
366 or die "failed to open /proc/$pid pid fd\n";
367 return $fd;
368}
369
370sub open_lxc_pid {
371 my ($vmid) = @_;
372
373 # Find the pid and open:
374 my $pid = find_lxc_pid($vmid);
375 my $fd = open_pid_fd($pid);
376
377 # Verify:
378 my $pid2 = find_lxc_pid($vmid);
379
380 return () if $pid != $pid2;
381 return ($pid, $fd);
382}
383
384sub open_ppid {
385 my ($pid) = @_;
386
387 # Find the parent pid via proc and open it:
388 my $stat = PVE::ProcFSTools::read_proc_pid_stat($pid);
389 my $ppid = $stat->{ppid} // die "failed to get parent pid\n";
390
391 my $fd = open_pid_fd($ppid);
392
393 # Verify:
394 $stat = PVE::ProcFSTools::read_proc_pid_stat($pid);
395 my $ppid2 = $stat->{ppid} // die "failed to get parent pid for verification\n";
396
397 return () if $ppid != $ppid2;
398 return ($ppid, $fd);
399}
400
cbb03fea 401# Note: we cannot use Net:IP, because that only allows strict
55fa4e09
DM
402# CIDR networks
403sub parse_ipv4_cidr {
404 my ($cidr, $noerr) = @_;
405
f7a7b413
WB
406 if ($cidr =~ m!^($IPV4RE)(?:/(\d+))$! && ($2 > 7) && ($2 <= 32)) {
407 return { address => $1, netmask => $PVE::Network::ipv4_reverse_mask->[$2] };
55fa4e09 408 }
cbb03fea 409
55fa4e09 410 return undef if $noerr;
cbb03fea 411
55fa4e09
DM
412 die "unable to parse ipv4 address/mask\n";
413}
93285df8 414
2df08734
WB
415# With seccomp trap to userspace we now have the ability to optionally forward
416# certain syscalls to the "host" to handle (via our pve-lxc-syscalld daemon).
5a63f1c5 417#
2df08734
WB
418# This means that there are cases where we need to create an extra seccomp
419# profile for the container to load.
420#
421# This returns a configuration snippet added to the raw lxc config.
5a63f1c5 422sub make_seccomp_config {
fb766003 423 my ($conf, $vmid, $conf_dir, $unprivileged, $features) = @_;
5a63f1c5
WB
424 # User-configured profile has precedence, note that the user's entry would
425 # be written 'after' this line anyway...
426 if (PVE::LXC::Config->has_lxc_entry($conf, 'lxc.seccomp.profile')) {
427 # Warn the user if this conflicts with a feature:
2df08734
WB
428 my $warn = join(', ', grep { $features->{$_} } qw(keyctl mknod));
429 warn "explicitly configured lxc.seccomp.profile overrides the following settings: $warn\n"
430 if length($warn) > 0;
5a63f1c5
WB
431 return '';
432 }
433
434 # Privileged containers keep using the default (which is already part of
435 # the files included via lxc.include, so we don't need to write it out,
436 # that way it stays admin-configurable via /usr/share/lxc/config/... as
437 # well)
438 return '' if !$unprivileged;
439
2df08734
WB
440 my $rules = {
441 keyctl => ['errno 38'],
3e4a69e9
WB
442
443 # Disable btrfs ioctrls since they don't work particularly well in user namespaces.
444 # Particularly, without the mount option to enable rmdir removing snapshots, user
445 # namespaces can create snapshots but neither `show` or `delete` them, which is quite
446 # horrible, so for now, just disable this entirely:
447 #
448 # BTRFS_IOCTL_MAGIC 0x94, _IOC type shift is 8,
449 # so `(req & 0xFF00) == 0x9400` is a btrfs ioctl and gets an EPERM
450 ioctl => ['errno 1 [1,0x9400,SCMP_CMP_MASKED_EQ,0xff00]'],
2df08734
WB
451 };
452
453 my $raw_conf = '';
454
5a63f1c5
WB
455 # Unprivileged containers will get keyctl() disabled by default as a
456 # workaround for systemd-networkd behavior. But we have an option to
457 # explicitly enable it:
2df08734
WB
458 if ($features->{keyctl}) {
459 delete $rules->{keyctl};
460 }
461
462 # By default, unprivileged containers cannot use `mknod` at all.
463 # Since lxc 3.2, we can use seccomp's trap to userspace feature for this,
464 # but for now this is experimental, so it has to be enabled via a feature
465 # flag.
466 # Note that we only handle block and char devices (like lxd), the rest we
467 # leave up to the kernel. We may in the future remove this if seccomp gets
468 # a way to tell the kernel to "continue" a syscall.
469 if ($features->{mknod}) {
b6bbd32c
WB
470 my ($ok, $kernel) = PVE::ProcFSTools::check_kernel_release(5, 3);
471 if (!$ok) {
472 die "'mknod' feature requested, but kernel too old (found $kernel, required >= 5.3)\n";
473 }
474
2df08734 475 $raw_conf .= "lxc.seccomp.notify.proxy = unix:/run/pve/lxc-syscalld.sock\n";
fb766003 476 $raw_conf .= "lxc.seccomp.notify.cookie = $vmid\n";
2df08734
WB
477
478 $rules->{mknod} = [
479 # condition: (mode & S_IFMT) == S_IFCHR
480 'notify [1,8192,SCMP_CMP_MASKED_EQ,61440]',
481 # condition: (mode & S_IFMT) == S_IFBLK
482 'notify [1,24576,SCMP_CMP_MASKED_EQ,61440]',
483 ];
484 $rules->{mknodat} = [
485 # condition: (mode & S_IFMT) == S_IFCHR
486 'notify [2,8192,SCMP_CMP_MASKED_EQ,61440]',
487 # condition: (mode & S_IFMT) == S_IFBLK
488 'notify [2,24576,SCMP_CMP_MASKED_EQ,61440]',
489 ];
490 }
491
492 # Now build the custom seccomp rule text...
493 my $extra_rules = join("\n", map {
494 my $syscall = $_;
495 map { "$syscall $_" } $rules->{$syscall}->@*
496 } sort keys %$rules) . "\n";
497
498 return $raw_conf if $extra_rules eq "\n";
499
500 # We still have the "most common" config readily available, so don't write
501 # out that one:
502 if ($raw_conf eq '' && $extra_rules eq "keyctl errno 38\n") {
503 # we have no extra $raw_conf and use the same we had in pve 6.1:
504 return "lxc.seccomp.profile = $LXC_CONFIG_PATH/pve-userns.seccomp\n";
505 }
506
507 # Write the rule file to the container's config path:
508 my $rule_file = "$conf_dir/rules.seccomp";
509 my $rule_data = file_get_contents("$LXC_CONFIG_PATH/common.seccomp")
510 . $extra_rules;
511 file_set_contents($rule_file, $rule_data);
512 $raw_conf .= "lxc.seccomp.profile = $rule_file\n";
5a63f1c5 513
2df08734 514 return $raw_conf;
5a63f1c5
WB
515}
516
517# Since lxc-3.0.2 we can have lxc generate a profile for the container
518# automatically. The default should be equivalent to the old
519# `lxc-container-default-cgns` profile.
520#
521# Additionally this also added `lxc.apparmor.raw` which can be used to inject
522# additional lines into the profile. We can use that to allow mounting specific
523# file systems.
524sub make_apparmor_config {
525 my ($conf, $unprivileged, $features) = @_;
526
527 # user-configured profile has precedence, but first we go through our own
528 # code to figure out whether we should warn the user:
529
530 my $raw = "lxc.apparmor.profile = generated\n";
531 my @profile_uses;
532
96f8d2a2
WB
533 if ($features->{fuse}) {
534 # For the informational warning:
535 push @profile_uses, 'features:fuse';
536 }
537
5a63f1c5
WB
538 # There's lxc.apparmor.allow_nesting now, which will add the necessary
539 # apparmor lines, create an apparmor namespace for the container, but also
540 # adds proc and sysfs mounts to /dev/.lxc/{proc,sys}. These do not have
541 # lxcfs mounted over them, because that would prevent the container from
542 # mounting new instances of them for nested containers.
543 if ($features->{nesting}) {
544 push @profile_uses, 'features:nesting';
545 $raw .= "lxc.apparmor.allow_nesting = 1\n"
546 } else {
547 # In the default profile in /etc/apparmor.d we patch this in because
548 # otherwise a container can for example run `chown` on /sys, breaking
549 # access to it for non-CAP_DAC_OVERRIDE tools on the host:
550 $raw .= "lxc.apparmor.raw = deny mount -> /proc/,\n";
551 $raw .= "lxc.apparmor.raw = deny mount -> /sys/,\n";
552 # Preferably we could use the 'remount' flag but this does not sit well
553 # with apparmor_parser currently:
554 # mount options=(rw, nosuid, nodev, noexec, remount) -> /sys/,
555 }
556
557 if (my $mount = $features->{mount}) {
558 push @profile_uses, 'features:mount';
559 foreach my $fs (PVE::Tools::split_list($mount)) {
560 $raw .= "lxc.apparmor.raw = mount fstype=$fs,\n";
561 }
562 }
563
564 # More to come?
565
566 if (PVE::LXC::Config->has_lxc_entry($conf, 'lxc.apparmor.profile')) {
567 if (length(my $used = join(', ', @profile_uses))) {
568 warn "explicitly configured lxc.apparmor.profile overrides the following settings: $used\n";
569 }
570 return '';
571 }
572
573 return $raw;
574}
575
27916659 576sub update_lxc_config {
f91f3669 577 my ($vmid, $conf) = @_;
b80dd50a 578
bb1ac2de
DM
579 my $dir = "/var/lib/lxc/$vmid";
580
581 if ($conf->{template}) {
582
583 unlink "$dir/config";
584
585 return;
586 }
587
2bae8172
WB
588 my ($lxc_major, $lxc_minor) = get_lxc_version();
589
27916659 590 my $raw = '';
b80dd50a 591
c37069e8
WB
592 if ($lxc_major >= 4) {
593 # Explicitly don't use relative directories, which is the default, but
594 # note that we do this mostly because they are only applied for *some*
595 # cgroups. Our pve-container@.service now starts lxc-start with `-F`,
596 # so we also don't need to worry about the new monitor cgroup to
597 # confuse systemd.
598 $raw .= "lxc.cgroup.relative = 0\n";
599
600 # To make things easier, let's keep our previous cgroup layout and
601 # simply move the monitor outside:
602 $raw .= "lxc.cgroup.dir.monitor = lxc.monitor/$vmid\n";
603 # cgroup namespace separation for stronger limits:
e532a362
WB
604 $raw .= "lxc.cgroup.dir.container = lxc/$vmid\n";
605 $raw .= "lxc.cgroup.dir.container.inner = ns\n";
c37069e8
WB
606 }
607
27916659
DM
608 die "missing 'arch' - internal error" if !$conf->{arch};
609 $raw .= "lxc.arch = $conf->{arch}\n";
b80dd50a 610
5a63f1c5
WB
611 my $custom_idmap = PVE::LXC::Config->has_lxc_entry($conf, 'lxc.idmap');
612 my $unprivileged = $conf->{unprivileged} || $custom_idmap;
425b62cb 613
27916659 614 my $ostype = $conf->{ostype} || die "missing 'ostype' - internal error";
866e0611 615
ebc027a8
WB
616 File::Path::mkpath($dir);
617
059f7bb4
WB
618 my $cfgpath = '/usr/share/lxc/config';
619 my $inc = "$cfgpath/$ostype.common.conf";
620 $inc ="$cfgpath/common.conf" if !-f $inc;
866e0611 621 $raw .= "lxc.include = $inc\n";
5a63f1c5 622 if ($unprivileged) {
059f7bb4
WB
623 $inc = "$cfgpath/$ostype.userns.conf";
624 $inc = "$cfgpath/userns.conf" if !-f $inc;
625 $raw .= "lxc.include = $inc\n";
27916659 626 }
b80dd50a 627
5a63f1c5
WB
628 my $features = PVE::LXC::Config->parse_features($conf->{features});
629
fb766003 630 $raw .= make_seccomp_config($conf, $vmid, $dir, $unprivileged, $features);
5a63f1c5 631 $raw .= make_apparmor_config($conf, $unprivileged, $features);
96f8d2a2
WB
632 if ($features->{fuse}) {
633 $raw .= "lxc.apparmor.raw = mount fstype=fuse,\n";
634 $raw .= "lxc.mount.entry = /dev/fuse dev/fuse none bind,create=file 0 0\n";
635 }
5a63f1c5 636
741b7737
TL
637 if ($unprivileged && !$features->{force_rw_sys}) {
638 # unpriv. CT default to sys:rw, but that doesn't always plays well with
639 # systemd, e.g., systemd-networkd https://systemd.io/CONTAINER_INTERFACE/
640 $raw .= "lxc.mount.auto = sys:mixed\n";
641 }
642
ce1976b8
FS
643 PVE::LXC::Config->foreach_passthrough_device($conf, sub {
644 my ($key, $device) = @_;
645
646 die "Path is not defined for passthrough device $key"
647 unless (defined($device->{path}));
648
649 my $absolute_path = $device->{path};
650 my ($mode, $rdev) = (stat($absolute_path))[2, 6];
651
652 die "Device $absolute_path does not exist\n" if $! == ENOENT;
653
654 die "Error accessing device $absolute_path\n"
655 if (!defined($mode) || !defined($rdev));
656
657 die "$absolute_path is not a device\n"
658 if (!S_ISBLK($mode) && !S_ISCHR($mode));
659
660 my $major = PVE::Tools::dev_t_major($rdev);
661 my $minor = PVE::Tools::dev_t_minor($rdev);
662 my $device_type_char = S_ISBLK($mode) ? 'b' : 'c';
663 $raw .= "lxc.cgroup2.devices.allow = $device_type_char $major:$minor rw\n";
664 });
665
50df544c
WB
666 # WARNING: DO NOT REMOVE this without making sure that loop device nodes
667 # cannot be exposed to the container with r/w access (cgroup perms).
668 # When this is enabled mounts will still remain in the monitor's namespace
669 # after the container unmounted them and thus will not detach from their
670 # files while the container is running!
c16b8890 671 $raw .= "lxc.monitor.unshare = 1\n";
58cc92a9 672
36def186 673 my ($cgv1, $cgv2) = PVE::CGroup::get_cgroup_controllers();
0b6a2f0e 674
425b62cb
WB
675 # Should we read them from /etc/subuid?
676 if ($unprivileged && !$custom_idmap) {
108c6cab
WB
677 $raw .= "lxc.idmap = u 0 100000 65536\n";
678 $raw .= "lxc.idmap = g 0 100000 65536\n";
425b62cb
WB
679 }
680
d250604f 681 if (!PVE::LXC::Config->has_dev_console($conf)) {
108c6cab 682 $raw .= "lxc.console.path = none\n";
36def186
WB
683 if ($cgv1->{devices}) {
684 $raw .= "lxc.cgroup.devices.deny = c 5:1 rwm\n";
685 } elsif (defined($cgv2)) {
686 $raw .= "lxc.cgroup2.devices.deny = c 5:1 rwm\n";
687 }
eeaea429 688 }
4f958489 689
1b4cf758 690 my $ttycount = PVE::LXC::Config->get_tty_count($conf);
108c6cab 691 $raw .= "lxc.tty.max = $ttycount\n";
cbb03fea 692
c31ad455 693 # some init scripts expect a linux terminal (turnkey).
a691a5a3 694 $raw .= "lxc.environment = TERM=linux\n";
f598979f 695
27916659 696 my $utsname = $conf->{hostname} || "CT$vmid";
108c6cab 697 $raw .= "lxc.uts.name = $utsname\n";
cbb03fea 698
0b6a2f0e
WB
699 if ($cgv1->{memory}) {
700 my $memory = $conf->{memory} || 512;
701 my $swap = $conf->{swap} // 0;
a12a36e0 702
0b6a2f0e
WB
703 my $lxcmem = int($memory*1024*1024);
704 $raw .= "lxc.cgroup.memory.limit_in_bytes = $lxcmem\n";
27916659 705
0b6a2f0e
WB
706 my $lxcswap = int(($memory + $swap)*1024*1024);
707 $raw .= "lxc.cgroup.memory.memsw.limit_in_bytes = $lxcswap\n";
36def186
WB
708 } elsif ($cgv2->{memory}) {
709 my $memory = $conf->{memory} || 512;
710 my $swap = $conf->{swap} // 0;
711
09ea3e7f
TL
712 # cgroup memory usage is limited by the hard 'max' limit (OOM-killer enforced) and the soft
713 # 'high' limit (cgroup processes get throttled and put under heavy reclaim pressure).
926b193e 714 my ($lxc_mem_max, $lxc_mem_high) = PVE::LXC::Config::calculate_memory_constraints($memory);
09ea3e7f 715 $raw .= "lxc.cgroup2.memory.max = $lxc_mem_max\n";
09ea3e7f 716 $raw .= "lxc.cgroup2.memory.high = $lxc_mem_high\n";
36def186
WB
717
718 my $lxcswap = int($swap*1024*1024);
719 $raw .= "lxc.cgroup2.memory.swap.max = $lxcswap\n";
a12a36e0
WL
720 }
721
0b6a2f0e
WB
722 if ($cgv1->{cpu}) {
723 if (my $cpulimit = $conf->{cpulimit}) {
724 $raw .= "lxc.cgroup.cpu.cfs_period_us = 100000\n";
725 my $value = int(100000*$cpulimit);
726 $raw .= "lxc.cgroup.cpu.cfs_quota_us = $value\n";
727 }
728
a3d114d7 729 my $shares = PVE::CGroup::clamp_cpu_shares($conf->{cpuunits});
0b6a2f0e 730 $raw .= "lxc.cgroup.cpu.shares = $shares\n";
36def186
WB
731 } elsif ($cgv2->{cpu}) {
732 # See PVE::CGroup
733 if (my $cpulimit = $conf->{cpulimit}) {
734 my $value = int(100000*$cpulimit);
735 $raw .= "lxc.cgroup2.cpu.max = $value 100000\n";
736 }
737
738 if (defined(my $shares = $conf->{cpuunits})) {
a3d114d7 739 $shares = PVE::CGroup::clamp_cpu_shares($shares);
36def186
WB
740 $raw .= "lxc.cgroup2.cpu.weight = $shares\n";
741 }
0b6a2f0e 742 }
27916659 743
fddaa91b
DM
744 die "missing 'rootfs' configuration\n"
745 if !defined($conf->{rootfs});
746
e4034859 747 my $mountpoint = PVE::LXC::Config->parse_volume('rootfs', $conf->{rootfs});
a3076d81 748
108c6cab 749 $raw .= "lxc.rootfs.path = $dir/rootfs\n";
27916659 750
e756bdd6 751 foreach my $k (sort keys %$conf) {
27916659
DM
752 next if $k !~ m/^net(\d+)$/;
753 my $ind = $1;
1b4cf758 754 my $d = PVE::LXC::Config->parse_lxc_network($conf->{$k});
108c6cab
WB
755 $raw .= "lxc.net.$ind.type = veth\n";
756 $raw .= "lxc.net.$ind.veth.pair = veth${vmid}i${ind}\n";
757 $raw .= "lxc.net.$ind.hwaddr = $d->{hwaddr}\n" if defined($d->{hwaddr});
758 $raw .= "lxc.net.$ind.name = $d->{name}\n" if defined($d->{name});
5fbd58cb 759
cf6dd8a3
AD
760 my $bridge_mtu = PVE::Network::read_bridge_mtu($d->{bridge});
761 my $mtu = $d->{mtu} || $bridge_mtu;
762
5fbd58cb 763 # Keep container from starting with invalid mtu configuration
cf6dd8a3
AD
764 die "$k: MTU size '$mtu' is bigger than bridge MTU '$bridge_mtu'\n"
765 if ($mtu > $bridge_mtu);
5fbd58cb 766
cf6dd8a3 767 $raw .= "lxc.net.$ind.mtu = $mtu\n";
2bae8172
WB
768
769 # Starting with lxc 4.0, we do not patch lxc to execute our up-scripts.
770 if ($lxc_major >= 4) {
771 $raw .= "lxc.net.$ind.script.up = /usr/share/lxc/lxcnetaddbr\n";
772 }
a12a36e0
WL
773 }
774
42b51c01
WB
775 my $had_cpuset = 0;
776 if (my $lxcconf = $conf->{lxc}) {
777 foreach my $entry (@$lxcconf) {
778 my ($k, $v) = @$entry;
2222f9f4 779 $had_cpuset = 1 if $k eq 'lxc.cgroup.cpuset.cpus' || $k eq 'lxc.cgroup2.cpuset.cpus';
42b51c01 780 $raw .= "$k = $v\n";
e576f689 781 }
42b51c01 782 }
27916659 783
42b51c01 784 my $cpuset;
85ccb17f 785 my ($cpuset_cgroup, $cpuset_version) = eval { PVE::CGroup::cpuset_controller_path() };
42b51c01
WB
786 if (defined($cpuset_cgroup)) {
787 $cpuset = eval { PVE::CpuSet->new_from_path("$cpuset_cgroup/lxc", 1) }
788 || PVE::CpuSet->new_from_path($cpuset_cgroup, 1);
789 }
790 my $cores = $conf->{cores};
791 if (!$had_cpuset && $cores && $cpuset) {
792 my @members = $cpuset->members();
793 while (scalar(@members) > $cores) {
794 my $randidx = int(rand(scalar(@members)));
795 $cpuset->delete($members[$randidx]);
796 splice(@members, $randidx, 1); # keep track of the changes
92902047 797 }
4c97a31d
WB
798 my $ver = $cpuset_version == 1 ? '' : '2';
799 $raw .= "lxc.cgroup$ver.cpuset.cpus = ".$cpuset->short_string()."\n";
92902047 800 }
0b6a2f0e 801
27916659
DM
802 File::Path::mkpath("$dir/rootfs");
803
804 PVE::Tools::file_set_contents("$dir/config", $raw);
b80dd50a
DM
805}
806
117636e5
DM
807# verify and cleanup nameserver list (replace \0 with ' ')
808sub verify_nameserver_list {
809 my ($nameserver_list) = @_;
810
811 my @list = ();
812 foreach my $server (PVE::Tools::split_list($nameserver_list)) {
08a58f12 813 PVE::LXC::Config::verify_ip_with_ll_iface($server);
117636e5
DM
814 push @list, $server;
815 }
816
817 return join(' ', @list);
818}
819
820sub verify_searchdomain_list {
821 my ($searchdomain_list) = @_;
822
823 my @list = ();
824 foreach my $server (PVE::Tools::split_list($searchdomain_list)) {
825 # todo: should we add checks for valid dns domains?
826 push @list, $server;
827 }
828
829 return join(' ', @list);
830}
831
aca816ad 832sub get_console_command {
65213b67 833 my ($vmid, $conf, $escapechar) = @_;
39413635 834
65213b67
TM
835 # '-1' as $escapechar disables keyboard escape sequence
836 # any other passed char (a-z) will result in <Ctrl+$escapechar q>
aca816ad 837
1b4cf758 838 my $cmode = PVE::LXC::Config->get_cmode($conf);
aca816ad 839
4d494664 840 my $cmd = [];
aca816ad 841 if ($cmode eq 'console') {
4d494664 842 push @$cmd, 'lxc-console', '-n', $vmid, '-t', 0;
65213b67 843 push @$cmd, '-e', $escapechar if $escapechar;
aca816ad 844 } elsif ($cmode eq 'tty') {
4d494664 845 push @$cmd, 'lxc-console', '-n', $vmid;
65213b67 846 push @$cmd, '-e', $escapechar if $escapechar;
aca816ad 847 } elsif ($cmode eq 'shell') {
4d494664 848 push @$cmd, 'lxc-attach', '--clear-env', '-n', $vmid;
aca816ad
DM
849 } else {
850 die "internal error";
851 }
4d494664
DC
852
853 return $cmd;
aca816ad
DM
854}
855
c325b32f
DM
856sub get_primary_ips {
857 my ($conf) = @_;
858
859 # return data from net0
cbb03fea 860
27916659 861 return undef if !defined($conf->{net0});
1b4cf758 862 my $net = PVE::LXC::Config->parse_lxc_network($conf->{net0});
c325b32f
DM
863
864 my $ipv4 = $net->{ip};
db78a181
WB
865 if ($ipv4) {
866 if ($ipv4 =~ /^(dhcp|manual)$/) {
867 $ipv4 = undef
868 } else {
869 $ipv4 =~ s!/\d+$!!;
870 }
871 }
65e5eaa3 872 my $ipv6 = $net->{ip6};
db78a181 873 if ($ipv6) {
5f291c7d 874 if ($ipv6 =~ /^(auto|dhcp|manual)$/) {
db78a181
WB
875 $ipv6 = undef;
876 } else {
877 $ipv6 =~ s!/\d+$!!;
878 }
879 }
cbb03fea 880
c325b32f
DM
881 return ($ipv4, $ipv6);
882}
148d1cb4 883
b407293b
WB
884sub delete_mountpoint_volume {
885 my ($storage_cfg, $vmid, $volume) = @_;
886
d250604f 887 return if PVE::LXC::Config->classify_mountpoint($volume) ne 'volume';
b407293b
WB
888
889 my ($vtype, $name, $owner) = PVE::Storage::parse_volname($storage_cfg, $volume);
6b81ef77
TL
890
891 if ($vmid == $owner) {
892 PVE::Storage::vdisk_free($storage_cfg, $volume);
893 } else {
894 warn "ignore deletion of '$volume', CT $vmid isn't the owner!\n";
895 }
b407293b 896}
ef241384 897
27916659 898sub destroy_lxc_container {
3b1c0970 899 my ($storage_cfg, $vmid, $conf, $replacement_conf, $purge_unreferenced) = @_;
148d1cb4 900
6cac5615
FG
901 my $volids = {};
902 my $remove_volume = sub {
db8989e1 903 my ($ms, $mountpoint) = @_;
6cac5615
FG
904
905 my $volume = $mountpoint->{volume};
906
907 return if $volids->{$volume};
908 $volids->{$volume} = 1;
909
910 delete_mountpoint_volume($storage_cfg, $vmid, $volume);
911 };
912 PVE::LXC::Config->foreach_volume_full($conf, {include_unused => 1}, $remove_volume);
913
914 PVE::LXC::Config->foreach_volume_full($conf->{pending}, {include_unused => 1}, $remove_volume);
db8989e1 915
3b1c0970 916 if ($purge_unreferenced) { # also remove unreferenced disk
5a0db48a 917 my $vmdisks = PVE::Storage::vdisk_list($storage_cfg, undef, $vmid, undef, 'rootdir');
3b1c0970
TL
918 PVE::Storage::foreach_volid($vmdisks, sub {
919 my ($volid, $sid, $volname, $d) = @_;
920 eval { PVE::Storage::vdisk_free($storage_cfg, $volid) };
921 warn $@ if $@;
922 });
923 }
924
986c79d6
AD
925 delete_ifaces_ipams_ips($conf, $vmid);
926
27916659
DM
927 rmdir "/var/lib/lxc/$vmid/rootfs";
928 unlink "/var/lib/lxc/$vmid/config";
929 rmdir "/var/lib/lxc/$vmid";
bccaa371
FG
930 if (defined $replacement_conf) {
931 PVE::LXC::Config->write_config($vmid, $replacement_conf);
932 } else {
4eeb9af1 933 PVE::LXC::Config->destroy_config($vmid);
bccaa371 934 }
148d1cb4 935}
68fba17b 936
ef241384 937sub vm_stop_cleanup {
5fa890f0 938 my ($storage_cfg, $vmid, $conf, $keepActive) = @_;
bf9d912c 939
38e7891a
TL
940 return if $keepActive;
941
942 eval {
943 my $vollist = PVE::LXC::Config->get_vm_volumes($conf);
944 PVE::Storage::deactivate_volumes($storage_cfg, $vollist);
ef241384
DM
945 };
946 warn $@ if $@; # avoid errors - just warn
947}
948
83ec30ad
CH
949sub net_tap_plug : prototype($$) {
950 my ($iface, $net) = @_;
9e569488
CH
951
952 if (defined($net->{link_down})) {
953 PVE::Tools::run_command(['/sbin/ip', 'link', 'set', 'dev', $iface, 'down']);
954 # Don't add disconnected interfaces to the bridge, otherwise e.g. applying any network
955 # change (e.g. `ifreload -a`) could (re-)activate it unintentionally.
956 return;
957 }
958
83ec30ad
CH
959 my ($bridge, $tag, $firewall, $trunks, $rate, $hwaddr) =
960 $net->@{'bridge', 'tag', 'firewall', 'trunks', 'rate', 'hwaddr'};
2b181f39
CH
961
962 if ($have_sdn) {
963 PVE::Network::SDN::Zones::tap_plug($iface, $bridge, $tag, $firewall, $trunks, $rate);
432793c1 964 PVE::Network::SDN::Zones::add_bridge_fdb($iface, $hwaddr, $bridge);
2b181f39 965 } else {
83ec30ad 966 PVE::Network::tap_plug($iface, $bridge, $tag, $firewall, $trunks, $rate, { mac => $hwaddr });
2b181f39 967 }
9e569488
CH
968
969 PVE::Tools::run_command(['/sbin/ip', 'link', 'set', 'dev', $iface, 'up']);
2b181f39
CH
970}
971
93cdbbfb 972sub update_net {
bedeaaf1 973 my ($vmid, $conf, $opt, $newnet, $netid, $rootdir) = @_;
93cdbbfb 974
18862537
WB
975 if ($newnet->{type} ne 'veth') {
976 # for when there are physical interfaces
977 die "cannot update interface of type $newnet->{type}";
978 }
979
980 my $veth = "veth${vmid}i${netid}";
93cdbbfb
AD
981 my $eth = $newnet->{name};
982
18862537 983 if (my $oldnetcfg = $conf->{$opt}) {
1b4cf758 984 my $oldnet = PVE::LXC::Config->parse_lxc_network($oldnetcfg);
18862537 985
2ae004ec
OB
986 if (safe_string_ne($oldnet->{hwaddr}, $newnet->{hwaddr}) ||
987 safe_string_ne($oldnet->{name}, $newnet->{name})) {
93cdbbfb 988
18862537 989 PVE::Network::veth_delete($veth);
5ad70b8d 990
32de2c46 991 if ($have_sdn && safe_string_ne($oldnet->{hwaddr}, $newnet->{hwaddr})) {
5ad70b8d
AD
992 eval { PVE::Network::SDN::Vnets::del_ips_from_mac($oldnet->{bridge}, $oldnet->{hwaddr}, $conf->{hostname}) };
993 warn $@ if $@;
32de2c46
SH
994
995 PVE::Network::SDN::Vnets::add_next_free_cidr($newnet->{bridge}, $conf->{hostname}, $newnet->{hwaddr}, $vmid, undef, 1);
996 PVE::Network::SDN::Vnets::add_dhcp_mapping($newnet->{bridge}, $newnet->{hwaddr});
5ad70b8d
AD
997 }
998
bedeaaf1 999 delete $conf->{$opt};
67afe46e 1000 PVE::LXC::Config->write_config($vmid, $conf);
93cdbbfb 1001
18862537 1002 hotplug_net($vmid, $conf, $opt, $newnet, $netid);
bedeaaf1 1003
380962c7 1004 } else {
32de2c46
SH
1005 my $bridge_changed = safe_string_ne($oldnet->{bridge}, $newnet->{bridge});
1006
1007 if ($bridge_changed ||
2ae004ec 1008 safe_num_ne($oldnet->{tag}, $newnet->{tag}) ||
9e569488
CH
1009 safe_num_ne($oldnet->{firewall}, $newnet->{firewall}) ||
1010 safe_boolean_ne($oldnet->{link_down}, $newnet->{link_down})
d21e45d5 1011 ) {
18862537 1012 if ($oldnet->{bridge}) {
32de2c46 1013 my $oldbridge = $oldnet->{bridge};
5ad70b8d 1014
bedeaaf1 1015 PVE::Network::tap_unplug($veth);
18862537
WB
1016 foreach (qw(bridge tag firewall)) {
1017 delete $oldnet->{$_};
1018 }
1b4cf758 1019 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($oldnet);
67afe46e 1020 PVE::LXC::Config->write_config($vmid, $conf);
5ad70b8d 1021
32de2c46
SH
1022 if ($have_sdn && $bridge_changed) {
1023 eval { PVE::Network::SDN::Vnets::del_ips_from_mac($oldbridge, $oldnet->{hwaddr}, $conf->{hostname}) };
5ad70b8d
AD
1024 warn $@ if $@;
1025 }
bedeaaf1 1026 }
93cdbbfb 1027
32de2c46 1028 if ($have_sdn && $bridge_changed) {
5ad70b8d
AD
1029 PVE::Network::SDN::Vnets::add_next_free_cidr($newnet->{bridge}, $conf->{hostname}, $newnet->{hwaddr}, $vmid, undef, 1);
1030 }
83ec30ad 1031 PVE::LXC::net_tap_plug($veth, $newnet);
ab2ec461 1032
380962c7 1033 # This includes the rate:
9e569488 1034 foreach (qw(bridge tag firewall rate link_down)) {
18862537
WB
1035 $oldnet->{$_} = $newnet->{$_} if $newnet->{$_};
1036 }
2ae004ec 1037 } elsif (safe_string_ne($oldnet->{rate}, $newnet->{rate})) {
380962c7
WB
1038 # Rate can be applied on its own but any change above needs to
1039 # include the rate in tap_plug since OVS resets everything.
1040 PVE::Network::tap_rate_limit($veth, $newnet->{rate});
1041 $oldnet->{rate} = $newnet->{rate}
1042 }
1043 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($oldnet);
1044 PVE::LXC::Config->write_config($vmid, $conf);
93cdbbfb
AD
1045 }
1046 } else {
cff4ad30
WB
1047 if ($have_sdn) {
1048 PVE::Network::SDN::Vnets::add_next_free_cidr($newnet->{bridge}, $conf->{hostname}, $newnet->{hwaddr}, $vmid, undef, 1);
1049 PVE::Network::SDN::Vnets::add_dhcp_mapping($newnet->{bridge}, $newnet->{hwaddr});
1050 }
32de2c46 1051
18862537 1052 hotplug_net($vmid, $conf, $opt, $newnet, $netid);
93cdbbfb
AD
1053 }
1054
bedeaaf1 1055 update_ipconfig($vmid, $conf, $opt, $eth, $newnet, $rootdir);
93cdbbfb
AD
1056}
1057
1058sub hotplug_net {
18862537 1059 my ($vmid, $conf, $opt, $newnet, $netid) = @_;
93cdbbfb 1060
18862537 1061 my $veth = "veth${vmid}i${netid}";
cbb03fea 1062 my $vethpeer = $veth . "p";
93cdbbfb
AD
1063 my $eth = $newnet->{name};
1064
a1ff8c37 1065 if ($have_sdn) {
ab2ec461 1066 PVE::Network::SDN::Zones::veth_create($veth, $vethpeer, $newnet->{bridge}, $newnet->{hwaddr});
ab2ec461
AD
1067 } else {
1068 PVE::Network::veth_create($veth, $vethpeer, $newnet->{bridge}, $newnet->{hwaddr});
ab2ec461 1069 }
83ec30ad
CH
1070
1071 PVE::LXC::net_tap_plug($veth, $newnet);
93cdbbfb 1072
cbb03fea 1073 # attach peer in container
93cdbbfb
AD
1074 my $cmd = ['lxc-device', '-n', $vmid, 'add', $vethpeer, "$eth" ];
1075 PVE::Tools::run_command($cmd);
1076
cbb03fea 1077 # link up peer in container
93cdbbfb
AD
1078 $cmd = ['lxc-attach', '-n', $vmid, '-s', 'NETWORK', '--', '/sbin/ip', 'link', 'set', $eth ,'up' ];
1079 PVE::Tools::run_command($cmd);
bedeaaf1 1080
18862537 1081 my $done = { type => 'veth' };
9e569488 1082 foreach (qw(bridge tag firewall hwaddr name link_down)) {
18862537
WB
1083 $done->{$_} = $newnet->{$_} if $newnet->{$_};
1084 }
1b4cf758 1085 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($done);
bedeaaf1 1086
67afe46e 1087 PVE::LXC::Config->write_config($vmid, $conf);
93cdbbfb
AD
1088}
1089
3d56c9c0
LN
1090sub get_interfaces {
1091 my ($vmid) = @_;
1092
1093 my $pid = eval { find_lxc_pid($vmid); };
1094 return if $@;
1095
1096 my $output;
1097 # enters the network namespace of the container and executes 'ip a'
1098 run_command(['nsenter', '-t', $pid, '--net', '--', 'ip', '--json', 'a'],
1099 outfunc => sub { $output .= shift; });
1100
1101 my $config = JSON::decode_json($output);
1102
1103 my $res;
1104 for my $interface ($config->@*) {
1105 my $obj = { name => $interface->{ifname} };
1106 for my $ip ($interface->{addr_info}->@*) {
1107 $obj->{$ip->{family}} = $ip->{local} . "/" . $ip->{prefixlen};
1108 }
1109 $obj->{hwaddr} = $interface->{address};
1110 push @$res, $obj
1111 }
1112
1113 return $res;
1114}
1115
68a05bb3 1116sub update_ipconfig {
bedeaaf1
AD
1117 my ($vmid, $conf, $opt, $eth, $newnet, $rootdir) = @_;
1118
f2104b80 1119 my $lxc_setup = PVE::LXC::Setup->new($conf, $rootdir);
bedeaaf1 1120
1b4cf758 1121 my $optdata = PVE::LXC::Config->parse_lxc_network($conf->{$opt});
84e0c123
WB
1122 my $deleted = [];
1123 my $added = [];
8d723477
WB
1124 my $nscmd = sub {
1125 my $cmdargs = shift;
1126 PVE::Tools::run_command(['lxc-attach', '-n', $vmid, '-s', 'NETWORK', '--', @_], %$cmdargs);
84e0c123 1127 };
8d723477 1128 my $ipcmd = sub { &$nscmd({}, '/sbin/ip', @_) };
2bfd1615 1129
84e0c123 1130 my $change_ip_config = sub {
f39002a6
DM
1131 my ($ipversion) = @_;
1132
1133 my $family_opt = "-$ipversion";
1134 my $suffix = $ipversion == 4 ? '' : $ipversion;
84e0c123
WB
1135 my $gw= "gw$suffix";
1136 my $ip= "ip$suffix";
bedeaaf1 1137
6178b0dd
WB
1138 my $newip = $newnet->{$ip};
1139 my $newgw = $newnet->{$gw};
1140 my $oldip = $optdata->{$ip};
ded5d25a 1141 my $oldgw = $optdata->{$gw};
6178b0dd 1142
2ae004ec
OB
1143 my $change_ip = safe_string_ne($oldip, $newip);
1144 my $change_gw = safe_string_ne($oldgw, $newgw);
bedeaaf1 1145
84e0c123 1146 return if !$change_ip && !$change_gw;
68a05bb3 1147
84e0c123 1148 # step 1: add new IP, if this fails we cancel
292aff54
WB
1149 my $is_real_ip = ($newip && $newip !~ /^(?:auto|dhcp|manual)$/);
1150 if ($change_ip && $is_real_ip) {
8d723477 1151 eval { &$ipcmd($family_opt, 'addr', 'add', $newip, 'dev', $eth); };
84e0c123
WB
1152 if (my $err = $@) {
1153 warn $err;
1154 return;
1155 }
bedeaaf1 1156 }
bedeaaf1 1157
84e0c123
WB
1158 # step 2: replace gateway
1159 # If this fails we delete the added IP and cancel.
1160 # If it succeeds we save the config and delete the old IP, ignoring
1161 # errors. The config is then saved.
1162 # Note: 'ip route replace' can add
1163 if ($change_gw) {
6178b0dd 1164 if ($newgw) {
292aff54
WB
1165 eval {
1166 if ($is_real_ip && !PVE::Network::is_ip_in_cidr($newgw, $newip, $ipversion)) {
1167 &$ipcmd($family_opt, 'route', 'add', $newgw, 'dev', $eth);
1168 }
1169 &$ipcmd($family_opt, 'route', 'replace', 'default', 'via', $newgw);
1170 };
84e0c123
WB
1171 if (my $err = $@) {
1172 warn $err;
1173 # the route was not replaced, the old IP is still available
1174 # rollback (delete new IP) and cancel
1175 if ($change_ip) {
8d723477 1176 eval { &$ipcmd($family_opt, 'addr', 'del', $newip, 'dev', $eth); };
84e0c123
WB
1177 warn $@ if $@; # no need to die here
1178 }
1179 return;
1180 }
1181 } else {
8d723477 1182 eval { &$ipcmd($family_opt, 'route', 'del', 'default'); };
84e0c123
WB
1183 # if the route was not deleted, the guest might have deleted it manually
1184 # warn and continue
1185 warn $@ if $@;
1186 }
ded5d25a
DL
1187 if ($oldgw && $oldip && !PVE::Network::is_ip_in_cidr($oldgw, $oldip)) {
1188 eval { &$ipcmd($family_opt, 'route', 'del', $oldgw, 'dev', $eth); };
1189 # warn if the route was deleted manually
1190 warn $@ if $@;
1191 }
2bfd1615 1192 }
2bfd1615 1193
6178b0dd 1194 # from this point on we save the configuration
84e0c123 1195 # step 3: delete old IP ignoring errors
6178b0dd 1196 if ($change_ip && $oldip && $oldip !~ /^(?:auto|dhcp)$/) {
8d723477
WB
1197 # We need to enable promote_secondaries, otherwise our newly added
1198 # address will be removed along with the old one.
1199 my $promote = 0;
1200 eval {
1201 if ($ipversion == 4) {
1202 &$nscmd({ outfunc => sub { $promote = int(shift) } },
1203 'cat', "/proc/sys/net/ipv4/conf/$eth/promote_secondaries");
1204 &$nscmd({}, 'sysctl', "net.ipv4.conf.$eth.promote_secondaries=1");
1205 }
1206 &$ipcmd($family_opt, 'addr', 'del', $oldip, 'dev', $eth);
1207 };
84e0c123 1208 warn $@ if $@; # no need to die here
8d723477
WB
1209
1210 if ($ipversion == 4) {
1211 &$nscmd({}, 'sysctl', "net.ipv4.conf.$eth.promote_secondaries=$promote");
1212 }
bedeaaf1
AD
1213 }
1214
84e0c123
WB
1215 foreach my $property ($ip, $gw) {
1216 if ($newnet->{$property}) {
1217 $optdata->{$property} = $newnet->{$property};
1218 } else {
1219 delete $optdata->{$property};
1220 }
bedeaaf1 1221 }
1b4cf758 1222 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($optdata);
67afe46e 1223 PVE::LXC::Config->write_config($vmid, $conf);
84e0c123
WB
1224 $lxc_setup->setup_network($conf);
1225 };
bedeaaf1 1226
f39002a6
DM
1227 &$change_ip_config(4);
1228 &$change_ip_config(6);
489e960d
WL
1229
1230}
1231
9a14c1fa
WB
1232my $open_namespace = sub {
1233 my ($vmid, $pid, $kind) = @_;
1234 sysopen my $fd, "/proc/$pid/ns/$kind", O_RDONLY
1235 or die "failed to open $kind namespace of container $vmid: $!\n";
1236 return $fd;
1237};
1238
34fdb3d7 1239my $enter_namespace = sub {
9a14c1fa
WB
1240 my ($vmid, $pid, $kind, $type) = @_;
1241 my $fd = $open_namespace->($vmid, $pid, $kind);
34fdb3d7 1242 PVE::Tools::setns(fileno($fd), $type)
9a14c1fa 1243 or die "failed to enter $kind namespace of container $vmid: $!\n";
34fdb3d7
WB
1244 close $fd;
1245};
1246
418b94fe
WB
1247my $get_container_namespace = sub {
1248 my ($vmid, $pid, $kind) = @_;
1249
1250 my $pidfd;
1251 if (!defined($pid)) {
1252 # Pin the pid while we're grabbing its stuff from /proc
1253 ($pid, $pidfd) = open_lxc_pid($vmid)
1254 or die "failed to open pidfd of container $vmid\'s init process\n";
1255 }
1256
1257 return $open_namespace->($vmid, $pid, $kind);
1258};
1259
34fdb3d7
WB
1260my $do_syncfs = sub {
1261 my ($vmid, $pid, $socket) = @_;
1262
1263 &$enter_namespace($vmid, $pid, 'mnt', PVE::Tools::CLONE_NEWNS);
1264
1265 # Tell the parent process to start reading our /proc/mounts
1266 print {$socket} "go\n";
1267 $socket->flush();
1268
1269 # Receive /proc/self/mounts
1270 my $mountdata = do { local $/ = undef; <$socket> };
1271 close $socket;
1272
0c0be8e4
SI
1273 my %nosyncfs = (
1274 cgroup => 1,
1275 cgroup2 => 1,
1276 devtmpfs => 1,
1277 devpts => 1,
1278 'fuse.lxcfs' => 1,
1279 fusectl => 1,
1280 mqueue => 1,
1281 proc => 1,
1282 sysfs => 1,
1283 tmpfs => 1,
1284 );
1285
34fdb3d7
WB
1286 # Now sync all mountpoints...
1287 my $mounts = PVE::ProcFSTools::parse_mounts($mountdata);
1288 foreach my $mp (@$mounts) {
1289 my ($what, $dir, $fs) = @$mp;
0c0be8e4 1290 next if $nosyncfs{$fs};
34fdb3d7
WB
1291 eval { PVE::Tools::sync_mountpoint($dir); };
1292 warn $@ if $@;
1293 }
1294};
1295
1296sub sync_container_namespace {
1297 my ($vmid) = @_;
1298 my $pid = find_lxc_pid($vmid);
1299
1300 # SOCK_DGRAM is nicer for barriers but cannot be slurped
1301 socketpair my $pfd, my $cfd, AF_UNIX, SOCK_STREAM, PF_UNSPEC
1302 or die "failed to create socketpair: $!\n";
1303
1304 my $child = fork();
1305 die "fork failed: $!\n" if !defined($child);
1306
1307 if (!$child) {
1308 eval {
1309 close $pfd;
1310 &$do_syncfs($vmid, $pid, $cfd);
1311 };
1312 if (my $err = $@) {
1313 warn $err;
1314 POSIX::_exit(1);
1315 }
1316 POSIX::_exit(0);
1317 }
1318 close $cfd;
1319 my $go = <$pfd>;
1320 die "failed to enter container namespace\n" if $go ne "go\n";
1321
1322 open my $mounts, '<', "/proc/$child/mounts"
1323 or die "failed to open container's /proc/mounts: $!\n";
1324 my $mountdata = do { local $/ = undef; <$mounts> };
1325 close $mounts;
1326 print {$pfd} $mountdata;
1327 close $pfd;
1328
1329 while (waitpid($child, 0) != $child) {}
1330 die "failed to sync container namespace\n" if $? != 0;
1331}
1332
bb1ac2de
DM
1333sub template_create {
1334 my ($vmid, $conf) = @_;
1335
1336 my $storecfg = PVE::Storage::config();
1337
015740e6 1338 PVE::LXC::Config->foreach_volume($conf, sub {
9d1cb46b 1339 my ($ms, $mountpoint) = @_;
bb1ac2de 1340
9d1cb46b 1341 my $volid = $mountpoint->{volume};
bb1ac2de 1342
9d1cb46b
WL
1343 die "Template feature is not available for '$volid'\n"
1344 if !PVE::Storage::volume_has_feature($storecfg, 'template', $volid);
1345 });
bb1ac2de 1346
015740e6 1347 PVE::LXC::Config->foreach_volume($conf, sub {
9d1cb46b
WL
1348 my ($ms, $mountpoint) = @_;
1349
1350 my $volid = $mountpoint->{volume};
1351
1352 PVE::Storage::activate_volumes($storecfg, [$volid]);
1353
1354 my $template_volid = PVE::Storage::vdisk_create_base($storecfg, $volid);
1355 $mountpoint->{volume} = $template_volid;
1356 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq "rootfs");
1357 });
bb1ac2de 1358
67afe46e 1359 PVE::LXC::Config->write_config($vmid, $conf);
bb1ac2de
DM
1360}
1361
52389a07 1362sub check_ct_modify_config_perm {
de41bced 1363 my ($rpcenv, $authuser, $vmid, $pool, $oldconf, $newconf, $delete, $unprivileged) = @_;
52389a07 1364
c81f19d1 1365 return 1 if $authuser eq 'root@pam';
c824fbed 1366 my $storage_cfg = PVE::Storage::config();
52389a07 1367
f1ba1a4b
WB
1368 my $check = sub {
1369 my ($opt, $delete) = @_;
f2357408 1370 if ($opt eq 'cores' || $opt eq 'cpuunits' || $opt eq 'cpulimit') {
52389a07 1371 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.CPU']);
e59a61ed 1372 } elsif ($opt eq 'rootfs' || $opt =~ /^mp\d+$/) {
52389a07 1373 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Disk']);
f1ba1a4b 1374 return if $delete;
e4034859 1375 my $data = PVE::LXC::Config->parse_volume($opt, $newconf->{$opt});
9d294016
FG
1376 raise_perm_exc("mount point type $data->{type} is only allowed for root\@pam")
1377 if $data->{type} ne 'volume';
c824fbed
FG
1378 my $volid = $data->{volume};
1379 if ($volid =~ $NEW_DISK_RE) {
1380 my $sid = $1;
1381 $rpcenv->check($authuser, "/storage/$sid", ['Datastore.AllocateSpace']);
1382 } else {
d387c0be
FE
1383 PVE::Storage::check_volume_access(
1384 $rpcenv,
1385 $authuser,
1386 $storage_cfg,
1387 $vmid,
1388 $volid,
1389 'rootdir',
1390 );
c824fbed 1391 }
52389a07
DM
1392 } elsif ($opt eq 'memory' || $opt eq 'swap') {
1393 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Memory']);
cb3eb606 1394 } elsif ($opt =~ m/^net\d+$/) {
52389a07 1395 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Network']);
eade3e4a
FE
1396 check_bridge_access($rpcenv, $authuser, $oldconf->{$opt}) if $oldconf->{$opt};
1397 check_bridge_access($rpcenv, $authuser, $newconf->{$opt}) if $newconf->{$opt};
ce1976b8
FS
1398 } elsif ($opt =~ m/^dev\d+$/) {
1399 raise_perm_exc("configuring device passthrough is only allowed for root\@pam");
cb3eb606
FG
1400 } elsif ($opt eq 'nameserver' || $opt eq 'searchdomain' || $opt eq 'hostname') {
1401 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Network']);
5a63f1c5 1402 } elsif ($opt eq 'features') {
88ef1700
DC
1403 raise_perm_exc("changing feature flags for privileged container is only allowed for root\@pam")
1404 if !$unprivileged;
1405
1406 my $nesting_changed = 0;
1407 my $other_changed = 0;
1408 if (!$delete) {
1409 my $features = PVE::LXC::Config->parse_features($newconf->{$opt});
1410 if (defined($oldconf) && $oldconf->{$opt}) {
1411 # existing container with features
1412 my $old_features = PVE::LXC::Config->parse_features($oldconf->{$opt});
1413 for my $feature ((keys %$old_features, keys %$features)) {
1414 my $old = $old_features->{$feature} // '';
1415 my $new = $features->{$feature} // '';
1416 if ($old ne $new) {
1417 if ($feature eq 'nesting') {
1418 $nesting_changed = 1;
1419 next;
1420 } else {
1421 $other_changed = 1;
1422 last;
1423 }
1424 }
1425 }
1426 } else {
1427 # new container or no features defined
1428 if (scalar(keys %$features) == 1 && $features->{nesting}) {
1429 $nesting_changed = 1;
1430 } elsif (scalar(keys %$features) > 0) {
1431 $other_changed = 1;
1432 }
1433 }
1434 } else {
1435 my $features = PVE::LXC::Config->parse_features($oldconf->{$opt});
1436 if (scalar(keys %$features) == 1 && $features->{nesting}) {
1437 $nesting_changed = 1;
1438 } elsif (scalar(keys %$features) > 0) {
1439 $other_changed = 1;
1440 }
1441 }
1442 raise_perm_exc("changing feature flags (except nesting) is only allowed for root\@pam")
1443 if $other_changed;
1444 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Allocate'])
1445 if $nesting_changed;
1a416433
DC
1446 } elsif ($opt eq 'hookscript') {
1447 # For now this is restricted to root@pam
1448 raise_perm_exc("changing the hookscript is only allowed for root\@pam");
7a57f63a
DC
1449 } elsif ($opt eq 'tags') {
1450 my $old = $oldconf->{$opt};
1451 my $new = $delete ? '' : $newconf->{$opt};
1452 PVE::GuestHelpers::assert_tag_permissions($vmid, $old, $new, $rpcenv, $authuser);
52389a07
DM
1453 } else {
1454 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Options']);
1455 }
f1ba1a4b
WB
1456 };
1457
1458 foreach my $opt (keys %$newconf) {
1459 &$check($opt, 0);
1460 }
1461 foreach my $opt (@$delete) {
1462 &$check($opt, 1);
52389a07
DM
1463 }
1464
1465 return 1;
1466}
1467
ee81952f
FG
1468sub check_bridge_access {
1469 my ($rpcenv, $authuser, $raw) = @_;
1470
1471 return 1 if $authuser eq 'root@pam';
1472
1473 my $net = PVE::LXC::Config->parse_lxc_network($raw);
d309da6c 1474 my ($bridge, $tag, $trunks) = $net->@{'bridge', 'tag', 'trunks'};
ee81952f
FG
1475 check_vnet_access($rpcenv, $authuser, $bridge, $tag, $trunks);
1476
1477 return 1;
1478};
1479
9622e848 1480sub umount_all {
da629848 1481 my ($vmid, $storage_cfg, $conf, $noerr) = @_;
9622e848
DM
1482
1483 my $rootdir = "/var/lib/lxc/$vmid/rootfs";
d250604f 1484 my $volid_list = PVE::LXC::Config->get_vm_volumes($conf);
9622e848 1485
73058b84
TL
1486 my $res = 1;
1487
015740e6 1488 PVE::LXC::Config->foreach_volume_full($conf, {'reverse' => 1}, sub {
9622e848
DM
1489 my ($ms, $mountpoint) = @_;
1490
1491 my $volid = $mountpoint->{volume};
1492 my $mount = $mountpoint->{mp};
1493
1494 return if !$volid || !$mount;
1495
d18f96b4 1496 my $mount_path = "$rootdir/$mount";
f845a93d 1497 $mount_path =~ s!/+!/!g;
9622e848 1498
228a5a1d
WL
1499 return if !PVE::ProcFSTools::is_mounted($mount_path);
1500
9622e848 1501 eval {
d18f96b4 1502 PVE::Tools::run_command(['umount', '-d', $mount_path]);
9622e848
DM
1503 };
1504 if (my $err = $@) {
1505 if ($noerr) {
73058b84 1506 $res = 0;
9622e848
DM
1507 warn $err;
1508 } else {
1509 die $err;
1510 }
1511 }
1512 });
73058b84
TL
1513
1514 return $res; # tell caller if (some) umounts failed for the noerr case
9622e848
DM
1515}
1516
1517sub mount_all {
25321b68 1518 my ($vmid, $storage_cfg, $conf, $ignore_ro) = @_;
9622e848
DM
1519
1520 my $rootdir = "/var/lib/lxc/$vmid/rootfs";
1adc7e53 1521 File::Path::make_path($rootdir);
9622e848 1522
d250604f 1523 my $volid_list = PVE::LXC::Config->get_vm_volumes($conf);
9622e848
DM
1524 PVE::Storage::activate_volumes($storage_cfg, $volid_list);
1525
4c98d66c
FG
1526 my (undef, $rootuid, $rootgid) = parse_id_maps($conf);
1527
9622e848 1528 eval {
015740e6 1529 PVE::LXC::Config->foreach_volume($conf, sub {
9622e848
DM
1530 my ($ms, $mountpoint) = @_;
1531
25321b68
FG
1532 $mountpoint->{ro} = 0 if $ignore_ro;
1533
4c98d66c 1534 mountpoint_mount($mountpoint, $rootdir, $storage_cfg, undef, $rootuid, $rootgid);
9622e848
DM
1535 });
1536 };
1537 if (my $err = $@) {
e2007ac2 1538 warn "mounting container failed\n";
9622e848 1539 umount_all($vmid, $storage_cfg, $conf, 1);
e2007ac2 1540 die $err;
9622e848
DM
1541 }
1542
da629848 1543 return $rootdir;
9622e848
DM
1544}
1545
1546
b15c75fc 1547sub mountpoint_mount_path {
da629848 1548 my ($mountpoint, $storage_cfg, $snapname) = @_;
b15c75fc 1549
da629848 1550 return mountpoint_mount($mountpoint, undef, $storage_cfg, $snapname);
b15c75fc 1551}
cc6b0307 1552
21f292ff
WB
1553sub query_loopdev {
1554 my ($path) = @_;
1555 my $found;
1556 my $parser = sub {
1557 my $line = shift;
1558 if ($line =~ m@^(/dev/loop\d+):@) {
1559 $found = $1;
1560 }
1561 };
1562 my $cmd = ['losetup', '--associated', $path];
1563 PVE::Tools::run_command($cmd, outfunc => $parser);
1564 return $found;
1565}
1566
50df544c
WB
1567# Run a function with a file attached to a loop device.
1568# The loop device is always detached afterwards (or set to autoclear).
1569# Returns the loop device.
1570sub run_with_loopdev {
fd8cab92 1571 my ($func, $file, $readonly) = @_;
54d11e5c
WB
1572 my $device = query_loopdev($file);
1573 # Try to reuse an existing device
1574 if ($device) {
1575 # We assume that whoever setup the loop device is responsible for
1576 # detaching it.
1577 &$func($device);
1578 return $device;
1579 }
1580
50df544c
WB
1581 my $parser = sub {
1582 my $line = shift;
1583 if ($line =~ m@^(/dev/loop\d+)$@) {
1584 $device = $1;
1585 }
1586 };
fd8cab92
DL
1587 my $losetup_cmd = [
1588 'losetup',
1589 '--show',
1590 '-f',
1591 $file,
1592 ];
1593 push @$losetup_cmd, '-r' if $readonly;
1594 PVE::Tools::run_command($losetup_cmd, outfunc => $parser);
50df544c
WB
1595 die "failed to setup loop device for $file\n" if !$device;
1596 eval { &$func($device); };
1597 my $err = $@;
1598 PVE::Tools::run_command(['losetup', '-d', $device]);
1599 die $err if $err;
1600 return $device;
1601}
1602
ab3722b3
WB
1603# In scalar mode: returns a file handle to the deepest directory node.
1604# In list context: returns a list of:
1605# * the deepest directory node
1606# * the 2nd deepest directory (parent of the above)
1607# * directory name of the last directory
1608# So that the path $2/$3 should lead to $1 afterwards.
4c98d66c
FG
1609sub walk_tree_nofollow($$$;$$) {
1610 my ($start, $subdir, $mkdir, $rootuid, $rootgid) = @_;
ab3722b3 1611
ab3722b3
WB
1612 sysopen(my $fd, $start, O_PATH | O_DIRECTORY)
1613 or die "failed to open start directory $start: $!\n";
1614
2c6830d5
WB
1615 return walk_tree_nofollow_fd($start, $fd, $subdir, $mkdir, $rootuid, $rootgid);
1616}
1617
1618
1619sub walk_tree_nofollow_fd($$$$;$$) {
1620 my ($start_dirname, $start_fd, $subdir, $mkdir, $rootuid, $rootgid) = @_;
1621
1622 # splitdir() returns '' for empty components including the leading /
1623 my @comps = grep { length($_)>0 } File::Spec->splitdir($subdir);
1624
1625 my $fd = $start_fd;
1626 my $dir = $start_dirname;
ab3722b3
WB
1627 my $last_component = undef;
1628 my $second = $fd;
1629 foreach my $component (@comps) {
1630 $dir .= "/$component";
1631 my $next = PVE::Tools::openat(fileno($fd), $component, O_NOFOLLOW | O_DIRECTORY);
1632
1633 if (!$next) {
1634 # failed, check for symlinks and try to create the path
3eb5f47b 1635 die "symlink encountered at: $dir\n" if $! == ELOOP || $! == ENOTDIR;
ab3722b3
WB
1636 die "cannot open directory $dir: $!\n" if !$mkdir;
1637
1638 # We don't check for errors on mkdirat() here and just try to
1639 # openat() again, since at least one error (EEXIST) is an
1640 # expected possibility if multiple containers start
1641 # simultaneously. If someone else injects a symlink now then
1642 # the subsequent openat() will fail due to O_NOFOLLOW anyway.
1643 PVE::Tools::mkdirat(fileno($fd), $component, 0755);
1644
1645 $next = PVE::Tools::openat(fileno($fd), $component, O_NOFOLLOW | O_DIRECTORY);
1646 die "failed to create path: $dir: $!\n" if !$next;
4c98d66c
FG
1647
1648 PVE::Tools::fchownat(fileno($next), '', $rootuid, $rootgid, PVE::Tools::AT_EMPTY_PATH)
1649 if defined($rootuid) && defined($rootgid);
ab3722b3
WB
1650 }
1651
2c6830d5 1652 close $second if defined($last_component) && $second != $start_fd;
ab3722b3
WB
1653 $last_component = $component;
1654 $second = $fd;
1655 $fd = $next;
1656 }
1657
1658 return ($fd, defined($last_component) && $second, $last_component) if wantarray;
2c6830d5 1659 close $second if defined($last_component) && $second != $start_fd;
ab3722b3
WB
1660 return $fd;
1661}
1662
619f27b4
WB
1663# To guard against symlink attack races against other currently running
1664# containers with shared recursive bind mount hierarchies we prepare a
1665# directory handle for the directory we're mounting over to verify the
1666# mountpoint afterwards.
1667sub __bindmount_prepare {
1668 my ($hostroot, $dir) = @_;
1669 my $srcdh = walk_tree_nofollow($hostroot, $dir, 0);
1670 return $srcdh;
1671}
ab3722b3 1672
619f27b4
WB
1673# Assuming we mount to rootfs/a/b/c, verify with the directory handle to 'b'
1674# ($parentfd) that 'b/c' (openat($parentfd, 'c')) really leads to the directory
1675# we intended to bind mount.
1676sub __bindmount_verify {
1677 my ($srcdh, $parentfd, $last_dir, $ro) = @_;
ab3722b3
WB
1678 my $destdh;
1679 if ($parentfd) {
1680 # Open the mount point path coming from the parent directory since the
1681 # filehandle we would have gotten as first result of walk_tree_nofollow
1682 # earlier is still a handle to the underlying directory instead of the
1683 # mounted path.
619f27b4
WB
1684 $destdh = PVE::Tools::openat(fileno($parentfd), $last_dir, PVE::Tools::O_PATH | O_NOFOLLOW | O_DIRECTORY);
1685 die "failed to open mount point: $!\n" if !$destdh;
1686 if ($ro) {
1687 my $dot = '.';
619f27b4 1688 # no separate function because 99% of the time it's the wrong thing to use.
0389da0d 1689 if (syscall(PVE::Syscall::faccessat, fileno($destdh), $dot, &POSIX::W_OK, 0) != -1) {
619f27b4
WB
1690 die "failed to mark bind mount read only\n";
1691 }
1692 die "read-only check failed: $!\n" if $! != EROFS;
1693 }
ab3722b3
WB
1694 } else {
1695 # For the rootfs we don't have a parentfd so we open the path directly.
1696 # Note that this means bindmounting any prefix of the host's
1697 # /var/lib/lxc/$vmid path into another container is considered a grave
1698 # security error.
1699 sysopen $destdh, $last_dir, O_PATH | O_DIRECTORY;
619f27b4 1700 die "failed to open mount point: $!\n" if !$destdh;
ab3722b3 1701 }
ab3722b3
WB
1702
1703 my ($srcdev, $srcinode) = stat($srcdh);
1704 my ($dstdev, $dstinode) = stat($destdh);
1705 close $srcdh;
1706 close $destdh;
1707
619f27b4
WB
1708 return ($srcdev == $dstdev && $srcinode == $dstinode);
1709}
1710
1711# Perform the actual bind mounting:
1712sub __bindmount_do {
1713 my ($dir, $dest, $ro, @extra_opts) = @_;
1714 PVE::Tools::run_command(['mount', '-o', 'bind', @extra_opts, $dir, $dest]);
1715 if ($ro) {
1716 eval { PVE::Tools::run_command(['mount', '-o', 'bind,remount,ro', $dest]); };
1717 if (my $err = $@) {
1718 warn "bindmount error\n";
1719 # don't leave writable bind-mounts behind...
1720 PVE::Tools::run_command(['umount', $dest]);
1721 die $err;
1722 }
1723 }
1724}
1725
1726sub bindmount {
1727 my ($dir, $parentfd, $last_dir, $dest, $ro, @extra_opts) = @_;
1728
1729 my $srcdh = __bindmount_prepare('/', $dir);
1730
1731 __bindmount_do($dir, $dest, $ro, @extra_opts);
1732
1733 if (!__bindmount_verify($srcdh, $parentfd, $last_dir, $ro)) {
ab3722b3
WB
1734 PVE::Tools::run_command(['umount', $dest]);
1735 die "detected mount path change at: $dir\n";
1736 }
c2744c97
WB
1737}
1738
619f27b4
WB
1739# Cleanup $rootdir a bit (double and trailing slashes), build the mount path
1740# from $rootdir and $mount and walk the path from $rootdir to the final
1741# directory to check for symlinks.
1742sub __mount_prepare_rootdir {
4c98d66c 1743 my ($rootdir, $mount, $rootuid, $rootgid) = @_;
619f27b4
WB
1744 $rootdir =~ s!/+!/!g;
1745 $rootdir =~ s!/+$!!;
1746 my $mount_path = "$rootdir/$mount";
4c98d66c 1747 my ($mpfd, $parentfd, $last_dir) = walk_tree_nofollow($rootdir, $mount, 1, $rootuid, $rootgid);
619f27b4
WB
1748 return ($rootdir, $mount_path, $mpfd, $parentfd, $last_dir);
1749}
1750
b15c75fc 1751# use $rootdir = undef to just return the corresponding mount path
cc6b0307 1752sub mountpoint_mount {
4c98d66c 1753 my ($mountpoint, $rootdir, $storage_cfg, $snapname, $rootuid, $rootgid) = @_;
ef447944
WB
1754 return __mountpoint_mount($mountpoint, $rootdir, $storage_cfg, $snapname, $rootuid, $rootgid, undef);
1755}
1756
1757sub mountpoint_stage {
1758 my ($mountpoint, $stage_dir, $storage_cfg, $snapname, $rootuid, $rootgid) = @_;
1759 my ($path, $loop, $dev) =
1760 __mountpoint_mount($mountpoint, $stage_dir, $storage_cfg, $snapname, $rootuid, $rootgid, 1);
1761
1762 if (!defined($path)) {
ef447944
WB
1763 die "failed to mount subvolume: $!\n";
1764 }
1765
87962670
WB
1766 # We clone the mount point and leave it there in order to keep them connected to eg. loop
1767 # devices in case we're hotplugging (which would allow contaienrs to unmount the new mount
1768 # point).
ef447944
WB
1769 my $err;
1770 my $fd = PVE::Tools::open_tree(&AT_FDCWD, $stage_dir, &OPEN_TREE_CLOEXEC | &OPEN_TREE_CLONE)
1771 or die "open_tree() on mount point failed: $!\n";
1772
1773 return wantarray ? ($path, $loop, $dev, $fd) : $fd;
1774}
1775
aee0902b
WB
1776sub mountpoint_insert_staged {
1777 my ($mount_fd, $rootdir_fd, $mp_dir, $opt, $rootuid, $rootgid) = @_;
1778
1779 if (!defined($rootdir_fd)) {
1780 sysopen($rootdir_fd, '.', O_PATH | O_DIRECTORY)
1781 or die "failed to open '.': $!\n";
1782 }
1783
1784 my $dest_fd = walk_tree_nofollow_fd('/', $rootdir_fd, $mp_dir, 1, $rootuid, $rootgid);
1785
1786 PVE::Tools::move_mount(
1787 fileno($mount_fd),
1788 '',
1789 fileno($dest_fd),
1790 '',
1791 &MOVE_MOUNT_F_EMPTY_PATH | &MOVE_MOUNT_T_EMPTY_PATH,
1792 ) or die "failed to move '$opt' into container hierarchy: $!\n";
1793}
1794
ef447944
WB
1795# Use $stage_mount, $rootdir is treated as a temporary path to "stage" the file system. The user
1796# can then open a file descriptor to it which can be used with the `move_mount` syscall.
ef447944
WB
1797sub __mountpoint_mount {
1798 my ($mountpoint, $rootdir, $storage_cfg, $snapname, $rootuid, $rootgid, $stage_mount) = @_;
1799
48e36ac2
WB
1800 # When staging mount points we always mount to $rootdir directly (iow. as if `mp=/`).
1801 # This is required since __mount_prepare_rootdir() will return handles to the parent directory
1802 # which we use in __bindmount_verify()!
1803 my $mount = $stage_mount ? '/': $mountpoint->{mp};
1804
cc6b0307 1805 my $volid = $mountpoint->{volume};
7c921c80 1806 my $type = $mountpoint->{type};
50df544c
WB
1807 my $quota = !$snapname && !$mountpoint->{ro} && $mountpoint->{quota};
1808 my $mounted_dev;
f598979f 1809
cc6b0307
AD
1810 return if !$volid || !$mount;
1811
ab3722b3
WB
1812 $mount =~ s!/+!/!g;
1813
b15c75fc 1814 my $mount_path;
ab3722b3 1815 my ($mpfd, $parentfd, $last_dir);
f598979f 1816
b15c75fc 1817 if (defined($rootdir)) {
619f27b4 1818 ($rootdir, $mount_path, $mpfd, $parentfd, $last_dir) =
4c98d66c 1819 __mount_prepare_rootdir($rootdir, $mount, $rootuid, $rootgid);
116ce06f 1820 }
ef447944
WB
1821
1822 if (defined($stage_mount)) {
1823 $mount_path = $rootdir;
1824 }
f598979f 1825
b15c75fc 1826 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
cc6b0307 1827
b15c75fc 1828 die "unknown snapshot path for '$volid'" if !$storage && defined($snapname);
cc6b0307 1829
2bf24eb3 1830 my $optlist = [];
e80cb0cd
TL
1831
1832 if (my $mountopts = $mountpoint->{mountoptions}) {
1833 my @opts = split(/;/, $mountpoint->{mountoptions});
1834 push @$optlist, grep { PVE::LXC::Config::is_valid_mount_option($_) } @opts;
2bf24eb3
OB
1835 }
1836
719129ea
WB
1837 my $acl = $mountpoint->{acl};
1838 if (defined($acl)) {
2bf24eb3 1839 push @$optlist, ($acl ? 'acl' : 'noacl');
471dd315 1840 }
2bf24eb3
OB
1841
1842 my $optstring = join(',', @$optlist);
c2744c97 1843 my $readonly = $mountpoint->{ro};
471dd315 1844
9de0505c
WL
1845 my @extra_opts;
1846 @extra_opts = ('-o', $optstring) if $optstring;
471dd315 1847
b15c75fc
DM
1848 if ($storage) {
1849
1850 my $scfg = PVE::Storage::storage_config($storage_cfg, $storage);
7c138f58 1851
841fba68 1852 my $path = PVE::Storage::map_volume($storage_cfg, $volid, $snapname);
7c138f58 1853
841fba68 1854 $path = PVE::Storage::path($storage_cfg, $volid, $snapname) if !defined($path);
b15c75fc
DM
1855
1856 my ($vtype, undef, undef, undef, undef, $isBase, $format) =
1857 PVE::Storage::parse_volname($storage_cfg, $volid);
1858
c87b9dd8
DM
1859 $format = 'iso' if $vtype eq 'iso'; # allow to handle iso files
1860
b15c75fc 1861 if ($format eq 'subvol') {
30de33be 1862 if ($mount_path) {
3ceee38d
FE
1863 my (undef, $name) = PVE::Storage::parse_volname($storage_cfg, $volid);
1864 if (defined($snapname)) {
1865 $name .= "\@$snapname";
e84f7f5d 1866 if ($scfg->{type} eq 'zfspool') {
3ceee38d 1867 PVE::Tools::run_command(['mount', '-o', 'ro', @extra_opts, '-t', 'zfs', "$scfg->{pool}/$name", $mount_path]);
e84f7f5d 1868 } else {
30de33be
DM
1869 die "cannot mount subvol snapshots for storage type '$scfg->{type}'\n";
1870 }
e84f7f5d 1871 } else {
719129ea
WB
1872 if (defined($acl) && $scfg->{type} eq 'zfspool') {
1873 my $acltype = ($acl ? 'acltype=posixacl' : 'acltype=noacl');
719129ea
WB
1874 PVE::Tools::run_command(['zfs', 'set', $acltype, "$scfg->{pool}/$name"]);
1875 }
ab3722b3 1876 bindmount($path, $parentfd, $last_dir//$rootdir, $mount_path, $readonly, @extra_opts);
50df544c 1877 warn "cannot enable quota control for bind mounted subvolumes\n" if $quota;
30de33be 1878 }
b15c75fc 1879 }
5f6280cf 1880 return wantarray ? ($path, 0, undef) : $path;
c87b9dd8 1881 } elsif ($format eq 'raw' || $format eq 'iso') {
ada088e6
WB
1882 # NOTE: 'mount' performs canonicalization without the '-c' switch, which for
1883 # device-mapper devices is special-cased to use the /dev/mapper symlinks.
1884 # Our autodev hook expects the /dev/dm-* device currently
1885 # and will create the /dev/mapper symlink accordingly
e439a713
WB
1886 $path = Cwd::realpath($path);
1887 die "failed to get device path\n" if !$path;
1888 ($path) = ($path =~ /^(.*)$/s); #untaint
50df544c
WB
1889 my $domount = sub {
1890 my ($path) = @_;
1891 if ($mount_path) {
1892 if ($format eq 'iso') {
1893 PVE::Tools::run_command(['mount', '-o', 'ro', @extra_opts, $path, $mount_path]);
1894 } elsif ($isBase || defined($snapname)) {
1895 PVE::Tools::run_command(['mount', '-o', 'ro,noload', @extra_opts, $path, $mount_path]);
1896 } else {
1897 if ($quota) {
1898 push @extra_opts, '-o', 'usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0';
1899 }
c2744c97 1900 push @extra_opts, '-o', 'ro' if $readonly;
50df544c
WB
1901 PVE::Tools::run_command(['mount', @extra_opts, $path, $mount_path]);
1902 }
1903 }
1904 };
30de33be 1905 my $use_loopdev = 0;
e6da5357
LS
1906 if ($scfg->{content}->{rootdir}) {
1907 if ($scfg->{path}) {
1908 $mounted_dev = run_with_loopdev($domount, $path, $readonly);
1909 $use_loopdev = 1;
1910 } else {
1911 $mounted_dev = $path;
1912 &$domount($path);
1913 }
b15c75fc 1914 } else {
e6da5357 1915 die "storage '$storage' does not support containers\n";
b15c75fc 1916 }
50df544c 1917 return wantarray ? ($path, $use_loopdev, $mounted_dev) : $path;
b15c75fc
DM
1918 } else {
1919 die "unsupported image format '$format'\n";
1920 }
7c921c80 1921 } elsif ($type eq 'device') {
c9bc95a1 1922 push @extra_opts, '-o', 'ro' if $readonly;
0d449e38
WB
1923 push @extra_opts, '-o', 'usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0' if $quota;
1924 # See the NOTE above about devicemapper canonicalization
1925 my ($devpath) = (Cwd::realpath($volid) =~ /^(.*)$/s); # realpath() taints
471dd315 1926 PVE::Tools::run_command(['mount', @extra_opts, $volid, $mount_path]) if $mount_path;
0d449e38 1927 return wantarray ? ($volid, 0, $devpath) : $volid;
e2007ac2
DM
1928 } elsif ($type eq 'bind') {
1929 die "directory '$volid' does not exist\n" if ! -d $volid;
ab3722b3 1930 bindmount($volid, $parentfd, $last_dir//$rootdir, $mount_path, $readonly, @extra_opts) if $mount_path;
50df544c
WB
1931 warn "cannot enable quota control for bind mounts\n" if $quota;
1932 return wantarray ? ($volid, 0, undef) : $volid;
b15c75fc 1933 }
f598979f 1934
b15c75fc 1935 die "unsupported storage";
cc6b0307
AD
1936}
1937
2e8f5857 1938sub mountpoint_hotplug :prototype($$$$$) {
b2de4c04
WB
1939 my ($vmid, $conf, $opt, $mp, $storage_cfg) = @_;
1940
1941 my (undef, $rootuid, $rootgid) = PVE::LXC::parse_id_maps($conf);
1942
172ea186
WB
1943 # We do the rest in a fork with an unshared mount namespace, because:
1944 # -) change our papparmor profile to that of /usr/bin/lxc-start
1945 # -) we're now going to 'stage' # the mountpoint, then grab it, then move into the
1946 # container's namespace, then mount it.
b2de4c04
WB
1947
1948 PVE::Tools::run_fork(sub {
1949 # Pin the container pid longer, we also need to get its monitor/parent:
1950 my ($ct_pid, $ct_pidfd) = open_lxc_pid($vmid)
1951 or die "failed to open pidfd of container $vmid\'s init process\n";
1952
1953 my ($monitor_pid, $monitor_pidfd) = open_ppid($ct_pid)
1954 or die "failed to open pidfd of container $vmid\'s monitor process\n";
1955
1956 my $ct_mnt_ns = $get_container_namespace->($vmid, $ct_pid, 'mnt');
1957 my $monitor_mnt_ns = $get_container_namespace->($vmid, $monitor_pid, 'mnt');
1958
172ea186
WB
1959 # Grab a file descriptor to our apparmor label file so we can change into the 'lxc-start'
1960 # profile to lower our privileges to the same level we have in the start hook:
1961 sysopen(my $aa_fd, "/proc/self/attr/current", O_WRONLY)
1962 or die "failed to open '/proc/self/attr/current' for writing: $!\n";
1963 # But switch namespaces first, to make sure the namespace switches aren't blocked by
1964 # apparmor.
1965
b2de4c04
WB
1966 # Change into the monitor's mount namespace. We "pin" the mount into the monitor's
1967 # namespace for it to remain active there since the container will be able to unmount
1968 # hotplugged mount points and thereby potentially free up loop devices, which is a security
1969 # concern.
1970 PVE::Tools::setns(fileno($monitor_mnt_ns), PVE::Tools::CLONE_NEWNS);
1971 chdir('/')
1972 or die "failed to change root directory within the monitor's mount namespace: $!\n";
1973
1974 my $dir = get_staging_mount_path($opt);
172ea186
WB
1975
1976 # Now switch our apparmor profile before mounting:
1977 my $data = 'changeprofile /usr/bin/lxc-start';
1978 if (syswrite($aa_fd, $data, length($data)) != length($data)) {
1979 die "failed to change apparmor profile: $!\n";
1980 }
1981 # Check errors on close as well:
1982 close($aa_fd)
1983 or die "failed to change apparmor profile (close() failed): $!\n";
1984
b2de4c04
WB
1985 my $mount_fd = mountpoint_stage($mp, $dir, $storage_cfg, undef, $rootuid, $rootgid);
1986
1987 PVE::Tools::setns(fileno($ct_mnt_ns), PVE::Tools::CLONE_NEWNS);
1988 chdir('/')
1989 or die "failed to change root directory within the container's mount namespace: $!\n";
1990
1991 mountpoint_insert_staged($mount_fd, undef, $mp->{mp}, $opt, $rootuid, $rootgid);
1992 });
1993}
1994
180c05c5
WB
1995# Create a directory in the mountpoint staging tempfs.
1996sub get_staging_mount_path($) {
1997 my ($opt) = @_;
1998
1999 my $target = get_staging_tempfs() . "/$opt";
2000 if (!mkdir($target) && $! != EEXIST) {
2001 die "failed to create directory $target: $!\n";
2002 }
2003
2004 return $target;
2005}
2006
b58ba5d4 2007# Mount tmpfs for mount point staging and return the path.
180c05c5
WB
2008sub get_staging_tempfs() {
2009 # We choose a path in /var/lib/lxc/ here because the lxc-start apparmor profile restricts most
2010 # mounts to that.
2011 my $target = '/var/lib/lxc/.pve-staged-mounts';
2012 if (!mkdir($target)) {
2013 return $target if $! == EEXIST;
2014 die "failed to create directory $target: $!\n";
2015 }
2016
2017 PVE::Tools::mount("none", $target, 'tmpfs', 0, "size=8k,mode=755")
2018 or die "failed to mount $target as tmpfs: $!\n";
2019
2020 return $target;
2021}
2022
6c871c36 2023sub mkfs {
d216e891 2024 my ($dev, $rootuid, $rootgid) = @_;
6c871c36 2025
06c7c7f1
TL
2026 run_command(
2027 [
2028 'mkfs.ext4',
2029 '-O',
2030 'mmp',
2031 '-E',
2032 "root_owner=$rootuid:$rootgid",
2033 $dev,
2034 ],
2035 outfunc => sub {
2036 my $line = shift;
2037 # a hack to print only the relevant stuff, i.e., the one which could help on repair
2038 if ($line =~ /^(Creating filesystem|Filesystem UUID|Superblock backups|\s+\d+, \d)/) {
2039 print "$line\n";
2040 }
2041 },
2042 errfunc => sub {
2043 my $line = shift;
2044 print STDERR "$line\n" if $line && $line !~ /^mke2fs \d\.\d/;
2045 }
2046 );
6c871c36
DM
2047}
2048
2049sub format_disk {
d216e891 2050 my ($storage_cfg, $volid, $rootuid, $rootgid) = @_;
6c871c36
DM
2051
2052 if ($volid =~ m!^/dev/.+!) {
2053 mkfs($volid);
2054 return;
2055 }
2056
2057 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
2058
2059 die "cannot format volume '$volid' with no storage\n" if !$storage;
2060
08ca136d
DM
2061 PVE::Storage::activate_volumes($storage_cfg, [$volid]);
2062
841fba68
DM
2063 my $path = PVE::Storage::map_volume($storage_cfg, $volid);
2064
2065 $path = PVE::Storage::path($storage_cfg, $volid) if !defined($path);
6c871c36
DM
2066
2067 my ($vtype, undef, undef, undef, undef, $isBase, $format) =
2068 PVE::Storage::parse_volname($storage_cfg, $volid);
2069
2070 die "cannot format volume '$volid' (format == $format)\n"
2071 if $format ne 'raw';
2072
d216e891 2073 mkfs($path, $rootuid, $rootgid);
6c871c36
DM
2074}
2075
2076sub destroy_disks {
2077 my ($storecfg, $vollist) = @_;
2078
2079 foreach my $volid (@$vollist) {
2080 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
2081 warn $@ if $@;
2082 }
2083}
2084
c9cf8008
WB
2085sub alloc_disk {
2086 my ($storecfg, $vmid, $storage, $size_kb, $rootuid, $rootgid) = @_;
2087
2088 my $needs_chown = 0;
2089 my $volid;
2090
2091 my $scfg = PVE::Storage::storage_config($storecfg, $storage);
2092 # fixme: use better naming ct-$vmid-disk-X.raw?
2093
2094 eval {
2095 my $do_format = 0;
e6da5357 2096 if ($scfg->{content}->{rootdir} && $scfg->{path}) {
1b0d36cc 2097 if ($size_kb > 0 && !($scfg->{type} eq 'btrfs' && $scfg->{quotas})) {
ac2f06e1 2098 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw', undef, $size_kb);
c9cf8008
WB
2099 $do_format = 1;
2100 } else {
94c74a54 2101 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'subvol', undef, $size_kb);
c9cf8008
WB
2102 $needs_chown = 1;
2103 }
2104 } elsif ($scfg->{type} eq 'zfspool') {
ac2f06e1 2105 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'subvol', undef, $size_kb);
c9cf8008 2106 $needs_chown = 1;
e6da5357 2107 } elsif ($scfg->{content}->{rootdir}) {
c9cf8008
WB
2108 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw', undef, $size_kb);
2109 $do_format = 1;
2110 } else {
4ffbea26 2111 die "content type 'rootdir' is not available or configured on storage '$storage'\n";
c9cf8008
WB
2112 }
2113 format_disk($storecfg, $volid, $rootuid, $rootgid) if $do_format;
2114 };
2115 if (my $err = $@) {
2116 # in case formatting got interrupted:
2117 if (defined($volid)) {
2118 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
2119 warn $@ if $@;
2120 }
2121 die $err;
2122 }
2123
2124 return ($volid, $needs_chown);
2125}
2126
6c871c36 2127sub create_disks {
32e15a2b 2128 my ($storecfg, $vmid, $settings, $conf, $pending) = @_;
6c871c36
DM
2129
2130 my $vollist = [];
2131
2132 eval {
d216e891
WB
2133 my (undef, $rootuid, $rootgid) = PVE::LXC::parse_id_maps($conf);
2134 my $chown_vollist = [];
2135
015740e6 2136 PVE::LXC::Config->foreach_volume($settings, sub {
6c871c36
DM
2137 my ($ms, $mountpoint) = @_;
2138
2139 my $volid = $mountpoint->{volume};
2140 my $mp = $mountpoint->{mp};
2141
2142 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
2143
2aee38e5 2144 if ($storage && ($volid =~ $NEW_DISK_RE)) {
8ed5ff9d 2145 my ($storeid, $size_gb) = ($1, $2);
6c871c36 2146
8ed5ff9d 2147 my $size_kb = int(${size_gb}*1024) * 1024;
6c871c36 2148
c9cf8008
WB
2149 my $needs_chown = 0;
2150 ($volid, $needs_chown) = alloc_disk($storecfg, $vmid, $storage, $size_kb, $rootuid, $rootgid);
2151 push @$chown_vollist, $volid if $needs_chown;
6c871c36 2152 push @$vollist, $volid;
71c780b9
WB
2153 $mountpoint->{volume} = $volid;
2154 $mountpoint->{size} = $size_kb * 1024;
32e15a2b
OB
2155 if ($pending) {
2156 $conf->{pending}->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
2157 } else {
2158 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
2159 }
6c871c36 2160 } else {
32e15a2b
OB
2161 # use specified/existing volid/dir/device
2162 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
6c871c36
DM
2163 }
2164 });
d216e891
WB
2165
2166 PVE::Storage::activate_volumes($storecfg, $chown_vollist, undef);
2167 foreach my $volid (@$chown_vollist) {
2168 my $path = PVE::Storage::path($storecfg, $volid, undef);
2169 chown($rootuid, $rootgid, $path);
2170 }
2171 PVE::Storage::deactivate_volumes($storecfg, $chown_vollist, undef);
6c871c36
DM
2172 };
2173 # free allocated images on error
2174 if (my $err = $@) {
2175 destroy_disks($storecfg, $vollist);
32e15a2b 2176 die $err;
6c871c36
DM
2177 }
2178 return $vollist;
2179}
2180
6827e44d
AA
2181sub update_disksize {
2182 my ($vmid, $conf, $all_volumes) = @_;
2183
2184 my $changes;
2185 my $prefix = "CT $vmid:";
2186
2187 my $update_mp = sub {
2188 my ($key, $mp, @param) = @_;
2189 my $size = $all_volumes->{$mp->{volume}}->{size} // 0;
2190
2191 if (!defined($mp->{size}) || $size != $mp->{size}) {
2192 $changes = 1;
2193 print "$prefix updated volume size of '$mp->{volume}' in config.\n";
2194 $mp->{size} = $size;
bf427ccd
TL
2195 my $no_mp = $key eq 'rootfs'; # rootfs is handled different from other mount points
2196 $conf->{$key} = PVE::LXC::Config->print_ct_mountpoint($mp, $no_mp);
6827e44d
AA
2197 }
2198 };
2199
015740e6 2200 PVE::LXC::Config->foreach_volume($conf, $update_mp);
6827e44d
AA
2201
2202 return $changes;
2203}
2204
2205sub update_unused {
2206 my ($vmid, $conf, $all_volumes) = @_;
2207
2208 my $changes;
2209 my $prefix = "CT $vmid:";
2210
2211 # Note: it is allowed to define multiple storage entries with the same path
2212 # (alias), so we need to check both 'volid' and real 'path' (two different
2213 # volid can point to the same path).
2214
2215 # used and unused disks
2216 my $refpath = {};
2217 my $orphans = {};
2218
2219 foreach my $opt (keys %$conf) {
2220 next if ($opt !~ m/^unused\d+$/);
2221 my $vol = $all_volumes->{$conf->{$opt}};
2222 $refpath->{$vol->{path}} = $vol->{volid};
2223 }
2224
2225 foreach my $key (keys %$all_volumes) {
2226 my $vol = $all_volumes->{$key};
2227 my $in_use = PVE::LXC::Config->is_volume_in_use($conf, $vol->{volid});
2228 my $path = $vol->{path};
2229
2230 if ($in_use) {
2231 $refpath->{$path} = $key;
2232 delete $orphans->{$path};
2233 } else {
2234 if ((!$orphans->{$path}) && (!$refpath->{$path})) {
2235 $orphans->{$path} = $key;
2236 }
2237 }
2238 }
2239
2240 for my $key (keys %$orphans) {
2241 my $disk = $orphans->{$key};
2242 my $unused = PVE::LXC::Config->add_unused_volume($conf, $disk);
2243
2244 if ($unused) {
2245 $changes = 1;
2246 print "$prefix add unreferenced volume '$disk' as '$unused' to config.\n";
2247 }
2248 }
2249
2250 return $changes;
2251}
2252
2253sub scan_volids {
2254 my ($cfg, $vmid) = @_;
2255
5a0db48a 2256 my $info = PVE::Storage::vdisk_list($cfg, undef, $vmid, undef, 'rootdir');
6827e44d
AA
2257
2258 my $all_volumes = {};
2259 foreach my $storeid (keys %$info) {
2260 foreach my $item (@{$info->{$storeid}}) {
2261 my $volid = $item->{volid};
2262 next if !($volid && $item->{size});
2263 $item->{path} = PVE::Storage::path($cfg, $volid);
2264 $all_volumes->{$volid} = $item;
2265 }
2266 }
2267
2268 return $all_volumes;
2269}
2270
2271sub rescan {
2272 my ($vmid, $nolock, $dryrun) = @_;
2273
2274 my $cfg = PVE::Storage::config();
2275
6827e44d
AA
2276 print "rescan volumes...\n";
2277 my $all_volumes = scan_volids($cfg, $vmid);
2278
2279 my $updatefn = sub {
2280 my ($vmid) = @_;
2281
2282 my $changes;
2283 my $conf = PVE::LXC::Config->load_config($vmid);
2284
2285 PVE::LXC::Config->check_lock($conf);
2286
2287 my $vm_volids = {};
2288 foreach my $volid (keys %$all_volumes) {
2289 my $info = $all_volumes->{$volid};
2290 $vm_volids->{$volid} = $info if $info->{vmid} == $vmid;
2291 }
2292
2293 my $upu = update_unused($vmid, $conf, $vm_volids);
2294 my $upd = update_disksize($vmid, $conf, $vm_volids);
2295 $changes = $upu || $upd;
2296
2297 PVE::LXC::Config->write_config($vmid, $conf) if $changes && !$dryrun;
2298 };
2299
2300 if (defined($vmid)) {
2301 if ($nolock) {
2302 &$updatefn($vmid);
2303 } else {
2304 PVE::LXC::Config->lock_config($vmid, $updatefn, $vmid);
2305 }
2306 } else {
2307 my $vmlist = config_list();
2308 foreach my $vmid (keys %$vmlist) {
2309 if ($nolock) {
2310 &$updatefn($vmid);
2311 } else {
2312 PVE::LXC::Config->lock_config($vmid, $updatefn, $vmid);
2313 }
2314 }
2315 }
2316}
2317
2318
68e8f3c5
DM
2319# bash completion helper
2320
2321sub complete_os_templates {
2322 my ($cmdname, $pname, $cvalue) = @_;
2323
2324 my $cfg = PVE::Storage::config();
2325
9e9bc3a6 2326 my $storeid;
68e8f3c5
DM
2327
2328 if ($cvalue =~ m/^([^:]+):/) {
2329 $storeid = $1;
2330 }
2331
2332 my $vtype = $cmdname eq 'restore' ? 'backup' : 'vztmpl';
2333 my $data = PVE::Storage::template_list($cfg, $storeid, $vtype);
2334
2335 my $res = [];
2336 foreach my $id (keys %$data) {
2337 foreach my $item (@{$data->{$id}}) {
2338 push @$res, $item->{volid} if defined($item->{volid});
2339 }
2340 }
2341
2342 return $res;
2343}
2344
68e8f3c5
DM
2345my $complete_ctid_full = sub {
2346 my ($running) = @_;
2347
2348 my $idlist = vmstatus();
2349
2350 my $active_hash = list_active_containers();
2351
2352 my $res = [];
2353
2354 foreach my $id (keys %$idlist) {
2355 my $d = $idlist->{$id};
2356 if (defined($running)) {
2357 next if $d->{template};
2358 next if $running && !$active_hash->{$id};
2359 next if !$running && $active_hash->{$id};
2360 }
2361 push @$res, $id;
2362
2363 }
2364 return $res;
2365};
2366
2367sub complete_ctid {
2368 return &$complete_ctid_full();
2369}
2370
2371sub complete_ctid_stopped {
2372 return &$complete_ctid_full(0);
2373}
2374
2375sub complete_ctid_running {
2376 return &$complete_ctid_full(1);
2377}
2378
c6a605f9
WB
2379sub parse_id_maps {
2380 my ($conf) = @_;
2381
2382 my $id_map = [];
2383 my $rootuid = 0;
2384 my $rootgid = 0;
2385
2386 my $lxc = $conf->{lxc};
2387 foreach my $entry (@$lxc) {
2388 my ($key, $value) = @$entry;
cd65ea28
WB
2389
2390 next if $key ne 'lxc.idmap';
2391
c6a605f9
WB
2392 if ($value =~ /^([ug])\s+(\d+)\s+(\d+)\s+(\d+)\s*$/) {
2393 my ($type, $ct, $host, $length) = ($1, $2, $3, $4);
2394 push @$id_map, [$type, $ct, $host, $length];
2395 if ($ct == 0) {
2396 $rootuid = $host if $type eq 'u';
2397 $rootgid = $host if $type eq 'g';
2398 }
2399 } else {
108c6cab 2400 die "failed to parse idmap: $value\n";
c6a605f9
WB
2401 }
2402 }
2403
2404 if (!@$id_map && $conf->{unprivileged}) {
2405 # Should we read them from /etc/subuid?
2406 $id_map = [ ['u', '0', '100000', '65536'],
2407 ['g', '0', '100000', '65536'] ];
2408 $rootuid = $rootgid = 100000;
2409 }
2410
2411 return ($id_map, $rootuid, $rootgid);
2412}
2413
d17fe041
FW
2414sub validate_id_maps {
2415 my ($id_map) = @_;
2416
2417 # $mappings->{$type}->{$side} = [ { line => $line, start => $start, count => $count }, ... ]
2418 # $type: either "u" or "g"
2419 # $side: either "container" or "host"
2420 # $line: index of this mapping in @$id_map
2421 # $start, $count: interval of this mapping
2422 my $mappings = { u => {}, g => {} };
2423 for (my $i = 0; $i < scalar(@$id_map); $i++) {
2424 my ($type, $ct_start, $host_start, $count) = $id_map->[$i]->@*;
2425 my $sides = $mappings->{$type};
2426 push $sides->{host}->@*, { line => $i, start => $host_start, count => $count };
2427 push $sides->{container}->@*, { line => $i, start => $ct_start, count => $count };
2428 }
2429
2430 # find the first conflict between two consecutive mappings when sorted by their start id
2431 for my $type (qw(u g)) {
2432 for my $side (qw(container host)) {
2433 my @entries = sort { $a->{start} <=> $b->{start} } $mappings->{$type}->{$side}->@*;
2434 for my $idx (1..scalar(@entries) - 1) {
2435 my $previous = $entries[$idx - 1];
2436 my $current = $entries[$idx];
2437 if ($previous->{start} + $previous->{count} > $current->{start}) {
2438 my $conflict = $current->{start};
2439 my @previous_line = $id_map->[$previous->{line}]->@*;
2440 my @current_line = $id_map->[$current->{line}]->@*;
2441 die "invalid map entry '@current_line': $side ${type}id $conflict "
2442 ."is also mapped by entry '@previous_line'\n";
2443 }
2444 }
2445 }
2446 }
2447}
2448
ce1976b8
FS
2449sub map_ct_id_to_host {
2450 my ($id, $id_map, $id_type) = @_;
2451
2452 for my $mapping (@$id_map) {
2453 my ($type, $ct, $host, $length) = @$mapping;
2454
2455 next if ($type ne $id_type);
2456
2457 if ($id >= $ct && $id < ($ct + $length)) {
2458 return $host - $ct + $id;
2459 }
2460 }
2461
2462 return $id;
2463}
2464
2465sub map_ct_uid_to_host {
2466 my ($uid, $id_map) = @_;
2467
2468 return map_ct_id_to_host($uid, $id_map, 'u');
2469}
2470
2471sub map_ct_gid_to_host {
2472 my ($gid, $id_map) = @_;
2473
2474 return map_ct_id_to_host($gid, $id_map, 'g');
2475}
2476
01dce99b
WB
2477sub userns_command {
2478 my ($id_map) = @_;
2479 if (@$id_map) {
2480 return ['lxc-usernsexec', (map { ('-m', join(':', @$_)) } @$id_map), '--'];
2481 }
2482 return [];
2483}
2484
572efee1
TL
2485my sub print_ct_stderr_log {
2486 my ($vmid) = @_;
2487 my $log = eval { file_get_contents("/run/pve/ct-$vmid.stderr") };
2488 return if !$log;
2489
2490 while ($log =~ /^\h*(lxc-start:?\s+$vmid:?\s*\S+\s*)?(.*?)\h*$/gm) {
2491 my $line = $2;
2492 print STDERR "$line\n";
2493 }
2494}
c717bffb
TL
2495my sub print_ct_warn_log {
2496 my ($vmid) = @_;
2497 my $log_fn = "/run/pve/ct-$vmid.warnings";
2498 my $log = eval { file_get_contents($log_fn) };
2499 return if !$log;
2500
c717bffb 2501 while ($log =~ /^\h*\s*(.*?)\h*$/gm) {
0e0ae7e0 2502 PVE::RESTEnvironment::log_warn($1);
c717bffb
TL
2503 }
2504 unlink $log_fn or warn "could not unlink '$log_fn' - $!\n";
2505}
572efee1 2506
6e42d509
TL
2507my sub monitor_state_change($$) {
2508 my ($monitor_socket, $vmid) = @_;
2509 die "no monitor socket\n" if !defined($monitor_socket);
2510
2511 while (1) {
2512 my ($type, $name, $value) = PVE::LXC::Monitor::read_lxc_message($monitor_socket);
2513
2514 die "monitor socket: got EOF\n" if !defined($type);
2515
2516 next if $name ne "$vmid" || $type ne 'STATE';
2517
2518 if ($value eq PVE::LXC::Monitor::STATE_STARTING) {
2519 alarm(0); # don't timeout after seeing the starting state
2520 } elsif ($value eq PVE::LXC::Monitor::STATE_ABORTING ||
2521 $value eq PVE::LXC::Monitor::STATE_STOPPING ||
2522 $value eq PVE::LXC::Monitor::STATE_STOPPED) {
2523 return 0;
2524 } elsif ($value eq PVE::LXC::Monitor::STATE_RUNNING) {
2525 return 1;
2526 } else {
2527 warn "unexpected message from monitor socket - " .
2528 "type: '$type' - value: '$value'\n";
2529 }
2530 }
2531}
2532my sub monitor_start($$) {
2533 my ($monitor_socket, $vmid) = @_;
2534
2535 my $success = eval {
2536 PVE::Tools::run_with_timeout(10, \&monitor_state_change, $monitor_socket, $vmid)
2537 };
2538 if (my $err = $@) {
2539 warn "problem with monitor socket, but continuing anyway: $err\n";
2540 } elsif (!$success) {
572efee1 2541 print_ct_stderr_log($vmid);
6e42d509
TL
2542 die "startup for container '$vmid' failed\n";
2543 }
2544}
2545
6725e93c 2546sub vm_start {
cc9967d2 2547 my ($vmid, $conf, $skiplock, $debug) = @_;
6725e93c 2548
60b3c5e4
OB
2549 # apply pending changes while starting
2550 if (scalar(keys %{$conf->{pending}})) {
2551 my $storecfg = PVE::Storage::config();
2552 PVE::LXC::Config->vmconfig_apply_pending($vmid, $conf, $storecfg);
87c36547 2553 PVE::LXC::Config->write_config($vmid, $conf);
60b3c5e4
OB
2554 $conf = PVE::LXC::Config->load_config($vmid); # update/reload
2555 }
2556
6725e93c
AA
2557 update_lxc_config($vmid, $conf);
2558
d17fe041
FW
2559 eval {
2560 my ($id_map, undef, undef) = PVE::LXC::parse_id_maps($conf);
2561 PVE::LXC::validate_id_maps($id_map);
2562 };
2563 warn "lxc.idmap: $@" if $@;
2564
2e64f057
AA
2565 my $skiplock_flag_fn = "/run/lxc/skiplock-$vmid";
2566
2567 if ($skiplock) {
2568 open(my $fh, '>', $skiplock_flag_fn) || die "failed to open $skiplock_flag_fn for writing: $!\n";
2569 close($fh);
2570 }
6725e93c 2571
e8bb92bd
SI
2572 my $storage_cfg = PVE::Storage::config();
2573 my $vollist = PVE::LXC::Config->get_vm_volumes($conf);
2574
2575 PVE::Storage::activate_volumes($storage_cfg, $vollist);
2576
6e42d509 2577 my $monitor_socket = eval { PVE::LXC::Monitor::get_monitor_socket() };
abaa24bd
FE
2578 warn $@ if $@;
2579
572efee1
TL
2580 unlink "/run/pve/ct-$vmid.stderr"; # systemd does not truncate log files
2581
cc9967d2
TL
2582 my $is_debug = $debug || (!defined($debug) && $conf->{debug});
2583 my $base_unit = $is_debug ? 'pve-container-debug' : 'pve-container';
abaa24bd 2584
cc9967d2 2585 my $cmd = ['systemctl', 'start', "$base_unit\@$vmid"];
6725e93c 2586
1a416433 2587 PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'pre-start', 1);
abaa24bd 2588 eval {
10937f87 2589 run_command($cmd);
abaa24bd 2590
6e42d509 2591 monitor_start($monitor_socket, $vmid) if defined($monitor_socket);
cc9967d2
TL
2592
2593 # if debug is requested, print the log it also when the start succeeded
2594 print_ct_stderr_log($vmid) if $is_debug;
c717bffb
TL
2595
2596 print_ct_warn_log($vmid); # always print warn log, if any
abaa24bd 2597 };
2e64f057
AA
2598 if (my $err = $@) {
2599 unlink $skiplock_flag_fn;
1322f50d 2600 die $err;
2e64f057 2601 }
1a416433 2602 PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'post-start');
6725e93c
AA
2603
2604 return;
2605}
2606
b1bad293
WB
2607# Helper to stop a container completely and make sure it has stopped completely.
2608# This is necessary because we want the post-stop hook to have completed its
2609# unmount-all step, but post-stop happens after lxc puts the container into the
2610# STOPPED state.
e0e29818
TL
2611# $kill - if true it will always do an immediate hard-stop
2612# $shutdown_timeout - the timeout to wait for a gracefull shutdown
2613# $kill_after_timeout - if true, send a hardstop if shutdown timed out
b1bad293 2614sub vm_stop {
e0e29818 2615 my ($vmid, $kill, $shutdown_timeout, $kill_after_timeout) = @_;
b1bad293
WB
2616
2617 # Open the container's command socket.
2618 my $path = "\0/var/lib/lxc/$vmid/command";
2619 my $sock = IO::Socket::UNIX->new(
2620 Type => SOCK_STREAM(),
2621 Peer => $path,
2622 );
2623 if (!$sock) {
2624 return if $! == ECONNREFUSED; # The container is not running
2625 die "failed to open container ${vmid}'s command socket: $!\n";
2626 }
2627
1a416433
DC
2628 my $conf = PVE::LXC::Config->load_config($vmid);
2629 PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'pre-stop');
2630
b1bad293
WB
2631 # Stop the container:
2632
2633 my $cmd = ['lxc-stop', '-n', $vmid];
2634
2635 if ($kill) {
2636 push @$cmd, '--kill'; # doesn't allow timeouts
e0e29818
TL
2637 } else {
2638 # lxc-stop uses a default timeout
2639 push @$cmd, '--nokill' if !$kill_after_timeout;
2640
2641 if (defined($shutdown_timeout)) {
2642 push @$cmd, '--timeout', $shutdown_timeout;
2643 # Give run_command 5 extra seconds
2644 $shutdown_timeout += 5;
2645 }
b1bad293
WB
2646 }
2647
10937f87 2648 eval { run_command($cmd, timeout => $shutdown_timeout) };
0d1d137e
FW
2649
2650 # Wait until the command socket is closed.
2651 # In case the lxc-stop call failed, reading from the command socket may block forever,
2652 # so poll with another timeout to avoid freezing the shutdown task.
b1bad293 2653 if (my $err = $@) {
0d1d137e 2654 warn $err if $err;
b1bad293 2655
0d1d137e
FW
2656 my $poll = IO::Poll->new();
2657 $poll->mask($sock => POLLIN | POLLHUP); # watch for input and EOF events
2658 $poll->poll($shutdown_timeout); # IO::Poll timeout is in seconds
2659 return if ($poll->events($sock) & POLLHUP);
2660 } else {
2661 my $result = <$sock>;
2662 return if !defined $result; # monitor is gone and the ct has stopped.
2663 }
b1bad293 2664
b1bad293
WB
2665 die "container did not stop\n";
2666}
846a66b0 2667
f5fe1125
OB
2668sub vm_reboot {
2669 my ($vmid, $timeout, $skiplock) = @_;
2670
2671 PVE::LXC::Config->lock_config($vmid, sub {
2672 return if !check_running($vmid);
2673
2674 vm_stop($vmid, 0, $timeout, 1); # kill if timeout exceeds
2675
2676 my $conf = PVE::LXC::Config->load_config($vmid);
2677 vm_start($vmid, $conf);
2678 });
2679}
2680
00501642
WB
2681sub run_unshared {
2682 my ($code) = @_;
2683
2684 return PVE::Tools::run_fork(sub {
2685 # Unshare the mount namespace
2686 die "failed to unshare mount namespace: $!\n"
2687 if !PVE::Tools::unshare(PVE::Tools::CLONE_NEWNS);
10937f87 2688 run_command(['mount', '--make-rslave', '/']);
00501642
WB
2689 return $code->();
2690 });
2691}
2692
2693my $copy_volume = sub {
4c98d66c 2694 my ($src_volid, $src, $dst_volid, $dest, $storage_cfg, $snapname, $bwlimit, $rootuid, $rootgid) = @_;
00501642 2695
fd8cab92 2696 my $src_mp = { volume => $src_volid, mp => '/', ro => 1 };
00501642
WB
2697 $src_mp->{type} = PVE::LXC::Config->classify_mountpoint($src_volid);
2698
fd8cab92 2699 my $dst_mp = { volume => $dst_volid, mp => '/', ro => 0 };
00501642
WB
2700 $dst_mp->{type} = PVE::LXC::Config->classify_mountpoint($dst_volid);
2701
2702 my @mounted;
2703 eval {
2704 # mount and copy
2705 mkdir $src;
4c98d66c 2706 mountpoint_mount($src_mp, $src, $storage_cfg, $snapname, $rootuid, $rootgid);
00501642
WB
2707 push @mounted, $src;
2708 mkdir $dest;
4c98d66c 2709 mountpoint_mount($dst_mp, $dest, $storage_cfg, undef, $rootuid, $rootgid);
00501642
WB
2710 push @mounted, $dest;
2711
08540353
SI
2712 $bwlimit //= 0;
2713
10937f87
TL
2714 run_command([
2715 'rsync',
2716 '--stats',
2717 '-X',
2718 '-A',
2719 '--numeric-ids',
2720 '-aH',
2721 '--whole-file',
2722 '--sparse',
2723 '--one-file-system',
2724 "--bwlimit=$bwlimit",
2725 "$src/",
2726 $dest
2727 ]);
00501642
WB
2728 };
2729 my $err = $@;
75c2677f
DJ
2730
2731 # Wait for rsync's children to release dest so that
2732 # consequent file operations (umount, remove) are possible
2733 while ((system {"fuser"} "fuser", "-s", $dest) == 0) {sleep 1};
2734
00501642 2735 foreach my $mount (reverse @mounted) {
10937f87 2736 eval { run_command(['/bin/umount', $mount], errfunc => sub{})};
00501642
WB
2737 warn "Can't umount $mount\n" if $@;
2738 }
2739
2740 # If this fails they're used as mount points in a concurrent operation
2741 # (which should not happen but there's also no real need to get rid of them).
2742 rmdir $dest;
2743 rmdir $src;
2744
2745 die $err if $err;
2746};
2747
2748# Should not be called after unsharing the mount namespace!
2749sub copy_volume {
08540353 2750 my ($mp, $vmid, $storage, $storage_cfg, $conf, $snapname, $bwlimit) = @_;
00501642
WB
2751
2752 die "cannot copy volumes of type $mp->{type}\n" if $mp->{type} ne 'volume';
2753 File::Path::make_path("/var/lib/lxc/$vmid");
2754 my $dest = "/var/lib/lxc/$vmid/.copy-volume-1";
2755 my $src = "/var/lib/lxc/$vmid/.copy-volume-2";
2756
2757 # get id's for unprivileged container
2758 my (undef, $rootuid, $rootgid) = parse_id_maps($conf);
2759
2760 # Allocate the disk before unsharing in order to make sure zfs subvolumes
2761 # are visible in this namespace, otherwise the host only sees the empty
2762 # (not-mounted) directory.
2763 my $new_volid;
2764 eval {
5154e3e9
WB
2765 # Make sure $mp contains a correct size.
2766 $mp->{size} = PVE::Storage::volume_size_info($storage_cfg, $mp->{volume});
00501642
WB
2767 my $needs_chown;
2768 ($new_volid, $needs_chown) = alloc_disk($storage_cfg, $vmid, $storage, $mp->{size}/1024, $rootuid, $rootgid);
2769 if ($needs_chown) {
2770 PVE::Storage::activate_volumes($storage_cfg, [$new_volid], undef);
2771 my $path = PVE::Storage::path($storage_cfg, $new_volid, undef);
2772 chown($rootuid, $rootgid, $path);
2773 }
2774
2775 run_unshared(sub {
4c98d66c 2776 $copy_volume->($mp->{volume}, $src, $new_volid, $dest, $storage_cfg, $snapname, $bwlimit, $rootuid, $rootgid);
00501642
WB
2777 });
2778 };
2779 if (my $err = $@) {
2780 PVE::Storage::vdisk_free($storage_cfg, $new_volid)
2781 if defined($new_volid);
2782 die $err;
2783 }
2784
2785 return $new_volid;
2786}
2787
022a70ff
WB
2788sub get_lxc_version() {
2789 my $version;
10937f87 2790 run_command([qw(lxc-start --version)], outfunc => sub {
022a70ff
WB
2791 my ($line) = @_;
2792 # We only parse out major & minor version numbers.
2793 if ($line =~ /^(\d+)\.(\d+)(?:\D.*)?$/) {
2794 $version = [$1, $2];
2795 }
2796 });
2797
2798 die "failed to get lxc version\n" if !defined($version);
2799
2800 # return as a list:
2801 return $version->@*;
2802}
2803
89424a8b
TL
2804sub freeze($) {
2805 my ($vmid) = @_;
396a9122
WB
2806 if (PVE::CGroup::cgroup_mode() == 2) {
2807 PVE::LXC::Command::freeze($vmid, 30);
2808 } else {
2809 PVE::LXC::CGroup->new($vmid)->freeze_thaw(1);
2810 }
89424a8b 2811}
c9b25dfd 2812
89424a8b
TL
2813sub thaw($) {
2814 my ($vmid) = @_;
396a9122
WB
2815 if (PVE::CGroup::cgroup_mode() == 2) {
2816 PVE::LXC::Command::unfreeze($vmid, 30);
2817 } else {
2818 PVE::LXC::CGroup->new($vmid)->freeze_thaw(0);
2819 }
c9b25dfd
WB
2820}
2821
9fd103b2
AD
2822sub create_ifaces_ipams_ips {
2823 my ($conf, $vmid) = @_;
2824
2825 return if !$have_sdn;
2826
2827 for my $opt (keys %$conf) {
2828 next if $opt !~ m/^net(\d+)$/;
0b06b9fb 2829 my $net = PVE::LXC::Config->parse_lxc_network($conf->{$opt});
9fd103b2 2830 next if $net->{type} ne 'veth';
0b06b9fb 2831 PVE::Network::SDN::Vnets::add_next_free_cidr($net->{bridge}, $conf->{hostname}, $net->{hwaddr}, $vmid, undef, 1);
9fd103b2
AD
2832 }
2833}
2834
986c79d6
AD
2835sub delete_ifaces_ipams_ips {
2836 my ($conf, $vmid) = @_;
2837
2838 return if !$have_sdn;
2839
2840 for my $opt (keys %$conf) {
2841 next if $opt !~ m/^net(\d+)$/;
0b06b9fb 2842 my $net = PVE::LXC::Config->parse_lxc_network($conf->{$opt});
986c79d6
AD
2843 eval { PVE::Network::SDN::Vnets::del_ips_from_mac($net->{bridge}, $net->{hwaddr}, $conf->{hostname}) };
2844 warn $@ if $@;
2845 }
2846}
2847
f76a2828 28481;