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