Update.
[glibc.git] / manual / syslog.texi
blob4c190d323909272c1feb2f05498497470025223a
1 @node Syslog, Mathematics, Low-Level Terminal Interface, Top
2 @c %MENU% System logging and messaging
3 @chapter Syslog
6 This chapter describes facilities for issuing and logging messages of
7 system administration interest.  This chapter has nothing to do with
8 programs issuing messages to their own users or keeping private logs
9 (One would typically do that with the facilities described in
10 @ref{I/O on Streams}).
12 Most systems have a facility called ``Syslog'' that allows programs to
13 submit messages of interest to system administrators and can be
14 configured to pass these messages on in various ways, such as printing
15 on the console, mailing to a particular person, or recording in a log
16 file for future reference.
18 A program uses the facilities in this chapter to submit such messages.
20 @menu
21 * Overview of Syslog::           Overview of a system's Syslog facility
22 * Submitting Syslog Messages::   Functions to submit messages to Syslog
23 @end menu
25 @node Overview of Syslog
26 @section Overview of Syslog
28 System administrators have to deal with lots of different kinds of
29 messages from a plethora of subsystems within each system, and usually
30 lots of systems as well.  For example, an FTP server might report every
31 connection it gets.  The kernel might report hardware failures on a disk
32 drive.  A DNS server might report usage statistics at regular intervals.
34 Some of these messages need to be brought to a system administrator's
35 attention immediately.  And it may not be just any system administrator
36 -- there may be a particular system administrator who deals with a
37 particular kind of message.  Other messages just need to be recorded for
38 future reference if there is a problem.  Still others may need to have
39 information extracted from them by an automated process that generates
40 monthly reports.
42 To deal with these messages, most Unix systems have a facility called
43 "Syslog."  It is generally based on a daemon called ``Syslogd''
44 Syslogd listens for messages on a Unix domain socket named
45 @file{/dev/log}.  Based on classification information in the messages
46 and its configuration file (usually @file{/etc/syslog.conf}), Syslogd
47 routes them in various ways.  Some of the popular routings are:
49 @itemize @bullet
50 @item
51 Write to the system console
52 @item
53 Mail to a specific user
54 @item
55 Write to a log file
56 @item
57 Pass to another daemon
58 @item
59 Discard
60 @end itemize
62 Syslogd can also handle messages from other systems.  It listens on the 
63 @code{syslog} UDP port as well as the local socket for messages.
65 Syslog can handle messages from the kernel itself.  But the kernel
66 doesn't write to @file{/dev/log}; rather, another daemon (sometimes
67 called ``Klogd'') extracts messages from the kernel and passes them on to
68 Syslog as any other process would (and it properly identifies them as
69 messages from the kernel).
71 Syslog can even handle messages that the kernel issued before Syslogd or
72 Klogd was running.  A Linux kernel, for example, stores startup messages
73 in a kernel message ring and they are normally still there when Klogd
74 later starts up.  Assuming Syslogd is running by the time Klogd starts,
75 Klogd then passes everything in the message ring to it.
77 In order to classify messages for disposition, Syslog requires any process
78 that submits a message to it to provide two pieces of classification
79 information with it:
81 @table @asis
82 @item facility
83 This identifies who submitted the message.  There are a small number of
84 facilities defined.  The kernel, the mail subsystem, and an FTP server
85 are examples of recognized facilities.  For the complete list,
86 @xref{syslog; vsyslog}.  Keep in mind that these are
87 essentially arbitrary classifications.  "Mail subsystem" doesn't have any
88 more meaning than the system administrator gives to it.
90 @item priority
91 This tells how important the content of the message is.  Examples of
92 defined priority values are: debug, informational, warning, critical.
93 For the complete list, @xref{syslog; vsyslog}.  Except for
94 the fact that the priorities have a defined order, the meaning of each
95 of these priorities is entirely determined by the system administrator.
97 @end table
99 A ``facility/priority'' is a number that indicates both the facility
100 and the priority.
102 @strong{Warning:} This terminology is not universal.  Some people use
103 ``level'' to refer to the priority and ``priority'' to refer to the
104 combination of facility and priority.  A Linux kernel has a concept of a
105 message ``level,'' which corresponds both to a Syslog priority and to a
106 Syslog facility/priority (It can be both because the facility code for
107 the kernel is zero, and that makes priority and facility/priority the
108 same value).
110 The GNU C library provides functions to submit messages to Syslog.  They
111 do it by writing to the @file{/dev/log} socket.  @xref{Submitting Syslog
112 Messages}.
114 The GNU C library functions only work to submit messages to the Syslog
115 facility on the same system.  To submit a message to the Syslog facility
116 on another system, use the socket I/O functions to write a UDP datagram
117 to the @code{syslog} UDP port on that system.  @xref{Sockets}.
120 @node Submitting Syslog Messages
121 @section Submitting Syslog Messages
123 The GNU C library provides functions to submit messages to the Syslog
124 facility:
126 @menu
127 * openlog::                      Open connection to Syslog
128 * syslog; vsyslog::              Submit message to Syslog
129 * closelog::                     Close connection to Syslog
130 * setlogmask::                   Cause certain messages to be ignored
131 * Syslog Example::               Example of all of the above
132 @end menu
134 These functions only work to submit messages to the Syslog facility on
135 the same system.  To submit a message to the Syslog facility on another
136 system, use the socket I/O functions to write a UDP datagram to the
137 @code{syslog} UDP port on that system.  @xref{Sockets}.
141 @node openlog
142 @subsection openlog
144 The symbols referred to in this section are declared in the file
145 @file{syslog.h}.
147 @comment syslog.h
148 @comment BSD
149 @deftypefun void openlog (char *@var{ident}, int @var{option},
150         int @var{facility})
152 @code{openlog} opens or reopens a connection to Syslog in preparation
153 for submitting messages.
155 @var{ident} is an arbitrary identification string which future
156 @code{syslog} invocations will prefix to each message.  This is intended
157 to identify the source of the message, and people conventionally set it
158 to the name of the program that will submit the messages.
160 @code{openlog} may or may not open the @file{/dev/log} socket, depending
161 on @var{option}.  If it does, it tries to open it and connect it as a 
162 stream socket.  If that doesn't work, it tries to open it and connect it
163 as a datagram socket.  The socket has the ``Close on Exec'' attribute,
164 so the kernel will close it if the process performs an exec.
166 You don't have to use @code{openlog}.  If you call @code{syslog} without
167 having called @code{openlog}, @code{syslog} just opens the connection
168 implicitly and uses defaults for the information in @var{ident} and
169 @var{options}.  
171 @var{options} is a bit string, with the bits as defined by the following
172 single bit masks:
174 @table @code
175 @item LOG_PERROR
176 If on, @code{openlog} sets up the connection so that any @code{syslog}
177 on this connection writes its message to the calling process' Standard
178 Error stream in addition to submitting it to Syslog.  If off, @code{syslog}
179 does not write the message to Standard Error.
181 @item LOG_CONS
182 If on, @code{openlog} sets up the connection so that a @code{syslog} on
183 this connection that fails to submit a message to Syslog writes the
184 message instead to system console.  If off, @code{syslog} does not write
185 to the system console (but of course Syslog may write messages it
186 receives to the console).
188 @item LOG_PID
189 When on, @code{openlog} sets up the connection so that a @code{syslog}
190 on this connection inserts the calling process' Process ID (PID) into
191 the message.  When off, @code{openlog} does not insert the PID.
193 @item LOG_NDELAY
194 When on, @code{openlog} opens and connects the @file{/dev/log} socket.
195 When off, a future @code{syslog} call must open and connect the socket.
197 @strong{Portability note:}  In early systems, the sense of this bit was
198 exactly the opposite.
200 @item LOG_ODELAY
201 This bit does nothing.  It exists for backward compatibility.
203 @end table
205 If any other bit in @var{options} is on, the result is undefined.
207 @var{facility} is the default facility code for this connection.  A
208 @code{syslog} on this connection that specifies default facility causes
209 this facility to be associated with the message.  See @code{syslog} for
210 possible values.  A value of zero means the default default, which is
211 @code{LOG_USER}.
213 If a Syslog connection is already open when you call @code{openlog},
214 @code{openlog} ``reopens'' the connection.  Reopening is like opening
215 except that if you specify zero for the default facility code, the
216 default facility code simply remains unchanged and if you specify
217 LOG_NDELAY and the socket is already open and connected, @code{openlog}
218 just leaves it that way.
220 @c There is a bug in closelog() (glibc 2.1.3) wherein it does not reset the
221 @c default log facility to LOG_USER, which means the default default log
222 @c facility could be whatever the default log facility was for a previous
223 @c Syslog connection.  I have documented what the function should be rather
224 @c than what it is because I think if anyone ever gets concerned, the code
225 @c will change.
227 @end deftypefun
230 @node syslog; vsyslog
231 @subsection syslog, vsyslog
233 The symbols referred to in this section are declared in the file
234 @file{syslog.h}.
236 @c syslog() is implemented as a call to vsyslog().
237 @comment syslog.h
238 @comment BSD
239 @deftypefun void syslog (int @var{facility_priority}, char *@var{format}, ...)
241 @code{syslog} submits a message to the Syslog facility.  It does this by
242 writing to the Unix domain socket @code{/dev/log}.
244 @code{syslog} submits the message with the facility and priority indicated
245 by @var{facility_priority}.  The macro @code{LOG_MAKEPRI} generates a
246 facility/priority from a facility and a priority, as in the following 
247 example:
249 @smallexample
250 LOG_MAKEPRI(LOG_USER, LOG_WARNING)
251 @end smallexample
253 The possible values for the facility code are (macros):
255 @c Internally, there is also LOG_KERN, but LOG_KERN == 0, which means
256 @c if you try to use it here, just selects default.
258 @table @code
259 @item LOG_USER
260 A miscellaneous user process
261 @item LOG_MAIL
262 Mail
263 @item LOG_DAEMON
264 A miscellaneous system daemon
265 @item LOG_AUTH
266 Security (authorization)
267 @item LOG_SYSLOG
268 Syslog
269 @item LOG_LPR
270 Central printer
271 @item LOG_NEWS
272 Network news (e.g. Usenet)
273 @item LOG_UUCP
274 UUCP
275 @item LOG_CRON
276 Cron and At
277 @item LOG_AUTHPRIV
278 Private security (authorization)
279 @item LOG_FTP
280 Ftp server
281 @item LOG_LOCAL0
282 Locally defined
283 @item LOG_LOCAL1
284 Locally defined
285 @item LOG_LOCAL2
286 Locally defined
287 @item LOG_LOCAL3
288 Locally defined
289 @item LOG_LOCAL4
290 Locally defined
291 @item LOG_LOCAL5
292 Locally defined
293 @item LOG_LOCAL6
294 Locally defined
295 @item LOG_LOCAL7
296 Locally defined
297 @end table
299 Results are undefined if the facility code is anything else.
301 @strong{note:} Syslog recognizes one other facility code: that of the
302 kernel.  But you can't specify that facility code with these functions.
303 If you try, it looks the same to @code{syslog} as if you are requesting
304 the default facility.  But you wouldn't want to anyway, because any
305 program that uses the GNU C library is not the kernel.
307 You can use just a priority code as @var{facility_priority}.  In that
308 case, @code{syslog} assumes the default facility established when the
309 Syslog connection was opened.  @xref{Syslog Example}.
311 The possible values for the priority code are (macros):
313 @table @code
314 @item LOG_EMERG
315 The message says the system is unusable.
316 @item LOG_ALERT
317 Action on the message must be taken immediately.
318 @item LOG_CRIT
319 The message states a critical condition.
320 @item LOG_ERR
321 The message describes an error.
322 @item LOG_WARNING
323 The message is a warning.
324 @item LOG_NOTICE
325 The message describes a normal but important event.
326 @item LOG_INFO
327 The message is purely informational.
328 @item LOG_DEBUG
329 The message is only for debugging purposes.
330 @end table
332 Results are undefined if the priority code is anything else.
334 If the process does not presently have a Syslog connection open (i.e.
335 it did not call @code{openlog}), @code{syslog} implicitly opens the
336 connection the same as @code{openlog} would, with the following defaults
337 for information that would otherwise be included in an @code{openlog}
338 call: The default identification string is the program name.  The
339 default default facility is @code{LOG_USER}.  The default for all the
340 connection options in @var{options} is as if those bits were off.
341 @code{syslog} leaves the Syslog connection open.
343 If the @file{dev/log} socket is not open and connected, @code{syslog}
344 opens and connects it, the same as @code{openlog} with the
345 @code{LOG_NDELAY} option would.
347 @code{syslog} leaves @file{/dev/log} open and connected unless its attempt
348 to send the message failed, in which case @code{syslog} closes it (with the
349 hope that a future implicit open will restore the Syslog connection to a
350 usable state).
352 Example:
354 @smallexample
356 #include <syslog.h>
357 syslog(LOG_MAKEPRI(LOG_LOCAL1, LOG_ERROR), 
358        "Unable to make network connection to %s.  Error=%m", host);
360 @end smallexample
362 @end deftypefun
365 @comment syslog.h
366 @comment BSD
367 @deftypefun void vsyslog (int @var{facility_priority}, char *@var{format},
368          __gnuc_va_list arglist)
370 This is functionally identical to @code{syslog}, with the BSD style variable
371 length argument.
373 @end deftypefun
376 @node closelog
377 @subsection closelog
379 The symbols referred to in this section are declared in the file
380 @file{syslog.h}.
382 @comment syslog.h
383 @comment BSD
384 @deftypefun void closelog ()
386 @code{closelog} closes the current Syslog connection, if there is one.
387 This include closing the @file{dev/log} socket, if it is open.
389 There is very little reason to use this function.  It does not flush any
390 buffers; you can reopen a Syslog connection without closing it first;
391 The connection gets closed automatically on exec or exit.
392 @code{closelog} has primarily aesthetic value.
394 @end deftypefun
397 @node setlogmask
398 @subsection setlogmask
400 The symbols referred to in this section are declared in the file
401 @file{syslog.h}.
403 @comment syslog.h
404 @comment BSD
405 @deftypefun int setlogmask (int @var{mask})
407 @code{setlogmask} sets a mask (the ``logmask'') that determines which
408 future @code{syslog} calls shall be ignored.  If a program has not
409 called @code{setlogmask}, @code{syslog} doesn't ignore any calls.  You
410 can use @code{setlogmask} to specify that messages of particular
411 priorities shall be ignored in the future.
413 A @code{setlogmask} call overrides any previous @code{setlogmask} call.
415 Note that the logmask exists entirely independently of opening and
416 closing of Syslog connections.
418 Setting the logmask has a similar effect to, but is not the same as,
419 configuring Syslog.  The Syslog configuration may cause Syslog to
420 discard certain messages it receives, but the logmask causes certain
421 messages never to get submitted to Syslog in the first place.
423 @var{mask} is a bit string with one bit corresponding to each of the
424 possible message priorities.  If the bit is on, @code{syslog} handles
425 messages of that priority normally.  If it is off, @code{syslog}
426 discards messages of that priority.  Use the message priority macros
427 described in @ref{syslog; vsyslog} and the @code{LOG_MASK} to construct
428 an appropriate @var{mask} value, as in this example:
430 @smallexample
431 LOG_MASK(LOG_EMERG) | LOG_MASK(LOG_ERROR)
432 @end smallexample
436 @smallexample
437 ~(LOG_MASK(LOG_INFO))
438 @end smallexample
440 There is also a @code{LOG_UPTO} macro, which generates a mask with the bits
441 on for a certain priority and all priorities above it:
443 @smallexample
444 LOG_UPTO(LOG_ERROR)
445 @end smallexample
447 The unfortunate naming of the macro is due to the fact that internally, 
448 higher numbers are used for lower message priorities.
450 @end deftypefun
453 @node Syslog Example
454 @subsection Syslog Example
456 Here is an example of @code{openlog}, @code{syslog}, and @code{closelog}:
458 This example sets the logmask so that debug and informational messages
459 get discarded without ever reaching Syslog.  So the second @code{syslog}
460 in the example does nothing.
462 @smallexample
463 #include <syslog.h>
465 setlogmask(LOG_UPTO(LOG_NOTICE));
467 openlog("exampleprog", LOG_CONS | LOG_PID | LOG_NDELAY, LOG_LOCAL1);
469 syslog(LOG_NOTICE, "Program started by User %d", getuid());
470 syslog(LOG_INFO, "A tree falls in a forest");
472 closelog();
474 @end smallexample