blob: e779441e6d26cbaa576abe7f4f89d11e91bbaa19 [file] [log] [blame]
Thomas Gleixner45051532019-05-29 16:57:47 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Tony Luckca01d6d2010-12-28 14:25:21 -08002/*
3 * Persistent Storage - pstore.h
4 *
5 * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com>
6 *
7 * This code is the generic layer to export data records from platform
8 * level persistent storage via a file system.
Tony Luckca01d6d2010-12-28 14:25:21 -08009 */
10#ifndef _LINUX_PSTORE_H
11#define _LINUX_PSTORE_H
12
Mark Salyzyn5bf6d1b2016-09-01 08:13:46 -070013#include <linux/compiler.h>
14#include <linux/errno.h>
Kees Cook3d6d8d22011-11-17 13:13:29 -080015#include <linux/kmsg_dump.h>
Anton Vorontsov67a101f2012-07-17 11:37:07 -070016#include <linux/mutex.h>
Kees Cookea84b582018-11-30 14:36:58 -080017#include <linux/semaphore.h>
Mark Salyzyn5bf6d1b2016-09-01 08:13:46 -070018#include <linux/time.h>
19#include <linux/types.h>
Kees Cook3d6d8d22011-11-17 13:13:29 -080020
Kees Cook9abdccc2017-03-03 16:59:29 -080021struct module;
22
Joel Fernandes (Google)f0f23e52018-11-03 16:38:16 -070023/*
24 * pstore record types (see fs/pstore/platform.c for pstore_type_names[])
25 * These values may be written to storage (see EFI vars backend), so
26 * they are kind of an ABI. Be careful changing the mappings.
27 */
Tony Luckca01d6d2010-12-28 14:25:21 -080028enum pstore_type_id {
Joel Fernandes (Google)f0f23e52018-11-03 16:38:16 -070029 /* Frontend storage types */
Tony Luckca01d6d2010-12-28 14:25:21 -080030 PSTORE_TYPE_DMESG = 0,
31 PSTORE_TYPE_MCE = 1,
Anton Vorontsovf29e5952012-05-26 06:20:19 -070032 PSTORE_TYPE_CONSOLE = 2,
Anton Vorontsov060287b2012-07-09 17:10:41 -070033 PSTORE_TYPE_FTRACE = 3,
Joel Fernandes (Google)f0f23e52018-11-03 16:38:16 -070034
35 /* PPC64-specific partition types */
Aruna Balakrishnaiah69020ee2013-06-06 00:21:44 +053036 PSTORE_TYPE_PPC_RTAS = 4,
Aruna Balakrishnaiahf33f7482013-06-06 00:22:10 +053037 PSTORE_TYPE_PPC_OF = 5,
Aruna Balakrishnaiaha5e47972013-06-06 00:22:20 +053038 PSTORE_TYPE_PPC_COMMON = 6,
Mark Salyzyn9d5438f2015-01-16 16:01:10 -080039 PSTORE_TYPE_PMSG = 7,
Hari Bathiniae011d22015-02-06 01:06:28 +053040 PSTORE_TYPE_PPC_OPAL = 8,
Joel Fernandes (Google)f0f23e52018-11-03 16:38:16 -070041
42 /* End of the list */
43 PSTORE_TYPE_MAX
Tony Luckca01d6d2010-12-28 14:25:21 -080044};
45
Joel Fernandes (Google)f0f23e52018-11-03 16:38:16 -070046const char *pstore_type_to_name(enum pstore_type_id type);
47enum pstore_type_id pstore_name_to_type(const char *name);
48
Kees Cook9abdccc2017-03-03 16:59:29 -080049struct pstore_info;
50/**
51 * struct pstore_record - details of a pstore record entry
52 * @psi: pstore backend driver information
53 * @type: pstore record type
54 * @id: per-type unique identifier for record
55 * @time: timestamp of the record
Kees Cook9abdccc2017-03-03 16:59:29 -080056 * @buf: pointer to record contents
57 * @size: size of @buf
58 * @ecc_notice_size:
59 * ECC information for @buf
Kees Cook76cc9582017-03-03 23:28:53 -080060 *
61 * Valid for PSTORE_TYPE_DMESG @type:
62 *
63 * @count: Oops count since boot
64 * @reason: kdump reason for notification
65 * @part: position in a multipart record
66 * @compressed: whether the buffer is compressed
67 *
Kees Cook9abdccc2017-03-03 16:59:29 -080068 */
69struct pstore_record {
70 struct pstore_info *psi;
71 enum pstore_type_id type;
72 u64 id;
Kees Cook7aaa8222018-05-14 15:50:52 -070073 struct timespec64 time;
Kees Cook9abdccc2017-03-03 16:59:29 -080074 char *buf;
75 ssize_t size;
76 ssize_t ecc_notice_size;
Kees Cook76cc9582017-03-03 23:28:53 -080077
78 int count;
79 enum kmsg_dump_reason reason;
80 unsigned int part;
81 bool compressed;
Kees Cook9abdccc2017-03-03 16:59:29 -080082};
Anton Vorontsov67a101f2012-07-17 11:37:07 -070083
Kees Cook0edae0b2017-03-03 12:16:16 -080084/**
85 * struct pstore_info - backend pstore driver structure
86 *
Kees Cook0eed84f2018-11-01 14:03:07 -070087 * @owner: module which is responsible for this backend driver
Kees Cook0edae0b2017-03-03 12:16:16 -080088 * @name: name of the backend driver
89 *
Kees Cookea84b582018-11-30 14:36:58 -080090 * @buf_lock: semaphore to serialize access to @buf
Kees Cook0edae0b2017-03-03 12:16:16 -080091 * @buf: preallocated crash dump buffer
Kees Cook89d328f2018-11-01 16:17:22 -070092 * @bufsize: size of @buf available for crash dump bytes (must match
93 * smallest number of bytes available for writing to a
94 * backend entry, since compressed bytes don't take kindly
95 * to being truncated)
Kees Cook0edae0b2017-03-03 12:16:16 -080096 *
97 * @read_mutex: serializes @open, @read, @close, and @erase callbacks
98 * @flags: bitfield of frontends the backend can accept writes for
99 * @data: backend-private pointer passed back during callbacks
100 *
101 * Callbacks:
102 *
103 * @open:
104 * Notify backend that pstore is starting a full read of backend
105 * records. Followed by one or more @read calls, and a final @close.
106 *
107 * @psi: in: pointer to the struct pstore_info for the backend
108 *
109 * Returns 0 on success, and non-zero on error.
110 *
111 * @close:
112 * Notify backend that pstore has finished a full read of backend
113 * records. Always preceded by an @open call and one or more @read
114 * calls.
115 *
116 * @psi: in: pointer to the struct pstore_info for the backend
117 *
118 * Returns 0 on success, and non-zero on error. (Though pstore will
119 * ignore the error.)
120 *
121 * @read:
122 * Read next available backend record. Called after a successful
123 * @open.
124 *
Kees Cook125cc422017-03-03 22:09:18 -0800125 * @record:
126 * pointer to record to populate. @buf should be allocated
127 * by the backend and filled. At least @type and @id should
128 * be populated, since these are used when creating pstorefs
129 * file names.
Kees Cook0edae0b2017-03-03 12:16:16 -0800130 *
131 * Returns record size on success, zero when no more records are
132 * available, or negative on error.
133 *
134 * @write:
Kees Cook4c9ec212017-03-05 22:41:10 -0800135 * A newly generated record needs to be written to backend storage.
Kees Cook0edae0b2017-03-03 12:16:16 -0800136 *
Kees Cook76cc9582017-03-03 23:28:53 -0800137 * @record:
Kees Cook4c9ec212017-03-05 22:41:10 -0800138 * pointer to record metadata. When @type is PSTORE_TYPE_DMESG,
139 * @buf will be pointing to the preallocated @psi.buf, since
140 * memory allocation may be broken during an Oops. Regardless,
141 * @buf must be proccesed or copied before returning. The
142 * backend is also expected to write @id with something that
Kees Cookc7f3c5952017-05-19 15:29:10 -0700143 * can help identify this record to a future @erase callback.
144 * The @time field will be prepopulated with the current time,
145 * when available. The @size field will have the size of data
146 * in @buf.
Kees Cook0edae0b2017-03-03 12:16:16 -0800147 *
148 * Returns 0 on success, and non-zero on error.
149 *
Kees Cook4c9ec212017-03-05 22:41:10 -0800150 * @write_user:
Kees Cook0edae0b2017-03-03 12:16:16 -0800151 * Perform a frontend write to a backend record, using a specified
Kees Cookfdd03112017-03-05 00:56:38 -0800152 * buffer that is coming directly from userspace, instead of the
153 * @record @buf.
Kees Cook0edae0b2017-03-03 12:16:16 -0800154 *
Kees Cookfdd03112017-03-05 00:56:38 -0800155 * @record: pointer to record metadata.
156 * @buf: pointer to userspace contents to write to backend
Kees Cook0edae0b2017-03-03 12:16:16 -0800157 *
158 * Returns 0 on success, and non-zero on error.
159 *
160 * @erase:
161 * Delete a record from backend storage. Different backends
Kees Cooka61072a2017-03-04 23:31:19 -0800162 * identify records differently, so entire original record is
163 * passed back to assist in identification of what the backend
164 * should remove from storage.
Kees Cook0edae0b2017-03-03 12:16:16 -0800165 *
Kees Cooka61072a2017-03-04 23:31:19 -0800166 * @record: pointer to record metadata.
Kees Cook0edae0b2017-03-03 12:16:16 -0800167 *
168 * Returns 0 on success, and non-zero on error.
169 *
170 */
Tony Luckca01d6d2010-12-28 14:25:21 -0800171struct pstore_info {
172 struct module *owner;
173 char *name;
Kees Cook0edae0b2017-03-03 12:16:16 -0800174
Kees Cookea84b582018-11-30 14:36:58 -0800175 struct semaphore buf_lock;
Tony Luckca01d6d2010-12-28 14:25:21 -0800176 char *buf;
177 size_t bufsize;
Kees Cook0edae0b2017-03-03 12:16:16 -0800178
179 struct mutex read_mutex;
180
Luck, Tonydf36ac12013-12-18 15:17:10 -0800181 int flags;
Kees Cook0edae0b2017-03-03 12:16:16 -0800182 void *data;
183
Chen Gong06cf91b2011-05-16 11:00:27 -0700184 int (*open)(struct pstore_info *psi);
185 int (*close)(struct pstore_info *psi);
Kees Cook125cc422017-03-03 22:09:18 -0800186 ssize_t (*read)(struct pstore_record *record);
Kees Cook76cc9582017-03-03 23:28:53 -0800187 int (*write)(struct pstore_record *record);
Kees Cook4c9ec212017-03-05 22:41:10 -0800188 int (*write_user)(struct pstore_record *record,
189 const char __user *buf);
Kees Cooka61072a2017-03-04 23:31:19 -0800190 int (*erase)(struct pstore_record *record);
Tony Luckca01d6d2010-12-28 14:25:21 -0800191};
192
Kees Cook0edae0b2017-03-03 12:16:16 -0800193/* Supported frontends */
Kees Cook4af62a62018-11-01 15:30:05 -0700194#define PSTORE_FLAGS_DMESG BIT(0)
195#define PSTORE_FLAGS_CONSOLE BIT(1)
196#define PSTORE_FLAGS_FTRACE BIT(2)
197#define PSTORE_FLAGS_PMSG BIT(3)
Namhyung Kimc950fd62016-07-28 00:08:25 +0900198
Tony Luckca01d6d2010-12-28 14:25:21 -0800199extern int pstore_register(struct pstore_info *);
Geliang Tangee1d2672015-10-20 00:39:03 -0700200extern void pstore_unregister(struct pstore_info *);
Tony Luckca01d6d2010-12-28 14:25:21 -0800201
Joel Fernandesfbccdeb2016-10-20 00:34:05 -0700202struct pstore_ftrace_record {
203 unsigned long ip;
204 unsigned long parent_ip;
205 u64 ts;
206};
207
208/*
209 * ftrace related stuff: Both backends and frontends need these so expose
210 * them here.
211 */
212
213#if NR_CPUS <= 2 && defined(CONFIG_ARM_THUMB)
214#define PSTORE_CPU_IN_IP 0x1
215#elif NR_CPUS <= 4 && defined(CONFIG_ARM)
216#define PSTORE_CPU_IN_IP 0x3
217#endif
218
219#define TS_CPU_SHIFT 8
220#define TS_CPU_MASK (BIT(TS_CPU_SHIFT) - 1)
221
222/*
223 * If CPU number can be stored in IP, store it there, otherwise store it in
224 * the time stamp. This means more timestamp resolution is available when
225 * the CPU can be stored in the IP.
226 */
227#ifdef PSTORE_CPU_IN_IP
228static inline void
229pstore_ftrace_encode_cpu(struct pstore_ftrace_record *rec, unsigned int cpu)
230{
231 rec->ip |= cpu;
232}
233
234static inline unsigned int
235pstore_ftrace_decode_cpu(struct pstore_ftrace_record *rec)
236{
237 return rec->ip & PSTORE_CPU_IN_IP;
238}
239
240static inline u64
241pstore_ftrace_read_timestamp(struct pstore_ftrace_record *rec)
242{
243 return rec->ts;
244}
245
246static inline void
247pstore_ftrace_write_timestamp(struct pstore_ftrace_record *rec, u64 val)
248{
249 rec->ts = val;
250}
251#else
252static inline void
253pstore_ftrace_encode_cpu(struct pstore_ftrace_record *rec, unsigned int cpu)
254{
255 rec->ts &= ~(TS_CPU_MASK);
256 rec->ts |= cpu;
257}
258
259static inline unsigned int
260pstore_ftrace_decode_cpu(struct pstore_ftrace_record *rec)
261{
262 return rec->ts & TS_CPU_MASK;
263}
264
265static inline u64
266pstore_ftrace_read_timestamp(struct pstore_ftrace_record *rec)
267{
268 return rec->ts >> TS_CPU_SHIFT;
269}
270
271static inline void
272pstore_ftrace_write_timestamp(struct pstore_ftrace_record *rec, u64 val)
273{
274 rec->ts = (rec->ts & TS_CPU_MASK) | (val << TS_CPU_SHIFT);
275}
276#endif
277
Tony Luckca01d6d2010-12-28 14:25:21 -0800278#endif /*_LINUX_PSTORE_H*/