]> git.proxmox.com Git - pve-container.git/blame - src/PVE/LXC.pm
remove unused Data::Dumper
[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);
3eb5f47b 14use Errno qw(ELOOP ENOTDIR EROFS);
f76a2828 15
f1ba1a4b 16use PVE::Exception qw(raise_perm_exc);
c65e0a6d 17use PVE::Storage;
f76a2828
DM
18use PVE::SafeSyslog;
19use PVE::INotify;
ab3722b3 20use PVE::Tools qw($IPV6RE $IPV4RE dir_glob_foreach lock_file lock_file_full O_PATH);
92902047 21use PVE::CpuSet;
68fba17b 22use PVE::Network;
52389a07 23use PVE::AccessControl;
228a5a1d 24use PVE::ProcFSTools;
0389da0d 25use PVE::Syscall;
67afe46e 26use PVE::LXC::Config;
688afc63 27use Time::HiRes qw (gettimeofday);
f76a2828 28
27916659
DM
29my $nodename = PVE::INotify::nodename();
30
688afc63
WL
31my $cpuinfo= PVE::ProcFSTools::read_cpuinfo();
32
f76a2828
DM
33sub config_list {
34 my $vmlist = PVE::Cluster::get_vmlist();
35 my $res = {};
36 return $res if !$vmlist || !$vmlist->{ids};
37 my $ids = $vmlist->{ids};
38
39 foreach my $vmid (keys %$ids) {
40 next if !$vmid; # skip CT0
41 my $d = $ids->{$vmid};
42 next if !$d->{node} || $d->{node} ne $nodename;
43 next if !$d->{type} || $d->{type} ne 'lxc';
44 $res->{$vmid}->{type} = 'lxc';
45 }
46 return $res;
47}
48
5b4657d0
DM
49sub destroy_config {
50 my ($vmid) = @_;
51
67afe46e 52 unlink PVE::LXC::Config->config_file($vmid, $nodename);
3cc56749
FG
53}
54
822de0c3
DM
55# container status helpers
56
57sub list_active_containers {
cbb03fea 58
822de0c3
DM
59 my $filename = "/proc/net/unix";
60
61 # similar test is used by lcxcontainers.c: list_active_containers
62 my $res = {};
cbb03fea 63
822de0c3
DM
64 my $fh = IO::File->new ($filename, "r");
65 return $res if !$fh;
66
67 while (defined(my $line = <$fh>)) {
28df2cde 68 if ($line =~ m/^[a-f0-9]+:\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\d+\s+(\S+)$/) {
822de0c3 69 my $path = $1;
27916659 70 if ($path =~ m!^@/var/lib/lxc/(\d+)/command$!) {
822de0c3
DM
71 $res->{$1} = 1;
72 }
73 }
74 }
75
76 close($fh);
cbb03fea 77
822de0c3
DM
78 return $res;
79}
f76a2828 80
5c752bbf
DM
81# warning: this is slow
82sub check_running {
83 my ($vmid) = @_;
84
85 my $active_hash = list_active_containers();
86
87 return 1 if defined($active_hash->{$vmid});
cbb03fea 88
5c752bbf
DM
89 return undef;
90}
91
10fc3ba5 92sub get_container_disk_usage {
73e03cb7 93 my ($vmid, $pid) = @_;
10fc3ba5 94
73e03cb7 95 return PVE::Tools::df("/proc/$pid/root/", 1);
10fc3ba5
DM
96}
97
688afc63
WL
98my $last_proc_vmid_stat;
99
100my $parse_cpuacct_stat = sub {
101 my ($vmid) = @_;
102
103 my $raw = read_cgroup_value('cpuacct', $vmid, 'cpuacct.stat', 1);
104
105 my $stat = {};
106
107 if ($raw =~ m/^user (\d+)\nsystem (\d+)\n/) {
108
109 $stat->{utime} = $1;
110 $stat->{stime} = $2;
111
112 }
113
114 return $stat;
115};
116
f76a2828
DM
117sub vmstatus {
118 my ($opt_vmid) = @_;
119
120 my $list = $opt_vmid ? { $opt_vmid => { type => 'lxc' }} : config_list();
121
822de0c3 122 my $active_hash = list_active_containers();
cbb03fea 123
688afc63
WL
124 my $cpucount = $cpuinfo->{cpus} || 1;
125
126 my $cdtime = gettimeofday;
127
128 my $uptime = (PVE::ProcFSTools::read_proc_uptime(1))[0];
129
f76a2828 130 foreach my $vmid (keys %$list) {
f76a2828 131 my $d = $list->{$vmid};
10fc3ba5 132
d5588ee3
DM
133 eval { $d->{pid} = find_lxc_pid($vmid) if defined($active_hash->{$vmid}); };
134 warn $@ if $@; # ignore errors (consider them stopped)
cbb03fea 135
d5588ee3 136 $d->{status} = $d->{pid} ? 'running' : 'stopped';
f76a2828 137
67afe46e 138 my $cfspath = PVE::LXC::Config->cfs_config_path($vmid);
238a56cb 139 my $conf = PVE::Cluster::cfs_read_file($cfspath) || {};
cbb03fea 140
27916659 141 $d->{name} = $conf->{'hostname'} || "CT$vmid";
238a56cb 142 $d->{name} =~ s/[\s]//g;
cbb03fea 143
f2357408
DM
144 $d->{cpus} = $conf->{cores} || $conf->{cpulimit};
145 $d->{cpus} = $cpucount if !$d->{cpus};
44da0641 146
d0226204
WB
147 $d->{lock} = $conf->{lock} || '';
148
d5588ee3
DM
149 if ($d->{pid}) {
150 my $res = get_container_disk_usage($vmid, $d->{pid});
27916659
DM
151 $d->{disk} = $res->{used};
152 $d->{maxdisk} = $res->{total};
153 } else {
154 $d->{disk} = 0;
155 # use 4GB by default ??
156 if (my $rootfs = $conf->{rootfs}) {
1b4cf758 157 my $rootinfo = PVE::LXC::Config->parse_ct_rootfs($rootfs);
af02245c 158 $d->{maxdisk} = $rootinfo->{size} || (4*1024*1024*1024);
27916659
DM
159 } else {
160 $d->{maxdisk} = 4*1024*1024*1024;
10fc3ba5 161 }
238a56cb 162 }
cbb03fea 163
238a56cb
DM
164 $d->{mem} = 0;
165 $d->{swap} = 0;
95df9a12
DM
166 $d->{maxmem} = ($conf->{memory}||512)*1024*1024;
167 $d->{maxswap} = ($conf->{swap}//0)*1024*1024;
e901d418 168
238a56cb
DM
169 $d->{uptime} = 0;
170 $d->{cpu} = 0;
e901d418 171
238a56cb
DM
172 $d->{netout} = 0;
173 $d->{netin} = 0;
f76a2828 174
238a56cb
DM
175 $d->{diskread} = 0;
176 $d->{diskwrite} = 0;
bb1ac2de 177
67afe46e 178 $d->{template} = PVE::LXC::Config->is_template($conf);
f76a2828 179 }
cbb03fea 180
238a56cb
DM
181 foreach my $vmid (keys %$list) {
182 my $d = $list->{$vmid};
d5588ee3
DM
183 my $pid = $d->{pid};
184
185 next if !$pid; # skip stopped CTs
f76a2828 186
88a8696b
TL
187 my $ctime = (stat("/proc/$pid"))[10]; # 10 = ctime
188 $d->{uptime} = time - $ctime; # the method lxcfs uses
22a77285 189
b3059d35
TL
190 my $memory_stat = read_cgroup_list('memory', $vmid, 'memory.stat');
191 my $mem_usage_in_bytes = read_cgroup_value('memory', $vmid, 'memory.usage_in_bytes');
192
cf8a6472 193 $d->{mem} = $mem_usage_in_bytes - $memory_stat->{total_cache};
b3059d35 194 $d->{swap} = read_cgroup_value('memory', $vmid, 'memory.memsw.usage_in_bytes') - $mem_usage_in_bytes;
b5289322
AD
195
196 my $blkio_bytes = read_cgroup_value('blkio', $vmid, 'blkio.throttle.io_service_bytes', 1);
1e647c7c 197 my @bytes = split(/\n/, $blkio_bytes);
b5289322 198 foreach my $byte (@bytes) {
1e647c7c
DM
199 if (my ($key, $value) = $byte =~ /(Read|Write)\s+(\d+)/) {
200 $d->{diskread} = $2 if $key eq 'Read';
201 $d->{diskwrite} = $2 if $key eq 'Write';
202 }
b5289322 203 }
688afc63
WL
204
205 my $pstat = &$parse_cpuacct_stat($vmid);
206
207 my $used = $pstat->{utime} + $pstat->{stime};
208
209 my $old = $last_proc_vmid_stat->{$vmid};
210 if (!$old) {
211 $last_proc_vmid_stat->{$vmid} = {
212 time => $cdtime,
213 used => $used,
214 cpu => 0,
215 };
216 next;
217 }
218
219 my $dtime = ($cdtime - $old->{time}) * $cpucount * $cpuinfo->{user_hz};
220
221 if ($dtime > 1000) {
222 my $dutime = $used - $old->{used};
223
224 $d->{cpu} = (($dutime/$dtime)* $cpucount) / $d->{cpus};
225 $last_proc_vmid_stat->{$vmid} = {
226 time => $cdtime,
227 used => $used,
228 cpu => $d->{cpu},
229 };
230 } else {
231 $d->{cpu} = $old->{cpu};
232 }
238a56cb 233 }
cbb03fea 234
68b8f4d1
WL
235 my $netdev = PVE::ProcFSTools::read_proc_net_dev();
236
237 foreach my $dev (keys %$netdev) {
238 next if $dev !~ m/^veth([1-9]\d*)i/;
239 my $vmid = $1;
240 my $d = $list->{$vmid};
241
242 next if !$d;
243
244 $d->{netout} += $netdev->{$dev}->{receive};
245 $d->{netin} += $netdev->{$dev}->{transmit};
246
247 }
248
f76a2828
DM
249 return $list;
250}
251
b3059d35
TL
252sub read_cgroup_list {
253 my ($group, $vmid, $name) = @_;
254
255 my $content = read_cgroup_value($group, $vmid, $name, 1);
256
257 return { split(/\s+/, $content) };
258}
259
238a56cb
DM
260sub read_cgroup_value {
261 my ($group, $vmid, $name, $full) = @_;
262
263 my $path = "/sys/fs/cgroup/$group/lxc/$vmid/$name";
264
265 return PVE::Tools::file_get_contents($path) if $full;
266
267 return PVE::Tools::file_read_firstline($path);
268}
269
bf0b8c43
AD
270sub write_cgroup_value {
271 my ($group, $vmid, $name, $value) = @_;
272
273 my $path = "/sys/fs/cgroup/$group/lxc/$vmid/$name";
274 PVE::ProcFSTools::write_proc_entry($path, $value) if -e $path;
275
276}
277
52f1d76b
DM
278sub find_lxc_console_pids {
279
280 my $res = {};
281
282 PVE::Tools::dir_glob_foreach('/proc', '\d+', sub {
283 my ($pid) = @_;
284
285 my $cmdline = PVE::Tools::file_read_firstline("/proc/$pid/cmdline");
286 return if !$cmdline;
287
288 my @args = split(/\0/, $cmdline);
289
c31ad455 290 # search for lxc-console -n <vmid>
cbb03fea 291 return if scalar(@args) != 3;
52f1d76b
DM
292 return if $args[1] ne '-n';
293 return if $args[2] !~ m/^\d+$/;
294 return if $args[0] !~ m|^(/usr/bin/)?lxc-console$|;
cbb03fea 295
52f1d76b 296 my $vmid = $args[2];
cbb03fea 297
52f1d76b
DM
298 push @{$res->{$vmid}}, $pid;
299 });
300
301 return $res;
302}
303
bedeaaf1
AD
304sub find_lxc_pid {
305 my ($vmid) = @_;
306
307 my $pid = undef;
308 my $parser = sub {
309 my $line = shift;
8b25977f 310 $pid = $1 if $line =~ m/^PID:\s+(\d+)$/;
bedeaaf1 311 };
c39aa40a 312 PVE::Tools::run_command(['lxc-info', '-n', $vmid, '-p'], outfunc => $parser);
bedeaaf1 313
8b25977f 314 die "unable to get PID for CT $vmid (not running?)\n" if !$pid;
cbb03fea 315
8b25977f 316 return $pid;
bedeaaf1
AD
317}
318
cbb03fea 319# Note: we cannot use Net:IP, because that only allows strict
55fa4e09
DM
320# CIDR networks
321sub parse_ipv4_cidr {
322 my ($cidr, $noerr) = @_;
323
f7a7b413
WB
324 if ($cidr =~ m!^($IPV4RE)(?:/(\d+))$! && ($2 > 7) && ($2 <= 32)) {
325 return { address => $1, netmask => $PVE::Network::ipv4_reverse_mask->[$2] };
55fa4e09 326 }
cbb03fea 327
55fa4e09 328 return undef if $noerr;
cbb03fea 329
55fa4e09
DM
330 die "unable to parse ipv4 address/mask\n";
331}
93285df8 332
e22af68f 333
27916659 334sub update_lxc_config {
f91f3669 335 my ($vmid, $conf) = @_;
b80dd50a 336
bb1ac2de
DM
337 my $dir = "/var/lib/lxc/$vmid";
338
339 if ($conf->{template}) {
340
341 unlink "$dir/config";
342
343 return;
344 }
345
27916659 346 my $raw = '';
b80dd50a 347
27916659
DM
348 die "missing 'arch' - internal error" if !$conf->{arch};
349 $raw .= "lxc.arch = $conf->{arch}\n";
b80dd50a 350
425b62cb
WB
351 my $unprivileged = $conf->{unprivileged};
352 my $custom_idmap = grep { $_->[0] eq 'lxc.id_map' } @{$conf->{lxc}};
353
27916659 354 my $ostype = $conf->{ostype} || die "missing 'ostype' - internal error";
ed027b58 355 if ($ostype =~ /^(?:debian | ubuntu | centos | fedora | opensuse | archlinux | alpine | gentoo | unmanaged)$/x) {
c34f7efe
WB
356 my $inc ="/usr/share/lxc/config/$ostype.common.conf";
357 $inc ="/usr/share/lxc/config/common.conf" if !-f $inc;
358 $raw .= "lxc.include = $inc\n";
425b62cb 359 if ($unprivileged || $custom_idmap) {
c34f7efe
WB
360 $inc = "/usr/share/lxc/config/$ostype.userns.conf";
361 $inc = "/usr/share/lxc/config/userns.conf" if !-f $inc;
362 $raw .= "lxc.include = $inc\n"
425b62cb 363 }
27916659 364 } else {
9a7a910b 365 die "implement me (ostype $ostype)";
27916659 366 }
b80dd50a 367
50df544c
WB
368 # WARNING: DO NOT REMOVE this without making sure that loop device nodes
369 # cannot be exposed to the container with r/w access (cgroup perms).
370 # When this is enabled mounts will still remain in the monitor's namespace
371 # after the container unmounted them and thus will not detach from their
372 # files while the container is running!
c16b8890 373 $raw .= "lxc.monitor.unshare = 1\n";
58cc92a9 374
425b62cb
WB
375 # Should we read them from /etc/subuid?
376 if ($unprivileged && !$custom_idmap) {
377 $raw .= "lxc.id_map = u 0 100000 65536\n";
378 $raw .= "lxc.id_map = g 0 100000 65536\n";
379 }
380
d250604f 381 if (!PVE::LXC::Config->has_dev_console($conf)) {
eeaea429
DM
382 $raw .= "lxc.console = none\n";
383 $raw .= "lxc.cgroup.devices.deny = c 5:1 rwm\n";
384 }
4f958489 385
1b4cf758 386 my $ttycount = PVE::LXC::Config->get_tty_count($conf);
27916659 387 $raw .= "lxc.tty = $ttycount\n";
cbb03fea 388
c31ad455 389 # some init scripts expect a linux terminal (turnkey).
a691a5a3
DM
390 $raw .= "lxc.environment = TERM=linux\n";
391
27916659
DM
392 my $utsname = $conf->{hostname} || "CT$vmid";
393 $raw .= "lxc.utsname = $utsname\n";
cbb03fea 394
27916659
DM
395 my $memory = $conf->{memory} || 512;
396 my $swap = $conf->{swap} // 0;
397
398 my $lxcmem = int($memory*1024*1024);
399 $raw .= "lxc.cgroup.memory.limit_in_bytes = $lxcmem\n";
a12a36e0 400
27916659
DM
401 my $lxcswap = int(($memory + $swap)*1024*1024);
402 $raw .= "lxc.cgroup.memory.memsw.limit_in_bytes = $lxcswap\n";
403
404 if (my $cpulimit = $conf->{cpulimit}) {
405 $raw .= "lxc.cgroup.cpu.cfs_period_us = 100000\n";
406 my $value = int(100000*$cpulimit);
407 $raw .= "lxc.cgroup.cpu.cfs_quota_us = $value\n";
a12a36e0
WL
408 }
409
27916659
DM
410 my $shares = $conf->{cpuunits} || 1024;
411 $raw .= "lxc.cgroup.cpu.shares = $shares\n";
412
fddaa91b
DM
413 die "missing 'rootfs' configuration\n"
414 if !defined($conf->{rootfs});
415
1b4cf758 416 my $mountpoint = PVE::LXC::Config->parse_ct_rootfs($conf->{rootfs});
a3076d81 417
c9a5774b 418 $raw .= "lxc.rootfs = $dir/rootfs\n";
27916659
DM
419
420 my $netcount = 0;
e756bdd6 421 foreach my $k (sort keys %$conf) {
27916659
DM
422 next if $k !~ m/^net(\d+)$/;
423 my $ind = $1;
1b4cf758 424 my $d = PVE::LXC::Config->parse_lxc_network($conf->{$k});
27916659
DM
425 $netcount++;
426 $raw .= "lxc.network.type = veth\n";
18862537 427 $raw .= "lxc.network.veth.pair = veth${vmid}i${ind}\n";
27916659
DM
428 $raw .= "lxc.network.hwaddr = $d->{hwaddr}\n" if defined($d->{hwaddr});
429 $raw .= "lxc.network.name = $d->{name}\n" if defined($d->{name});
430 $raw .= "lxc.network.mtu = $d->{mtu}\n" if defined($d->{mtu});
a12a36e0
WL
431 }
432
92902047 433 my $had_cpuset = 0;
e576f689
DM
434 if (my $lxcconf = $conf->{lxc}) {
435 foreach my $entry (@$lxcconf) {
436 my ($k, $v) = @$entry;
437 $netcount++ if $k eq 'lxc.network.type';
92902047 438 $had_cpuset = 1 if $k eq 'lxc.cgroup.cpuset.cpus';
e576f689
DM
439 $raw .= "$k = $v\n";
440 }
441 }
27916659 442
e576f689 443 $raw .= "lxc.network.type = empty\n" if !$netcount;
92902047
WB
444
445 my $cores = $conf->{cores};
446 if (!$had_cpuset && $cores) {
6560ce0f
WB
447 my $cpuset = eval { PVE::CpuSet->new_from_cgroup('lxc', 'effective_cpus') };
448 $cpuset = PVE::CpuSet->new_from_cgroup('', 'effective_cpus') if !$cpuset;
92902047
WB
449 my @members = $cpuset->members();
450 while (scalar(@members) > $cores) {
451 my $randidx = int(rand(scalar(@members)));
452 $cpuset->delete($members[$randidx]);
453 splice(@members, $randidx, 1); # keep track of the changes
454 }
455 $raw .= "lxc.cgroup.cpuset.cpus = ".$cpuset->short_string()."\n";
456 }
e576f689 457
27916659
DM
458 File::Path::mkpath("$dir/rootfs");
459
460 PVE::Tools::file_set_contents("$dir/config", $raw);
b80dd50a
DM
461}
462
117636e5
DM
463# verify and cleanup nameserver list (replace \0 with ' ')
464sub verify_nameserver_list {
465 my ($nameserver_list) = @_;
466
467 my @list = ();
468 foreach my $server (PVE::Tools::split_list($nameserver_list)) {
469 PVE::JSONSchema::pve_verify_ip($server);
470 push @list, $server;
471 }
472
473 return join(' ', @list);
474}
475
476sub verify_searchdomain_list {
477 my ($searchdomain_list) = @_;
478
479 my @list = ();
480 foreach my $server (PVE::Tools::split_list($searchdomain_list)) {
481 # todo: should we add checks for valid dns domains?
482 push @list, $server;
483 }
484
485 return join(' ', @list);
486}
487
aca816ad
DM
488sub get_console_command {
489 my ($vmid, $conf) = @_;
490
1b4cf758 491 my $cmode = PVE::LXC::Config->get_cmode($conf);
aca816ad
DM
492
493 if ($cmode eq 'console') {
494 return ['lxc-console', '-n', $vmid, '-t', 0];
495 } elsif ($cmode eq 'tty') {
496 return ['lxc-console', '-n', $vmid];
497 } elsif ($cmode eq 'shell') {
498 return ['lxc-attach', '--clear-env', '-n', $vmid];
499 } else {
500 die "internal error";
501 }
502}
503
c325b32f
DM
504sub get_primary_ips {
505 my ($conf) = @_;
506
507 # return data from net0
cbb03fea 508
27916659 509 return undef if !defined($conf->{net0});
1b4cf758 510 my $net = PVE::LXC::Config->parse_lxc_network($conf->{net0});
c325b32f
DM
511
512 my $ipv4 = $net->{ip};
db78a181
WB
513 if ($ipv4) {
514 if ($ipv4 =~ /^(dhcp|manual)$/) {
515 $ipv4 = undef
516 } else {
517 $ipv4 =~ s!/\d+$!!;
518 }
519 }
65e5eaa3 520 my $ipv6 = $net->{ip6};
db78a181 521 if ($ipv6) {
5f291c7d 522 if ($ipv6 =~ /^(auto|dhcp|manual)$/) {
db78a181
WB
523 $ipv6 = undef;
524 } else {
525 $ipv6 =~ s!/\d+$!!;
526 }
527 }
cbb03fea 528
c325b32f
DM
529 return ($ipv4, $ipv6);
530}
148d1cb4 531
b407293b
WB
532sub delete_mountpoint_volume {
533 my ($storage_cfg, $vmid, $volume) = @_;
534
d250604f 535 return if PVE::LXC::Config->classify_mountpoint($volume) ne 'volume';
b407293b
WB
536
537 my ($vtype, $name, $owner) = PVE::Storage::parse_volname($storage_cfg, $volume);
538 PVE::Storage::vdisk_free($storage_cfg, $volume) if $vmid == $owner;
539}
ef241384 540
27916659 541sub destroy_lxc_container {
bccaa371 542 my ($storage_cfg, $vmid, $conf, $replacement_conf) = @_;
148d1cb4 543
d250604f 544 PVE::LXC::Config->foreach_mountpoint($conf, sub {
db8989e1 545 my ($ms, $mountpoint) = @_;
b407293b 546 delete_mountpoint_volume($storage_cfg, $vmid, $mountpoint->{volume});
db8989e1
WB
547 });
548
27916659
DM
549 rmdir "/var/lib/lxc/$vmid/rootfs";
550 unlink "/var/lib/lxc/$vmid/config";
551 rmdir "/var/lib/lxc/$vmid";
bccaa371
FG
552 if (defined $replacement_conf) {
553 PVE::LXC::Config->write_config($vmid, $replacement_conf);
554 } else {
555 destroy_config($vmid);
556 }
27916659
DM
557
558 #my $cmd = ['lxc-destroy', '-n', $vmid ];
559 #PVE::Tools::run_command($cmd);
148d1cb4 560}
68fba17b 561
ef241384 562sub vm_stop_cleanup {
5fa890f0 563 my ($storage_cfg, $vmid, $conf, $keepActive) = @_;
ef241384
DM
564
565 eval {
566 if (!$keepActive) {
bf9d912c 567
d250604f 568 my $vollist = PVE::LXC::Config->get_vm_volumes($conf);
a8b6b8a7 569 PVE::Storage::deactivate_volumes($storage_cfg, $vollist);
ef241384
DM
570 }
571 };
572 warn $@ if $@; # avoid errors - just warn
573}
574
93cdbbfb
AD
575my $safe_num_ne = sub {
576 my ($a, $b) = @_;
577
578 return 0 if !defined($a) && !defined($b);
579 return 1 if !defined($a);
580 return 1 if !defined($b);
581
582 return $a != $b;
583};
584
585my $safe_string_ne = sub {
586 my ($a, $b) = @_;
587
588 return 0 if !defined($a) && !defined($b);
589 return 1 if !defined($a);
590 return 1 if !defined($b);
591
592 return $a ne $b;
593};
594
595sub update_net {
bedeaaf1 596 my ($vmid, $conf, $opt, $newnet, $netid, $rootdir) = @_;
93cdbbfb 597
18862537
WB
598 if ($newnet->{type} ne 'veth') {
599 # for when there are physical interfaces
600 die "cannot update interface of type $newnet->{type}";
601 }
602
603 my $veth = "veth${vmid}i${netid}";
93cdbbfb
AD
604 my $eth = $newnet->{name};
605
18862537 606 if (my $oldnetcfg = $conf->{$opt}) {
1b4cf758 607 my $oldnet = PVE::LXC::Config->parse_lxc_network($oldnetcfg);
18862537
WB
608
609 if (&$safe_string_ne($oldnet->{hwaddr}, $newnet->{hwaddr}) ||
610 &$safe_string_ne($oldnet->{name}, $newnet->{name})) {
93cdbbfb 611
18862537 612 PVE::Network::veth_delete($veth);
bedeaaf1 613 delete $conf->{$opt};
67afe46e 614 PVE::LXC::Config->write_config($vmid, $conf);
93cdbbfb 615
18862537 616 hotplug_net($vmid, $conf, $opt, $newnet, $netid);
bedeaaf1 617
380962c7
WB
618 } else {
619 if (&$safe_string_ne($oldnet->{bridge}, $newnet->{bridge}) ||
620 &$safe_num_ne($oldnet->{tag}, $newnet->{tag}) ||
621 &$safe_num_ne($oldnet->{firewall}, $newnet->{firewall})) {
bedeaaf1 622
18862537 623 if ($oldnet->{bridge}) {
bedeaaf1 624 PVE::Network::tap_unplug($veth);
18862537
WB
625 foreach (qw(bridge tag firewall)) {
626 delete $oldnet->{$_};
627 }
1b4cf758 628 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($oldnet);
67afe46e 629 PVE::LXC::Config->write_config($vmid, $conf);
bedeaaf1 630 }
93cdbbfb 631
380962c7
WB
632 PVE::Network::tap_plug($veth, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
633 # This includes the rate:
634 foreach (qw(bridge tag firewall rate)) {
18862537
WB
635 $oldnet->{$_} = $newnet->{$_} if $newnet->{$_};
636 }
380962c7
WB
637 } elsif (&$safe_string_ne($oldnet->{rate}, $newnet->{rate})) {
638 # Rate can be applied on its own but any change above needs to
639 # include the rate in tap_plug since OVS resets everything.
640 PVE::Network::tap_rate_limit($veth, $newnet->{rate});
641 $oldnet->{rate} = $newnet->{rate}
642 }
643 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($oldnet);
644 PVE::LXC::Config->write_config($vmid, $conf);
93cdbbfb
AD
645 }
646 } else {
18862537 647 hotplug_net($vmid, $conf, $opt, $newnet, $netid);
93cdbbfb
AD
648 }
649
bedeaaf1 650 update_ipconfig($vmid, $conf, $opt, $eth, $newnet, $rootdir);
93cdbbfb
AD
651}
652
653sub hotplug_net {
18862537 654 my ($vmid, $conf, $opt, $newnet, $netid) = @_;
93cdbbfb 655
18862537 656 my $veth = "veth${vmid}i${netid}";
cbb03fea 657 my $vethpeer = $veth . "p";
93cdbbfb
AD
658 my $eth = $newnet->{name};
659
660 PVE::Network::veth_create($veth, $vethpeer, $newnet->{bridge}, $newnet->{hwaddr});
380962c7 661 PVE::Network::tap_plug($veth, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
93cdbbfb 662
cbb03fea 663 # attach peer in container
93cdbbfb
AD
664 my $cmd = ['lxc-device', '-n', $vmid, 'add', $vethpeer, "$eth" ];
665 PVE::Tools::run_command($cmd);
666
cbb03fea 667 # link up peer in container
93cdbbfb
AD
668 $cmd = ['lxc-attach', '-n', $vmid, '-s', 'NETWORK', '--', '/sbin/ip', 'link', 'set', $eth ,'up' ];
669 PVE::Tools::run_command($cmd);
bedeaaf1 670
18862537
WB
671 my $done = { type => 'veth' };
672 foreach (qw(bridge tag firewall hwaddr name)) {
673 $done->{$_} = $newnet->{$_} if $newnet->{$_};
674 }
1b4cf758 675 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($done);
bedeaaf1 676
67afe46e 677 PVE::LXC::Config->write_config($vmid, $conf);
93cdbbfb
AD
678}
679
68a05bb3 680sub update_ipconfig {
bedeaaf1
AD
681 my ($vmid, $conf, $opt, $eth, $newnet, $rootdir) = @_;
682
f2104b80 683 my $lxc_setup = PVE::LXC::Setup->new($conf, $rootdir);
bedeaaf1 684
1b4cf758 685 my $optdata = PVE::LXC::Config->parse_lxc_network($conf->{$opt});
84e0c123
WB
686 my $deleted = [];
687 my $added = [];
8d723477
WB
688 my $nscmd = sub {
689 my $cmdargs = shift;
690 PVE::Tools::run_command(['lxc-attach', '-n', $vmid, '-s', 'NETWORK', '--', @_], %$cmdargs);
84e0c123 691 };
8d723477 692 my $ipcmd = sub { &$nscmd({}, '/sbin/ip', @_) };
2bfd1615 693
84e0c123 694 my $change_ip_config = sub {
f39002a6
DM
695 my ($ipversion) = @_;
696
697 my $family_opt = "-$ipversion";
698 my $suffix = $ipversion == 4 ? '' : $ipversion;
84e0c123
WB
699 my $gw= "gw$suffix";
700 my $ip= "ip$suffix";
bedeaaf1 701
6178b0dd
WB
702 my $newip = $newnet->{$ip};
703 my $newgw = $newnet->{$gw};
704 my $oldip = $optdata->{$ip};
705
706 my $change_ip = &$safe_string_ne($oldip, $newip);
707 my $change_gw = &$safe_string_ne($optdata->{$gw}, $newgw);
bedeaaf1 708
84e0c123 709 return if !$change_ip && !$change_gw;
68a05bb3 710
84e0c123 711 # step 1: add new IP, if this fails we cancel
292aff54
WB
712 my $is_real_ip = ($newip && $newip !~ /^(?:auto|dhcp|manual)$/);
713 if ($change_ip && $is_real_ip) {
8d723477 714 eval { &$ipcmd($family_opt, 'addr', 'add', $newip, 'dev', $eth); };
84e0c123
WB
715 if (my $err = $@) {
716 warn $err;
717 return;
718 }
bedeaaf1 719 }
bedeaaf1 720
84e0c123
WB
721 # step 2: replace gateway
722 # If this fails we delete the added IP and cancel.
723 # If it succeeds we save the config and delete the old IP, ignoring
724 # errors. The config is then saved.
725 # Note: 'ip route replace' can add
726 if ($change_gw) {
6178b0dd 727 if ($newgw) {
292aff54
WB
728 eval {
729 if ($is_real_ip && !PVE::Network::is_ip_in_cidr($newgw, $newip, $ipversion)) {
730 &$ipcmd($family_opt, 'route', 'add', $newgw, 'dev', $eth);
731 }
732 &$ipcmd($family_opt, 'route', 'replace', 'default', 'via', $newgw);
733 };
84e0c123
WB
734 if (my $err = $@) {
735 warn $err;
736 # the route was not replaced, the old IP is still available
737 # rollback (delete new IP) and cancel
738 if ($change_ip) {
8d723477 739 eval { &$ipcmd($family_opt, 'addr', 'del', $newip, 'dev', $eth); };
84e0c123
WB
740 warn $@ if $@; # no need to die here
741 }
742 return;
743 }
744 } else {
8d723477 745 eval { &$ipcmd($family_opt, 'route', 'del', 'default'); };
84e0c123
WB
746 # if the route was not deleted, the guest might have deleted it manually
747 # warn and continue
748 warn $@ if $@;
749 }
2bfd1615 750 }
2bfd1615 751
6178b0dd 752 # from this point on we save the configuration
84e0c123 753 # step 3: delete old IP ignoring errors
6178b0dd 754 if ($change_ip && $oldip && $oldip !~ /^(?:auto|dhcp)$/) {
8d723477
WB
755 # We need to enable promote_secondaries, otherwise our newly added
756 # address will be removed along with the old one.
757 my $promote = 0;
758 eval {
759 if ($ipversion == 4) {
760 &$nscmd({ outfunc => sub { $promote = int(shift) } },
761 'cat', "/proc/sys/net/ipv4/conf/$eth/promote_secondaries");
762 &$nscmd({}, 'sysctl', "net.ipv4.conf.$eth.promote_secondaries=1");
763 }
764 &$ipcmd($family_opt, 'addr', 'del', $oldip, 'dev', $eth);
765 };
84e0c123 766 warn $@ if $@; # no need to die here
8d723477
WB
767
768 if ($ipversion == 4) {
769 &$nscmd({}, 'sysctl', "net.ipv4.conf.$eth.promote_secondaries=$promote");
770 }
bedeaaf1
AD
771 }
772
84e0c123
WB
773 foreach my $property ($ip, $gw) {
774 if ($newnet->{$property}) {
775 $optdata->{$property} = $newnet->{$property};
776 } else {
777 delete $optdata->{$property};
778 }
bedeaaf1 779 }
1b4cf758 780 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($optdata);
67afe46e 781 PVE::LXC::Config->write_config($vmid, $conf);
84e0c123
WB
782 $lxc_setup->setup_network($conf);
783 };
bedeaaf1 784
f39002a6
DM
785 &$change_ip_config(4);
786 &$change_ip_config(6);
489e960d
WL
787
788}
789
34fdb3d7
WB
790my $enter_namespace = sub {
791 my ($vmid, $pid, $which, $type) = @_;
792 sysopen my $fd, "/proc/$pid/ns/$which", O_RDONLY
793 or die "failed to open $which namespace of container $vmid: $!\n";
794 PVE::Tools::setns(fileno($fd), $type)
795 or die "failed to enter $which namespace of container $vmid: $!\n";
796 close $fd;
797};
798
799my $do_syncfs = sub {
800 my ($vmid, $pid, $socket) = @_;
801
802 &$enter_namespace($vmid, $pid, 'mnt', PVE::Tools::CLONE_NEWNS);
803
804 # Tell the parent process to start reading our /proc/mounts
805 print {$socket} "go\n";
806 $socket->flush();
807
808 # Receive /proc/self/mounts
809 my $mountdata = do { local $/ = undef; <$socket> };
810 close $socket;
811
812 # Now sync all mountpoints...
813 my $mounts = PVE::ProcFSTools::parse_mounts($mountdata);
814 foreach my $mp (@$mounts) {
815 my ($what, $dir, $fs) = @$mp;
816 next if $fs eq 'fuse.lxcfs';
817 eval { PVE::Tools::sync_mountpoint($dir); };
818 warn $@ if $@;
819 }
820};
821
822sub sync_container_namespace {
823 my ($vmid) = @_;
824 my $pid = find_lxc_pid($vmid);
825
826 # SOCK_DGRAM is nicer for barriers but cannot be slurped
827 socketpair my $pfd, my $cfd, AF_UNIX, SOCK_STREAM, PF_UNSPEC
828 or die "failed to create socketpair: $!\n";
829
830 my $child = fork();
831 die "fork failed: $!\n" if !defined($child);
832
833 if (!$child) {
834 eval {
835 close $pfd;
836 &$do_syncfs($vmid, $pid, $cfd);
837 };
838 if (my $err = $@) {
839 warn $err;
840 POSIX::_exit(1);
841 }
842 POSIX::_exit(0);
843 }
844 close $cfd;
845 my $go = <$pfd>;
846 die "failed to enter container namespace\n" if $go ne "go\n";
847
848 open my $mounts, '<', "/proc/$child/mounts"
849 or die "failed to open container's /proc/mounts: $!\n";
850 my $mountdata = do { local $/ = undef; <$mounts> };
851 close $mounts;
852 print {$pfd} $mountdata;
853 close $pfd;
854
855 while (waitpid($child, 0) != $child) {}
856 die "failed to sync container namespace\n" if $? != 0;
857}
858
bb1ac2de
DM
859sub template_create {
860 my ($vmid, $conf) = @_;
861
862 my $storecfg = PVE::Storage::config();
863
1b4cf758 864 my $rootinfo = PVE::LXC::Config->parse_ct_rootfs($conf->{rootfs});
bb1ac2de
DM
865 my $volid = $rootinfo->{volume};
866
867 die "Template feature is not available for '$volid'\n"
868 if !PVE::Storage::volume_has_feature($storecfg, 'template', $volid);
869
870 PVE::Storage::activate_volumes($storecfg, [$volid]);
871
872 my $template_volid = PVE::Storage::vdisk_create_base($storecfg, $volid);
873 $rootinfo->{volume} = $template_volid;
1b4cf758 874 $conf->{rootfs} = PVE::LXC::Config->print_ct_mountpoint($rootinfo, 1);
bb1ac2de 875
67afe46e 876 PVE::LXC::Config->write_config($vmid, $conf);
bb1ac2de
DM
877}
878
52389a07 879sub check_ct_modify_config_perm {
f1ba1a4b 880 my ($rpcenv, $authuser, $vmid, $pool, $newconf, $delete) = @_;
52389a07 881
c81f19d1 882 return 1 if $authuser eq 'root@pam';
52389a07 883
f1ba1a4b
WB
884 my $check = sub {
885 my ($opt, $delete) = @_;
f2357408 886 if ($opt eq 'cores' || $opt eq 'cpuunits' || $opt eq 'cpulimit') {
52389a07 887 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.CPU']);
e59a61ed 888 } elsif ($opt eq 'rootfs' || $opt =~ /^mp\d+$/) {
52389a07 889 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Disk']);
f1ba1a4b 890 return if $delete;
1b4cf758
FG
891 my $data = $opt eq 'rootfs' ? PVE::LXC::Config->parse_ct_rootfs($newconf->{$opt})
892 : PVE::LXC::Config->parse_ct_mountpoint($newconf->{$opt});
9d294016
FG
893 raise_perm_exc("mount point type $data->{type} is only allowed for root\@pam")
894 if $data->{type} ne 'volume';
52389a07
DM
895 } elsif ($opt eq 'memory' || $opt eq 'swap') {
896 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Memory']);
897 } elsif ($opt =~ m/^net\d+$/ || $opt eq 'nameserver' ||
898 $opt eq 'searchdomain' || $opt eq 'hostname') {
899 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Network']);
900 } else {
901 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Options']);
902 }
f1ba1a4b
WB
903 };
904
905 foreach my $opt (keys %$newconf) {
906 &$check($opt, 0);
907 }
908 foreach my $opt (@$delete) {
909 &$check($opt, 1);
52389a07
DM
910 }
911
912 return 1;
913}
914
9622e848 915sub umount_all {
da629848 916 my ($vmid, $storage_cfg, $conf, $noerr) = @_;
9622e848
DM
917
918 my $rootdir = "/var/lib/lxc/$vmid/rootfs";
d250604f 919 my $volid_list = PVE::LXC::Config->get_vm_volumes($conf);
9622e848 920
d250604f 921 PVE::LXC::Config->foreach_mountpoint_reverse($conf, sub {
9622e848
DM
922 my ($ms, $mountpoint) = @_;
923
924 my $volid = $mountpoint->{volume};
925 my $mount = $mountpoint->{mp};
926
927 return if !$volid || !$mount;
928
d18f96b4 929 my $mount_path = "$rootdir/$mount";
f845a93d 930 $mount_path =~ s!/+!/!g;
9622e848 931
228a5a1d
WL
932 return if !PVE::ProcFSTools::is_mounted($mount_path);
933
9622e848 934 eval {
d18f96b4 935 PVE::Tools::run_command(['umount', '-d', $mount_path]);
9622e848
DM
936 };
937 if (my $err = $@) {
938 if ($noerr) {
939 warn $err;
940 } else {
941 die $err;
942 }
943 }
944 });
9622e848
DM
945}
946
947sub mount_all {
25321b68 948 my ($vmid, $storage_cfg, $conf, $ignore_ro) = @_;
9622e848
DM
949
950 my $rootdir = "/var/lib/lxc/$vmid/rootfs";
1adc7e53 951 File::Path::make_path($rootdir);
9622e848 952
d250604f 953 my $volid_list = PVE::LXC::Config->get_vm_volumes($conf);
9622e848
DM
954 PVE::Storage::activate_volumes($storage_cfg, $volid_list);
955
956 eval {
d250604f 957 PVE::LXC::Config->foreach_mountpoint($conf, sub {
9622e848
DM
958 my ($ms, $mountpoint) = @_;
959
25321b68
FG
960 $mountpoint->{ro} = 0 if $ignore_ro;
961
da629848 962 mountpoint_mount($mountpoint, $rootdir, $storage_cfg);
9622e848
DM
963 });
964 };
965 if (my $err = $@) {
e2007ac2 966 warn "mounting container failed\n";
9622e848 967 umount_all($vmid, $storage_cfg, $conf, 1);
e2007ac2 968 die $err;
9622e848
DM
969 }
970
da629848 971 return $rootdir;
9622e848
DM
972}
973
974
b15c75fc 975sub mountpoint_mount_path {
da629848 976 my ($mountpoint, $storage_cfg, $snapname) = @_;
b15c75fc 977
da629848 978 return mountpoint_mount($mountpoint, undef, $storage_cfg, $snapname);
b15c75fc 979}
cc6b0307 980
21f292ff
WB
981sub query_loopdev {
982 my ($path) = @_;
983 my $found;
984 my $parser = sub {
985 my $line = shift;
986 if ($line =~ m@^(/dev/loop\d+):@) {
987 $found = $1;
988 }
989 };
990 my $cmd = ['losetup', '--associated', $path];
991 PVE::Tools::run_command($cmd, outfunc => $parser);
992 return $found;
993}
994
50df544c
WB
995# Run a function with a file attached to a loop device.
996# The loop device is always detached afterwards (or set to autoclear).
997# Returns the loop device.
998sub run_with_loopdev {
999 my ($func, $file) = @_;
54d11e5c
WB
1000 my $device = query_loopdev($file);
1001 # Try to reuse an existing device
1002 if ($device) {
1003 # We assume that whoever setup the loop device is responsible for
1004 # detaching it.
1005 &$func($device);
1006 return $device;
1007 }
1008
50df544c
WB
1009 my $parser = sub {
1010 my $line = shift;
1011 if ($line =~ m@^(/dev/loop\d+)$@) {
1012 $device = $1;
1013 }
1014 };
1015 PVE::Tools::run_command(['losetup', '--show', '-f', $file], outfunc => $parser);
1016 die "failed to setup loop device for $file\n" if !$device;
1017 eval { &$func($device); };
1018 my $err = $@;
1019 PVE::Tools::run_command(['losetup', '-d', $device]);
1020 die $err if $err;
1021 return $device;
1022}
1023
ab3722b3
WB
1024# In scalar mode: returns a file handle to the deepest directory node.
1025# In list context: returns a list of:
1026# * the deepest directory node
1027# * the 2nd deepest directory (parent of the above)
1028# * directory name of the last directory
1029# So that the path $2/$3 should lead to $1 afterwards.
1030sub walk_tree_nofollow($$$) {
1031 my ($start, $subdir, $mkdir) = @_;
1032
1033 # splitdir() returns '' for empty components including the leading /
1034 my @comps = grep { length($_)>0 } File::Spec->splitdir($subdir);
1035
1036 sysopen(my $fd, $start, O_PATH | O_DIRECTORY)
1037 or die "failed to open start directory $start: $!\n";
1038
1039 my $dir = $start;
1040 my $last_component = undef;
1041 my $second = $fd;
1042 foreach my $component (@comps) {
1043 $dir .= "/$component";
1044 my $next = PVE::Tools::openat(fileno($fd), $component, O_NOFOLLOW | O_DIRECTORY);
1045
1046 if (!$next) {
1047 # failed, check for symlinks and try to create the path
3eb5f47b 1048 die "symlink encountered at: $dir\n" if $! == ELOOP || $! == ENOTDIR;
ab3722b3
WB
1049 die "cannot open directory $dir: $!\n" if !$mkdir;
1050
1051 # We don't check for errors on mkdirat() here and just try to
1052 # openat() again, since at least one error (EEXIST) is an
1053 # expected possibility if multiple containers start
1054 # simultaneously. If someone else injects a symlink now then
1055 # the subsequent openat() will fail due to O_NOFOLLOW anyway.
1056 PVE::Tools::mkdirat(fileno($fd), $component, 0755);
1057
1058 $next = PVE::Tools::openat(fileno($fd), $component, O_NOFOLLOW | O_DIRECTORY);
1059 die "failed to create path: $dir: $!\n" if !$next;
1060 }
1061
1062 close $second if defined($last_component);
1063 $last_component = $component;
1064 $second = $fd;
1065 $fd = $next;
1066 }
1067
1068 return ($fd, defined($last_component) && $second, $last_component) if wantarray;
1069 close $second if defined($last_component);
1070 return $fd;
1071}
1072
619f27b4
WB
1073# To guard against symlink attack races against other currently running
1074# containers with shared recursive bind mount hierarchies we prepare a
1075# directory handle for the directory we're mounting over to verify the
1076# mountpoint afterwards.
1077sub __bindmount_prepare {
1078 my ($hostroot, $dir) = @_;
1079 my $srcdh = walk_tree_nofollow($hostroot, $dir, 0);
1080 return $srcdh;
1081}
ab3722b3 1082
619f27b4
WB
1083# Assuming we mount to rootfs/a/b/c, verify with the directory handle to 'b'
1084# ($parentfd) that 'b/c' (openat($parentfd, 'c')) really leads to the directory
1085# we intended to bind mount.
1086sub __bindmount_verify {
1087 my ($srcdh, $parentfd, $last_dir, $ro) = @_;
ab3722b3
WB
1088 my $destdh;
1089 if ($parentfd) {
1090 # Open the mount point path coming from the parent directory since the
1091 # filehandle we would have gotten as first result of walk_tree_nofollow
1092 # earlier is still a handle to the underlying directory instead of the
1093 # mounted path.
619f27b4
WB
1094 $destdh = PVE::Tools::openat(fileno($parentfd), $last_dir, PVE::Tools::O_PATH | O_NOFOLLOW | O_DIRECTORY);
1095 die "failed to open mount point: $!\n" if !$destdh;
1096 if ($ro) {
1097 my $dot = '.';
619f27b4 1098 # no separate function because 99% of the time it's the wrong thing to use.
0389da0d 1099 if (syscall(PVE::Syscall::faccessat, fileno($destdh), $dot, &POSIX::W_OK, 0) != -1) {
619f27b4
WB
1100 die "failed to mark bind mount read only\n";
1101 }
1102 die "read-only check failed: $!\n" if $! != EROFS;
1103 }
ab3722b3
WB
1104 } else {
1105 # For the rootfs we don't have a parentfd so we open the path directly.
1106 # Note that this means bindmounting any prefix of the host's
1107 # /var/lib/lxc/$vmid path into another container is considered a grave
1108 # security error.
1109 sysopen $destdh, $last_dir, O_PATH | O_DIRECTORY;
619f27b4 1110 die "failed to open mount point: $!\n" if !$destdh;
ab3722b3 1111 }
ab3722b3
WB
1112
1113 my ($srcdev, $srcinode) = stat($srcdh);
1114 my ($dstdev, $dstinode) = stat($destdh);
1115 close $srcdh;
1116 close $destdh;
1117
619f27b4
WB
1118 return ($srcdev == $dstdev && $srcinode == $dstinode);
1119}
1120
1121# Perform the actual bind mounting:
1122sub __bindmount_do {
1123 my ($dir, $dest, $ro, @extra_opts) = @_;
1124 PVE::Tools::run_command(['mount', '-o', 'bind', @extra_opts, $dir, $dest]);
1125 if ($ro) {
1126 eval { PVE::Tools::run_command(['mount', '-o', 'bind,remount,ro', $dest]); };
1127 if (my $err = $@) {
1128 warn "bindmount error\n";
1129 # don't leave writable bind-mounts behind...
1130 PVE::Tools::run_command(['umount', $dest]);
1131 die $err;
1132 }
1133 }
1134}
1135
1136sub bindmount {
1137 my ($dir, $parentfd, $last_dir, $dest, $ro, @extra_opts) = @_;
1138
1139 my $srcdh = __bindmount_prepare('/', $dir);
1140
1141 __bindmount_do($dir, $dest, $ro, @extra_opts);
1142
1143 if (!__bindmount_verify($srcdh, $parentfd, $last_dir, $ro)) {
ab3722b3
WB
1144 PVE::Tools::run_command(['umount', $dest]);
1145 die "detected mount path change at: $dir\n";
1146 }
c2744c97
WB
1147}
1148
619f27b4
WB
1149# Cleanup $rootdir a bit (double and trailing slashes), build the mount path
1150# from $rootdir and $mount and walk the path from $rootdir to the final
1151# directory to check for symlinks.
1152sub __mount_prepare_rootdir {
1153 my ($rootdir, $mount) = @_;
1154 $rootdir =~ s!/+!/!g;
1155 $rootdir =~ s!/+$!!;
1156 my $mount_path = "$rootdir/$mount";
1157 my ($mpfd, $parentfd, $last_dir) = walk_tree_nofollow($rootdir, $mount, 1);
1158 return ($rootdir, $mount_path, $mpfd, $parentfd, $last_dir);
1159}
1160
b15c75fc 1161# use $rootdir = undef to just return the corresponding mount path
cc6b0307 1162sub mountpoint_mount {
da629848 1163 my ($mountpoint, $rootdir, $storage_cfg, $snapname) = @_;
cc6b0307
AD
1164
1165 my $volid = $mountpoint->{volume};
1166 my $mount = $mountpoint->{mp};
7c921c80 1167 my $type = $mountpoint->{type};
50df544c
WB
1168 my $quota = !$snapname && !$mountpoint->{ro} && $mountpoint->{quota};
1169 my $mounted_dev;
b15c75fc 1170
cc6b0307
AD
1171 return if !$volid || !$mount;
1172
ab3722b3
WB
1173 $mount =~ s!/+!/!g;
1174
b15c75fc 1175 my $mount_path;
ab3722b3 1176 my ($mpfd, $parentfd, $last_dir);
b15c75fc
DM
1177
1178 if (defined($rootdir)) {
619f27b4
WB
1179 ($rootdir, $mount_path, $mpfd, $parentfd, $last_dir) =
1180 __mount_prepare_rootdir($rootdir, $mount);
116ce06f 1181 }
b15c75fc
DM
1182
1183 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
cc6b0307 1184
b15c75fc 1185 die "unknown snapshot path for '$volid'" if !$storage && defined($snapname);
cc6b0307 1186
471dd315 1187 my $optstring = '';
719129ea
WB
1188 my $acl = $mountpoint->{acl};
1189 if (defined($acl)) {
1190 $optstring .= ($acl ? 'acl' : 'noacl');
471dd315 1191 }
c2744c97 1192 my $readonly = $mountpoint->{ro};
471dd315 1193
c019c56a 1194 my @extra_opts = ('-o', $optstring) if $optstring;
471dd315 1195
b15c75fc
DM
1196 if ($storage) {
1197
1198 my $scfg = PVE::Storage::storage_config($storage_cfg, $storage);
7c138f58
WB
1199
1200 # early sanity checks:
1201 # we otherwise call realpath on the rbd url
1202 die "containers on rbd storage without krbd are not supported\n"
1203 if $scfg->{type} eq 'rbd' && !$scfg->{krbd};
1204
b15c75fc
DM
1205 my $path = PVE::Storage::path($storage_cfg, $volid, $snapname);
1206
1207 my ($vtype, undef, undef, undef, undef, $isBase, $format) =
1208 PVE::Storage::parse_volname($storage_cfg, $volid);
1209
c87b9dd8
DM
1210 $format = 'iso' if $vtype eq 'iso'; # allow to handle iso files
1211
b15c75fc 1212 if ($format eq 'subvol') {
30de33be
DM
1213 if ($mount_path) {
1214 if ($snapname) {
e84f7f5d
DM
1215 if ($scfg->{type} eq 'zfspool') {
1216 my $path_arg = $path;
1217 $path_arg =~ s!^/+!!;
471dd315 1218 PVE::Tools::run_command(['mount', '-o', 'ro', @extra_opts, '-t', 'zfs', $path_arg, $mount_path]);
e84f7f5d 1219 } else {
30de33be
DM
1220 die "cannot mount subvol snapshots for storage type '$scfg->{type}'\n";
1221 }
e84f7f5d 1222 } else {
719129ea
WB
1223 if (defined($acl) && $scfg->{type} eq 'zfspool') {
1224 my $acltype = ($acl ? 'acltype=posixacl' : 'acltype=noacl');
1225 my (undef, $name) = PVE::Storage::parse_volname($storage_cfg, $volid);
1226 $name .= "\@$snapname" if defined($snapname);
1227 PVE::Tools::run_command(['zfs', 'set', $acltype, "$scfg->{pool}/$name"]);
1228 }
ab3722b3 1229 bindmount($path, $parentfd, $last_dir//$rootdir, $mount_path, $readonly, @extra_opts);
50df544c 1230 warn "cannot enable quota control for bind mounted subvolumes\n" if $quota;
30de33be 1231 }
b15c75fc 1232 }
5f6280cf 1233 return wantarray ? ($path, 0, undef) : $path;
c87b9dd8 1234 } elsif ($format eq 'raw' || $format eq 'iso') {
ada088e6
WB
1235 # NOTE: 'mount' performs canonicalization without the '-c' switch, which for
1236 # device-mapper devices is special-cased to use the /dev/mapper symlinks.
1237 # Our autodev hook expects the /dev/dm-* device currently
1238 # and will create the /dev/mapper symlink accordingly
e439a713
WB
1239 $path = Cwd::realpath($path);
1240 die "failed to get device path\n" if !$path;
1241 ($path) = ($path =~ /^(.*)$/s); #untaint
50df544c
WB
1242 my $domount = sub {
1243 my ($path) = @_;
1244 if ($mount_path) {
1245 if ($format eq 'iso') {
1246 PVE::Tools::run_command(['mount', '-o', 'ro', @extra_opts, $path, $mount_path]);
1247 } elsif ($isBase || defined($snapname)) {
1248 PVE::Tools::run_command(['mount', '-o', 'ro,noload', @extra_opts, $path, $mount_path]);
1249 } else {
1250 if ($quota) {
1251 push @extra_opts, '-o', 'usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0';
1252 }
c2744c97 1253 push @extra_opts, '-o', 'ro' if $readonly;
50df544c
WB
1254 PVE::Tools::run_command(['mount', @extra_opts, $path, $mount_path]);
1255 }
1256 }
1257 };
30de33be 1258 my $use_loopdev = 0;
b15c75fc 1259 if ($scfg->{path}) {
50df544c 1260 $mounted_dev = run_with_loopdev($domount, $path);
30de33be 1261 $use_loopdev = 1;
2e879877
DM
1262 } elsif ($scfg->{type} eq 'drbd' || $scfg->{type} eq 'lvm' ||
1263 $scfg->{type} eq 'rbd' || $scfg->{type} eq 'lvmthin') {
50df544c
WB
1264 $mounted_dev = $path;
1265 &$domount($path);
b15c75fc
DM
1266 } else {
1267 die "unsupported storage type '$scfg->{type}'\n";
1268 }
50df544c 1269 return wantarray ? ($path, $use_loopdev, $mounted_dev) : $path;
b15c75fc
DM
1270 } else {
1271 die "unsupported image format '$format'\n";
1272 }
7c921c80 1273 } elsif ($type eq 'device') {
c9bc95a1 1274 push @extra_opts, '-o', 'ro' if $readonly;
0d449e38
WB
1275 push @extra_opts, '-o', 'usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0' if $quota;
1276 # See the NOTE above about devicemapper canonicalization
1277 my ($devpath) = (Cwd::realpath($volid) =~ /^(.*)$/s); # realpath() taints
471dd315 1278 PVE::Tools::run_command(['mount', @extra_opts, $volid, $mount_path]) if $mount_path;
0d449e38 1279 return wantarray ? ($volid, 0, $devpath) : $volid;
e2007ac2
DM
1280 } elsif ($type eq 'bind') {
1281 die "directory '$volid' does not exist\n" if ! -d $volid;
ab3722b3 1282 bindmount($volid, $parentfd, $last_dir//$rootdir, $mount_path, $readonly, @extra_opts) if $mount_path;
50df544c
WB
1283 warn "cannot enable quota control for bind mounts\n" if $quota;
1284 return wantarray ? ($volid, 0, undef) : $volid;
b15c75fc
DM
1285 }
1286
1287 die "unsupported storage";
cc6b0307
AD
1288}
1289
6c871c36 1290sub mkfs {
d216e891 1291 my ($dev, $rootuid, $rootgid) = @_;
6c871c36 1292
d216e891
WB
1293 PVE::Tools::run_command(['mkfs.ext4', '-O', 'mmp',
1294 '-E', "root_owner=$rootuid:$rootgid",
1295 $dev]);
6c871c36
DM
1296}
1297
1298sub format_disk {
d216e891 1299 my ($storage_cfg, $volid, $rootuid, $rootgid) = @_;
6c871c36
DM
1300
1301 if ($volid =~ m!^/dev/.+!) {
1302 mkfs($volid);
1303 return;
1304 }
1305
1306 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1307
1308 die "cannot format volume '$volid' with no storage\n" if !$storage;
1309
08ca136d
DM
1310 PVE::Storage::activate_volumes($storage_cfg, [$volid]);
1311
6c871c36
DM
1312 my $path = PVE::Storage::path($storage_cfg, $volid);
1313
1314 my ($vtype, undef, undef, undef, undef, $isBase, $format) =
1315 PVE::Storage::parse_volname($storage_cfg, $volid);
1316
1317 die "cannot format volume '$volid' (format == $format)\n"
1318 if $format ne 'raw';
1319
d216e891 1320 mkfs($path, $rootuid, $rootgid);
6c871c36
DM
1321}
1322
1323sub destroy_disks {
1324 my ($storecfg, $vollist) = @_;
1325
1326 foreach my $volid (@$vollist) {
1327 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
1328 warn $@ if $@;
1329 }
1330}
1331
2aee38e5 1332our $NEW_DISK_RE = qr/^([^:\s]+):(\d+(\.\d+)?)$/;
6c871c36
DM
1333sub create_disks {
1334 my ($storecfg, $vmid, $settings, $conf) = @_;
1335
1336 my $vollist = [];
1337
1338 eval {
d216e891
WB
1339 my (undef, $rootuid, $rootgid) = PVE::LXC::parse_id_maps($conf);
1340 my $chown_vollist = [];
1341
d250604f 1342 PVE::LXC::Config->foreach_mountpoint($settings, sub {
6c871c36
DM
1343 my ($ms, $mountpoint) = @_;
1344
1345 my $volid = $mountpoint->{volume};
1346 my $mp = $mountpoint->{mp};
1347
1348 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1349
2aee38e5 1350 if ($storage && ($volid =~ $NEW_DISK_RE)) {
8ed5ff9d 1351 my ($storeid, $size_gb) = ($1, $2);
6c871c36 1352
8ed5ff9d 1353 my $size_kb = int(${size_gb}*1024) * 1024;
6c871c36
DM
1354
1355 my $scfg = PVE::Storage::storage_config($storecfg, $storage);
1356 # fixme: use better naming ct-$vmid-disk-X.raw?
1357
1358 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs') {
8ed5ff9d 1359 if ($size_kb > 0) {
6c871c36 1360 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw',
8ed5ff9d 1361 undef, $size_kb);
d216e891 1362 format_disk($storecfg, $volid, $rootuid, $rootgid);
6c871c36
DM
1363 } else {
1364 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'subvol',
1365 undef, 0);
d216e891 1366 push @$chown_vollist, $volid;
6c871c36
DM
1367 }
1368 } elsif ($scfg->{type} eq 'zfspool') {
1369
1370 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'subvol',
8ed5ff9d 1371 undef, $size_kb);
d216e891 1372 push @$chown_vollist, $volid;
2e879877 1373 } elsif ($scfg->{type} eq 'drbd' || $scfg->{type} eq 'lvm' || $scfg->{type} eq 'lvmthin') {
6c871c36 1374
8ed5ff9d 1375 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw', undef, $size_kb);
d216e891 1376 format_disk($storecfg, $volid, $rootuid, $rootgid);
6c871c36
DM
1377
1378 } elsif ($scfg->{type} eq 'rbd') {
1379
1380 die "krbd option must be enabled on storage type '$scfg->{type}'\n" if !$scfg->{krbd};
8ed5ff9d 1381 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw', undef, $size_kb);
d216e891 1382 format_disk($storecfg, $volid, $rootuid, $rootgid);
6c871c36
DM
1383 } else {
1384 die "unable to create containers on storage type '$scfg->{type}'\n";
1385 }
1386 push @$vollist, $volid;
71c780b9
WB
1387 $mountpoint->{volume} = $volid;
1388 $mountpoint->{size} = $size_kb * 1024;
1b4cf758 1389 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
6c871c36 1390 } else {
e2007ac2 1391 # use specified/existing volid/dir/device
1b4cf758 1392 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
6c871c36
DM
1393 }
1394 });
d216e891
WB
1395
1396 PVE::Storage::activate_volumes($storecfg, $chown_vollist, undef);
1397 foreach my $volid (@$chown_vollist) {
1398 my $path = PVE::Storage::path($storecfg, $volid, undef);
1399 chown($rootuid, $rootgid, $path);
1400 }
1401 PVE::Storage::deactivate_volumes($storecfg, $chown_vollist, undef);
6c871c36
DM
1402 };
1403 # free allocated images on error
1404 if (my $err = $@) {
1405 destroy_disks($storecfg, $vollist);
1406 die $err;
1407 }
1408 return $vollist;
1409}
1410
68e8f3c5
DM
1411# bash completion helper
1412
1413sub complete_os_templates {
1414 my ($cmdname, $pname, $cvalue) = @_;
1415
1416 my $cfg = PVE::Storage::config();
1417
9e9bc3a6 1418 my $storeid;
68e8f3c5
DM
1419
1420 if ($cvalue =~ m/^([^:]+):/) {
1421 $storeid = $1;
1422 }
1423
1424 my $vtype = $cmdname eq 'restore' ? 'backup' : 'vztmpl';
1425 my $data = PVE::Storage::template_list($cfg, $storeid, $vtype);
1426
1427 my $res = [];
1428 foreach my $id (keys %$data) {
1429 foreach my $item (@{$data->{$id}}) {
1430 push @$res, $item->{volid} if defined($item->{volid});
1431 }
1432 }
1433
1434 return $res;
1435}
1436
68e8f3c5
DM
1437my $complete_ctid_full = sub {
1438 my ($running) = @_;
1439
1440 my $idlist = vmstatus();
1441
1442 my $active_hash = list_active_containers();
1443
1444 my $res = [];
1445
1446 foreach my $id (keys %$idlist) {
1447 my $d = $idlist->{$id};
1448 if (defined($running)) {
1449 next if $d->{template};
1450 next if $running && !$active_hash->{$id};
1451 next if !$running && $active_hash->{$id};
1452 }
1453 push @$res, $id;
1454
1455 }
1456 return $res;
1457};
1458
1459sub complete_ctid {
1460 return &$complete_ctid_full();
1461}
1462
1463sub complete_ctid_stopped {
1464 return &$complete_ctid_full(0);
1465}
1466
1467sub complete_ctid_running {
1468 return &$complete_ctid_full(1);
1469}
1470
c6a605f9
WB
1471sub parse_id_maps {
1472 my ($conf) = @_;
1473
1474 my $id_map = [];
1475 my $rootuid = 0;
1476 my $rootgid = 0;
1477
1478 my $lxc = $conf->{lxc};
1479 foreach my $entry (@$lxc) {
1480 my ($key, $value) = @$entry;
1481 next if $key ne 'lxc.id_map';
1482 if ($value =~ /^([ug])\s+(\d+)\s+(\d+)\s+(\d+)\s*$/) {
1483 my ($type, $ct, $host, $length) = ($1, $2, $3, $4);
1484 push @$id_map, [$type, $ct, $host, $length];
1485 if ($ct == 0) {
1486 $rootuid = $host if $type eq 'u';
1487 $rootgid = $host if $type eq 'g';
1488 }
1489 } else {
1490 die "failed to parse id_map: $value\n";
1491 }
1492 }
1493
1494 if (!@$id_map && $conf->{unprivileged}) {
1495 # Should we read them from /etc/subuid?
1496 $id_map = [ ['u', '0', '100000', '65536'],
1497 ['g', '0', '100000', '65536'] ];
1498 $rootuid = $rootgid = 100000;
1499 }
1500
1501 return ($id_map, $rootuid, $rootgid);
1502}
1503
01dce99b
WB
1504sub userns_command {
1505 my ($id_map) = @_;
1506 if (@$id_map) {
1507 return ['lxc-usernsexec', (map { ('-m', join(':', @$_)) } @$id_map), '--'];
1508 }
1509 return [];
1510}
1511
846a66b0 1512
f76a2828 15131;