2 .\" Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
4 .\" @APPLE_LICENSE_HEADER_START@
6 .\" This file contains Original Code and/or Modifications of Original Code
7 .\" as defined in and that are subject to the Apple Public Source License
8 .\" Version 2.0 (the 'License'). You may not use this file except in
9 .\" compliance with the License. Please obtain a copy of the License at
10 .\" http://www.opensource.apple.com/apsl/ and read it before using this
13 .\" The Original Code and all software distributed under the License are
14 .\" distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 .\" EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 .\" INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 .\" FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 .\" Please see the License for the specific language governing rights and
19 .\" limitations under the License.
21 .\" @APPLE_LICENSE_HEADER_END@
29 .Nd list extended attribute names
31 .Fd #include <sys/xattr.h>
33 .Fn listxattr "const char *path" "char *namebuf" "size_t size" "int options"
35 .Fn flistxattr "int fd" "char *namebuf" "size_t size" "int options"
37 Extended attributes extend the basic attributes associated with files and
38 directories in the file system. They are stored as name:data pairs associated
39 with file system objects (files, directories, symlinks, etc).
42 retrieves a list of names of extended attributes associated with the given
49 bytes for the names of the extended attributes associated with
51 The extended attribute names are simple NULL-terminated UTF-8 strings and
52 are returned in arbitrary order. No extra padding is provided between
53 names in the buffer. The list will only include names of extended
54 attributes to which the calling process has access. The function returns
55 the size of the list of names.
58 controls how the attribute list is generated:
60 .Bl -tag -width XATTR_NOFOLLOW
62 do not follow symbolic links.
64 normally lists attributes of the target of
66 if it is a symbolic link. With this option,
68 will list attributes of the link itself.
69 .It Dv XATTR_SHOWCOMPRESSION
73 will list HFS Plus Compression extended attribute(s) (if present) for the file referred to by
82 the function returns the size of the list of extended attribute names.
83 This facility can be used to determine the size of a buffer sufficiently
84 large to hold the names of the attributes currently associated with
90 except that it returns the list of extended attribute names associated
91 with the open file referenced by file descriptor
94 On success, the size of the extended attribute name list is returned. If
95 no accessible extended attributes are associated with the given
99 the function returns zero. On failure, -1 is returned and the global
106 The file system does not support extended attributes or has the feature
112 is too small to hold the list of names.
117 refer to a file system object that does not support extended attributes.
118 For example, resource forks don't support extended attributes.
119 .\" If only EFTYPE was a POSIX error
123 prefix is not a directory.
124 .It Bq Er ENAMETOOLONG
128 UTF-8 bytes, or a component of
132 characters, or the entire
138 Search permission is denied for a component of
140 or permission is denied to read the list of attributes from this file.
142 Too many symbolic links were encountered resolving
146 points to an invalid address.
148 An I/O error occurred.
161 first appeared in Mac OS X 10.4.