]> git.saurik.com Git - apple/xnu.git/blame - bsd/man/man2/getxattr.2
xnu-1228.15.4.tar.gz
[apple/xnu.git] / bsd / man / man2 / getxattr.2
CommitLineData
91447636
A
1.\"
2.\" Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
3.\"
6601e61a 4.\" @APPLE_LICENSE_HEADER_START@
91447636 5.\"
8f6c56a5
A
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
91447636
A
11.\" file.
12.\"
8f6c56a5
A
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
91447636
A
19.\" limitations under the License.
20.\"
6601e61a 21.\" @APPLE_LICENSE_HEADER_END@
91447636
A
22.\"
23.Dd Oct 19, 2004
24.Dt GETXATTR 2
25.Os "Mac OS X"
26.Sh NAME
27.Nm getxattr,
28.Nm fgetxattr
29.Nd get an extended attribute value
30.Sh SYNOPSIS
31.Fd #include <sys/xattr.h>
32.Ft ssize_t
33.Fn getxattr "const char *path" "const char *name" "void *value" "size_t size" "u_int32_t position" "int options"
34.Ft ssize_t
35.Fn fgetxattr "int fd" "const char *name" "void *value" "size_t size" "u_int32_t position" "int options"
36.Sh DESCRIPTION
37Extended attributes extend the basic attributes of files and
38directories in the file system. They are stored as name:data pairs
39associated with file system objects (files, directories, symlinks, etc).
40.Pp
41The
42.Fn getxattr
43function retrieves up to
44.Fa size
45bytes of data from the extended attribute identified by
46.Fa name
47associated with
48.Fa path
49into the pre-allocated buffer pointed to by
50.Fa value .
51The function returns the number of bytes of data retrieved.
52.Pp
53An extended attribute's
54.Fa name
55is a simple NULL-terminated UTF-8 string.
56.Fa position
57specifies an offset within the extended attribute. In the current
58implementation, this argument is only used with the resource fork attribute.
59For all other extended attributes, this parameter is reserved and should
60be zero.
61.Pp
62On success,
63.Fa value
64contains the data associated with
65.Fa name .
66When
67.Fa value
68is set to NULL,
69.Fn getxattr
70returns current size of the named attribute. This facility can be used
71to determine the size of a buffer sufficiently large to hold the data
72currently associated with the attribute.
73.Pp
74.Fa options
75specify options for retrieving extended attributes:
76.Pp
77.Bl -tag -width XATTR_NOFOLLOW
78.It Dv XATTR_NOFOLLOW
79do not follow symbolic links.
80.Fn getxattr
81normally returns information from the target of
82.Fa path
83if it is a symbolic link. With this option,
84.Fn getxattr
85will return extended attribute data from the symbolic link instead.
86.El
87.Pp
88.Fn fgetxattr
89is identical to
90.Fn getxattr ,
91except that it retrieves extended attribute data from the open file
92referenced by the file descriptor
93.Fa fd .
94.Sh RETURN VALUES
95On success, the size of the extended attribute data is returned. On
96failure, -1 is returned and the global variable
97.Va errno
98is set as follows.
99.Sh ERRORS
100.Bl -tag -width Er
101.It Bq Er ENOATTR
102The extended attribute does not exist.
103.It Bq Er ENOTSUP
104The file system does not support extended attributes or has the feature
105disabled.
106.It Bq Er ERANGE
107.Fa value
108(as indicated by
109.Fa size )
110is too small to hold the extended attribute data.
111.It Bq Er EPERM
112The named attribute is not permitted for this type of object.
113.It Bq Er EINVAL
114.Fa name
115is invalid or
116.Fa options
117has an unsupported bit set.
118.It Bq Er EISDIR
119.Fa path
120or
121.Fa fd
122do not refer to a regular file and the attribute in question is only
123applicable to files. Similar to EPERM.
124.It Bq Er ENOTDIR
125A component of
126.Fa path 's
127prefix is not a directory.
128.It Bq Er ENAMETOOLONG
129The length of
130.Fa name
131exceeds
132.Dv XATTR_MAXNAMELEN
133UTF-8 bytes, or a component of
134.Fa path
135exceeds
136.Dv NAME_MAX
137characters, or the entire
138.Fa path
139exceeds
140.Dv PATH_MAX
141characters.
142.It Bq Er EACCES
143Search permission is denied for a component of
144.Fa path
145or the attribute is not allowed to be read (e.g. an ACL prohibits reading
146the attributes of this file).
147.It Bq Er ELOOP
148Too many symbolic links were encountered in translating the pathname.
149.It Bq Er EFAULT
150.Fa path
151or
152.Fa name
153points to an invalid address.
154.It Bq Er EIO
155An I/O error occurred while reading from or writing to the file system.
156.El
157.Sh SEE ALSO
2d21ac55 158.Xr listxattr 2 ,
91447636 159.Xr removexattr 2 ,
2d21ac55 160.Xr setxattr 2
91447636
A
161.Sh HISTORY
162.Fn getxattr
163and
164.Fn fgetxattr
165first appeared in Mac OS X 10.4.