No empty .Rs/.Re
[netbsd-mini2440.git] / usr.sbin / syslogd / syslog.conf.5
blob4973d91c99c00ed3b9614b6a8b713f6f21a131ca
1 .\"     $NetBSD: syslog.conf.5,v 1.17 2010/01/01 21:26:18 mbalmer Exp $
2 .\"
3 .\" Copyright (c) 1990, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     from: @(#)syslog.conf.5 8.1 (Berkeley) 6/9/93
31 .\"
32 .Dd January 1, 2010
33 .Dt SYSLOG.CONF 5
34 .Os
35 .Sh NAME
36 .Nm syslog.conf
37 .Nd
38 .Xr syslogd 8
39 configuration file
40 .Sh DESCRIPTION
41 The
42 .Nm
43 file is the configuration file for the
44 .Xr syslogd 8
45 program.
46 It consists of extended options (lines with one key="value" assignment)
47 and blocks of lines separated by
48 .Em program
49 and
50 .Em hostname
51 specifications, with each line containing two fields: the
52 .Em selector
53 field which specifies the types of messages and priorities to which the
54 line applies, and an
55 .Em action
56 field which specifies the action to be taken if a message
57 .Xr syslogd 8
58 receives matches the selection criteria.
59 The
60 .Em selector
61 field is separated from the
62 .Em action
63 field by one or more tab characters.
64 .Pp
65 The
66 .Em Selectors
67 function
68 are encoded as a
69 .Em facility ,
70 a period
71 .Pq Sq \&. ,
72 an optional set of comparison flags
73 .Pq Bo ! Bc Bq \*[Lt]=\*[Gt] ,
74 and a
75 .Em level ,
76 with no intervening white-space.
77 Both the
78 .Em facility
79 and the
80 .Em level
81 are case insensitive.
82 .Pp
83 The
84 .Em facility
85 describes the part of the system generating the message, and is one of
86 the following keywords: auth, authpriv, cron, ftp, daemon, kern, lpr,
87 mail, mark, news, syslog, user, uucp and local0 through local7.
88 These keywords (with the exception of mark) correspond to the
89 similar
90 .Dq Dv LOG_
91 values specified to the
92 .Xr openlog 3
93 and
94 .Xr syslog 3
95 library routines.
96 .Pp
97 The
98 .Em comparison flags
99 may be used to specify exactly what levels are logged.
100 If unspecified, the default comparison is
101 .Sq \*[Gt]=
102 .Pq greater than or equal to ,
103 or, if the
104 .Fl U
105 option is passed to
106 .Xr syslogd 8 ,
107 .Sq =
108 .Pq equal to .
109 Comparison flags beginning with
110 .So ! Sc
111 will have their logical sense inverted.
112 Thus,
113 .Sq !=info
114 means all levels except info and
115 .Sq !notice
116 has the same meaning as
117 .Sq \*[Lt]notice .
120 .Em level
121 describes the severity of the message, and is a keyword from the
122 following ordered list (higher to lower): emerg, alert, crit, err,
123 warning, notice, info and debug.
124 These keywords correspond to the
125 similar
126 .Pq Dv LOG_
127 values specified to the
128 .Xr syslog 3
129 library routine.
131 Each block of lines is separated from the previous block by a
132 .Em program
134 .Em hostname
135 specification.
136 A block will only log messages corresponding to the most recent
137 .Em program
139 .Em hostname
140 specifications given.
141 Consider the case of a block that selects
142 .Ql pppd
143 as the
144 .Em program ,
145 directly followed by a block that selects messages from the
146 .Em hostname
147 .Ql dialhost .
148 The second block will log only messages from the
149 .Xr pppd 8
150 program from the host
151 .Sq dialhost .
154 .Em program
155 specification of the form
156 .Ql #!+prog1,prog2
158 .Ql !+prog1,prog2
159 will cause subsequent blocks to be applied to messages logged by the
160 specified programs.
162 .Em program
163 specification of the form
164 .Ql #!-prog1,prog2
166 .Ql !-prog1,prog2
167 will cause subsequent blocks to be applied to messages logged by programs
168 other than the ones specified.
170 .Em program
171 specification of the form
172 .Ql #!prog1,prog2
174 .Ql !prog1,prog2
175 is equivalent to
176 .Ql !+prog1,prog2 .
177 Program selectors may also match kernel-generated messages.
178 For example, a program specification of
179 .Ql !+subsys
180 will match kernel-generated messages of the form
181 .Ql subsys: here is a message .
182 The special specification
183 .Ql !*
184 will cause subsequent blocks to apply to all programs.
187 .Em hostname
188 specification of the form
189 .Ql #+host1,host2
191 .Ql +host1,host2
192 will cause subsequent blocks to be applied to messages received from
193 the specified hosts.
195 .Em hostname
196 specification of the form
197 .Ql #-host1,host2
199 .Ql -host1,host2
200 will cause subsequent blocks to be applied to messages from hosts other
201 than the ones specified.
202 If the hostname is given as
203 .Ql @ ,
204 the local hostname will be used.
205 The special specification
206 .Ql +*
207 will cause subsequent blocks to apply to all hosts.
210 .Xr syslog 3
211 for a further descriptions of both the
212 .Em facility
214 .Em level
215 keywords and their significance.
216 It is preferred that selections be made based on
217 .Em facility
218 rather than
219 .Em program ,
220 since the latter can vary in a networked environment.
221 However, there are cases where a
222 .Em facility
223 may be too broadly defined.
225 If a received message matches the specified
226 .Em facility ,
227 and the specified
228 .Em level
229 comparison is true,
230 and the first word in the message after the date matches the
231 .Em program ,
232 the action specified in the
233 .Em action
234 field will be taken.
236 Multiple
237 .Em selectors
238 may be specified for a single
239 .Em action
240 by separating them with semicolon
241 .Pq Sq \&;
242 characters.
243 It is important to note, however, that each
244 .Em selector
245 can modify the ones preceding it.
247 Multiple
248 .Em facilities
249 may be specified for a single
250 .Em level
251 by separating them with comma
252 .Pq Sq \&,
253 characters.
255 An asterisk
256 .Pq Sq \&*
257 can be used to specify all
258 .Em facilities
259 or all
260 .Em levels .
262 The special
263 .Em facility
264 .Dq mark
265 receives a message at priority
266 .Dq info
267 every 20 minutes
268 (see
269 .Xr syslogd 8 ) .
270 This is not enabled by a
271 .Em facility
272 field containing an asterisk.
274 The special
275 .Em level
276 .Dq none
277 disables a particular
278 .Em facility .
281 .Em action
282 field of each line specifies the action to be taken when the
283 .Em selector
284 field selects a message.
285 There are five forms:
286 .Bl -bullet
288 A pathname (beginning with a leading slash).
289 Selected messages are appended to the file.
291 To ensure that kernel messages are written to disk promptly,
292 .Xr syslogd 8
293 calls
294 .Xr fsync 2
295 after writing messages from the kernel.
296 Other messages are not synced explcitly.
297 You may disable syncing of files specified to receive kernel messages
298 by prefixing the pathname with a minus sign
299 .Ql - .
300 Note that use of this option may cause the loss of log information in
301 the event of a system crash immediately following the write attempt.
302 However, using this option may prove to be useful if your system's
303 kernel is logging many messages.
305 Normally the priority and version is not written to file.
306 In order to use syslog-sign you may prefix a pathname with the plus sign
307 .Ql + .
308 If both switches are used the order has to be
309 .Ql +- .
311 A hostname (preceded by an at
312 .Pq Sq @
313 sign).
314 Selected messages are forwarded to the
315 .Xr syslogd 8
316 program on the named host with UDP.
318 A hostname preceded by an at
319 .Pq Sq @
320 sign and enclosed in brackets
321 .Pq Sq []
323 Selected messages are forwarded with TLS to the
324 .Xr syslogd 8
325 program on the named host.
326 After the closing bracket a colon
327 .Pq Sq \&:
328 and a port or service name may be appended.
329 Additional options are configured in parantheses in the form of key="value".
330 Recognized keywords are
331 .Ar subject ,
332 .Ar fingerprint ,
333 .Ar cert ,
335 .Ar verify .
337 A comma separated list of users.
338 Selected messages are written to those users
339 if they are logged in.
341 An asterisk.
342 Selected messages are written to all logged-in users.
344 A vertical bar
345 .Pq Sq |
346 followed by a command to which to pipe the selected messages.
347 The command string is passed to
348 .Pa /bin/sh
349 for evaluation, so the usual shell metacharacters or input/output
350 redirection can occur.
351 (Note that redirecting
352 .Xr stdio 3
353 buffered output from the invoked command can cause additional delays,
354 or even lost output data in case a logging subprocess exits with a
355 signal.)
356 The command itself runs with
357 .Em stdout
359 .Em stderr
360 redirected to
361 .Pa /dev/null .
362 Upon receipt of a
363 .Dv SIGHUP ,
364 .Xr syslogd 8
365 will close the pipe to the process.
366 If the process does not exit voluntarily, it will be sent a
367 .Dv SIGTERM
368 signal after a grace period of up to 60 seconds.
370 The command will only be started once data arrives that should be
371 piped to it.
372 If the command exits, it will be restarted as necessary.
374 If it is desired that the subprocess should receive exactly one line of
375 input, this can be achieved by exiting after reading and processing the
376 single line.
377 A wrapper script can be used to achieve this effect, if necessary.
378 Note that this method can be very resource-intensive if many log messages
379 are being piped through the filter.
381 Unless the command is a full pipeline, it may be useful to
382 start the command with
383 .Em exec
384 so that the invoking shell process does not wait for the command to
385 complete.
386 Note that the command is started with the UID of the
387 .Xr syslogd 8
388 process, normally the superuser.
390 Just like with files a plus sign
391 .Ql +
392 will leave the priority and version information intact.
395 Blank lines and lines whose first non-blank character is a hash
396 .Pq Sq #
397 character are ignored.
398 .Sh "TLS OPTIONS"
399 Additional options are used for TLS configuration:
400 .Bl -ohang
401 .It Em tls_server
402 Enables TLS server mode.
403 .It Em tls_bindport
404 Service name or port number to bind to.
405 Default is
406 .Sq syslog .
407 .Em As long as no official port is assigned this option is required
408 .Em for TLS servers.
409 .It Em tls_bindhost
410 Hostname or IP to bind to.
411 .It Em tls_gen_cert
412 Automatically generate a private key and certificate.
413 .It Em tls_key
414 File with private key.
415 Default is
416 .Sq /etc/openssl/default.key
417 .It Em tls_cert
418 File with certificate to use.
419 Default is
420 .Sq /etc/openssl/default.crt
421 .It Em tls_ca
422 File with CA certificate to use.
423 .It Em tls_cadir
424 Directory containing CA certificates.
425 .It Em tls_verify
426 If set to
427 .Sq off
428 then certificate authentication is skipped.
429 .It Em tls_allow_fingerprints
430 List of fingerprints of trusted client certificates.
431 .It Em tls_allow_clientcerts
432 List of filenames with trusted client certificates.
434 .Sh "TLS AUTHENTICATION"
435 One function of TLS is mutual authentication of client and server.
436 Unless authentication is disabled by setting
437 .Sq tls_verify=off
438 the following rules are used:
439 .Ss "As client:"
440 A client can be configured not to check a server's certificate by setting the
441 parameter
442 .Ar verify
444 .Sq off .
445 If the server's certificate is signed by a trusted CA then it is checked
446 if its hostname or IP is given in its certificate (as a CommonName, as a
447 DNS SubjectAltName, or as an IP SubjectAltName).
448 If any match is found then the server is authenticated.
449 If a
450 .Ar subject
451 parameter is given then it is can satisfy this test as well.
452 This allows DNS-independent configurations using the server's IP address in the
453 destination and adding its hostname as
454 .Ar subject
455 to authenticate the TLS connection without having to add the IP to the X.509
456 certificate.
458 If no CA is used or no trust path between CA and server certificate exists, then
459 hash value of the server's certificate is compared with the hash given in
460 .Ar fingerprint
461 and the hash of the certificate in
462 .Ar cert .
463 If the hashes are equal then the server is authenticated.
464 .Ss "As server:"
465 If using a CA and the client's certificate is signed by it then the client is
466 authenticated.
467 Otherwise the hash of the client's certificate is compared with the hashes given
469 .Ar tls_allow_fingerprints
470 and the hashes of the certificates given in
471 .Ar tls_allow_clientcerts .
472 On any match the client is authenticated.
473 .Sh BUFFERING
474 .Xr syslogd 8
475 is able to buffer temporary not writeable messages in memory.
476 To limit the memory consumed for this buffering the following optons may be
477 given:
478 .Bl -ohang
479 .It Em file_queue_length
480 .It Em pipe_queue_length
481 .It Em tls_queue_length
482 The maximum number of messages buffered for one destination of type tls, file,
483 or pipe respectively.
484 Defaults are
485 .Sq 1024 ,
486 .Sq 1024 ,
488 .Sq -1
489 (no limit).
490 .It Em file_queue_size
491 .It Em pipe_queue_size
492 .It Em tls_queue_size
493 The maximum memory usage in bytes of messages buffered for one destination.
494 Defaults are
495 .Sq 1M ,
496 .Sq 1M ,
498 .Sq 16M .
500 .Sh SIGNING
501 .Xr syslogd 8
502 is able to digitally sign all processed messages.
503 The used protocol is defined by RFC nnnn (syslog-sign):
504 at the start of a session the signing sender sends so called certificate
505 blocks containing its public key; after that it periodically sends a signed
506 message containing hashes of previous messages.
508 To detect later manipulation one has to keep a copy of the key used for
509 signing (otherwise an attacker could alter the logs and sign them with his
510 his own key).
511 If TLS is used with a DSA key then the same key will be used for signing.
512 This is the recommended setup because it makes it easy to have copies of
513 the certificate (with the public key) in backups.
514 Otherwise new keys are generated on every restart and for certain verification
515 it is necessary to have copies of all used keys.
516 So logging only to a local file is not secure; at least the used keys should
517 be logged to another host.
518 .Bl -ohang
519 .It Em sign_sg
520 Enables signing.
521 Set this option to enable syslog-sign and select how to assign
522 messages to signature groups (subsets of messages that are signed together).
523 To enable later signature verification and detection of lost messages the
524 assignment should be chosen such that all messages of one signature group
525 are written to the same file.
526 Four possible values for this option are:
527 .Bl -hang -offset indent
528 .It Em 0
529 Use one global signature group for all messages.
530 .It Em 1
531 Use one signature group per priority.
532 .It Em 2
533 Use signature groups for ranges of priorities.
534 .It Em 3
535 Use one signature group per destination.
536 This is a custom strategy not defined by the standard.
537 With this setting one signature group is set up for
538 every file and network action.
540 .It Em sign_delim_sg2
541 This option is only evaluated with
542 .Sq sign_sg=2
543 and allows to configure the priority ranges for signature groups.
544 The parameters are numerical values used as the maximum priority for one group.
545 The default is to use one signature groups per facility, which is equal to
546 setting
547 .Sq sign_delim_sg2=7 15 23 31 39 ... .
549 .Sh FILES
550 .Bl -tag -width /etc/syslog.conf -compact
551 .It Pa /etc/syslog.conf
553 .Xr syslogd 8
554 configuration file.
555 .It Pa /usr/share/examples/syslogd/verify.pl
556 Example script to verify message signatures.
557 (Requires Perl and modules not part of NetBSD.)
559 .Sh EXAMPLES
560 A configuration file might appear as follows:
561 .Bd -literal
562 # Log all kernel messages, authentication messages of
563 # level notice or higher and anything of level err or
564 # higher to the console.
565 # Don't log private authentication messages!
566 *.err;kern.*;auth.notice;authpriv.none  /dev/console
568 # Log anything (except mail) of level info or higher.
569 # Don't log private authentication messages!
570 *.info;mail.none;authpriv.none          /var/log/messages
572 # Log daemon messages at debug level only
573 daemon.=debug                           /var/log/daemon.debug
575 # The authpriv file has restricted access.
576 # Write logs with priority for later verification with syslog-sign.
577 authpriv.*                              +/var/log/secure
579 # Log all the mail messages in one place.
580 mail.*                                  /var/log/maillog
582 # Everybody gets emergency messages, plus log them on another
583 # machine.
584 *.emerg                                 *
585 *.emerg                                 @arpa.berkeley.edu
587 # Log all messages of level info or higher to another
588 # machine using TLS with an alternative portname and a
589 # fingerprint for athentication
590 *.info                  @[logserver]:1234(fingerprint="SHA1:01:02:...")
592 # Root and Eric get alert and higher messages.
593 *.alert                                 root,eric
595 # Save mail and news errors of level err and higher in a
596 # special file.
597 mail,news.err                           /var/log/spoolerr
599 # Pipe all authentication messages to a filter.
600 auth.*                                  |exec /usr/local/sbin/authfilter
602 # Log kernel messages to a separate file without syncing each message.
603 kern.*                                  -/var/log/kernlog
605 # Save ftpd transactions along with mail and news.
606 !ftpd
607 *.*                                     /var/log/spoolerr
609 # Send all error messages from a RAID array through a filter.
610 !raid0
611 kern.err                                |exec /usr/local/sbin/raidfilter
613 # Save pppd messages from dialhost to a separate file.
614 !pppd
615 +dialhost
616 *.*                                     /var/log/dialhost-pppd
618 # Save non-local log messages from all programs to a separate file.
621 *.*                                     /var/log/foreign
623 # Generate digital signatures for all messages
624 # to each file or network destination.
625 sign_sg=3
627 .Sh SEE ALSO
628 .Xr syslog 3 ,
629 .Xr syslogd 8
630 .Sh HISTORY
633 file appeared in
634 .Bx 4.3 ,
635 along with
636 .Xr syslogd 8 .
637 .Sh BUGS
638 The effects of multiple selectors are sometimes not intuitive.
639 For example
640 .Dq mail.crit;*.err
641 will select
642 .Dq mail
643 facility messages at
644 the level of
645 .Dq err
646 or higher, not at the level of
647 .Dq crit
648 or higher.