Update.
[glibc.git] / misc / sys / syslog.h
blob8394d2712c3ea05496ca3915b46aa2b7c1baed41
1 /*
2 * Copyright (c) 1982, 1986, 1988, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
33 * @(#)syslog.h 8.1 (Berkeley) 6/2/93
36 #ifndef _SYS_SYSLOG_H
37 #define _SYS_SYSLOG_H 1
39 #include <features.h>
40 #define __need___va_list
41 #include <stdarg.h>
44 #define _PATH_LOG "/dev/log"
47 * priorities/facilities are encoded into a single 32-bit quantity, where the
48 * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
49 * (0-big number). Both the priorities and the facilities map roughly
50 * one-to-one to strings in the syslogd(8) source code. This mapping is
51 * included in this file.
53 * priorities (these are ordered)
55 #define LOG_EMERG 0 /* system is unusable */
56 #define LOG_ALERT 1 /* action must be taken immediately */
57 #define LOG_CRIT 2 /* critical conditions */
58 #define LOG_ERR 3 /* error conditions */
59 #define LOG_WARNING 4 /* warning conditions */
60 #define LOG_NOTICE 5 /* normal but significant condition */
61 #define LOG_INFO 6 /* informational */
62 #define LOG_DEBUG 7 /* debug-level messages */
64 #define LOG_PRIMASK 0x07 /* mask to extract priority part (internal) */
65 /* extract priority */
66 #define LOG_PRI(p) ((p) & LOG_PRIMASK)
67 #define LOG_MAKEPRI(fac, pri) (((fac) << 3) | (pri))
69 #ifdef SYSLOG_NAMES
70 #define INTERNAL_NOPRI 0x10 /* the "no priority" priority */
71 /* mark "facility" */
72 #define INTERNAL_MARK LOG_MAKEPRI(LOG_NFACILITIES, 0)
73 typedef struct _code {
74 char *c_name;
75 int c_val;
76 } CODE;
78 CODE 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 }
94 #endif
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) /* security/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) /* security/authorization messages (private) */
108 #define LOG_FTP (11<<3) /* ftp daemon */
110 /* other codes through 15 reserved for system use */
111 #define LOG_LOCAL0 (16<<3) /* reserved for local use */
112 #define LOG_LOCAL1 (17<<3) /* reserved for local use */
113 #define LOG_LOCAL2 (18<<3) /* reserved for local use */
114 #define LOG_LOCAL3 (19<<3) /* reserved for local use */
115 #define LOG_LOCAL4 (20<<3) /* reserved for local use */
116 #define LOG_LOCAL5 (21<<3) /* reserved for local use */
117 #define LOG_LOCAL6 (22<<3) /* reserved for local use */
118 #define LOG_LOCAL7 (23<<3) /* reserved for local use */
120 #define LOG_NFACILITIES 24 /* current number of facilities */
121 #define LOG_FACMASK 0x03f8 /* mask to extract facility part */
122 /* facility of pri */
123 #define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3)
125 #ifdef SYSLOG_NAMES
126 CODE facilitynames[] =
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 }
152 #endif
155 * arguments to setlogmask.
157 #define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
158 #define LOG_UPTO(pri) ((1 << ((pri)+1)) - 1) /* all priorities through pri */
161 * Option flags for openlog.
163 * LOG_ODELAY no longer does anything.
164 * LOG_NDELAY is the inverse of what it used to be.
166 #define LOG_PID 0x01 /* log the pid with each message */
167 #define LOG_CONS 0x02 /* log on the console if errors in sending */
168 #define LOG_ODELAY 0x04 /* delay open until first syslog() (default) */
169 #define LOG_NDELAY 0x08 /* don't delay open */
170 #define LOG_NOWAIT 0x10 /* don't wait for console forks: DEPRECATED */
171 #define LOG_PERROR 0x20 /* log to stderr as well */
173 __BEGIN_DECLS
175 /* Close desriptor used to write to system logger. */
176 extern void closelog __P ((void));
178 /* Open connection to system logger. */
179 extern void openlog __P ((__const char *__ident, int __option,
180 int __facility));
182 /* Set the log mask level. */
183 extern int setlogmask __P ((int __mask));
185 /* Generate a log message using FMT string and option arguments. */
186 extern void syslog __P ((int __pri, __const char *__fmt, ...));
188 #ifdef __USE_BSD
189 /* Generate a log message using FMT and using arguments pointed to by AP. */
190 extern void vsyslog __P ((int __pri, __const char *__fmt,
191 __gnuc_va_list __ap));
192 #endif
194 __END_DECLS
196 #endif /* sys/syslog.h */