]> git.saurik.com Git - apple/xnu.git/blame - bsd/sys/syslog.h
xnu-344.tar.gz
[apple/xnu.git] / bsd / sys / syslog.h
CommitLineData
1c79356b 1/*
9bccf70c 2 * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
1c79356b
A
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
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.
11 *
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
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
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.
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)
92typedef struct _code {
93 char *c_name;
94 int c_val;
95} CODE;
96
97CODE 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 */
129
130 /* other codes through 15 reserved for system use */
131#define LOG_LOCAL0 (16<<3) /* reserved for local use */
132#define LOG_LOCAL1 (17<<3) /* reserved for local use */
133#define LOG_LOCAL2 (18<<3) /* reserved for local use */
134#define LOG_LOCAL3 (19<<3) /* reserved for local use */
135#define LOG_LOCAL4 (20<<3) /* reserved for local use */
136#define LOG_LOCAL5 (21<<3) /* reserved for local use */
137#define LOG_LOCAL6 (22<<3) /* reserved for local use */
138#define LOG_LOCAL7 (23<<3) /* reserved for local use */
139
140#define LOG_NFACILITIES 24 /* current number of facilities */
141#define LOG_FACMASK 0x03f8 /* mask to extract facility part */
142 /* facility of pri */
143#define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3)
144
145#ifdef SYSLOG_NAMES
146CODE facilitynames[] = {
147 "auth", LOG_AUTH,
148 "authpriv", LOG_AUTHPRIV,
149 "cron", LOG_CRON,
150 "daemon", LOG_DAEMON,
151 "ftp", LOG_FTP,
152 "kern", LOG_KERN,
153 "lpr", LOG_LPR,
154 "mail", LOG_MAIL,
155 "mark", INTERNAL_MARK, /* INTERNAL */
156 "netinfo", LOG_NETINFO,
157 "remoteauth", LOG_REMOTEAUTH,
158 "news", LOG_NEWS,
159 "security", LOG_AUTH, /* DEPRECATED */
160 "syslog", LOG_SYSLOG,
161 "user", LOG_USER,
162 "uucp", LOG_UUCP,
163 "local0", LOG_LOCAL0,
164 "local1", LOG_LOCAL1,
165 "local2", LOG_LOCAL2,
166 "local3", LOG_LOCAL3,
167 "local4", LOG_LOCAL4,
168 "local5", LOG_LOCAL5,
169 "local6", LOG_LOCAL6,
170 "local7", LOG_LOCAL7,
171 NULL, -1,
172};
173#endif
174
175#ifdef KERNEL
9bccf70c 176#ifdef __APPLE_API_PRIVATE
1c79356b 177#define LOG_PRINTF -1 /* pseudo-priority to indicate use of printf */
9bccf70c 178#endif /* __APPLE_API_PRIVATE */
1c79356b
A
179#endif
180
181/*
182 * arguments to setlogmask.
183 */
184#define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
185#define LOG_UPTO(pri) ((1 << ((pri)+1)) - 1) /* all priorities through pri */
186
187/*
188 * Option flags for openlog.
189 *
190 * LOG_ODELAY no longer does anything.
191 * LOG_NDELAY is the inverse of what it used to be.
192 */
193#define LOG_PID 0x01 /* log the pid with each message */
194#define LOG_CONS 0x02 /* log on the console if errors in sending */
195#define LOG_ODELAY 0x04 /* delay open until first syslog() (default) */
196#define LOG_NDELAY 0x08 /* don't delay open */
197#define LOG_NOWAIT 0x10 /* don't wait for console forks: DEPRECATED */
198#define LOG_PERROR 0x20 /* log to stderr as well */
199
200#include <sys/cdefs.h>
201
202#ifndef KERNEL
203
204/*
205 * Don't use va_list in the vsyslog() prototype. Va_list is typedef'd in two
206 * places (<machine/varargs.h> and <machine/stdarg.h>), so if we include one
207 * of them here we may collide with the utility's includes. It's unreasonable
208 * for utilities to have to include one of them to include syslog.h, so we get
209 * _BSD_VA_LIST_ from <machine/ansi.h> and use it.
210 */
211#include <machine/ansi.h>
212
213__BEGIN_DECLS
214void closelog __P((void));
215void openlog __P((const char *, int, int));
216int setlogmask __P((int));
217void syslog __P((int, const char *, ...));
218void vsyslog __P((int, const char *, _BSD_VA_LIST_));
219__END_DECLS
220
221#else /* !KERNEL */
9bccf70c 222#ifdef __APPLE_API_OBSOLETE
1c79356b
A
223/*
224 * bit field descriptions for printf %r and %R formats
225 */
226
227/*
228 * printf("%r %R", val, reg_descp);
229 * struct reg_desc *reg_descp;
230 *
231 * the %r and %R formats allow formatted output of bit fields.
232 * reg_descp points to an array of reg_desc structures, each element of the
233 * array describes a range of bits within val. the array should have a
234 * final element with all structure elements 0.
235 * %r outputs a string of the format "<bit field descriptions>"
236 * %R outputs a string of the format "0x%x<bit field descriptions>"
237 *
238 * The fields in a reg_desc are:
239 * unsigned rd_mask; An appropriate mask to isolate the bit field
240 * within a word, and'ed with val
241 *
242 * int rd_shift; A shift amount to be done to the isolated
243 * bit field. done before printing the isolate
244 * bit field with rd_format and before searching
245 * for symbolic value names in rd_values
246 *
247 * char *rd_name; If non-null, a bit field name to label any
248 * out from rd_format or searching rd_values.
249 * if neither rd_format or rd_values is non-null
250 * rd_name is printed only if the isolated
251 * bit field is non-null.
252 *
253 * char *rd_format; If non-null, the shifted bit field value
254 * is printed using this format.
255 *
256 * struct reg_values *rd_values; If non-null, a pointer to a table
257 * matching numeric values with symbolic names.
258 * rd_values are searched and the symbolic
259 * value is printed if a match is found, if no
260 * match is found "???" is printed.
261 *
262 * printf("%n %N", val, reg_valuesp);
263 * struct reg_values *reg_valuesp;
264 *
265 * the %n and %N formats allow formatted output of symbolic constants
266 * Reg_valuesp is a pointer to an array of struct reg_values which pairs
267 * numeric values (rv_value) with symbolic names (rv_name). The array is
268 * terminated with a reg_values entry that has a null pointer for the
269 * rv_name field. When %n or %N is used rd_values are searched and the
270 * symbolic value is printed if a match is found, if no match is found
271 * "???" is printed.
272 *
273 * printf("%C", val);
274 * int val;
275 *
276 * the %C format prints an int as a 4 character string.
277 * The most significant byte of the int is printed first, the least
278 * significant byte is printed last.
279 */
280
281/*
282 * register values
283 * map between numeric values and symbolic values
284 */
285struct reg_values {
286 unsigned rv_value;
287 char *rv_name;
288};
289
290/*
291 * register descriptors are used for formatted prints of register values
292 * rd_mask and rd_shift must be defined, other entries may be null
293 */
294struct reg_desc {
295 unsigned rd_mask; /* mask to extract field */
296 int rd_shift; /* shift for extracted value, - >>, + << */
297 char *rd_name; /* field name */
298 char *rd_format; /* format to print field */
299 struct reg_values *rd_values; /* symbolic names of values */
300};
301
9bccf70c
A
302#endif /* __APPLE_API_OBSOLETE */
303
1c79356b
A
304void logpri __P((int));
305void log __P((int, const char *, ...));
306void addlog __P((const char *, ...));
307
308#endif /* !KERNEL */
309#endif /* !_SYS_SYSLOG_H_ */