Merge branch 'Teaman-ND' into Teaman-RT
[tomato.git] / release / src / router / busybox / util-linux / dmesg.c
blob6e43a22f5605a047c2a34d0dc303a0f82e2b4203
1 /* vi: set sw=4 ts=4: */
2 /*
4 * dmesg - display/control kernel ring buffer.
6 * Copyright 2006 Rob Landley <rob@landley.net>
7 * Copyright 2006 Bernhard Reutner-Fischer <rep.nop@aon.at>
9 * Licensed under GPLv2, see file LICENSE in this source tree.
11 #include <sys/klog.h>
12 #include "libbb.h"
14 int dmesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
15 int dmesg_main(int argc UNUSED_PARAM, char **argv)
17 int len, level;
18 char *buf;
19 unsigned opts;
20 enum {
21 OPT_c = 1 << 0,
22 OPT_s = 1 << 1,
23 OPT_n = 1 << 2
26 opt_complementary = "s+:n+"; /* numeric */
27 opts = getopt32(argv, "cs:n:", &len, &level);
28 if (opts & OPT_n) {
29 if (klogctl(8, NULL, (long) level))
30 bb_perror_msg_and_die("klogctl");
31 return EXIT_SUCCESS;
34 if (!(opts & OPT_s))
35 len = klogctl(10, NULL, 0); /* read ring buffer size */
36 if (len < 16*1024)
37 len = 16*1024;
38 if (len > 16*1024*1024)
39 len = 16*1024*1024;
41 buf = xmalloc(len);
42 len = klogctl(3 + (opts & OPT_c), buf, len); /* read ring buffer */
43 if (len < 0)
44 bb_perror_msg_and_die("klogctl");
45 if (len == 0)
46 return EXIT_SUCCESS;
49 if (ENABLE_FEATURE_DMESG_PRETTY) {
50 int last = '\n';
51 int in = 0;
53 /* Skip <#> at the start of lines */
54 while (1) {
55 if (last == '\n' && buf[in] == '<') {
56 in += 3;
57 if (in >= len)
58 break;
60 last = buf[in];
61 putchar(last);
62 in++;
63 if (in >= len)
64 break;
66 /* Make sure we end with a newline */
67 if (last != '\n')
68 bb_putchar('\n');
69 } else {
70 full_write(STDOUT_FILENO, buf, len);
71 if (buf[len-1] != '\n')
72 bb_putchar('\n');
75 if (ENABLE_FEATURE_CLEAN_UP) free(buf);
77 return EXIT_SUCCESS;