xref: /freebsd/lib/libsys/intro.2 (revision de525c502a3aab50de42df39f4b0c2840f4c09a6)
19e8df790SAlexander Ziaee.\"-
29e8df790SAlexander Ziaee.\" SPDX-License-Identifier: BSD-3-Clause
39e8df790SAlexander Ziaee.\"
48269e767SBrooks Davis.\" Copyright (c) 1980, 1983, 1986, 1991, 1993
58269e767SBrooks Davis.\"	The Regents of the University of California.  All rights reserved.
68269e767SBrooks Davis.\"
78269e767SBrooks Davis.\" Redistribution and use in source and binary forms, with or without
88269e767SBrooks Davis.\" modification, are permitted provided that the following conditions
98269e767SBrooks Davis.\" are met:
108269e767SBrooks Davis.\" 1. Redistributions of source code must retain the above copyright
118269e767SBrooks Davis.\"    notice, this list of conditions and the following disclaimer.
128269e767SBrooks Davis.\" 2. Redistributions in binary form must reproduce the above copyright
138269e767SBrooks Davis.\"    notice, this list of conditions and the following disclaimer in the
148269e767SBrooks Davis.\"    documentation and/or other materials provided with the distribution.
158269e767SBrooks Davis.\" 3. Neither the name of the University nor the names of its contributors
168269e767SBrooks Davis.\"    may be used to endorse or promote products derived from this software
178269e767SBrooks Davis.\"    without specific prior written permission.
188269e767SBrooks Davis.\"
198269e767SBrooks Davis.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
208269e767SBrooks Davis.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
218269e767SBrooks Davis.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
228269e767SBrooks Davis.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
238269e767SBrooks Davis.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
248269e767SBrooks Davis.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
258269e767SBrooks Davis.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
268269e767SBrooks Davis.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
278269e767SBrooks Davis.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
288269e767SBrooks Davis.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
298269e767SBrooks Davis.\" SUCH DAMAGE.
308269e767SBrooks Davis.\"
31bcc57e97SAlexander Ziaee.Dd April 19, 2024
328269e767SBrooks Davis.Dt INTRO 2
338269e767SBrooks Davis.Os
348269e767SBrooks Davis.Sh NAME
358269e767SBrooks Davis.Nm intro
368269e767SBrooks Davis.Nd introduction to system calls and error numbers
378269e767SBrooks Davis.Sh LIBRARY
388269e767SBrooks Davis.Lb libc
398269e767SBrooks Davis.Sh SYNOPSIS
408269e767SBrooks Davis.In errno.h
418269e767SBrooks Davis.Sh DESCRIPTION
42*de525c50SAlexander ZiaeeThis section contains the system calls which comprise the
43*de525c50SAlexander Ziaee.Fx
44*de525c50SAlexander Ziaeeprogramming environment.
45*de525c50SAlexander ZiaeeThis page also provides an overview of common definitions and concepts
46*de525c50SAlexander Ziaeerelevant to system calls, where to find a table of the system calls
47*de525c50SAlexander Ziaeecurrently available on your system, and their error returns.
488269e767SBrooks Davis.\".Pp
498269e767SBrooks Davis.\".Sy System call restart
508269e767SBrooks Davis.\".Pp
518269e767SBrooks Davis.\"(more later...)
52d846f33bSAlexander Ziaee.Sh DEFINITIONS
53d846f33bSAlexander Ziaee.Bl -tag -width Ds
54d846f33bSAlexander Ziaee.It Process ID
55d846f33bSAlexander ZiaeeEach active process in the system is uniquely identified by a non-negative
56d846f33bSAlexander Ziaeeinteger called a process ID.
57d846f33bSAlexander ZiaeeThe range of this ID is from 0 to 99999.
58d846f33bSAlexander Ziaee.It Parent process ID
59d846f33bSAlexander ZiaeeA new process is created by a currently active process
60d846f33bSAlexander Ziaee.Pq see Xr fork 2 .
61d846f33bSAlexander ZiaeeThe parent process ID of a process is initially the process ID of its creator.
62d846f33bSAlexander ZiaeeIf the creating process exits,
63d846f33bSAlexander Ziaeethe parent process ID of each child is set to the ID of the calling process's
64d846f33bSAlexander Ziaeereaper
65d846f33bSAlexander Ziaee.Pq see Xr procctl 2 ,
66d846f33bSAlexander Ziaeenormally
67d846f33bSAlexander Ziaee.Xr init 8 .
68d846f33bSAlexander Ziaee.It Process Group
69d846f33bSAlexander ZiaeeEach active process is a member of a process group that is identified by
70d846f33bSAlexander Ziaeea non-negative integer called the process group ID.
71d846f33bSAlexander ZiaeeThis is the process
72d846f33bSAlexander ZiaeeID of the group leader.
73d846f33bSAlexander ZiaeeThis grouping permits the signaling of related processes
74d846f33bSAlexander Ziaee.Pq see Xr termios 4
75d846f33bSAlexander Ziaeeand the job control mechanisms of
76d846f33bSAlexander Ziaee.Xr csh 1 .
77d846f33bSAlexander Ziaee.It Session
78d846f33bSAlexander ZiaeeA session is a set of one or more process groups.
79d846f33bSAlexander ZiaeeA session is created by a successful call to
80d846f33bSAlexander Ziaee.Xr setsid 2 ,
81d846f33bSAlexander Ziaeewhich causes the caller to become the only member of the only process
82d846f33bSAlexander Ziaeegroup in the new session.
83d846f33bSAlexander Ziaee.It Session leader
84d846f33bSAlexander ZiaeeA process that has created a new session by a successful call to
85d846f33bSAlexander Ziaee.Xr setsid 2 ,
86d846f33bSAlexander Ziaeeis known as a session leader.
87d846f33bSAlexander ZiaeeOnly a session leader may acquire a terminal as its controlling terminal
88d846f33bSAlexander Ziaee.Pq see Xr termios 4 .
89d846f33bSAlexander Ziaee.It Controlling process
90d846f33bSAlexander ZiaeeA session leader with a controlling terminal is a controlling process.
91d846f33bSAlexander Ziaee.It Controlling terminal
92d846f33bSAlexander ZiaeeA terminal that is associated with a session is known as the controlling
93d846f33bSAlexander Ziaeeterminal for that session and its members.
94d846f33bSAlexander Ziaee.It Terminal Process Group ID
95d846f33bSAlexander ZiaeeA terminal may be acquired by a session leader as its controlling terminal.
96d846f33bSAlexander ZiaeeOnce a terminal is associated with a session, any of the process groups
97d846f33bSAlexander Ziaeewithin the session may be placed into the foreground by setting
98d846f33bSAlexander Ziaeethe terminal process group ID to the ID of the process group.
99d846f33bSAlexander ZiaeeThis facility is used
100d846f33bSAlexander Ziaeeto arbitrate between multiple jobs contending for the same terminal
101d846f33bSAlexander Ziaee.Pq see Xr csh 1 and Xr tty 4 .
102d846f33bSAlexander Ziaee.It Orphaned Process Group
103d846f33bSAlexander ZiaeeA process group is considered to be
104d846f33bSAlexander Ziaee.Em orphaned
105d846f33bSAlexander Ziaeeif it is not under the control of a job control shell.
106d846f33bSAlexander ZiaeeMore precisely, a process group is orphaned
107d846f33bSAlexander Ziaeewhen none of its members has a parent process that is in the same session
108d846f33bSAlexander Ziaeeas the group,
109d846f33bSAlexander Ziaeebut is in a different process group.
110d846f33bSAlexander ZiaeeNote that when a process exits, the parent process for its children
111d846f33bSAlexander Ziaeeis normally changed to be
112d846f33bSAlexander Ziaee.Xr init 8 ,
113d846f33bSAlexander Ziaeewhich is in a separate session.
114d846f33bSAlexander ZiaeeNot all members of an orphaned process group are necessarily orphaned
115d846f33bSAlexander Ziaeeprocesses
116d846f33bSAlexander Ziaee.Pq those whose creating process has exited .
117d846f33bSAlexander ZiaeeThe process group of a session leader is orphaned by definition.
118d846f33bSAlexander Ziaee.It Real User ID and Real Group ID
119d846f33bSAlexander ZiaeeEach user on the system is identified by a positive integer
120d846f33bSAlexander Ziaeetermed the real user ID.
121d846f33bSAlexander Ziaee.Pp
122d846f33bSAlexander ZiaeeEach user is also a member of one or more groups.
123d846f33bSAlexander ZiaeeOne of these groups is distinguished from others and
124d846f33bSAlexander Ziaeeused in implementing accounting facilities.
125d846f33bSAlexander ZiaeeThe positive
126d846f33bSAlexander Ziaeeinteger corresponding to this distinguished group is termed
127d846f33bSAlexander Ziaeethe real group ID.
128d846f33bSAlexander Ziaee.Pp
129d846f33bSAlexander ZiaeeAll processes have a real user ID and real group ID.
130d846f33bSAlexander ZiaeeThese are initialized from the equivalent attributes
131d846f33bSAlexander Ziaeeof the process that created it.
132d846f33bSAlexander Ziaee.It Effective User Id, Effective Group Id, and Group Access List
133d846f33bSAlexander ZiaeeAccess to system resources is governed by two values:
134d846f33bSAlexander Ziaeethe effective user ID, and the group access list.
135d846f33bSAlexander ZiaeeThe first member of the group access list is also known as the
136d846f33bSAlexander Ziaeeeffective group ID.
137d846f33bSAlexander ZiaeeIn POSIX.1, the group access list is known as the set of supplementary
138d846f33bSAlexander Ziaeegroup IDs, and it is unspecified whether the effective group ID is
139d846f33bSAlexander Ziaeea member of the list.
140d846f33bSAlexander Ziaee.Pp
141d846f33bSAlexander ZiaeeThe effective user ID and effective group ID are initially the
142d846f33bSAlexander Ziaeeprocess's real user ID and real group ID respectively.
143d846f33bSAlexander ZiaeeEither
144d846f33bSAlexander Ziaeemay be modified through execution of a set-user-ID or set-group-ID file
145d846f33bSAlexander Ziaee.Pq possibly by one its ancestors
146d846f33bSAlexander Ziaee.Pq see Xr execve 2 .
147d846f33bSAlexander ZiaeeBy convention, the effective group ID
148d846f33bSAlexander Ziaee.Pq the first member of the group access list
149d846f33bSAlexander Ziaeeis duplicated, so that the execution of a set-group-ID program
150d846f33bSAlexander Ziaeedoes not result in the loss of the original
151d846f33bSAlexander Ziaee.Pq real
152d846f33bSAlexander Ziaeegroup ID.
153d846f33bSAlexander Ziaee.Pp
154d846f33bSAlexander ZiaeeThe group access list is a set of group IDs
155d846f33bSAlexander Ziaeeused only in determining resource accessibility.
156d846f33bSAlexander ZiaeeAccess checks
157d846f33bSAlexander Ziaeeare performed as described below in ``File Access Permissions''.
158d846f33bSAlexander Ziaee.It Saved Set User ID and Saved Set Group ID
159d846f33bSAlexander ZiaeeWhen a process executes a new file, the effective user ID is set
160d846f33bSAlexander Ziaeeto the owner of the file if the file is set-user-ID, and the effective
161d846f33bSAlexander Ziaeegroup ID
162d846f33bSAlexander Ziaee.Pq first element of the group access list
163d846f33bSAlexander Ziaeeis set to the group of the file if the file is set-group-ID.
164d846f33bSAlexander ZiaeeThe effective user ID of the process is then recorded as the saved set-user-ID,
165d846f33bSAlexander Ziaeeand the effective group ID of the process is recorded as the saved set-group-ID.
166d846f33bSAlexander ZiaeeThese values may be used to regain those values as the effective user
167d846f33bSAlexander Ziaeeor group ID after reverting to the real ID
168d846f33bSAlexander Ziaee.Pq see Xr setuid 2 .
169d846f33bSAlexander ZiaeeIn POSIX.1, the saved set-user-ID and saved set-group-ID are optional,
170d846f33bSAlexander Ziaeeand are used in setuid and setgid, but this does not work as desired
171d846f33bSAlexander Ziaeefor the super-user.
172d846f33bSAlexander Ziaee.It Super-user
173d846f33bSAlexander ZiaeeA process is recognized as a
174d846f33bSAlexander Ziaee.Em super-user
175d846f33bSAlexander Ziaeeprocess and is granted special privileges if its effective user ID is 0.
176d846f33bSAlexander Ziaee.It Descriptor
177d846f33bSAlexander ZiaeeAn integer assigned by the system when a file is referenced
178d846f33bSAlexander Ziaeeby
179d846f33bSAlexander Ziaee.Xr open 2
180d846f33bSAlexander Ziaeeor
181d846f33bSAlexander Ziaee.Xr dup 2 ,
182d846f33bSAlexander Ziaeeor when a socket is created by
183d846f33bSAlexander Ziaee.Xr pipe 2 ,
184d846f33bSAlexander Ziaee.Xr socket 2
185d846f33bSAlexander Ziaeeor
186d846f33bSAlexander Ziaee.Xr socketpair 2 ,
187d846f33bSAlexander Ziaeewhich uniquely identifies an access path to that file or socket from
188d846f33bSAlexander Ziaeea given process or any of its children.
189d846f33bSAlexander Ziaee.It File Name
190d846f33bSAlexander ZiaeeNames consisting of up to
191d846f33bSAlexander Ziaee.Brq Dv NAME_MAX
192d846f33bSAlexander Ziaeecharacters may be used to name
193d846f33bSAlexander Ziaeean ordinary file, special file, or directory.
194d846f33bSAlexander Ziaee.Pp
195d846f33bSAlexander ZiaeeThese characters may be arbitrary eight-bit values,
196d846f33bSAlexander Ziaeeexcluding
197d846f33bSAlexander Ziaee.Dv NUL
198d846f33bSAlexander Ziaee.Pq ASCII 0
199d846f33bSAlexander Ziaeeand the
200d846f33bSAlexander Ziaee.Ql \&/
201d846f33bSAlexander Ziaeecharacter
202d846f33bSAlexander Ziaee.Pq slash, ASCII 47 .
203d846f33bSAlexander Ziaee.Pp
204d846f33bSAlexander ZiaeeNote that it is generally unwise to use
205d846f33bSAlexander Ziaee.Ql \&* ,
206d846f33bSAlexander Ziaee.Ql \&? ,
207d846f33bSAlexander Ziaee.Ql \&[
208d846f33bSAlexander Ziaeeor
209d846f33bSAlexander Ziaee.Ql \&]
210d846f33bSAlexander Ziaeeas part of
211d846f33bSAlexander Ziaeefile names because of the special meaning attached to these characters
212d846f33bSAlexander Ziaeeby the shell.
213d846f33bSAlexander Ziaee.It Path Name
214d846f33bSAlexander ZiaeeA path name is a
215d846f33bSAlexander Ziaee.Dv NUL Ns -terminated
216d846f33bSAlexander Ziaeecharacter string starting with an
217d846f33bSAlexander Ziaeeoptional slash
218d846f33bSAlexander Ziaee.Ql \&/ ,
219d846f33bSAlexander Ziaeefollowed by zero or more directory names separated
220d846f33bSAlexander Ziaeeby slashes, optionally followed by a file name.
221d846f33bSAlexander ZiaeeThe total length of a path name must be less than
222d846f33bSAlexander Ziaee.Brq Dv PATH_MAX
223d846f33bSAlexander Ziaeecharacters.
224d846f33bSAlexander ZiaeeOn some systems, this limit may be infinite.
225d846f33bSAlexander Ziaee.Pp
226d846f33bSAlexander ZiaeeIf a path name begins with a slash, the path search begins at the
227d846f33bSAlexander Ziaee.Em root
228d846f33bSAlexander Ziaeedirectory.
229d846f33bSAlexander ZiaeeOtherwise, the search begins from the current working directory.
230d846f33bSAlexander ZiaeeA slash by itself names the root directory.
231d846f33bSAlexander ZiaeeAn empty
232d846f33bSAlexander Ziaeepathname refers to the current directory.
233d846f33bSAlexander Ziaee.It Directory
234d846f33bSAlexander ZiaeeA directory is a special type of file that contains entries
235d846f33bSAlexander Ziaeethat are references to other files.
236d846f33bSAlexander ZiaeeDirectory entries are called links.
237d846f33bSAlexander ZiaeeBy convention, a directory
238d846f33bSAlexander Ziaeecontains at least two links,
239d846f33bSAlexander Ziaee.Ql .\&
240d846f33bSAlexander Ziaeeand
241d846f33bSAlexander Ziaee.Ql \&.. ,
242d846f33bSAlexander Ziaeereferred to as
243d846f33bSAlexander Ziaee.Em dot
244d846f33bSAlexander Ziaeeand
245d846f33bSAlexander Ziaee.Em dot-dot
246d846f33bSAlexander Ziaeerespectively.
247d846f33bSAlexander ZiaeeDot refers to the directory itself and
248d846f33bSAlexander Ziaeedot-dot refers to its parent directory.
249d846f33bSAlexander Ziaee.It Root Directory and Current Working Directory
250d846f33bSAlexander ZiaeeEach process has associated with it a concept of a root directory
251d846f33bSAlexander Ziaeeand a current working directory for the purpose of resolving path
252d846f33bSAlexander Ziaeename searches.
253d846f33bSAlexander ZiaeeA process's root directory need not be the root
254d846f33bSAlexander Ziaeedirectory of the root file system.
255d846f33bSAlexander Ziaee.It File Access Permissions
256d846f33bSAlexander ZiaeeEvery file in the file system has a set of access permissions.
257d846f33bSAlexander ZiaeeThese permissions are used in determining whether a process
258d846f33bSAlexander Ziaeemay perform a requested operation on the file
259d846f33bSAlexander Ziaee.Pq such as opening a file for writing .
260d846f33bSAlexander ZiaeeAccess permissions are established at the
261d846f33bSAlexander Ziaeetime a file is created.
262d846f33bSAlexander ZiaeeThey may be changed at some later time
263d846f33bSAlexander Ziaeethrough the
264d846f33bSAlexander Ziaee.Xr chmod 2
265d846f33bSAlexander Ziaeecall.
266d846f33bSAlexander Ziaee.Pp
267d846f33bSAlexander ZiaeeFile access is broken down according to whether a file may be: read,
268d846f33bSAlexander Ziaeewritten, or executed.
269d846f33bSAlexander ZiaeeDirectory files use the execute
270d846f33bSAlexander Ziaeepermission to control if the directory may be searched.
271d846f33bSAlexander Ziaee.Pp
272d846f33bSAlexander ZiaeeFile access permissions are interpreted by the system as
273d846f33bSAlexander Ziaeethey apply to three different classes of users: the owner
274d846f33bSAlexander Ziaeeof the file, those users in the file's group, anyone else.
275d846f33bSAlexander ZiaeeEvery file has an independent set of access permissions for
276d846f33bSAlexander Ziaeeeach of these classes.
277d846f33bSAlexander ZiaeeWhen an access check is made, the system
278d846f33bSAlexander Ziaeedecides if permission should be granted by checking the access
279d846f33bSAlexander Ziaeeinformation applicable to the caller.
280d846f33bSAlexander Ziaee.Pp
281d846f33bSAlexander ZiaeeRead, write, and execute/search permissions on
282d846f33bSAlexander Ziaeea file are granted to a process if:
283d846f33bSAlexander Ziaee.Pp
284d846f33bSAlexander ZiaeeThe process's effective user ID is that of the super-user.
285d846f33bSAlexander ZiaeeNote that even the super-user cannot execute a non-executable file.
286d846f33bSAlexander Ziaee.Pp
287d846f33bSAlexander ZiaeeThe process's effective user ID matches the user ID of the owner
288d846f33bSAlexander Ziaeeof the file and the owner permissions allow the access.
289d846f33bSAlexander Ziaee.Pp
290d846f33bSAlexander ZiaeeThe process's effective user ID does not match the user ID of the
291d846f33bSAlexander Ziaeeowner of the file, and either the process's effective
292d846f33bSAlexander Ziaeegroup ID matches the group ID
293d846f33bSAlexander Ziaeeof the file, or the group ID of the file is in
294d846f33bSAlexander Ziaeethe process's group access list,
295d846f33bSAlexander Ziaeeand the group permissions allow the access.
296d846f33bSAlexander Ziaee.Pp
297d846f33bSAlexander ZiaeeNeither the effective user ID nor effective group ID
298d846f33bSAlexander Ziaeeand group access list of the process
299d846f33bSAlexander Ziaeematch the corresponding user ID and group ID of the file,
300d846f33bSAlexander Ziaeebut the permissions for ``other users'' allow access.
301d846f33bSAlexander Ziaee.Pp
302d846f33bSAlexander ZiaeeOtherwise, permission is denied.
303d846f33bSAlexander Ziaee.It Sockets and Address Families
304d846f33bSAlexander ZiaeeA socket is an endpoint for communication between processes.
305d846f33bSAlexander ZiaeeEach socket has queues for sending and receiving data.
306d846f33bSAlexander Ziaee.Pp
307d846f33bSAlexander ZiaeeSockets are typed according to their communications properties.
308d846f33bSAlexander ZiaeeThese properties include whether messages sent and received
309d846f33bSAlexander Ziaeeat a socket require the name of the partner, whether communication
310d846f33bSAlexander Ziaeeis reliable, the format used in naming message recipients, etc.
311d846f33bSAlexander Ziaee.Pp
312d846f33bSAlexander ZiaeeEach instance of the system supports some
313d846f33bSAlexander Ziaeecollection of socket types; consult
314d846f33bSAlexander Ziaee.Xr socket 2
315d846f33bSAlexander Ziaeefor more information about the types available and
316d846f33bSAlexander Ziaeetheir properties.
317d846f33bSAlexander Ziaee.Pp
318d846f33bSAlexander ZiaeeEach instance of the system supports some number of sets of
319d846f33bSAlexander Ziaeecommunications protocols.
320d846f33bSAlexander ZiaeeEach protocol set supports addresses
321d846f33bSAlexander Ziaeeof a certain format.
322d846f33bSAlexander ZiaeeAn Address Family is the set of addresses
323d846f33bSAlexander Ziaeefor a specific group of protocols.
324d846f33bSAlexander ZiaeeEach socket has an address
325d846f33bSAlexander Ziaeechosen from the address family in which the socket was created.
326d846f33bSAlexander Ziaee.El
327d846f33bSAlexander Ziaee.Sh FILES
328d846f33bSAlexander Ziaee.Bl -inset -compact
329d846f33bSAlexander Ziaee.It Pa /usr/include/sys/syscall.h
330d846f33bSAlexander ZiaeeTable of currently available system calls.
331d846f33bSAlexander Ziaee.El
332d846f33bSAlexander Ziaee.Sh ERRORS
3338269e767SBrooks DavisNearly all of the system calls provide an error number referenced via
3349e8df790SAlexander Ziaeethe external identifier
3359e8df790SAlexander Ziaee.Va errno .
3368269e767SBrooks DavisThis identifier is defined in
3378269e767SBrooks Davis.In sys/errno.h
3389e8df790SAlexander Ziaeeas:
3398269e767SBrooks Davis.Pp
3408269e767SBrooks Davis.Dl extern    int *       __error();
3418269e767SBrooks Davis.Dl #define   errno       (* __error())
3428269e767SBrooks Davis.Pp
3438269e767SBrooks DavisThe
3448269e767SBrooks Davis.Va __error()
3458269e767SBrooks Davisfunction returns a pointer to a field in the thread specific structure for
3468269e767SBrooks Davisthreads other than the initial thread.
3478269e767SBrooks DavisFor the initial thread and
3488269e767SBrooks Davisnon-threaded processes,
3498269e767SBrooks Davis.Va __error()
3508269e767SBrooks Davisreturns a pointer to a global
3518269e767SBrooks Davis.Va errno
3528269e767SBrooks Davisvariable that is compatible with the previous definition.
3538269e767SBrooks Davis.Pp
3548269e767SBrooks DavisWhen a system call detects an error,
3558269e767SBrooks Davisit returns an integer value
3569e8df790SAlexander Ziaeeindicating failure
3579e8df790SAlexander Ziaee.Pq usually -1
3588269e767SBrooks Davisand sets the variable
3598269e767SBrooks Davis.Va errno
3608269e767SBrooks Davisaccordingly.
3619e8df790SAlexander ZiaeeThis allows interpretation of the failure on receiving
3629e8df790SAlexander Ziaee-1 and to take action accordingly.
3638269e767SBrooks DavisSuccessful calls never set
3648269e767SBrooks Davis.Va errno ;
3658269e767SBrooks Davisonce set, it remains until another error occurs.
3668269e767SBrooks DavisIt should only be examined after an error.
3678269e767SBrooks DavisNote that a number of system calls overload the meanings of these
3688269e767SBrooks Daviserror numbers, and that the meanings must be interpreted according
3698269e767SBrooks Davisto the type and circumstances of the call.
3708269e767SBrooks Davis.Pp
3718269e767SBrooks DavisThe following is a complete list of the errors and their
3728269e767SBrooks Davisnames as given in
3738269e767SBrooks Davis.In sys/errno.h .
3748269e767SBrooks Davis.Bl -hang -width Ds
3758269e767SBrooks Davis.It Er 0 Em "Undefined error: 0" .
3768269e767SBrooks DavisNot used.
3778269e767SBrooks Davis.It Er 1 EPERM Em "Operation not permitted" .
3788269e767SBrooks DavisAn attempt was made to perform an operation limited to processes
3798269e767SBrooks Daviswith appropriate privileges or to the owner of a file or other
3808269e767SBrooks Davisresources.
3818269e767SBrooks Davis.It Er 2 ENOENT Em "No such file or directory" .
3828269e767SBrooks DavisA component of a specified pathname did not exist, or the
3838269e767SBrooks Davispathname was an empty string.
3848269e767SBrooks Davis.It Er 3 ESRCH Em "No such process" .
3858269e767SBrooks DavisNo process could be found corresponding to that specified by the given
3868269e767SBrooks Davisprocess ID.
3878269e767SBrooks Davis.It Er 4 EINTR Em "Interrupted system call" .
3889e8df790SAlexander ZiaeeAn asynchronous signal
3899e8df790SAlexander Ziaee.Pq such as Dv SIGINT or Dv SIGQUIT
3908269e767SBrooks Daviswas caught by the process during the execution of an interruptible
3918269e767SBrooks Davisfunction.
3928269e767SBrooks DavisIf the signal handler performs a normal return, the
3938269e767SBrooks Davisinterrupted system call will seem to have returned the error condition.
3948269e767SBrooks Davis.It Er 5 EIO Em "Input/output error" .
3958269e767SBrooks DavisSome physical input or output error occurred.
3968269e767SBrooks DavisThis error will not be reported until a subsequent operation on the same file
3979e8df790SAlexander Ziaeedescriptor and may be lost
3989e8df790SAlexander Ziaee.Pq over written
3999e8df790SAlexander Ziaeeby any subsequent errors.
4008269e767SBrooks Davis.It Er 6 ENXIO Em "Device not configured" .
4018269e767SBrooks DavisInput or output on a special file referred to a device that did not
4028269e767SBrooks Davisexist, or
4038269e767SBrooks Davismade a request beyond the limits of the device.
4048269e767SBrooks DavisThis error may also occur when, for example,
4058269e767SBrooks Davisa tape drive is not online or no disk pack is
4068269e767SBrooks Davisloaded on a drive.
4078269e767SBrooks Davis.It Er 7 E2BIG Em "Argument list too long" .
4088269e767SBrooks DavisThe number of bytes used for the argument and environment
4098269e767SBrooks Davislist of the new process exceeded the current limit
4109e8df790SAlexander Ziaee.Pq Dv NCARGS in In sys/param.h .
4118269e767SBrooks Davis.It Er 8 ENOEXEC Em "Exec format error" .
4128269e767SBrooks DavisA request was made to execute a file
4138269e767SBrooks Davisthat, although it has the appropriate permissions,
4148269e767SBrooks Daviswas not in the format required for an
4158269e767SBrooks Davisexecutable file.
4168269e767SBrooks Davis.It Er 9 EBADF Em "Bad file descriptor" .
4178269e767SBrooks DavisA file descriptor argument was out of range, referred to no open file,
4189e8df790SAlexander Ziaeeor a read
4199e8df790SAlexander Ziaee.Pq write
4209e8df790SAlexander Ziaeerequest was made to a file that was only open for writing
4219e8df790SAlexander Ziaee.Pq reading .
4228269e767SBrooks Davis.It Er 10 ECHILD Em "\&No child processes" .
4238269e767SBrooks DavisA
4249e8df790SAlexander Ziaee.Xr wait 2 or Xr waitpid 2
4258269e767SBrooks Davisfunction was executed by a process that had no existing or unwaited-for
4268269e767SBrooks Davischild processes.
4278269e767SBrooks Davis.It Er 11 EDEADLK Em "Resource deadlock avoided" .
4288269e767SBrooks DavisAn attempt was made to lock a system resource that
4298269e767SBrooks Daviswould have resulted in a deadlock situation.
4308269e767SBrooks Davis.It Er 12 ENOMEM Em "Cannot allocate memory" .
4318269e767SBrooks DavisThe new process image required more memory than was allowed by the hardware
4328269e767SBrooks Davisor by system-imposed memory management constraints.
4338269e767SBrooks DavisA lack of swap space is normally temporary; however,
4348269e767SBrooks Davisa lack of core is not.
4358269e767SBrooks DavisSoft limits may be increased to their corresponding hard limits.
4368269e767SBrooks Davis.It Er 13 EACCES Em "Permission denied" .
4378269e767SBrooks DavisAn attempt was made to access a file in a way forbidden
4388269e767SBrooks Davisby its file access permissions.
4398269e767SBrooks Davis.It Er 14 EFAULT Em "Bad address" .
4408269e767SBrooks DavisThe system detected an invalid address in attempting to
4418269e767SBrooks Davisuse an argument of a call.
4428269e767SBrooks Davis.It Er 15 ENOTBLK Em "Block device required" .
4438269e767SBrooks DavisA block device operation was attempted on a non-block device or file.
4448269e767SBrooks Davis.It Er 16 EBUSY Em "Device busy" .
4458269e767SBrooks DavisAn attempt to use a system resource which was in use at the time
4468269e767SBrooks Davisin a manner which would have conflicted with the request.
4478269e767SBrooks Davis.It Er 17 EEXIST Em "File exists" .
4488269e767SBrooks DavisAn existing file was mentioned in an inappropriate context,
4498269e767SBrooks Davisfor instance, as the new link name in a
4508269e767SBrooks Davis.Xr link 2
4518269e767SBrooks Davissystem call.
4528269e767SBrooks Davis.It Er 18 EXDEV Em "Cross-device link" .
4538269e767SBrooks DavisA hard link to a file on another file system
4548269e767SBrooks Daviswas attempted.
4558269e767SBrooks Davis.It Er 19 ENODEV Em "Operation not supported by device" .
4568269e767SBrooks DavisAn attempt was made to apply an inappropriate
4578269e767SBrooks Davisfunction to a device,
4588269e767SBrooks Davisfor example,
4598269e767SBrooks Davistrying to read a write-only device such as a printer.
4608269e767SBrooks Davis.It Er 20 ENOTDIR Em "Not a directory" .
4618269e767SBrooks DavisA component of the specified pathname existed, but it was
4628269e767SBrooks Davisnot a directory, when a directory was expected.
4638269e767SBrooks Davis.It Er 21 EISDIR Em "Is a directory" .
4648269e767SBrooks DavisAn attempt was made to open a directory with write mode specified.
4658269e767SBrooks Davis.It Er 22 EINVAL Em "Invalid argument" .
4668269e767SBrooks DavisSome invalid argument was supplied.
4679e8df790SAlexander ZiaeeFor example, specifying an undefined signal to a
4688269e767SBrooks Davis.Xr signal 3
4699e8df790SAlexander Ziaeefunction or a
4708269e767SBrooks Davis.Xr kill 2
4719e8df790SAlexander Ziaeesystem call.
4728269e767SBrooks Davis.It Er 23 ENFILE Em "Too many open files in system" .
4738269e767SBrooks DavisMaximum number of open files allowable on the system
4748269e767SBrooks Davishas been reached and requests for an open cannot be satisfied
4758269e767SBrooks Davisuntil at least one has been closed.
4768269e767SBrooks Davis.It Er 24 EMFILE Em "Too many open files" .
4778269e767SBrooks DavisMaximum number of file descriptors allowable in the process
4788269e767SBrooks Davishas been reached and requests for an open cannot be satisfied
4798269e767SBrooks Davisuntil at least one has been closed.
4808269e767SBrooks DavisThe
4818269e767SBrooks Davis.Xr getdtablesize 2
4828269e767SBrooks Davissystem call will obtain the current limit.
4838269e767SBrooks Davis.It Er 25 ENOTTY Em "Inappropriate ioctl for device" .
4849e8df790SAlexander ZiaeeA control function
4859e8df790SAlexander Ziaee.Pq see Xr ioctl 2
4868269e767SBrooks Daviswas attempted for a file or
4878269e767SBrooks Davisspecial device for which the operation was inappropriate.
4888269e767SBrooks Davis.It Er 26 ETXTBSY Em "Text file busy" .
4899e8df790SAlexander ZiaeeThe new process was a pure procedure
4909e8df790SAlexander Ziaee.Pq shared text
4919e8df790SAlexander Ziaeefile which was open for writing by another process, or
4928269e767SBrooks Daviswhile the pure procedure file was being executed an
4938269e767SBrooks Davis.Xr open 2
4948269e767SBrooks Daviscall requested write access.
4958269e767SBrooks Davis.It Er 27 EFBIG Em "File too large" .
4968269e767SBrooks DavisThe size of a file exceeded the maximum.
4978269e767SBrooks Davis.It Er 28 ENOSPC Em "No space left on device" .
4988269e767SBrooks DavisA
4998269e767SBrooks Davis.Xr write 2
5008269e767SBrooks Davisto an ordinary file, the creation of a
5018269e767SBrooks Davisdirectory or symbolic link, or the creation of a directory
5028269e767SBrooks Davisentry failed because no more disk blocks were available
5038269e767SBrooks Davison the file system, or the allocation of an inode for a newly
5048269e767SBrooks Daviscreated file failed because no more inodes were available
5058269e767SBrooks Davison the file system.
5068269e767SBrooks Davis.It Er 29 ESPIPE Em "Illegal seek" .
5078269e767SBrooks DavisAn
5088269e767SBrooks Davis.Xr lseek 2
5099e8df790SAlexander Ziaeesystem call was issued on a socket, pipe or FIFO.
5108269e767SBrooks Davis.It Er 30 EROFS Em "Read-only file system" .
5118269e767SBrooks DavisAn attempt was made to modify a file or directory
5128269e767SBrooks Davison a file system that was read-only at the time.
5138269e767SBrooks Davis.It Er 31 EMLINK Em "Too many links" .
5149e8df790SAlexander ZiaeeMaximum allowable hard links to a single file has been exceeded
5159e8df790SAlexander Ziaee.Pq limit of 32767 hard links per file .
5168269e767SBrooks Davis.It Er 32 EPIPE Em "Broken pipe" .
5179e8df790SAlexander ZiaeeA write on a pipe, socket or FIFO for which there is no process to read
5189e8df790SAlexander Ziaeethe data.
5198269e767SBrooks Davis.It Er 33 EDOM Em "Numerical argument out of domain" .
5208269e767SBrooks DavisA numerical input argument was outside the defined domain of the mathematical
5218269e767SBrooks Davisfunction.
5228269e767SBrooks Davis.It Er 34 ERANGE Em "Result too large" .
5238269e767SBrooks DavisA numerical result of the function was too large to fit in the
5249e8df790SAlexander Ziaeeavailable space
5259e8df790SAlexander Ziaee.Pq perhaps exceeded precision .
5268269e767SBrooks Davis.It Er 35 EAGAIN Em "Resource temporarily unavailable" .
5278269e767SBrooks DavisThis is a temporary condition and later calls to the
5288269e767SBrooks Davissame routine may complete normally.
5298269e767SBrooks Davis.It Er 36 EINPROGRESS Em "Operation now in progress" .
5309e8df790SAlexander ZiaeeAn operation that takes a long time to complete, such as
5319e8df790SAlexander Ziaee.Xr connect 2 ,
5329e8df790SAlexander Ziaeewas attempted on a non-blocking object
5339e8df790SAlexander Ziaee.Pq see Xr fcntl 2 .
5348269e767SBrooks Davis.It Er 37 EALREADY Em "Operation already in progress" .
5358269e767SBrooks DavisAn operation was attempted on a non-blocking object that already
5368269e767SBrooks Davishad an operation in progress.
5378269e767SBrooks Davis.It Er 38 ENOTSOCK Em "Socket operation on non-socket" .
5388269e767SBrooks DavisSelf-explanatory.
5398269e767SBrooks Davis.It Er 39 EDESTADDRREQ Em "Destination address required" .
5408269e767SBrooks DavisA required address was omitted from an operation on a socket.
5418269e767SBrooks Davis.It Er 40 EMSGSIZE Em "Message too long" .
5428269e767SBrooks DavisA message sent on a socket was larger than the internal message buffer
5438269e767SBrooks Davisor some other network limit.
5448269e767SBrooks Davis.It Er 41 EPROTOTYPE Em "Protocol wrong type for socket" .
5458269e767SBrooks DavisA protocol was specified that does not support the semantics of the
5468269e767SBrooks Davissocket type requested.
5479e8df790SAlexander ZiaeeFor example, you cannot use the ARPA Internet UDP protocol with type
5488269e767SBrooks Davis.Dv SOCK_STREAM .
5498269e767SBrooks Davis.It Er 42 ENOPROTOOPT Em "Protocol not available" .
5508269e767SBrooks DavisA bad option or level was specified in a
5518269e767SBrooks Davis.Xr getsockopt 2
5528269e767SBrooks Davisor
5538269e767SBrooks Davis.Xr setsockopt 2
5548269e767SBrooks Daviscall.
5558269e767SBrooks Davis.It Er 43 EPROTONOSUPPORT Em "Protocol not supported" .
5568269e767SBrooks DavisThe protocol has not been configured into the
5578269e767SBrooks Davissystem or no implementation for it exists.
5588269e767SBrooks Davis.It Er 44 ESOCKTNOSUPPORT Em "Socket type not supported" .
5598269e767SBrooks DavisThe support for the socket type has not been configured into the
5608269e767SBrooks Davissystem or no implementation for it exists.
5618269e767SBrooks Davis.It Er 45 EOPNOTSUPP Em "Operation not supported" .
5628269e767SBrooks DavisThe attempted operation is not supported for the type of object referenced.
5638269e767SBrooks DavisUsually this occurs when a file descriptor refers to a file or socket
5648269e767SBrooks Davisthat cannot support this operation,
5658269e767SBrooks Davisfor example, trying to
5668269e767SBrooks Davis.Em accept
5678269e767SBrooks Davisa connection on a datagram socket.
5688269e767SBrooks Davis.It Er 46 EPFNOSUPPORT Em "Protocol family not supported" .
5698269e767SBrooks DavisThe protocol family has not been configured into the
5708269e767SBrooks Davissystem or no implementation for it exists.
5718269e767SBrooks Davis.It Er 47 EAFNOSUPPORT Em "Address family not supported by protocol family" .
5728269e767SBrooks DavisAn address incompatible with the requested protocol was used.
5738269e767SBrooks DavisFor example, you should not necessarily expect to be able to use
5749e8df790SAlexander ZiaeeNS addresses with ARPA Internet protocols.
5758269e767SBrooks Davis.It Er 48 EADDRINUSE Em "Address already in use" .
5768269e767SBrooks DavisOnly one usage of each address is normally permitted.
5778269e767SBrooks Davis.It Er 49 EADDRNOTAVAIL Em "Can't assign requested address" .
5788269e767SBrooks DavisNormally results from an attempt to create a socket with an
5798269e767SBrooks Davisaddress not on this machine.
5808269e767SBrooks Davis.It Er 50 ENETDOWN Em "Network is down" .
5818269e767SBrooks DavisA socket operation encountered a dead network.
5828269e767SBrooks Davis.It Er 51 ENETUNREACH Em "Network is unreachable" .
5838269e767SBrooks DavisA socket operation was attempted to an unreachable network.
5848269e767SBrooks Davis.It Er 52 ENETRESET Em "Network dropped connection on reset" .
5858269e767SBrooks DavisThe host you were connected to crashed and rebooted.
5868269e767SBrooks Davis.It Er 53 ECONNABORTED Em "Software caused connection abort" .
5878269e767SBrooks DavisA connection abort was caused internal to your host machine.
5888269e767SBrooks Davis.It Er 54 ECONNRESET Em "Connection reset by peer" .
5898269e767SBrooks DavisA connection was forcibly closed by a peer.
5908269e767SBrooks DavisThis normally
5918269e767SBrooks Davisresults from a loss of the connection on the remote socket
5928269e767SBrooks Davisdue to a timeout or a reboot.
5938269e767SBrooks Davis.It Er 55 ENOBUFS Em "\&No buffer space available" .
5948269e767SBrooks DavisAn operation on a socket or pipe was not performed because
5958269e767SBrooks Davisthe system lacked sufficient buffer space or because a queue was full.
5968269e767SBrooks Davis.It Er 56 EISCONN Em "Socket is already connected" .
5978269e767SBrooks DavisA
5988269e767SBrooks Davis.Xr connect 2
5998269e767SBrooks Davisrequest was made on an already connected socket; or,
6008269e767SBrooks Davisa
6018269e767SBrooks Davis.Xr sendto 2
6028269e767SBrooks Davisor
6038269e767SBrooks Davis.Xr sendmsg 2
6048269e767SBrooks Davisrequest on a connected socket specified a destination
6058269e767SBrooks Daviswhen already connected.
6068269e767SBrooks Davis.It Er 57 ENOTCONN Em "Socket is not connected" .
6078269e767SBrooks DavisAn request to send or receive data was disallowed because
6089e8df790SAlexander Ziaeethe socket was not connected and
6099e8df790SAlexander Ziaee.Pq when sending on a datagram socket
6108269e767SBrooks Davisno address was supplied.
6118269e767SBrooks Davis.It Er 58 ESHUTDOWN Em "Can't send after socket shutdown" .
6128269e767SBrooks DavisA request to send data was disallowed because the socket
6138269e767SBrooks Davishad already been shut down with a previous
6148269e767SBrooks Davis.Xr shutdown 2
6158269e767SBrooks Daviscall.
6168269e767SBrooks Davis.It Er 60 ETIMEDOUT Em "Operation timed out" .
6178269e767SBrooks DavisA
6188269e767SBrooks Davis.Xr connect 2
6198269e767SBrooks Davisor
6208269e767SBrooks Davis.Xr send 2
6218269e767SBrooks Davisrequest failed because the connected party did not
6228269e767SBrooks Davisproperly respond after a period of time.
6239e8df790SAlexander ZiaeeThe timeout period is dependent on the communication protocol.
6248269e767SBrooks Davis.It Er 61 ECONNREFUSED Em "Connection refused" .
6258269e767SBrooks DavisNo connection could be made because the target machine actively
6268269e767SBrooks Davisrefused it.
6278269e767SBrooks DavisThis usually results from trying to connect
6288269e767SBrooks Davisto a service that is inactive on the foreign host.
6298269e767SBrooks Davis.It Er 62 ELOOP Em "Too many levels of symbolic links" .
6308269e767SBrooks DavisA path name lookup involved more than 32
6318269e767SBrooks Davis.Pq Dv MAXSYMLINKS
6328269e767SBrooks Davissymbolic links.
6338269e767SBrooks Davis.It Er 63 ENAMETOOLONG Em "File name too long" .
6348269e767SBrooks DavisA component of a path name exceeded
6358269e767SBrooks Davis.Brq Dv NAME_MAX
6368269e767SBrooks Davischaracters, or an entire
6378269e767SBrooks Davispath name exceeded
6388269e767SBrooks Davis.Brq Dv PATH_MAX
6398269e767SBrooks Davischaracters.
6409e8df790SAlexander ZiaeeSee also the description of
6419e8df790SAlexander Ziaee.Dv _PC_NO_TRUNC in Xr pathconf 2 .
6428269e767SBrooks Davis.It Er 64 EHOSTDOWN Em "Host is down" .
6438269e767SBrooks DavisA socket operation failed because the destination host was down.
6448269e767SBrooks Davis.It Er 65 EHOSTUNREACH Em "No route to host" .
6458269e767SBrooks DavisA socket operation was attempted to an unreachable host.
6468269e767SBrooks Davis.It Er 66 ENOTEMPTY Em "Directory not empty" .
6478269e767SBrooks DavisA directory with entries other than
6488269e767SBrooks Davis.Ql .\&
6498269e767SBrooks Davisand
6508269e767SBrooks Davis.Ql ..\&
6518269e767SBrooks Daviswas supplied to a remove directory or rename call.
6528269e767SBrooks Davis.It Er 67 EPROCLIM Em "Too many processes" .
6538269e767SBrooks Davis.It Er 68 EUSERS Em "Too many users" .
6548269e767SBrooks DavisThe quota system ran out of table entries.
6558269e767SBrooks Davis.It Er 69 EDQUOT Em "Disc quota exceeded" .
6568269e767SBrooks DavisA
6578269e767SBrooks Davis.Xr write 2
6588269e767SBrooks Davisto an ordinary file, the creation of a
6598269e767SBrooks Davisdirectory or symbolic link, or the creation of a directory
6608269e767SBrooks Davisentry failed because the user's quota of disk blocks was
6618269e767SBrooks Davisexhausted, or the allocation of an inode for a newly
6628269e767SBrooks Daviscreated file failed because the user's quota of inodes
6638269e767SBrooks Daviswas exhausted.
6648269e767SBrooks Davis.It Er 70 ESTALE Em "Stale NFS file handle" .
6659e8df790SAlexander ZiaeeAn attempt was made to access an open file
6669e8df790SAlexander Ziaee.Pq on an NFS file system
6678269e767SBrooks Daviswhich is now unavailable as referenced by the file descriptor.
6689e8df790SAlexander ZiaeeThis may indicate the file was deleted on the NFS server or some
6698269e767SBrooks Davisother catastrophic event occurred.
6708269e767SBrooks Davis.It Er 72 EBADRPC Em "RPC struct is bad" .
6719e8df790SAlexander ZiaeeExchange of RPC information was unsuccessful.
6728269e767SBrooks Davis.It Er 73 ERPCMISMATCH Em "RPC version wrong" .
6739e8df790SAlexander ZiaeeThe version of RPC on the remote peer is not compatible with
6748269e767SBrooks Davisthe local version.
6758269e767SBrooks Davis.It Er 74 EPROGUNAVAIL Em "RPC prog. not avail" .
6768269e767SBrooks DavisThe requested program is not registered on the remote host.
6778269e767SBrooks Davis.It Er 75 EPROGMISMATCH Em "Program version wrong" .
6788269e767SBrooks DavisThe requested version of the program is not available
6798269e767SBrooks Davison the remote host
6809e8df790SAlexander Ziaee.Pq RPC .
6818269e767SBrooks Davis.It Er 76 EPROCUNAVAIL Em "Bad procedure for program" .
6829e8df790SAlexander ZiaeeAn RPC call was attempted for a procedure which does not exist
6838269e767SBrooks Davisin the remote program.
6848269e767SBrooks Davis.It Er 77 ENOLCK Em "No locks available" .
6858269e767SBrooks DavisA system-imposed limit on the number of simultaneous file
6868269e767SBrooks Davislocks was reached.
6878269e767SBrooks Davis.It Er 78 ENOSYS Em "Function not implemented" .
6888269e767SBrooks DavisAttempted a system call that is not available on this
6898269e767SBrooks Davissystem.
6908269e767SBrooks Davis.It Er 79 EFTYPE Em "Inappropriate file type or format" .
6918269e767SBrooks DavisThe file was the wrong type for the operation, or a data file had
6928269e767SBrooks Davisthe wrong format.
6938269e767SBrooks Davis.It Er 80 EAUTH Em "Authentication error" .
6948269e767SBrooks DavisAttempted to use an invalid authentication ticket to mount a
6959e8df790SAlexander ZiaeeNFS file system.
6968269e767SBrooks Davis.It Er 81 ENEEDAUTH Em "Need authenticator" .
6979e8df790SAlexander ZiaeeAn authentication ticket must be obtained before the given NFS
6988269e767SBrooks Davisfile system may be mounted.
6998269e767SBrooks Davis.It Er 82 EIDRM Em "Identifier removed" .
7008269e767SBrooks DavisAn IPC identifier was removed while the current process was waiting on it.
7018269e767SBrooks Davis.It Er 83 ENOMSG Em "No message of desired type" .
7028269e767SBrooks DavisAn IPC message queue does not contain a message of the desired type, or a
7038269e767SBrooks Davismessage catalog does not contain the requested message.
7048269e767SBrooks Davis.It Er 84 EOVERFLOW Em "Value too large to be stored in data type" .
7058269e767SBrooks DavisA numerical result of the function was too large to be stored in the caller
7068269e767SBrooks Davisprovided space.
7078269e767SBrooks Davis.It Er 85 ECANCELED Em "Operation canceled" .
7088269e767SBrooks DavisThe scheduled operation was canceled.
7098269e767SBrooks Davis.It Er 86 EILSEQ Em "Illegal byte sequence" .
7108269e767SBrooks DavisWhile decoding a multibyte character the function came along an
7118269e767SBrooks Davisinvalid or an incomplete sequence of bytes or the given wide
7128269e767SBrooks Davischaracter is invalid.
7138269e767SBrooks Davis.It Er 87 ENOATTR Em "Attribute not found" .
7148269e767SBrooks DavisThe specified extended attribute does not exist.
7158269e767SBrooks Davis.It Er 88 EDOOFUS Em "Programming error" .
7168269e767SBrooks DavisA function or API is being abused in a way which could only be detected
7178269e767SBrooks Davisat run-time.
7188269e767SBrooks Davis.It Er 89 EBADMSG Em "Bad message" .
7198269e767SBrooks DavisA corrupted message was detected.
7208269e767SBrooks Davis.It Er 90 EMULTIHOP Em "Multihop attempted" .
7218269e767SBrooks DavisThis error code is unused, but present for compatibility with other systems.
7228269e767SBrooks Davis.It Er 91 ENOLINK Em "Link has been severed" .
7238269e767SBrooks DavisThis error code is unused, but present for compatibility with other systems.
7248269e767SBrooks Davis.It Er 92 EPROTO Em "Protocol error" .
7258269e767SBrooks DavisA device or socket encountered an unrecoverable protocol error.
7268269e767SBrooks Davis.It Er 93 ENOTCAPABLE Em "Capabilities insufficient" .
7278269e767SBrooks DavisAn operation on a capability file descriptor requires greater privilege than
7288269e767SBrooks Davisthe capability allows.
7298269e767SBrooks Davis.It Er 94 ECAPMODE Em "Not permitted in capability mode" .
7308269e767SBrooks DavisThe system call or operation is not permitted for capability mode processes.
7318269e767SBrooks Davis.It Er 95 ENOTRECOVERABLE Em "State not recoverable" .
7328269e767SBrooks DavisThe state protected by a robust mutex is not recoverable.
7338269e767SBrooks Davis.It Er 96 EOWNERDEAD Em "Previous owner died" .
7348269e767SBrooks DavisThe owner of a robust mutex terminated while holding the mutex lock.
7358269e767SBrooks Davis.It Er 97 EINTEGRITY Em "Integrity check failed" .
7368269e767SBrooks DavisAn integrity check such as a check-hash or a cross-correlation failed.
7378269e767SBrooks DavisThe integrity error falls in the kernel I/O stack between
7388269e767SBrooks Davis.Er EINVAL
7398269e767SBrooks Davisthat identifies errors in parameters to a system call and
7408269e767SBrooks Davis.Er EIO
7418269e767SBrooks Davisthat identifies errors with the underlying storage media.
7428269e767SBrooks DavisIt is typically raised by intermediate kernel layers such as a
7438269e767SBrooks Davisfilesystem or an in-kernel GEOM subsystem when they detect inconsistencies.
7448269e767SBrooks DavisUses include allowing the
7458269e767SBrooks Davis.Xr mount 8
7468269e767SBrooks Daviscommand to return a different exit value to automate the running of
7478269e767SBrooks Davis.Xr fsck 8
7488269e767SBrooks Davisduring a system boot.
7498269e767SBrooks Davis.El
7508269e767SBrooks Davis.Sh SEE ALSO
7518269e767SBrooks Davis.Xr intro 3 ,
7528269e767SBrooks Davis.Xr perror 3
753bcc57e97SAlexander Ziaee.Sh HISTORY
754bcc57e97SAlexander ZiaeeThe
755bcc57e97SAlexander Ziaee.Nm Ns Pq 2
756bcc57e97SAlexander Ziaeemanual page first appeared in
757bcc57e97SAlexander Ziaee.At v5 .
758