e425c803a741c0df1e916193753e3ef246aa5157
[dragonfly.git] / usr.sbin / syslogd / syslog.conf.5
1 .\" Copyright (c) 1990, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)syslog.conf.5       8.1 (Berkeley) 6/9/93
33 .\" $FreeBSD: src/usr.sbin/syslogd/syslog.conf.5,v 1.16.2.11 2003/03/12 22:08:15 trhodes Exp $
34 .\" $DragonFly: src/usr.sbin/syslogd/syslog.conf.5,v 1.2 2003/06/17 04:30:03 dillon Exp $
35 .\"
36 .Dd June 9, 1993
37 .Dt SYSLOG.CONF 5
38 .Os
39 .Sh NAME
40 .Nm syslog.conf
41 .Nd
42 .Xr syslogd 8
43 configuration file
44 .Sh DESCRIPTION
45 The
46 .Nm
47 file is the configuration file for the
48 .Xr syslogd 8
49 program.
50 It consists of
51 blocks of lines separated by
52 .Em program
53 and
54 .Em hostname
55 specifications (separations appear along on the line),
56 with each line containing two fields: the
57 .Em selector
58 field which specifies the types of messages and priorities to which the
59 line applies, and an
60 .Em action
61 field which specifies the action to be taken if a message
62 .Xr syslogd 8
63 receives matches the selection criteria.
64 The
65 .Em selector
66 field is separated from the
67 .Em action
68 field by one or more tab characters or spaces.
69 .Pp
70 Note that if you use spaces as separators, your
71 .Nm
72 might be incompatible with other Unices or Unix-like systems.
73 This functionality was added for ease of configuration
74 (e.g. it is possible to cut-and-paste into
75 .Nm ) ,
76 and to avoid possible mistakes.
77 This change however preserves
78 backwards compatibility with the old style of
79 .Nm
80 (i.e. tab characters only).
81 .Pp
82 The
83 .Em selectors
84 are encoded as a
85 .Em facility ,
86 a period
87 .Pq Dq \&. ,
88 an optional set of comparison flags
89 .Pq Oo \&! Oc Op <=> ,
90 and a
91 .Em level ,
92 with no intervening white-space.
93 Both the
94 .Em facility
95 and the
96 .Em level
97 are case insensitive.
98 .Pp
99 The
100 .Em facility
101 describes the part of the system generating the message, and is one of
102 the following keywords: auth, authpriv, console, cron, daemon, ftp, kern,
103 lpr, mail, mark, news, ntp, security, syslog, user, uucp and local0 through
104 local7.
105 These keywords (with the exception of mark) correspond to
106 similar
107 .Dq Dv LOG_
108 values specified to the
109 .Xr openlog 3
110 and
111 .Xr syslog 3
112 library routines.
113 .Pp
114 The
115 .Em comparison flags
116 may be used to specify exactly what is logged.
117 The default comparison is
118 .Dq =>
119 (or, if you prefer,
120 .Dq >= ) ,
121 which means that messages from the specified
122 .Em facility
123 list, and of a priority
124 level equal to or greater than
125 .Em level
126 will be logged.
127 Comparison flags beginning with
128 .Dq Li \&!
129 will have their logical sense inverted.
130 Thus
131 .Dq !=info
132 means all levels except info and
133 .Dq !notice
134 has the same meaning as
135 .Dq <notice .
136 .Pp
137 The
138 .Em level
139 describes the severity of the message, and is a keyword from the
140 following ordered list (higher to lower): emerg, alert, crit, err,
141 warning, notice, info and debug.
142 These keywords correspond to
143 similar
144 .Dq Dv LOG_
145 values specified to the
146 .Xr syslog 3
147 library routine.
148 .Pp
149 Each block of lines is separated from the previous block by a
150 .Em program
151 or
152 .Em hostname
153 specification.
154 A block will only log messages corresponding to the most recent
155 .Em program
156 and
157 .Em hostname
158 specifications given.
159 Thus, with a block which selects
160 .Ql ppp
161 as the
162 .Em program ,
163 directly followed by a block that selects messages from the
164 .Em hostname
165 .Ql dialhost ,
166 the second block will only log messages
167 from the
168 .Xr ppp 8
169 program on dialhost.
170 .Pp
171 A
172 .Em program
173 specification is a line beginning with
174 .Ql #!prog
175 or
176 .Ql !prog
177 (the former is for compatibility with the previous syslogd, if one is sharing
178 .Nm
179 files, for example)
180 and the following blocks will be associated with calls to
181 .Xr syslog 3
182 from that specific program.
183 A
184 .Em program
185 specification for
186 .Ql foo
187 will also match any message logged by the kernel with the prefix
188 .Ql "foo: " .
189 The
190 .Ql #!+prog
191 or
192 .Ql !+prog
193 specification works just like the previous one,
194 and the
195 .Ql #!-prog
196 or
197 .Ql !-prog
198 specification will match any message but the ones from that
199 program.
200 A
201 .Em hostname
202 specification of the form
203 .Ql #+hostname
204 or
205 .Ql +hostname
206 means the following blocks will be applied to messages
207 received from the specified hostname.
208 Alternatively, the
209 .Em hostname
210 specification
211 .Ql #-hostname
212 or
213 .Ql -hostname
214 causes the following blocks to be applied to messages
215 from any host but the one specified.
216 If the hostname is given as
217 .Ql @ ,
218 the local hostname will be used.
219 A
220 .Em program
221 or
222 .Em hostname
223 specification may be reset by giving the program or hostname as
224 .Ql * .
225 .Pp
226 See
227 .Xr syslog 3
228 for further descriptions of both the
229 .Em facility
230 and
231 .Em level
232 keywords and their significance.
233 It's preferred that selections be made on
234 .Em facility
235 rather than
236 .Em program ,
237 since the latter can easily vary in a networked environment.
238 In some cases,
239 though, an appropriate
240 .Em facility
241 simply doesn't exist.
242 .Pp
243 If a received message matches the specified
244 .Em facility
245 and is of the specified
246 .Em level
247 .Em (or a higher level) ,
248 and the first word in the message after the date matches the
249 .Em program ,
250 the action specified in the
251 .Em action
252 field will be taken.
253 .Pp
254 Multiple
255 .Em selectors
256 may be specified for a single
257 .Em action
258 by separating them with semicolon
259 .Pq Dq \&;
260 characters.
261 It is important to note, however, that each
262 .Em selector
263 can modify the ones preceding it.
264 .Pp
265 Multiple
266 .Em facilities
267 may be specified for a single
268 .Em level
269 by separating them with comma
270 .Pq Dq \&,
271 characters.
272 .Pp
273 An asterisk
274 .Pq Dq *
275 can be used to specify all
276 .Em facilities ,
277 all
278 .Em levels ,
279 or all
280 .Em programs .
281 .Pp
282 The special
283 .Em facility
284 .Dq mark
285 receives a message at priority
286 .Dq info
287 every 20 minutes
288 (see
289 .Xr syslogd 8 ) .
290 This is not enabled by a
291 .Em facility
292 field containing an asterisk.
293 .Pp
294 The special
295 .Em level
296 .Dq none
297 disables a particular
298 .Em facility .
299 .Pp
300 The
301 .Em action
302 field of each line specifies the action to be taken when the
303 .Em selector
304 field selects a message.
305 There are five forms:
306 .Bl -bullet
307 .It
308 A pathname (beginning with a leading slash).
309 Selected messages are appended to the file.
310 .It
311 A hostname (preceded by an at
312 .Pq Dq @
313 sign).
314 Selected messages are forwarded to the
315 .Xr syslogd 8
316 program on the named host.
317 .It
318 A comma separated list of users.
319 Selected messages are written to those users
320 if they are logged in.
321 .It
322 An asterisk.
323 Selected messages are written to all logged-in users.
324 .It
325 A vertical bar
326 .Pq Dq \&| ,
327 followed by a command to pipe the selected
328 messages to.  The command is passed to
329 .Xr sh 1
330 for evaluation, so usual shell metacharacters or input/output
331 redirection can occur.  (Note however that redirecting
332 .Xr stdio 3
333 buffered output from the invoked command can cause additional delays,
334 or even lost output data in case a logging subprocess exited with a
335 signal.)  The command itself runs with
336 .Em stdout
337 and
338 .Em stderr
339 redirected to
340 .Pa /dev/null .
341 Upon receipt of a
342 .Dv SIGHUP ,
343 .Xr syslogd 8
344 will close the pipe to the process.  If the process didn't exit
345 voluntarily, it will be sent a
346 .Dv SIGTERM
347 signal after a grace period of up to 60 seconds.
348 .Pp
349 The command will only be started once data arrives that should be piped
350 to it.  If it exited later, it will be restarted as necessary.  So if it
351 is desired that the subprocess should get exactly one line of input only
352 (which can be very resource-consuming if there are a lot of messages
353 flowing quickly), this can be achieved by exiting after just one line of
354 input.  If necessary, a script wrapper can be written to this effect.
355 .Pp
356 Unless the command is a full pipeline, it's probably useful to
357 start the command with
358 .Em exec
359 so that the invoking shell process does not wait for the command to
360 complete.  Warning: the process is started under the UID invoking
361 .Xr syslogd 8 ,
362 normally the superuser.
363 .El
364 .Pp
365 Blank lines and lines whose first non-blank character is a hash
366 .Pq Dq #
367 character are ignored.
368 .Sh EXAMPLES
369 A configuration file might appear as follows:
370 .Bd -literal
371 # Log all kernel messages, authentication messages of
372 # level notice or higher, and anything of level err or
373 # higher to the console.
374 # Don't log private authentication messages!
375 *.err;kern.*;auth.notice;authpriv.none  /dev/console
376
377 # Log anything (except mail) of level info or higher.
378 # Don't log private authentication messages!
379 *.info;mail.none;authpriv.none          /var/log/messages
380
381 # Log daemon messages at debug level only
382 daemon.=debug                                           /var/log/daemon.debug
383
384 # The authpriv file has restricted access.
385 authpriv.*                                              /var/log/secure
386
387 # Log all the mail messages in one place.
388 mail.*                                                  /var/log/maillog
389
390 # Everybody gets emergency messages, plus log them on another
391 # machine.
392 *.emerg                                                 *
393 *.emerg                                                 @arpa.berkeley.edu
394
395 # Root and Eric get alert and higher messages.
396 *.alert                                                 root,eric
397
398 # Save mail and news errors of level err and higher in a
399 # special file.
400 uucp,news.crit                                          /var/log/spoolerr
401
402 # Pipe all authentication messages to a filter.
403 auth.*                                  |exec /usr/local/sbin/authfilter
404
405 # Save ftpd transactions along with mail and news
406 !ftpd
407 *.*                                                     /var/log/spoolerr
408
409 # Log all security messages to a separate file.
410 security.*                                              /var/log/security
411
412 # Log all writes to /dev/console to a separate file.
413 console.*                                               /var/log/console.log
414 .Ed
415 .Sh IMPLEMENTATION NOTES
416 The
417 .Dq kern
418 facility is usually reserved for messages
419 generated by the local kernel.
420 Other messages logged with facility
421 .Dq kern
422 are usually translated to facility
423 .Dq user .
424 This translation can be disabled;
425 see
426 .Xr syslogd 8
427 for details.
428 .Sh FILES
429 .Bl -tag -width /etc/syslog.conf -compact
430 .It Pa /etc/syslog.conf
431 .Xr syslogd 8
432 configuration file
433 .El
434 .Sh BUGS
435 The effects of multiple
436 .Em selectors
437 are sometimes not intuitive.
438 For example
439 .Dq mail.crit,*.err
440 will select
441 .Dq mail
442 facility messages at the level of
443 .Dq err
444 or higher, not at the level of
445 .Dq crit
446 or higher.
447 .Pp
448 In networked environments, note that not all operating systems
449 implement the same set of facilities.  The facilities
450 authpriv, cron, ftp, and ntp that are known to this implementation
451 might be absent on the target system.  Even worse, DEC UNIX uses
452 facility number 10 (which is authpriv in this implementation) to
453 log events for their AdvFS file system.
454 .Sh SEE ALSO
455 .Xr syslog 3 ,
456 .Xr syslogd 8