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 9F8B21FF2AA for ; Tue, 2 Jul 2024 10:53:12 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 035351900A; Tue, 2 Jul 2024 10:53:27 +0200 (CEST) Date: Tue, 02 Jul 2024 10:52:51 +0200 From: Fabian =?iso-8859-1?q?Gr=FCnbichler?= To: Proxmox Backup Server development discussion References: <20240430153714.390159-1-c.ebner@proxmox.com> In-Reply-To: <20240430153714.390159-1-c.ebner@proxmox.com> MIME-Version: 1.0 User-Agent: astroid/0.16.0 (https://github.com/astroidmail/astroid) Message-Id: <1719910359.nccra4umer.astroid@yuna.none> X-SPAM-LEVEL: Spam detection results: 0 AWL 0.051 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: [pbs-devel] applied: [PATCH proxmox-backup] fix 5304: client: set process uid/gid for .pxarexclude-cli X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox Backup Server development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pbs-devel-bounces@lists.proxmox.com Sender: "pbs-devel" On April 30, 2024 5:37 pm, Christian Ebner wrote: > The .pxarexclude-cli encodes the exclude patterns the client was > invoked with in the pxar archive as regular file entry. The current > behaviour of setting the uid and gid to default 0 (root) causes > however issues when trying to backup and restore the backup as > non-root user. > > Opt for using the uid/gid of the user the executable was called as, > allowing the restore for this user to succeed. Root will succeed > to restore anyways. > > Link to issue in bugtracker: > https://bugzilla.proxmox.com/show_bug.cgi?id=5304 > > Signed-off-by: Christian Ebner > --- > pbs-client/src/pxar/create.rs | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/pbs-client/src/pxar/create.rs b/pbs-client/src/pxar/create.rs > index 60efb0ce5..a5afde7af 100644 > --- a/pbs-client/src/pxar/create.rs > +++ b/pbs-client/src/pxar/create.rs > @@ -404,6 +404,10 @@ impl Archiver { > > let mut metadata = Metadata::default(); > metadata.stat.mode = pxar::format::mode::IFREG | 0o600; > + // use uid/gid of client process so the backup snapshot might be restored by the same > + // potentially non-root user > + metadata.stat.uid = unsafe { libc::getuid() }; > + metadata.stat.gid = unsafe { libc::getgid() }; > > let mut file = encoder > .create_file(&metadata, ".pxarexclude-cli", content.len() as u64) > -- > 2.39.2 > > > > _______________________________________________ > pbs-devel mailing list > pbs-devel@lists.proxmox.com > https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel > > > _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel