sysexits.h revision 1.1 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1987 Regents of the University of California.
3 1.1 cgd * All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd *
33 1.1 cgd * @(#)sysexits.h 4.8 (Berkeley) 4/3/91
34 1.1 cgd */
35 1.1 cgd
36 1.1 cgd #ifndef _SYSEXITS_H_
37 1.1 cgd #define _SYSEXIST_H_
38 1.1 cgd
39 1.1 cgd /*
40 1.1 cgd * SYSEXITS.H -- Exit status codes for system programs.
41 1.1 cgd *
42 1.1 cgd * This include file attempts to categorize possible error
43 1.1 cgd * exit statuses for system programs, notably delivermail
44 1.1 cgd * and the Berkeley network.
45 1.1 cgd *
46 1.1 cgd * Error numbers begin at EX__BASE to reduce the possibility of
47 1.1 cgd * clashing with other exit statuses that random programs may
48 1.1 cgd * already return. The meaning of the codes is approximately
49 1.1 cgd * as follows:
50 1.1 cgd *
51 1.1 cgd * EX_USAGE -- The command was used incorrectly, e.g., with
52 1.1 cgd * the wrong number of arguments, a bad flag, a bad
53 1.1 cgd * syntax in a parameter, or whatever.
54 1.1 cgd * EX_DATAERR -- The input data was incorrect in some way.
55 1.1 cgd * This should only be used for user's data & not
56 1.1 cgd * system files.
57 1.1 cgd * EX_NOINPUT -- An input file (not a system file) did not
58 1.1 cgd * exist or was not readable. This could also include
59 1.1 cgd * errors like "No message" to a mailer (if it cared
60 1.1 cgd * to catch it).
61 1.1 cgd * EX_NOUSER -- The user specified did not exist. This might
62 1.1 cgd * be used for mail addresses or remote logins.
63 1.1 cgd * EX_NOHOST -- The host specified did not exist. This is used
64 1.1 cgd * in mail addresses or network requests.
65 1.1 cgd * EX_UNAVAILABLE -- A service is unavailable. This can occur
66 1.1 cgd * if a support program or file does not exist. This
67 1.1 cgd * can also be used as a catchall message when something
68 1.1 cgd * you wanted to do doesn't work, but you don't know
69 1.1 cgd * why.
70 1.1 cgd * EX_SOFTWARE -- An internal software error has been detected.
71 1.1 cgd * This should be limited to non-operating system related
72 1.1 cgd * errors as possible.
73 1.1 cgd * EX_OSERR -- An operating system error has been detected.
74 1.1 cgd * This is intended to be used for such things as "cannot
75 1.1 cgd * fork", "cannot create pipe", or the like. It includes
76 1.1 cgd * things like getuid returning a user that does not
77 1.1 cgd * exist in the passwd file.
78 1.1 cgd * EX_OSFILE -- Some system file (e.g., /etc/passwd, /etc/utmp,
79 1.1 cgd * etc.) does not exist, cannot be opened, or has some
80 1.1 cgd * sort of error (e.g., syntax error).
81 1.1 cgd * EX_CANTCREAT -- A (user specified) output file cannot be
82 1.1 cgd * created.
83 1.1 cgd * EX_IOERR -- An error occurred while doing I/O on some file.
84 1.1 cgd * EX_TEMPFAIL -- temporary failure, indicating something that
85 1.1 cgd * is not really an error. In sendmail, this means
86 1.1 cgd * that a mailer (e.g.) could not create a connection,
87 1.1 cgd * and the request should be reattempted later.
88 1.1 cgd * EX_PROTOCOL -- the remote system returned something that
89 1.1 cgd * was "not possible" during a protocol exchange.
90 1.1 cgd * EX_NOPERM -- You did not have sufficient permission to
91 1.1 cgd * perform the operation. This is not intended for
92 1.1 cgd * file system problems, which should use NOINPUT or
93 1.1 cgd * CANTCREAT, but rather for higher level permissions.
94 1.1 cgd */
95 1.1 cgd
96 1.1 cgd #define EX_OK 0 /* successful termination */
97 1.1 cgd
98 1.1 cgd #define EX__BASE 64 /* base value for error messages */
99 1.1 cgd
100 1.1 cgd #define EX_USAGE 64 /* command line usage error */
101 1.1 cgd #define EX_DATAERR 65 /* data format error */
102 1.1 cgd #define EX_NOINPUT 66 /* cannot open input */
103 1.1 cgd #define EX_NOUSER 67 /* addressee unknown */
104 1.1 cgd #define EX_NOHOST 68 /* host name unknown */
105 1.1 cgd #define EX_UNAVAILABLE 69 /* service unavailable */
106 1.1 cgd #define EX_SOFTWARE 70 /* internal software error */
107 1.1 cgd #define EX_OSERR 71 /* system error (e.g., can't fork) */
108 1.1 cgd #define EX_OSFILE 72 /* critical OS file missing */
109 1.1 cgd #define EX_CANTCREAT 73 /* can't create (user) output file */
110 1.1 cgd #define EX_IOERR 74 /* input/output error */
111 1.1 cgd #define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */
112 1.1 cgd #define EX_PROTOCOL 76 /* remote error in protocol */
113 1.1 cgd #define EX_NOPERM 77 /* permission denied */
114 1.1 cgd #define EX_CONFIG 78 /* configuration error */
115 1.1 cgd
116 1.1 cgd #define EX__MAX 78 /* maximum listed value */
117 1.1 cgd
118 1.1 cgd #endif /* !_SYSEXIST_H_ */
119