sysexits-compat.h 4.8 KB

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