blob: a1f26914255bb41e8321f18c8e2460b58f847950 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
2/*
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00003 *
Rob Landley7c7b0d72006-06-13 18:31:04 +00004 * dmesg - display/control kernel ring buffer.
Eric Andersene77ae3a1999-10-19 20:03:34 +00005 *
Rob Landley446129a2006-07-27 16:40:55 +00006 * Copyright 2006 Rob Landley <rob@landley.net>
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00007 * Copyright 2006 Bernhard Reutner-Fischer <rep.nop@aon.at>
Eric Andersen2afcbe42003-03-07 17:33:40 +00008 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02009 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersencc8ed391999-10-05 16:24:54 +000010 */
Denys Vlasenkodd898c92016-11-23 11:46:32 +010011//config:config DMESG
Denys Vlasenkob097a842018-12-28 03:20:17 +010012//config: bool "dmesg (3.7 kb)"
Denys Vlasenkodd898c92016-11-23 11:46:32 +010013//config: default y
14//config: select PLATFORM_LINUX
15//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020016//config: dmesg is used to examine or control the kernel ring buffer. When the
17//config: Linux kernel prints messages to the system log, they are stored in
18//config: the kernel ring buffer. You can use dmesg to print the kernel's ring
19//config: buffer, clear the kernel ring buffer, change the size of the kernel
20//config: ring buffer, and change the priority level at which kernel messages
21//config: are also logged to the system console. Enable this option if you
22//config: wish to enable the 'dmesg' utility.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010023//config:
24//config:config FEATURE_DMESG_PRETTY
Denys Vlasenkof5604222017-01-10 14:58:54 +010025//config: bool "Pretty output"
Denys Vlasenkodd898c92016-11-23 11:46:32 +010026//config: default y
27//config: depends on DMESG
28//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020029//config: If you wish to scrub the syslog level from the output, say 'Y' here.
30//config: The syslog level is a string prefixed to every line with the form
31//config: "<#>".
Denys Vlasenkodd898c92016-11-23 11:46:32 +010032//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020033//config: With this option you will see:
34//config: # dmesg
35//config: Linux version 2.6.17.4 .....
36//config: BIOS-provided physical RAM map:
37//config: BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
Denys Vlasenkodd898c92016-11-23 11:46:32 +010038//config:
Denys Vlasenko72089cf2017-07-21 09:50:55 +020039//config: Without this option you will see:
40//config: # dmesg
41//config: <5>Linux version 2.6.17.4 .....
42//config: <6>BIOS-provided physical RAM map:
43//config: <6> BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
Denys Vlasenkodd898c92016-11-23 11:46:32 +010044
45//applet:IF_DMESG(APPLET(dmesg, BB_DIR_BIN, BB_SUID_DROP))
46
47//kbuild:lib-$(CONFIG_DMESG) += dmesg.o
Pere Orga5bc8c002011-04-11 03:29:49 +020048
49//usage:#define dmesg_trivial_usage
50//usage: "[-c] [-n LEVEL] [-s SIZE]"
51//usage:#define dmesg_full_usage "\n\n"
52//usage: "Print or control the kernel ring buffer\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020053//usage: "\n -c Clear ring buffer after printing"
54//usage: "\n -n LEVEL Set console logging level"
55//usage: "\n -s SIZE Buffer size"
Peter Korsgaard864d1b72015-08-24 15:54:49 +020056//usage: "\n -r Print raw message buffer"
Pere Orga5bc8c002011-04-11 03:29:49 +020057
Eric Andersen85e5e722003-07-22 08:56:55 +000058#include <sys/klog.h>
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000059#include "libbb.h"
Eric Andersene76c3b02001-04-05 03:14:39 +000060
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000061int dmesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000062int dmesg_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000063{
Denys Vlasenko874201f2009-07-10 14:14:14 +020064 int len, level;
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000065 char *buf;
Denys Vlasenko874201f2009-07-10 14:14:14 +020066 unsigned opts;
Bernhard Reutner-Fischerf02efd12008-05-19 10:28:32 +000067 enum {
Denys Vlasenko874201f2009-07-10 14:14:14 +020068 OPT_c = 1 << 0,
69 OPT_s = 1 << 1,
Peter Korsgaard864d1b72015-08-24 15:54:49 +020070 OPT_n = 1 << 2,
71 OPT_r = 1 << 3
Bernhard Reutner-Fischerf02efd12008-05-19 10:28:32 +000072 };
Erik Andersen1266a131999-12-29 22:19:46 +000073
Denys Vlasenko237bedd2016-07-06 21:58:02 +020074 opts = getopt32(argv, "cs:+n:+r", &len, &level);
Denys Vlasenko874201f2009-07-10 14:14:14 +020075 if (opts & OPT_n) {
76 if (klogctl(8, NULL, (long) level))
James Byrne69374872019-07-02 11:35:03 +020077 bb_simple_perror_msg_and_die("klogctl");
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000078 return EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +000079 }
Eric Andersen3cf52d11999-10-12 22:26:06 +000080
Denys Vlasenko874201f2009-07-10 14:14:14 +020081 if (!(opts & OPT_s))
82 len = klogctl(10, NULL, 0); /* read ring buffer size */
83 if (len < 16*1024)
84 len = 16*1024;
85 if (len > 16*1024*1024)
86 len = 16*1024*1024;
87
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000088 buf = xmalloc(len);
Denys Vlasenko874201f2009-07-10 14:14:14 +020089 len = klogctl(3 + (opts & OPT_c), buf, len); /* read ring buffer */
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000090 if (len < 0)
James Byrne69374872019-07-02 11:35:03 +020091 bb_simple_perror_msg_and_die("klogctl");
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000092 if (len == 0)
93 return EXIT_SUCCESS;
94
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000095
Peter Korsgaard864d1b72015-08-24 15:54:49 +020096 if (ENABLE_FEATURE_DMESG_PRETTY && !(opts & OPT_r)) {
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000097 int last = '\n';
98 int in = 0;
99
Peter Korsgaard3917fa32013-01-06 00:07:17 +0100100 /* Skip <[0-9]+> at the start of lines */
Denys Vlasenkof04ca742010-10-19 23:08:33 +0200101 while (1) {
102 if (last == '\n' && buf[in] == '<') {
Peter Korsgaard3917fa32013-01-06 00:07:17 +0100103 while (buf[in++] != '>' && in < len)
104 ;
105 } else {
106 last = buf[in++];
107 putchar(last);
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +0000108 }
Denys Vlasenkof04ca742010-10-19 23:08:33 +0200109 if (in >= len)
110 break;
111 }
112 /* Make sure we end with a newline */
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +0000113 if (last != '\n')
114 bb_putchar('\n');
115 } else {
116 full_write(STDOUT_FILENO, buf, len);
117 if (buf[len-1] != '\n')
118 bb_putchar('\n');
119 }
120
121 if (ENABLE_FEATURE_CLEAN_UP) free(buf);
122
123 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +0000124}