aboutsummaryrefslogtreecommitdiff
path: root/toys/dmesg.c
blob: 95b023d6dc7b1f8c5a07ffce1d83611cb6ae3ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* vi: set sw=4 ts=4:
 *
 * dmesg.c - display/control kernel ring buffer.
 *
 * Copyright 2006, 2007 Rob Landley <rob@landley.net>
 *
 * Not in SUSv3.

USE_DMESG(NEWTOY(dmesg, "s#n#c", TOYFLAG_BIN))

config DMESG
	bool "dmesg"
	default y
	help
	  usage: dmesg [-n level] [-s bufsize] | -c

	  Print or control the kernel ring buffer.

	  -n	Set kernel logging level (1-9).
	  -s	Size of buffer to read (in bytes), default 16384.
	  -c	Clear the ring buffer after printing.
*/

#include "toys.h"
#include <sys/klog.h>

DEFINE_GLOBALS(
	long level;
	long size;
)

#define TT this.dmesg

void dmesg_main(void)
{
	// For -n just tell kernel to which messages to keep.
	if (toys.optflags & 2) {
		if (klogctl(8, NULL, TT.level))
			error_exit("klogctl");
	} else {
		int size, i, last = '\n';
		char *data;

		// Figure out how much data we need, and fetch it.
		size = TT.size;
		if (size<2) size = 16384;
		data = xmalloc(size);
		size = klogctl(3 + (toys.optflags&1), data, size);
		if (size < 0) error_exit("klogctl");

		// Display data, filtering out level markers.
		for (i=0; i<size; ) {
			if (last=='\n' && data[i]=='<') i += 3;
			else xputc(last = data[i++]);
		}
		if (last!='\n') xputc('\n');
		if (CFG_TOYBOX_FREE) free(data);
	}
}