]> git.sur5r.net Git - openldap/blob - include/sysexits-compat.h
Initial checkin of ldap_search_ext() and friends.
[openldap] / include / sysexits-compat.h
1 /*
2  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted only
6  * as authorized by the OpenLDAP Public License.  A copy of this
7  * license is available at http://www.OpenLDAP.org/license.html or
8  * in file LICENSE in the top-level directory of the distribution.
9  */
10 /* Portions
11  * Copyright (c) 1987 Regents of the University of California.
12  * All rights reserved.
13  *
14  * Redistribution and use in source and binary forms are permitted
15  * provided that the above copyright notice and this paragraph are
16  * duplicated in all such forms and that any documentation,
17  * advertising materials, and other materials related to such
18  * distribution and use acknowledge that the software was developed
19  * by the University of California, Berkeley.  The name of the
20  * University may not be used to endorse or promote products derived
21  * from this software without specific prior written permission.
22  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
24  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
25  *
26  *      @(#)sysexits.h  4.5 (Berkeley) 7/6/88
27  */
28
29 /*
30 **  SYSEXITS.H -- Exit status codes for system programs.
31 **
32 **      This include file attempts to categorize possible error
33 **      exit statuses for system programs, notably delivermail
34 **      and the Berkeley network.
35 **
36 **      Error numbers begin at EX__BASE to reduce the possibility of
37 **      clashing with other exit statuses that random programs may
38 **      already return.  The meaning of the codes is approximately
39 **      as follows:
40 **
41 **      EX_USAGE -- The command was used incorrectly, e.g., with
42 **              the wrong number of arguments, a bad flag, a bad
43 **              syntax in a parameter, or whatever.
44 **      EX_DATAERR -- The input data was incorrect in some way.
45 **              This should only be used for user's data & not
46 **              system files.
47 **      EX_NOINPUT -- An input file (not a system file) did not
48 **              exist or was not readable.  This could also include
49 **              errors like "No message" to a mailer (if it cared
50 **              to catch it).
51 **      EX_NOUSER -- The user specified did not exist.  This might
52 **              be used for mail addresses or remote logins.
53 **      EX_NOHOST -- The host specified did not exist.  This is used
54 **              in mail addresses or network requests.
55 **      EX_UNAVAILABLE -- A service is unavailable.  This can occur
56 **              if a support program or file does not exist.  This
57 **              can also be used as a catchall message when something
58 **              you wanted to do doesn't work, but you don't know
59 **              why.
60 **      EX_SOFTWARE -- An internal software error has been detected.
61 **              This should be limited to non-operating system related
62 **              errors as possible.
63 **      EX_OSERR -- An operating system error has been detected.
64 **              This is intended to be used for such things as "cannot
65 **              fork", "cannot create pipe", or the like.  It includes
66 **              things like getuid returning a user that does not
67 **              exist in the passwd file.
68 **      EX_OSFILE -- Some system file (e.g., /etc/passwd, /etc/utmp,
69 **              etc.) does not exist, cannot be opened, or has some
70 **              sort of error (e.g., syntax error).
71 **      EX_CANTCREAT -- A (user specified) output file cannot be
72 **              created.
73 **      EX_IOERR -- An error occurred while doing I/O on some file.
74 **      EX_TEMPFAIL -- temporary failure, indicating something that
75 **              is not really an error.  In sendmail, this means
76 **              that a mailer (e.g.) could not create a connection,
77 **              and the request should be reattempted later.
78 **      EX_PROTOCOL -- the remote system returned something that
79 **              was "not possible" during a protocol exchange.
80 **      EX_NOPERM -- You did not have sufficient permission to
81 **              perform the operation.  This is not intended for
82 **              file system problems, which should use NOINPUT or
83 **              CANTCREAT, but rather for higher level permissions.
84 **              For example, kre uses this to restrict who students
85 **              can send mail to.
86 **
87 **      Maintained by Eric Allman (eric@berkeley, ucbvax!eric) --
88 **              please mail changes to me.
89 **
90 **                      @(#)sysexits.h  4.5             7/6/88
91 */
92
93 # define EX_OK          0       /* successful termination */
94
95 # define EX__BASE       64      /* base value for error messages */
96
97 # define EX_USAGE       64      /* command line usage error */
98 # define EX_DATAERR     65      /* data format error */
99 # define EX_NOINPUT     66      /* cannot open input */
100 # define EX_NOUSER      67      /* addressee unknown */
101 # define EX_NOHOST      68      /* host name unknown */
102 # define EX_UNAVAILABLE 69      /* service unavailable */
103 # define EX_SOFTWARE    70      /* internal software error */
104 # define EX_OSERR       71      /* system error (e.g., can't fork) */
105 # define EX_OSFILE      72      /* critical OS file missing */
106 # define EX_CANTCREAT   73      /* can't create (user) output file */
107 # define EX_IOERR       74      /* input/output error */
108 # define EX_TEMPFAIL    75      /* temp failure; user is invited to retry */
109 # define EX_PROTOCOL    76      /* remote error in protocol */
110 # define EX_NOPERM      77      /* permission denied */
111 # define EX_CONFIG      78      /* configuration error */