blob: 3378bcbe585eac4e76e93c768c287f6fd9c2eab8 [file] [log] [blame]
Simon Kagstrom456b5652009-10-16 14:09:18 +02001/*
2 * linux/include/kmsg_dump.h
3 *
4 * Copyright (C) 2009 Net Insight AB
5 *
6 * Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file COPYING in the main directory of this archive
10 * for more details.
11 */
12#ifndef _LINUX_KMSG_DUMP_H
13#define _LINUX_KMSG_DUMP_H
14
Randy Dunlapac562242011-06-15 15:08:17 -070015#include <linux/errno.h>
Simon Kagstrom456b5652009-10-16 14:09:18 +020016#include <linux/list.h>
17
Matthew Garrettc22ab3322012-03-05 14:59:10 -080018/*
19 * Keep this list arranged in rough order of priority. Anything listed after
20 * KMSG_DUMP_OOPS will not be logged by default unless printk.always_kmsg_dump
21 * is passed to the kernel.
22 */
Simon Kagstrom456b5652009-10-16 14:09:18 +020023enum kmsg_dump_reason {
Kay Sieverse2ae7152012-06-15 14:07:51 +020024 KMSG_DUMP_UNDEF,
Simon Kagstrom456b5652009-10-16 14:09:18 +020025 KMSG_DUMP_PANIC,
Matthew Garrettc22ab3322012-03-05 14:59:10 -080026 KMSG_DUMP_OOPS,
27 KMSG_DUMP_EMERG,
Kees Cook6d3cf962020-05-15 11:05:43 -070028 KMSG_DUMP_SHUTDOWN,
Pavel Tatashinb1f6f162020-05-05 11:45:06 -040029 KMSG_DUMP_MAX
Simon Kagstrom456b5652009-10-16 14:09:18 +020030};
31
32/**
33 * struct kmsg_dumper - kernel crash message dumper structure
Simon Kagstrom456b5652009-10-16 14:09:18 +020034 * @list: Entry in the dumper list (private)
Kay Sieverse2ae7152012-06-15 14:07:51 +020035 * @dump: Call into dumping code which will retrieve the data with
36 * through the record iterator
37 * @max_reason: filter for highest reason number that should be dumped
Simon Kagstrom456b5652009-10-16 14:09:18 +020038 * @registered: Flag that specifies if this is already registered
39 */
40struct kmsg_dumper {
Simon Kagstrom456b5652009-10-16 14:09:18 +020041 struct list_head list;
Kay Sieverse2ae7152012-06-15 14:07:51 +020042 void (*dump)(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason);
43 enum kmsg_dump_reason max_reason;
44 bool active;
45 bool registered;
46
47 /* private state of the kmsg iterator */
48 u32 cur_idx;
49 u32 next_idx;
50 u64 cur_seq;
51 u64 next_seq;
Simon Kagstrom456b5652009-10-16 14:09:18 +020052};
53
Randy Dunlap595dd3d2009-12-01 10:52:02 -080054#ifdef CONFIG_PRINTK
Simon Kagstrom456b5652009-10-16 14:09:18 +020055void kmsg_dump(enum kmsg_dump_reason reason);
56
Anton Vorontsov533827c2012-07-20 17:28:07 -070057bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper, bool syslog,
58 char *line, size_t size, size_t *len);
59
Kay Sieverse2ae7152012-06-15 14:07:51 +020060bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
61 char *line, size_t size, size_t *len);
62
63bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
64 char *buf, size_t size, size_t *len);
65
Anton Vorontsov533827c2012-07-20 17:28:07 -070066void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper);
67
Kay Sieverse2ae7152012-06-15 14:07:51 +020068void kmsg_dump_rewind(struct kmsg_dumper *dumper);
69
Simon Kagstrom456b5652009-10-16 14:09:18 +020070int kmsg_dump_register(struct kmsg_dumper *dumper);
71
72int kmsg_dump_unregister(struct kmsg_dumper *dumper);
Kees Cookfb13cb82020-05-07 19:36:22 -070073
74const char *kmsg_dump_reason_str(enum kmsg_dump_reason reason);
Randy Dunlap595dd3d2009-12-01 10:52:02 -080075#else
76static inline void kmsg_dump(enum kmsg_dump_reason reason)
77{
78}
79
Anton Vorontsov533827c2012-07-20 17:28:07 -070080static inline bool kmsg_dump_get_line_nolock(struct kmsg_dumper *dumper,
81 bool syslog, const char *line,
82 size_t size, size_t *len)
83{
84 return false;
85}
86
Kay Sievers246f6f22012-06-19 00:32:57 +020087static inline bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
88 const char *line, size_t size, size_t *len)
Kay Sieverse2ae7152012-06-15 14:07:51 +020089{
90 return false;
91}
92
Kay Sievers246f6f22012-06-19 00:32:57 +020093static inline bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
94 char *buf, size_t size, size_t *len)
Kay Sieverse2ae7152012-06-15 14:07:51 +020095{
96 return false;
97}
98
Anton Vorontsov533827c2012-07-20 17:28:07 -070099static inline void kmsg_dump_rewind_nolock(struct kmsg_dumper *dumper)
100{
101}
102
Kay Sievers246f6f22012-06-19 00:32:57 +0200103static inline void kmsg_dump_rewind(struct kmsg_dumper *dumper)
Kay Sieverse2ae7152012-06-15 14:07:51 +0200104{
105}
106
Randy Dunlap595dd3d2009-12-01 10:52:02 -0800107static inline int kmsg_dump_register(struct kmsg_dumper *dumper)
108{
109 return -EINVAL;
110}
111
112static inline int kmsg_dump_unregister(struct kmsg_dumper *dumper)
113{
114 return -EINVAL;
115}
Kees Cookfb13cb82020-05-07 19:36:22 -0700116
117static inline const char *kmsg_dump_reason_str(enum kmsg_dump_reason reason)
118{
119 return "Disabled";
120}
Randy Dunlap595dd3d2009-12-01 10:52:02 -0800121#endif
Simon Kagstrom456b5652009-10-16 14:09:18 +0200122
123#endif /* _LINUX_KMSG_DUMP_H */