1
2
3
4
5
6
7
8
9
10
11
12#include <sys/klog.h>
13#include "libbb.h"
14
15int dmesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
16int dmesg_main(int argc UNUSED_PARAM, char **argv)
17{
18 int len;
19 char *buf;
20 char *size, *level;
21 unsigned flags = getopt32(argv, "cs:n:", &size, &level);
22 enum {
23 OPT_c = 1<<0,
24 OPT_s = 1<<1,
25 OPT_n = 1<<2
26 };
27
28 if (flags & OPT_n) {
29 if (klogctl(8, NULL, xatoul_range(level, 0, 10)))
30 bb_perror_msg_and_die("klogctl");
31 return EXIT_SUCCESS;
32 }
33
34 len = (flags & OPT_s) ? xatoul_range(size, 2, INT_MAX) : 16384;
35 buf = xmalloc(len);
36 len = klogctl(3 + (flags & OPT_c), buf, len);
37 if (len < 0)
38 bb_perror_msg_and_die("klogctl");
39 if (len == 0)
40 return EXIT_SUCCESS;
41
42
43
44 if (ENABLE_FEATURE_DMESG_PRETTY) {
45 int last = '\n';
46 int in = 0;
47
48 do {
49 if (last == '\n' && buf[in] == '<')
50 in += 3;
51 else {
52 last = buf[in++];
53 bb_putchar(last);
54 }
55 } while (in < len);
56 if (last != '\n')
57 bb_putchar('\n');
58 } else {
59 full_write(STDOUT_FILENO, buf, len);
60 if (buf[len-1] != '\n')
61 bb_putchar('\n');
62 }
63
64 if (ENABLE_FEATURE_CLEAN_UP) free(buf);
65
66 return EXIT_SUCCESS;
67}
68