syslog.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /* $OpenBSD: syslog.h,v 1.15 2014/07/14 03:52:04 deraadt Exp $ */
  2. /* $NetBSD: syslog.h,v 1.14 1996/04/03 20:46:44 christos Exp $ */
  3. /*
  4. * Copyright (c) 1982, 1986, 1988, 1993
  5. * The Regents of the University of California. All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of the University nor the names of its contributors
  16. * may be used to endorse or promote products derived from this software
  17. * without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  20. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  23. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29. * SUCH DAMAGE.
  30. *
  31. * @(#)syslog.h 8.1 (Berkeley) 6/2/93
  32. */
  33. #ifndef _SYS_SYSLOG_H_
  34. #define _SYS_SYSLOG_H_
  35. #define _PATH_LOG "/dev/log"
  36. #define LIOCSFD _IOW('l', 127, int) /* set sendsyslog() fd */
  37. /*
  38. * priorities/facilities are encoded into a single 32-bit quantity, where the
  39. * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
  40. * (0-big number). Both the priorities and the facilities map roughly
  41. * one-to-one to strings in the syslogd(8) source code. This mapping is
  42. * included in this file.
  43. *
  44. * priorities (these are ordered)
  45. */
  46. #define LOG_EMERG 0 /* system is unusable */
  47. #define LOG_ALERT 1 /* action must be taken immediately */
  48. #define LOG_CRIT 2 /* critical conditions */
  49. #define LOG_ERR 3 /* error conditions */
  50. #define LOG_WARNING 4 /* warning conditions */
  51. #define LOG_NOTICE 5 /* normal but significant condition */
  52. #define LOG_INFO 6 /* informational */
  53. #define LOG_DEBUG 7 /* debug-level messages */
  54. #define LOG_PRIMASK 0x07 /* mask to extract priority part (internal) */
  55. /* extract priority */
  56. #define LOG_PRI(p) ((p) & LOG_PRIMASK)
  57. #ifdef SYSLOG_NAMES
  58. #define INTERNAL_NOPRI 0x10 /* the "no priority" priority */
  59. /* mark "facility" */
  60. #define INTERNAL_MARK (LOG_NFACILITIES<<3)
  61. typedef struct _code {
  62. char *c_name;
  63. int c_val;
  64. } CODE;
  65. CODE prioritynames[] = {
  66. { "alert", LOG_ALERT },
  67. { "crit", LOG_CRIT },
  68. { "debug", LOG_DEBUG },
  69. { "emerg", LOG_EMERG },
  70. { "err", LOG_ERR },
  71. { "error", LOG_ERR }, /* DEPRECATED */
  72. { "info", LOG_INFO },
  73. { "none", INTERNAL_NOPRI }, /* INTERNAL */
  74. { "notice", LOG_NOTICE },
  75. { "panic", LOG_EMERG }, /* DEPRECATED */
  76. { "warn", LOG_WARNING }, /* DEPRECATED */
  77. { "warning", LOG_WARNING },
  78. { NULL, -1 },
  79. };
  80. #endif
  81. /* facility codes */
  82. #define LOG_KERN (0<<3) /* kernel messages */
  83. #define LOG_USER (1<<3) /* random user-level messages */
  84. #define LOG_MAIL (2<<3) /* mail system */
  85. #define LOG_DAEMON (3<<3) /* system daemons */
  86. #define LOG_AUTH (4<<3) /* security/authorization messages */
  87. #define LOG_SYSLOG (5<<3) /* messages generated internally by syslogd */
  88. #define LOG_LPR (6<<3) /* line printer subsystem */
  89. #define LOG_NEWS (7<<3) /* network news subsystem */
  90. #define LOG_UUCP (8<<3) /* UUCP subsystem */
  91. #define LOG_CRON (9<<3) /* clock daemon */
  92. #define LOG_AUTHPRIV (10<<3) /* security/authorization messages (private) */
  93. #define LOG_FTP (11<<3) /* ftp daemon */
  94. /* other codes through 15 reserved for system use */
  95. #define LOG_LOCAL0 (16<<3) /* reserved for local use */
  96. #define LOG_LOCAL1 (17<<3) /* reserved for local use */
  97. #define LOG_LOCAL2 (18<<3) /* reserved for local use */
  98. #define LOG_LOCAL3 (19<<3) /* reserved for local use */
  99. #define LOG_LOCAL4 (20<<3) /* reserved for local use */
  100. #define LOG_LOCAL5 (21<<3) /* reserved for local use */
  101. #define LOG_LOCAL6 (22<<3) /* reserved for local use */
  102. #define LOG_LOCAL7 (23<<3) /* reserved for local use */
  103. #define LOG_NFACILITIES 24 /* current number of facilities */
  104. #define LOG_FACMASK 0x03f8 /* mask to extract facility part */
  105. /* facility of pri */
  106. #define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3)
  107. #ifdef SYSLOG_NAMES
  108. CODE facilitynames[] = {
  109. { "auth", LOG_AUTH },
  110. { "authpriv", LOG_AUTHPRIV },
  111. { "cron", LOG_CRON },
  112. { "daemon", LOG_DAEMON },
  113. { "ftp", LOG_FTP },
  114. { "kern", LOG_KERN },
  115. { "lpr", LOG_LPR },
  116. { "mail", LOG_MAIL },
  117. { "mark", INTERNAL_MARK }, /* INTERNAL */
  118. { "news", LOG_NEWS },
  119. { "security", LOG_AUTH }, /* DEPRECATED */
  120. { "syslog", LOG_SYSLOG },
  121. { "user", LOG_USER },
  122. { "uucp", LOG_UUCP },
  123. { "local0", LOG_LOCAL0 },
  124. { "local1", LOG_LOCAL1 },
  125. { "local2", LOG_LOCAL2 },
  126. { "local3", LOG_LOCAL3 },
  127. { "local4", LOG_LOCAL4 },
  128. { "local5", LOG_LOCAL5 },
  129. { "local6", LOG_LOCAL6 },
  130. { "local7", LOG_LOCAL7 },
  131. { NULL, -1 },
  132. };
  133. #endif
  134. /* Used by reentrant functions */
  135. struct syslog_data {
  136. int log_stat;
  137. const char *log_tag;
  138. int log_fac;
  139. int log_mask;
  140. };
  141. #define SYSLOG_DATA_INIT {0, (const char *)0, LOG_USER, 0xff}
  142. #ifdef _KERNEL
  143. #define LOG_PRINTF -1 /* pseudo-priority to indicate use of printf */
  144. #endif
  145. /*
  146. * arguments to setlogmask.
  147. */
  148. #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
  149. #define LOG_UPTO(pri) ((1 << ((pri)+1)) - 1) /* all priorities through pri */
  150. /*
  151. * Option flags for openlog.
  152. *
  153. * LOG_ODELAY no longer does anything.
  154. * LOG_NDELAY is the inverse of what it used to be.
  155. */
  156. #define LOG_PID 0x01 /* log the pid with each message */
  157. #define LOG_CONS 0x02 /* log on the console if errors in sending */
  158. #define LOG_ODELAY 0x04 /* delay open until first syslog() (default) */
  159. #define LOG_NDELAY 0x08 /* don't delay open */
  160. #define LOG_NOWAIT 0x10 /* don't wait for console forks: DEPRECATED */
  161. #define LOG_PERROR 0x20 /* log to stderr as well */
  162. #ifndef _KERNEL
  163. /*
  164. * Don't use va_list in the vsyslog() prototype. Va_list is typedef'd in two
  165. * places (<machine/varargs.h> and <machine/stdarg.h>), so if we include one
  166. * of them here we may collide with the utility's includes. It's unreasonable
  167. * for utilities to have to include one of them to include syslog.h, so we get
  168. * __va_list from <machine/_types.h> and use it.
  169. */
  170. #include <sys/cdefs.h>
  171. #include <machine/_types.h>
  172. __BEGIN_DECLS
  173. void closelog(void);
  174. void openlog(const char *, int, int);
  175. int setlogmask(int);
  176. void syslog(int, const char *, ...)
  177. __attribute__((__format__(__syslog__,2,3)));
  178. void vsyslog(int, const char *, __va_list);
  179. void closelog_r(struct syslog_data *);
  180. void openlog_r(const char *, int, int, struct syslog_data *);
  181. int setlogmask_r(int, struct syslog_data *);
  182. void syslog_r(int, struct syslog_data *, const char *, ...)
  183. __attribute__((__format__(__syslog__,3,4)));
  184. void vsyslog_r(int, struct syslog_data *, const char *, __va_list);
  185. __END_DECLS
  186. #else /* !_KERNEL */
  187. void logpri(int);
  188. void log(int, const char *, ...)
  189. __attribute__((__format__(__kprintf__,2,3)));
  190. int addlog(const char *, ...)
  191. __attribute__((__format__(__kprintf__,1,2)));
  192. void logwakeup(void);
  193. #endif /* !_KERNEL */
  194. #endif /* !_SYS_SYSLOG_H_ */