From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 2E29C1FF178 for ; Mon, 15 Dec 2025 18:43:12 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 004D0134E1; Mon, 15 Dec 2025 18:43:58 +0100 (CET) From: Filip Schauer To: pve-devel@lists.proxmox.com Date: Mon, 15 Dec 2025 18:41:59 +0100 Message-ID: <20251215174203.267293-3-f.schauer@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20251215174203.267293-1-f.schauer@proxmox.com> References: <20251215174203.267293-1-f.schauer@proxmox.com> MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1765820596321 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.005 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH container 2/2] oci create: honor `User` from OCI image config X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" Honor a custom user and group specified for the entrypoint via the OCI image config `User` field instead of ignoring it. User and group name lookups, including supplementary groups, are resolved from /etc/passwd and /etc/group in the container file system. This behaviour matches the OCI image spec. [0] [0] https://specs.opencontainers.org/image-spec/config/?v=v1.1.1#properties Signed-off-by: Filip Schauer --- This requires the following patch for LXC in order to work properly: https://github.com/lxc/lxc/pull/4626 src/PVE/LXC/Create.pm | 59 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/src/PVE/LXC/Create.pm b/src/PVE/LXC/Create.pm index 9956cf9..08e0386 100644 --- a/src/PVE/LXC/Create.pm +++ b/src/PVE/LXC/Create.pm @@ -768,6 +768,65 @@ sub restore_oci_archive { } } + if (my $usercfg = $oci_config_get_checked_scalar->('User')) { + my ($user, $group) = $usercfg =~ /^([^:]+)(?::([^:]+))?$/ + or die "OCI config value for 'User' has an invalid format\n"; + + my $etc_passwd = "$rootdir/etc/passwd"; + my $etc_group = "$rootdir/etc/group"; + + # Scan file, match column $match_index against $match_val, return value at $ret_index + my $lookup_field = sub { + my ($file, $match_index, $match_val, $ret_index) = @_; + + open(my $fh, '<', $file) or return undef; + while (my $line = <$fh>) { + my @fields = split(/:/, $line); + if (defined($fields[$match_index]) && $fields[$match_index] eq $match_val) { + return $fields[$ret_index]; + } + } + return undef; + }; + + my $get_supplementary_groups = sub { + my ($username) = @_; + + my @groups; + open(my $fh, '<', $etc_group) or return undef; + while (defined(my $line = <$fh>)) { + push @groups, $1 + if ($line =~ m/^[^:]*:[^:]*:([^:]*):(?:[^,]*,)*$username(?:,|$)/); + } + return join(',', @groups); + }; + + my ($uid, $username, $gid, $groups); + + if ($user =~ /^\d+$/) { + $uid = $user; + $username = $lookup_field->($etc_passwd, 2, $uid, 0); + } else { + $username = $user; + $uid = $lookup_field->($etc_passwd, 0, $username, 2); + } + + if (defined($group)) { + if ($group =~ /^\d+$/) { + $gid = $group; + } else { + $gid = $lookup_field->($etc_group, 0, $group, 2); + } + } else { + $gid = $lookup_field->($etc_passwd, 2, $uid, 3) if defined($uid); + $groups = $get_supplementary_groups->($username) if defined($username); + } + + push $conf->{lxc}->@*, ['lxc.init.uid', $uid] if defined($uid); + push $conf->{lxc}->@*, ['lxc.init.gid', $gid] if defined($gid); + push $conf->{lxc}->@*, ['lxc.init.groups', $groups] if defined($groups); + } + if (my $working_dir = $oci_config_get_checked_scalar->('WorkingDir')) { push $conf->{lxc}->@*, ['lxc.init.cwd', $working_dir]; } -- 2.47.3 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel