summaryrefslogtreecommitdiffstats
path: root/vmcore-dmesg/vmcore-dmesg.c
blob: 81c2a58c9d86aae202f8e14d61c7fad4aba72dbd (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
60
61
62
63
64
65
66
67
68
69
#include <elf_info.h>

/* The 32bit and 64bit note headers make it clear we don't care */
typedef Elf32_Nhdr Elf_Nhdr;

extern const char *fname;

/* stole this macro from kernel printk.c */
#define LOG_BUF_LEN_MAX (uint32_t)(1 << 31)

static void write_to_stdout(char *buf, unsigned int nr)
{
	ssize_t ret;
	static uint32_t n_bytes = 0;

	n_bytes += nr;
	if (n_bytes > LOG_BUF_LEN_MAX) {
		fprintf(stderr, "The vmcore-dmesg.txt over 2G in size is not supported.\n");
		exit(53);
	}

	ret = write(STDOUT_FILENO, buf, nr);
	if (ret != nr) {
		fprintf(stderr, "Failed to write out the dmesg log buffer!:"
			" %s\n", strerror(errno));
		exit(54);
	}
}

static int read_vmcore_dmesg(int fd, void (*handler)(char*, unsigned int))
{
	int ret;

	ret = read_elf(fd);
	if (ret > 0) {
		fprintf(stderr, "Unable to read ELF information"
			" from vmcore\n");
		return ret;
	}

	dump_dmesg(fd, handler);

	return 0;
}

int main(int argc, char **argv)
{
	ssize_t ret;
	int fd;

	if (argc != 2) {
		fprintf(stderr, "usage: %s <kernel core file>\n", argv[0]);
		return 1;
	}
	fname = argv[1];

	fd = open(fname, O_RDONLY);
	if (fd < 0) {
		fprintf(stderr, "Cannot open %s: %s\n",
			fname, strerror(errno));
		return 2;
	}

	ret = read_vmcore_dmesg(fd, write_to_stdout);
	
	close(fd);

	return ret;
}