DESCRIPTION
If you need the libc function syslog() (which talks to syslogd(8)), then look at
syslog(3). The system call
of this name is about controlling the kernel printk() buffer, and the
glibc version is called klogctl().
The type argument
determines the action taken by this function.
Quoting from kernel/printk.c:
Only function 3 is allowed to non-root processes.
(Function 9 was added in 2.4.10.)
The kernel log
buffer
The kernel has a cyclic buffer of length LOG_BUF_LEN
(4096, since 1.3.54: 8192, since 2.1.113: 16384; in recent
kernels the size can be set at compile time) in which
messages given as argument to the kernel function
printk() are stored (regardless
of their loglevel).
The call syslog()
(2,buf,len) waits until this kernel
log buffer is nonempty, and then reads at most len bytes into the buffer
buf. It returns the
number of bytes read. Bytes read from the log disappear from
the log buffer: the information can only be read once. This
is the function executed by the kernel when a user program
reads /proc/kmsg.
The call syslog()
(3,buf,len) will read the last
len bytes from the
log buffer (nondestructively), but will not read more than
was written into the buffer since the last `clear ring
buffer' command (which does not clear the buffer at all). It
returns the number of bytes read.
The call syslog()
(4,buf,len) does precisely the same,
but also executes the `clear ring buffer' command.
The call syslog()
(5,dummy,idummy) only executes the
`clear ring buffer' command.
The loglevel
The kernel routine printk()
will only print a message on the console, if it has a
loglevel less than the value of the variable console_loglevel. This
variable initially has the value DEFAULT_CONSOLE_LOGLEVEL
(7), but is set to 10 if the kernel command line contains the
word `debug', and to 15 in case of a kernel fault (the 10 and
15 are just silly, and equivalent to 8). This variable is set
(to a value in the range 1-8) by the call syslog() (8,dummy,value). The calls
syslog() (type,dummy,idummy) with type equal to 6 or 7, set it to
1 (kernel panics only) or 7 (all except debugging messages),
respectively.
Every text line in a message has its own loglevel. This
level is DEFAULT_MESSAGE_LOGLEVEL − 1 (6) unless the
line starts with <d> where d is a digit in the range
1-7, in which case the level is d. The conventional meaning
of the loglevel is defined in <linux/kernel.h> as
follows: