blob: 6505da54bcf2c972ef8a553d8ab244024d05e3df [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"
Pere Orga5bc8c002011-04-11 03:29:49 +020016//usage: "\n -c Clear ring buffer after printing"
17//usage: "\n -n LEVEL Set console logging level"
18//usage: "\n -s SIZE Buffer size"
19
Eric Andersen85e5e722003-07-22 08:56:55 +000020#include <sys/klog.h>
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000021#include "libbb.h"
Eric Andersene76c3b02001-04-05 03:14:39 +000022
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000023int dmesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000024int dmesg_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000025{
Denys Vlasenko874201f2009-07-10 14:14:14 +020026 int len, level;
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000027 char *buf;
Denys Vlasenko874201f2009-07-10 14:14:14 +020028 unsigned opts;
Bernhard Reutner-Fischerf02efd12008-05-19 10:28:32 +000029 enum {
Denys Vlasenko874201f2009-07-10 14:14:14 +020030 OPT_c = 1 << 0,
31 OPT_s = 1 << 1,
32 OPT_n = 1 << 2
Bernhard Reutner-Fischerf02efd12008-05-19 10:28:32 +000033 };
Erik Andersen1266a131999-12-29 22:19:46 +000034
Denys Vlasenko874201f2009-07-10 14:14:14 +020035 opt_complementary = "s+:n+"; /* numeric */
36 opts = getopt32(argv, "cs:n:", &len, &level);
37 if (opts & OPT_n) {
38 if (klogctl(8, NULL, (long) level))
Rob Landley7c7b0d72006-06-13 18:31:04 +000039 bb_perror_msg_and_die("klogctl");
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000040 return EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +000041 }
Eric Andersen3cf52d11999-10-12 22:26:06 +000042
Denys Vlasenko874201f2009-07-10 14:14:14 +020043 if (!(opts & OPT_s))
44 len = klogctl(10, NULL, 0); /* read ring buffer size */
45 if (len < 16*1024)
46 len = 16*1024;
47 if (len > 16*1024*1024)
48 len = 16*1024*1024;
49
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000050 buf = xmalloc(len);
Denys Vlasenko874201f2009-07-10 14:14:14 +020051 len = klogctl(3 + (opts & OPT_c), buf, len); /* read ring buffer */
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000052 if (len < 0)
53 bb_perror_msg_and_die("klogctl");
54 if (len == 0)
55 return EXIT_SUCCESS;
56
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000057
58 if (ENABLE_FEATURE_DMESG_PRETTY) {
59 int last = '\n';
60 int in = 0;
61
Denys Vlasenkof04ca742010-10-19 23:08:33 +020062 /* Skip <#> at the start of lines */
63 while (1) {
64 if (last == '\n' && buf[in] == '<') {
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000065 in += 3;
Denys Vlasenkof04ca742010-10-19 23:08:33 +020066 if (in >= len)
67 break;
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000068 }
Denys Vlasenkof04ca742010-10-19 23:08:33 +020069 last = buf[in];
70 putchar(last);
71 in++;
72 if (in >= len)
73 break;
74 }
75 /* Make sure we end with a newline */
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000076 if (last != '\n')
77 bb_putchar('\n');
78 } else {
79 full_write(STDOUT_FILENO, buf, len);
80 if (buf[len-1] != '\n')
81 bb_putchar('\n');
82 }
83
84 if (ENABLE_FEATURE_CLEAN_UP) free(buf);
85
86 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +000087}