]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libc/sys/chmod.2
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libc / sys / chmod.2
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
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 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)chmod.2     8.1 (Berkeley) 6/4/93
29 .\" $FreeBSD$
30 .\"
31 .Dd April 10, 2008
32 .Dt CHMOD 2
33 .Os
34 .Sh NAME
35 .Nm chmod ,
36 .Nm fchmod ,
37 .Nm lchmod ,
38 .Nm fchmodat
39 .Nd change mode of file
40 .Sh LIBRARY
41 .Lb libc
42 .Sh SYNOPSIS
43 .In sys/stat.h
44 .Ft int
45 .Fn chmod "const char *path" "mode_t mode"
46 .Ft int
47 .Fn fchmod "int fd" "mode_t mode"
48 .Ft int
49 .Fn lchmod "const char *path" "mode_t mode"
50 .Ft int
51 .Fn fchmodat "int fd" "const char *path" "mode_t mode" "int flag"
52 .Sh DESCRIPTION
53 The file permission bits of the file named specified by
54 .Fa path
55 or referenced by the file descriptor
56 .Fa fd
57 are changed to
58 .Fa mode .
59 The
60 .Fn chmod
61 system call verifies that the process owner (user) either owns
62 the file specified by
63 .Fa path
64 (or
65 .Fa fd ) ,
66 or
67 is the super-user.
68 The
69 .Fn chmod
70 system call follows symbolic links to operate on the target of the link
71 rather than the link itself.
72 .Pp
73 The
74 .Fn lchmod
75 system call is similar to
76 .Fn chmod
77 but does not follow symbolic links.
78 .Pp
79 The
80 .Fn fchmodat
81 is equivalent to either
82 .Fn chmod
83 or
84 .Fn lchmod
85 depending on the
86 .Fa flag
87 except in the case where
88 .Fa path
89 specifies a relative path.
90 In this case the file to be changed is determined relative to the directory
91 associated with the file descriptor
92 .Fa fd
93 instead of the current working directory.
94 The values for the
95 .Fa flag
96 are constructed by a bitwise-inclusive OR of flags from the following list, defined
97 in
98 .In fcntl.h :
99 .Bl -tag -width indent
100 .It Dv AT_SYMLINK_NOFOLLOW
101 If
102 .Fa path
103 names a symbolic link, then the mode of the symbolic link is changed.
104 .El
105 .Pp
106 If
107 .Fn fchmodat
108 is passed the special value
109 .Dv AT_FDCWD
110 in the
111 .Fa fd
112 parameter, the current working directory is used.
113 If also
114 .Fa flag
115 is zero, the behavior is identical to a call to
116 .Fn chmod .
117 .Pp
118 A mode is created from
119 .Em or'd
120 permission bit masks
121 defined in
122 .In sys/stat.h :
123 .Pp
124 .Bd -literal -offset indent -compact
125 #define S_IRWXU 0000700    /* RWX mask for owner */
126 #define S_IRUSR 0000400    /* R for owner */
127 #define S_IWUSR 0000200    /* W for owner */
128 #define S_IXUSR 0000100    /* X for owner */
129
130 #define S_IRWXG 0000070    /* RWX mask for group */
131 #define S_IRGRP 0000040    /* R for group */
132 #define S_IWGRP 0000020    /* W for group */
133 #define S_IXGRP 0000010    /* X for group */
134
135 #define S_IRWXO 0000007    /* RWX mask for other */
136 #define S_IROTH 0000004    /* R for other */
137 #define S_IWOTH 0000002    /* W for other */
138 #define S_IXOTH 0000001    /* X for other */
139
140 #define S_ISUID 0004000    /* set user id on execution */
141 #define S_ISGID 0002000    /* set group id on execution */
142 #ifndef __BSD_VISIBLE
143 #define S_ISTXT 0001000    /* sticky bit */
144 #endif
145 .Ed
146 .Pp
147 The
148 .Fx
149 VM system totally ignores the sticky bit
150 .Pq Dv ISTXT
151 for executables.
152 On UFS-based file systems (FFS, LFS) the sticky
153 bit may only be set upon directories.
154 .Pp
155 If mode
156 .Dv ISTXT
157 (the `sticky bit') is set on a directory,
158 an unprivileged user may not delete or rename
159 files of other users in that directory.
160 The sticky bit may be
161 set by any user on a directory which the user owns or has appropriate
162 permissions.
163 For more details of the properties of the sticky bit, see
164 .Xr sticky 7 .
165 .Pp
166 If mode ISUID (set UID) is set on a directory,
167 and the MNT_SUIDDIR option was used in the mount of the file system,
168 then the owner of any new files and sub-directories
169 created within this directory are set
170 to be the same as the owner of that directory.
171 If this function is enabled, new directories will inherit
172 the bit from their parents.
173 Execute bits are removed from
174 the file, and it will not be given to root.
175 This behavior does not change the
176 requirements for the user to be allowed to write the file, but only the eventual
177 owner after it has been created.
178 Group inheritance is not affected.
179 .Pp
180 This feature is designed for use on fileservers serving PC users via
181 ftp, SAMBA, or netatalk.
182 It provides security holes for shell users and as
183 such should not be used on shell machines, especially on home directories.
184 This option requires the SUIDDIR
185 option in the kernel to work.
186 Only UFS file systems support this option.
187 For more details of the suiddir mount option, see
188 .Xr mount 8 .
189 .Pp
190 Writing or changing the owner of a file
191 turns off the set-user-id and set-group-id bits
192 unless the user is the super-user.
193 This makes the system somewhat more secure
194 by protecting set-user-id (set-group-id) files
195 from remaining set-user-id (set-group-id) if they are modified,
196 at the expense of a degree of compatibility.
197 .Sh RETURN VALUES
198 .Rv -std
199 .Sh ERRORS
200 The
201 .Fn chmod
202 system call
203 will fail and the file mode will be unchanged if:
204 .Bl -tag -width Er
205 .It Bq Er ENOTDIR
206 A component of the path prefix is not a directory.
207 .It Bq Er ENAMETOOLONG
208 A component of a pathname exceeded 255 characters,
209 or an entire path name exceeded 1023 characters.
210 .It Bq Er ENOENT
211 The named file does not exist.
212 .It Bq Er EACCES
213 Search permission is denied for a component of the path prefix.
214 .It Bq Er ELOOP
215 Too many symbolic links were encountered in translating the pathname.
216 .It Bq Er EPERM
217 The effective user ID does not match the owner of the file and
218 the effective user ID is not the super-user.
219 .It Bq Er EPERM
220 The effective user ID is not the super-user, the effective user ID do match the
221 owner of the file, but the group ID of the file does not match the effective
222 group ID nor one of the supplementary group IDs.
223 .It Bq Er EPERM
224 The named file has its immutable or append-only flag set, see the
225 .Xr chflags 2
226 manual page for more information.
227 .It Bq Er EROFS
228 The named file resides on a read-only file system.
229 .It Bq Er EFAULT
230 The
231 .Fa path
232 argument
233 points outside the process's allocated address space.
234 .It Bq Er EIO
235 An I/O error occurred while reading from or writing to the file system.
236 .It Bq Er EFTYPE
237 The effective user ID is not the super-user, the mode includes the sticky bit
238 .Dv ( S_ISVTX ) ,
239 and path does not refer to a directory.
240 .El
241 .Pp
242 The
243 .Fn fchmod
244 system call will fail if:
245 .Bl -tag -width Er
246 .It Bq Er EBADF
247 The descriptor is not valid.
248 .It Bq Er EINVAL
249 The
250 .Fa fd
251 argument
252 refers to a socket, not to a file.
253 .It Bq Er EROFS
254 The file resides on a read-only file system.
255 .It Bq Er EIO
256 An I/O error occurred while reading from or writing to the file system.
257 .El
258 .Pp
259 In addition to the
260 .Fn chmod
261 errors,
262 .Fn fchmodat
263 fails if:
264 .Bl -tag -width Er
265 .It Bq Er EBADF
266 The
267 .Fa path
268 argument does not specify an absolute path and the
269 .Fa fd
270 argument is neither
271 .Fa AT_FDCWD
272 nor a valid file descriptor open for searching.
273 .It Bq Er EINVAL
274 The value of the
275 .Fa flag
276 argument is not valid.
277 .It Bq Er ENOTDIR
278 The
279 .Fa path
280 argument is not an absolute path and
281 .Fa fd
282 is neither
283 .Dv AT_FDCWD
284 nor a file descriptor associated with a directory.
285 .El
286 .Sh SEE ALSO
287 .Xr chmod 1 ,
288 .Xr chflags 2 ,
289 .Xr chown 2 ,
290 .Xr open 2 ,
291 .Xr stat 2 ,
292 .Xr sticky 7
293 .Sh STANDARDS
294 The
295 .Fn chmod
296 system call is expected to conform to
297 .St -p1003.1-90 ,
298 except for the return of
299 .Er EFTYPE
300 and the use of
301 .Dv S_ISTXT .
302 The
303 .Fn fchmodat
304 system call follows The Open Group Extended API Set 2 specification.
305 .Sh HISTORY
306 The
307 .Fn chmod
308 function appeared in
309 .At v7 .
310 The
311 .Fn fchmod
312 system call appeared in
313 .Bx 4.2 .
314 The
315 .Fn lchmod
316 system call appeared in
317 .Fx 3.0 .
318 The
319 .Fn fchmodat
320 system call appeared in
321 .Fx 8.0 .