blob: 412bf024bbd12f151870522ca6d3984f95e1545e [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 */
Pere Orga5bc8c002011-04-11 03:29:49 +020011
12//usage:#define dmesg_trivial_usage
13//usage: "[-c] [-n LEVEL] [-s SIZE]"
14//usage:#define dmesg_full_usage "\n\n"
15//usage: "Print or control the kernel ring buffer\n"
16//usage: "\nOptions:"
17//usage: "\n -c Clear ring buffer after printing"
18//usage: "\n -n LEVEL Set console logging level"
19//usage: "\n -s SIZE Buffer size"
20
Eric Andersen85e5e722003-07-22 08:56:55 +000021#include <sys/klog.h>
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000022#include "libbb.h"
Eric Andersene76c3b02001-04-05 03:14:39 +000023
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000024int dmesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000025int dmesg_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000026{
Denys Vlasenko874201f2009-07-10 14:14:14 +020027 int len, level;
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000028 char *buf;
Denys Vlasenko874201f2009-07-10 14:14:14 +020029 unsigned opts;
Bernhard Reutner-Fischerf02efd12008-05-19 10:28:32 +000030 enum {
Denys Vlasenko874201f2009-07-10 14:14:14 +020031 OPT_c = 1 << 0,
32 OPT_s = 1 << 1,
33 OPT_n = 1 << 2
Bernhard Reutner-Fischerf02efd12008-05-19 10:28:32 +000034 };
Erik Andersen1266a131999-12-29 22:19:46 +000035
Denys Vlasenko874201f2009-07-10 14:14:14 +020036 opt_complementary = "s+:n+"; /* numeric */
37 opts = getopt32(argv, "cs:n:", &len, &level);
38 if (opts & OPT_n) {
39 if (klogctl(8, NULL, (long) level))
Rob Landley7c7b0d72006-06-13 18:31:04 +000040 bb_perror_msg_and_die("klogctl");
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000041 return EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +000042 }
Eric Andersen3cf52d11999-10-12 22:26:06 +000043
Denys Vlasenko874201f2009-07-10 14:14:14 +020044 if (!(opts & OPT_s))
45 len = klogctl(10, NULL, 0); /* read ring buffer size */
46 if (len < 16*1024)
47 len = 16*1024;
48 if (len > 16*1024*1024)
49 len = 16*1024*1024;
50
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000051 buf = xmalloc(len);
Denys Vlasenko874201f2009-07-10 14:14:14 +020052 len = klogctl(3 + (opts & OPT_c), buf, len); /* read ring buffer */
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000053 if (len < 0)
54 bb_perror_msg_and_die("klogctl");
55 if (len == 0)
56 return EXIT_SUCCESS;
57
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000058
59 if (ENABLE_FEATURE_DMESG_PRETTY) {
60 int last = '\n';
61 int in = 0;
62
Denys Vlasenkof04ca742010-10-19 23:08:33 +020063 /* Skip <#> at the start of lines */
64 while (1) {
65 if (last == '\n' && buf[in] == '<') {
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000066 in += 3;
Denys Vlasenkof04ca742010-10-19 23:08:33 +020067 if (in >= len)
68 break;
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000069 }
Denys Vlasenkof04ca742010-10-19 23:08:33 +020070 last = buf[in];
71 putchar(last);
72 in++;
73 if (in >= len)
74 break;
75 }
76 /* Make sure we end with a newline */
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000077 if (last != '\n')
78 bb_putchar('\n');
79 } else {
80 full_write(STDOUT_FILENO, buf, len);
81 if (buf[len-1] != '\n')
82 bb_putchar('\n');
83 }
84
85 if (ENABLE_FEATURE_CLEAN_UP) free(buf);
86
87 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +000088}