public inbox for pbs-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [pbs-devel] [PATCH proxmox-backup] fix #3393: tools/xattr: allow xattr 'security.NTACL'
@ 2021-04-20  9:19 Dominik Csapak
  2021-04-21 12:53 ` [pbs-devel] applied: " Wolfgang Bumiller
  0 siblings, 1 reply; 2+ messages in thread
From: Dominik Csapak @ 2021-04-20  9:19 UTC (permalink / raw)
  To: pbs-devel

in some configurations, samba stores NTFS-ACLs in this xattr[0], so
we should backup (if we can)

altough the 'security' namespace is special (e.g. in use by
selinux, etc.) this value is normally only used by samba and we
should be able to back it up.

to restore it, the user needs at least 'CAP_SYS_ADMIN' rights, otherwise
it cannot be set

0: https://www.samba.org/samba/docs/current/man-html/vfs_acl_xattr.8.html

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
tested here by setting it manually with setfattr and restored
successfully as root (as user i got a permission denied warning)

 src/tools/xattr.rs | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/tools/xattr.rs b/src/tools/xattr.rs
index 6b712d14..500af326 100644
--- a/src/tools/xattr.rs
+++ b/src/tools/xattr.rs
@@ -170,6 +170,10 @@ pub fn is_valid_xattr_name(c_name: &CStr) -> bool {
     if name.starts_with(b"user.") || name.starts_with(b"trusted.") {
         return true;
     }
+    // samba saves windows ACLs there
+    if name == b"security.NTACL" {
+        return true;
+    }
     is_security_capability(c_name)
 }
 
-- 
2.20.1





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-04-21 12:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-20  9:19 [pbs-devel] [PATCH proxmox-backup] fix #3393: tools/xattr: allow xattr 'security.NTACL' Dominik Csapak
2021-04-21 12:53 ` [pbs-devel] applied: " Wolfgang Bumiller

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