printk

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]

0KERN_EMERGAn emergency condition; the system is probably dead
1KERN_ALERTA problem that requires immediate attention
2KERN_CRITA critical condition
3KERN_ERRAn error
4KERN_WARNINGA warning
5KERN_NOTICEA normal, but perhaps noteworthy, condition
6KERN_INFOAn informational message
7KERN_DEBUGA 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.

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").[5]

No floating point support

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

Description

The function tries to lock the semaphore controlling access to the system console.[1][7] 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

  1. "Message logging with printk — The Linux Kernel documentation". www.kernel.org. Retrieved 2020-09-09.
  2. ISO/IEC 9899:2018. International Standards Organization. 2018.
  3. "kern_levels.h". GitHub. Retrieved 2020-09-09.
  4. "printk()". archive.is. 2007-08-30. Retrieved 2020-09-09.
  5. "How to get printk format specifiers right — The Linux Kernel documentation". www.kernel.org. Retrieved 2020-09-09.
  6. "Re: Linux kernel and floating point". www.redhat.com. Retrieved 2020-09-09.
  7. "Driver Basics — The Linux Kernel documentation". www.kernel.org. Retrieved 2020-09-09.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.