table of contents
other versions
- wheezy 3.44-1
- jessie 3.74-1
- jessie-backports 4.10-2~bpo8+1
- testing 4.10-2
- unstable 4.10-2
other sections
SYSLOG(2) | Linux Programmer's Manual | SYSLOG(2) |
NAME¶
syslog, klogctl - read and/or clear kernel message ring buffer; set console_loglevelSYNOPSIS¶
int syslog(int type, char *bufp, int len); /* No wrapper provided in glibc *//* The glibc interface */#include <sys/klog.h>int klogctl(int type, char *bufp, int len);
DESCRIPTION¶
If you need the C library 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 wrapper function is called klogctl().0 -- Close the log. Currently a NOP. 1 -- Open the log. Currently a NOP. 2 -- Read from the log. 3 -- Read all messages remaining in the ring buffer. 4 -- Read and clear all messages remaining in the ring buffer 5 -- Clear ring buffer. 6 -- Disable printk to console 7 -- Enable printk to console 8 -- Set level of messages printed to console 9 -- Return number of unread characters in the log buffer 10 -- Return size of the log buffer
The kernel log buffer¶
The kernel has a cyclic buffer of length LOG_BUF_LEN in which messages given as arguments to the kernel function printk() are stored (regardless of their loglevel). In early kernels, LOG_BUF_LEN had the value 4096; from kernel 1.3.54, it was 8192; from kernel 2.1.113 it was 16384; since 2.4.23/2.6 the value is a kernel configuration option. In recent kernels the size can be queried with command type 10.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,dummy) with type equal to 6 or 7, set it to 1 (kernel panics only) or 7 (all except debugging messages), respectively.#define KERN_EMERG "<0>" /* system is unusable */ #define KERN_ALERT "<1>" /* action must be taken immediately */ #define KERN_CRIT "<2>" /* critical conditions */ #define KERN_ERR "<3>" /* error conditions */ #define KERN_WARNING "<4>" /* warning conditions */ #define KERN_NOTICE "<5>" /* normal but significant condition */ #define KERN_INFO "<6>" /* informational */ #define KERN_DEBUG "<7>" /* debug-level messages */
RETURN VALUE¶
For type equal to 2, 3, or 4, a successful call to syslog() returns the number of bytes read. For type 9, syslog() returns the number of bytes currently available to be read on the kernel log buffer. For type 10, syslog() returns the total size of the kernel log buffer. For other values of type, 0 is returned on success.ERRORS¶
- EINVAL
- Bad arguments (e.g., bad type; or for type 2, 3, or 4, buf is NULL, or len is less than zero; or for type 8, the level is outside the range 1 to 8).
- ENOSYS
- This syslog() system call is not available, because the kernel was compiled with the CONFIG_PRINTK kernel-configuration option disabled.
- EPERM
- An attempt was made to change console_loglevel or clear the kernel message ring buffer by a process without sufficient privilege (more precisely: without the CAP_SYS_ADMIN or CAP_SYSLOG capability).
- ERESTARTSYS
- System call was interrupted by a signal; nothing was read. (This can be seen only during a trace.)
CONFORMING TO¶
This system call is Linux-specific and should not be used in programs intended to be portable.NOTES¶
From the very start people noted that it is unfortunate that a system call and a library routine of the same name are entirely different animals.SEE ALSO¶
syslog(3), capabilities(7)COLOPHON¶
This page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/.2012-05-05 | Linux |