Some systems, such as Solaris, represent extended attributes as
a set of files in a directory associated with a file object. This
allows extended attributes to be acquired/modified via regular
file system operations, such as read(2), write(2), lseek(2) and ftruncate(2).
Since ZFS already has the capability to do this, this patch allows system
calls (and the NFSv4 client/server) such access to extended attributes.
This permits handling of large extended attributes and allows the NFSv4
server to provide the service to NFSv4 clients that want it, such as Windows,
MacOS and Solaris.
The top level syscall change is a new open(2)/openat(2) flag I called O_NAMEDATTR
that allows the named attribute directory or any attribute within that directory to
be open'd.
The patch defines two new v_irflag flags called VIRF_NAMEDDIR and VIRF_NAMEDATTR
to indicate that the vnode is for this alternate name space and not a normal file object.
The patch also defines flags (OPENNAMED and CREATENAMED) for VOP_LOOKUP()
to pass this new case down into VOP_LOOKUP().
Most of the code in this patch is to avoid creation of links, symlinks or non-regular
file objects in the named attribute directory.
It also must avoid using the name cache, since the named attribute directory is
associated with the same name as the file object. (I am not so sure w.r.t. the
attribute names in the named attribute directory, but felt it was easier and safe
to avoid name caching there, as well.)
If you'd like to see it, I can put the ZFS patch in phabricator, as well?
This has been discussed recently on freebsd-current@ under
RFC: Solaris style extended attributes for FreeBSD
and on freebsd-hackers@ under
FreeBSD NFSv4.1 nfsd, named attribute support (OPENATTR)?