1 .\" $OpenBSD: chown.2,v 1.3 1997/01/26 05:10:33 downsj Exp $
2 .\" $NetBSD: chown.2,v 1.10 1995/10/12 15:40:47 jtc Exp $
4 .\" Copyright (c) 1980, 1991, 1993, 1994
5 .\" The Regents of the University of California. All rights reserved.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\" must display the following acknowledgement:
17 .\" This product includes software developed by the University of
18 .\" California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\" may be used to endorse or promote products derived from this software
21 .\" without specific prior written permission.
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 .\" @(#)chown.2 8.4 (Berkeley) 4/19/94
43 .Nd change owner and group of a file or link
45 .Fd #include <sys/types.h>
46 .Fd #include <unistd.h>
48 .Fn chown "const char *path" "uid_t owner" "gid_t group"
50 .Fn fchown "int fd" "uid_t owner" "gid_t group"
52 The owner ID and group ID of the file (or link)
57 is changed as specified by the arguments
61 The owner of a file may change the
64 he or she is a member,
67 capability is restricted to the super-user.
70 clears the set-user-id and set-group-id bits
72 to prevent accidental or mischievous creation of
73 set-user-id and set-group-id programs.
76 is particularly useful when used in conjunction
77 with the file locking primitives (see
80 One of the owner or group id's
81 may be left unchanged by specifying it as -1.
83 Zero is returned if the operation was successful;
84 -1 is returned if an error occurs, with a more specific
85 error code being placed in the global variable
89 will fail and the file or link will be unchanged if:
92 A component of the path prefix is not a directory.
93 .It Bq Er ENAMETOOLONG
94 A component of a pathname exceeded
96 characters, or an entire path name exceeded
100 The named file does not exist.
102 Search permission is denied for a component of the path prefix.
104 Too many symbolic links were encountered in translating the pathname.
106 The effective user ID is not the super-user.
108 The named file resides on a read-only file system.
111 points outside the process's allocated address space.
113 An I/O error occurred while reading from or writing to the file system.
121 does not refer to a valid descriptor.
124 refers to a socket, not a file.
126 The effective user ID is not the super-user.
128 The named file resides on a read-only file system.
130 An I/O error occurred while reading from or writing to the file system.
140 function is expected to conform to
145 function call appeared in
152 functions were changed to follow symbolic links in