source: branches/libc-0.6/src/emx/include/sys/syslog.h

Last change on this file was 1506, checked in by bird, 21 years ago

@unixroot. header reviews. ++

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