syslog.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. //
  2. // Copyright 2026 Aarav Ravindra Kharade
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software
  11. // distributed under the License is distributed on an "AS IS" BASIS,
  12. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. // See the License for the specific language governing permissions and
  14. // limitations under the License.
  15. //
  16. /*
  17. * Copyright (c) 1982, 1986, 1988, 1993
  18. * The Regents of the University of California. All rights reserved.
  19. *
  20. * Redistribution and use in source and binary forms, with or without
  21. * modification, are permitted provided that the following conditions
  22. * are met:
  23. * 1. Redistributions of source code must retain the above copyright
  24. * notice, this list of conditions and the following disclaimer.
  25. * 2. Redistributions in binary form must reproduce the above copyright
  26. * notice, this list of conditions and the following disclaimer in the
  27. * documentation and/or other materials provided with the distribution.
  28. * 4. Neither the name of the University nor the names of its contributors
  29. * may be used to endorse or promote products derived from this software
  30. * without specific prior written permission.
  31. *
  32. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  33. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  34. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  35. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  36. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  37. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  38. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  39. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  40. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  41. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  42. * SUCH DAMAGE.
  43. *
  44. * @(#)syslog.h 8.1 (Berkeley) 6/2/93
  45. */
  46. #ifndef _SYS_SYSLOG_H
  47. #define _SYS_SYSLOG_H 1
  48. #include <features.h>
  49. #define __need___va_list
  50. #include <stdarg.h>
  51. /* This file defines _PATH_LOG. */
  52. #include <bits/syslog-path.h>
  53. /*
  54. * priorities/facilities are encoded into a single 32-bit quantity, where the
  55. * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
  56. * (0-big number). Both the priorities and the facilities map roughly
  57. * one-to-one to strings in the syslogd(8) source code. This mapping is
  58. * included in this file.
  59. *
  60. * priorities (these are ordered)
  61. */
  62. #define LOG_EMERG 0 /* system is unusable */
  63. #define LOG_ALERT 1 /* action must be taken immediately */
  64. #define LOG_CRIT 2 /* critical conditions */
  65. #define LOG_ERR 3 /* error conditions */
  66. #define LOG_WARNING 4 /* warning conditions */
  67. #define LOG_NOTICE 5 /* normal but significant condition */
  68. #define LOG_INFO 6 /* informational */
  69. #define LOG_DEBUG 7 /* debug-level messages */
  70. #define LOG_PRIMASK 0x07 /* mask to extract priority part (internal) */
  71. /* extract priority */
  72. #define LOG_PRI(p) ((p) & LOG_PRIMASK)
  73. #define LOG_MAKEPRI(fac, pri) ((fac) | (pri))
  74. #if defined SYSLOG_NAMES && defined __USE_MISC
  75. #define INTERNAL_NOPRI 0x10 /* the "no priority" priority */
  76. /* mark "facility" */
  77. #define INTERNAL_MARK LOG_MAKEPRI(LOG_NFACILITIES << 3, 0)
  78. typedef struct _code {
  79. char *c_name;
  80. int c_val;
  81. } CODE;
  82. CODE prioritynames[] =
  83. {
  84. { "alert", LOG_ALERT },
  85. { "crit", LOG_CRIT },
  86. { "debug", LOG_DEBUG },
  87. { "emerg", LOG_EMERG },
  88. { "err", LOG_ERR },
  89. { "error", LOG_ERR }, /* DEPRECATED */
  90. { "info", LOG_INFO },
  91. { "none", INTERNAL_NOPRI }, /* INTERNAL */
  92. { "notice", LOG_NOTICE },
  93. { "panic", LOG_EMERG }, /* DEPRECATED */
  94. { "warn", LOG_WARNING }, /* DEPRECATED */
  95. { "warning", LOG_WARNING },
  96. { NULL, -1 }
  97. };
  98. #endif
  99. /* facility codes */
  100. #define LOG_KERN (0<<3) /* kernel messages */
  101. #define LOG_USER (1<<3) /* random user-level messages */
  102. #define LOG_MAIL (2<<3) /* mail system */
  103. #define LOG_DAEMON (3<<3) /* system daemons */
  104. #define LOG_AUTH (4<<3) /* security/authorization messages */
  105. #define LOG_SYSLOG (5<<3) /* messages generated internally by syslogd */
  106. #define LOG_LPR (6<<3) /* line printer subsystem */
  107. #define LOG_NEWS (7<<3) /* network news subsystem */
  108. #define LOG_UUCP (8<<3) /* UUCP subsystem */
  109. #define LOG_CRON (9<<3) /* clock daemon */
  110. #define LOG_AUTHPRIV (10<<3) /* security/authorization messages (private) */
  111. #define LOG_FTP (11<<3) /* ftp daemon */
  112. /* other codes through 15 reserved for system use */
  113. #define LOG_LOCAL0 (16<<3) /* reserved for local use */
  114. #define LOG_LOCAL1 (17<<3) /* reserved for local use */
  115. #define LOG_LOCAL2 (18<<3) /* reserved for local use */
  116. #define LOG_LOCAL3 (19<<3) /* reserved for local use */
  117. #define LOG_LOCAL4 (20<<3) /* reserved for local use */
  118. #define LOG_LOCAL5 (21<<3) /* reserved for local use */
  119. #define LOG_LOCAL6 (22<<3) /* reserved for local use */
  120. #define LOG_LOCAL7 (23<<3) /* reserved for local use */
  121. #define LOG_NFACILITIES 24 /* current number of facilities */
  122. #define LOG_FACMASK 0x03f8 /* mask to extract facility part */
  123. /* facility of pri */
  124. #define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3)
  125. #if defined SYSLOG_NAMES && defined __USE_MISC
  126. CODE facilitynames[] =
  127. {
  128. { "auth", LOG_AUTH },
  129. { "authpriv", LOG_AUTHPRIV },
  130. { "cron", LOG_CRON },
  131. { "daemon", LOG_DAEMON },
  132. { "ftp", LOG_FTP },
  133. { "kern", LOG_KERN },
  134. { "lpr", LOG_LPR },
  135. { "mail", LOG_MAIL },
  136. { "mark", INTERNAL_MARK }, /* INTERNAL */
  137. { "news", LOG_NEWS },
  138. { "security", LOG_AUTH }, /* DEPRECATED */
  139. { "syslog", LOG_SYSLOG },
  140. { "user", LOG_USER },
  141. { "uucp", LOG_UUCP },
  142. { "local0", LOG_LOCAL0 },
  143. { "local1", LOG_LOCAL1 },
  144. { "local2", LOG_LOCAL2 },
  145. { "local3", LOG_LOCAL3 },
  146. { "local4", LOG_LOCAL4 },
  147. { "local5", LOG_LOCAL5 },
  148. { "local6", LOG_LOCAL6 },
  149. { "local7", LOG_LOCAL7 },
  150. { NULL, -1 }
  151. };
  152. #endif
  153. /*
  154. * arguments to setlogmask.
  155. */
  156. #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
  157. #define LOG_UPTO(pri) ((1 << ((pri)+1)) - 1) /* all priorities through pri */
  158. /*
  159. * Option flags for openlog.
  160. *
  161. * LOG_ODELAY no longer does anything.
  162. * LOG_NDELAY is the inverse of what it used to be.
  163. */
  164. #define LOG_PID 0x01 /* log the pid with each message */
  165. #define LOG_CONS 0x02 /* log on the console if errors in sending */
  166. #define LOG_ODELAY 0x04 /* delay open until first syslog() (default) */
  167. #define LOG_NDELAY 0x08 /* don't delay open */
  168. #define LOG_NOWAIT 0x10 /* don't wait for console forks: DEPRECATED */
  169. #define LOG_PERROR 0x20 /* log to stderr as well */
  170. __BEGIN_DECLS
  171. /* Close descriptor used to write to system logger.
  172. This function is a possible cancellation point and therefore not
  173. marked with __THROW. */
  174. extern void closelog (void);
  175. /* Open connection to system logger.
  176. This function is a possible cancellation point and therefore not
  177. marked with __THROW. */
  178. extern void openlog (const char *__ident, int __option, int __facility);
  179. /* Set the log mask level. */
  180. extern int setlogmask (int __mask) __THROW;
  181. /* Generate a log message using FMT string and option arguments.
  182. This function is a possible cancellation point and therefore not
  183. marked with __THROW. */
  184. extern void syslog (int __pri, const char *__fmt, ...)
  185. __attribute__ ((__format__ (__printf__, 2, 3)));
  186. #ifdef __USE_MISC
  187. /* Generate a log message using FMT and using arguments pointed to by AP.
  188. This function is not part of POSIX and therefore no official
  189. cancellation point. But due to similarity with an POSIX interface
  190. or due to the implementation it is a cancellation point and
  191. therefore not marked with __THROW. */
  192. extern void vsyslog (int __pri, const char *__fmt, __gnuc_va_list __ap)
  193. __attribute__ ((__format__ (__printf__, 2, 0)));
  194. #endif
  195. /* Define some macros helping to catch buffer overflows. */
  196. #if __USE_FORTIFY_LEVEL > 0 && defined __fortify_function
  197. # include <bits/syslog.h>
  198. #else
  199. # include <bits/floatn.h>
  200. # if defined __LDBL_COMPAT || __LDOUBLE_REDIRECTS_TO_FLOAT128_ABI == 1
  201. # include <bits/syslog-ldbl.h>
  202. # endif
  203. #endif
  204. __END_DECLS
  205. #endif /* sys/syslog.h */