source: MondoRescue/branches/2.2.9/mindi-busybox/util-linux/dmesg.c@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 1.6 KB
RevLine 
[1765]1/* vi: set sw=4 ts=4: */
2/*
3 *
[821]4 * dmesg - display/control kernel ring buffer.
5 *
[1765]6 * Copyright 2006 Rob Landley <rob@landley.net>
[2725]7 * Copyright 2006 Bernhard Reutner-Fischer <rep.nop@aon.at>
[821]8 *
[2725]9 * Licensed under GPLv2, see file LICENSE in this source tree.
[821]10 */
11#include <sys/klog.h>
[1765]12#include "libbb.h"
[821]13
[2725]14int dmesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
15int dmesg_main(int argc UNUSED_PARAM, char **argv)
[821]16{
[2725]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
24 };
[821]25
[2725]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))
[821]30 bb_perror_msg_and_die("klogctl");
[2725]31 return EXIT_SUCCESS;
32 }
[821]33
[2725]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;
[1765]40
[2725]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;
[1765]47
48
[2725]49 if (ENABLE_FEATURE_DMESG_PRETTY) {
50 int last = '\n';
51 int in = 0;
52
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;
[1765]59 }
[2725]60 last = buf[in];
61 putchar(last);
62 in++;
63 if (in >= len)
64 break;
[1765]65 }
[2725]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');
[821]73 }
74
[2725]75 if (ENABLE_FEATURE_CLEAN_UP) free(buf);
76
77 return EXIT_SUCCESS;
[821]78}
Note: See TracBrowser for help on using the repository browser.