xref: /netbsd-src/lib/libc/sys/intro.2 (revision dc306354b0b29af51801a7632f1e95265a68cd81)
1.\"	$NetBSD: intro.2,v 1.13 1998/04/30 21:59:39 fair Exp $
2.\"
3.\" Copyright (c) 1980, 1983, 1986, 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. 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.
21.\"
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
32.\" SUCH DAMAGE.
33.\"
34.\"     @(#)intro.2	8.5 (Berkeley) 2/27/95
35.\"
36.Dd February 8, 1998
37.Dt INTRO 2
38.Os BSD 4
39.Sh NAME
40.Nm intro ,
41.Nm errno
42.Nd introduction to system calls and error numbers
43.Sh SYNOPSIS
44.Fd #include <errno.h>
45.Sh DESCRIPTION
46This section provides an overview of the system calls,
47their error returns, and other common definitions and concepts.
48.\".Pp
49.\".Sy System call restart
50.\".Pp
51.\"<more later...>
52.Sh DIAGNOSTICS
53Nearly all of the system calls provide an error number in the external
54variable
55.Va errno ,
56which is defined as:
57.Pp
58.Dl extern int errno
59.Pp
60When a system call detects an error,
61it returns an integer value
62indicating failure (usually -1)
63and sets the variable
64.Va errno
65accordingly.
66<This allows interpretation of the failure on receiving
67a -1 and to take action accordingly.>
68Successful calls never set
69.Va errno ;
70once set, it remains until another error occurs.
71It should only be examined after an error.
72Note that a number of system calls overload the meanings of these
73error numbers, and that the meanings must be interpreted according
74to the type and circumstances of the call.
75.Pp
76The following is a complete list of the errors and their
77names as given in
78.Aq Pa errno.h .
79.Bl -hang -width Ds
80.It Er 0 Em "Error 0" .
81Not used.
82.It Er 1 EPERM Em "Operation not permitted" .
83An attempt was made to perform an operation limited to processes
84with appropriate privileges or to the owner of a file or other
85resources.
86.It Er 2 ENOENT Em "No such file or directory" .
87A component of a specified pathname did not exist, or the
88pathname was an empty string.
89.It Er 3 ESRCH Em "No such process" .
90No process could be found corresponding to that specified by the given
91process ID.
92.It Er 4 EINTR Em "Interrupted function call" .
93An asynchronous signal (such as
94.Dv SIGINT
95or
96.Dv SIGQUIT )
97was caught by the process during the execution of an interruptible
98function. If the signal handler performs a normal return, the
99interrupted function call will seem to have returned the error condition.
100.It Er 5 EIO Em "Input/output error" .
101Some physical input or output error occurred.
102This error will not be reported until a subsequent operation on the same file
103descriptor and may be lost (over written) by any subsequent errors.
104.It Er 6 ENXIO Em "\&No such device or address" .
105Input or output on a special file referred to a device that did not
106exist, or
107made a request beyond the limits of the device.
108This error may also occur when, for example,
109a tape drive is not online or no disk pack is
110loaded on a drive.
111.It Er 7 E2BIG Em "Arg list too long" .
112The number of bytes used for the argument and environment
113list of the new process exceeded the current limit
114of 20480 bytes
115.Pf ( Dv NCARGS
116in
117.Aq Pa sys/param.h ) .
118.It Er 8 ENOEXEC Em "Exec format error" .
119A request was made to execute a file
120that, although it has the appropriate permissions,
121was not in the format required for an
122executable file.
123.It Er 9 EBADF Em "Bad file descriptor" .
124A file descriptor argument was out of range, referred to no open file,
125or a read (write) request was made to a file that was only open for
126writing (reading).
127.sp
128.It Er 10 ECHILD Em "\&No child processes" .
129A
130.Xr wait 2
131or
132.Xr waitpid 2
133function was executed by a process that had no existing or unwaited-for
134child processes.
135.It Er 11 EDEADLK Em "Resource deadlock avoided" .
136An attempt was made to lock a system resource that
137would have resulted in a deadlock situation.
138.It Er 12 ENOMEM Em "Cannot allocate memory" .
139The new process image required more memory than was allowed by the hardware
140or by system-imposed memory management constraints.
141A lack of swap space is normally temporary; however,
142a lack of core is not.
143Soft limits may be increased to their corresponding hard limits.
144.It Er 13 EACCES Em "Permission denied" .
145An attempt was made to access a file in a way forbidden
146by its file access permissions.
147.It Er 14 EFAULT Em "Bad address" .
148The system detected an invalid address in attempting to
149use an argument of a call.
150.It Er 15 ENOTBLK Em "Not a block device" .
151A block device operation was attempted on a non-block device or file.
152.It Er 16 EBUSY Em "Resource busy" .
153An attempt to use a system resource which was in use at the time
154in a manner which would have conflicted with the request.
155.It Er 17 EEXIST Em "File exists" .
156An existing file was mentioned in an inappropriate context,
157for instance, as the new link name in a
158.Xr link 2
159function.
160.It Er 18 EXDEV Em "Improper link" .
161A hard link to a file on another file system
162was attempted.
163.It Er 19 ENODEV Em "Operation not supported by device" .
164An attempt was made to apply an inappropriate
165function to a device,
166for example,
167trying to read a write-only device such as a printer.
168.It Er 20 ENOTDIR Em "Not a directory" .
169A component of the specified pathname existed, but it was
170not a directory, when a directory was expected.
171.It Er 21 EISDIR Em "Is a directory" .
172An attempt was made to open a directory with write mode specified.
173.It Er 22 EINVAL Em "Invalid argument" .
174Some invalid argument was supplied. (For example,
175specifying an undefined signal to a
176.Xr signal 3
177or
178.Xr kill 2
179function).
180.It Er 23 ENFILE Em "Too many open files in system" .
181Maximum number of file descriptors allowable on the system
182has been reached and a requests for an open cannot be satisfied
183until at least one has been closed.
184.It Er 24 EMFILE Em "Too many open files" .
185<As released, the limit on the number of
186open files per process is 64.>
187The
188.Xr getdtablesize 3
189call will obtain the current limit.
190.It Er 25 ENOTTY Em "Inappropriate ioctl for device" .
191A control function (see
192.Xr ioctl 2 )
193was attempted for a file or
194special device for which the operation was inappropriate.
195.It Er 26 ETXTBSY Em "Text file busy" .
196The new process was a pure procedure (shared text) file
197which was open for writing by another process, or
198while the pure procedure file was being executed an
199.Xr open 2
200call requested write access.
201.It Er 27 EFBIG Em "File too large" .
202The size of a file exceeded the maximum (about
203.if t 2\u\s-231\s+2\d
204.if n 2.1E9
205bytes).
206.It Er 28 ENOSPC Em "Device out of space" .
207A
208.Xr write 2
209to an ordinary file, the creation of a
210directory or symbolic link, or the creation of a directory
211entry failed because no more disk blocks were available
212on the file system, or the allocation of an inode for a newly
213created file failed because no more inodes were available
214on the file system.
215.It Er 29 ESPIPE Em "Illegal seek" .
216An
217.Xr lseek 2
218function was issued on a socket, pipe or
219.Tn FIFO .
220.It Er 30 EROFS Em "Read-only file system" .
221An attempt was made to modify a file or directory
222was made
223on a file system that was read-only at the time.
224.It Er 31 EMLINK Em "Too many links" .
225Maximum allowable hard links to a single file has been exceeded (limit
226of 32767 hard links per file).
227.It Er 32 EPIPE Em "Broken pipe" .
228A write on a pipe, socket or
229.Tn FIFO
230for which there is no process
231to read the data.
232.It Er 33 EDOM Em "Numerical argument out of domain" .
233A numerical input argument was outside the defined domain of the mathematical
234function.
235.It Er 34 ERANGE Em "Numerical result out of range" .
236A numerical result of the function was too large to fit in the
237available space (perhaps exceeded precision).
238.It Er 35 EAGAIN Em "Resource temporarily unavailable" .
239This is a temporary condition and later calls to the
240same routine may complete normally.
241.It Er 36 EINPROGRESS Em "Operation now in progress" .
242An operation that takes a long time to complete (such as
243a
244.Xr connect 2 )
245was attempted on a non-blocking object (see
246.Xr fcntl 2 ) .
247.It Er 37 EALREADY Em "Operation already in progress" .
248An operation was attempted on a non-blocking object that already
249had an operation in progress.
250.It Er 38 ENOTSOCK Em "Socket operation on non-socket" .
251Self-explanatory.
252.It Er 39 EDESTADDRREQ Em "Destination address required" .
253A required address was omitted from an operation on a socket.
254.It Er 40 EMSGSIZE Em "Message too long" .
255A message sent on a socket was larger than the internal message buffer
256or some other network limit.
257.It Er 41 EPROTOTYPE Em "Protocol wrong type for socket" .
258A protocol was specified that does not support the semantics of the
259socket type requested. For example, you cannot use the
260.Tn ARPA
261Internet
262.Tn UDP
263protocol with type
264.Dv SOCK_STREAM .
265.It Er 42 ENOPROTOOPT Em "Protocol not available" .
266A bad option or level was specified in a
267.Xr getsockopt 2
268or
269.Xr setsockopt 2
270call.
271.It Er 43 EPROTONOSUPPORT Em "Protocol not supported" .
272The protocol has not been configured into the
273system or no implementation for it exists.
274.It Er 44 ESOCKTNOSUPPORT Em "Socket type not supported" .
275The support for the socket type has not been configured into the
276system or no implementation for it exists.
277.It Er 45 EOPNOTSUPP Em "Operation not supported" .
278The attempted operation is not supported for the type of object referenced.
279Usually this occurs when a file descriptor refers to a file or socket
280that cannot support this operation,
281for example, trying to
282.Em accept
283a connection on a datagram socket.
284.It Er 46 EPFNOSUPPORT Em "Protocol family not supported" .
285The protocol family has not been configured into the
286system or no implementation for it exists.
287.It Er 47 EAFNOSUPPORT Em "Address family not supported by protocol family" .
288An address incompatible with the requested protocol was used.
289For example, you shouldn't necessarily expect to be able to use
290.Tn NS
291addresses with
292.Tn ARPA
293Internet protocols.
294.It Er 48 EADDRINUSE Em "Address already in use" .
295Only one usage of each address is normally permitted.
296.sp
297.It Er 49 EADDRNOTAVAIL Em "Cannot assign requested address" .
298Normally results from an attempt to create a socket with an
299address not on this machine.
300.It Er 50 ENETDOWN Em "Network is down" .
301A socket operation encountered a dead network.
302.It Er 51 ENETUNREACH Em "Network is unreachable" .
303A socket operation was attempted to an unreachable network.
304.It Er 52 ENETRESET Em "Network dropped connection on reset" .
305The host you were connected to crashed and rebooted.
306.It Er 53 ECONNABORTED Em "Software caused connection abort" .
307A connection abort was caused internal to your host machine.
308.It Er 54 ECONNRESET Em "Connection reset by peer" .
309A connection was forcibly closed by a peer.  This normally
310results from a loss of the connection on the remote socket
311due to a timeout or a reboot.
312.It Er 55 ENOBUFS Em "\&No buffer space available" .
313An operation on a socket or pipe was not performed because
314the system lacked sufficient buffer space or because a queue was full.
315.It Er 56 EISCONN Em "Socket is already connected" .
316A
317.Xr connect 2
318request was made on an already connected socket; or,
319a
320.Xr sendto 2
321or
322.Xr sendmsg 2
323request on a connected socket specified a destination
324when already connected.
325.It Er 57 ENOTCONN Em "Socket is not connected" .
326An request to send or receive data was disallowed because
327the socket was not connected and (when sending on a datagram socket)
328no address was supplied.
329.It Er 58 ESHUTDOWN Em "Cannot send after socket shutdown" .
330A request to send data was disallowed because the socket
331had already been shut down with a previous
332.Xr shutdown 2
333call.
334.It Er 60 ETIMEDOUT Em "Operation timed out" .
335A
336.Xr connect 2
337or
338.Xr send 2
339request failed because the connected party did not
340properly respond after a period of time.  (The timeout
341period is dependent on the communication protocol.)
342.It Er 61 ECONNREFUSED Em "Connection refused" .
343No connection could be made because the target machine actively
344refused it.  This usually results from trying to connect
345to a service that is inactive on the foreign host.
346.It Er 62 ELOOP Em "Too many levels of symbolic links" .
347A path name lookup involved more than 8 symbolic links.
348.It Er 63 ENAMETOOLONG Em "File name too long" .
349A component of a path name exceeded 255
350.Pq Dv MAXNAMELEN
351characters, or an entire
352path name exceeded 1023
353.Pq Dv MAXPATHLEN Ns -1
354characters.
355.It Er 64 EHOSTDOWN Em "Host is down" .
356A socket operation failed because the destination host was down.
357.It Er 65 EHOSTUNREACH Em "No route to host" .
358A socket operation was attempted to an unreachable host.
359.It Er 66 ENOTEMPTY Em "Directory not empty" .
360A directory with entries other than
361.Ql \&.
362and
363.Ql \&..
364was supplied to a remove directory or rename call.
365.It Er 67 EPROCLIM Em "Too many processes" .
366.It Er 68 EUSERS Em "Too many users" .
367The quota system ran out of table entries.
368.It Er 69 EDQUOT Em "Disc quota exceeded" .
369A
370.Xr write 2
371to an ordinary file, the creation of a
372directory or symbolic link, or the creation of a directory
373entry failed because the user's quota of disk blocks was
374exhausted, or the allocation of an inode for a newly
375created file failed because the user's quota of inodes
376was exhausted.
377.ne 1i
378.It Er 70 ESTALE Em "Stale NFS file handle" .
379An attempt was made to access an open file (on an
380.Tn NFS
381filesystem)
382which is now unavailable as referenced by the file descriptor.
383This may indicate the file was deleted on the
384.Tn NFS
385server or some
386other catastrophic event occurred.
387.It Er 72 EBADRPC Em "RPC struct is bad" .
388Exchange of
389.Tn RPC
390information was unsuccessful.
391.It Er 73 ERPCMISMATCH Em "RPC version wrong" .
392The version of
393.Tn RPC
394on the remote peer is not compatible with
395the local version.
396.It Er 74 EPROGUNAVAIL Em "RPC prog. not avail" .
397The requested program is not registered on the remote host.
398.It Er 75 EPROGMISMATCH Em "Program version wrong" .
399The requested version of the program is not available
400on the remote host
401.Pq Tn RPC .
402.It Er 76 EPROCUNAVAIL Em "Bad procedure for program" .
403An
404.Tn RPC
405call was attempted for a procedure which doesn't exist
406in the remote program.
407.It Er 77 ENOLCK Em "No locks available" .
408A system-imposed limit on the number of simultaneous file
409locks was reached.
410.It Er 78 ENOSYS Em "Function not implemented" .
411Attempted a system call that is not available on this
412system.
413.It Er 79 EFTYPE Em "Inappropriate file type or format" .
414Attempted a file operation on a file of a type for which it was invalid.
415.It Er 80 EAUTH Em "Authentication error" .
416Attempted to use an invalid authentication ticket to mount an
417.Tn NFS
418filesystem.
419.It Er 81 ENEEDAUTH Em "Need authenticator" .
420An authentication ticket must be obtained before the given
421.Tn NFS
422filesystem may be mounted.
423.It Er 82 EIDRM Em "Identifier removed" .
424An IPC identifier was removed while the current process was waiting on it.
425.It Er 83 ENOMSG Em "No message of the desired type" .
426An IPC message queue does not contain a message of the desired type,
427or a message catalog does not contain the requested message.
428.El
429.Sh DEFINITIONS
430.Bl -tag -width Ds
431.It  Process ID .
432Each active process in the system is uniquely identified by a non-negative
433integer called a process ID.  The range of this ID is from 0 to 30000.
434.It  Parent process ID
435A new process is created by a currently active process; (see
436.Xr fork 2 ) .
437The parent process ID of a process is initially the process ID of its creator.
438If the creating process exits,
439the parent process ID of each child is set to the ID of a system process,
440.Xr init 8 .
441.It  Process Group
442Each active process is a member of a process group that is identified by
443a non-negative integer called the process group ID.  This is the process
444ID of the group leader.  This grouping permits the signaling of related
445processes (see
446.Xr termios 4 )
447and the job control mechanisms of
448.Xr csh 1 .
449.It Session
450A session is a set of one or more process groups.
451A session is created by a successful call to
452.Xr setsid 2 ,
453which causes the caller to become the only member of the only process
454group in the new session.
455.It Session leader
456A process that has created a new session by a successful call to
457.Xr setsid 2 ,
458is known as a session leader.
459Only a session leader may acquire a terminal as its controlling terminal (see
460.Xr termios 4 ) .
461.It Controlling process
462A session leader with a controlling terminal is a controlling process.
463.It Controlling terminal
464A terminal that is associated with a session is known as the controlling
465terminal for that session and its members.
466.ne 1i
467.It  "Terminal Process Group ID"
468A terminal may be acquired by a session leader as its controlling terminal.
469Once a terminal is associated with a session, any of the process groups
470within the session may be placed into the foreground by setting
471the terminal process group ID to the ID of the process group.
472This facility is used
473to arbitrate between multiple jobs contending for the same terminal;
474(see
475.Xr csh 1
476and
477.Xr tty 4 ) .
478.It  "Orphaned Process Group"
479A process group is considered to be
480.Em orphaned
481if it is not under the control of a job control shell.
482More precisely, a process group is orphaned
483when none of its members has a parent process that is in the same session
484as the group,
485but is in a different process group.
486Note that when a process exits, the parent process for its children
487is changed to be
488.Xr init 8 ,
489which is in a separate session.
490Not all members of an orphaned process group are necessarily orphaned
491processes (those whose creating process has exited).
492The process group of a session leader is orphaned by definition.
493.It "Real User ID and Real Group ID"
494Each user on the system is identified by a positive integer
495termed the real user ID.
496.Pp
497Each user is also a member of one or more groups.
498One of these groups is distinguished from others and
499used in implementing accounting facilities.  The positive
500integer corresponding to this distinguished group is termed
501the real group ID.
502.Pp
503All processes have a real user ID and real group ID.
504These are initialized from the equivalent attributes
505of the process that created it.
506.It "Effective User Id, Effective Group Id, and Group Access List"
507Access to system resources is governed by two values:
508the effective user ID, and the group access list.
509The first member of the group access list is also known as the
510effective group ID.
511(In POSIX.1, the group access list is known as the set of supplementary
512group IDs, and it is unspecified whether the effective group ID is
513a member of the list.)
514.Pp
515The effective user ID and effective group ID are initially the
516process's real user ID and real group ID respectively.  Either
517may be modified through execution of a set-user-ID or set-group-ID
518file (possibly by one its ancestors) (see
519.Xr execve 2 ) .
520By convention, the effective group ID (the first member of the group access
521list) is duplicated, so that the execution of a set-group-ID program
522does not result in the loss of the original (real) group ID.
523.Pp
524The group access list is a set of group IDs
525used only in determining resource accessibility.  Access checks
526are performed as described below in ``File Access Permissions''.
527.It  "Saved Set User ID and Saved Set Group ID"
528When a process executes a new file, the effective user ID is set
529to the owner of the file if the file is set-user-ID, and the effective
530group ID (first element of the group access list) is set to the group
531of the file if the file is set-group-ID.
532The effective user ID of the process is then recorded as the saved set-user-ID,
533and the effective group ID of the process is recorded as the saved set-group-ID.
534These values may be used to regain those values as the effective user
535or group ID after reverting to the real ID (see
536.Xr setuid 2 ) .
537(In POSIX.1, the saved set-user-ID and saved set-group-ID are optional,
538and are used in setuid and setgid, but this does not work as desired
539for the super-user.)
540.It  Super-user
541A process is recognized as a
542.Em super-user
543process and is granted special privileges if its effective user ID is 0.
544.ne 1i
545.It  Special Processes
546The processes with process IDs of 0, 1, and 2 are special.
547Process 0 is the scheduler.  Process 1 is the initialization process
548.Xr init 8 ,
549and is the ancestor of every other process in the system.
550It is used to control the process structure.
551Process 2 is the paging daemon.
552.It  Descriptor
553An integer assigned by the system when a file is referenced
554by
555.Xr open 2
556or
557.Xr dup 2 ,
558or when a socket is created by
559.Xr pipe 2 ,
560.Xr socket 2 ,
561or
562.Xr socketpair 2 ,
563which uniquely identifies an access path to that file or socket from
564a given process or any of its children.
565.It  File Name
566Names consisting of up to 255
567.Pq Dv MAXNAMELEN
568characters may be used to name
569an ordinary file, special file, or directory.
570.Pp
571These characters may be selected from the set of all
572.Tn ASCII
573character
574excluding 0 (NUL) and the
575.Tn ASCII
576code for
577.Ql \&/
578(slash).  (The parity bit,
579bit 7, must be 0.)
580.Pp
581Note that it is generally unwise to use
582.Ql \&* ,
583.Ql \&? ,
584.Ql \&[
585or
586.Ql \&]
587as part of
588file names because of the special meaning attached to these characters
589by the shell.
590.It  Path Name
591A path name is a
592.Tn NUL Ns -terminated
593character string starting with an
594optional slash
595.Ql \&/ ,
596followed by zero or more directory names separated
597by slashes, optionally followed by a file name.
598The total length of a path name must be less than 1024
599.Pq Dv MAXPATHLEN
600characters.
601.Pp
602If a path name begins with a slash, the path search begins at the
603.Em root
604directory.
605Otherwise, the search begins from the current working directory.
606A slash by itself names the root directory.  An empty
607pathname refers to the current directory.
608.It  Directory
609A directory is a special type of file that contains entries
610that are references to other files.
611Directory entries are called links.  By convention, a directory
612contains at least two links,
613.Ql \&.
614and
615.Ql \&.. ,
616referred to as
617.Em dot
618and
619.Em dot-dot
620respectively.  Dot refers to the directory itself and
621dot-dot refers to its parent directory.
622.It "Root Directory and Current Working Directory"
623Each process has associated with it a concept of a root directory
624and a current working directory for the purpose of resolving path
625name searches.  A process's root directory need not be the root
626directory of the root file system.
627.It  File Access Permissions
628Every file in the file system has a set of access permissions.
629These permissions are used in determining whether a process
630may perform a requested operation on the file (such as opening
631a file for writing).  Access permissions are established at the
632time a file is created.  They may be changed at some later time
633through the
634.Xr chmod 2
635call.
636.Pp
637File access is broken down according to whether a file may be: read,
638written, or executed.  Directory files use the execute
639permission to control if the directory may be searched.
640.Pp
641File access permissions are interpreted by the system as
642they apply to three different classes of users: the owner
643of the file, those users in the file's group, anyone else.
644Every file has an independent set of access permissions for
645each of these classes.  When an access check is made, the system
646decides if permission should be granted by checking the access
647information applicable to the caller.
648.Pp
649Read, write, and execute/search permissions on
650a file are granted to a process if:
651.Pp
652The process's effective user ID is that of the super-user. (Note:
653even the super-user cannot execute a non-executable file.)
654.Pp
655The process's effective user ID matches the user ID of the owner
656of the file and the owner permissions allow the access.
657.Pp
658The process's effective user ID does not match the user ID of the
659owner of the file, and either the process's effective
660group ID matches the group ID
661of the file, or the group ID of the file is in
662the process's group access list,
663and the group permissions allow the access.
664.Pp
665Neither the effective user ID nor effective group ID
666and group access list of the process
667match the corresponding user ID and group ID of the file,
668but the permissions for ``other users'' allow access.
669.Pp
670Otherwise, permission is denied.
671.It  Sockets and Address Families
672.Pp
673A socket is an endpoint for communication between processes.
674Each socket has queues for sending and receiving data.
675.Pp
676Sockets are typed according to their communications properties.
677These properties include whether messages sent and received
678at a socket require the name of the partner, whether communication
679is reliable, the format used in naming message recipients, etc.
680.Pp
681Each instance of the system supports some
682collection of socket types; consult
683.Xr socket 2
684for more information about the types available and
685their properties.
686.Pp
687Each instance of the system supports some number of sets of
688communications protocols.  Each protocol set supports addresses
689of a certain format.  An Address Family is the set of addresses
690for a specific group of protocols.  Each socket has an address
691chosen from the address family in which the socket was created.
692.Sh SEE ALSO
693.Xr intro 3 ,
694.Xr perror 3
695.Sh HISTORY
696An
697.Nm intro
698manual page appeared in
699.At v6 .
700