public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Fiona Ebner <f.ebner@proxmox.com>
To: Proxmox VE development discussion <pve-devel@lists.proxmox.com>,
	Filip Schauer <f.schauer@proxmox.com>
Subject: Re: [pve-devel] [PATCH container] fix #5160: fix move_mount regression for mount point hotplug
Date: Mon, 25 Mar 2024 11:29:36 +0100	[thread overview]
Message-ID: <bdbbcc46-6fb1-48fc-94fd-7b2359684ce9@proxmox.com> (raw)
In-Reply-To: <20240108135456.74684-1-f.schauer@proxmox.com>

Am 08.01.24 um 14:54 schrieb Filip Schauer:
> Set up an Apparmor profile to allow moving mounts for mount point
> hotplug.
> 
> This fixes a regression caused by
> kernel commit 157a3537d6 ("apparmor: Fix regression in mount mediation")
> 
> The commit introduced move_mount mediation, which now requires
> move_mount to be allowed in the Apparmor profile. Although it is allowed
> for most paths in the /usr/bin/lxc-start profile, move_mount is called
> with a file descriptor instead of a path in mountpoint_insert_staged,
> thus it is not affected by the allow rules in
> /etc/apparmor.d/abstractions/lxc/container-base.
> 

Would it be difficult/impossible for us to do it path-based instead?

> To fix this, introduce a new Apparmor profile to allow move_mount on
> every mount, specifically for mount point hotplug.
> 
> Signed-off-by: Filip Schauer <f.schauer@proxmox.com>

Tested-by: Fiona Ebner <f.ebner@proxmox.com>

Fixes the issue and makes hotplug work again :)

However, I did run into one minor thing (number 1 below), but not sure
if it can be improved. Except the part about the undef warning which is
pre-existing. Another pre-existing issue I ran into is number 2 below,
should also be investigated, but is not caused by this patch.

1.

For an already running container, I got

> mp0: unable to hotplug mp0: failed to change apparmor profile:

after installing the patched pve-container package and attempting to
hotplug. Maybe that's expected and no big deal, because hotplug already
didn't work.

Checking in the journal, it's:

> AVC apparmor="DENIED" operation="change_profile" class="file" info="label not found" error=-2 profile="unconfined" name="pve-container-mounthotplug" pid=99919 comm=7076656461656D6F6E20776F726B65
> Use of uninitialized value in numeric ne (!=) at /usr/share/perl5/PVE/LXC.pm line 1978.

The latter warning seems to be pre-existing for the syswrite comparison
below:

> @@ -1974,7 +1974,7 @@ sub mountpoint_hotplug :prototype($$$$$) {
>  	my $dir = get_staging_mount_path($opt);
>  
>  	# Now switch our apparmor profile before mounting:
> -	my $data = 'changeprofile /usr/bin/lxc-start';
> +	my $data = 'changeprofile pve-container-mounthotplug';
>  	if (syswrite($aa_fd, $data, length($data)) != length($data)) {
>  	    die "failed to change apparmor profile: $!\n";
>  	}


But then $! should be set according to 'perldoc -f syswrite' which it
wasn't telling from my quoted error message above  ¯\_(ツ)_/¯

> Returns the number of bytes actually
>             written, or "undef" if there was an error (in this case the
>             errno variable $! is also set)

2.

After shutdown+start, the hotplug worked as expected. Played around a
bit more and something strange happened with LVM as the storage: While
it worked the first time, when I shut down the container, detached the
mount point, started again and then tried to hot-plug, I got:
mp1: unable to hotplug mp1: command 'mount /dev/lvm/vm-129-disk-1
/var/lib/lxc/.pve-staged-mounts/mp1' failed: exit code 32

Doesn't seem to happen with ZFS or directory storage and starting with
the mount point pre-attached also worked fine with previously written
files still there.

Also booted into 6.2.16-20-pve, installed unpatched pve-container and it
seems the issue was already present then.




  reply	other threads:[~2024-03-25 10:29 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-08 13:54 Filip Schauer
2024-03-25 10:29 ` Fiona Ebner [this message]
2024-03-25 10:49   ` Fiona Ebner
2024-03-25 17:30   ` Filip Schauer
2024-03-25 17:31 ` Filip Schauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bdbbcc46-6fb1-48fc-94fd-7b2359684ce9@proxmox.com \
    --to=f.ebner@proxmox.com \
    --cc=f.schauer@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal