blob: 9e834ffd348be27b3bfc2ad3ef495b10194e580d [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>
7 * Copyright 2006 Bernhard Fischer <rep.nop@aon.at>
Eric Andersen2afcbe42003-03-07 17:33:40 +00008 *
Rob Landleye9a7a622006-09-22 02:52:41 +00009 * Licensed under GPLv2, see file LICENSE in this tarball for details.
Eric Andersencc8ed391999-10-05 16:24:54 +000010 */
11
Eric Andersen85e5e722003-07-22 08:56:55 +000012#include <sys/klog.h>
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000013#include "libbb.h"
Eric Andersene76c3b02001-04-05 03:14:39 +000014
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000015int dmesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko68404f12008-03-17 09:00:54 +000016int dmesg_main(int argc ATTRIBUTE_UNUSED, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000017{
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000018 int len;
19 char *buf;
Rob Landley7c7b0d72006-06-13 18:31:04 +000020 char *size, *level;
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000021 int flags = getopt32(argv, "cs:n:", &size, &level);
Erik Andersen1266a131999-12-29 22:19:46 +000022
Rob Landley7c7b0d72006-06-13 18:31:04 +000023 if (flags & 4) {
Denis Vlasenko13858992006-10-08 12:49:22 +000024 if (klogctl(8, NULL, xatoul_range(level, 0, 10)))
Rob Landley7c7b0d72006-06-13 18:31:04 +000025 bb_perror_msg_and_die("klogctl");
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000026 return EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +000027 }
Eric Andersen3cf52d11999-10-12 22:26:06 +000028
Denis Vlasenko7e3a5f52007-11-16 20:18:54 +000029 len = (flags & 2) ? xatoul_range(size, 2, INT_MAX) : 16384;
30 buf = xmalloc(len);
31 len = klogctl(3 + (flags & 1), buf, len);
32 if (len < 0)
33 bb_perror_msg_and_die("klogctl");
34 if (len == 0)
35 return EXIT_SUCCESS;
36
37 /* Skip <#> at the start of lines, and make sure we end with a newline. */
38
39 if (ENABLE_FEATURE_DMESG_PRETTY) {
40 int last = '\n';
41 int in = 0;
42
43 do {
44 if (last == '\n' && buf[in] == '<')
45 in += 3;
46 else {
47 last = buf[in++];
48 bb_putchar(last);
49 }
50 } while (in < len);
51 if (last != '\n')
52 bb_putchar('\n');
53 } else {
54 full_write(STDOUT_FILENO, buf, len);
55 if (buf[len-1] != '\n')
56 bb_putchar('\n');
57 }
58
59 if (ENABLE_FEATURE_CLEAN_UP) free(buf);
60
61 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +000062}