]> git.proxmox.com Git - mirror_zfs.git/commit
Allow xattrs on symlinks
authorBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 29 Nov 2011 17:05:04 +0000 (09:05 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 29 Nov 2011 18:24:24 +0000 (10:24 -0800)
commitf31b3ebe6e6c9de4db30bf752c09a8300b305258
treed89517fed16d4ec1261d7f2eec1550b99ed551b8
parent82a37189aac955c81a59a5ecc3400475adb56355
Allow xattrs on symlinks

The Solaris version of ZFS does not allow xattrs to be set on
symlinks due to the way they implemented the attropen() system
call.  Linux however implements xattrs through the lgetxattr()
and lsetxattr() system calls which do not have this limitation.

The only reason this hasn't always worked under ZFS on Linux
is that the xattr handlers were not registered for symlink type
inodes.  This was done simply to be consistent with the Solaris
behavior.

Upon futher reflection I believe this should be allowed under
Linux.  The only ill effect would be that the xattrs on symlinks
will not be visible when the pool is imported on a Solaris
system.  This also has the benefit that it allows for SELinux
style security xattr labeling which expects to be able to set
xattrs on all inode types.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #272
module/zfs/zpl_inode.c