1 .\" $NetBSD: chmod.2,v 1.7 1995/02/27 12:32:06 cgd 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. All advertising materials mentioning features or use of this software
15 .\" must display the following acknowledgement:
16 .\" This product includes software developed by the University of
17 .\" California, Berkeley and its contributors.
18 .\" 4. Neither the name of the University nor the names of its contributors
19 .\" may be used to endorse or promote products derived from this software
20 .\" without specific prior written permission.
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" @(#)chmod.2 8.1 (Berkeley) 6/4/93
43 .Nd change mode of file
45 .Fd #include <sys/types.h>
46 .Fd #include <sys/stat.h>
49 .Fa "const char *path"
58 .Fn fchmodat "int fd" "const char *path" "mode_t mode" "int flag"
62 sets the file permission bits
64 specified by the pathname
69 sets the permission bits of the specified
73 verifies that the process owner (user) either owns
85 except in the case where
87 specifies a relative path.
88 In this case the file to be changed is determined relative to the directory
89 associated with the file descriptor
91 instead of the current working directory.
94 are constructed by a bitwise-inclusive OR of flags from the following list, defined
97 .Bl -tag -width indent
98 .It Dv AT_SYMLINK_NOFOLLOW
101 names a symbolic link, then the mode of the symbolic link is changed.
106 is passed the special value
110 parameter, the current working directory is used.
113 is zero, the behavior is identical to a call to
115 A mode is created from
120 .Bd -literal -offset indent -compact
121 #define S_IRWXU 0000700 /* RWX mask for owner */
122 #define S_IRUSR 0000400 /* R for owner */
123 #define S_IWUSR 0000200 /* W for owner */
124 #define S_IXUSR 0000100 /* X for owner */
126 #define S_IRWXG 0000070 /* RWX mask for group */
127 #define S_IRGRP 0000040 /* R for group */
128 #define S_IWGRP 0000020 /* W for group */
129 #define S_IXGRP 0000010 /* X for group */
131 #define S_IRWXO 0000007 /* RWX mask for other */
132 #define S_IROTH 0000004 /* R for other */
133 #define S_IWOTH 0000002 /* W for other */
134 #define S_IXOTH 0000001 /* X for other */
136 #define S_ISUID 0004000 /* set user id on execution */
137 #define S_ISGID 0002000 /* set group id on execution */
138 #define S_ISVTX 0001000 /* save swapped text even after use */
145 indicates to the system which executable files are shareable (the
146 default) and the system maintains the program text of the files
147 in the swap area. The sticky bit may only be set by the super user
148 on shareable executable files.
152 (the `sticky bit') is set on a directory,
153 an unprivileged user may not delete or rename
154 files of other users in that directory. The sticky bit may be
155 set by any user on a directory which the user owns or has appropriate
157 For more details of the properties of the sticky bit, see
160 Writing or changing the owner of a file
161 turns off the set-user-id and set-group-id bits
162 unless the user is the super-user.
163 This makes the system somewhat more secure
164 by protecting set-user-id (set-group-id) files
165 from remaining set-user-id (set-group-id) if they are modified,
166 at the expense of a degree of compatibility.
168 Upon successful completion, a value of 0 is returned.
169 Otherwise, a value of -1 is returned and
171 is set to indicate the error.
175 system call will fail and the file mode will be unchanged if:
179 Search permission is denied for a component of the path prefix.
183 points outside the process's allocated address space.
186 Its execution was interrupted by a signal.
189 An I/O error occurred while reading from or writing to the file system.
192 Too many symbolic links were encountered in translating the pathname.
193 This is taken to be indicative of a looping symbolic link.
195 .It Bq Er ENAMETOOLONG
196 A component of a pathname exceeded
198 characters, or an entire path name exceeded
203 The named file does not exist.
206 A component of the path prefix is not a directory.
209 The effective user ID does not match the owner of the file and
210 the effective user ID is not the super-user.
213 The named file resides on a read-only file system.
222 is not a valid file descriptor.
226 refers to a socket, not to a file.
230 is not a valid file mode.
233 Its execution was interrupted by a signal.
236 An I/O error occurred while reading from or writing to the file system.
239 The effective user ID does not match the owner of the file and
240 the effective user ID is not the super-user.
243 The file resides on a read-only file system.
255 argument does not specify an absolute path and the
259 nor a valid file descriptor open for searching.
263 argument is not valid.
267 argument is not an absolute path and
271 nor a file descriptor associated with a directory.
274 .Fd #include <sys/types.h>
275 .Fd #include <sys/stat.h>
290 function is expected to conform to
294 function is expected to conform to POSIX.1-2008 .
303 system call appeared in OS X 10.10