printk

From HandWiki

printk is a C function from the Linux kernel interface that prints messages to the kernel log.[1] It accepts a string parameter called the format string, which specifies a method for rendering an arbitrary number of varied data type parameter(s) into a string.[1] The string is then printed to the kernel log.[1]

It provides a printf-like abstraction and its parsing of the format string and arguments behave similarly to printf.[1] It acts as a debugging tool for kernel programmers who need this function for logging messages from the kernel.[1]

The printk function prototype is:

int printk(const char *fmt, ...);

C standard library and its printf function is unavailable in kernel mode, hence the need for printk.[2]

Differences from printf

The function printk is based on printf, but cannot always be used in the same way that printf is used.[1]

Log levels

printk allows a caller to specify the type and importance of the message being sent.[1] This specifier is called the log level.[1]

The log level specifies the type of message being sent to the kernel message log.[1] The log level is specified by prepending (using C's string literal concatenation) a string describing the log level to the start of the message to be produced.[1] For example, a message could be produced at the KERN_INFO using the following:[1]

printk(KERN_INFO "Message: %s\n", arg);

The string specifying the log level consists of the ASCII start of header character followed by a digit describing the log level or the character 'c' to indicate the message is a continuation of the previous message.[1][3] The following log levels, along with their interpretations, are given below.[4]

0 KERN_EMERG An emergency condition; the system is probably dead
1 KERN_ALERT A problem that requires immediate attention
2 KERN_CRIT A critical condition
3 KERN_ERR An error
4 KERN_WARNING A warning
5 KERN_NOTICE A normal, but perhaps noteworthy, condition
6 KERN_INFO An informational message
7 KERN_DEBUG A debug message, typically superfluous

When a log level is not specified, the default log level is KERN_WARNING,[1] unless a different default has been set in the kernel itself, such as with the loglevel= boot argument.[5]

Log levels are defined in <linux/kern_levels.h>.[3] Which log levels are printed is configured using the sysctl file /proc/sys/kernel/printk.[1]

Pointer formats

The %p format specifier (used for printing pointers in printf) is extended to add additional formatting modes, for example, requesting to print a struct sockaddr * using %pISpc would print an IPv4/v6 address and port in a human-friendly format (e.g. "1.2.3.4:12345" or "[1:2:3:4:5:6:7:8]:12345").[6]

No floating point support

While printf support output of floating point numbers, printk does not,[6] since the Linux kernel does not use floating point numbers within the kernel.[7]

Description

The function tries to lock the semaphore controlling access to the system console.[1][8] If it succeeds, the output is logged and the console drivers are called.[1] If it is not possible to acquire the semaphore the output is placed into the log buffer, and the current holder of the console semaphore will notice the new output when they release the console semaphore and will send the buffered output to the console before releasing the semaphore.[1]

One effect of this deferred printing is that code which calls printk and then changes the log levels to be printed may break. This is because the log level to be printed is inspected when the actual printing occurs.[1]

The function printk can be called from anywhere in the kernel except during the very early stages of the kernel boot process, when the system console is not initialised.[4] The alternative function early_printk is implemented on some architectures and is used identically to printk during the early stages of the boot process.[4]

References

External links