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