1 .\" Copyright (c) 1980, 1991, 1993, 1994
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)chown.2 8.4 (Berkeley) 4/19/94
42 .Nd change owner and group of a file
47 .Fa "const char *path"
59 .Fa "const char *path"
64 .Fn fchownat "int fd" "const char *path" "uid_t owner" "gid_t group" "int flag"
66 The owner ID and group ID of the file
71 is changed as specified by the arguments
75 The owner of a file may change the
78 he or she is a member,
81 capability is restricted to the super-user.
86 clears the set-user-id and set-group-id bits
88 to prevent accidental or mischievous creation of
89 set-user-id and set-group-id programs if not executed
94 follows symbolic links to operate on the target of the link
95 rather than the link itself.
100 is particularly useful when used in conjunction
101 with the file locking primitives (see
106 system call is similar to
108 but does not follow symbolic links.
112 system call is equivalent to the
116 except in the case where
118 specifies a relative path.
119 In this case the file to be changed is determined relative to the directory
120 associated with the file descriptor
122 instead of the current working directory.
126 are constructed by a bitwise-inclusive OR of flags from the following
129 .Bl -tag -width indent
130 .It Dv AT_SYMLINK_NOFOLLOW
133 names a symbolic link, ownership of the symbolic link is changed.
138 is passed the special value
142 parameter, the current working directory is used and the behavior is identical
147 respectively, depending on whether or not the
148 .Dv AT_SYMLINK_NOFOLLOW
153 One of the owner or group id's
154 may be left unchanged by specifying it as -1.
163 system calls will fail if:
167 Search permission is denied for a component of the path prefix.
172 points outside the process's allocated address space.
175 Too many symbolic links are encountered in translating the pathname.
176 This is taken to be indicative of a looping symbolic link.
178 .It Bq Er ENAMETOOLONG
179 A component of a pathname exceeded 255 characters,
180 or an entire path name exceeded 1023 characters.
188 A component of the path prefix is not a directory.
193 system call will fail if:
200 does not refer to a valid descriptor.
206 refers to a socket, not a file.
209 Any of these calls will fail if:
213 Its execution is interrupted by a signal.
216 An I/O error occurs while reading from or writing to the file system.
219 The effective user ID does not match the owner of the file
220 and the calling process does not have appropriate (i.e., root) privileges.
223 The named file resides on a read-only file system.
226 In addition to the errors specified for
232 system call may fail if:
237 argument does not specify an absolute path and the
241 nor a valid file descriptor open for searching.
245 argument is not valid.
249 argument is not an absolute path and
253 nor a file descriptor associated with a directory.
263 system call is expected to conform to
267 system call is expected to conform to POSIX.1-2008 .
275 system call appeared in
282 system calls were changed to follow symbolic links in
286 system call was added in
288 to compensate for the loss of functionality.
292 system call appeared in OS X 10.10