| * dmesg - display/control kernel ring buffer. |
| * Copyright 2006 Rob Landley <rob@landley.net> |
| * Copyright 2006 Bernhard Fischer <rep.nop@aon.at> |
| * Licensed under GPLv2, see file LICENSE in this tarball for details. |
| int dmesg_main(int argc, char *argv[]) |
| int flags = getopt32(argc, argv, "cs:n:", &size, &level); |
| if (klogctl(8, NULL, xatoul_range(level, 0, 10))) |
| bb_perror_msg_and_die("klogctl"); |
| len = (flags & 2) ? xatoul_range(size, 2, INT_MAX) : 16384; |
| if (0 > (len = klogctl(3 + (flags & 1), buf, len))) |
| bb_perror_msg_and_die("klogctl"); |
| // Skip <#> at the start of lines, and make sure we end with a newline. |
| if (ENABLE_FEATURE_DMESG_PRETTY) { |
| if (last == '\n' && buf[in] == '<') in += 3; |
| else putchar(last = buf[in++]); |
| if (last != '\n') putchar('\n'); |
| if (len && buf[len-1]!='\n') putchar('\n'); |
| if (ENABLE_FEATURE_CLEAN_UP) free(buf); |