1 .\" $NetBSD: chmod.2,v 1.47 2013/10/15 11:43:21 njoly Exp $
3 .\" Copyright (c) 1980, 1991, 1993
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\" may be used to endorse or promote products derived from this software
16 .\" without specific prior written permission.
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" @(#)chmod.2 8.1 (Berkeley) 6/4/93
40 .Nd change mode of file
46 .Fn chmod "const char *path" "mode_t mode"
48 .Fn lchmod "const char *path" "mode_t mode"
50 .Fn fchmod "int fd" "mode_t mode"
54 .Fn fchmodat "int fd" "const char *path" "mode_t mode" "int flag"
58 sets the file permission bits
60 specified by the pathname
65 sets the permission bits of the specified
71 except in the case where the named file is a symbolic link,
74 sets the permission bits of the link,
77 sets the bits of the file the link references.
85 .Dv AT_SYMLINK_NOFOLLOW
91 In that case, it is looked up from a directory whose file
92 descriptor was passed as
94 Search permission is required on this directory.
95 .\" (These alternatives await a decision about the semantics of O_SEARCH)
96 .\" Search permission is required on this directory
99 .\" was opened with the
103 .\" This file descriptor must have been opened with the
107 except if that file descriptor was opened with the
113 in order to specify the current directory.
116 verifies that the process owner (user) either owns
117 the file specified by
123 A mode is created from
128 .Bd -literal -offset indent -compact
129 #define S_IRWXU 0000700 /* RWX mask for owner */
130 #define S_IRUSR 0000400 /* R for owner */
131 #define S_IWUSR 0000200 /* W for owner */
132 #define S_IXUSR 0000100 /* X for owner */
134 #define S_IRWXG 0000070 /* RWX mask for group */
135 #define S_IRGRP 0000040 /* R for group */
136 #define S_IWGRP 0000020 /* W for group */
137 #define S_IXGRP 0000010 /* X for group */
139 #define S_IRWXO 0000007 /* RWX mask for other */
140 #define S_IROTH 0000004 /* R for other */
141 #define S_IWOTH 0000002 /* W for other */
142 #define S_IXOTH 0000001 /* X for other */
144 #define S_ISUID 0004000 /* set user id on execution */
145 #define S_ISGID 0002000 /* set group id on execution */
146 #define S_ISVTX 0001000 /* sticky bit */
153 can be set on regular files, but has no effect.
154 For historical reasons this can be done only by the super-user.
160 is set on a directory,
161 an unprivileged user may not delete or rename
162 files of other users in that directory.
163 The sticky bit may be set by any user on a directory which the user
164 owns or has appropriate permissions.
166 For more information about the history and properties of the sticky bit, see
169 Changing the owner of a file
170 turns off the set-user-id and set-group-id bits;
172 turns off the set-user-id and set-group-id bits
173 unless the user is the super-user.
174 This makes the system somewhat more secure
175 by protecting set-user-id (set-group-id) files
176 from remaining set-user-id (set-group-id) if they are modified,
177 at the expense of a degree of compatibility.
179 .Rv -std chmod lchmod fchmod fchmodat
185 will fail and the file mode will be unchanged if:
188 Search permission is denied for a component of the path prefix.
191 points outside the process's allocated address space.
193 The effective user ID is not the super-user, the
195 includes the sticky bit
199 does not refer to a directory.
201 An I/O error occurred while reading from or writing to the file system.
203 Too many symbolic links were encountered in translating the pathname.
204 .It Bq Er ENAMETOOLONG
205 A component of a pathname exceeded
207 characters, or an entire path name exceeded
211 The named file does not exist.
213 A component of the path prefix is not a directory.
215 The effective user ID does not match the owner of the file and
216 the effective user ID is not the super-user; or
217 the mode includes the setgid bit
219 but the file's group is neither the effective group ID nor is it in the
222 The named file resides on a read-only file system.
231 does not specify an absolute path and
235 nor a valid file descriptor open for reading or searching.
238 is not an absolute path and
240 is a file descriptor associated with a non-directory file.
247 The descriptor is not valid.
249 The effective user ID is not the super-user, the
251 includes the sticky bit
255 does not refer to a directory.
258 refers to a socket, not to a file.
260 An I/O error occurred while reading from or writing to the file system.
262 The effective user ID does not match the owner of the file and
263 the effective user ID is not the super-user; or
264 the mode includes the setgid bit
266 but the file's group is neither the effective group ID nor is it in the
269 The file resides on a read-only file system.
297 function call appeared in