source: MondoRescue/branches/3.2/mindi-busybox/util-linux/dmesg.c@ 3232

Last change on this file since 3232 was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
File size: 1.9 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 */
[3232]11
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"
16//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
[821]20#include <sys/klog.h>
[1765]21#include "libbb.h"
[821]22
[2725]23int dmesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
24int dmesg_main(int argc UNUSED_PARAM, char **argv)
[821]25{
[2725]26 int len, level;
27 char *buf;
28 unsigned opts;
29 enum {
30 OPT_c = 1 << 0,
31 OPT_s = 1 << 1,
32 OPT_n = 1 << 2
33 };
[821]34
[2725]35 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))
[821]39 bb_perror_msg_and_die("klogctl");
[2725]40 return EXIT_SUCCESS;
41 }
[821]42
[2725]43 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;
[1765]49
[2725]50 buf = xmalloc(len);
51 len = klogctl(3 + (opts & OPT_c), buf, len); /* read ring buffer */
52 if (len < 0)
53 bb_perror_msg_and_die("klogctl");
54 if (len == 0)
55 return EXIT_SUCCESS;
[1765]56
57
[2725]58 if (ENABLE_FEATURE_DMESG_PRETTY) {
59 int last = '\n';
60 int in = 0;
61
[3232]62 /* Skip <[0-9]+> at the start of lines */
[2725]63 while (1) {
64 if (last == '\n' && buf[in] == '<') {
[3232]65 while (buf[in++] != '>' && in < len)
66 ;
67 } else {
68 last = buf[in++];
69 putchar(last);
[1765]70 }
[2725]71 if (in >= len)
72 break;
[1765]73 }
[2725]74 /* Make sure we end with a newline */
75 if (last != '\n')
76 bb_putchar('\n');
77 } else {
78 full_write(STDOUT_FILENO, buf, len);
79 if (buf[len-1] != '\n')
80 bb_putchar('\n');
[821]81 }
82
[2725]83 if (ENABLE_FEATURE_CLEAN_UP) free(buf);
84
85 return EXIT_SUCCESS;
[821]86}
Note: See TracBrowser for help on using the repository browser.