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