]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
9bccf70c | 2 | * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved. |
1c79356b A |
3 | * |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
e5568f75 A |
6 | * The contents of this file constitute Original Code as defined in and |
7 | * are subject to the Apple Public Source License Version 1.1 (the | |
8 | * "License"). You may not use this file except in compliance with the | |
9 | * License. Please obtain a copy of the License at | |
10 | * http://www.apple.com/publicsource and read it before using this file. | |
1c79356b | 11 | * |
e5568f75 A |
12 | * This Original Code and all software distributed under the License are |
13 | * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
1c79356b A |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
e5568f75 A |
16 | * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the |
17 | * License for the specific language governing rights and limitations | |
18 | * under the License. | |
1c79356b A |
19 | * |
20 | * @APPLE_LICENSE_HEADER_END@ | |
21 | */ | |
22 | /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ | |
23 | /* | |
24 | * Copyright (c) 1982, 1986, 1988, 1993 | |
25 | * The Regents of the University of California. All rights reserved. | |
26 | * | |
27 | * Redistribution and use in source and binary forms, with or without | |
28 | * modification, are permitted provided that the following conditions | |
29 | * are met: | |
30 | * 1. Redistributions of source code must retain the above copyright | |
31 | * notice, this list of conditions and the following disclaimer. | |
32 | * 2. Redistributions in binary form must reproduce the above copyright | |
33 | * notice, this list of conditions and the following disclaimer in the | |
34 | * documentation and/or other materials provided with the distribution. | |
35 | * 3. All advertising materials mentioning features or use of this software | |
36 | * must display the following acknowledgement: | |
37 | * This product includes software developed by the University of | |
38 | * California, Berkeley and its contributors. | |
39 | * 4. Neither the name of the University nor the names of its contributors | |
40 | * may be used to endorse or promote products derived from this software | |
41 | * without specific prior written permission. | |
42 | * | |
43 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
44 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
45 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
46 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
47 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
48 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
49 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
50 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
51 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
52 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
53 | * SUCH DAMAGE. | |
54 | * | |
55 | * @(#)syslog.h 8.1 (Berkeley) 6/2/93 | |
56 | */ | |
57 | ||
58 | #ifndef _SYS_SYSLOG_H_ | |
59 | #define _SYS_SYSLOG_H_ | |
60 | ||
9bccf70c A |
61 | #include <sys/appleapiopts.h> |
62 | ||
1c79356b A |
63 | #define _PATH_LOG "/var/run/syslog" |
64 | ||
65 | /* | |
66 | * priorities/facilities are encoded into a single 32-bit quantity, where the | |
67 | * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility | |
68 | * (0-big number). Both the priorities and the facilities map roughly | |
69 | * one-to-one to strings in the syslogd(8) source code. This mapping is | |
70 | * included in this file. | |
71 | * | |
72 | * priorities (these are ordered) | |
73 | */ | |
74 | #define LOG_EMERG 0 /* system is unusable */ | |
75 | #define LOG_ALERT 1 /* action must be taken immediately */ | |
76 | #define LOG_CRIT 2 /* critical conditions */ | |
77 | #define LOG_ERR 3 /* error conditions */ | |
78 | #define LOG_WARNING 4 /* warning conditions */ | |
79 | #define LOG_NOTICE 5 /* normal but significant condition */ | |
80 | #define LOG_INFO 6 /* informational */ | |
81 | #define LOG_DEBUG 7 /* debug-level messages */ | |
82 | ||
83 | #define LOG_PRIMASK 0x07 /* mask to extract priority part (internal) */ | |
84 | /* extract priority */ | |
85 | #define LOG_PRI(p) ((p) & LOG_PRIMASK) | |
86 | #define LOG_MAKEPRI(fac, pri) (((fac) << 3) | (pri)) | |
87 | ||
88 | #ifdef SYSLOG_NAMES | |
89 | #define INTERNAL_NOPRI 0x10 /* the "no priority" priority */ | |
90 | /* mark "facility" */ | |
91 | #define INTERNAL_MARK LOG_MAKEPRI(LOG_NFACILITIES, 0) | |
92 | typedef struct _code { | |
93 | char *c_name; | |
94 | int c_val; | |
95 | } CODE; | |
96 | ||
97 | CODE prioritynames[] = { | |
98 | "alert", LOG_ALERT, | |
99 | "crit", LOG_CRIT, | |
100 | "debug", LOG_DEBUG, | |
101 | "emerg", LOG_EMERG, | |
102 | "err", LOG_ERR, | |
103 | "error", LOG_ERR, /* DEPRECATED */ | |
104 | "info", LOG_INFO, | |
105 | "none", INTERNAL_NOPRI, /* INTERNAL */ | |
106 | "notice", LOG_NOTICE, | |
107 | "panic", LOG_EMERG, /* DEPRECATED */ | |
108 | "warn", LOG_WARNING, /* DEPRECATED */ | |
109 | "warning", LOG_WARNING, | |
110 | NULL, -1, | |
111 | }; | |
112 | #endif | |
113 | ||
114 | /* facility codes */ | |
115 | #define LOG_KERN (0<<3) /* kernel messages */ | |
116 | #define LOG_USER (1<<3) /* random user-level messages */ | |
117 | #define LOG_MAIL (2<<3) /* mail system */ | |
118 | #define LOG_DAEMON (3<<3) /* system daemons */ | |
119 | #define LOG_AUTH (4<<3) /* security/authorization messages */ | |
120 | #define LOG_SYSLOG (5<<3) /* messages generated internally by syslogd */ | |
121 | #define LOG_LPR (6<<3) /* line printer subsystem */ | |
122 | #define LOG_NEWS (7<<3) /* network news subsystem */ | |
123 | #define LOG_UUCP (8<<3) /* UUCP subsystem */ | |
124 | #define LOG_CRON (9<<3) /* clock daemon */ | |
125 | #define LOG_AUTHPRIV (10<<3) /* security/authorization messages (private) */ | |
126 | #define LOG_FTP (11<<3) /* ftp daemon */ | |
127 | #define LOG_NETINFO (12<<3) /* NetInfo */ | |
128 | #define LOG_REMOTEAUTH (13<<3) /* remote authentication/authorization */ | |
55e303ae | 129 | #define LOG_INSTALL (14<<3) /* installer subsystem */ |
1c79356b A |
130 | |
131 | /* other codes through 15 reserved for system use */ | |
132 | #define LOG_LOCAL0 (16<<3) /* reserved for local use */ | |
133 | #define LOG_LOCAL1 (17<<3) /* reserved for local use */ | |
134 | #define LOG_LOCAL2 (18<<3) /* reserved for local use */ | |
135 | #define LOG_LOCAL3 (19<<3) /* reserved for local use */ | |
136 | #define LOG_LOCAL4 (20<<3) /* reserved for local use */ | |
137 | #define LOG_LOCAL5 (21<<3) /* reserved for local use */ | |
138 | #define LOG_LOCAL6 (22<<3) /* reserved for local use */ | |
139 | #define LOG_LOCAL7 (23<<3) /* reserved for local use */ | |
140 | ||
141 | #define LOG_NFACILITIES 24 /* current number of facilities */ | |
142 | #define LOG_FACMASK 0x03f8 /* mask to extract facility part */ | |
143 | /* facility of pri */ | |
144 | #define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3) | |
145 | ||
146 | #ifdef SYSLOG_NAMES | |
147 | CODE facilitynames[] = { | |
148 | "auth", LOG_AUTH, | |
149 | "authpriv", LOG_AUTHPRIV, | |
150 | "cron", LOG_CRON, | |
151 | "daemon", LOG_DAEMON, | |
152 | "ftp", LOG_FTP, | |
55e303ae | 153 | "install", LOG_INSTALL, |
1c79356b A |
154 | "kern", LOG_KERN, |
155 | "lpr", LOG_LPR, | |
156 | "mail", LOG_MAIL, | |
157 | "mark", INTERNAL_MARK, /* INTERNAL */ | |
158 | "netinfo", LOG_NETINFO, | |
159 | "remoteauth", LOG_REMOTEAUTH, | |
160 | "news", LOG_NEWS, | |
161 | "security", LOG_AUTH, /* DEPRECATED */ | |
162 | "syslog", LOG_SYSLOG, | |
163 | "user", LOG_USER, | |
164 | "uucp", LOG_UUCP, | |
165 | "local0", LOG_LOCAL0, | |
166 | "local1", LOG_LOCAL1, | |
167 | "local2", LOG_LOCAL2, | |
168 | "local3", LOG_LOCAL3, | |
169 | "local4", LOG_LOCAL4, | |
170 | "local5", LOG_LOCAL5, | |
171 | "local6", LOG_LOCAL6, | |
172 | "local7", LOG_LOCAL7, | |
173 | NULL, -1, | |
174 | }; | |
175 | #endif | |
176 | ||
177 | #ifdef KERNEL | |
9bccf70c | 178 | #ifdef __APPLE_API_PRIVATE |
1c79356b | 179 | #define LOG_PRINTF -1 /* pseudo-priority to indicate use of printf */ |
9bccf70c | 180 | #endif /* __APPLE_API_PRIVATE */ |
1c79356b A |
181 | #endif |
182 | ||
183 | /* | |
184 | * arguments to setlogmask. | |
185 | */ | |
186 | #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */ | |
187 | #define LOG_UPTO(pri) ((1 << ((pri)+1)) - 1) /* all priorities through pri */ | |
188 | ||
189 | /* | |
190 | * Option flags for openlog. | |
191 | * | |
192 | * LOG_ODELAY no longer does anything. | |
193 | * LOG_NDELAY is the inverse of what it used to be. | |
194 | */ | |
195 | #define LOG_PID 0x01 /* log the pid with each message */ | |
196 | #define LOG_CONS 0x02 /* log on the console if errors in sending */ | |
197 | #define LOG_ODELAY 0x04 /* delay open until first syslog() (default) */ | |
198 | #define LOG_NDELAY 0x08 /* don't delay open */ | |
199 | #define LOG_NOWAIT 0x10 /* don't wait for console forks: DEPRECATED */ | |
200 | #define LOG_PERROR 0x20 /* log to stderr as well */ | |
201 | ||
202 | #include <sys/cdefs.h> | |
203 | ||
204 | #ifndef KERNEL | |
205 | ||
206 | /* | |
207 | * Don't use va_list in the vsyslog() prototype. Va_list is typedef'd in two | |
208 | * places (<machine/varargs.h> and <machine/stdarg.h>), so if we include one | |
209 | * of them here we may collide with the utility's includes. It's unreasonable | |
210 | * for utilities to have to include one of them to include syslog.h, so we get | |
211 | * _BSD_VA_LIST_ from <machine/ansi.h> and use it. | |
212 | */ | |
213 | #include <machine/ansi.h> | |
214 | ||
215 | __BEGIN_DECLS | |
216 | void closelog __P((void)); | |
217 | void openlog __P((const char *, int, int)); | |
218 | int setlogmask __P((int)); | |
219 | void syslog __P((int, const char *, ...)); | |
220 | void vsyslog __P((int, const char *, _BSD_VA_LIST_)); | |
221 | __END_DECLS | |
222 | ||
223 | #else /* !KERNEL */ | |
9bccf70c | 224 | #ifdef __APPLE_API_OBSOLETE |
1c79356b A |
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 | ||
9bccf70c A |
304 | #endif /* __APPLE_API_OBSOLETE */ |
305 | ||
1c79356b A |
306 | void logpri __P((int)); |
307 | void log __P((int, const char *, ...)); | |
308 | void addlog __P((const char *, ...)); | |
309 | ||
310 | #endif /* !KERNEL */ | |
311 | #endif /* !_SYS_SYSLOG_H_ */ |