2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2006-09-17 21:58:10 +05:30
|
|
|
*
|
2006-06-14 00:01:04 +05:30
|
|
|
* dmesg - display/control kernel ring buffer.
|
1999-10-20 01:33:34 +05:30
|
|
|
*
|
2006-07-27 22:10:55 +05:30
|
|
|
* Copyright 2006 Rob Landley <rob@landley.net>
|
2008-09-25 17:43:34 +05:30
|
|
|
* Copyright 2006 Bernhard Reutner-Fischer <rep.nop@aon.at>
|
2003-03-07 23:03:40 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
1999-10-05 21:54:54 +05:30
|
|
|
*/
|
2011-04-11 06:59:49 +05:30
|
|
|
|
|
|
|
//usage:#define dmesg_trivial_usage
|
|
|
|
//usage: "[-c] [-n LEVEL] [-s SIZE]"
|
|
|
|
//usage:#define dmesg_full_usage "\n\n"
|
|
|
|
//usage: "Print or control the kernel ring buffer\n"
|
|
|
|
//usage: "\n -c Clear ring buffer after printing"
|
|
|
|
//usage: "\n -n LEVEL Set console logging level"
|
|
|
|
//usage: "\n -s SIZE Buffer size"
|
2015-08-24 19:24:49 +05:30
|
|
|
//usage: "\n -r Print raw message buffer"
|
2011-04-11 06:59:49 +05:30
|
|
|
|
2006-06-14 00:01:04 +05:30
|
|
|
#include <sys/klog.h>
|
2007-06-01 04:12:12 +05:30
|
|
|
#include "libbb.h"
|
1999-10-13 03:56:06 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int dmesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int dmesg_main(int argc UNUSED_PARAM, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2009-07-10 17:44:14 +05:30
|
|
|
int len, level;
|
2007-11-17 01:48:54 +05:30
|
|
|
char *buf;
|
2009-07-10 17:44:14 +05:30
|
|
|
unsigned opts;
|
2008-05-19 15:58:32 +05:30
|
|
|
enum {
|
2009-07-10 17:44:14 +05:30
|
|
|
OPT_c = 1 << 0,
|
|
|
|
OPT_s = 1 << 1,
|
2015-08-24 19:24:49 +05:30
|
|
|
OPT_n = 1 << 2,
|
|
|
|
OPT_r = 1 << 3
|
2008-05-19 15:58:32 +05:30
|
|
|
};
|
2006-06-14 00:01:04 +05:30
|
|
|
|
2016-07-07 01:28:02 +05:30
|
|
|
opts = getopt32(argv, "cs:+n:+r", &len, &level);
|
2009-07-10 17:44:14 +05:30
|
|
|
if (opts & OPT_n) {
|
|
|
|
if (klogctl(8, NULL, (long) level))
|
2006-06-14 00:01:04 +05:30
|
|
|
bb_perror_msg_and_die("klogctl");
|
2007-11-17 01:48:54 +05:30
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2006-07-27 22:10:55 +05:30
|
|
|
|
2009-07-10 17:44:14 +05:30
|
|
|
if (!(opts & OPT_s))
|
|
|
|
len = klogctl(10, NULL, 0); /* read ring buffer size */
|
|
|
|
if (len < 16*1024)
|
|
|
|
len = 16*1024;
|
|
|
|
if (len > 16*1024*1024)
|
|
|
|
len = 16*1024*1024;
|
|
|
|
|
2007-11-17 01:48:54 +05:30
|
|
|
buf = xmalloc(len);
|
2009-07-10 17:44:14 +05:30
|
|
|
len = klogctl(3 + (opts & OPT_c), buf, len); /* read ring buffer */
|
2007-11-17 01:48:54 +05:30
|
|
|
if (len < 0)
|
|
|
|
bb_perror_msg_and_die("klogctl");
|
|
|
|
if (len == 0)
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
|
|
|
|
2015-08-24 19:24:49 +05:30
|
|
|
if (ENABLE_FEATURE_DMESG_PRETTY && !(opts & OPT_r)) {
|
2007-11-17 01:48:54 +05:30
|
|
|
int last = '\n';
|
|
|
|
int in = 0;
|
|
|
|
|
2013-01-06 04:37:17 +05:30
|
|
|
/* Skip <[0-9]+> at the start of lines */
|
2010-10-20 02:38:33 +05:30
|
|
|
while (1) {
|
|
|
|
if (last == '\n' && buf[in] == '<') {
|
2013-01-06 04:37:17 +05:30
|
|
|
while (buf[in++] != '>' && in < len)
|
|
|
|
;
|
|
|
|
} else {
|
|
|
|
last = buf[in++];
|
|
|
|
putchar(last);
|
2006-07-27 22:10:55 +05:30
|
|
|
}
|
2010-10-20 02:38:33 +05:30
|
|
|
if (in >= len)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Make sure we end with a newline */
|
2007-11-17 01:48:54 +05:30
|
|
|
if (last != '\n')
|
|
|
|
bb_putchar('\n');
|
|
|
|
} else {
|
|
|
|
full_write(STDOUT_FILENO, buf, len);
|
|
|
|
if (buf[len-1] != '\n')
|
|
|
|
bb_putchar('\n');
|
2003-03-07 23:03:40 +05:30
|
|
|
}
|
2006-03-29 22:56:14 +05:30
|
|
|
|
2007-11-17 01:48:54 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) free(buf);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|