1.\" $NetBSD: access.2,v 1.21 2004/05/13 10:20:57 wiz 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 April 1, 1994 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 45The 46.Fn access 47function checks the accessibility of the 48file named by 49.Fa path 50for the access permissions indicated by 51.Fa mode . 52The value of 53.Fa mode 54is the bitwise inclusive OR of the access permissions to be 55checked 56.Pf ( Dv R_OK 57for read permission, 58.Dv W_OK 59for write permission and 60.Dv X_OK 61for execute/search permission) or the existence test, 62.Dv F_OK . 63All components of the pathname 64.Fa path 65are checked for access permissions (including 66.Dv F_OK ) . 67.Pp 68The real user ID is used in place of the effective user ID 69and the real group access list 70(including the real group ID) are 71used in place of the effective ID for verifying permission. 72.Pp 73If a process has super-user privileges and indicates success for 74.Dv R_OK 75or 76.Dv W_OK . 77the file may not actually have read or write permission bits set. 78If a process has super-user privileges and indicates success for 79.Dv X_OK , 80at least one of the user, group, or other execute bits is set. 81(However, the file may still not be executable. 82See 83.Xr execve 2 . ) 84.Sh RETURN VALUES 85If 86.Fa path 87cannot be found or if any of the desired access modes would 88not be granted, then a \-1 value is returned; otherwise 89a 0 value is returned. 90.Sh ERRORS 91Access to the file is denied if: 92.Bl -tag -width Er 93.It Bq Er ENOTDIR 94A component of the path prefix is not a directory. 95.It Bq Er ENAMETOOLONG 96A component of a pathname exceeded 97.Dv {NAME_MAX} 98characters, or an entire path name exceeded 99.Dv {PATH_MAX} 100characters. 101.It Bq Er ENOENT 102The named file does not exist. 103.It Bq Er ELOOP 104Too many symbolic links were encountered in translating the pathname. 105.It Bq Er EROFS 106Write access is requested for a file on a read-only file system. 107.It Bq Er ETXTBSY 108Write access is requested for a pure procedure (shared text) 109file presently being executed. 110.It Bq Er EACCES 111Permission bits of the file mode do not permit the requested 112access, or search permission is denied on a component of the 113path prefix. 114The owner of a file has permission checked with 115respect to the ``owner'' read, write, and execute mode bits, 116members of the file's group other than the owner have permission 117checked with respect to the ``group'' mode bits, and all 118others have permissions checked with respect to the ``other'' 119mode bits. 120.It Bq Er EFAULT 121.Fa path 122points outside the process's allocated address space. 123.It Bq Er EIO 124An I/O error occurred while reading from or writing to the file system. 125.El 126.Sh SEE ALSO 127.Xr chmod 2 , 128.Xr execve 2 , 129.Xr stat 2 130.Sh STANDARDS 131The 132.Fn access 133function conforms to 134.St -p1003.1-90 . 135.Sh BUGS 136.Fn access 137is a potential security hole and 138should never be used. 139