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
41 .Nd change owner and group of a file
45 .Fn chown "const char *path" "uid_t owner" "gid_t group"
47 .Fn fchown "int fd" "uid_t owner" "gid_t group"
49 .Fn lchown "const char *path" "uid_t owner" "gid_t group"
51 The owner ID and group ID of the file
56 is changed as specified by the arguments
60 The owner of a file may change the
63 he or she is a member,
66 capability is restricted to the super-user.
71 clears the set-user-id and set-group-id bits
73 to prevent accidental or mischievous creation of
74 set-user-id and set-group-id programs if not executed
79 follows symbolic links to operate on the target of the link
80 rather than the link itself.
85 is particularly useful when used in conjunction
86 with the file locking primitives (see
91 system call is similar to
93 but does not follow symbolic links.
95 One of the owner or group id's
96 may be left unchanged by specifying it as -1.
104 will fail and the file will be unchanged if:
107 A component of the path prefix is not a directory.
108 .It Bq Er ENAMETOOLONG
109 A component of a pathname exceeded 255 characters,
110 or an entire path name exceeded 1023 characters.
112 The named file does not exist.
114 Search permission is denied for a component of the path prefix.
116 Too many symbolic links were encountered in translating the pathname.
118 The effective user ID is not the super-user.
120 The named file resides on a read-only file system.
125 points outside the process's allocated address space.
127 An I/O error occurred while reading from or writing to the file system.
132 system call will fail if:
138 does not refer to a valid descriptor.
143 refers to a socket, not a file.
145 The effective user ID is not the super-user.
147 The named file resides on a read-only file system.
149 An I/O error occurred while reading from or writing to the file system.
159 system call is expected to conform to
168 system call appeared in
175 system calls were changed to follow symbolic links in
179 system call was added in
181 to compensate for the loss of functionality.