Rob Landley | 2896480 | 2008-01-19 17:08:39 -0600 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: |
| 2 | * |
Rob Landley | b5b82d9 | 2007-11-20 01:06:29 -0600 | [diff] [blame] | 3 | * dmesg.c - display/control kernel ring buffer. |
| 4 | * |
Rob Landley | fece5cb | 2007-12-03 20:05:57 -0600 | [diff] [blame] | 5 | * Copyright 2006, 2007 Rob Landley <rob@landley.net> |
| 6 | * |
| 7 | * Not in SUSv3. |
Rob Landley | 2896480 | 2008-01-19 17:08:39 -0600 | [diff] [blame] | 8 | |
Rob Landley | 55928b1 | 2008-01-19 17:43:27 -0600 | [diff] [blame] | 9 | USE_DMESG(NEWTOY(dmesg, "s#n#c", TOYFLAG_BIN)) |
| 10 | |
Rob Landley | 2896480 | 2008-01-19 17:08:39 -0600 | [diff] [blame] | 11 | config DMESG |
| 12 | bool "dmesg" |
| 13 | default y |
| 14 | help |
| 15 | usage: dmesg [-n level] [-s bufsize] | -c |
| 16 | |
| 17 | Print or control the kernel ring buffer. |
| 18 | |
| 19 | -n Set kernel logging level (1-9). |
| 20 | -s Size of buffer to read (in bytes), default 16384. |
| 21 | -c Clear the ring buffer after printing. |
| 22 | */ |
Rob Landley | b5b82d9 | 2007-11-20 01:06:29 -0600 | [diff] [blame] | 23 | |
| 24 | #include "toys.h" |
| 25 | #include <sys/klog.h> |
| 26 | |
Rob Landley | b1aaba1 | 2008-01-20 17:25:44 -0600 | [diff] [blame] | 27 | DEFINE_GLOBALS( |
| 28 | long level; |
| 29 | long size; |
| 30 | ) |
| 31 | |
| 32 | #define TT this.dmesg |
Rob Landley | b5b82d9 | 2007-11-20 01:06:29 -0600 | [diff] [blame] | 33 | |
Rob Landley | efda21c | 2007-11-29 18:14:37 -0600 | [diff] [blame] | 34 | void dmesg_main(void) |
Rob Landley | b5b82d9 | 2007-11-20 01:06:29 -0600 | [diff] [blame] | 35 | { |
| 36 | // For -n just tell kernel to which messages to keep. |
| 37 | if (toys.optflags & 2) { |
| 38 | if (klogctl(8, NULL, TT.level)) |
| 39 | error_exit("klogctl"); |
| 40 | } else { |
| 41 | int size, i, last = '\n'; |
| 42 | char *data; |
| 43 | |
| 44 | // Figure out how much data we need, and fetch it. |
| 45 | size = TT.size; |
| 46 | if (size<2) size = 16384; |
| 47 | data = xmalloc(size); |
| 48 | size = klogctl(3 + (toys.optflags&1), data, size); |
| 49 | if (size < 0) error_exit("klogctl"); |
| 50 | |
| 51 | // Display data, filtering out level markers. |
| 52 | for (i=0; i<size; ) { |
| 53 | if (last=='\n' && data[i]=='<') i += 3; |
Rob Landley | efda21c | 2007-11-29 18:14:37 -0600 | [diff] [blame] | 54 | else xputc(last = data[i++]); |
Rob Landley | b5b82d9 | 2007-11-20 01:06:29 -0600 | [diff] [blame] | 55 | } |
Rob Landley | efda21c | 2007-11-29 18:14:37 -0600 | [diff] [blame] | 56 | if (last!='\n') xputc('\n'); |
Rob Landley | b5b82d9 | 2007-11-20 01:06:29 -0600 | [diff] [blame] | 57 | if (CFG_TOYBOX_FREE) free(data); |
| 58 | } |
Rob Landley | b5b82d9 | 2007-11-20 01:06:29 -0600 | [diff] [blame] | 59 | } |