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