|
NAMEextattr_namespace_to_string ,
extattr_string_to_namespace —
convert an extended attribute namespace identifier to a string
and vice versa
LIBRARYSystem Utilities Library (libutil, -lutil)SYNOPSIS#include <sys/extattr.h>
#include <libutil.h>
int
int
DESCRIPTIONTheextattr_namespace_to_string () function converts a
VFS extended attribute identifier to a human-readable string; the
extattr_string_to_namespace () function undoes the
aforementioned operation, and converts a human-readable string representing a
namespace to a namespace identifier. Although a file system may implement
arbitrary namespaces, these functions only support the
EXTATTR_NAMESPACE_USER (“user”) and
EXTATTR_NAMESPACE_SYSTEM (“system”)
namespaces, which are defined in
extattr(9).
These functions are meant to be used in error reporting and other
interactive tasks. For example, instead of printing the integer identifying
an extended attribute in an error message, a program might use
RETURN VALUESIf any of the calls are unsuccessful, the value -1 is returned and the global variable errno is set to indicate the error.ERRORS
SEE ALSOextattr(2), getextattr(8), setextattr(8), extattr(9)HISTORYExtended attribute support was developed as part of the TrustedBSD Project, and introduced in FreeBSD 5.0. It was developed to support security extensions requiring additional labels to be associated with each file or directory.
Visit the GSP FreeBSD Man Page Interface. |