]> git.proxmox.com Git - pve-container.git/blob - src/PVE/LXC.pm
lxc: add sdn veth_create|plug
[pve-container.git] / src / PVE / LXC.pm
1 package PVE::LXC;
2
3 use strict;
4 use warnings;
5
6 use POSIX qw(EINTR);
7
8 use Socket;
9
10 use File::Path;
11 use File::Spec;
12 use Cwd qw();
13 use Fcntl qw(O_RDONLY O_WRONLY O_NOFOLLOW O_DIRECTORY);
14 use Errno qw(ELOOP ENOTDIR EROFS ECONNREFUSED ENOSYS EEXIST);
15 use IO::Socket::UNIX;
16
17 use PVE::Exception qw(raise_perm_exc);
18 use PVE::Storage;
19 use PVE::SafeSyslog;
20 use PVE::INotify;
21 use PVE::JSONSchema qw(get_standard_option);
22 use PVE::Tools qw(
23 dir_glob_foreach file_get_contents file_set_contents lock_file
24 lock_file_full AT_FDCWD O_PATH $IPV4RE $IPV6RE
25 );
26 use PVE::CpuSet;
27 use PVE::Network;
28 use PVE::AccessControl;
29 use PVE::ProcFSTools;
30 use PVE::Syscall qw(:fsmount);
31 use PVE::LXC::Config;
32 use PVE::GuestHelpers qw(safe_string_ne safe_num_ne safe_boolean_ne);
33 use PVE::LXC::Tools;
34
35 use Time::HiRes qw (gettimeofday);
36 my $have_sdn;
37 eval {
38 require PVE::Network::SDN::Zones;
39 $have_sdn = 1;
40 };
41
42 my $LXC_CONFIG_PATH = '/usr/share/lxc/config';
43
44 my $nodename = PVE::INotify::nodename();
45
46 my $cpuinfo= PVE::ProcFSTools::read_cpuinfo();
47
48 sub config_list {
49 my $vmlist = PVE::Cluster::get_vmlist();
50 my $res = {};
51 return $res if !$vmlist || !$vmlist->{ids};
52 my $ids = $vmlist->{ids};
53
54 foreach my $vmid (keys %$ids) {
55 next if !$vmid; # skip CT0
56 my $d = $ids->{$vmid};
57 next if !$d->{node} || $d->{node} ne $nodename;
58 next if !$d->{type} || $d->{type} ne 'lxc';
59 $res->{$vmid} = { type => 'lxc', vmid => $vmid };
60 }
61 return $res;
62 }
63
64 # container status helpers
65
66 sub list_active_containers {
67
68 my $filename = "/proc/net/unix";
69
70 # similar test is used by lcxcontainers.c: list_active_containers
71 my $res = {};
72
73 my $fh = IO::File->new ($filename, "r");
74 return $res if !$fh;
75
76 while (defined(my $line = <$fh>)) {
77 if ($line =~ m/^[a-f0-9]+:\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\s+\d+\s+(\S+)$/) {
78 my $path = $1;
79 if ($path =~ m!^@/var/lib/lxc/(\d+)/command$!) {
80 $res->{$1} = 1;
81 }
82 }
83 }
84
85 close($fh);
86
87 return $res;
88 }
89
90 # warning: this is slow
91 sub check_running {
92 my ($vmid) = @_;
93
94 my $active_hash = list_active_containers();
95
96 return 1 if defined($active_hash->{$vmid});
97
98 return undef;
99 }
100
101 sub get_container_disk_usage {
102 my ($vmid, $pid) = @_;
103
104 return PVE::Tools::df("/proc/$pid/root/", 1);
105 }
106
107 my $last_proc_vmid_stat;
108
109 my $parse_cpuacct_stat = sub {
110 my ($vmid, $unprivileged) = @_;
111
112 my $raw = read_cgroup_value('cpuacct', $vmid, $unprivileged, 'cpuacct.stat', 1);
113
114 my $stat = {};
115
116 if ($raw =~ m/^user (\d+)\nsystem (\d+)\n/) {
117
118 $stat->{utime} = $1;
119 $stat->{stime} = $2;
120
121 }
122
123 return $stat;
124 };
125
126 our $vmstatus_return_properties = {
127 vmid => get_standard_option('pve-vmid'),
128 status => {
129 description => "LXC Container status.",
130 type => 'string',
131 enum => ['stopped', 'running'],
132 },
133 maxmem => {
134 description => "Maximum memory in bytes.",
135 type => 'integer',
136 optional => 1,
137 renderer => 'bytes',
138 },
139 maxswap => {
140 description => "Maximum SWAP memory in bytes.",
141 type => 'integer',
142 optional => 1,
143 renderer => 'bytes',
144 },
145 maxdisk => {
146 description => "Root disk size in bytes.",
147 type => 'integer',
148 optional => 1,
149 renderer => 'bytes',
150 },
151 name => {
152 description => "Container name.",
153 type => 'string',
154 optional => 1,
155 },
156 uptime => {
157 description => "Uptime.",
158 type => 'integer',
159 optional => 1,
160 renderer => 'duration',
161 },
162 cpus => {
163 description => "Maximum usable CPUs.",
164 type => 'number',
165 optional => 1,
166 },
167 lock => {
168 description => "The current config lock, if any.",
169 type => 'string',
170 optional => 1,
171 },
172 tags => {
173 description => "The current configured tags, if any.",
174 type => 'string',
175 optional => 1,
176 }
177 };
178
179 sub vmstatus {
180 my ($opt_vmid) = @_;
181
182 my $list = $opt_vmid ? { $opt_vmid => { type => 'lxc', vmid => $opt_vmid }} : config_list();
183
184 my $active_hash = list_active_containers();
185
186 my $cpucount = $cpuinfo->{cpus} || 1;
187
188 my $cdtime = gettimeofday;
189
190 my $uptime = (PVE::ProcFSTools::read_proc_uptime(1))[0];
191 my $clock_ticks = POSIX::sysconf(&POSIX::_SC_CLK_TCK);
192
193 my $unprivileged = {};
194
195 foreach my $vmid (keys %$list) {
196 my $d = $list->{$vmid};
197
198 eval { $d->{pid} = find_lxc_pid($vmid) if defined($active_hash->{$vmid}); };
199 warn $@ if $@; # ignore errors (consider them stopped)
200
201 $d->{status} = $active_hash->{$vmid} ? 'running' : 'stopped';
202
203 my $cfspath = PVE::LXC::Config->cfs_config_path($vmid);
204 my $conf = PVE::Cluster::cfs_read_file($cfspath) || {};
205
206 $unprivileged->{$vmid} = $conf->{unprivileged};
207
208 $d->{name} = $conf->{'hostname'} || "CT$vmid";
209 $d->{name} =~ s/[\s]//g;
210
211 $d->{cpus} = $conf->{cores} || $conf->{cpulimit};
212 $d->{cpus} = $cpucount if !$d->{cpus};
213
214 $d->{lock} = $conf->{lock} || '';
215 $d->{tags} = $conf->{tags} if defined($conf->{tags});
216
217 if ($d->{pid}) {
218 my $res = get_container_disk_usage($vmid, $d->{pid});
219 $d->{disk} = $res->{used};
220 $d->{maxdisk} = $res->{total};
221 } else {
222 $d->{disk} = 0;
223 # use 4GB by default ??
224 if (my $rootfs = $conf->{rootfs}) {
225 my $rootinfo = PVE::LXC::Config->parse_ct_rootfs($rootfs);
226 $d->{maxdisk} = $rootinfo->{size} || (4*1024*1024*1024);
227 } else {
228 $d->{maxdisk} = 4*1024*1024*1024;
229 }
230 }
231
232 $d->{mem} = 0;
233 $d->{swap} = 0;
234 $d->{maxmem} = ($conf->{memory}||512)*1024*1024;
235 $d->{maxswap} = ($conf->{swap}//0)*1024*1024;
236
237 $d->{uptime} = 0;
238 $d->{cpu} = 0;
239
240 $d->{netout} = 0;
241 $d->{netin} = 0;
242
243 $d->{diskread} = 0;
244 $d->{diskwrite} = 0;
245
246 $d->{template} = PVE::LXC::Config->is_template($conf);
247 $d->{lock} = $conf->{lock} if $conf->{lock};
248 }
249
250 foreach my $vmid (keys %$list) {
251 my $d = $list->{$vmid};
252 my $pid = $d->{pid};
253
254 next if !$pid; # skip stopped CTs
255
256 my $proc_pid_stat = PVE::ProcFSTools::read_proc_pid_stat($pid);
257 $d->{uptime} = int(($uptime - $proc_pid_stat->{starttime}) / $clock_ticks); # the method lxcfs uses
258
259 my $unpriv = $unprivileged->{$vmid};
260
261 if (-d '/sys/fs/cgroup/memory') {
262 my $memory_stat = read_cgroup_list('memory', $vmid, $unpriv, 'memory.stat');
263 my $mem_usage_in_bytes = read_cgroup_value('memory', $vmid, $unpriv, 'memory.usage_in_bytes');
264
265 $d->{mem} = $mem_usage_in_bytes - $memory_stat->{total_cache};
266 $d->{swap} = read_cgroup_value('memory', $vmid, $unpriv, 'memory.memsw.usage_in_bytes') - $mem_usage_in_bytes;
267 } else {
268 $d->{mem} = 0;
269 $d->{swap} = 0;
270 }
271
272 if (-d '/sys/fs/cgroup/blkio') {
273 my $blkio_bytes = read_cgroup_value('blkio', $vmid, 0, 'blkio.throttle.io_service_bytes', 1); # don't check if unpriv
274 my @bytes = split(/\n/, $blkio_bytes);
275 foreach my $byte (@bytes) {
276 if (my ($key, $value) = $byte =~ /(Read|Write)\s+(\d+)/) {
277 $d->{diskread} += $2 if $key eq 'Read';
278 $d->{diskwrite} += $2 if $key eq 'Write';
279 }
280 }
281 } else {
282 $d->{diskread} = 0;
283 $d->{diskwrite} = 0;
284 }
285
286 if (-d '/sys/fs/cgroup/cpuacct') {
287 my $pstat = $parse_cpuacct_stat->($vmid, $unpriv);
288
289 my $used = $pstat->{utime} + $pstat->{stime};
290
291 my $old = $last_proc_vmid_stat->{$vmid};
292 if (!$old) {
293 $last_proc_vmid_stat->{$vmid} = {
294 time => $cdtime,
295 used => $used,
296 cpu => 0,
297 };
298 next;
299 }
300
301 my $dtime = ($cdtime - $old->{time}) * $cpucount * $cpuinfo->{user_hz};
302
303 if ($dtime > 1000) {
304 my $dutime = $used - $old->{used};
305
306 $d->{cpu} = (($dutime/$dtime)* $cpucount) / $d->{cpus};
307 $last_proc_vmid_stat->{$vmid} = {
308 time => $cdtime,
309 used => $used,
310 cpu => $d->{cpu},
311 };
312 } else {
313 $d->{cpu} = $old->{cpu};
314 }
315 } else {
316 $d->{cpu} = 0;
317 }
318 }
319
320 my $netdev = PVE::ProcFSTools::read_proc_net_dev();
321
322 foreach my $dev (keys %$netdev) {
323 next if $dev !~ m/^veth([1-9]\d*)i/;
324 my $vmid = $1;
325 my $d = $list->{$vmid};
326
327 next if !$d;
328
329 $d->{netout} += $netdev->{$dev}->{receive};
330 $d->{netin} += $netdev->{$dev}->{transmit};
331
332 }
333
334 return $list;
335 }
336
337 sub read_cgroup_list($$$$) {
338 my ($group, $vmid, $unprivileged, $name) = @_;
339
340 my $content = read_cgroup_value($group, $vmid, $unprivileged, $name, 1);
341
342 return { split(/\s+/, $content) };
343 }
344
345 sub read_cgroup_value($$$$$) {
346 my ($group, $vmid, $unprivileged, $name, $full) = @_;
347
348 my $nsdir = $unprivileged ? '' : 'ns/';
349 my $path = "/sys/fs/cgroup/$group/lxc/$vmid/${nsdir}$name";
350
351 return PVE::Tools::file_get_contents($path) if $full;
352
353 return PVE::Tools::file_read_firstline($path);
354 }
355
356 sub write_cgroup_value {
357 my ($group, $vmid, $name, $value) = @_;
358
359 my $path = "/sys/fs/cgroup/$group/lxc/$vmid/$name";
360 PVE::ProcFSTools::write_proc_entry($path, $value) if -e $path;
361
362 }
363
364 sub find_lxc_console_pids {
365
366 my $res = {};
367
368 PVE::Tools::dir_glob_foreach('/proc', '\d+', sub {
369 my ($pid) = @_;
370
371 my $cmdline = PVE::Tools::file_read_firstline("/proc/$pid/cmdline");
372 return if !$cmdline;
373
374 my @args = split(/\0/, $cmdline);
375
376 # search for lxc-console -n <vmid>
377 return if scalar(@args) != 3;
378 return if $args[1] ne '-n';
379 return if $args[2] !~ m/^\d+$/;
380 return if $args[0] !~ m|^(/usr/bin/)?lxc-console$|;
381
382 my $vmid = $args[2];
383
384 push @{$res->{$vmid}}, $pid;
385 });
386
387 return $res;
388 }
389
390 sub find_lxc_pid {
391 my ($vmid) = @_;
392
393 my $pid = undef;
394 my $parser = sub {
395 my $line = shift;
396 $pid = $1 if $line =~ m/^PID:\s+(\d+)$/;
397 };
398 PVE::Tools::run_command(['lxc-info', '-n', $vmid, '-p'], outfunc => $parser);
399
400 die "unable to get PID for CT $vmid (not running?)\n" if !$pid;
401
402 return $pid;
403 }
404
405 sub open_pid_fd($) {
406 my ($pid) = @_;
407 sysopen(my $fd, "/proc/$pid", O_RDONLY | O_DIRECTORY)
408 or die "failed to open /proc/$pid pid fd\n";
409 return $fd;
410 }
411
412 sub open_lxc_pid {
413 my ($vmid) = @_;
414
415 # Find the pid and open:
416 my $pid = find_lxc_pid($vmid);
417 my $fd = open_pid_fd($pid);
418
419 # Verify:
420 my $pid2 = find_lxc_pid($vmid);
421
422 return () if $pid != $pid2;
423 return ($pid, $fd);
424 }
425
426 sub open_ppid {
427 my ($pid) = @_;
428
429 # Find the parent pid via proc and open it:
430 my $stat = PVE::ProcFSTools::read_proc_pid_stat($pid);
431 my $ppid = $stat->{ppid} // die "failed to get parent pid\n";
432
433 my $fd = open_pid_fd($ppid);
434
435 # Verify:
436 $stat = PVE::ProcFSTools::read_proc_pid_stat($pid);
437 my $ppid2 = $stat->{ppid} // die "failed to get parent pid for verification\n";
438
439 return () if $ppid != $ppid2;
440 return ($ppid, $fd);
441 }
442
443 # Note: we cannot use Net:IP, because that only allows strict
444 # CIDR networks
445 sub parse_ipv4_cidr {
446 my ($cidr, $noerr) = @_;
447
448 if ($cidr =~ m!^($IPV4RE)(?:/(\d+))$! && ($2 > 7) && ($2 <= 32)) {
449 return { address => $1, netmask => $PVE::Network::ipv4_reverse_mask->[$2] };
450 }
451
452 return undef if $noerr;
453
454 die "unable to parse ipv4 address/mask\n";
455 }
456
457 sub get_cgroup_subsystems {
458 my $v1 = {};
459 my $v2 = 0;
460 my $data = PVE::Tools::file_get_contents('/proc/self/cgroup');
461 while ($data =~ /^\d+:([^:\n]*):.*$/gm) {
462 my $type = $1;
463 if (length($type)) {
464 $v1->{$_} = 1 foreach split(/,/, $type);
465 } else {
466 $v2 = 1;
467 }
468 }
469 return wantarray ? ($v1, $v2) : $v1;
470 }
471
472 # With seccomp trap to userspace we now have the ability to optionally forward
473 # certain syscalls to the "host" to handle (via our pve-lxc-syscalld daemon).
474 #
475 # This means that there are cases where we need to create an extra seccomp
476 # profile for the container to load.
477 #
478 # This returns a configuration snippet added to the raw lxc config.
479 sub make_seccomp_config {
480 my ($conf, $vmid, $conf_dir, $unprivileged, $features) = @_;
481 # User-configured profile has precedence, note that the user's entry would
482 # be written 'after' this line anyway...
483 if (PVE::LXC::Config->has_lxc_entry($conf, 'lxc.seccomp.profile')) {
484 # Warn the user if this conflicts with a feature:
485 my $warn = join(', ', grep { $features->{$_} } qw(keyctl mknod));
486 warn "explicitly configured lxc.seccomp.profile overrides the following settings: $warn\n"
487 if length($warn) > 0;
488 return '';
489 }
490
491 # Privileged containers keep using the default (which is already part of
492 # the files included via lxc.include, so we don't need to write it out,
493 # that way it stays admin-configurable via /usr/share/lxc/config/... as
494 # well)
495 return '' if !$unprivileged;
496
497 my $rules = {
498 keyctl => ['errno 38'],
499 };
500
501 my $raw_conf = '';
502
503 # Unprivileged containers will get keyctl() disabled by default as a
504 # workaround for systemd-networkd behavior. But we have an option to
505 # explicitly enable it:
506 if ($features->{keyctl}) {
507 delete $rules->{keyctl};
508 }
509
510 # By default, unprivileged containers cannot use `mknod` at all.
511 # Since lxc 3.2, we can use seccomp's trap to userspace feature for this,
512 # but for now this is experimental, so it has to be enabled via a feature
513 # flag.
514 # Note that we only handle block and char devices (like lxd), the rest we
515 # leave up to the kernel. We may in the future remove this if seccomp gets
516 # a way to tell the kernel to "continue" a syscall.
517 if ($features->{mknod}) {
518 my ($ok, $kernel) = PVE::ProcFSTools::check_kernel_release(5, 3);
519 if (!$ok) {
520 die "'mknod' feature requested, but kernel too old (found $kernel, required >= 5.3)\n";
521 }
522
523 $raw_conf .= "lxc.seccomp.notify.proxy = unix:/run/pve/lxc-syscalld.sock\n";
524 $raw_conf .= "lxc.seccomp.notify.cookie = $vmid\n";
525
526 $rules->{mknod} = [
527 # condition: (mode & S_IFMT) == S_IFCHR
528 'notify [1,8192,SCMP_CMP_MASKED_EQ,61440]',
529 # condition: (mode & S_IFMT) == S_IFBLK
530 'notify [1,24576,SCMP_CMP_MASKED_EQ,61440]',
531 ];
532 $rules->{mknodat} = [
533 # condition: (mode & S_IFMT) == S_IFCHR
534 'notify [2,8192,SCMP_CMP_MASKED_EQ,61440]',
535 # condition: (mode & S_IFMT) == S_IFBLK
536 'notify [2,24576,SCMP_CMP_MASKED_EQ,61440]',
537 ];
538 }
539
540 # Now build the custom seccomp rule text...
541 my $extra_rules = join("\n", map {
542 my $syscall = $_;
543 map { "$syscall $_" } $rules->{$syscall}->@*
544 } sort keys %$rules) . "\n";
545
546 return $raw_conf if $extra_rules eq "\n";
547
548 # We still have the "most common" config readily available, so don't write
549 # out that one:
550 if ($raw_conf eq '' && $extra_rules eq "keyctl errno 38\n") {
551 # we have no extra $raw_conf and use the same we had in pve 6.1:
552 return "lxc.seccomp.profile = $LXC_CONFIG_PATH/pve-userns.seccomp\n";
553 }
554
555 # Write the rule file to the container's config path:
556 my $rule_file = "$conf_dir/rules.seccomp";
557 my $rule_data = file_get_contents("$LXC_CONFIG_PATH/common.seccomp")
558 . $extra_rules;
559 file_set_contents($rule_file, $rule_data);
560 $raw_conf .= "lxc.seccomp.profile = $rule_file\n";
561
562 return $raw_conf;
563 }
564
565 # Since lxc-3.0.2 we can have lxc generate a profile for the container
566 # automatically. The default should be equivalent to the old
567 # `lxc-container-default-cgns` profile.
568 #
569 # Additionally this also added `lxc.apparmor.raw` which can be used to inject
570 # additional lines into the profile. We can use that to allow mounting specific
571 # file systems.
572 sub make_apparmor_config {
573 my ($conf, $unprivileged, $features) = @_;
574
575 # user-configured profile has precedence, but first we go through our own
576 # code to figure out whether we should warn the user:
577
578 my $raw = "lxc.apparmor.profile = generated\n";
579 my @profile_uses;
580
581 if ($features->{fuse}) {
582 # For the informational warning:
583 push @profile_uses, 'features:fuse';
584 }
585
586 # There's lxc.apparmor.allow_nesting now, which will add the necessary
587 # apparmor lines, create an apparmor namespace for the container, but also
588 # adds proc and sysfs mounts to /dev/.lxc/{proc,sys}. These do not have
589 # lxcfs mounted over them, because that would prevent the container from
590 # mounting new instances of them for nested containers.
591 if ($features->{nesting}) {
592 push @profile_uses, 'features:nesting';
593 $raw .= "lxc.apparmor.allow_nesting = 1\n"
594 } else {
595 # In the default profile in /etc/apparmor.d we patch this in because
596 # otherwise a container can for example run `chown` on /sys, breaking
597 # access to it for non-CAP_DAC_OVERRIDE tools on the host:
598 $raw .= "lxc.apparmor.raw = deny mount -> /proc/,\n";
599 $raw .= "lxc.apparmor.raw = deny mount -> /sys/,\n";
600 # Preferably we could use the 'remount' flag but this does not sit well
601 # with apparmor_parser currently:
602 # mount options=(rw, nosuid, nodev, noexec, remount) -> /sys/,
603 }
604
605 if (my $mount = $features->{mount}) {
606 push @profile_uses, 'features:mount';
607 foreach my $fs (PVE::Tools::split_list($mount)) {
608 $raw .= "lxc.apparmor.raw = mount fstype=$fs,\n";
609 }
610 }
611
612 # More to come?
613
614 if (PVE::LXC::Config->has_lxc_entry($conf, 'lxc.apparmor.profile')) {
615 if (length(my $used = join(', ', @profile_uses))) {
616 warn "explicitly configured lxc.apparmor.profile overrides the following settings: $used\n";
617 }
618 return '';
619 }
620
621 return $raw;
622 }
623
624 sub update_lxc_config {
625 my ($vmid, $conf) = @_;
626
627 my $dir = "/var/lib/lxc/$vmid";
628
629 if ($conf->{template}) {
630
631 unlink "$dir/config";
632
633 return;
634 }
635
636 my $raw = '';
637
638 die "missing 'arch' - internal error" if !$conf->{arch};
639 $raw .= "lxc.arch = $conf->{arch}\n";
640
641 my $custom_idmap = PVE::LXC::Config->has_lxc_entry($conf, 'lxc.idmap');
642 my $unprivileged = $conf->{unprivileged} || $custom_idmap;
643
644 my $ostype = $conf->{ostype} || die "missing 'ostype' - internal error";
645
646 my $cfgpath = '/usr/share/lxc/config';
647 my $inc = "$cfgpath/$ostype.common.conf";
648 $inc ="$cfgpath/common.conf" if !-f $inc;
649 $raw .= "lxc.include = $inc\n";
650 if ($unprivileged) {
651 $inc = "$cfgpath/$ostype.userns.conf";
652 $inc = "$cfgpath/userns.conf" if !-f $inc;
653 $raw .= "lxc.include = $inc\n";
654 }
655
656 my $features = PVE::LXC::Config->parse_features($conf->{features});
657
658 $raw .= make_seccomp_config($conf, $vmid, $dir, $unprivileged, $features);
659 $raw .= make_apparmor_config($conf, $unprivileged, $features);
660 if ($features->{fuse}) {
661 $raw .= "lxc.apparmor.raw = mount fstype=fuse,\n";
662 $raw .= "lxc.mount.entry = /dev/fuse dev/fuse none bind,create=file 0 0\n";
663 }
664
665 # WARNING: DO NOT REMOVE this without making sure that loop device nodes
666 # cannot be exposed to the container with r/w access (cgroup perms).
667 # When this is enabled mounts will still remain in the monitor's namespace
668 # after the container unmounted them and thus will not detach from their
669 # files while the container is running!
670 $raw .= "lxc.monitor.unshare = 1\n";
671
672 my $cgv1 = get_cgroup_subsystems();
673
674 # Should we read them from /etc/subuid?
675 if ($unprivileged && !$custom_idmap) {
676 $raw .= "lxc.idmap = u 0 100000 65536\n";
677 $raw .= "lxc.idmap = g 0 100000 65536\n";
678 }
679
680 if (!PVE::LXC::Config->has_dev_console($conf)) {
681 $raw .= "lxc.console.path = none\n";
682 $raw .= "lxc.cgroup.devices.deny = c 5:1 rwm\n" if $cgv1->{devices};
683 }
684
685 my $ttycount = PVE::LXC::Config->get_tty_count($conf);
686 $raw .= "lxc.tty.max = $ttycount\n";
687
688 # some init scripts expect a linux terminal (turnkey).
689 $raw .= "lxc.environment = TERM=linux\n";
690
691 my $utsname = $conf->{hostname} || "CT$vmid";
692 $raw .= "lxc.uts.name = $utsname\n";
693
694 if ($cgv1->{memory}) {
695 my $memory = $conf->{memory} || 512;
696 my $swap = $conf->{swap} // 0;
697
698 my $lxcmem = int($memory*1024*1024);
699 $raw .= "lxc.cgroup.memory.limit_in_bytes = $lxcmem\n";
700
701 my $lxcswap = int(($memory + $swap)*1024*1024);
702 $raw .= "lxc.cgroup.memory.memsw.limit_in_bytes = $lxcswap\n";
703 }
704
705 if ($cgv1->{cpu}) {
706 if (my $cpulimit = $conf->{cpulimit}) {
707 $raw .= "lxc.cgroup.cpu.cfs_period_us = 100000\n";
708 my $value = int(100000*$cpulimit);
709 $raw .= "lxc.cgroup.cpu.cfs_quota_us = $value\n";
710 }
711
712 my $shares = $conf->{cpuunits} || 1024;
713 $raw .= "lxc.cgroup.cpu.shares = $shares\n";
714 }
715
716 die "missing 'rootfs' configuration\n"
717 if !defined($conf->{rootfs});
718
719 my $mountpoint = PVE::LXC::Config->parse_ct_rootfs($conf->{rootfs});
720
721 $raw .= "lxc.rootfs.path = $dir/rootfs\n";
722
723 foreach my $k (sort keys %$conf) {
724 next if $k !~ m/^net(\d+)$/;
725 my $ind = $1;
726 my $d = PVE::LXC::Config->parse_lxc_network($conf->{$k});
727 $raw .= "lxc.net.$ind.type = veth\n";
728 $raw .= "lxc.net.$ind.veth.pair = veth${vmid}i${ind}\n";
729 $raw .= "lxc.net.$ind.hwaddr = $d->{hwaddr}\n" if defined($d->{hwaddr});
730 $raw .= "lxc.net.$ind.name = $d->{name}\n" if defined($d->{name});
731 $raw .= "lxc.net.$ind.mtu = $d->{mtu}\n" if defined($d->{mtu});
732 }
733
734 if ($cgv1->{cpuset}) {
735 my $had_cpuset = 0;
736 if (my $lxcconf = $conf->{lxc}) {
737 foreach my $entry (@$lxcconf) {
738 my ($k, $v) = @$entry;
739 $had_cpuset = 1 if $k eq 'lxc.cgroup.cpuset.cpus';
740 $raw .= "$k = $v\n";
741 }
742 }
743
744 my $cores = $conf->{cores};
745 if (!$had_cpuset && $cores) {
746 my $cpuset = eval { PVE::CpuSet->new_from_cgroup('lxc', 'effective_cpus') };
747 $cpuset = PVE::CpuSet->new_from_cgroup('', 'effective_cpus') if !$cpuset;
748 my @members = $cpuset->members();
749 while (scalar(@members) > $cores) {
750 my $randidx = int(rand(scalar(@members)));
751 $cpuset->delete($members[$randidx]);
752 splice(@members, $randidx, 1); # keep track of the changes
753 }
754 $raw .= "lxc.cgroup.cpuset.cpus = ".$cpuset->short_string()."\n";
755 }
756 }
757
758 File::Path::mkpath("$dir/rootfs");
759
760 PVE::Tools::file_set_contents("$dir/config", $raw);
761 }
762
763 # verify and cleanup nameserver list (replace \0 with ' ')
764 sub verify_nameserver_list {
765 my ($nameserver_list) = @_;
766
767 my @list = ();
768 foreach my $server (PVE::Tools::split_list($nameserver_list)) {
769 PVE::JSONSchema::pve_verify_ip($server);
770 push @list, $server;
771 }
772
773 return join(' ', @list);
774 }
775
776 sub verify_searchdomain_list {
777 my ($searchdomain_list) = @_;
778
779 my @list = ();
780 foreach my $server (PVE::Tools::split_list($searchdomain_list)) {
781 # todo: should we add checks for valid dns domains?
782 push @list, $server;
783 }
784
785 return join(' ', @list);
786 }
787
788 sub get_console_command {
789 my ($vmid, $conf, $escapechar) = @_;
790
791 # '-1' as $escapechar disables keyboard escape sequence
792 # any other passed char (a-z) will result in <Ctrl+$escapechar q>
793
794 my $cmode = PVE::LXC::Config->get_cmode($conf);
795
796 my $cmd = [];
797 if ($cmode eq 'console') {
798 push @$cmd, 'lxc-console', '-n', $vmid, '-t', 0;
799 push @$cmd, '-e', $escapechar if $escapechar;
800 } elsif ($cmode eq 'tty') {
801 push @$cmd, 'lxc-console', '-n', $vmid;
802 push @$cmd, '-e', $escapechar if $escapechar;
803 } elsif ($cmode eq 'shell') {
804 push @$cmd, 'lxc-attach', '--clear-env', '-n', $vmid;
805 } else {
806 die "internal error";
807 }
808
809 return $cmd;
810 }
811
812 sub get_primary_ips {
813 my ($conf) = @_;
814
815 # return data from net0
816
817 return undef if !defined($conf->{net0});
818 my $net = PVE::LXC::Config->parse_lxc_network($conf->{net0});
819
820 my $ipv4 = $net->{ip};
821 if ($ipv4) {
822 if ($ipv4 =~ /^(dhcp|manual)$/) {
823 $ipv4 = undef
824 } else {
825 $ipv4 =~ s!/\d+$!!;
826 }
827 }
828 my $ipv6 = $net->{ip6};
829 if ($ipv6) {
830 if ($ipv6 =~ /^(auto|dhcp|manual)$/) {
831 $ipv6 = undef;
832 } else {
833 $ipv6 =~ s!/\d+$!!;
834 }
835 }
836
837 return ($ipv4, $ipv6);
838 }
839
840 sub delete_mountpoint_volume {
841 my ($storage_cfg, $vmid, $volume) = @_;
842
843 return if PVE::LXC::Config->classify_mountpoint($volume) ne 'volume';
844
845 my ($vtype, $name, $owner) = PVE::Storage::parse_volname($storage_cfg, $volume);
846
847 if ($vmid == $owner) {
848 PVE::Storage::vdisk_free($storage_cfg, $volume);
849 } else {
850 warn "ignore deletion of '$volume', CT $vmid isn't the owner!\n";
851 }
852 }
853
854 sub destroy_lxc_container {
855 my ($storage_cfg, $vmid, $conf, $replacement_conf) = @_;
856
857 PVE::LXC::Config->foreach_mountpoint($conf, sub {
858 my ($ms, $mountpoint) = @_;
859 delete_mountpoint_volume($storage_cfg, $vmid, $mountpoint->{volume});
860 });
861
862 rmdir "/var/lib/lxc/$vmid/rootfs";
863 unlink "/var/lib/lxc/$vmid/config";
864 rmdir "/var/lib/lxc/$vmid";
865 if (defined $replacement_conf) {
866 PVE::LXC::Config->write_config($vmid, $replacement_conf);
867 } else {
868 PVE::LXC::Config->destroy_config($vmid);
869 }
870 }
871
872 sub vm_stop_cleanup {
873 my ($storage_cfg, $vmid, $conf, $keepActive) = @_;
874
875 return if $keepActive;
876
877 eval {
878 my $vollist = PVE::LXC::Config->get_vm_volumes($conf);
879 PVE::Storage::deactivate_volumes($storage_cfg, $vollist);
880 };
881 warn $@ if $@; # avoid errors - just warn
882 }
883
884 sub update_net {
885 my ($vmid, $conf, $opt, $newnet, $netid, $rootdir) = @_;
886
887 if ($newnet->{type} ne 'veth') {
888 # for when there are physical interfaces
889 die "cannot update interface of type $newnet->{type}";
890 }
891
892 my $veth = "veth${vmid}i${netid}";
893 my $eth = $newnet->{name};
894
895 if (my $oldnetcfg = $conf->{$opt}) {
896 my $oldnet = PVE::LXC::Config->parse_lxc_network($oldnetcfg);
897
898 if (safe_string_ne($oldnet->{hwaddr}, $newnet->{hwaddr}) ||
899 safe_string_ne($oldnet->{name}, $newnet->{name})) {
900
901 PVE::Network::veth_delete($veth);
902 delete $conf->{$opt};
903 PVE::LXC::Config->write_config($vmid, $conf);
904
905 hotplug_net($vmid, $conf, $opt, $newnet, $netid);
906
907 } else {
908 if (safe_string_ne($oldnet->{bridge}, $newnet->{bridge}) ||
909 safe_num_ne($oldnet->{tag}, $newnet->{tag}) ||
910 safe_num_ne($oldnet->{firewall}, $newnet->{firewall})) {
911
912 if ($oldnet->{bridge}) {
913 PVE::Network::tap_unplug($veth);
914 foreach (qw(bridge tag firewall)) {
915 delete $oldnet->{$_};
916 }
917 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($oldnet);
918 PVE::LXC::Config->write_config($vmid, $conf);
919 }
920
921 if($have_sdn) {
922 PVE::Network::SDN::Zones::tap_plug($veth, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
923 } else {
924 PVE::Network::tap_plug($veth, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
925 }
926
927 # This includes the rate:
928 foreach (qw(bridge tag firewall rate)) {
929 $oldnet->{$_} = $newnet->{$_} if $newnet->{$_};
930 }
931 } elsif (safe_string_ne($oldnet->{rate}, $newnet->{rate})) {
932 # Rate can be applied on its own but any change above needs to
933 # include the rate in tap_plug since OVS resets everything.
934 PVE::Network::tap_rate_limit($veth, $newnet->{rate});
935 $oldnet->{rate} = $newnet->{rate}
936 }
937 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($oldnet);
938 PVE::LXC::Config->write_config($vmid, $conf);
939 }
940 } else {
941 hotplug_net($vmid, $conf, $opt, $newnet, $netid);
942 }
943
944 update_ipconfig($vmid, $conf, $opt, $eth, $newnet, $rootdir);
945 }
946
947 sub hotplug_net {
948 my ($vmid, $conf, $opt, $newnet, $netid) = @_;
949
950 my $veth = "veth${vmid}i${netid}";
951 my $vethpeer = $veth . "p";
952 my $eth = $newnet->{name};
953
954 if($have_sdn) {
955 PVE::Network::SDN::Zones::veth_create($veth, $vethpeer, $newnet->{bridge}, $newnet->{hwaddr});
956 PVE::Network::SDN::Zones::tap_plug($veth, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
957 } else {
958 PVE::Network::veth_create($veth, $vethpeer, $newnet->{bridge}, $newnet->{hwaddr});
959 PVE::Network::tap_plug($veth, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall}, $newnet->{trunks}, $newnet->{rate});
960 }
961
962 # attach peer in container
963 my $cmd = ['lxc-device', '-n', $vmid, 'add', $vethpeer, "$eth" ];
964 PVE::Tools::run_command($cmd);
965
966 # link up peer in container
967 $cmd = ['lxc-attach', '-n', $vmid, '-s', 'NETWORK', '--', '/sbin/ip', 'link', 'set', $eth ,'up' ];
968 PVE::Tools::run_command($cmd);
969
970 my $done = { type => 'veth' };
971 foreach (qw(bridge tag firewall hwaddr name)) {
972 $done->{$_} = $newnet->{$_} if $newnet->{$_};
973 }
974 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($done);
975
976 PVE::LXC::Config->write_config($vmid, $conf);
977 }
978
979 sub update_ipconfig {
980 my ($vmid, $conf, $opt, $eth, $newnet, $rootdir) = @_;
981
982 my $lxc_setup = PVE::LXC::Setup->new($conf, $rootdir);
983
984 my $optdata = PVE::LXC::Config->parse_lxc_network($conf->{$opt});
985 my $deleted = [];
986 my $added = [];
987 my $nscmd = sub {
988 my $cmdargs = shift;
989 PVE::Tools::run_command(['lxc-attach', '-n', $vmid, '-s', 'NETWORK', '--', @_], %$cmdargs);
990 };
991 my $ipcmd = sub { &$nscmd({}, '/sbin/ip', @_) };
992
993 my $change_ip_config = sub {
994 my ($ipversion) = @_;
995
996 my $family_opt = "-$ipversion";
997 my $suffix = $ipversion == 4 ? '' : $ipversion;
998 my $gw= "gw$suffix";
999 my $ip= "ip$suffix";
1000
1001 my $newip = $newnet->{$ip};
1002 my $newgw = $newnet->{$gw};
1003 my $oldip = $optdata->{$ip};
1004 my $oldgw = $optdata->{$gw};
1005
1006 my $change_ip = safe_string_ne($oldip, $newip);
1007 my $change_gw = safe_string_ne($oldgw, $newgw);
1008
1009 return if !$change_ip && !$change_gw;
1010
1011 # step 1: add new IP, if this fails we cancel
1012 my $is_real_ip = ($newip && $newip !~ /^(?:auto|dhcp|manual)$/);
1013 if ($change_ip && $is_real_ip) {
1014 eval { &$ipcmd($family_opt, 'addr', 'add', $newip, 'dev', $eth); };
1015 if (my $err = $@) {
1016 warn $err;
1017 return;
1018 }
1019 }
1020
1021 # step 2: replace gateway
1022 # If this fails we delete the added IP and cancel.
1023 # If it succeeds we save the config and delete the old IP, ignoring
1024 # errors. The config is then saved.
1025 # Note: 'ip route replace' can add
1026 if ($change_gw) {
1027 if ($newgw) {
1028 eval {
1029 if ($is_real_ip && !PVE::Network::is_ip_in_cidr($newgw, $newip, $ipversion)) {
1030 &$ipcmd($family_opt, 'route', 'add', $newgw, 'dev', $eth);
1031 }
1032 &$ipcmd($family_opt, 'route', 'replace', 'default', 'via', $newgw);
1033 };
1034 if (my $err = $@) {
1035 warn $err;
1036 # the route was not replaced, the old IP is still available
1037 # rollback (delete new IP) and cancel
1038 if ($change_ip) {
1039 eval { &$ipcmd($family_opt, 'addr', 'del', $newip, 'dev', $eth); };
1040 warn $@ if $@; # no need to die here
1041 }
1042 return;
1043 }
1044 } else {
1045 eval { &$ipcmd($family_opt, 'route', 'del', 'default'); };
1046 # if the route was not deleted, the guest might have deleted it manually
1047 # warn and continue
1048 warn $@ if $@;
1049 }
1050 if ($oldgw && $oldip && !PVE::Network::is_ip_in_cidr($oldgw, $oldip)) {
1051 eval { &$ipcmd($family_opt, 'route', 'del', $oldgw, 'dev', $eth); };
1052 # warn if the route was deleted manually
1053 warn $@ if $@;
1054 }
1055 }
1056
1057 # from this point on we save the configuration
1058 # step 3: delete old IP ignoring errors
1059 if ($change_ip && $oldip && $oldip !~ /^(?:auto|dhcp)$/) {
1060 # We need to enable promote_secondaries, otherwise our newly added
1061 # address will be removed along with the old one.
1062 my $promote = 0;
1063 eval {
1064 if ($ipversion == 4) {
1065 &$nscmd({ outfunc => sub { $promote = int(shift) } },
1066 'cat', "/proc/sys/net/ipv4/conf/$eth/promote_secondaries");
1067 &$nscmd({}, 'sysctl', "net.ipv4.conf.$eth.promote_secondaries=1");
1068 }
1069 &$ipcmd($family_opt, 'addr', 'del', $oldip, 'dev', $eth);
1070 };
1071 warn $@ if $@; # no need to die here
1072
1073 if ($ipversion == 4) {
1074 &$nscmd({}, 'sysctl', "net.ipv4.conf.$eth.promote_secondaries=$promote");
1075 }
1076 }
1077
1078 foreach my $property ($ip, $gw) {
1079 if ($newnet->{$property}) {
1080 $optdata->{$property} = $newnet->{$property};
1081 } else {
1082 delete $optdata->{$property};
1083 }
1084 }
1085 $conf->{$opt} = PVE::LXC::Config->print_lxc_network($optdata);
1086 PVE::LXC::Config->write_config($vmid, $conf);
1087 $lxc_setup->setup_network($conf);
1088 };
1089
1090 &$change_ip_config(4);
1091 &$change_ip_config(6);
1092
1093 }
1094
1095 my $open_namespace = sub {
1096 my ($vmid, $pid, $kind) = @_;
1097 sysopen my $fd, "/proc/$pid/ns/$kind", O_RDONLY
1098 or die "failed to open $kind namespace of container $vmid: $!\n";
1099 return $fd;
1100 };
1101
1102 my $enter_namespace = sub {
1103 my ($vmid, $pid, $kind, $type) = @_;
1104 my $fd = $open_namespace->($vmid, $pid, $kind);
1105 PVE::Tools::setns(fileno($fd), $type)
1106 or die "failed to enter $kind namespace of container $vmid: $!\n";
1107 close $fd;
1108 };
1109
1110 my $get_container_namespace = sub {
1111 my ($vmid, $pid, $kind) = @_;
1112
1113 my $pidfd;
1114 if (!defined($pid)) {
1115 # Pin the pid while we're grabbing its stuff from /proc
1116 ($pid, $pidfd) = open_lxc_pid($vmid)
1117 or die "failed to open pidfd of container $vmid\'s init process\n";
1118 }
1119
1120 return $open_namespace->($vmid, $pid, $kind);
1121 };
1122
1123 my $do_syncfs = sub {
1124 my ($vmid, $pid, $socket) = @_;
1125
1126 &$enter_namespace($vmid, $pid, 'mnt', PVE::Tools::CLONE_NEWNS);
1127
1128 # Tell the parent process to start reading our /proc/mounts
1129 print {$socket} "go\n";
1130 $socket->flush();
1131
1132 # Receive /proc/self/mounts
1133 my $mountdata = do { local $/ = undef; <$socket> };
1134 close $socket;
1135
1136 # Now sync all mountpoints...
1137 my $mounts = PVE::ProcFSTools::parse_mounts($mountdata);
1138 foreach my $mp (@$mounts) {
1139 my ($what, $dir, $fs) = @$mp;
1140 next if $fs eq 'fuse.lxcfs';
1141 eval { PVE::Tools::sync_mountpoint($dir); };
1142 warn $@ if $@;
1143 }
1144 };
1145
1146 sub sync_container_namespace {
1147 my ($vmid) = @_;
1148 my $pid = find_lxc_pid($vmid);
1149
1150 # SOCK_DGRAM is nicer for barriers but cannot be slurped
1151 socketpair my $pfd, my $cfd, AF_UNIX, SOCK_STREAM, PF_UNSPEC
1152 or die "failed to create socketpair: $!\n";
1153
1154 my $child = fork();
1155 die "fork failed: $!\n" if !defined($child);
1156
1157 if (!$child) {
1158 eval {
1159 close $pfd;
1160 &$do_syncfs($vmid, $pid, $cfd);
1161 };
1162 if (my $err = $@) {
1163 warn $err;
1164 POSIX::_exit(1);
1165 }
1166 POSIX::_exit(0);
1167 }
1168 close $cfd;
1169 my $go = <$pfd>;
1170 die "failed to enter container namespace\n" if $go ne "go\n";
1171
1172 open my $mounts, '<', "/proc/$child/mounts"
1173 or die "failed to open container's /proc/mounts: $!\n";
1174 my $mountdata = do { local $/ = undef; <$mounts> };
1175 close $mounts;
1176 print {$pfd} $mountdata;
1177 close $pfd;
1178
1179 while (waitpid($child, 0) != $child) {}
1180 die "failed to sync container namespace\n" if $? != 0;
1181 }
1182
1183 sub template_create {
1184 my ($vmid, $conf) = @_;
1185
1186 my $storecfg = PVE::Storage::config();
1187
1188 PVE::LXC::Config->foreach_mountpoint($conf, sub {
1189 my ($ms, $mountpoint) = @_;
1190
1191 my $volid = $mountpoint->{volume};
1192
1193 die "Template feature is not available for '$volid'\n"
1194 if !PVE::Storage::volume_has_feature($storecfg, 'template', $volid);
1195 });
1196
1197 PVE::LXC::Config->foreach_mountpoint($conf, sub {
1198 my ($ms, $mountpoint) = @_;
1199
1200 my $volid = $mountpoint->{volume};
1201
1202 PVE::Storage::activate_volumes($storecfg, [$volid]);
1203
1204 my $template_volid = PVE::Storage::vdisk_create_base($storecfg, $volid);
1205 $mountpoint->{volume} = $template_volid;
1206 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq "rootfs");
1207 });
1208
1209 PVE::LXC::Config->write_config($vmid, $conf);
1210 }
1211
1212 sub check_ct_modify_config_perm {
1213 my ($rpcenv, $authuser, $vmid, $pool, $newconf, $delete) = @_;
1214
1215 return 1 if $authuser eq 'root@pam';
1216
1217 my $check = sub {
1218 my ($opt, $delete) = @_;
1219 if ($opt eq 'cores' || $opt eq 'cpuunits' || $opt eq 'cpulimit') {
1220 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.CPU']);
1221 } elsif ($opt eq 'rootfs' || $opt =~ /^mp\d+$/) {
1222 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Disk']);
1223 return if $delete;
1224 my $data = $opt eq 'rootfs' ? PVE::LXC::Config->parse_ct_rootfs($newconf->{$opt})
1225 : PVE::LXC::Config->parse_ct_mountpoint($newconf->{$opt});
1226 raise_perm_exc("mount point type $data->{type} is only allowed for root\@pam")
1227 if $data->{type} ne 'volume';
1228 } elsif ($opt eq 'memory' || $opt eq 'swap') {
1229 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Memory']);
1230 } elsif ($opt =~ m/^net\d+$/ || $opt eq 'nameserver' ||
1231 $opt eq 'searchdomain' || $opt eq 'hostname') {
1232 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Network']);
1233 } elsif ($opt eq 'features') {
1234 # For now this is restricted to root@pam
1235 raise_perm_exc("changing feature flags is only allowed for root\@pam");
1236 } elsif ($opt eq 'hookscript') {
1237 # For now this is restricted to root@pam
1238 raise_perm_exc("changing the hookscript is only allowed for root\@pam");
1239 } else {
1240 $rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Options']);
1241 }
1242 };
1243
1244 foreach my $opt (keys %$newconf) {
1245 &$check($opt, 0);
1246 }
1247 foreach my $opt (@$delete) {
1248 &$check($opt, 1);
1249 }
1250
1251 return 1;
1252 }
1253
1254 sub umount_all {
1255 my ($vmid, $storage_cfg, $conf, $noerr) = @_;
1256
1257 my $rootdir = "/var/lib/lxc/$vmid/rootfs";
1258 my $volid_list = PVE::LXC::Config->get_vm_volumes($conf);
1259
1260 my $res = 1;
1261
1262 PVE::LXC::Config->foreach_mountpoint_reverse($conf, sub {
1263 my ($ms, $mountpoint) = @_;
1264
1265 my $volid = $mountpoint->{volume};
1266 my $mount = $mountpoint->{mp};
1267
1268 return if !$volid || !$mount;
1269
1270 my $mount_path = "$rootdir/$mount";
1271 $mount_path =~ s!/+!/!g;
1272
1273 return if !PVE::ProcFSTools::is_mounted($mount_path);
1274
1275 eval {
1276 PVE::Tools::run_command(['umount', '-d', $mount_path]);
1277 };
1278 if (my $err = $@) {
1279 if ($noerr) {
1280 $res = 0;
1281 warn $err;
1282 } else {
1283 die $err;
1284 }
1285 }
1286 });
1287
1288 return $res; # tell caller if (some) umounts failed for the noerr case
1289 }
1290
1291 sub mount_all {
1292 my ($vmid, $storage_cfg, $conf, $ignore_ro) = @_;
1293
1294 my $rootdir = "/var/lib/lxc/$vmid/rootfs";
1295 File::Path::make_path($rootdir);
1296
1297 my $volid_list = PVE::LXC::Config->get_vm_volumes($conf);
1298 PVE::Storage::activate_volumes($storage_cfg, $volid_list);
1299
1300 my (undef, $rootuid, $rootgid) = parse_id_maps($conf);
1301
1302 eval {
1303 PVE::LXC::Config->foreach_mountpoint($conf, sub {
1304 my ($ms, $mountpoint) = @_;
1305
1306 $mountpoint->{ro} = 0 if $ignore_ro;
1307
1308 mountpoint_mount($mountpoint, $rootdir, $storage_cfg, undef, $rootuid, $rootgid);
1309 });
1310 };
1311 if (my $err = $@) {
1312 warn "mounting container failed\n";
1313 umount_all($vmid, $storage_cfg, $conf, 1);
1314 die $err;
1315 }
1316
1317 return $rootdir;
1318 }
1319
1320
1321 sub mountpoint_mount_path {
1322 my ($mountpoint, $storage_cfg, $snapname) = @_;
1323
1324 return mountpoint_mount($mountpoint, undef, $storage_cfg, $snapname);
1325 }
1326
1327 sub query_loopdev {
1328 my ($path) = @_;
1329 my $found;
1330 my $parser = sub {
1331 my $line = shift;
1332 if ($line =~ m@^(/dev/loop\d+):@) {
1333 $found = $1;
1334 }
1335 };
1336 my $cmd = ['losetup', '--associated', $path];
1337 PVE::Tools::run_command($cmd, outfunc => $parser);
1338 return $found;
1339 }
1340
1341 # Run a function with a file attached to a loop device.
1342 # The loop device is always detached afterwards (or set to autoclear).
1343 # Returns the loop device.
1344 sub run_with_loopdev {
1345 my ($func, $file, $readonly) = @_;
1346 my $device = query_loopdev($file);
1347 # Try to reuse an existing device
1348 if ($device) {
1349 # We assume that whoever setup the loop device is responsible for
1350 # detaching it.
1351 &$func($device);
1352 return $device;
1353 }
1354
1355 my $parser = sub {
1356 my $line = shift;
1357 if ($line =~ m@^(/dev/loop\d+)$@) {
1358 $device = $1;
1359 }
1360 };
1361 my $losetup_cmd = [
1362 'losetup',
1363 '--show',
1364 '-f',
1365 $file,
1366 ];
1367 push @$losetup_cmd, '-r' if $readonly;
1368 PVE::Tools::run_command($losetup_cmd, outfunc => $parser);
1369 die "failed to setup loop device for $file\n" if !$device;
1370 eval { &$func($device); };
1371 my $err = $@;
1372 PVE::Tools::run_command(['losetup', '-d', $device]);
1373 die $err if $err;
1374 return $device;
1375 }
1376
1377 # In scalar mode: returns a file handle to the deepest directory node.
1378 # In list context: returns a list of:
1379 # * the deepest directory node
1380 # * the 2nd deepest directory (parent of the above)
1381 # * directory name of the last directory
1382 # So that the path $2/$3 should lead to $1 afterwards.
1383 sub walk_tree_nofollow($$$;$$) {
1384 my ($start, $subdir, $mkdir, $rootuid, $rootgid) = @_;
1385
1386 sysopen(my $fd, $start, O_PATH | O_DIRECTORY)
1387 or die "failed to open start directory $start: $!\n";
1388
1389 return walk_tree_nofollow_fd($start, $fd, $subdir, $mkdir, $rootuid, $rootgid);
1390 }
1391
1392
1393 sub walk_tree_nofollow_fd($$$$;$$) {
1394 my ($start_dirname, $start_fd, $subdir, $mkdir, $rootuid, $rootgid) = @_;
1395
1396 # splitdir() returns '' for empty components including the leading /
1397 my @comps = grep { length($_)>0 } File::Spec->splitdir($subdir);
1398
1399 my $fd = $start_fd;
1400 my $dir = $start_dirname;
1401 my $last_component = undef;
1402 my $second = $fd;
1403 foreach my $component (@comps) {
1404 $dir .= "/$component";
1405 my $next = PVE::Tools::openat(fileno($fd), $component, O_NOFOLLOW | O_DIRECTORY);
1406
1407 if (!$next) {
1408 # failed, check for symlinks and try to create the path
1409 die "symlink encountered at: $dir\n" if $! == ELOOP || $! == ENOTDIR;
1410 die "cannot open directory $dir: $!\n" if !$mkdir;
1411
1412 # We don't check for errors on mkdirat() here and just try to
1413 # openat() again, since at least one error (EEXIST) is an
1414 # expected possibility if multiple containers start
1415 # simultaneously. If someone else injects a symlink now then
1416 # the subsequent openat() will fail due to O_NOFOLLOW anyway.
1417 PVE::Tools::mkdirat(fileno($fd), $component, 0755);
1418
1419 $next = PVE::Tools::openat(fileno($fd), $component, O_NOFOLLOW | O_DIRECTORY);
1420 die "failed to create path: $dir: $!\n" if !$next;
1421
1422 PVE::Tools::fchownat(fileno($next), '', $rootuid, $rootgid, PVE::Tools::AT_EMPTY_PATH)
1423 if defined($rootuid) && defined($rootgid);
1424 }
1425
1426 close $second if defined($last_component) && $second != $start_fd;
1427 $last_component = $component;
1428 $second = $fd;
1429 $fd = $next;
1430 }
1431
1432 return ($fd, defined($last_component) && $second, $last_component) if wantarray;
1433 close $second if defined($last_component) && $second != $start_fd;
1434 return $fd;
1435 }
1436
1437 # To guard against symlink attack races against other currently running
1438 # containers with shared recursive bind mount hierarchies we prepare a
1439 # directory handle for the directory we're mounting over to verify the
1440 # mountpoint afterwards.
1441 sub __bindmount_prepare {
1442 my ($hostroot, $dir) = @_;
1443 my $srcdh = walk_tree_nofollow($hostroot, $dir, 0);
1444 return $srcdh;
1445 }
1446
1447 # Assuming we mount to rootfs/a/b/c, verify with the directory handle to 'b'
1448 # ($parentfd) that 'b/c' (openat($parentfd, 'c')) really leads to the directory
1449 # we intended to bind mount.
1450 sub __bindmount_verify {
1451 my ($srcdh, $parentfd, $last_dir, $ro) = @_;
1452 my $destdh;
1453 if ($parentfd) {
1454 # Open the mount point path coming from the parent directory since the
1455 # filehandle we would have gotten as first result of walk_tree_nofollow
1456 # earlier is still a handle to the underlying directory instead of the
1457 # mounted path.
1458 $destdh = PVE::Tools::openat(fileno($parentfd), $last_dir, PVE::Tools::O_PATH | O_NOFOLLOW | O_DIRECTORY);
1459 die "failed to open mount point: $!\n" if !$destdh;
1460 if ($ro) {
1461 my $dot = '.';
1462 # no separate function because 99% of the time it's the wrong thing to use.
1463 if (syscall(PVE::Syscall::faccessat, fileno($destdh), $dot, &POSIX::W_OK, 0) != -1) {
1464 die "failed to mark bind mount read only\n";
1465 }
1466 die "read-only check failed: $!\n" if $! != EROFS;
1467 }
1468 } else {
1469 # For the rootfs we don't have a parentfd so we open the path directly.
1470 # Note that this means bindmounting any prefix of the host's
1471 # /var/lib/lxc/$vmid path into another container is considered a grave
1472 # security error.
1473 sysopen $destdh, $last_dir, O_PATH | O_DIRECTORY;
1474 die "failed to open mount point: $!\n" if !$destdh;
1475 }
1476
1477 my ($srcdev, $srcinode) = stat($srcdh);
1478 my ($dstdev, $dstinode) = stat($destdh);
1479 close $srcdh;
1480 close $destdh;
1481
1482 return ($srcdev == $dstdev && $srcinode == $dstinode);
1483 }
1484
1485 # Perform the actual bind mounting:
1486 sub __bindmount_do {
1487 my ($dir, $dest, $ro, @extra_opts) = @_;
1488 PVE::Tools::run_command(['mount', '-o', 'bind', @extra_opts, $dir, $dest]);
1489 if ($ro) {
1490 eval { PVE::Tools::run_command(['mount', '-o', 'bind,remount,ro', $dest]); };
1491 if (my $err = $@) {
1492 warn "bindmount error\n";
1493 # don't leave writable bind-mounts behind...
1494 PVE::Tools::run_command(['umount', $dest]);
1495 die $err;
1496 }
1497 }
1498 }
1499
1500 sub bindmount {
1501 my ($dir, $parentfd, $last_dir, $dest, $ro, @extra_opts) = @_;
1502
1503 my $srcdh = __bindmount_prepare('/', $dir);
1504
1505 __bindmount_do($dir, $dest, $ro, @extra_opts);
1506
1507 if (!__bindmount_verify($srcdh, $parentfd, $last_dir, $ro)) {
1508 PVE::Tools::run_command(['umount', $dest]);
1509 die "detected mount path change at: $dir\n";
1510 }
1511 }
1512
1513 # Cleanup $rootdir a bit (double and trailing slashes), build the mount path
1514 # from $rootdir and $mount and walk the path from $rootdir to the final
1515 # directory to check for symlinks.
1516 sub __mount_prepare_rootdir {
1517 my ($rootdir, $mount, $rootuid, $rootgid) = @_;
1518 $rootdir =~ s!/+!/!g;
1519 $rootdir =~ s!/+$!!;
1520 my $mount_path = "$rootdir/$mount";
1521 my ($mpfd, $parentfd, $last_dir) = walk_tree_nofollow($rootdir, $mount, 1, $rootuid, $rootgid);
1522 return ($rootdir, $mount_path, $mpfd, $parentfd, $last_dir);
1523 }
1524
1525 # use $rootdir = undef to just return the corresponding mount path
1526 sub mountpoint_mount {
1527 my ($mountpoint, $rootdir, $storage_cfg, $snapname, $rootuid, $rootgid) = @_;
1528 return __mountpoint_mount($mountpoint, $rootdir, $storage_cfg, $snapname, $rootuid, $rootgid, undef);
1529 }
1530
1531 sub mountpoint_stage {
1532 my ($mountpoint, $stage_dir, $storage_cfg, $snapname, $rootuid, $rootgid) = @_;
1533 my ($path, $loop, $dev) =
1534 __mountpoint_mount($mountpoint, $stage_dir, $storage_cfg, $snapname, $rootuid, $rootgid, 1);
1535
1536 if (!defined($path)) {
1537 return undef if $! == ENOSYS;
1538 die "failed to mount subvolume: $!\n";
1539 }
1540
1541 # We clone the mount point and leave it there in order to keep them connected to eg. loop
1542 # devices in case we're hotplugging (which would allow contaienrs to unmount the new mount
1543 # point).
1544 my $err;
1545 my $fd = PVE::Tools::open_tree(&AT_FDCWD, $stage_dir, &OPEN_TREE_CLOEXEC | &OPEN_TREE_CLONE)
1546 or die "open_tree() on mount point failed: $!\n";
1547
1548 return wantarray ? ($path, $loop, $dev, $fd) : $fd;
1549 }
1550
1551 sub mountpoint_insert_staged {
1552 my ($mount_fd, $rootdir_fd, $mp_dir, $opt, $rootuid, $rootgid) = @_;
1553
1554 if (!defined($rootdir_fd)) {
1555 sysopen($rootdir_fd, '.', O_PATH | O_DIRECTORY)
1556 or die "failed to open '.': $!\n";
1557 }
1558
1559 my $dest_fd = walk_tree_nofollow_fd('/', $rootdir_fd, $mp_dir, 1, $rootuid, $rootgid);
1560
1561 PVE::Tools::move_mount(
1562 fileno($mount_fd),
1563 '',
1564 fileno($dest_fd),
1565 '',
1566 &MOVE_MOUNT_F_EMPTY_PATH | &MOVE_MOUNT_T_EMPTY_PATH,
1567 ) or die "failed to move '$opt' into container hierarchy: $!\n";
1568 }
1569
1570 # Use $stage_mount, $rootdir is treated as a temporary path to "stage" the file system. The user
1571 # can then open a file descriptor to it which can be used with the `move_mount` syscall.
1572 # Note that if the kernel does not support the new mount API, this will not perform any action
1573 # and return `undef` with $! = ENOSYS.
1574 sub __mountpoint_mount {
1575 my ($mountpoint, $rootdir, $storage_cfg, $snapname, $rootuid, $rootgid, $stage_mount) = @_;
1576
1577 if (defined($stage_mount) && !PVE::LXC::Tools::can_use_new_mount_api()) {
1578 $! = ENOSYS;
1579 return undef;
1580 }
1581
1582 # When staging mount points we always mount to $rootdir directly (iow. as if `mp=/`).
1583 # This is required since __mount_prepare_rootdir() will return handles to the parent directory
1584 # which we use in __bindmount_verify()!
1585 my $mount = $stage_mount ? '/': $mountpoint->{mp};
1586
1587 my $volid = $mountpoint->{volume};
1588 my $type = $mountpoint->{type};
1589 my $quota = !$snapname && !$mountpoint->{ro} && $mountpoint->{quota};
1590 my $mounted_dev;
1591
1592 return if !$volid || !$mount;
1593
1594 $mount =~ s!/+!/!g;
1595
1596 my $mount_path;
1597 my ($mpfd, $parentfd, $last_dir);
1598
1599 if (defined($rootdir)) {
1600 ($rootdir, $mount_path, $mpfd, $parentfd, $last_dir) =
1601 __mount_prepare_rootdir($rootdir, $mount, $rootuid, $rootgid);
1602 }
1603
1604 if (defined($stage_mount)) {
1605 $mount_path = $rootdir;
1606 }
1607
1608 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1609
1610 die "unknown snapshot path for '$volid'" if !$storage && defined($snapname);
1611
1612 my $optlist = [];
1613
1614 if (my $mountopts = $mountpoint->{mountoptions}) {
1615 my @opts = split(/;/, $mountpoint->{mountoptions});
1616 push @$optlist, grep { PVE::LXC::Config::is_valid_mount_option($_) } @opts;
1617 }
1618
1619 my $acl = $mountpoint->{acl};
1620 if (defined($acl)) {
1621 push @$optlist, ($acl ? 'acl' : 'noacl');
1622 }
1623
1624 my $optstring = join(',', @$optlist);
1625 my $readonly = $mountpoint->{ro};
1626
1627 my @extra_opts;
1628 @extra_opts = ('-o', $optstring) if $optstring;
1629
1630 if ($storage) {
1631
1632 my $scfg = PVE::Storage::storage_config($storage_cfg, $storage);
1633
1634 my $path = PVE::Storage::map_volume($storage_cfg, $volid, $snapname);
1635
1636 $path = PVE::Storage::path($storage_cfg, $volid, $snapname) if !defined($path);
1637
1638 my ($vtype, undef, undef, undef, undef, $isBase, $format) =
1639 PVE::Storage::parse_volname($storage_cfg, $volid);
1640
1641 $format = 'iso' if $vtype eq 'iso'; # allow to handle iso files
1642
1643 if ($format eq 'subvol') {
1644 if ($mount_path) {
1645 my (undef, $name) = PVE::Storage::parse_volname($storage_cfg, $volid);
1646 if (defined($snapname)) {
1647 $name .= "\@$snapname";
1648 if ($scfg->{type} eq 'zfspool') {
1649 PVE::Tools::run_command(['mount', '-o', 'ro', @extra_opts, '-t', 'zfs', "$scfg->{pool}/$name", $mount_path]);
1650 } else {
1651 die "cannot mount subvol snapshots for storage type '$scfg->{type}'\n";
1652 }
1653 } else {
1654 if (defined($acl) && $scfg->{type} eq 'zfspool') {
1655 my $acltype = ($acl ? 'acltype=posixacl' : 'acltype=noacl');
1656 PVE::Tools::run_command(['zfs', 'set', $acltype, "$scfg->{pool}/$name"]);
1657 }
1658 bindmount($path, $parentfd, $last_dir//$rootdir, $mount_path, $readonly, @extra_opts);
1659 warn "cannot enable quota control for bind mounted subvolumes\n" if $quota;
1660 }
1661 }
1662 return wantarray ? ($path, 0, undef) : $path;
1663 } elsif ($format eq 'raw' || $format eq 'iso') {
1664 # NOTE: 'mount' performs canonicalization without the '-c' switch, which for
1665 # device-mapper devices is special-cased to use the /dev/mapper symlinks.
1666 # Our autodev hook expects the /dev/dm-* device currently
1667 # and will create the /dev/mapper symlink accordingly
1668 $path = Cwd::realpath($path);
1669 die "failed to get device path\n" if !$path;
1670 ($path) = ($path =~ /^(.*)$/s); #untaint
1671 my $domount = sub {
1672 my ($path) = @_;
1673 if ($mount_path) {
1674 if ($format eq 'iso') {
1675 PVE::Tools::run_command(['mount', '-o', 'ro', @extra_opts, $path, $mount_path]);
1676 } elsif ($isBase || defined($snapname)) {
1677 PVE::Tools::run_command(['mount', '-o', 'ro,noload', @extra_opts, $path, $mount_path]);
1678 } else {
1679 if ($quota) {
1680 push @extra_opts, '-o', 'usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0';
1681 }
1682 push @extra_opts, '-o', 'ro' if $readonly;
1683 PVE::Tools::run_command(['mount', @extra_opts, $path, $mount_path]);
1684 }
1685 }
1686 };
1687 my $use_loopdev = 0;
1688 if ($scfg->{path}) {
1689 $mounted_dev = run_with_loopdev($domount, $path, $readonly);
1690 $use_loopdev = 1;
1691 } elsif ($scfg->{type} eq 'drbd' || $scfg->{type} eq 'lvm' ||
1692 $scfg->{type} eq 'rbd' || $scfg->{type} eq 'lvmthin') {
1693 $mounted_dev = $path;
1694 &$domount($path);
1695 } else {
1696 die "unsupported storage type '$scfg->{type}'\n";
1697 }
1698 return wantarray ? ($path, $use_loopdev, $mounted_dev) : $path;
1699 } else {
1700 die "unsupported image format '$format'\n";
1701 }
1702 } elsif ($type eq 'device') {
1703 push @extra_opts, '-o', 'ro' if $readonly;
1704 push @extra_opts, '-o', 'usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0' if $quota;
1705 # See the NOTE above about devicemapper canonicalization
1706 my ($devpath) = (Cwd::realpath($volid) =~ /^(.*)$/s); # realpath() taints
1707 PVE::Tools::run_command(['mount', @extra_opts, $volid, $mount_path]) if $mount_path;
1708 return wantarray ? ($volid, 0, $devpath) : $volid;
1709 } elsif ($type eq 'bind') {
1710 die "directory '$volid' does not exist\n" if ! -d $volid;
1711 bindmount($volid, $parentfd, $last_dir//$rootdir, $mount_path, $readonly, @extra_opts) if $mount_path;
1712 warn "cannot enable quota control for bind mounts\n" if $quota;
1713 return wantarray ? ($volid, 0, undef) : $volid;
1714 }
1715
1716 die "unsupported storage";
1717 }
1718
1719 sub mountpoint_hotplug($$$) {
1720 my ($vmid, $conf, $opt, $mp, $storage_cfg) = @_;
1721
1722 my (undef, $rootuid, $rootgid) = PVE::LXC::parse_id_maps($conf);
1723
1724 # We do the rest in a fork with an unshared mount namespace, because:
1725 # -) change our papparmor profile to that of /usr/bin/lxc-start
1726 # -) we're now going to 'stage' # the mountpoint, then grab it, then move into the
1727 # container's namespace, then mount it.
1728
1729 PVE::Tools::run_fork(sub {
1730 # Pin the container pid longer, we also need to get its monitor/parent:
1731 my ($ct_pid, $ct_pidfd) = open_lxc_pid($vmid)
1732 or die "failed to open pidfd of container $vmid\'s init process\n";
1733
1734 my ($monitor_pid, $monitor_pidfd) = open_ppid($ct_pid)
1735 or die "failed to open pidfd of container $vmid\'s monitor process\n";
1736
1737 my $ct_mnt_ns = $get_container_namespace->($vmid, $ct_pid, 'mnt');
1738 my $monitor_mnt_ns = $get_container_namespace->($vmid, $monitor_pid, 'mnt');
1739
1740 # Grab a file descriptor to our apparmor label file so we can change into the 'lxc-start'
1741 # profile to lower our privileges to the same level we have in the start hook:
1742 sysopen(my $aa_fd, "/proc/self/attr/current", O_WRONLY)
1743 or die "failed to open '/proc/self/attr/current' for writing: $!\n";
1744 # But switch namespaces first, to make sure the namespace switches aren't blocked by
1745 # apparmor.
1746
1747 # Change into the monitor's mount namespace. We "pin" the mount into the monitor's
1748 # namespace for it to remain active there since the container will be able to unmount
1749 # hotplugged mount points and thereby potentially free up loop devices, which is a security
1750 # concern.
1751 PVE::Tools::setns(fileno($monitor_mnt_ns), PVE::Tools::CLONE_NEWNS);
1752 chdir('/')
1753 or die "failed to change root directory within the monitor's mount namespace: $!\n";
1754
1755 my $dir = get_staging_mount_path($opt);
1756
1757 # Now switch our apparmor profile before mounting:
1758 my $data = 'changeprofile /usr/bin/lxc-start';
1759 if (syswrite($aa_fd, $data, length($data)) != length($data)) {
1760 die "failed to change apparmor profile: $!\n";
1761 }
1762 # Check errors on close as well:
1763 close($aa_fd)
1764 or die "failed to change apparmor profile (close() failed): $!\n";
1765
1766 my $mount_fd = mountpoint_stage($mp, $dir, $storage_cfg, undef, $rootuid, $rootgid);
1767
1768 PVE::Tools::setns(fileno($ct_mnt_ns), PVE::Tools::CLONE_NEWNS);
1769 chdir('/')
1770 or die "failed to change root directory within the container's mount namespace: $!\n";
1771
1772 mountpoint_insert_staged($mount_fd, undef, $mp->{mp}, $opt, $rootuid, $rootgid);
1773 });
1774 }
1775
1776 # Create a directory in the mountpoint staging tempfs.
1777 sub get_staging_mount_path($) {
1778 my ($opt) = @_;
1779
1780 my $target = get_staging_tempfs() . "/$opt";
1781 if (!mkdir($target) && $! != EEXIST) {
1782 die "failed to create directory $target: $!\n";
1783 }
1784
1785 return $target;
1786 }
1787
1788 # Mount /run/pve/mountpoints as tmpfs
1789 sub get_staging_tempfs() {
1790 # We choose a path in /var/lib/lxc/ here because the lxc-start apparmor profile restricts most
1791 # mounts to that.
1792 my $target = '/var/lib/lxc/.pve-staged-mounts';
1793 if (!mkdir($target)) {
1794 return $target if $! == EEXIST;
1795 die "failed to create directory $target: $!\n";
1796 }
1797
1798 PVE::Tools::mount("none", $target, 'tmpfs', 0, "size=8k,mode=755")
1799 or die "failed to mount $target as tmpfs: $!\n";
1800
1801 return $target;
1802 }
1803
1804 sub mkfs {
1805 my ($dev, $rootuid, $rootgid) = @_;
1806
1807 PVE::Tools::run_command(['mkfs.ext4', '-O', 'mmp',
1808 '-E', "root_owner=$rootuid:$rootgid",
1809 $dev]);
1810 }
1811
1812 sub format_disk {
1813 my ($storage_cfg, $volid, $rootuid, $rootgid) = @_;
1814
1815 if ($volid =~ m!^/dev/.+!) {
1816 mkfs($volid);
1817 return;
1818 }
1819
1820 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1821
1822 die "cannot format volume '$volid' with no storage\n" if !$storage;
1823
1824 PVE::Storage::activate_volumes($storage_cfg, [$volid]);
1825
1826 my $path = PVE::Storage::map_volume($storage_cfg, $volid);
1827
1828 $path = PVE::Storage::path($storage_cfg, $volid) if !defined($path);
1829
1830 my ($vtype, undef, undef, undef, undef, $isBase, $format) =
1831 PVE::Storage::parse_volname($storage_cfg, $volid);
1832
1833 die "cannot format volume '$volid' (format == $format)\n"
1834 if $format ne 'raw';
1835
1836 mkfs($path, $rootuid, $rootgid);
1837 }
1838
1839 sub destroy_disks {
1840 my ($storecfg, $vollist) = @_;
1841
1842 foreach my $volid (@$vollist) {
1843 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
1844 warn $@ if $@;
1845 }
1846 }
1847
1848 sub alloc_disk {
1849 my ($storecfg, $vmid, $storage, $size_kb, $rootuid, $rootgid) = @_;
1850
1851 my $needs_chown = 0;
1852 my $volid;
1853
1854 my $scfg = PVE::Storage::storage_config($storecfg, $storage);
1855 # fixme: use better naming ct-$vmid-disk-X.raw?
1856
1857 eval {
1858 my $do_format = 0;
1859 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs' || $scfg->{type} eq 'cifs' ) {
1860 if ($size_kb > 0) {
1861 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw',
1862 undef, $size_kb);
1863 $do_format = 1;
1864 } else {
1865 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'subvol',
1866 undef, 0);
1867 $needs_chown = 1;
1868 }
1869 } elsif ($scfg->{type} eq 'zfspool') {
1870
1871 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'subvol',
1872 undef, $size_kb);
1873 $needs_chown = 1;
1874 } elsif ($scfg->{type} eq 'drbd' || $scfg->{type} eq 'lvm' || $scfg->{type} eq 'lvmthin') {
1875
1876 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw', undef, $size_kb);
1877 $do_format = 1;
1878
1879 } elsif ($scfg->{type} eq 'rbd') {
1880
1881 $volid = PVE::Storage::vdisk_alloc($storecfg, $storage, $vmid, 'raw', undef, $size_kb);
1882 $do_format = 1;
1883 } else {
1884 die "unable to create containers on storage type '$scfg->{type}'\n";
1885 }
1886 format_disk($storecfg, $volid, $rootuid, $rootgid) if $do_format;
1887 };
1888 if (my $err = $@) {
1889 # in case formatting got interrupted:
1890 if (defined($volid)) {
1891 eval { PVE::Storage::vdisk_free($storecfg, $volid); };
1892 warn $@ if $@;
1893 }
1894 die $err;
1895 }
1896
1897 return ($volid, $needs_chown);
1898 }
1899
1900 our $NEW_DISK_RE = qr/^([^:\s]+):(\d+(\.\d+)?)$/;
1901 sub create_disks {
1902 my ($storecfg, $vmid, $settings, $conf, $pending) = @_;
1903
1904 my $vollist = [];
1905
1906 eval {
1907 my (undef, $rootuid, $rootgid) = PVE::LXC::parse_id_maps($conf);
1908 my $chown_vollist = [];
1909
1910 PVE::LXC::Config->foreach_mountpoint($settings, sub {
1911 my ($ms, $mountpoint) = @_;
1912
1913 my $volid = $mountpoint->{volume};
1914 my $mp = $mountpoint->{mp};
1915
1916 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1);
1917
1918 if ($storage && ($volid =~ $NEW_DISK_RE)) {
1919 my ($storeid, $size_gb) = ($1, $2);
1920
1921 my $size_kb = int(${size_gb}*1024) * 1024;
1922
1923 my $needs_chown = 0;
1924 ($volid, $needs_chown) = alloc_disk($storecfg, $vmid, $storage, $size_kb, $rootuid, $rootgid);
1925 push @$chown_vollist, $volid if $needs_chown;
1926 push @$vollist, $volid;
1927 $mountpoint->{volume} = $volid;
1928 $mountpoint->{size} = $size_kb * 1024;
1929 if ($pending) {
1930 $conf->{pending}->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
1931 } else {
1932 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
1933 }
1934 } else {
1935 # use specified/existing volid/dir/device
1936 $conf->{$ms} = PVE::LXC::Config->print_ct_mountpoint($mountpoint, $ms eq 'rootfs');
1937 }
1938 });
1939
1940 PVE::Storage::activate_volumes($storecfg, $chown_vollist, undef);
1941 foreach my $volid (@$chown_vollist) {
1942 my $path = PVE::Storage::path($storecfg, $volid, undef);
1943 chown($rootuid, $rootgid, $path);
1944 }
1945 PVE::Storage::deactivate_volumes($storecfg, $chown_vollist, undef);
1946 };
1947 # free allocated images on error
1948 if (my $err = $@) {
1949 destroy_disks($storecfg, $vollist);
1950 die $err;
1951 }
1952 return $vollist;
1953 }
1954
1955 sub update_disksize {
1956 my ($vmid, $conf, $all_volumes) = @_;
1957
1958 my $changes;
1959 my $prefix = "CT $vmid:";
1960
1961 my $update_mp = sub {
1962 my ($key, $mp, @param) = @_;
1963 my $size = $all_volumes->{$mp->{volume}}->{size} // 0;
1964
1965 if (!defined($mp->{size}) || $size != $mp->{size}) {
1966 $changes = 1;
1967 print "$prefix updated volume size of '$mp->{volume}' in config.\n";
1968 $mp->{size} = $size;
1969 my $nomp = 1 if ($key eq 'rootfs');
1970 $conf->{$key} = PVE::LXC::Config->print_ct_mountpoint($mp, $nomp);
1971 }
1972 };
1973
1974 PVE::LXC::Config->foreach_mountpoint($conf, $update_mp);
1975
1976 return $changes;
1977 }
1978
1979 sub update_unused {
1980 my ($vmid, $conf, $all_volumes) = @_;
1981
1982 my $changes;
1983 my $prefix = "CT $vmid:";
1984
1985 # Note: it is allowed to define multiple storage entries with the same path
1986 # (alias), so we need to check both 'volid' and real 'path' (two different
1987 # volid can point to the same path).
1988
1989 # used and unused disks
1990 my $refpath = {};
1991 my $orphans = {};
1992
1993 foreach my $opt (keys %$conf) {
1994 next if ($opt !~ m/^unused\d+$/);
1995 my $vol = $all_volumes->{$conf->{$opt}};
1996 $refpath->{$vol->{path}} = $vol->{volid};
1997 }
1998
1999 foreach my $key (keys %$all_volumes) {
2000 my $vol = $all_volumes->{$key};
2001 my $in_use = PVE::LXC::Config->is_volume_in_use($conf, $vol->{volid});
2002 my $path = $vol->{path};
2003
2004 if ($in_use) {
2005 $refpath->{$path} = $key;
2006 delete $orphans->{$path};
2007 } else {
2008 if ((!$orphans->{$path}) && (!$refpath->{$path})) {
2009 $orphans->{$path} = $key;
2010 }
2011 }
2012 }
2013
2014 for my $key (keys %$orphans) {
2015 my $disk = $orphans->{$key};
2016 my $unused = PVE::LXC::Config->add_unused_volume($conf, $disk);
2017
2018 if ($unused) {
2019 $changes = 1;
2020 print "$prefix add unreferenced volume '$disk' as '$unused' to config.\n";
2021 }
2022 }
2023
2024 return $changes;
2025 }
2026
2027 sub scan_volids {
2028 my ($cfg, $vmid) = @_;
2029
2030 my $info = PVE::Storage::vdisk_list($cfg, undef, $vmid);
2031
2032 my $all_volumes = {};
2033 foreach my $storeid (keys %$info) {
2034 foreach my $item (@{$info->{$storeid}}) {
2035 my $volid = $item->{volid};
2036 next if !($volid && $item->{size});
2037 $item->{path} = PVE::Storage::path($cfg, $volid);
2038 $all_volumes->{$volid} = $item;
2039 }
2040 }
2041
2042 return $all_volumes;
2043 }
2044
2045 sub rescan {
2046 my ($vmid, $nolock, $dryrun) = @_;
2047
2048 my $cfg = PVE::Storage::config();
2049
2050 # FIXME: Remove once our RBD plugin can handle CT and VM on a single storage
2051 # see: https://pve.proxmox.com/pipermail/pve-devel/2018-July/032900.html
2052 foreach my $stor (keys %{$cfg->{ids}}) {
2053 delete($cfg->{ids}->{$stor}) if !$cfg->{ids}->{$stor}->{content}->{rootdir};
2054 }
2055
2056 print "rescan volumes...\n";
2057 my $all_volumes = scan_volids($cfg, $vmid);
2058
2059 my $updatefn = sub {
2060 my ($vmid) = @_;
2061
2062 my $changes;
2063 my $conf = PVE::LXC::Config->load_config($vmid);
2064
2065 PVE::LXC::Config->check_lock($conf);
2066
2067 my $vm_volids = {};
2068 foreach my $volid (keys %$all_volumes) {
2069 my $info = $all_volumes->{$volid};
2070 $vm_volids->{$volid} = $info if $info->{vmid} == $vmid;
2071 }
2072
2073 my $upu = update_unused($vmid, $conf, $vm_volids);
2074 my $upd = update_disksize($vmid, $conf, $vm_volids);
2075 $changes = $upu || $upd;
2076
2077 PVE::LXC::Config->write_config($vmid, $conf) if $changes && !$dryrun;
2078 };
2079
2080 if (defined($vmid)) {
2081 if ($nolock) {
2082 &$updatefn($vmid);
2083 } else {
2084 PVE::LXC::Config->lock_config($vmid, $updatefn, $vmid);
2085 }
2086 } else {
2087 my $vmlist = config_list();
2088 foreach my $vmid (keys %$vmlist) {
2089 if ($nolock) {
2090 &$updatefn($vmid);
2091 } else {
2092 PVE::LXC::Config->lock_config($vmid, $updatefn, $vmid);
2093 }
2094 }
2095 }
2096 }
2097
2098
2099 # bash completion helper
2100
2101 sub complete_os_templates {
2102 my ($cmdname, $pname, $cvalue) = @_;
2103
2104 my $cfg = PVE::Storage::config();
2105
2106 my $storeid;
2107
2108 if ($cvalue =~ m/^([^:]+):/) {
2109 $storeid = $1;
2110 }
2111
2112 my $vtype = $cmdname eq 'restore' ? 'backup' : 'vztmpl';
2113 my $data = PVE::Storage::template_list($cfg, $storeid, $vtype);
2114
2115 my $res = [];
2116 foreach my $id (keys %$data) {
2117 foreach my $item (@{$data->{$id}}) {
2118 push @$res, $item->{volid} if defined($item->{volid});
2119 }
2120 }
2121
2122 return $res;
2123 }
2124
2125 my $complete_ctid_full = sub {
2126 my ($running) = @_;
2127
2128 my $idlist = vmstatus();
2129
2130 my $active_hash = list_active_containers();
2131
2132 my $res = [];
2133
2134 foreach my $id (keys %$idlist) {
2135 my $d = $idlist->{$id};
2136 if (defined($running)) {
2137 next if $d->{template};
2138 next if $running && !$active_hash->{$id};
2139 next if !$running && $active_hash->{$id};
2140 }
2141 push @$res, $id;
2142
2143 }
2144 return $res;
2145 };
2146
2147 sub complete_ctid {
2148 return &$complete_ctid_full();
2149 }
2150
2151 sub complete_ctid_stopped {
2152 return &$complete_ctid_full(0);
2153 }
2154
2155 sub complete_ctid_running {
2156 return &$complete_ctid_full(1);
2157 }
2158
2159 sub parse_id_maps {
2160 my ($conf) = @_;
2161
2162 my $id_map = [];
2163 my $rootuid = 0;
2164 my $rootgid = 0;
2165
2166 my $lxc = $conf->{lxc};
2167 foreach my $entry (@$lxc) {
2168 my ($key, $value) = @$entry;
2169 # FIXME: remove the 'id_map' variant when lxc-3.0 arrives
2170 next if $key ne 'lxc.idmap' && $key ne 'lxc.id_map';
2171 if ($value =~ /^([ug])\s+(\d+)\s+(\d+)\s+(\d+)\s*$/) {
2172 my ($type, $ct, $host, $length) = ($1, $2, $3, $4);
2173 push @$id_map, [$type, $ct, $host, $length];
2174 if ($ct == 0) {
2175 $rootuid = $host if $type eq 'u';
2176 $rootgid = $host if $type eq 'g';
2177 }
2178 } else {
2179 die "failed to parse idmap: $value\n";
2180 }
2181 }
2182
2183 if (!@$id_map && $conf->{unprivileged}) {
2184 # Should we read them from /etc/subuid?
2185 $id_map = [ ['u', '0', '100000', '65536'],
2186 ['g', '0', '100000', '65536'] ];
2187 $rootuid = $rootgid = 100000;
2188 }
2189
2190 return ($id_map, $rootuid, $rootgid);
2191 }
2192
2193 sub userns_command {
2194 my ($id_map) = @_;
2195 if (@$id_map) {
2196 return ['lxc-usernsexec', (map { ('-m', join(':', @$_)) } @$id_map), '--'];
2197 }
2198 return [];
2199 }
2200
2201 sub vm_start {
2202 my ($vmid, $conf, $skiplock) = @_;
2203
2204 # apply pending changes while starting
2205 if (scalar(keys %{$conf->{pending}})) {
2206 my $storecfg = PVE::Storage::config();
2207 PVE::LXC::Config->vmconfig_apply_pending($vmid, $conf, $storecfg);
2208 $conf = PVE::LXC::Config->load_config($vmid); # update/reload
2209 }
2210
2211 update_lxc_config($vmid, $conf);
2212
2213 my $skiplock_flag_fn = "/run/lxc/skiplock-$vmid";
2214
2215 if ($skiplock) {
2216 open(my $fh, '>', $skiplock_flag_fn) || die "failed to open $skiplock_flag_fn for writing: $!\n";
2217 close($fh);
2218 }
2219
2220 my $cmd = ['systemctl', 'start', "pve-container\@$vmid"];
2221
2222 PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'pre-start', 1);
2223 eval { PVE::Tools::run_command($cmd); };
2224 if (my $err = $@) {
2225 unlink $skiplock_flag_fn;
2226 die $err;
2227 }
2228 PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'post-start');
2229
2230 return;
2231 }
2232
2233 # Helper to stop a container completely and make sure it has stopped completely.
2234 # This is necessary because we want the post-stop hook to have completed its
2235 # unmount-all step, but post-stop happens after lxc puts the container into the
2236 # STOPPED state.
2237 # $kill - if true it will always do an immediate hard-stop
2238 # $shutdown_timeout - the timeout to wait for a gracefull shutdown
2239 # $kill_after_timeout - if true, send a hardstop if shutdown timed out
2240 sub vm_stop {
2241 my ($vmid, $kill, $shutdown_timeout, $kill_after_timeout) = @_;
2242
2243 # Open the container's command socket.
2244 my $path = "\0/var/lib/lxc/$vmid/command";
2245 my $sock = IO::Socket::UNIX->new(
2246 Type => SOCK_STREAM(),
2247 Peer => $path,
2248 );
2249 if (!$sock) {
2250 return if $! == ECONNREFUSED; # The container is not running
2251 die "failed to open container ${vmid}'s command socket: $!\n";
2252 }
2253
2254 my $conf = PVE::LXC::Config->load_config($vmid);
2255 PVE::GuestHelpers::exec_hookscript($conf, $vmid, 'pre-stop');
2256
2257 # Stop the container:
2258
2259 my $cmd = ['lxc-stop', '-n', $vmid];
2260
2261 if ($kill) {
2262 push @$cmd, '--kill'; # doesn't allow timeouts
2263 } else {
2264 # lxc-stop uses a default timeout
2265 push @$cmd, '--nokill' if !$kill_after_timeout;
2266
2267 if (defined($shutdown_timeout)) {
2268 push @$cmd, '--timeout', $shutdown_timeout;
2269 # Give run_command 5 extra seconds
2270 $shutdown_timeout += 5;
2271 }
2272 }
2273
2274 eval { PVE::Tools::run_command($cmd, timeout => $shutdown_timeout) };
2275 if (my $err = $@) {
2276 warn $@ if $@;
2277 }
2278
2279 my $result = <$sock>;
2280
2281 return if !defined $result; # monitor is gone and the ct has stopped.
2282 die "container did not stop\n";
2283 }
2284
2285 sub vm_reboot {
2286 my ($vmid, $timeout, $skiplock) = @_;
2287
2288 PVE::LXC::Config->lock_config($vmid, sub {
2289 return if !check_running($vmid);
2290
2291 vm_stop($vmid, 0, $timeout, 1); # kill if timeout exceeds
2292
2293 my $conf = PVE::LXC::Config->load_config($vmid);
2294 vm_start($vmid, $conf);
2295 });
2296 }
2297
2298 sub run_unshared {
2299 my ($code) = @_;
2300
2301 return PVE::Tools::run_fork(sub {
2302 # Unshare the mount namespace
2303 die "failed to unshare mount namespace: $!\n"
2304 if !PVE::Tools::unshare(PVE::Tools::CLONE_NEWNS);
2305 PVE::Tools::run_command(['mount', '--make-rslave', '/']);
2306 return $code->();
2307 });
2308 }
2309
2310 my $copy_volume = sub {
2311 my ($src_volid, $src, $dst_volid, $dest, $storage_cfg, $snapname, $bwlimit, $rootuid, $rootgid) = @_;
2312
2313 my $src_mp = { volume => $src_volid, mp => '/', ro => 1 };
2314 $src_mp->{type} = PVE::LXC::Config->classify_mountpoint($src_volid);
2315
2316 my $dst_mp = { volume => $dst_volid, mp => '/', ro => 0 };
2317 $dst_mp->{type} = PVE::LXC::Config->classify_mountpoint($dst_volid);
2318
2319 my @mounted;
2320 eval {
2321 # mount and copy
2322 mkdir $src;
2323 mountpoint_mount($src_mp, $src, $storage_cfg, $snapname, $rootuid, $rootgid);
2324 push @mounted, $src;
2325 mkdir $dest;
2326 mountpoint_mount($dst_mp, $dest, $storage_cfg, undef, $rootuid, $rootgid);
2327 push @mounted, $dest;
2328
2329 $bwlimit //= 0;
2330
2331 PVE::Tools::run_command(['/usr/bin/rsync', '--stats', '-X', '-A', '--numeric-ids',
2332 '-aH', '--whole-file', '--sparse', '--one-file-system',
2333 "--bwlimit=$bwlimit", "$src/", $dest]);
2334 };
2335 my $err = $@;
2336
2337 # Wait for rsync's children to release dest so that
2338 # consequent file operations (umount, remove) are possible
2339 while ((system {"fuser"} "fuser", "-s", $dest) == 0) {sleep 1};
2340
2341 foreach my $mount (reverse @mounted) {
2342 eval { PVE::Tools::run_command(['/bin/umount', $mount], errfunc => sub{})};
2343 warn "Can't umount $mount\n" if $@;
2344 }
2345
2346 # If this fails they're used as mount points in a concurrent operation
2347 # (which should not happen but there's also no real need to get rid of them).
2348 rmdir $dest;
2349 rmdir $src;
2350
2351 die $err if $err;
2352 };
2353
2354 # Should not be called after unsharing the mount namespace!
2355 sub copy_volume {
2356 my ($mp, $vmid, $storage, $storage_cfg, $conf, $snapname, $bwlimit) = @_;
2357
2358 die "cannot copy volumes of type $mp->{type}\n" if $mp->{type} ne 'volume';
2359 File::Path::make_path("/var/lib/lxc/$vmid");
2360 my $dest = "/var/lib/lxc/$vmid/.copy-volume-1";
2361 my $src = "/var/lib/lxc/$vmid/.copy-volume-2";
2362
2363 # get id's for unprivileged container
2364 my (undef, $rootuid, $rootgid) = parse_id_maps($conf);
2365
2366 # Allocate the disk before unsharing in order to make sure zfs subvolumes
2367 # are visible in this namespace, otherwise the host only sees the empty
2368 # (not-mounted) directory.
2369 my $new_volid;
2370 eval {
2371 # Make sure $mp contains a correct size.
2372 $mp->{size} = PVE::Storage::volume_size_info($storage_cfg, $mp->{volume});
2373 my $needs_chown;
2374 ($new_volid, $needs_chown) = alloc_disk($storage_cfg, $vmid, $storage, $mp->{size}/1024, $rootuid, $rootgid);
2375 if ($needs_chown) {
2376 PVE::Storage::activate_volumes($storage_cfg, [$new_volid], undef);
2377 my $path = PVE::Storage::path($storage_cfg, $new_volid, undef);
2378 chown($rootuid, $rootgid, $path);
2379 }
2380
2381 run_unshared(sub {
2382 $copy_volume->($mp->{volume}, $src, $new_volid, $dest, $storage_cfg, $snapname, $bwlimit, $rootuid, $rootgid);
2383 });
2384 };
2385 if (my $err = $@) {
2386 PVE::Storage::vdisk_free($storage_cfg, $new_volid)
2387 if defined($new_volid);
2388 die $err;
2389 }
2390
2391 return $new_volid;
2392 }
2393
2394 1;