kernel: separate state for trace-deferred syscalls
[minix.git] / lib / libc / sys / access.2
blob76b76e3fcefe772aa2d28c9c8b01112367d0b9eb
1 .\"     $NetBSD: access.2,v 1.26 2010/05/03 05:53:56 jruoho Exp $
2 .\"
3 .\" Copyright (c) 1980, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
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.
17 .\"
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
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)access.2    8.2 (Berkeley) 4/1/94
31 .\"
32 .Dd May 3, 2010
33 .Dt ACCESS 2
34 .Os
35 .Sh NAME
36 .Nm access
37 .Nd check access permissions of a file or pathname
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In unistd.h
42 .Ft int
43 .Fn access "const char *path" "int mode"
44 .Sh DESCRIPTION
45 The
46 .Fn access
47 function checks the accessibility of the
48 file named by
49 .Fa path
50 for the access permissions indicated by
51 .Fa mode .
52 The value of
53 .Fa mode
54 is the bitwise inclusive OR of the access permissions to be
55 checked
56 .Pf ( Dv R_OK
57 for read permission,
58 .Dv W_OK
59 for write permission and
60 .Dv X_OK
61 for execute/search permission) or the existence test,
62 .Dv F_OK .
63 All components of the pathname
64 .Fa path
65 are checked for access permissions (including
66 .Dv F_OK ) .
67 .Pp
68 The real user ID is used in place of the effective user ID
69 and the real group access list
70 (including the real group ID) are
71 used in place of the effective ID for verifying permission.
72 .Pp
73 If a process has super-user privileges and indicates success for
74 .Dv R_OK
76 .Dv W_OK ,
77 the file may not actually have read or write permission bits set.
78 If a process has super-user privileges and indicates success for
79 .Dv X_OK ,
80 at least one of the user, group, or other execute bits is set.
81 (However, the file may still not be executable.
82 See
83 .Xr execve 2 . )
84 .Sh RETURN VALUES
86 .Fa path
87 cannot be found or if any of the desired access modes would
88 not be granted, then a \-1 value is returned; otherwise
89 a 0 value is returned.
90 .Sh ERRORS
91 Access to the file is denied if:
92 .Bl -tag -width Er
93 .It Bq Er EACCES
94 Permission bits of the file mode do not permit the requested
95 access, or search permission is denied on a component of the
96 path prefix.
97 The owner of a file has permission checked with respect to the
98 .Dq owner
99 read, write, and execute mode bits, members of the file's group
100 other than the owner have permission checked with respect to the
101 .Dq group
102 mode bits, and all others have permissions checked with respect to
104 .Dq other
105 mode bits.
106 .It Bq Er EFAULT
107 .Fa path
108 points outside the process's allocated address space.
109 .It Bq Er EIO
110 An I/O error occurred while reading from or writing to the file system.
111 .It Bq Er ELOOP
112 Too many symbolic links were encountered in translating the pathname.
113 .It Bq Er ENAMETOOLONG
114 A component of a pathname exceeded
115 .Brq Dv NAME_MAX
116 characters, or an entire path name exceeded
117 .Brq Dv PATH_MAX
118 characters.
119 .It Bq Er ENOENT
120 The named file does not exist.
121 .It Bq Er ENOTDIR
122 A component of the path prefix is not a directory.
123 .It Bq Er EROFS
124 Write access is requested for a file on a read-only file system.
125 .It Bq Er ETXTBSY
126 Write access is requested for a pure procedure (shared text)
127 file presently being executed.
129 .Sh SEE ALSO
130 .Xr chmod 2 ,
131 .Xr execve 2 ,
132 .Xr stat 2 ,
133 .Xr secure_path 3
134 .Sh STANDARDS
136 .Fn access
137 function conforms to
138 .St -p1003.1-90 .
139 .Sh SECURITY CONSIDERATIONS
141 .Fn access
142 system call is a potential security hole due to race conditions.
143 It should never be used.
144 Set-user-ID and set-group-ID applications should restore the
145 effective user or group ID, and perform actions directly rather than use
146 .Fn access
147 to simulate access checks for the real user or group ID.
150 .Fn access
151 system call may however have some value in providing clues to users as to
152 whether certain operations make sense for a particular filesystem object.
153 Arguably it also allows a cheaper file existence test than
154 .Xr stat 2 .