kmsg_dump.h 3.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * linux/include/kmsg_dump.h
 *
 * Copyright (C) 2009 Net Insight AB
 *
 * Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file COPYING in the main directory of this archive
 * for more details.
 */
#ifndef _LINUX_KMSG_DUMP_H
#define _LINUX_KMSG_DUMP_H

15
#include <linux/errno.h>
16 17
#include <linux/list.h>

18 19 20 21 22
/*
 * Keep this list arranged in rough order of priority. Anything listed after
 * KMSG_DUMP_OOPS will not be logged by default unless printk.always_kmsg_dump
 * is passed to the kernel.
 */
23
enum kmsg_dump_reason {
24
	KMSG_DUMP_UNDEF,
25
	KMSG_DUMP_PANIC,
26 27
	KMSG_DUMP_OOPS,
	KMSG_DUMP_EMERG,
28
	KMSG_DUMP_SHUTDOWN,
29
	KMSG_DUMP_MAX
30 31 32 33 34
};

/**
 * struct kmsg_dumper - kernel crash message dumper structure
 * @list:	Entry in the dumper list (private)
35 36 37
 * @dump:	Call into dumping code which will retrieve the data with
 * 		through the record iterator
 * @max_reason:	filter for highest reason number that should be dumped
38 39 40 41
 * @registered:	Flag that specifies if this is already registered
 */
struct kmsg_dumper {
	struct list_head list;
42 43 44 45 46 47 48 49 50 51
	void (*dump)(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason);
	enum kmsg_dump_reason max_reason;
	bool active;
	bool registered;

	/* private state of the kmsg iterator */
	u32 cur_idx;
	u32 next_idx;
	u64 cur_seq;
	u64 next_seq;
52 53
};

54
#ifdef CONFIG_PRINTK
55 56
void kmsg_dump(enum kmsg_dump_reason reason);

57 58 59
bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog,
			       char *line, size_t size, size_t *len);

60 61 62 63 64 65
bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
			char *line, size_t size, size_t *len);

bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
			  char *buf, size_t size, size_t *len);

66 67
void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper);

68 69
void kmsg_dump_rewind(struct kmsg_dumper *dumper);

70 71 72
int kmsg_dump_register(struct kmsg_dumper *dumper);

int kmsg_dump_unregister(struct kmsg_dumper *dumper);
73 74

const char *kmsg_dump_reason_str(enum kmsg_dump_reason reason);
75 76 77 78 79
#else
static inline void kmsg_dump(enum kmsg_dump_reason reason)
{
}

80 81 82 83 84 85 86
static inline bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper,
					     bool syslog, const char *line,
					     size_t size, size_t *len)
{
	return false;
}

87 88
static inline bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
				const char *line, size_t size, size_t *len)
89 90 91 92
{
	return false;
}

93 94
static inline bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
					char *buf, size_t size, size_t *len)
95 96 97 98
{
	return false;
}

99 100 101 102
static inline void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper)
{
}

103
static inline void kmsg_dump_rewind(struct kmsg_dumper *dumper)
104 105 106
{
}

107 108 109 110 111 112 113 114 115
static inline int kmsg_dump_register(struct kmsg_dumper *dumper)
{
	return -EINVAL;
}

static inline int kmsg_dump_unregister(struct kmsg_dumper *dumper)
{
	return -EINVAL;
}
116 117 118 119 120

static inline const char *kmsg_dump_reason_str(enum kmsg_dump_reason reason)
{
	return "Disabled";
}
121
#endif
122 123

#endif /* _LINUX_KMSG_DUMP_H */