]> git.proxmox.com Git - pve-container.git/blame - src/PVE/LXC.pm
add feature flags using apparmor profile generation
[pve-container.git] / src / PVE / LXC.pm
CommitLineData
f76a2828
DM
1package PVE::LXC;
2
3use strict;
4use warnings;
67afe46e 5
d14a9a1b 6use POSIX qw(EINTR);
f76a2828 7
34fdb3d7
WB
8use Socket;
9
f76a2828 10use File::Path;
2cfae16e
WB
11use File::Spec;
12use Cwd qw();
ab3722b3 13use Fcntl qw(O_RDONLY O_NOFOLLOW O_DIRECTORY);
b1bad293
WB
14use Errno qw(ELOOP ENOTDIR EROFS ECONNREFUSED);
15use IO::Socket::UNIX;
f76a2828 16
f1ba1a4b 17use PVE::Exception qw(raise_perm_exc);
c65e0a6d 18use PVE::Storage;
f76a2828
DM
19use PVE::SafeSyslog;
20use PVE::INotify;
8233d33d 21use PVE::JSONSchema qw(get_standard_option);
ab3722b3 22use PVE::Tools qw($IPV6RE $IPV4RE dir_glob_foreach lock_file lock_file_full O_PATH);
92902047 23use PVE::CpuSet;
68fba17b 24use PVE::Network;
52389a07 25use PVE::AccessControl;
228a5a1d 26use PVE::ProcFSTools;
0389da0d 27use PVE::Syscall;
67afe46e 28use PVE::LXC::Config;
8233d33d 29
688afc63 30use Time::HiRes qw (gettimeofday);
f76a2828 31
5a63f1c5
WB
32my $LXC_CONFIG_PATH = '/usr/share/lxc/config';
33
27916659
DM
34my $nodename = PVE::INotify::nodename();
35
688afc63
WL
36my $cpuinfo= PVE::ProcFSTools::read_cpuinfo();
37
f76a2828
DM
38sub config_list {
39 my $vmlist = PVE::Cluster::get_vmlist();
40 my $res = {};
41 return $res if !$vmlist || !$vmlist->{ids};
42 my $ids = $vmlist->{ids};
43
44 foreach my $vmid (keys %$ids) {
45 next if !$vmid; # skip CT0
46 my $d = $ids->{$vmid};
47 next if !$d->{node} || $d->{node} ne $nodename;
48 next if !$d->{type} || $d->{type} ne 'lxc';
8233d33d 49 $res->{$vmid} = { type => 'lxc', vmid => $vmid };
f76a2828
DM
50 }
51 return $res;
52}
53
5b4657d0
DM
54sub destroy_config {
55 my ($vmid) = @_;
56
67afe46e 57 unlink PVE::LXC::Config->config_file($vmid, $nodename);
3cc56749
FG
58}
59
822de0c3
DM
60# container status helpers
61
62sub list_active_containers {
cbb03fea 63
822de0c3
DM
64 my $filename = "/proc/net/unix";
65
66 # similar test is used by lcxcontainers.c: list_active_containers
67 my $res = {};
cbb03fea 68
822de0c3
DM
69 my $fh = IO::File->new ($filename, "r");
70 return $res if !$fh;
71
72 while (defined(my $line = <$fh>)) {
28df2cde 73 if ($line =~ m/^[a-f0-9]+:\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\d+\s+(\S+)$/) {
822de0c3 74 my $path = $1;
27916659 75 if ($path =~ m!^@/var/lib/lxc/(\d+)/command$!) {
822de0c3
DM
76 $res->{$1} = 1;
77 }
78 }
79 }
80
81 close($fh);
cbb03fea 82
822de0c3
DM
83 return $res;
84}
f76a2828 85
5c752bbf
DM
86# warning: this is slow
87sub check_running {
88 my ($vmid) = @_;
89
90 my $active_hash = list_active_containers();
91
92 return 1 if defined($active_hash->{$vmid});
cbb03fea 93
5c752bbf
DM
94 return undef;
95}
96
10fc3ba5 97sub get_container_disk_usage {
73e03cb7 98 my ($vmid, $pid) = @_;
10fc3ba5 99
73e03cb7 100 return PVE::Tools::df("/proc/$pid/root/", 1);
10fc3ba5
DM
101}
102
688afc63
WL
103my $last_proc_vmid_stat;
104
105my $parse_cpuacct_stat = sub {
3b5070d4 106 my ($vmid, $unprivileged) = @_;
688afc63 107
3b5070d4 108 my $raw = read_cgroup_value('cpuacct', $vmid, $unprivileged, 'cpuacct.stat', 1);
688afc63
WL
109
110 my $stat = {};
111
112 if ($raw =~ m/^user (\d+)\nsystem (\d+)\n/) {
113
114 $stat->{utime} = $1;
115 $stat->{stime} = $2;
116
117 }
118
119 return $stat;
120};
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 },
163};
164
f76a2828
DM
165sub vmstatus {
166 my ($opt_vmid) = @_;
167
8233d33d 168 my $list = $opt_vmid ? { $opt_vmid => { type => 'lxc', vmid => $opt_vmid }} : config_list();
f76a2828 169
822de0c3 170 my $active_hash = list_active_containers();
cbb03fea 171
688afc63
WL
172 my $cpucount = $cpuinfo->{cpus} || 1;
173
174 my $cdtime = gettimeofday;
175
176 my $uptime = (PVE::ProcFSTools::read_proc_uptime(1))[0];
80d56111 177 my $clock_ticks = POSIX::sysconf(&POSIX::_SC_CLK_TCK);
688afc63 178
3b5070d4
WB
179 my $unprivileged = {};
180
f76a2828 181 foreach my $vmid (keys %$list) {
f76a2828 182 my $d = $list->{$vmid};
10fc3ba5 183
d5588ee3
DM
184 eval { $d->{pid} = find_lxc_pid($vmid) if defined($active_hash->{$vmid}); };
185 warn $@ if $@; # ignore errors (consider them stopped)
cbb03fea 186
d5588ee3 187 $d->{status} = $d->{pid} ? 'running' : 'stopped';
f76a2828 188
67afe46e 189 my $cfspath = PVE::LXC::Config->cfs_config_path($vmid);
238a56cb 190 my $conf = PVE::Cluster::cfs_read_file($cfspath) || {};
cbb03fea 191
3b5070d4
WB
192 $unprivileged->{$vmid} = $conf->{unprivileged};
193
27916659 194 $d->{name} = $conf->{'hostname'} || "CT$vmid";
238a56cb 195 $d->{name} =~ s/[\s]//g;
cbb03fea 196
f2357408
DM
197 $d->{cpus} = $conf->{cores} || $conf->{cpulimit};
198 $d->{cpus} = $cpucount if !$d->{cpus};
44da0641 199
d0226204
WB
200 $d->{lock} = $conf->{lock} || '';
201
d5588ee3
DM
202 if ($d->{pid}) {
203 my $res = get_container_disk_usage($vmid, $d->{pid});
27916659
DM
204 $d->{disk} = $res->{used};
205 $d->{maxdisk} = $res->{total};
206 } else {
207 $d->{disk} = 0;
208 # use 4GB by default ??
209 if (my $rootfs = $conf->{rootfs}) {
1b4cf758 210 my $rootinfo = PVE::LXC::Config->parse_ct_rootfs($rootfs);
af02245c 211 $d->{maxdisk} = $rootinfo->{size} || (4*1024*1024*1024);
27916659
DM
212 } else {
213 $d->{maxdisk} = 4*1024*1024*1024;
10fc3ba5 214 }
238a56cb 215 }
cbb03fea 216
238a56cb
DM
217 $d->{mem} = 0;
218 $d->{swap} = 0;
95df9a12
DM
219 $d->{maxmem} = ($conf->{memory}||512)*1024*1024;
220 $d->{maxswap} = ($conf->{swap}//0)*1024*1024;
e901d418 221
238a56cb
DM
222 $d->{uptime} = 0;
223 $d->{cpu} = 0;
e901d418 224
238a56cb
DM
225 $d->{netout} = 0;
226 $d->{netin} = 0;
f76a2828 227
238a56cb
DM
228 $d->{diskread} = 0;
229 $d->{diskwrite} = 0;
bb1ac2de 230
67afe46e 231 $d->{template} = PVE::LXC::Config->is_template($conf);
f76a2828 232 }
cbb03fea 233
238a56cb
DM
234 foreach my $vmid (keys %$list) {
235 my $d = $list->{$vmid};
d5588ee3
DM
236 my $pid = $d->{pid};
237
238 next if !$pid; # skip stopped CTs
f76a2828 239
80d56111
DC
240 my $proc_pid_stat = PVE::ProcFSTools::read_proc_pid_stat($pid);
241 $d->{uptime} = int(($uptime - $proc_pid_stat->{starttime}) / $clock_ticks); # the method lxcfs uses
22a77285 242
3b5070d4
WB
243 my $unpriv = $unprivileged->{$vmid};
244
0b6a2f0e
WB
245 if (-d '/sys/fs/cgroup/memory') {
246 my $memory_stat = read_cgroup_list('memory', $vmid, $unpriv, 'memory.stat');
247 my $mem_usage_in_bytes = read_cgroup_value('memory', $vmid, $unpriv, 'memory.usage_in_bytes');
248
249 $d->{mem} = $mem_usage_in_bytes - $memory_stat->{total_cache};
250 $d->{swap} = read_cgroup_value('memory', $vmid, $unpriv, 'memory.memsw.usage_in_bytes') - $mem_usage_in_bytes;
251 } else {
252 $d->{mem} = 0;
253 $d->{swap} = 0;
254 }
255
256 if (-d '/sys/fs/cgroup/blkio') {
257 my $blkio_bytes = read_cgroup_value('blkio', $vmid, $unpriv, 'blkio.throttle.io_service_bytes', 1);
258 my @bytes = split(/\n/, $blkio_bytes);
259 foreach my $byte (@bytes) {
260 if (my ($key, $value) = $byte =~ /(Read|Write)\s+(\d+)/) {
261 $d->{diskread} += $2 if $key eq 'Read';
262 $d->{diskwrite} += $2 if $key eq 'Write';
263 }
1e647c7c 264 }
0b6a2f0e
WB
265 } else {
266 $d->{diskread} = 0;
267 $d->{diskwrite} = 0;
b5289322 268 }
688afc63 269
0b6a2f0e
WB
270 if (-d '/sys/fs/cgroup/cpuacct') {
271 my $pstat = $parse_cpuacct_stat->($vmid, $unpriv);
688afc63 272
0b6a2f0e 273 my $used = $pstat->{utime} + $pstat->{stime};
688afc63 274
0b6a2f0e
WB
275 my $old = $last_proc_vmid_stat->{$vmid};
276 if (!$old) {
277 $last_proc_vmid_stat->{$vmid} = {
278 time => $cdtime,
279 used => $used,
280 cpu => 0,
281 };
282 next;
283 }
688afc63 284
0b6a2f0e 285 my $dtime = ($cdtime - $old->{time}) * $cpucount * $cpuinfo->{user_hz};
688afc63 286
0b6a2f0e
WB
287 if ($dtime > 1000) {
288 my $dutime = $used - $old->{used};
688afc63 289
0b6a2f0e
WB
290 $d->{cpu} = (($dutime/$dtime)* $cpucount) / $d->{cpus};
291 $last_proc_vmid_stat->{$vmid} = {
292 time => $cdtime,
293 used => $used,
294 cpu => $d->{cpu},
295 };
296 } else {
297 $d->{cpu} = $old->{cpu};
298 }
688afc63 299 } else {
0b6a2f0e 300 $d->{cpu} = 0;
688afc63 301 }
238a56cb 302 }
cbb03fea 303
68b8f4d1
WL
304 my $netdev = PVE::ProcFSTools::read_proc_net_dev();
305
306 foreach my $dev (keys %$netdev) {
307 next if $dev !~ m/^veth([1-9]\d*)i/;
308 my $vmid = $1;
309 my $d = $list->{$vmid};
310
311 next if !$d;
312
313 $d->{netout} += $netdev->{$dev}->{receive};
314 $d->{netin} += $netdev->{$dev}->{transmit};
315
316 }
317
f76a2828
DM
318 return $list;
319}
320
3b5070d4
WB
321sub read_cgroup_list($$$$) {
322 my ($group, $vmid, $unprivileged, $name) = @_;
b3059d35 323
3b5070d4 324 my $content = read_cgroup_value($group, $vmid, $unprivileged, $name, 1);
b3059d35
TL
325
326 return { split(/\s+/, $content) };
327}
328
3b5070d4
WB
329sub read_cgroup_value($$$$$) {
330 my ($group, $vmid, $unprivileged, $name, $full) = @_;
238a56cb 331
3b5070d4
WB
332 my $nsdir = $unprivileged ? '' : 'ns/';
333 my $path = "/sys/fs/cgroup/$group/lxc/$vmid/${nsdir}$name";
238a56cb
DM
334
335 return PVE::Tools::file_get_contents($path) if $full;
336
337 return PVE::Tools::file_read_firstline($path);
338}
339
bf0b8c43
AD
340sub write_cgroup_value {
341 my ($group, $vmid, $name, $value) = @_;
342
343 my $path = "/sys/fs/cgroup/$group/lxc/$vmid/$name";
344 PVE::ProcFSTools::write_proc_entry($path, $value) if -e $path;
345
346}
347
52f1d76b
DM
348sub find_lxc_console_pids {
349
350 my $res = {};
351
352 PVE::Tools::dir_glob_foreach('/proc', '\d+', sub {
353 my ($pid) = @_;
354
355 my $cmdline = PVE::Tools::file_read_firstline("/proc/$pid/cmdline");
356 return if !$cmdline;
357
358 my @args = split(/\0/, $cmdline);
359
c31ad455 360 # search for lxc-console -n <vmid>
cbb03fea 361 return if scalar(@args) != 3;
52f1d76b
DM
362 return if $args[1] ne '-n';
363 return if $args[2] !~ m/^\d+$/;
364 return if $args[0] !~ m|^(/usr/bin/)?lxc-console$|;
cbb03fea 365
52f1d76b 366 my $vmid = $args[2];
cbb03fea 367
52f1d76b
DM
368 push @{$res->{$vmid}}, $pid;
369 });
370
371 return $res;
372}
373
bedeaaf1
AD
374sub find_lxc_pid {
375 my ($vmid) = @_;
376
377 my $pid = undef;
378 my $parser = sub {
379 my $line = shift;
8b25977f 380 $pid = $1 if $line =~ m/^PID:\s+(\d+)$/;
bedeaaf1 381 };
c39aa40a 382 PVE::Tools::run_command(['lxc-info', '-n', $vmid, '-p'], outfunc => $parser);
bedeaaf1 383
8b25977f 384 die "unable to get PID for CT $vmid (not running?)\n" if !$pid;
cbb03fea 385
8b25977f 386 return $pid;
bedeaaf1
AD
387}
388
cbb03fea 389# Note: we cannot use Net:IP, because that only allows strict
55fa4e09
DM
390# CIDR networks
391sub parse_ipv4_cidr {
392 my ($cidr, $noerr) = @_;
393
f7a7b413
WB
394 if ($cidr =~ m!^($IPV4RE)(?:/(\d+))$! && ($2 > 7) && ($2 <= 32)) {
395 return { address => $1, netmask => $PVE::Network::ipv4_reverse_mask->[$2] };
55fa4e09 396 }
cbb03fea 397
55fa4e09 398 return undef if $noerr;
cbb03fea 399
55fa4e09
DM
400 die "unable to parse ipv4 address/mask\n";
401}
93285df8 402
0b6a2f0e
WB
403sub get_cgroup_subsystems {
404 my $v1 = {};
405 my $v2 = 0;
406 my $data = PVE::Tools::file_get_contents('/proc/self/cgroup');
407 while ($data =~ /^\d+:([^:\n]*):.*$/gm) {
408 my $type = $1;
409 if (length($type)) {
410 $v1->{$_} = 1 foreach split(/,/, $type);
411 } else {
412 $v2 = 1;
413 }
414 }
415 return wantarray ? ($v1, $v2) : $v1;
416}
e22af68f 417
5a63f1c5
WB
418# Currently we do not need to create seccomp profile 'files' as the only
419# choice our configuration actually allows is "with or without keyctl()",
420# so we distinguish between using lxc's "default" seccomp profile and our
421# added pve-userns.seccomp file.
422#
423# This returns a configuration line added to the raw lxc config.
424sub make_seccomp_config {
425 my ($conf, $unprivileged, $features) = @_;
426 # User-configured profile has precedence, note that the user's entry would
427 # be written 'after' this line anyway...
428 if (PVE::LXC::Config->has_lxc_entry($conf, 'lxc.seccomp.profile')) {
429 # Warn the user if this conflicts with a feature:
430 if ($features->{keyctl}) {
431 warn "explicitly configured lxc.seccomp.profile overrides the following settings: features:keyctl\n";
432 }
433 return '';
434 }
435
436 # Privileged containers keep using the default (which is already part of
437 # the files included via lxc.include, so we don't need to write it out,
438 # that way it stays admin-configurable via /usr/share/lxc/config/... as
439 # well)
440 return '' if !$unprivileged;
441
442 # Unprivileged containers will get keyctl() disabled by default as a
443 # workaround for systemd-networkd behavior. But we have an option to
444 # explicitly enable it:
445 return '' if $features->{keyctl};
446
447 # Finally we're in an unprivileged container without `keyctl` set
448 # explicitly. We have a file prepared for this:
449 return "lxc.seccomp.profile = $LXC_CONFIG_PATH/pve-userns.seccomp\n";
450}
451
452# Since lxc-3.0.2 we can have lxc generate a profile for the container
453# automatically. The default should be equivalent to the old
454# `lxc-container-default-cgns` profile.
455#
456# Additionally this also added `lxc.apparmor.raw` which can be used to inject
457# additional lines into the profile. We can use that to allow mounting specific
458# file systems.
459sub make_apparmor_config {
460 my ($conf, $unprivileged, $features) = @_;
461
462 # user-configured profile has precedence, but first we go through our own
463 # code to figure out whether we should warn the user:
464
465 my $raw = "lxc.apparmor.profile = generated\n";
466 my @profile_uses;
467
468 # There's lxc.apparmor.allow_nesting now, which will add the necessary
469 # apparmor lines, create an apparmor namespace for the container, but also
470 # adds proc and sysfs mounts to /dev/.lxc/{proc,sys}. These do not have
471 # lxcfs mounted over them, because that would prevent the container from
472 # mounting new instances of them for nested containers.
473 if ($features->{nesting}) {
474 push @profile_uses, 'features:nesting';
475 $raw .= "lxc.apparmor.allow_nesting = 1\n"
476 } else {
477 # In the default profile in /etc/apparmor.d we patch this in because
478 # otherwise a container can for example run `chown` on /sys, breaking
479 # access to it for non-CAP_DAC_OVERRIDE tools on the host:
480 $raw .= "lxc.apparmor.raw = deny mount -> /proc/,\n";
481 $raw .= "lxc.apparmor.raw = deny mount -> /sys/,\n";
482 # Preferably we could use the 'remount' flag but this does not sit well
483 # with apparmor_parser currently:
484 # mount options=(rw, nosuid, nodev, noexec, remount) -> /sys/,
485 }
486
487 if (my $mount = $features->{mount}) {
488 push @profile_uses, 'features:mount';
489 foreach my $fs (PVE::Tools::split_list($mount)) {
490 $raw .= "lxc.apparmor.raw = mount fstype=$fs,\n";
491 }
492 }
493
494 # More to come?
495
496 if (PVE::LXC::Config->has_lxc_entry($conf, 'lxc.apparmor.profile')) {
497 if (length(my $used = join(', ', @profile_uses))) {
498 warn "explicitly configured lxc.apparmor.profile overrides the following settings: $used\n";
499 }
500 return '';
501 }
502
503 return $raw;
504}
505
27916659 506sub update_lxc_config {
f91f3669 507 my ($vmid, $conf) = @_;
b80dd50a 508
bb1ac2de
DM
509 my $dir = "/var/lib/lxc/$vmid";
510
511 if ($conf->{template}) {
512
513 unlink "$dir/config";
514
515 return;
516 }
517
27916659 518 my $raw = '';
b80dd50a 519
27916659
DM
520 die "missing 'arch' - internal error" if !$conf->{arch};
521 $raw .= "lxc.arch = $conf->{arch}\n";
b80dd50a 522
5a63f1c5
WB
523 my $custom_idmap = PVE::LXC::Config->has_lxc_entry($conf, 'lxc.idmap');
524 my $unprivileged = $conf->{unprivileged} || $custom_idmap;
425b62cb 525
27916659 526 my $ostype = $conf->{ostype} || die "missing 'ostype' - internal error";
866e0611 527
059f7bb4
WB
528 my $cfgpath = '/usr/share/lxc/config';
529 my $inc = "$cfgpath/$ostype.common.conf";
530 $inc ="$cfgpath/common.conf" if !-f $inc;
866e0611 531 $raw .= "lxc.include = $inc\n";
5a63f1c5 532 if ($unprivileged) {
059f7bb4
WB
533 $inc = "$cfgpath/$ostype.userns.conf";
534 $inc = "$cfgpath/userns.conf" if !-f $inc;
535 $raw .= "lxc.include = $inc\n";
27916659 536 }
b80dd50a 537
5a63f1c5
WB
538 my $features = PVE::LXC::Config->parse_features($conf->{features});
539
540 $raw .= make_seccomp_config($conf, $unprivileged, $features);
541 $raw .= make_apparmor_config($conf, $unprivileged, $features);
542
50df544c
WB
543 # WARNING: DO NOT REMOVE this without making sure that loop device nodes
544 # cannot be exposed to the container with r/w access (cgroup perms).
545 # When this is enabled mounts will still remain in the monitor's namespace
546 # after the container unmounted them and thus will not detach from their
547 # files while the container is running!
c16b8890 548 $raw .= "lxc.monitor.unshare = 1\n";
58cc92a9 549
0b6a2f0e
WB
550 my $cgv1 = get_cgroup_subsystems();
551
425b62cb
WB
552 # Should we read them from /etc/subuid?
553 if ($unprivileged && !$custom_idmap) {
108c6cab
WB
554 $raw .= "lxc.idmap = u 0 100000 65536\n";
555 $raw .= "lxc.idmap = g 0 100000 65536\n";
425b62cb
WB
556 }
557
d250604f 558 if (!PVE::LXC::Config->has_dev_console($conf)) {
108c6cab 559 $raw .= "lxc.console.path = none\n";
0b6a2f0e 560 $raw .= "lxc.cgroup.devices.deny = c 5:1 rwm\n" if $cgv1->{devices};
eeaea429 561 }
4f958489 562
1b4cf758 563 my $ttycount = PVE::LXC::Config->get_tty_count($conf);
108c6cab 564 $raw .= "lxc.tty.max = $ttycount\n";
cbb03fea 565
c31ad455 566 # some init scripts expect a linux terminal (turnkey).
a691a5a3
DM
567 $raw .= "lxc.environment = TERM=linux\n";
568
27916659 569 my $utsname = $conf->{hostname} || "CT$vmid";
108c6cab 570 $raw .= "lxc.uts.name = $utsname\n";
cbb03fea 571
0b6a2f0e
WB
572 if ($cgv1->{memory}) {
573 my $memory = $conf->{memory} || 512;
574 my $swap = $conf->{swap} // 0;
a12a36e0 575
0b6a2f0e
WB
576 my $lxcmem = int($memory*1024*1024);
577 $raw .= "lxc.cgroup.memory.limit_in_bytes = $lxcmem\n";
27916659 578
0b6a2f0e
WB
579 my $lxcswap = int(($memory + $swap)*1024*1024);
580 $raw .= "lxc.cgroup.memory.memsw.limit_in_bytes = $lxcswap\n";
a12a36e0
WL
581 }
582
0b6a2f0e
WB
583 if ($cgv1->{cpu}) {
584 if (my $cpulimit = $conf->{cpulimit}) {
585 $raw .= "lxc.cgroup.cpu.cfs_period_us = 100000\n";
586 my $value = int(100000*$cpulimit);
587 $raw .= "lxc.cgroup.cpu.cfs_quota_us = $value\n";
588 }
589
590 my $shares = $conf->{cpuunits} || 1024;
591 $raw .= "lxc.cgroup.cpu.shares = $shares\n";
592 }
27916659 593
fddaa91b
DM
594 die "missing 'rootfs' configuration\n"
595 if !defined($conf->{rootfs});
596
1b4cf758 597 my $mountpoint = PVE::LXC::Config->parse_ct_rootfs($conf->{rootfs});
a3076d81 598
108c6cab 599 $raw .= "lxc.rootfs.path = $dir/rootfs\n";
27916659 600
e756bdd6 601 foreach my $k (sort keys %$conf) {
27916659
DM
602 next if $k !~ m/^net(\d+)$/;
603 my $ind = $1;
1b4cf758 604 my $d = PVE::LXC::Config->parse_lxc_network($conf->{$k});
108c6cab
WB
605 $raw .= "lxc.net.$ind.type = veth\n";
606 $raw .= "lxc.net.$ind.veth.pair = veth${vmid}i${ind}\n";
607 $raw .= "lxc.net.$ind.hwaddr = $d->{hwaddr}\n" if defined($d->{hwaddr});
608 $raw .= "lxc.net.$ind.name = $d->{name}\n" if defined($d->{name});
609 $raw .= "lxc.net.$ind.mtu = $d->{mtu}\n" if defined($d->{mtu});
a12a36e0
WL
610 }
611
0b6a2f0e
WB
612 if ($cgv1->{cpuset}) {
613 my $had_cpuset = 0;
614 if (my $lxcconf = $conf->{lxc}) {
615 foreach my $entry (@$lxcconf) {
616 my ($k, $v) = @$entry;
617 $had_cpuset = 1 if $k eq 'lxc.cgroup.cpuset.cpus';
618 $raw .= "$k = $v\n";
619 }
e576f689 620 }
27916659 621
0b6a2f0e
WB
622 my $cores = $conf->{cores};
623 if (!$had_cpuset && $cores) {
624 my $cpuset = eval { PVE::CpuSet->new_from_cgroup('lxc', 'effective_cpus') };
625 $cpuset = PVE::CpuSet->new_from_cgroup('', 'effective_cpus') if !$cpuset;
626 my @members = $cpuset->members();
627 while (scalar(@members) > $cores) {
628 my $randidx = int(rand(scalar(@members)));
629 $cpuset->delete($members[$randidx]);
630 splice(@members, $randidx, 1); # keep track of the changes
631 }
632 $raw .= "lxc.cgroup.cpuset.cpus = ".$cpuset->short_string()."\n";
92902047 633 }
92902047 634 }
0b6a2f0e 635
27916659
DM
636 File::Path::mkpath("$dir/rootfs");
637
638 PVE::Tools::file_set_contents("$dir/config", $raw);
b80dd50a
DM
639}
640
117636e5
DM
641# verify and cleanup nameserver list (replace \0 with ' ')
642sub verify_nameserver_list {
643 my ($nameserver_list) = @_;
644
645 my @list = ();
646 foreach my $server (PVE::Tools::split_list($nameserver_list)) {
647 PVE::JSONSchema::pve_verify_ip($server);
648 push @list, $server;
649 }
650
651 return join(' ', @list);
652}
653
654sub verify_searchdomain_list {
655 my ($searchdomain_list) = @_;
656
657 my @list = ();
658 foreach my $server (PVE::Tools::split_list($searchdomain_list)) {
659 # todo: should we add checks for valid dns domains?
660 push @list, $server;
661 }
662
663 return join(' ', @list);
664}
665
aca816ad 666sub get_console_command {
4d494664 667 my ($vmid, $conf, $noescapechar) = @_;
aca816ad 668
1b4cf758 669 my $cmode = PVE::LXC::Config->get_cmode($conf);
aca816ad 670
4d494664 671 my $cmd = [];
aca816ad 672 if ($cmode eq 'console') {
4d494664
DC
673 push @$cmd, 'lxc-console', '-n', $vmid, '-t', 0;
674 push @$cmd, '-e', -1 if $noescapechar;
aca816ad 675 } elsif ($cmode eq 'tty') {
4d494664
DC
676 push @$cmd, 'lxc-console', '-n', $vmid;
677 push @$cmd, '-e', -1 if $noescapechar;
aca816ad 678 } elsif ($cmode eq 'shell') {
4d494664 679 push @$cmd, 'lxc-attach', '--clear-env', '-n', $vmid;
aca816ad
DM
680 } else {
681 die "internal error";
682 }
4d494664
DC
683
684 return $cmd;
aca816ad
DM
685}
686
c325b32f
DM
687sub get_primary_ips {
688 my ($conf) = @_;
689
690 # return data from net0
cbb03fea 691
27916659 692 return undef if !defined($conf->{net0});
1b4cf758 693 my $net = PVE::LXC::Config->parse_lxc_network($conf->{net0});
c325b32f
DM
694
695 my $ipv4 = $net->{ip};
db78a181
WB
696 if ($ipv4) {
697 if ($ipv4 =~ /^(dhcp|manual)$/) {
698 $ipv4 = undef
699 } else {
700 $ipv4 =~ s!/\d+$!!;
701 }
702 }
65e5eaa3 703 my $ipv6 = $net->{ip6};
db78a181 704 if ($ipv6) {
5f291c7d 705 if ($ipv6 =~ /^(auto|dhcp|manual)$/) {
db78a181
WB
706 $ipv6 = undef;
707 } else {
708 $ipv6 =~ s!/\d+$!!;
709 }
710 }
cbb03fea 711
c325b32f
DM
712 return ($ipv4, $ipv6);
713}
148d1cb4 714
b407293b
WB
715sub delete_mountpoint_volume {
716 my ($storage_cfg, $vmid, $volume) = @_;
717
d250604f 718 return if PVE::LXC::Config->classify_mountpoint($volume) ne 'volume';
b407293b
WB
719
720 my ($vtype, $name, $owner) = PVE::Storage::parse_volname($storage_cfg, $volume);
721 PVE::Storage::vdisk_free($storage_cfg, $volume) if $vmid == $owner;
722}
ef241384 723
27916659 724sub destroy_lxc_container {
bccaa371 725 my ($storage_cfg, $vmid, $conf, $replacement_conf) = @_;
148d1cb4 726
d250604f 727 PVE::LXC::Config->foreach_mountpoint($conf, sub {
db8989e1 728 my ($ms, $mountpoint) = @_;
b407293b 729 delete_mountpoint_volume($storage_cfg, $vmid, $mountpoint->{volume});
db8989e1
WB
730 });
731
27916659
DM
732 rmdir "/var/lib/lxc/$vmid/rootfs";
733 unlink "/var/lib/lxc/$vmid/config";
734 rmdir "/var/lib/lxc/$vmid";
bccaa371
FG
735 if (defined $replacement_conf) {
736 PVE::LXC::Config->write_config($vmid, $replacement_conf);
737 } else {
738 destroy_config($vmid);
739 }
27916659
DM
740
741 #my $cmd = ['lxc-destroy', '-n', $vmid ];
742 #PVE::Tools::run_command($cmd);
148d1cb4 743}
68fba17b 744
ef241384 745sub vm_stop_cleanup {
5fa890f0 746 my ($storage_cfg, $vmid, $conf, $keepActive) = @_;
ef241384
DM
747
748 eval {
749 if (!$keepActive) {
bf9d912c 750
d250604f 751 my $vollist = PVE::LXC::Config->get_vm_volumes($conf);
a8b6b8a7 752 PVE::Storage::deactivate_volumes($storage_cfg, $vollist);
ef241384
DM
753 }
754 };
755 warn $@ if $@; # avoid errors - just warn
756}
757
93cdbbfb
AD
758my $safe_num_ne = sub {
759 my ($a, $b) = @_;
760
761 return 0 if !defined($a) && !defined($b);
762 return 1 if !defined($a);
763 return 1 if !defined($b);
764
765 return $a != $b;
766};
767
768my $safe_string_ne = sub {
769 my ($a, $b) = @_;
770
771 return 0 if !defined($a) && !defined($b);
772 return 1 if !defined($a);
773 return 1 if !defined($b);
774
775 return $a ne $b;
776};
777
778sub update_net {
bedeaaf1 779 my ($vmid, $conf, $opt, $newnet, $netid, $rootdir) = @_;
93cdbbfb 780
18862537
WB
781 if ($newnet->{type} ne 'veth') {
782 # for when there are physical interfaces
783 die "cannot update interface of type $newnet->{type}";
784 }
785
786 my $veth = "veth${vmid}i${netid}";
93cdbbfb
AD
787 my $eth = $newnet->{name};
788
18862537 789 if (my $oldnetcfg = $conf->{$opt}) {
1b4cf758 790 my $oldnet = PVE::LXC::Config->parse_lxc_network($oldnetcfg);
18862537
WB
791
792 if (&$safe_string_ne($oldnet->{hwaddr}, $newnet->{hwaddr}) ||
793 &$safe_string_ne($oldnet->{name}, $newnet->{name})) {
93cdbbfb 794
18862537 795 PVE::Network::veth_delete($veth);
bedeaaf1 796 delete $conf->{$opt};
67afe46e 797 PVE::LXC::Config->write_config($vmid, $conf);
93cdbbfb 798
18862537 799 hotplug_net($vmid, $conf, $opt, $newnet, $netid);
bedeaaf1 800
380962c7
WB
801 } else {
802 if (&$safe_string_ne($oldnet->{bridge}, $newnet->{bridge}) ||
803 &$safe_num_ne($oldnet->{tag}, $newnet->{tag}) ||
804 &$safe_num_ne($oldnet->{firewall}, $newnet->{firewall})) {
bedeaaf1 805
18862537 806 if ($oldnet->{bridge}) {
bedeaaf1 807 PVE::Network::tap_unplug($veth);
18862537
WB
808 foreach (qw(bridge tag firewall)) {
809 delete $oldnet->{$_};
810 }
1b4cf758 811 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($oldnet);
67afe46e 812 PVE::LXC::Config->write_config($vmid, $conf);
bedeaaf1 813 }
93cdbbfb 814
380962c7
WB
815 PVE::Network::tap_plug($veth, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
816 # This includes the rate:
817 foreach (qw(bridge tag firewall rate)) {
18862537
WB
818 $oldnet->{$_} = $newnet->{$_} if $newnet->{$_};
819 }
380962c7
WB
820 } elsif (&$safe_string_ne($oldnet->{rate}, $newnet->{rate})) {
821 # Rate can be applied on its own but any change above needs to
822 # include the rate in tap_plug since OVS resets everything.
823 PVE::Network::tap_rate_limit($veth, $newnet->{rate});
824 $oldnet->{rate} = $newnet->{rate}
825 }
826 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($oldnet);
827 PVE::LXC::Config->write_config($vmid, $conf);
93cdbbfb
AD
828 }
829 } else {
18862537 830 hotplug_net($vmid, $conf, $opt, $newnet, $netid);
93cdbbfb
AD
831 }
832
bedeaaf1 833 update_ipconfig($vmid, $conf, $opt, $eth, $newnet, $rootdir);
93cdbbfb
AD
834}
835
836sub hotplug_net {
18862537 837 my ($vmid, $conf, $opt, $newnet, $netid) = @_;
93cdbbfb 838
18862537 839 my $veth = "veth${vmid}i${netid}";
cbb03fea 840 my $vethpeer = $veth . "p";
93cdbbfb
AD
841 my $eth = $newnet->{name};
842
843 PVE::Network::veth_create($veth, $vethpeer, $newnet->{bridge}, $newnet->{hwaddr});
380962c7 844 PVE::Network::tap_plug($veth, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
93cdbbfb 845
cbb03fea 846 # attach peer in container
93cdbbfb
AD
847 my $cmd = ['lxc-device', '-n', $vmid, 'add', $vethpeer, "$eth" ];
848 PVE::Tools::run_command($cmd);
849
cbb03fea 850 # link up peer in container
93cdbbfb
AD
851 $cmd = ['lxc-attach', '-n', $vmid, '-s', 'NETWORK', '--', '/sbin/ip', 'link', 'set', $eth ,'up' ];
852 PVE::Tools::run_command($cmd);
bedeaaf1 853
18862537
WB
854 my $done = { type => 'veth' };
855 foreach (qw(bridge tag firewall hwaddr name)) {
856 $done->{$_} = $newnet->{$_} if $newnet->{$_};
857 }
1b4cf758 858 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($done);
bedeaaf1 859
67afe46e 860 PVE::LXC::Config->write_config($vmid, $conf);
93cdbbfb
AD
861}
862
68a05bb3 863sub update_ipconfig {
bedeaaf1
AD
864 my ($vmid, $conf, $opt, $eth, $newnet, $rootdir) = @_;
865
f2104b80 866 my $lxc_setup = PVE::LXC::Setup->new($conf, $rootdir);
bedeaaf1 867
1b4cf758 868 my $optdata = PVE::LXC::Config->parse_lxc_network($conf->{$opt});
84e0c123
WB
869 my $deleted = [];
870 my $added = [];
8d723477
WB
871 my $nscmd = sub {
872 my $cmdargs = shift;
873 PVE::Tools::run_command(['lxc-attach', '-n', $vmid, '-s', 'NETWORK', '--', @_], %$cmdargs);
84e0c123 874 };
8d723477 875 my $ipcmd = sub { &$nscmd({}, '/sbin/ip', @_) };
2bfd1615 876
84e0c123 877 my $change_ip_config = sub {
f39002a6
DM
878 my ($ipversion) = @_;
879
880 my $family_opt = "-$ipversion";
881 my $suffix = $ipversion == 4 ? '' : $ipversion;
84e0c123
WB
882 my $gw= "gw$suffix";
883 my $ip= "ip$suffix";
bedeaaf1 884
6178b0dd
WB
885 my $newip = $newnet->{$ip};
886 my $newgw = $newnet->{$gw};
887 my $oldip = $optdata->{$ip};
ded5d25a 888 my $oldgw = $optdata->{$gw};
6178b0dd
WB
889
890 my $change_ip = &$safe_string_ne($oldip, $newip);
ded5d25a 891 my $change_gw = &$safe_string_ne($oldgw, $newgw);
bedeaaf1 892
84e0c123 893 return if !$change_ip && !$change_gw;
68a05bb3 894
84e0c123 895 # step 1: add new IP, if this fails we cancel
292aff54
WB
896 my $is_real_ip = ($newip && $newip !~ /^(?:auto|dhcp|manual)$/);
897 if ($change_ip && $is_real_ip) {
8d723477 898 eval { &$ipcmd($family_opt, 'addr', 'add', $newip, 'dev', $eth); };
84e0c123
WB
899 if (my $err = $@) {
900 warn $err;
901 return;
902 }
bedeaaf1 903 }
bedeaaf1 904
84e0c123
WB
905 # step 2: replace gateway
906 # If this fails we delete the added IP and cancel.
907 # If it succeeds we save the config and delete the old IP, ignoring
908 # errors. The config is then saved.
909 # Note: 'ip route replace' can add
910 if ($change_gw) {
6178b0dd 911 if ($newgw) {
292aff54
WB
912 eval {
913 if ($is_real_ip && !PVE::Network::is_ip_in_cidr($newgw, $newip, $ipversion)) {
914 &$ipcmd($family_opt, 'route', 'add', $newgw, 'dev', $eth);
915 }
916 &$ipcmd($family_opt, 'route', 'replace', 'default', 'via', $newgw);
917 };
84e0c123
WB
918 if (my $err = $@) {
919 warn $err;
920 # the route was not replaced, the old IP is still available
921 # rollback (delete new IP) and cancel
922 if ($change_ip) {
8d723477 923 eval { &$ipcmd($family_opt, 'addr', 'del', $newip, 'dev', $eth); };
84e0c123
WB
924 warn $@ if $@; # no need to die here
925 }
926 return;
927 }
928 } else {
8d723477 929 eval { &$ipcmd($family_opt, 'route', 'del', 'default'); };
84e0c123
WB
930 # if the route was not deleted, the guest might have deleted it manually
931 # warn and continue
932 warn $@ if $@;
933 }
ded5d25a
DL
934 if ($oldgw && $oldip && !PVE::Network::is_ip_in_cidr($oldgw, $oldip)) {
935 eval { &$ipcmd($family_opt, 'route', 'del', $oldgw, 'dev', $eth); };
936 # warn if the route was deleted manually
937 warn $@ if $@;
938 }
2bfd1615 939 }
2bfd1615 940
6178b0dd 941 # from this point on we save the configuration
84e0c123 942 # step 3: delete old IP ignoring errors
6178b0dd 943 if ($change_ip && $oldip && $oldip !~ /^(?:auto|dhcp)$/) {
8d723477
WB
944 # We need to enable promote_secondaries, otherwise our newly added
945 # address will be removed along with the old one.
946 my $promote = 0;
947 eval {
948 if ($ipversion == 4) {
949 &$nscmd({ outfunc => sub { $promote = int(shift) } },
950 'cat', "/proc/sys/net/ipv4/conf/$eth/promote_secondaries");
951 &$nscmd({}, 'sysctl', "net.ipv4.conf.$eth.promote_secondaries=1");
952 }
953 &$ipcmd($family_opt, 'addr', 'del', $oldip, 'dev', $eth);
954 };
84e0c123 955 warn $@ if $@; # no need to die here
8d723477
WB
956
957 if ($ipversion == 4) {
958 &$nscmd({}, 'sysctl', "net.ipv4.conf.$eth.promote_secondaries=$promote");
959 }
bedeaaf1
AD
960 }
961
84e0c123
WB
962 foreach my $property ($ip, $gw) {
963 if ($newnet->{$property}) {
964 $optdata->{$property} = $newnet->{$property};
965 } else {
966 delete $optdata->{$property};
967 }
bedeaaf1 968 }
1b4cf758 969 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($optdata);
67afe46e 970 PVE::LXC::Config->write_config($vmid, $conf);
84e0c123
WB
971 $lxc_setup->setup_network($conf);
972 };
bedeaaf1 973
f39002a6
DM
974 &$change_ip_config(4);
975 &$change_ip_config(6);
489e960d
WL
976
977}
978
34fdb3d7
WB
979my $enter_namespace = sub {
980 my ($vmid, $pid, $which, $type) = @_;
981 sysopen my $fd, "/proc/$pid/ns/$which", O_RDONLY
982 or die "failed to open $which namespace of container $vmid: $!\n";
983 PVE::Tools::setns(fileno($fd), $type)
984 or die "failed to enter $which namespace of container $vmid: $!\n";
985 close $fd;
986};
987
988my $do_syncfs = sub {
989 my ($vmid, $pid, $socket) = @_;
990
991 &$enter_namespace($vmid, $pid, 'mnt', PVE::Tools::CLONE_NEWNS);
992
993 # Tell the parent process to start reading our /proc/mounts
994 print {$socket} "go\n";
995 $socket->flush();
996
997 # Receive /proc/self/mounts
998 my $mountdata = do { local $/ = undef; <$socket> };
999 close $socket;
1000
1001 # Now sync all mountpoints...
1002 my $mounts = PVE::ProcFSTools::parse_mounts($mountdata);
1003 foreach my $mp (@$mounts) {
1004 my ($what, $dir, $fs) = @$mp;
1005 next if $fs eq 'fuse.lxcfs';
1006 eval { PVE::Tools::sync_mountpoint($dir); };
1007 warn $@ if $@;
1008 }
1009};
1010
1011sub sync_container_namespace {
1012 my ($vmid) = @_;
1013 my $pid = find_lxc_pid($vmid);
1014
1015 # SOCK_DGRAM is nicer for barriers but cannot be slurped
1016 socketpair my $pfd, my $cfd, AF_UNIX, SOCK_STREAM, PF_UNSPEC
1017 or die "failed to create socketpair: $!\n";
1018
1019 my $child = fork();
1020 die "fork failed: $!\n" if !defined($child);
1021
1022 if (!$child) {
1023 eval {
1024 close $pfd;
1025 &$do_syncfs($vmid, $pid, $cfd);
1026 };
1027 if (my $err = $@) {
1028 warn $err;
1029 POSIX::_exit(1);
1030 }
1031 POSIX::_exit(0);
1032 }
1033 close $cfd;
1034 my $go = <$pfd>;
1035 die "failed to enter container namespace\n" if $go ne "go\n";
1036
1037 open my $mounts, '<', "/proc/$child/mounts"
1038 or die "failed to open container's /proc/mounts: $!\n";
1039 my $mountdata = do { local $/ = undef; <$mounts> };
1040 close $mounts;
1041 print {$pfd} $mountdata;
1042 close $pfd;
1043
1044 while (waitpid($child, 0) != $child) {}
1045 die "failed to sync container namespace\n" if $? != 0;
1046}
1047
bb1ac2de
DM
1048sub template_create {
1049 my ($vmid, $conf) = @_;
1050
1051 my $storecfg = PVE::Storage::config();
1052
9d1cb46b
WL
1053 PVE::LXC::Config->foreach_mountpoint($conf, sub {
1054 my ($ms, $mountpoint) = @_;
bb1ac2de 1055
9d1cb46b 1056 my $volid = $mountpoint->{volume};
bb1ac2de 1057
9d1cb46b
WL
1058 die "Template feature is not available for '$volid'\n"
1059 if !PVE::Storage::volume_has_feature($storecfg, 'template', $volid);
1060 });
bb1ac2de 1061
9d1cb46b
WL
1062 PVE::LXC::Config->foreach_mountpoint($conf, sub {
1063 my ($ms, $mountpoint) = @_;
1064
1065 my $volid = $mountpoint->{volume};
1066
1067 PVE::Storage::activate_volumes($storecfg, [$volid]);
1068
1069 my $template_volid = PVE::Storage::vdisk_create_base($storecfg, $volid);
1070 $mountpoint->{volume} = $template_volid;
1071 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq "rootfs");
1072 });
bb1ac2de 1073
67afe46e 1074 PVE::LXC::Config->write_config($vmid, $conf);
bb1ac2de
DM
1075}
1076
52389a07 1077sub check_ct_modify_config_perm {
f1ba1a4b 1078 my ($rpcenv, $authuser, $vmid, $pool, $newconf, $delete) = @_;
52389a07 1079
c81f19d1 1080 return 1 if $authuser eq 'root@pam';
52389a07 1081
f1ba1a4b
WB
1082 my $check = sub {
1083 my ($opt, $delete) = @_;
f2357408 1084 if ($opt eq 'cores' || $opt eq 'cpuunits' || $opt eq 'cpulimit') {
52389a07 1085 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.CPU']);
e59a61ed 1086 } elsif ($opt eq 'rootfs' || $opt =~ /^mp\d+$/) {
52389a07 1087 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Disk']);
f1ba1a4b 1088 return if $delete;
1b4cf758
FG
1089 my $data = $opt eq 'rootfs' ? PVE::LXC::Config->parse_ct_rootfs($newconf->{$opt})
1090 : PVE::LXC::Config->parse_ct_mountpoint($newconf->{$opt});
9d294016
FG
1091 raise_perm_exc("mount point type $data->{type} is only allowed for root\@pam")
1092 if $data->{type} ne 'volume';
52389a07
DM
1093 } elsif ($opt eq 'memory' || $opt eq 'swap') {
1094 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Memory']);
1095 } elsif ($opt =~ m/^net\d+$/ || $opt eq 'nameserver' ||
1096 $opt eq 'searchdomain' || $opt eq 'hostname') {
1097 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Network']);
5a63f1c5
WB
1098 } elsif ($opt eq 'features') {
1099 # For now this is restricted to root@pam
1100 raise_perm_exc("changing feature flags is only allowed for root\@pam");
52389a07
DM
1101 } else {
1102 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Options']);
1103 }
f1ba1a4b
WB
1104 };
1105
1106 foreach my $opt (keys %$newconf) {
1107 &$check($opt, 0);
1108 }
1109 foreach my $opt (@$delete) {
1110 &$check($opt, 1);
52389a07
DM
1111 }
1112
1113 return 1;
1114}
1115
9622e848 1116sub umount_all {
da629848 1117 my ($vmid, $storage_cfg, $conf, $noerr) = @_;
9622e848
DM
1118
1119 my $rootdir = "/var/lib/lxc/$vmid/rootfs";
d250604f 1120 my $volid_list = PVE::LXC::Config->get_vm_volumes($conf);
9622e848 1121
d250604f 1122 PVE::LXC::Config->foreach_mountpoint_reverse($conf, sub {
9622e848
DM
1123 my ($ms, $mountpoint) = @_;
1124
1125 my $volid = $mountpoint->{volume};
1126 my $mount = $mountpoint->{mp};
1127
1128 return if !$volid || !$mount;
1129
d18f96b4 1130 my $mount_path = "$rootdir/$mount";
f845a93d 1131 $mount_path =~ s!/+!/!g;
9622e848 1132
228a5a1d
WL
1133 return if !PVE::ProcFSTools::is_mounted($mount_path);
1134
9622e848 1135 eval {
d18f96b4 1136 PVE::Tools::run_command(['umount', '-d', $mount_path]);
9622e848
DM
1137 };
1138 if (my $err = $@) {
1139 if ($noerr) {
1140 warn $err;
1141 } else {
1142 die $err;
1143 }
1144 }
1145 });
9622e848
DM
1146}
1147
1148sub mount_all {
25321b68 1149 my ($vmid, $storage_cfg, $conf, $ignore_ro) = @_;
9622e848
DM
1150
1151 my $rootdir = "/var/lib/lxc/$vmid/rootfs";
1adc7e53 1152 File::Path::make_path($rootdir);
9622e848 1153
d250604f 1154 my $volid_list = PVE::LXC::Config->get_vm_volumes($conf);
9622e848
DM
1155 PVE::Storage::activate_volumes($storage_cfg, $volid_list);
1156
1157 eval {
d250604f 1158 PVE::LXC::Config->foreach_mountpoint($conf, sub {
9622e848
DM
1159 my ($ms, $mountpoint) = @_;
1160
25321b68
FG
1161 $mountpoint->{ro} = 0 if $ignore_ro;
1162
da629848 1163 mountpoint_mount($mountpoint, $rootdir, $storage_cfg);
9622e848
DM
1164 });
1165 };
1166 if (my $err = $@) {
e2007ac2 1167 warn "mounting container failed\n";
9622e848 1168 umount_all($vmid, $storage_cfg, $conf, 1);
e2007ac2 1169 die $err;
9622e848
DM
1170 }
1171
da629848 1172 return $rootdir;
9622e848
DM
1173}
1174
1175
b15c75fc 1176sub mountpoint_mount_path {
da629848 1177 my ($mountpoint, $storage_cfg, $snapname) = @_;
b15c75fc 1178
da629848 1179 return mountpoint_mount($mountpoint, undef, $storage_cfg, $snapname);
b15c75fc 1180}
cc6b0307 1181
21f292ff
WB
1182sub query_loopdev {
1183 my ($path) = @_;
1184 my $found;
1185 my $parser = sub {
1186 my $line = shift;
1187 if ($line =~ m@^(/dev/loop\d+):@) {
1188 $found = $1;
1189 }
1190 };
1191 my $cmd = ['losetup', '--associated', $path];
1192 PVE::Tools::run_command($cmd, outfunc => $parser);
1193 return $found;
1194}
1195
50df544c
WB
1196# Run a function with a file attached to a loop device.
1197# The loop device is always detached afterwards (or set to autoclear).
1198# Returns the loop device.
1199sub run_with_loopdev {
1200 my ($func, $file) = @_;
54d11e5c
WB
1201 my $device = query_loopdev($file);
1202 # Try to reuse an existing device
1203 if ($device) {
1204 # We assume that whoever setup the loop device is responsible for
1205 # detaching it.
1206 &$func($device);
1207 return $device;
1208 }
1209
50df544c
WB
1210 my $parser = sub {
1211 my $line = shift;
1212 if ($line =~ m@^(/dev/loop\d+)$@) {
1213 $device = $1;
1214 }
1215 };
1216 PVE::Tools::run_command(['losetup', '--show', '-f', $file], outfunc => $parser);
1217 die "failed to setup loop device for $file\n" if !$device;
1218 eval { &$func($device); };
1219 my $err = $@;
1220 PVE::Tools::run_command(['losetup', '-d', $device]);
1221 die $err if $err;
1222 return $device;
1223}
1224
ab3722b3
WB
1225# In scalar mode: returns a file handle to the deepest directory node.
1226# In list context: returns a list of:
1227# * the deepest directory node
1228# * the 2nd deepest directory (parent of the above)
1229# * directory name of the last directory
1230# So that the path $2/$3 should lead to $1 afterwards.
1231sub walk_tree_nofollow($$$) {
1232 my ($start, $subdir, $mkdir) = @_;
1233
1234 # splitdir() returns '' for empty components including the leading /
1235 my @comps = grep { length($_)>0 } File::Spec->splitdir($subdir);
1236
1237 sysopen(my $fd, $start, O_PATH | O_DIRECTORY)
1238 or die "failed to open start directory $start: $!\n";
1239
1240 my $dir = $start;
1241 my $last_component = undef;
1242 my $second = $fd;
1243 foreach my $component (@comps) {
1244 $dir .= "/$component";
1245 my $next = PVE::Tools::openat(fileno($fd), $component, O_NOFOLLOW | O_DIRECTORY);
1246
1247 if (!$next) {
1248 # failed, check for symlinks and try to create the path
3eb5f47b 1249 die "symlink encountered at: $dir\n" if $! == ELOOP || $! == ENOTDIR;
ab3722b3
WB
1250 die "cannot open directory $dir: $!\n" if !$mkdir;
1251
1252 # We don't check for errors on mkdirat() here and just try to
1253 # openat() again, since at least one error (EEXIST) is an
1254 # expected possibility if multiple containers start
1255 # simultaneously. If someone else injects a symlink now then
1256 # the subsequent openat() will fail due to O_NOFOLLOW anyway.
1257 PVE::Tools::mkdirat(fileno($fd), $component, 0755);
1258
1259 $next = PVE::Tools::openat(fileno($fd), $component, O_NOFOLLOW | O_DIRECTORY);
1260 die "failed to create path: $dir: $!\n" if !$next;
1261 }
1262
1263 close $second if defined($last_component);
1264 $last_component = $component;
1265 $second = $fd;
1266 $fd = $next;
1267 }
1268
1269 return ($fd, defined($last_component) && $second, $last_component) if wantarray;
1270 close $second if defined($last_component);
1271 return $fd;
1272}
1273
619f27b4
WB
1274# To guard against symlink attack races against other currently running
1275# containers with shared recursive bind mount hierarchies we prepare a
1276# directory handle for the directory we're mounting over to verify the
1277# mountpoint afterwards.
1278sub __bindmount_prepare {
1279 my ($hostroot, $dir) = @_;
1280 my $srcdh = walk_tree_nofollow($hostroot, $dir, 0);
1281 return $srcdh;
1282}
ab3722b3 1283
619f27b4
WB
1284# Assuming we mount to rootfs/a/b/c, verify with the directory handle to 'b'
1285# ($parentfd) that 'b/c' (openat($parentfd, 'c')) really leads to the directory
1286# we intended to bind mount.
1287sub __bindmount_verify {
1288 my ($srcdh, $parentfd, $last_dir, $ro) = @_;
ab3722b3
WB
1289 my $destdh;
1290 if ($parentfd) {
1291 # Open the mount point path coming from the parent directory since the
1292 # filehandle we would have gotten as first result of walk_tree_nofollow
1293 # earlier is still a handle to the underlying directory instead of the
1294 # mounted path.
619f27b4
WB
1295 $destdh = PVE::Tools::openat(fileno($parentfd), $last_dir, PVE::Tools::O_PATH | O_NOFOLLOW | O_DIRECTORY);
1296 die "failed to open mount point: $!\n" if !$destdh;
1297 if ($ro) {
1298 my $dot = '.';
619f27b4 1299 # no separate function because 99% of the time it's the wrong thing to use.
0389da0d 1300 if (syscall(PVE::Syscall::faccessat, fileno($destdh), $dot, &POSIX::W_OK, 0) != -1) {
619f27b4
WB
1301 die "failed to mark bind mount read only\n";
1302 }
1303 die "read-only check failed: $!\n" if $! != EROFS;
1304 }
ab3722b3
WB
1305 } else {
1306 # For the rootfs we don't have a parentfd so we open the path directly.
1307 # Note that this means bindmounting any prefix of the host's
1308 # /var/lib/lxc/$vmid path into another container is considered a grave
1309 # security error.
1310 sysopen $destdh, $last_dir, O_PATH | O_DIRECTORY;
619f27b4 1311 die "failed to open mount point: $!\n" if !$destdh;
ab3722b3 1312 }
ab3722b3
WB
1313
1314 my ($srcdev, $srcinode) = stat($srcdh);
1315 my ($dstdev, $dstinode) = stat($destdh);
1316 close $srcdh;
1317 close $destdh;
1318
619f27b4
WB
1319 return ($srcdev == $dstdev && $srcinode == $dstinode);
1320}
1321
1322# Perform the actual bind mounting:
1323sub __bindmount_do {
1324 my ($dir, $dest, $ro, @extra_opts) = @_;
1325 PVE::Tools::run_command(['mount', '-o', 'bind', @extra_opts, $dir, $dest]);
1326 if ($ro) {
1327 eval { PVE::Tools::run_command(['mount', '-o', 'bind,remount,ro', $dest]); };
1328 if (my $err = $@) {
1329 warn "bindmount error\n";
1330 # don't leave writable bind-mounts behind...
1331 PVE::Tools::run_command(['umount', $dest]);
1332 die $err;
1333 }
1334 }
1335}
1336
1337sub bindmount {
1338 my ($dir, $parentfd, $last_dir, $dest, $ro, @extra_opts) = @_;
1339
1340 my $srcdh = __bindmount_prepare('/', $dir);
1341
1342 __bindmount_do($dir, $dest, $ro, @extra_opts);
1343
1344 if (!__bindmount_verify($srcdh, $parentfd, $last_dir, $ro)) {
ab3722b3
WB
1345 PVE::Tools::run_command(['umount', $dest]);
1346 die "detected mount path change at: $dir\n";
1347 }
c2744c97
WB
1348}
1349
619f27b4
WB
1350# Cleanup $rootdir a bit (double and trailing slashes), build the mount path
1351# from $rootdir and $mount and walk the path from $rootdir to the final
1352# directory to check for symlinks.
1353sub __mount_prepare_rootdir {
1354 my ($rootdir, $mount) = @_;
1355 $rootdir =~ s!/+!/!g;
1356 $rootdir =~ s!/+$!!;
1357 my $mount_path = "$rootdir/$mount";
1358 my ($mpfd, $parentfd, $last_dir) = walk_tree_nofollow($rootdir, $mount, 1);
1359 return ($rootdir, $mount_path, $mpfd, $parentfd, $last_dir);
1360}
1361
b15c75fc 1362# use $rootdir = undef to just return the corresponding mount path
cc6b0307 1363sub mountpoint_mount {
da629848 1364 my ($mountpoint, $rootdir, $storage_cfg, $snapname) = @_;
cc6b0307
AD
1365
1366 my $volid = $mountpoint->{volume};
1367 my $mount = $mountpoint->{mp};
7c921c80 1368 my $type = $mountpoint->{type};
50df544c
WB
1369 my $quota = !$snapname && !$mountpoint->{ro} && $mountpoint->{quota};
1370 my $mounted_dev;
b15c75fc 1371
cc6b0307
AD
1372 return if !$volid || !$mount;
1373
ab3722b3
WB
1374 $mount =~ s!/+!/!g;
1375
b15c75fc 1376 my $mount_path;
ab3722b3 1377 my ($mpfd, $parentfd, $last_dir);
b15c75fc
DM
1378
1379 if (defined($rootdir)) {
619f27b4
WB
1380 ($rootdir, $mount_path, $mpfd, $parentfd, $last_dir) =
1381 __mount_prepare_rootdir($rootdir, $mount);
116ce06f 1382 }
b15c75fc
DM
1383
1384 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
cc6b0307 1385
b15c75fc 1386 die "unknown snapshot path for '$volid'" if !$storage && defined($snapname);
cc6b0307 1387
471dd315 1388 my $optstring = '';
719129ea
WB
1389 my $acl = $mountpoint->{acl};
1390 if (defined($acl)) {
1391 $optstring .= ($acl ? 'acl' : 'noacl');
471dd315 1392 }
c2744c97 1393 my $readonly = $mountpoint->{ro};
471dd315 1394
9de0505c
WL
1395 my @extra_opts;
1396 @extra_opts = ('-o', $optstring) if $optstring;
471dd315 1397
b15c75fc
DM
1398 if ($storage) {
1399
1400 my $scfg = PVE::Storage::storage_config($storage_cfg, $storage);
7c138f58
WB
1401
1402 # early sanity checks:
1403 # we otherwise call realpath on the rbd url
1404 die "containers on rbd storage without krbd are not supported\n"
1405 if $scfg->{type} eq 'rbd' && !$scfg->{krbd};
1406
b15c75fc
DM
1407 my $path = PVE::Storage::path($storage_cfg, $volid, $snapname);
1408
1409 my ($vtype, undef, undef, undef, undef, $isBase, $format) =
1410 PVE::Storage::parse_volname($storage_cfg, $volid);
1411
c87b9dd8
DM
1412 $format = 'iso' if $vtype eq 'iso'; # allow to handle iso files
1413
b15c75fc 1414 if ($format eq 'subvol') {
30de33be
DM
1415 if ($mount_path) {
1416 if ($snapname) {
e84f7f5d
DM
1417 if ($scfg->{type} eq 'zfspool') {
1418 my $path_arg = $path;
1419 $path_arg =~ s!^/+!!;
471dd315 1420 PVE::Tools::run_command(['mount', '-o', 'ro', @extra_opts, '-t', 'zfs', $path_arg, $mount_path]);
e84f7f5d 1421 } else {
30de33be
DM
1422 die "cannot mount subvol snapshots for storage type '$scfg->{type}'\n";
1423 }
e84f7f5d 1424 } else {
719129ea
WB
1425 if (defined($acl) && $scfg->{type} eq 'zfspool') {
1426 my $acltype = ($acl ? 'acltype=posixacl' : 'acltype=noacl');
1427 my (undef, $name) = PVE::Storage::parse_volname($storage_cfg, $volid);
1428 $name .= "\@$snapname" if defined($snapname);
1429 PVE::Tools::run_command(['zfs', 'set', $acltype, "$scfg->{pool}/$name"]);
1430 }
ab3722b3 1431 bindmount($path, $parentfd, $last_dir//$rootdir, $mount_path, $readonly, @extra_opts);
50df544c 1432 warn "cannot enable quota control for bind mounted subvolumes\n" if $quota;
30de33be 1433 }
b15c75fc 1434 }
5f6280cf 1435 return wantarray ? ($path, 0, undef) : $path;
c87b9dd8 1436 } elsif ($format eq 'raw' || $format eq 'iso') {
ada088e6
WB
1437 # NOTE: 'mount' performs canonicalization without the '-c' switch, which for
1438 # device-mapper devices is special-cased to use the /dev/mapper symlinks.
1439 # Our autodev hook expects the /dev/dm-* device currently
1440 # and will create the /dev/mapper symlink accordingly
e439a713
WB
1441 $path = Cwd::realpath($path);
1442 die "failed to get device path\n" if !$path;
1443 ($path) = ($path =~ /^(.*)$/s); #untaint
50df544c
WB
1444 my $domount = sub {
1445 my ($path) = @_;
1446 if ($mount_path) {
1447 if ($format eq 'iso') {
1448 PVE::Tools::run_command(['mount', '-o', 'ro', @extra_opts, $path, $mount_path]);
1449 } elsif ($isBase || defined($snapname)) {
1450 PVE::Tools::run_command(['mount', '-o', 'ro,noload', @extra_opts, $path, $mount_path]);
1451 } else {
1452 if ($quota) {
1453 push @extra_opts, '-o', 'usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0';
1454 }
c2744c97 1455 push @extra_opts, '-o', 'ro' if $readonly;
50df544c
WB
1456 PVE::Tools::run_command(['mount', @extra_opts, $path, $mount_path]);
1457 }
1458 }
1459 };
30de33be 1460 my $use_loopdev = 0;
b15c75fc 1461 if ($scfg->{path}) {
50df544c 1462 $mounted_dev = run_with_loopdev($domount, $path);
30de33be 1463 $use_loopdev = 1;
2e879877
DM
1464 } elsif ($scfg->{type} eq 'drbd' || $scfg->{type} eq 'lvm' ||
1465 $scfg->{type} eq 'rbd' || $scfg->{type} eq 'lvmthin') {
50df544c
WB
1466 $mounted_dev = $path;
1467 &$domount($path);
b15c75fc
DM
1468 } else {
1469 die "unsupported storage type '$scfg->{type}'\n";
1470 }
50df544c 1471 return wantarray ? ($path, $use_loopdev, $mounted_dev) : $path;
b15c75fc
DM
1472 } else {
1473 die "unsupported image format '$format'\n";
1474 }
7c921c80 1475 } elsif ($type eq 'device') {
c9bc95a1 1476 push @extra_opts, '-o', 'ro' if $readonly;
0d449e38
WB
1477 push @extra_opts, '-o', 'usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0' if $quota;
1478 # See the NOTE above about devicemapper canonicalization
1479 my ($devpath) = (Cwd::realpath($volid) =~ /^(.*)$/s); # realpath() taints
471dd315 1480 PVE::Tools::run_command(['mount', @extra_opts, $volid, $mount_path]) if $mount_path;
0d449e38 1481 return wantarray ? ($volid, 0, $devpath) : $volid;
e2007ac2
DM
1482 } elsif ($type eq 'bind') {
1483 die "directory '$volid' does not exist\n" if ! -d $volid;
ab3722b3 1484 bindmount($volid, $parentfd, $last_dir//$rootdir, $mount_path, $readonly, @extra_opts) if $mount_path;
50df544c
WB
1485 warn "cannot enable quota control for bind mounts\n" if $quota;
1486 return wantarray ? ($volid, 0, undef) : $volid;
b15c75fc
DM
1487 }
1488
1489 die "unsupported storage";
cc6b0307
AD
1490}
1491
6c871c36 1492sub mkfs {
d216e891 1493 my ($dev, $rootuid, $rootgid) = @_;
6c871c36 1494
d216e891
WB
1495 PVE::Tools::run_command(['mkfs.ext4', '-O', 'mmp',
1496 '-E', "root_owner=$rootuid:$rootgid",
1497 $dev]);
6c871c36
DM
1498}
1499
1500sub format_disk {
d216e891 1501 my ($storage_cfg, $volid, $rootuid, $rootgid) = @_;
6c871c36
DM
1502
1503 if ($volid =~ m!^/dev/.+!) {
1504 mkfs($volid);
1505 return;
1506 }
1507
1508 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1509
1510 die "cannot format volume '$volid' with no storage\n" if !$storage;
1511
08ca136d
DM
1512 PVE::Storage::activate_volumes($storage_cfg, [$volid]);
1513
6c871c36
DM
1514 my $path = PVE::Storage::path($storage_cfg, $volid);
1515
1516 my ($vtype, undef, undef, undef, undef, $isBase, $format) =
1517 PVE::Storage::parse_volname($storage_cfg, $volid);
1518
1519 die "cannot format volume '$volid' (format == $format)\n"
1520 if $format ne 'raw';
1521
d216e891 1522 mkfs($path, $rootuid, $rootgid);
6c871c36
DM
1523}
1524
1525sub destroy_disks {
1526 my ($storecfg, $vollist) = @_;
1527
1528 foreach my $volid (@$vollist) {
1529 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
1530 warn $@ if $@;
1531 }
1532}
1533
c9cf8008
WB
1534sub alloc_disk {
1535 my ($storecfg, $vmid, $storage, $size_kb, $rootuid, $rootgid) = @_;
1536
1537 my $needs_chown = 0;
1538 my $volid;
1539
1540 my $scfg = PVE::Storage::storage_config($storecfg, $storage);
1541 # fixme: use better naming ct-$vmid-disk-X.raw?
1542
1543 eval {
1544 my $do_format = 0;
be6c3dfa 1545 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs' || $scfg->{type} eq 'cifs' ) {
c9cf8008
WB
1546 if ($size_kb > 0) {
1547 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw',
1548 undef, $size_kb);
1549 $do_format = 1;
1550 } else {
1551 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'subvol',
1552 undef, 0);
1553 $needs_chown = 1;
1554 }
1555 } elsif ($scfg->{type} eq 'zfspool') {
1556
1557 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'subvol',
1558 undef, $size_kb);
1559 $needs_chown = 1;
1560 } elsif ($scfg->{type} eq 'drbd' || $scfg->{type} eq 'lvm' || $scfg->{type} eq 'lvmthin') {
1561
1562 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw', undef, $size_kb);
1563 $do_format = 1;
1564
1565 } elsif ($scfg->{type} eq 'rbd') {
1566
1567 die "krbd option must be enabled on storage type '$scfg->{type}'\n" if !$scfg->{krbd};
1568 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw', undef, $size_kb);
1569 $do_format = 1;
1570 } else {
1571 die "unable to create containers on storage type '$scfg->{type}'\n";
1572 }
1573 format_disk($storecfg, $volid, $rootuid, $rootgid) if $do_format;
1574 };
1575 if (my $err = $@) {
1576 # in case formatting got interrupted:
1577 if (defined($volid)) {
1578 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
1579 warn $@ if $@;
1580 }
1581 die $err;
1582 }
1583
1584 return ($volid, $needs_chown);
1585}
1586
2aee38e5 1587our $NEW_DISK_RE = qr/^([^:\s]+):(\d+(\.\d+)?)$/;
6c871c36
DM
1588sub create_disks {
1589 my ($storecfg, $vmid, $settings, $conf) = @_;
1590
1591 my $vollist = [];
1592
1593 eval {
d216e891
WB
1594 my (undef, $rootuid, $rootgid) = PVE::LXC::parse_id_maps($conf);
1595 my $chown_vollist = [];
1596
d250604f 1597 PVE::LXC::Config->foreach_mountpoint($settings, sub {
6c871c36
DM
1598 my ($ms, $mountpoint) = @_;
1599
1600 my $volid = $mountpoint->{volume};
1601 my $mp = $mountpoint->{mp};
1602
1603 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1604
2aee38e5 1605 if ($storage && ($volid =~ $NEW_DISK_RE)) {
8ed5ff9d 1606 my ($storeid, $size_gb) = ($1, $2);
6c871c36 1607
8ed5ff9d 1608 my $size_kb = int(${size_gb}*1024) * 1024;
6c871c36 1609
c9cf8008
WB
1610 my $needs_chown = 0;
1611 ($volid, $needs_chown) = alloc_disk($storecfg, $vmid, $storage, $size_kb, $rootuid, $rootgid);
1612 push @$chown_vollist, $volid if $needs_chown;
6c871c36 1613 push @$vollist, $volid;
71c780b9
WB
1614 $mountpoint->{volume} = $volid;
1615 $mountpoint->{size} = $size_kb * 1024;
1b4cf758 1616 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
6c871c36 1617 } else {
e2007ac2 1618 # use specified/existing volid/dir/device
1b4cf758 1619 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
6c871c36
DM
1620 }
1621 });
d216e891
WB
1622
1623 PVE::Storage::activate_volumes($storecfg, $chown_vollist, undef);
1624 foreach my $volid (@$chown_vollist) {
1625 my $path = PVE::Storage::path($storecfg, $volid, undef);
1626 chown($rootuid, $rootgid, $path);
1627 }
1628 PVE::Storage::deactivate_volumes($storecfg, $chown_vollist, undef);
6c871c36
DM
1629 };
1630 # free allocated images on error
1631 if (my $err = $@) {
1632 destroy_disks($storecfg, $vollist);
1633 die $err;
1634 }
1635 return $vollist;
1636}
1637
68e8f3c5
DM
1638# bash completion helper
1639
1640sub complete_os_templates {
1641 my ($cmdname, $pname, $cvalue) = @_;
1642
1643 my $cfg = PVE::Storage::config();
1644
9e9bc3a6 1645 my $storeid;
68e8f3c5
DM
1646
1647 if ($cvalue =~ m/^([^:]+):/) {
1648 $storeid = $1;
1649 }
1650
1651 my $vtype = $cmdname eq 'restore' ? 'backup' : 'vztmpl';
1652 my $data = PVE::Storage::template_list($cfg, $storeid, $vtype);
1653
1654 my $res = [];
1655 foreach my $id (keys %$data) {
1656 foreach my $item (@{$data->{$id}}) {
1657 push @$res, $item->{volid} if defined($item->{volid});
1658 }
1659 }
1660
1661 return $res;
1662}
1663
68e8f3c5
DM
1664my $complete_ctid_full = sub {
1665 my ($running) = @_;
1666
1667 my $idlist = vmstatus();
1668
1669 my $active_hash = list_active_containers();
1670
1671 my $res = [];
1672
1673 foreach my $id (keys %$idlist) {
1674 my $d = $idlist->{$id};
1675 if (defined($running)) {
1676 next if $d->{template};
1677 next if $running && !$active_hash->{$id};
1678 next if !$running && $active_hash->{$id};
1679 }
1680 push @$res, $id;
1681
1682 }
1683 return $res;
1684};
1685
1686sub complete_ctid {
1687 return &$complete_ctid_full();
1688}
1689
1690sub complete_ctid_stopped {
1691 return &$complete_ctid_full(0);
1692}
1693
1694sub complete_ctid_running {
1695 return &$complete_ctid_full(1);
1696}
1697
c6a605f9
WB
1698sub parse_id_maps {
1699 my ($conf) = @_;
1700
1701 my $id_map = [];
1702 my $rootuid = 0;
1703 my $rootgid = 0;
1704
1705 my $lxc = $conf->{lxc};
1706 foreach my $entry (@$lxc) {
1707 my ($key, $value) = @$entry;
108c6cab
WB
1708 # FIXME: remove the 'id_map' variant when lxc-3.0 arrives
1709 next if $key ne 'lxc.idmap' && $key ne 'lxc.id_map';
c6a605f9
WB
1710 if ($value =~ /^([ug])\s+(\d+)\s+(\d+)\s+(\d+)\s*$/) {
1711 my ($type, $ct, $host, $length) = ($1, $2, $3, $4);
1712 push @$id_map, [$type, $ct, $host, $length];
1713 if ($ct == 0) {
1714 $rootuid = $host if $type eq 'u';
1715 $rootgid = $host if $type eq 'g';
1716 }
1717 } else {
108c6cab 1718 die "failed to parse idmap: $value\n";
c6a605f9
WB
1719 }
1720 }
1721
1722 if (!@$id_map && $conf->{unprivileged}) {
1723 # Should we read them from /etc/subuid?
1724 $id_map = [ ['u', '0', '100000', '65536'],
1725 ['g', '0', '100000', '65536'] ];
1726 $rootuid = $rootgid = 100000;
1727 }
1728
1729 return ($id_map, $rootuid, $rootgid);
1730}
1731
01dce99b
WB
1732sub userns_command {
1733 my ($id_map) = @_;
1734 if (@$id_map) {
1735 return ['lxc-usernsexec', (map { ('-m', join(':', @$_)) } @$id_map), '--'];
1736 }
1737 return [];
1738}
1739
6725e93c
AA
1740sub vm_start {
1741 my ($vmid, $conf, $skiplock) = @_;
1742
1743 update_lxc_config($vmid, $conf);
1744
2e64f057
AA
1745 my $skiplock_flag_fn = "/run/lxc/skiplock-$vmid";
1746
1747 if ($skiplock) {
1748 open(my $fh, '>', $skiplock_flag_fn) || die "failed to open $skiplock_flag_fn for writing: $!\n";
1749 close($fh);
1750 }
6725e93c
AA
1751
1752 my $cmd = ['systemctl', 'start', "pve-container\@$vmid"];
1753
2e64f057
AA
1754 eval { PVE::Tools::run_command($cmd); };
1755 if (my $err = $@) {
1756 unlink $skiplock_flag_fn;
1322f50d 1757 die $err;
2e64f057 1758 }
6725e93c
AA
1759
1760 return;
1761}
1762
b1bad293
WB
1763# Helper to stop a container completely and make sure it has stopped completely.
1764# This is necessary because we want the post-stop hook to have completed its
1765# unmount-all step, but post-stop happens after lxc puts the container into the
1766# STOPPED state.
1767sub vm_stop {
1768 my ($vmid, $kill, $shutdown_timeout, $exit_timeout) = @_;
1769
1770 # Open the container's command socket.
1771 my $path = "\0/var/lib/lxc/$vmid/command";
1772 my $sock = IO::Socket::UNIX->new(
1773 Type => SOCK_STREAM(),
1774 Peer => $path,
1775 );
1776 if (!$sock) {
1777 return if $! == ECONNREFUSED; # The container is not running
1778 die "failed to open container ${vmid}'s command socket: $!\n";
1779 }
1780
1781 # Stop the container:
1782
1783 my $cmd = ['lxc-stop', '-n', $vmid];
1784
1785 if ($kill) {
1786 push @$cmd, '--kill'; # doesn't allow timeouts
1787 } elsif (defined($shutdown_timeout)) {
1788 push @$cmd, '--timeout', $shutdown_timeout;
1789 # Give run_command 5 extra seconds
1790 $shutdown_timeout += 5;
1791 }
1792
1793 eval { PVE::Tools::run_command($cmd, timeout => $shutdown_timeout) };
1794 if (my $err = $@) {
1795 warn $@ if $@;
1796 }
1797
1798 my $result = 1;
1799 my $wait = sub { $result = <$sock>; };
1800 if (defined($exit_timeout)) {
1801 PVE::Tools::run_with_timeout($exit_timeout, $wait);
1802 } else {
1803 $wait->();
1804 }
1805
1806 return if !defined $result; # monitor is gone and the ct has stopped.
1807 die "container did not stop\n";
1808}
846a66b0 1809
00501642
WB
1810sub run_unshared {
1811 my ($code) = @_;
1812
1813 return PVE::Tools::run_fork(sub {
1814 # Unshare the mount namespace
1815 die "failed to unshare mount namespace: $!\n"
1816 if !PVE::Tools::unshare(PVE::Tools::CLONE_NEWNS);
1817 PVE::Tools::run_command(['mount', '--make-rslave', '/']);
1818 return $code->();
1819 });
1820}
1821
1822my $copy_volume = sub {
1823 my ($src_volid, $src, $dst_volid, $dest, $storage_cfg, $snapname) = @_;
1824
1825 my $src_mp = { volume => $src_volid, mp => '/' };
1826 $src_mp->{type} = PVE::LXC::Config->classify_mountpoint($src_volid);
1827
1828 my $dst_mp = { volume => $dst_volid, mp => '/' };
1829 $dst_mp->{type} = PVE::LXC::Config->classify_mountpoint($dst_volid);
1830
1831 my @mounted;
1832 eval {
1833 # mount and copy
1834 mkdir $src;
1835 mountpoint_mount($src_mp, $src, $storage_cfg, $snapname);
1836 push @mounted, $src;
1837 mkdir $dest;
1838 mountpoint_mount($dst_mp, $dest, $storage_cfg);
1839 push @mounted, $dest;
1840
1841 PVE::Tools::run_command(['/usr/bin/rsync', '--stats', '-X', '-A', '--numeric-ids',
1842 '-aH', '--whole-file', '--sparse', '--one-file-system',
1843 "$src/", $dest]);
1844 };
1845 my $err = $@;
1846 foreach my $mount (reverse @mounted) {
1847 eval { PVE::Tools::run_command(['/bin/umount', '--lazy', $mount], errfunc => sub{})};
1848 warn "Can't umount $mount\n" if $@;
1849 }
1850
1851 # If this fails they're used as mount points in a concurrent operation
1852 # (which should not happen but there's also no real need to get rid of them).
1853 rmdir $dest;
1854 rmdir $src;
1855
1856 die $err if $err;
1857};
1858
1859# Should not be called after unsharing the mount namespace!
1860sub copy_volume {
1861 my ($mp, $vmid, $storage, $storage_cfg, $conf, $snapname) = @_;
1862
1863 die "cannot copy volumes of type $mp->{type}\n" if $mp->{type} ne 'volume';
1864 File::Path::make_path("/var/lib/lxc/$vmid");
1865 my $dest = "/var/lib/lxc/$vmid/.copy-volume-1";
1866 my $src = "/var/lib/lxc/$vmid/.copy-volume-2";
1867
1868 # get id's for unprivileged container
1869 my (undef, $rootuid, $rootgid) = parse_id_maps($conf);
1870
1871 # Allocate the disk before unsharing in order to make sure zfs subvolumes
1872 # are visible in this namespace, otherwise the host only sees the empty
1873 # (not-mounted) directory.
1874 my $new_volid;
1875 eval {
5154e3e9
WB
1876 # Make sure $mp contains a correct size.
1877 $mp->{size} = PVE::Storage::volume_size_info($storage_cfg, $mp->{volume});
00501642
WB
1878 my $needs_chown;
1879 ($new_volid, $needs_chown) = alloc_disk($storage_cfg, $vmid, $storage, $mp->{size}/1024, $rootuid, $rootgid);
1880 if ($needs_chown) {
1881 PVE::Storage::activate_volumes($storage_cfg, [$new_volid], undef);
1882 my $path = PVE::Storage::path($storage_cfg, $new_volid, undef);
1883 chown($rootuid, $rootgid, $path);
1884 }
1885
1886 run_unshared(sub {
1887 $copy_volume->($mp->{volume}, $src, $new_volid, $dest, $storage_cfg, $snapname);
1888 });
1889 };
1890 if (my $err = $@) {
1891 PVE::Storage::vdisk_free($storage_cfg, $new_volid)
1892 if defined($new_volid);
1893 die $err;
1894 }
1895
1896 return $new_volid;
1897}
1898
f76a2828 18991;