]> git.saurik.com Git - apple/xnu.git/blob - bsd/sys/syslog.h
xnu-792.6.56.tar.gz
[apple/xnu.git] / bsd / sys / syslog.h
1 /*
2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
24 /*
25 * Copyright (c) 1982, 1986, 1988, 1993
26 * The Regents of the University of California. All rights reserved.
27 *
28 * Redistribution and use in source and binary forms, with or without
29 * modification, are permitted provided that the following conditions
30 * are met:
31 * 1. Redistributions of source code must retain the above copyright
32 * notice, this list of conditions and the following disclaimer.
33 * 2. Redistributions in binary form must reproduce the above copyright
34 * notice, this list of conditions and the following disclaimer in the
35 * documentation and/or other materials provided with the distribution.
36 * 3. All advertising materials mentioning features or use of this software
37 * must display the following acknowledgement:
38 * This product includes software developed by the University of
39 * California, Berkeley and its contributors.
40 * 4. Neither the name of the University nor the names of its contributors
41 * may be used to endorse or promote products derived from this software
42 * without specific prior written permission.
43 *
44 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
45 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
47 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
48 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
49 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
50 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
52 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
53 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * SUCH DAMAGE.
55 *
56 * @(#)syslog.h 8.1 (Berkeley) 6/2/93
57 */
58
59 #ifndef _SYS_SYSLOG_H_
60 #define _SYS_SYSLOG_H_
61
62 #include <sys/appleapiopts.h>
63 #include <sys/cdefs.h>
64
65 #define _PATH_LOG "/var/run/syslog"
66
67 /*
68 * priorities/facilities are encoded into a single 32-bit quantity, where the
69 * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
70 * (0-big number). Both the priorities and the facilities map roughly
71 * one-to-one to strings in the syslogd(8) source code. This mapping is
72 * included in this file.
73 *
74 * priorities (these are ordered)
75 */
76 #define LOG_EMERG 0 /* system is unusable */
77 #define LOG_ALERT 1 /* action must be taken immediately */
78 #define LOG_CRIT 2 /* critical conditions */
79 #define LOG_ERR 3 /* error conditions */
80 #define LOG_WARNING 4 /* warning conditions */
81 #define LOG_NOTICE 5 /* normal but significant condition */
82 #define LOG_INFO 6 /* informational */
83 #define LOG_DEBUG 7 /* debug-level messages */
84
85 #define LOG_PRIMASK 0x07 /* mask to extract priority part (internal) */
86 /* extract priority */
87 #define LOG_PRI(p) ((p) & LOG_PRIMASK)
88 #define LOG_MAKEPRI(fac, pri) (((fac) << 3) | (pri))
89
90 #ifdef SYSLOG_NAMES
91 #define INTERNAL_NOPRI 0x10 /* the "no priority" priority */
92 /* mark "facility" */
93 #define INTERNAL_MARK LOG_MAKEPRI(LOG_NFACILITIES, 0)
94 typedef struct _code {
95 char *c_name;
96 int c_val;
97 } CODE;
98
99 CODE prioritynames[] = {
100 { "alert", LOG_ALERT },
101 { "crit", LOG_CRIT },
102 { "debug", LOG_DEBUG },
103 { "emerg", LOG_EMERG },
104 { "err", LOG_ERR },
105 { "error", LOG_ERR }, /* DEPRECATED */
106 { "info", LOG_INFO },
107 { "none", INTERNAL_NOPRI }, /* INTERNAL */
108 { "notice", LOG_NOTICE },
109 { "panic", LOG_EMERG }, /* DEPRECATED */
110 { "warn", LOG_WARNING }, /* DEPRECATED */
111 { "warning", LOG_WARNING },
112 { 0, -1 }
113 };
114 #endif
115
116 /* facility codes */
117 #define LOG_KERN (0<<3) /* kernel messages */
118 #define LOG_USER (1<<3) /* random user-level messages */
119 #define LOG_MAIL (2<<3) /* mail system */
120 #define LOG_DAEMON (3<<3) /* system daemons */
121 #define LOG_AUTH (4<<3) /* security/authorization messages */
122 #define LOG_SYSLOG (5<<3) /* messages generated internally by syslogd */
123 #define LOG_LPR (6<<3) /* line printer subsystem */
124 #define LOG_NEWS (7<<3) /* network news subsystem */
125 #define LOG_UUCP (8<<3) /* UUCP subsystem */
126 #define LOG_CRON (9<<3) /* clock daemon */
127 #define LOG_AUTHPRIV (10<<3) /* security/authorization messages (private) */
128 #define LOG_FTP (11<<3) /* ftp daemon */
129 #define LOG_NETINFO (12<<3) /* NetInfo */
130 #define LOG_REMOTEAUTH (13<<3) /* remote authentication/authorization */
131 #define LOG_INSTALL (14<<3) /* installer subsystem */
132 #define LOG_RAS (15<<3) /* Remote Access Service (VPN / PPP) */
133
134 #define LOG_LOCAL0 (16<<3) /* reserved for local use */
135 #define LOG_LOCAL1 (17<<3) /* reserved for local use */
136 #define LOG_LOCAL2 (18<<3) /* reserved for local use */
137 #define LOG_LOCAL3 (19<<3) /* reserved for local use */
138 #define LOG_LOCAL4 (20<<3) /* reserved for local use */
139 #define LOG_LOCAL5 (21<<3) /* reserved for local use */
140 #define LOG_LOCAL6 (22<<3) /* reserved for local use */
141 #define LOG_LOCAL7 (23<<3) /* reserved for local use */
142
143 #define LOG_LAUNCHD (24<<3) /* launchd - general bootstrap daemon */
144
145 #define LOG_NFACILITIES 25 /* current number of facilities */
146 #define LOG_FACMASK 0x03f8 /* mask to extract facility part */
147 /* facility of pri */
148 #define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3)
149
150 #ifdef SYSLOG_NAMES
151 CODE facilitynames[] = {
152 { "auth", LOG_AUTH },
153 { "authpriv", LOG_AUTHPRIV },
154 { "cron", LOG_CRON },
155 { "daemon", LOG_DAEMON },
156 { "ftp", LOG_FTP },
157 { "install", LOG_INSTALL },
158 { "kern", LOG_KERN },
159 { "lpr", LOG_LPR },
160 { "mail", LOG_MAIL },
161 { "mark", INTERNAL_MARK }, /* INTERNAL */
162 { "netinfo", LOG_NETINFO },
163 { "ras", LOG_RAS },
164 { "remoteauth", LOG_REMOTEAUTH },
165 { "news", LOG_NEWS },
166 { "security", LOG_AUTH }, /* DEPRECATED */
167 { "syslog", LOG_SYSLOG },
168 { "user", LOG_USER },
169 { "uucp", LOG_UUCP },
170 { "local0", LOG_LOCAL0 },
171 { "local1", LOG_LOCAL1 },
172 { "local2", LOG_LOCAL2 },
173 { "local3", LOG_LOCAL3 },
174 { "local4", LOG_LOCAL4 },
175 { "local5", LOG_LOCAL5 },
176 { "local6", LOG_LOCAL6 },
177 { "local7", LOG_LOCAL7 },
178 { "launchd", LOG_LAUNCHD },
179 { 0, -1 }
180 };
181 #endif
182
183 #ifdef KERNEL
184 #ifdef __APPLE_API_PRIVATE
185 #define LOG_PRINTF -1 /* pseudo-priority to indicate use of printf */
186 #endif /* __APPLE_API_PRIVATE */
187 #endif
188
189 /*
190 * arguments to setlogmask.
191 */
192 #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
193 #define LOG_UPTO(pri) ((1 << ((pri)+1)) - 1) /* all priorities through pri */
194
195 /*
196 * Option flags for openlog.
197 *
198 * LOG_ODELAY no longer does anything.
199 * LOG_NDELAY is the inverse of what it used to be.
200 */
201 #define LOG_PID 0x01 /* log the pid with each message */
202 #define LOG_CONS 0x02 /* log on the console if errors in sending */
203 #define LOG_ODELAY 0x04 /* delay open until first syslog() (default) */
204 #define LOG_NDELAY 0x08 /* don't delay open */
205 #define LOG_NOWAIT 0x10 /* don't wait for console forks: DEPRECATED */
206 #define LOG_PERROR 0x20 /* log to stderr as well */
207
208 #ifndef KERNEL
209 #ifndef _POSIX_C_SOURCE
210 #include <sys/_types.h> /* for __darwin_va_list */
211 #endif /* _POSIX_C_SOURCE */
212
213 __BEGIN_DECLS
214 void closelog(void);
215 void openlog(const char *, int, int);
216 int setlogmask(int);
217 void syslog(int, const char *, ...) __DARWIN_LDBL_COMPAT(syslog);
218 #ifndef _POSIX_C_SOURCE
219 void vsyslog(int, const char *, __darwin_va_list) __DARWIN_LDBL_COMPAT(vsyslog);
220 #endif /* _POSIX_C_SOURCE */
221 __END_DECLS
222
223 #else /* !KERNEL */
224 #ifdef __APPLE_API_OBSOLETE
225 /*
226 * bit field descriptions for printf %r and %R formats
227 */
228
229 /*
230 * printf("%r %R", val, reg_descp);
231 * struct reg_desc *reg_descp;
232 *
233 * the %r and %R formats allow formatted output of bit fields.
234 * reg_descp points to an array of reg_desc structures, each element of the
235 * array describes a range of bits within val. the array should have a
236 * final element with all structure elements 0.
237 * %r outputs a string of the format "<bit field descriptions>"
238 * %R outputs a string of the format "0x%x<bit field descriptions>"
239 *
240 * The fields in a reg_desc are:
241 * unsigned rd_mask; An appropriate mask to isolate the bit field
242 * within a word, and'ed with val
243 *
244 * int rd_shift; A shift amount to be done to the isolated
245 * bit field. done before printing the isolate
246 * bit field with rd_format and before searching
247 * for symbolic value names in rd_values
248 *
249 * char *rd_name; If non-null, a bit field name to label any
250 * out from rd_format or searching rd_values.
251 * if neither rd_format or rd_values is non-null
252 * rd_name is printed only if the isolated
253 * bit field is non-null.
254 *
255 * char *rd_format; If non-null, the shifted bit field value
256 * is printed using this format.
257 *
258 * struct reg_values *rd_values; If non-null, a pointer to a table
259 * matching numeric values with symbolic names.
260 * rd_values are searched and the symbolic
261 * value is printed if a match is found, if no
262 * match is found "???" is printed.
263 *
264 * printf("%n %N", val, reg_valuesp);
265 * struct reg_values *reg_valuesp;
266 *
267 * the %n and %N formats allow formatted output of symbolic constants
268 * Reg_valuesp is a pointer to an array of struct reg_values which pairs
269 * numeric values (rv_value) with symbolic names (rv_name). The array is
270 * terminated with a reg_values entry that has a null pointer for the
271 * rv_name field. When %n or %N is used rd_values are searched and the
272 * symbolic value is printed if a match is found, if no match is found
273 * "???" is printed.
274 *
275 * printf("%C", val);
276 * int val;
277 *
278 * the %C format prints an int as a 4 character string.
279 * The most significant byte of the int is printed first, the least
280 * significant byte is printed last.
281 */
282
283 /*
284 * register values
285 * map between numeric values and symbolic values
286 */
287 struct reg_values {
288 unsigned rv_value;
289 char *rv_name;
290 };
291
292 /*
293 * register descriptors are used for formatted prints of register values
294 * rd_mask and rd_shift must be defined, other entries may be null
295 */
296 struct reg_desc {
297 unsigned rd_mask; /* mask to extract field */
298 int rd_shift; /* shift for extracted value, - >>, + << */
299 char *rd_name; /* field name */
300 char *rd_format; /* format to print field */
301 struct reg_values *rd_values; /* symbolic names of values */
302 };
303
304 #endif /* __APPLE_API_OBSOLETE */
305
306 __BEGIN_DECLS
307 void logpri(int);
308 void log(int, const char *, ...);
309 void addlog(const char *, ...);
310 __END_DECLS
311
312 #endif /* !KERNEL */
313 #endif /* !_SYS_SYSLOG_H_ */