xref: /openbmc/linux/fs/pstore/platform.c (revision 6248a0666c8a408dcc5bd952536274d5bd0f02cb)
145051539SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
2ca01d6ddSTony Luck /*
3ca01d6ddSTony Luck  * Persistent Storage - platform driver interface parts.
4ca01d6ddSTony Luck  *
5f29e5956SAnton Vorontsov  * Copyright (C) 2007-2008 Google, Inc.
6ca01d6ddSTony Luck  * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com>
7ca01d6ddSTony Luck  */
8ca01d6ddSTony Luck 
9ef748853SFabian Frederick #define pr_fmt(fmt) "pstore: " fmt
10ef748853SFabian Frederick 
11ca01d6ddSTony Luck #include <linux/atomic.h>
12ca01d6ddSTony Luck #include <linux/types.h>
13ca01d6ddSTony Luck #include <linux/errno.h>
14ca01d6ddSTony Luck #include <linux/init.h>
15ca01d6ddSTony Luck #include <linux/kmsg_dump.h>
16f29e5956SAnton Vorontsov #include <linux/console.h>
17ca01d6ddSTony Luck #include <linux/module.h>
18ca01d6ddSTony Luck #include <linux/pstore.h>
1958eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZO_COMPRESS)
208cfc8ddcSGeliang Tang #include <linux/lzo.h>
218cfc8ddcSGeliang Tang #endif
2258eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZ4_COMPRESS) || IS_ENABLED(CONFIG_PSTORE_LZ4HC_COMPRESS)
238cfc8ddcSGeliang Tang #include <linux/lz4.h>
248cfc8ddcSGeliang Tang #endif
251021bcf4SGeliang Tang #if IS_ENABLED(CONFIG_PSTORE_ZSTD_COMPRESS)
261021bcf4SGeliang Tang #include <linux/zstd.h>
271021bcf4SGeliang Tang #endif
28cb3bee03SGeliang Tang #include <linux/crypto.h>
29ca01d6ddSTony Luck #include <linux/string.h>
306dda9266SLuck, Tony #include <linux/timer.h>
31ca01d6ddSTony Luck #include <linux/slab.h>
32ca01d6ddSTony Luck #include <linux/uaccess.h>
33a3f5f075SAnton Vorontsov #include <linux/jiffies.h>
346dda9266SLuck, Tony #include <linux/workqueue.h>
35ca01d6ddSTony Luck 
36ca01d6ddSTony Luck #include "internal.h"
37ca01d6ddSTony Luck 
38ca01d6ddSTony Luck /*
396dda9266SLuck, Tony  * We defer making "oops" entries appear in pstore - see
406dda9266SLuck, Tony  * whether the system is actually still running well enough
416dda9266SLuck, Tony  * to let someone see the entry
426dda9266SLuck, Tony  */
43521f7288SAnton Vorontsov static int pstore_update_ms = -1;
44a3f5f075SAnton Vorontsov module_param_named(update_ms, pstore_update_ms, int, 0600);
45a3f5f075SAnton Vorontsov MODULE_PARM_DESC(update_ms, "milliseconds before pstore updates its content "
46521f7288SAnton Vorontsov 		 "(default is -1, which means runtime updates are disabled; "
47521f7288SAnton Vorontsov 		 "enabling this option is not safe, it may lead to further "
48521f7288SAnton Vorontsov 		 "corruption on Oopses)");
496dda9266SLuck, Tony 
50f0f23e54SJoel Fernandes (Google) /* Names should be in the same order as the enum pstore_type_id */
51f0f23e54SJoel Fernandes (Google) static const char * const pstore_type_names[] = {
52f0f23e54SJoel Fernandes (Google) 	"dmesg",
53f0f23e54SJoel Fernandes (Google) 	"mce",
54f0f23e54SJoel Fernandes (Google) 	"console",
55f0f23e54SJoel Fernandes (Google) 	"ftrace",
56f0f23e54SJoel Fernandes (Google) 	"rtas",
57f0f23e54SJoel Fernandes (Google) 	"powerpc-ofw",
58f0f23e54SJoel Fernandes (Google) 	"powerpc-common",
59f0f23e54SJoel Fernandes (Google) 	"pmsg",
60f0f23e54SJoel Fernandes (Google) 	"powerpc-opal",
61f0f23e54SJoel Fernandes (Google) };
62f0f23e54SJoel Fernandes (Google) 
636dda9266SLuck, Tony static int pstore_new_entry;
646dda9266SLuck, Tony 
6524ed960aSKees Cook static void pstore_timefunc(struct timer_list *);
661d27e3e2SKees Cook static DEFINE_TIMER(pstore_timer, pstore_timefunc);
676dda9266SLuck, Tony 
686dda9266SLuck, Tony static void pstore_dowork(struct work_struct *);
696dda9266SLuck, Tony static DECLARE_WORK(pstore_work, pstore_dowork);
706dda9266SLuck, Tony 
716dda9266SLuck, Tony /*
72*6248a066SKees Cook  * psinfo_lock protects "psinfo" during calls to
73*6248a066SKees Cook  * pstore_register(), pstore_unregister(), and
74*6248a066SKees Cook  * the filesystem mount/unmount routines.
75ca01d6ddSTony Luck  */
76cab12fd0SKees Cook static DEFINE_MUTEX(psinfo_lock);
77060287b8SAnton Vorontsov struct pstore_info *psinfo;
78ca01d6ddSTony Luck 
79dee28e72SMatthew Garrett static char *backend;
80fe1d4758SKees Cook static char *compress =
81fe1d4758SKees Cook #ifdef CONFIG_PSTORE_COMPRESS_DEFAULT
82fe1d4758SKees Cook 		CONFIG_PSTORE_COMPRESS_DEFAULT;
83fe1d4758SKees Cook #else
84fe1d4758SKees Cook 		NULL;
85fe1d4758SKees Cook #endif
86dee28e72SMatthew Garrett 
87b0aad7a9SAruna Balakrishnaiah /* Compression parameters */
88cb3bee03SGeliang Tang static struct crypto_comp *tfm;
898cfc8ddcSGeliang Tang 
908cfc8ddcSGeliang Tang struct pstore_zbackend {
91cb3bee03SGeliang Tang 	int (*zbufsize)(size_t size);
928cfc8ddcSGeliang Tang 	const char *name;
938cfc8ddcSGeliang Tang };
94b0aad7a9SAruna Balakrishnaiah 
95b0aad7a9SAruna Balakrishnaiah static char *big_oops_buf;
96b0aad7a9SAruna Balakrishnaiah static size_t big_oops_buf_sz;
97b0aad7a9SAruna Balakrishnaiah 
98366f7e7aSLuck, Tony /* How much of the console log to snapshot */
99349d7438SDavid Howells unsigned long kmsg_bytes = PSTORE_DEFAULT_KMSG_BYTES;
100ca01d6ddSTony Luck 
101366f7e7aSLuck, Tony void pstore_set_kmsg_bytes(int bytes)
102ca01d6ddSTony Luck {
103366f7e7aSLuck, Tony 	kmsg_bytes = bytes;
104ca01d6ddSTony Luck }
105ca01d6ddSTony Luck 
106ca01d6ddSTony Luck /* Tag each group of saved records with a sequence number */
107ca01d6ddSTony Luck static int	oopscount;
108ca01d6ddSTony Luck 
109f0f23e54SJoel Fernandes (Google) const char *pstore_type_to_name(enum pstore_type_id type)
110f0f23e54SJoel Fernandes (Google) {
111f0f23e54SJoel Fernandes (Google) 	BUILD_BUG_ON(ARRAY_SIZE(pstore_type_names) != PSTORE_TYPE_MAX);
112f0f23e54SJoel Fernandes (Google) 
113f0f23e54SJoel Fernandes (Google) 	if (WARN_ON_ONCE(type >= PSTORE_TYPE_MAX))
114f0f23e54SJoel Fernandes (Google) 		return "unknown";
115f0f23e54SJoel Fernandes (Google) 
116f0f23e54SJoel Fernandes (Google) 	return pstore_type_names[type];
117f0f23e54SJoel Fernandes (Google) }
118f0f23e54SJoel Fernandes (Google) EXPORT_SYMBOL_GPL(pstore_type_to_name);
119f0f23e54SJoel Fernandes (Google) 
120f0f23e54SJoel Fernandes (Google) enum pstore_type_id pstore_name_to_type(const char *name)
121f0f23e54SJoel Fernandes (Google) {
122f0f23e54SJoel Fernandes (Google) 	int i;
123f0f23e54SJoel Fernandes (Google) 
124f0f23e54SJoel Fernandes (Google) 	for (i = 0; i < PSTORE_TYPE_MAX; i++) {
125f0f23e54SJoel Fernandes (Google) 		if (!strcmp(pstore_type_names[i], name))
126f0f23e54SJoel Fernandes (Google) 			return i;
127f0f23e54SJoel Fernandes (Google) 	}
128f0f23e54SJoel Fernandes (Google) 
129f0f23e54SJoel Fernandes (Google) 	return PSTORE_TYPE_MAX;
130f0f23e54SJoel Fernandes (Google) }
131f0f23e54SJoel Fernandes (Google) EXPORT_SYMBOL_GPL(pstore_name_to_type);
132f0f23e54SJoel Fernandes (Google) 
133381b872cSSeiji Aguchi static const char *get_reason_str(enum kmsg_dump_reason reason)
134381b872cSSeiji Aguchi {
135381b872cSSeiji Aguchi 	switch (reason) {
136381b872cSSeiji Aguchi 	case KMSG_DUMP_PANIC:
137381b872cSSeiji Aguchi 		return "Panic";
138381b872cSSeiji Aguchi 	case KMSG_DUMP_OOPS:
139381b872cSSeiji Aguchi 		return "Oops";
140381b872cSSeiji Aguchi 	case KMSG_DUMP_EMERG:
141381b872cSSeiji Aguchi 		return "Emergency";
142381b872cSSeiji Aguchi 	case KMSG_DUMP_RESTART:
143381b872cSSeiji Aguchi 		return "Restart";
144381b872cSSeiji Aguchi 	case KMSG_DUMP_HALT:
145381b872cSSeiji Aguchi 		return "Halt";
146381b872cSSeiji Aguchi 	case KMSG_DUMP_POWEROFF:
147381b872cSSeiji Aguchi 		return "Poweroff";
148381b872cSSeiji Aguchi 	default:
149381b872cSSeiji Aguchi 		return "Unknown";
150381b872cSSeiji Aguchi 	}
151381b872cSSeiji Aguchi }
1529f6af27fSTony Luck 
1539f244e9cSSeiji Aguchi /*
154ea84b580SKees Cook  * Should pstore_dump() wait for a concurrent pstore_dump()? If
155ea84b580SKees Cook  * not, the current pstore_dump() will report a failure to dump
156ea84b580SKees Cook  * and return.
1579f244e9cSSeiji Aguchi  */
158ea84b580SKees Cook static bool pstore_cannot_wait(enum kmsg_dump_reason reason)
159ea84b580SKees Cook {
160ea84b580SKees Cook 	/* In NMI path, pstore shouldn't block regardless of reason. */
1619f244e9cSSeiji Aguchi 	if (in_nmi())
1629f244e9cSSeiji Aguchi 		return true;
1639f244e9cSSeiji Aguchi 
1649f244e9cSSeiji Aguchi 	switch (reason) {
1659f244e9cSSeiji Aguchi 	/* In panic case, other cpus are stopped by smp_send_stop(). */
1669f244e9cSSeiji Aguchi 	case KMSG_DUMP_PANIC:
167ea84b580SKees Cook 	/* Emergency restart shouldn't be blocked. */
1689f244e9cSSeiji Aguchi 	case KMSG_DUMP_EMERG:
1699f244e9cSSeiji Aguchi 		return true;
1709f244e9cSSeiji Aguchi 	default:
1719f244e9cSSeiji Aguchi 		return false;
1729f244e9cSSeiji Aguchi 	}
1739f244e9cSSeiji Aguchi }
1749f244e9cSSeiji Aguchi 
17558eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_DEFLATE_COMPRESS)
176cb3bee03SGeliang Tang static int zbufsize_deflate(size_t size)
177b0aad7a9SAruna Balakrishnaiah {
1787de8fe2fSAruna Balakrishnaiah 	size_t cmpr;
179b0aad7a9SAruna Balakrishnaiah 
180cb3bee03SGeliang Tang 	switch (size) {
1817de8fe2fSAruna Balakrishnaiah 	/* buffer range for efivars */
1827de8fe2fSAruna Balakrishnaiah 	case 1000 ... 2000:
1837de8fe2fSAruna Balakrishnaiah 		cmpr = 56;
1847de8fe2fSAruna Balakrishnaiah 		break;
1857de8fe2fSAruna Balakrishnaiah 	case 2001 ... 3000:
1867de8fe2fSAruna Balakrishnaiah 		cmpr = 54;
1877de8fe2fSAruna Balakrishnaiah 		break;
1887de8fe2fSAruna Balakrishnaiah 	case 3001 ... 3999:
1897de8fe2fSAruna Balakrishnaiah 		cmpr = 52;
1907de8fe2fSAruna Balakrishnaiah 		break;
1917de8fe2fSAruna Balakrishnaiah 	/* buffer range for nvram, erst */
1927de8fe2fSAruna Balakrishnaiah 	case 4000 ... 10000:
1937de8fe2fSAruna Balakrishnaiah 		cmpr = 45;
1947de8fe2fSAruna Balakrishnaiah 		break;
1957de8fe2fSAruna Balakrishnaiah 	default:
1967de8fe2fSAruna Balakrishnaiah 		cmpr = 60;
1977de8fe2fSAruna Balakrishnaiah 		break;
1987de8fe2fSAruna Balakrishnaiah 	}
1997de8fe2fSAruna Balakrishnaiah 
200cb3bee03SGeliang Tang 	return (size * 100) / cmpr;
2018cfc8ddcSGeliang Tang }
2028cfc8ddcSGeliang Tang #endif
2038cfc8ddcSGeliang Tang 
20458eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZO_COMPRESS)
205cb3bee03SGeliang Tang static int zbufsize_lzo(size_t size)
2068cfc8ddcSGeliang Tang {
207cb3bee03SGeliang Tang 	return lzo1x_worst_compress(size);
2088cfc8ddcSGeliang Tang }
2098cfc8ddcSGeliang Tang #endif
2108cfc8ddcSGeliang Tang 
21158eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZ4_COMPRESS) || IS_ENABLED(CONFIG_PSTORE_LZ4HC_COMPRESS)
212cb3bee03SGeliang Tang static int zbufsize_lz4(size_t size)
2138cfc8ddcSGeliang Tang {
214cb3bee03SGeliang Tang 	return LZ4_compressBound(size);
215239b7161SGeliang Tang }
216239b7161SGeliang Tang #endif
217239b7161SGeliang Tang 
21858eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_842_COMPRESS)
219cb3bee03SGeliang Tang static int zbufsize_842(size_t size)
220239b7161SGeliang Tang {
22155597406SKees Cook 	return size;
222239b7161SGeliang Tang }
223fe1d4758SKees Cook #endif
2248cfc8ddcSGeliang Tang 
2251021bcf4SGeliang Tang #if IS_ENABLED(CONFIG_PSTORE_ZSTD_COMPRESS)
2261021bcf4SGeliang Tang static int zbufsize_zstd(size_t size)
2271021bcf4SGeliang Tang {
2281021bcf4SGeliang Tang 	return ZSTD_compressBound(size);
2291021bcf4SGeliang Tang }
2301021bcf4SGeliang Tang #endif
2311021bcf4SGeliang Tang 
232fe1d4758SKees Cook static const struct pstore_zbackend *zbackend __ro_after_init;
233fe1d4758SKees Cook 
234fe1d4758SKees Cook static const struct pstore_zbackend zbackends[] = {
23558eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_DEFLATE_COMPRESS)
236fe1d4758SKees Cook 	{
237cb3bee03SGeliang Tang 		.zbufsize	= zbufsize_deflate,
238cb3bee03SGeliang Tang 		.name		= "deflate",
239fe1d4758SKees Cook 	},
240fe1d4758SKees Cook #endif
24158eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZO_COMPRESS)
242fe1d4758SKees Cook 	{
243cb3bee03SGeliang Tang 		.zbufsize	= zbufsize_lzo,
244fe1d4758SKees Cook 		.name		= "lzo",
245fe1d4758SKees Cook 	},
246fe1d4758SKees Cook #endif
24758eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZ4_COMPRESS)
248fe1d4758SKees Cook 	{
249cb3bee03SGeliang Tang 		.zbufsize	= zbufsize_lz4,
250fe1d4758SKees Cook 		.name		= "lz4",
251fe1d4758SKees Cook 	},
252fe1d4758SKees Cook #endif
25358eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZ4HC_COMPRESS)
254fe1d4758SKees Cook 	{
255cb3bee03SGeliang Tang 		.zbufsize	= zbufsize_lz4,
256fe1d4758SKees Cook 		.name		= "lz4hc",
257fe1d4758SKees Cook 	},
258fe1d4758SKees Cook #endif
25958eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_842_COMPRESS)
260fe1d4758SKees Cook 	{
261cb3bee03SGeliang Tang 		.zbufsize	= zbufsize_842,
262239b7161SGeliang Tang 		.name		= "842",
263fe1d4758SKees Cook 	},
264fe1d4758SKees Cook #endif
2651021bcf4SGeliang Tang #if IS_ENABLED(CONFIG_PSTORE_ZSTD_COMPRESS)
2661021bcf4SGeliang Tang 	{
2671021bcf4SGeliang Tang 		.zbufsize	= zbufsize_zstd,
2681021bcf4SGeliang Tang 		.name		= "zstd",
2691021bcf4SGeliang Tang 	},
2701021bcf4SGeliang Tang #endif
271fe1d4758SKees Cook 	{ }
2728cfc8ddcSGeliang Tang };
2738cfc8ddcSGeliang Tang 
2748cfc8ddcSGeliang Tang static int pstore_compress(const void *in, void *out,
275cb3bee03SGeliang Tang 			   unsigned int inlen, unsigned int outlen)
2768cfc8ddcSGeliang Tang {
277cb3bee03SGeliang Tang 	int ret;
278cb3bee03SGeliang Tang 
279cb3bee03SGeliang Tang 	ret = crypto_comp_compress(tfm, in, inlen, out, &outlen);
280cb3bee03SGeliang Tang 	if (ret) {
281cb3bee03SGeliang Tang 		pr_err("crypto_comp_compress failed, ret = %d!\n", ret);
282cb3bee03SGeliang Tang 		return ret;
2838cfc8ddcSGeliang Tang 	}
2848cfc8ddcSGeliang Tang 
285cb3bee03SGeliang Tang 	return outlen;
286cb3bee03SGeliang Tang }
287cb3bee03SGeliang Tang 
2888cfc8ddcSGeliang Tang static void allocate_buf_for_compression(void)
2898cfc8ddcSGeliang Tang {
29095047b05SKees Cook 	struct crypto_comp *ctx;
29195047b05SKees Cook 	int size;
29295047b05SKees Cook 	char *buf;
29395047b05SKees Cook 
29495047b05SKees Cook 	/* Skip if not built-in or compression backend not selected yet. */
295e698aaf3STobias Regnery 	if (!IS_ENABLED(CONFIG_PSTORE_COMPRESS) || !zbackend)
296cb3bee03SGeliang Tang 		return;
297cb3bee03SGeliang Tang 
29895047b05SKees Cook 	/* Skip if no pstore backend yet or compression init already done. */
29995047b05SKees Cook 	if (!psinfo || tfm)
30095047b05SKees Cook 		return;
30195047b05SKees Cook 
302cb3bee03SGeliang Tang 	if (!crypto_has_comp(zbackend->name, 0, 0)) {
30395047b05SKees Cook 		pr_err("Unknown compression: %s\n", zbackend->name);
304cb3bee03SGeliang Tang 		return;
305cb3bee03SGeliang Tang 	}
306cb3bee03SGeliang Tang 
30795047b05SKees Cook 	size = zbackend->zbufsize(psinfo->bufsize);
30895047b05SKees Cook 	if (size <= 0) {
30995047b05SKees Cook 		pr_err("Invalid compression size for %s: %d\n",
31095047b05SKees Cook 		       zbackend->name, size);
311cb3bee03SGeliang Tang 		return;
312cb3bee03SGeliang Tang 	}
313cb3bee03SGeliang Tang 
31495047b05SKees Cook 	buf = kmalloc(size, GFP_KERNEL);
31595047b05SKees Cook 	if (!buf) {
31695047b05SKees Cook 		pr_err("Failed %d byte compression buffer allocation for: %s\n",
31795047b05SKees Cook 		       size, zbackend->name);
318cb3bee03SGeliang Tang 		return;
3198cfc8ddcSGeliang Tang 	}
32095047b05SKees Cook 
32195047b05SKees Cook 	ctx = crypto_alloc_comp(zbackend->name, 0, 0);
32295047b05SKees Cook 	if (IS_ERR_OR_NULL(ctx)) {
32395047b05SKees Cook 		kfree(buf);
32495047b05SKees Cook 		pr_err("crypto_alloc_comp('%s') failed: %ld\n", zbackend->name,
32595047b05SKees Cook 		       PTR_ERR(ctx));
32695047b05SKees Cook 		return;
32795047b05SKees Cook 	}
32895047b05SKees Cook 
32995047b05SKees Cook 	/* A non-NULL big_oops_buf indicates compression is available. */
33095047b05SKees Cook 	tfm = ctx;
33195047b05SKees Cook 	big_oops_buf_sz = size;
33295047b05SKees Cook 	big_oops_buf = buf;
33395047b05SKees Cook 
3340eed84ffSKees Cook 	pr_info("Using crash dump compression: %s\n", zbackend->name);
3358cfc8ddcSGeliang Tang }
3368cfc8ddcSGeliang Tang 
3378cfc8ddcSGeliang Tang static void free_buf_for_compression(void)
3388cfc8ddcSGeliang Tang {
339a9fb94a9SPi-Hsun Shih 	if (IS_ENABLED(CONFIG_PSTORE_COMPRESS) && tfm) {
340cb3bee03SGeliang Tang 		crypto_free_comp(tfm);
341a9fb94a9SPi-Hsun Shih 		tfm = NULL;
342a9fb94a9SPi-Hsun Shih 	}
343cb3bee03SGeliang Tang 	kfree(big_oops_buf);
344cb3bee03SGeliang Tang 	big_oops_buf = NULL;
345cb3bee03SGeliang Tang 	big_oops_buf_sz = 0;
346ee1d2674SGeliang Tang }
347ee1d2674SGeliang Tang 
348b0aad7a9SAruna Balakrishnaiah /*
349b0aad7a9SAruna Balakrishnaiah  * Called when compression fails, since the printk buffer
350b0aad7a9SAruna Balakrishnaiah  * would be fetched for compression calling it again when
351b0aad7a9SAruna Balakrishnaiah  * compression fails would have moved the iterator of
352b0aad7a9SAruna Balakrishnaiah  * printk buffer which results in fetching old contents.
353b0aad7a9SAruna Balakrishnaiah  * Copy the recent messages from big_oops_buf to psinfo->buf
354b0aad7a9SAruna Balakrishnaiah  */
355b0aad7a9SAruna Balakrishnaiah static size_t copy_kmsg_to_buffer(int hsize, size_t len)
356b0aad7a9SAruna Balakrishnaiah {
357b0aad7a9SAruna Balakrishnaiah 	size_t total_len;
358b0aad7a9SAruna Balakrishnaiah 	size_t diff;
359b0aad7a9SAruna Balakrishnaiah 
360b0aad7a9SAruna Balakrishnaiah 	total_len = hsize + len;
361b0aad7a9SAruna Balakrishnaiah 
362b0aad7a9SAruna Balakrishnaiah 	if (total_len > psinfo->bufsize) {
363b0aad7a9SAruna Balakrishnaiah 		diff = total_len - psinfo->bufsize + hsize;
364b0aad7a9SAruna Balakrishnaiah 		memcpy(psinfo->buf, big_oops_buf, hsize);
365b0aad7a9SAruna Balakrishnaiah 		memcpy(psinfo->buf + hsize, big_oops_buf + diff,
366b0aad7a9SAruna Balakrishnaiah 					psinfo->bufsize - hsize);
367b0aad7a9SAruna Balakrishnaiah 		total_len = psinfo->bufsize;
368b0aad7a9SAruna Balakrishnaiah 	} else
369b0aad7a9SAruna Balakrishnaiah 		memcpy(psinfo->buf, big_oops_buf, total_len);
370b0aad7a9SAruna Balakrishnaiah 
371b0aad7a9SAruna Balakrishnaiah 	return total_len;
372b0aad7a9SAruna Balakrishnaiah }
373b0aad7a9SAruna Balakrishnaiah 
374e581ca81SKees Cook void pstore_record_init(struct pstore_record *record,
375e581ca81SKees Cook 			struct pstore_info *psinfo)
376e581ca81SKees Cook {
377e581ca81SKees Cook 	memset(record, 0, sizeof(*record));
378e581ca81SKees Cook 
379e581ca81SKees Cook 	record->psi = psinfo;
380c7f3c595SKees Cook 
381c7f3c595SKees Cook 	/* Report zeroed timestamp if called before timekeeping has resumed. */
3827aaa822eSKees Cook 	record->time = ns_to_timespec64(ktime_get_real_fast_ns());
383e581ca81SKees Cook }
384e581ca81SKees Cook 
385ca01d6ddSTony Luck /*
3860eed84ffSKees Cook  * callback from kmsg_dump. Save as much as we can (up to kmsg_bytes) from the
3870eed84ffSKees Cook  * end of the buffer.
388ca01d6ddSTony Luck  */
389ca01d6ddSTony Luck static void pstore_dump(struct kmsg_dumper *dumper,
390e2ae715dSKay Sievers 			enum kmsg_dump_reason reason)
391ca01d6ddSTony Luck {
392e2ae715dSKay Sievers 	unsigned long	total = 0;
393381b872cSSeiji Aguchi 	const char	*why;
394b94fdd07SMatthew Garrett 	unsigned int	part = 1;
395e2ae715dSKay Sievers 	int		ret;
396ca01d6ddSTony Luck 
397381b872cSSeiji Aguchi 	why = get_reason_str(reason);
3989f6af27fSTony Luck 
399ea84b580SKees Cook 	if (down_trylock(&psinfo->buf_lock)) {
400ea84b580SKees Cook 		/* Failed to acquire lock: give up if we cannot wait. */
401ea84b580SKees Cook 		if (pstore_cannot_wait(reason)) {
402ea84b580SKees Cook 			pr_err("dump skipped in %s path: may corrupt error record\n",
403ea84b580SKees Cook 				in_nmi() ? "NMI" : why);
404959217c8SLi Pengcheng 			return;
4059f244e9cSSeiji Aguchi 		}
406ea84b580SKees Cook 		if (down_interruptible(&psinfo->buf_lock)) {
407ea84b580SKees Cook 			pr_err("could not grab semaphore?!\n");
408ea84b580SKees Cook 			return;
40998e44fdaSNamhyung Kim 		}
410ea84b580SKees Cook 	}
411ea84b580SKees Cook 
412ca01d6ddSTony Luck 	oopscount++;
413ca01d6ddSTony Luck 	while (total < kmsg_bytes) {
414e2ae715dSKay Sievers 		char *dst;
41576cc9580SKees Cook 		size_t dst_size;
41676cc9580SKees Cook 		int header_size;
417b0aad7a9SAruna Balakrishnaiah 		int zipped_len = -1;
41876cc9580SKees Cook 		size_t dump_size;
419e581ca81SKees Cook 		struct pstore_record record;
420e581ca81SKees Cook 
421e581ca81SKees Cook 		pstore_record_init(&record, psinfo);
422e581ca81SKees Cook 		record.type = PSTORE_TYPE_DMESG;
423e581ca81SKees Cook 		record.count = oopscount;
424e581ca81SKees Cook 		record.reason = reason;
425e581ca81SKees Cook 		record.part = part;
426e581ca81SKees Cook 		record.buf = psinfo->buf;
427e2ae715dSKay Sievers 
428ea84b580SKees Cook 		if (big_oops_buf) {
429b0aad7a9SAruna Balakrishnaiah 			dst = big_oops_buf;
43076cc9580SKees Cook 			dst_size = big_oops_buf_sz;
431235f6d15SNamhyung Kim 		} else {
432235f6d15SNamhyung Kim 			dst = psinfo->buf;
43376cc9580SKees Cook 			dst_size = psinfo->bufsize;
434235f6d15SNamhyung Kim 		}
435235f6d15SNamhyung Kim 
43676cc9580SKees Cook 		/* Write dump header. */
43776cc9580SKees Cook 		header_size = snprintf(dst, dst_size, "%s#%d Part%u\n", why,
43876cc9580SKees Cook 				 oopscount, part);
43976cc9580SKees Cook 		dst_size -= header_size;
440b0aad7a9SAruna Balakrishnaiah 
44176cc9580SKees Cook 		/* Write dump contents. */
44276cc9580SKees Cook 		if (!kmsg_dump_get_buffer(dumper, true, dst + header_size,
44376cc9580SKees Cook 					  dst_size, &dump_size))
444b0aad7a9SAruna Balakrishnaiah 			break;
445b0aad7a9SAruna Balakrishnaiah 
446ea84b580SKees Cook 		if (big_oops_buf) {
447b0aad7a9SAruna Balakrishnaiah 			zipped_len = pstore_compress(dst, psinfo->buf,
44876cc9580SKees Cook 						header_size + dump_size,
44976cc9580SKees Cook 						psinfo->bufsize);
450b0aad7a9SAruna Balakrishnaiah 
451b0aad7a9SAruna Balakrishnaiah 			if (zipped_len > 0) {
45276cc9580SKees Cook 				record.compressed = true;
45376cc9580SKees Cook 				record.size = zipped_len;
454b0aad7a9SAruna Balakrishnaiah 			} else {
45576cc9580SKees Cook 				record.size = copy_kmsg_to_buffer(header_size,
45676cc9580SKees Cook 								  dump_size);
457b0aad7a9SAruna Balakrishnaiah 			}
458b0aad7a9SAruna Balakrishnaiah 		} else {
45976cc9580SKees Cook 			record.size = header_size + dump_size;
460b0aad7a9SAruna Balakrishnaiah 		}
461b0aad7a9SAruna Balakrishnaiah 
46276cc9580SKees Cook 		ret = psinfo->write(&record);
463b238b8faSChen Gong 		if (ret == 0 && reason == KMSG_DUMP_OOPS && pstore_is_mounted())
4646dda9266SLuck, Tony 			pstore_new_entry = 1;
465e2ae715dSKay Sievers 
46676cc9580SKees Cook 		total += record.size;
46756280682SMatthew Garrett 		part++;
468ca01d6ddSTony Luck 	}
469ea84b580SKees Cook 
470ea84b580SKees Cook 	up(&psinfo->buf_lock);
471ca01d6ddSTony Luck }
472ca01d6ddSTony Luck 
473ca01d6ddSTony Luck static struct kmsg_dumper pstore_dumper = {
474ca01d6ddSTony Luck 	.dump = pstore_dump,
475ca01d6ddSTony Luck };
476ca01d6ddSTony Luck 
477306e5c2aSGeliang Tang /*
478306e5c2aSGeliang Tang  * Register with kmsg_dump to save last part of console log on panic.
479306e5c2aSGeliang Tang  */
48018730411SGeliang Tang static void pstore_register_kmsg(void)
48118730411SGeliang Tang {
48218730411SGeliang Tang 	kmsg_dump_register(&pstore_dumper);
48318730411SGeliang Tang }
48418730411SGeliang Tang 
485ee1d2674SGeliang Tang static void pstore_unregister_kmsg(void)
486ee1d2674SGeliang Tang {
487ee1d2674SGeliang Tang 	kmsg_dump_unregister(&pstore_dumper);
488ee1d2674SGeliang Tang }
489ee1d2674SGeliang Tang 
490f29e5956SAnton Vorontsov #ifdef CONFIG_PSTORE_CONSOLE
491f29e5956SAnton Vorontsov static void pstore_console_write(struct console *con, const char *s, unsigned c)
492f29e5956SAnton Vorontsov {
493e581ca81SKees Cook 	struct pstore_record record;
494f29e5956SAnton Vorontsov 
4954c6c4d34SYue Hu 	if (!c)
4964c6c4d34SYue Hu 		return;
4974c6c4d34SYue Hu 
498e581ca81SKees Cook 	pstore_record_init(&record, psinfo);
499e581ca81SKees Cook 	record.type = PSTORE_TYPE_CONSOLE;
500e581ca81SKees Cook 
501b10b4711SKees Cook 	record.buf = (char *)s;
502b10b4711SKees Cook 	record.size = c;
5034c9ec219SKees Cook 	psinfo->write(&record);
504f29e5956SAnton Vorontsov }
505f29e5956SAnton Vorontsov 
506f29e5956SAnton Vorontsov static struct console pstore_console = {
507f29e5956SAnton Vorontsov 	.name	= "pstore",
508f29e5956SAnton Vorontsov 	.write	= pstore_console_write,
509f29e5956SAnton Vorontsov 	.flags	= CON_PRINTBUFFER | CON_ENABLED | CON_ANYTIME,
510f29e5956SAnton Vorontsov 	.index	= -1,
511f29e5956SAnton Vorontsov };
512f29e5956SAnton Vorontsov 
513f29e5956SAnton Vorontsov static void pstore_register_console(void)
514f29e5956SAnton Vorontsov {
515f29e5956SAnton Vorontsov 	register_console(&pstore_console);
516f29e5956SAnton Vorontsov }
517ee1d2674SGeliang Tang 
518ee1d2674SGeliang Tang static void pstore_unregister_console(void)
519ee1d2674SGeliang Tang {
520ee1d2674SGeliang Tang 	unregister_console(&pstore_console);
521ee1d2674SGeliang Tang }
522f29e5956SAnton Vorontsov #else
523f29e5956SAnton Vorontsov static void pstore_register_console(void) {}
524ee1d2674SGeliang Tang static void pstore_unregister_console(void) {}
525f29e5956SAnton Vorontsov #endif
526f29e5956SAnton Vorontsov 
5274c9ec219SKees Cook static int pstore_write_user_compat(struct pstore_record *record,
528fdd03118SKees Cook 				    const char __user *buf)
5295bf6d1b9SMark Salyzyn {
53030800d99SKees Cook 	int ret = 0;
5315bf6d1b9SMark Salyzyn 
53230800d99SKees Cook 	if (record->buf)
53330800d99SKees Cook 		return -EINVAL;
5345bf6d1b9SMark Salyzyn 
535077090afSGeliang Tang 	record->buf = memdup_user(buf, record->size);
536dfd6fa39SHirofumi Nakagawa 	if (IS_ERR(record->buf)) {
537077090afSGeliang Tang 		ret = PTR_ERR(record->buf);
53830800d99SKees Cook 		goto out;
5395bf6d1b9SMark Salyzyn 	}
54030800d99SKees Cook 
5414c9ec219SKees Cook 	ret = record->psi->write(record);
54230800d99SKees Cook 
54330800d99SKees Cook 	kfree(record->buf);
544077090afSGeliang Tang out:
54530800d99SKees Cook 	record->buf = NULL;
54630800d99SKees Cook 
54730800d99SKees Cook 	return unlikely(ret < 0) ? ret : record->size;
5485bf6d1b9SMark Salyzyn }
5495bf6d1b9SMark Salyzyn 
550ca01d6ddSTony Luck /*
551ca01d6ddSTony Luck  * platform specific persistent storage driver registers with
552ca01d6ddSTony Luck  * us here. If pstore is already mounted, call the platform
553ca01d6ddSTony Luck  * read function right away to populate the file system. If not
554ca01d6ddSTony Luck  * then the pstore mount code will call us later to fill out
555ca01d6ddSTony Luck  * the file system.
556ca01d6ddSTony Luck  */
557ca01d6ddSTony Luck int pstore_register(struct pstore_info *psi)
558ca01d6ddSTony Luck {
5590d7cd09aSKees Cook 	if (backend && strcmp(backend, psi->name)) {
5600d7cd09aSKees Cook 		pr_warn("ignoring unexpected backend '%s'\n", psi->name);
5618e48b1a8SLenny Szubowicz 		return -EPERM;
5620d7cd09aSKees Cook 	}
5638e48b1a8SLenny Szubowicz 
5644c9ec219SKees Cook 	/* Sanity check flags. */
5654c9ec219SKees Cook 	if (!psi->flags) {
5664c9ec219SKees Cook 		pr_warn("backend '%s' must support at least one frontend\n",
5674c9ec219SKees Cook 			psi->name);
5684c9ec219SKees Cook 		return -EINVAL;
5694c9ec219SKees Cook 	}
5704c9ec219SKees Cook 
5714c9ec219SKees Cook 	/* Check for required functions. */
5724c9ec219SKees Cook 	if (!psi->read || !psi->write) {
5734c9ec219SKees Cook 		pr_warn("backend '%s' must implement read() and write()\n",
5744c9ec219SKees Cook 			psi->name);
5754c9ec219SKees Cook 		return -EINVAL;
5764c9ec219SKees Cook 	}
5774c9ec219SKees Cook 
578cab12fd0SKees Cook 	mutex_lock(&psinfo_lock);
579ca01d6ddSTony Luck 	if (psinfo) {
5800d7cd09aSKees Cook 		pr_warn("backend '%s' already loaded: ignoring '%s'\n",
5810d7cd09aSKees Cook 			psinfo->name, psi->name);
582cab12fd0SKees Cook 		mutex_unlock(&psinfo_lock);
583ca01d6ddSTony Luck 		return -EBUSY;
584ca01d6ddSTony Luck 	}
585dee28e72SMatthew Garrett 
5864c9ec219SKees Cook 	if (!psi->write_user)
5874c9ec219SKees Cook 		psi->write_user = pstore_write_user_compat;
588ca01d6ddSTony Luck 	psinfo = psi;
589f6f82851SKees Cook 	mutex_init(&psinfo->read_mutex);
590ea84b580SKees Cook 	sema_init(&psinfo->buf_lock, 1);
591ca01d6ddSTony Luck 
5928880fa32SKees Cook 	if (psi->flags & PSTORE_FLAGS_DMESG)
593b0aad7a9SAruna Balakrishnaiah 		allocate_buf_for_compression();
594b0aad7a9SAruna Balakrishnaiah 
595ca01d6ddSTony Luck 	if (pstore_is_mounted())
5966dda9266SLuck, Tony 		pstore_get_records(0);
597ca01d6ddSTony Luck 
598c950fd6fSNamhyung Kim 	if (psi->flags & PSTORE_FLAGS_DMESG)
59918730411SGeliang Tang 		pstore_register_kmsg();
600c950fd6fSNamhyung Kim 	if (psi->flags & PSTORE_FLAGS_CONSOLE)
601f29e5956SAnton Vorontsov 		pstore_register_console();
602c950fd6fSNamhyung Kim 	if (psi->flags & PSTORE_FLAGS_FTRACE)
60365f8c95eSAnton Vorontsov 		pstore_register_ftrace();
604c950fd6fSNamhyung Kim 	if (psi->flags & PSTORE_FLAGS_PMSG)
6059d5438f4SMark Salyzyn 		pstore_register_pmsg();
606ca01d6ddSTony Luck 
6076330d553SKees Cook 	/* Start watching for new records, if desired. */
608a3f5f075SAnton Vorontsov 	if (pstore_update_ms >= 0) {
609a3f5f075SAnton Vorontsov 		pstore_timer.expires = jiffies +
610a3f5f075SAnton Vorontsov 			msecs_to_jiffies(pstore_update_ms);
6116dda9266SLuck, Tony 		add_timer(&pstore_timer);
612a3f5f075SAnton Vorontsov 	}
6136dda9266SLuck, Tony 
61442222c2aSWang Long 	/*
61542222c2aSWang Long 	 * Update the module parameter backend, so it is visible
61642222c2aSWang Long 	 * through /sys/module/pstore/parameters/backend
61742222c2aSWang Long 	 */
61842222c2aSWang Long 	backend = psi->name;
61942222c2aSWang Long 
620ef748853SFabian Frederick 	pr_info("Registered %s as persistent store backend\n", psi->name);
6218e48b1a8SLenny Szubowicz 
622*6248a066SKees Cook 	mutex_unlock(&psinfo_lock);
623ca01d6ddSTony Luck 	return 0;
624ca01d6ddSTony Luck }
625ca01d6ddSTony Luck EXPORT_SYMBOL_GPL(pstore_register);
626ca01d6ddSTony Luck 
627ee1d2674SGeliang Tang void pstore_unregister(struct pstore_info *psi)
628ee1d2674SGeliang Tang {
629*6248a066SKees Cook 	/* It's okay to unregister nothing. */
630*6248a066SKees Cook 	if (!psi)
631*6248a066SKees Cook 		return;
632*6248a066SKees Cook 
633*6248a066SKees Cook 	mutex_lock(&psinfo_lock);
634*6248a066SKees Cook 
635*6248a066SKees Cook 	/* Only one backend can be registered at a time. */
636*6248a066SKees Cook 	if (WARN_ON(psi != psinfo)) {
637*6248a066SKees Cook 		mutex_unlock(&psinfo_lock);
638*6248a066SKees Cook 		return;
639*6248a066SKees Cook 	}
640*6248a066SKees Cook 
6416330d553SKees Cook 	/* Stop timer and make sure all work has finished. */
6426330d553SKees Cook 	pstore_update_ms = -1;
6436330d553SKees Cook 	del_timer_sync(&pstore_timer);
6446330d553SKees Cook 	flush_work(&pstore_work);
6456330d553SKees Cook 
646c950fd6fSNamhyung Kim 	if (psi->flags & PSTORE_FLAGS_PMSG)
647ee1d2674SGeliang Tang 		pstore_unregister_pmsg();
648c950fd6fSNamhyung Kim 	if (psi->flags & PSTORE_FLAGS_FTRACE)
649ee1d2674SGeliang Tang 		pstore_unregister_ftrace();
650c950fd6fSNamhyung Kim 	if (psi->flags & PSTORE_FLAGS_CONSOLE)
651ee1d2674SGeliang Tang 		pstore_unregister_console();
652c950fd6fSNamhyung Kim 	if (psi->flags & PSTORE_FLAGS_DMESG)
653ee1d2674SGeliang Tang 		pstore_unregister_kmsg();
654ee1d2674SGeliang Tang 
655ee1d2674SGeliang Tang 	free_buf_for_compression();
656ee1d2674SGeliang Tang 
657ee1d2674SGeliang Tang 	psinfo = NULL;
658ee1d2674SGeliang Tang 	backend = NULL;
659*6248a066SKees Cook 	mutex_unlock(&psinfo_lock);
660ee1d2674SGeliang Tang }
661ee1d2674SGeliang Tang EXPORT_SYMBOL_GPL(pstore_unregister);
662ee1d2674SGeliang Tang 
663634f8f51SKees Cook static void decompress_record(struct pstore_record *record)
664634f8f51SKees Cook {
665bdabc8e7SKees Cook 	int ret;
666634f8f51SKees Cook 	int unzipped_len;
667bdabc8e7SKees Cook 	char *unzipped, *workspace;
668634f8f51SKees Cook 
6694a16d1cbSAnkit Kumar 	if (!record->compressed)
6704a16d1cbSAnkit Kumar 		return;
6714a16d1cbSAnkit Kumar 
672634f8f51SKees Cook 	/* Only PSTORE_TYPE_DMESG support compression. */
6734a16d1cbSAnkit Kumar 	if (record->type != PSTORE_TYPE_DMESG) {
674634f8f51SKees Cook 		pr_warn("ignored compressed record type %d\n", record->type);
675634f8f51SKees Cook 		return;
676634f8f51SKees Cook 	}
677634f8f51SKees Cook 
678bdabc8e7SKees Cook 	/* Missing compression buffer means compression was not initialized. */
679634f8f51SKees Cook 	if (!big_oops_buf) {
680bdabc8e7SKees Cook 		pr_warn("no decompression method initialized!\n");
681634f8f51SKees Cook 		return;
682634f8f51SKees Cook 	}
683634f8f51SKees Cook 
684bdabc8e7SKees Cook 	/* Allocate enough space to hold max decompression and ECC. */
685bdabc8e7SKees Cook 	unzipped_len = big_oops_buf_sz;
686bdabc8e7SKees Cook 	workspace = kmalloc(unzipped_len + record->ecc_notice_size,
6877e8cc8dcSKees Cook 			    GFP_KERNEL);
688bdabc8e7SKees Cook 	if (!workspace)
689bdabc8e7SKees Cook 		return;
690bdabc8e7SKees Cook 
691bdabc8e7SKees Cook 	/* After decompression "unzipped_len" is almost certainly smaller. */
692bdabc8e7SKees Cook 	ret = crypto_comp_decompress(tfm, record->buf, record->size,
693bdabc8e7SKees Cook 					  workspace, &unzipped_len);
694bdabc8e7SKees Cook 	if (ret) {
695bdabc8e7SKees Cook 		pr_err("crypto_comp_decompress failed, ret = %d!\n", ret);
696bdabc8e7SKees Cook 		kfree(workspace);
6977e8cc8dcSKees Cook 		return;
6987e8cc8dcSKees Cook 	}
6997e8cc8dcSKees Cook 
7007e8cc8dcSKees Cook 	/* Append ECC notice to decompressed buffer. */
701bdabc8e7SKees Cook 	memcpy(workspace + unzipped_len, record->buf + record->size,
702634f8f51SKees Cook 	       record->ecc_notice_size);
7037e8cc8dcSKees Cook 
704bdabc8e7SKees Cook 	/* Copy decompressed contents into an minimum-sized allocation. */
705bdabc8e7SKees Cook 	unzipped = kmemdup(workspace, unzipped_len + record->ecc_notice_size,
706bdabc8e7SKees Cook 			   GFP_KERNEL);
707bdabc8e7SKees Cook 	kfree(workspace);
708bdabc8e7SKees Cook 	if (!unzipped)
709bdabc8e7SKees Cook 		return;
710bdabc8e7SKees Cook 
711bdabc8e7SKees Cook 	/* Swap out compressed contents with decompressed contents. */
712634f8f51SKees Cook 	kfree(record->buf);
713bdabc8e7SKees Cook 	record->buf = unzipped;
714634f8f51SKees Cook 	record->size = unzipped_len;
715634f8f51SKees Cook 	record->compressed = false;
716634f8f51SKees Cook }
717634f8f51SKees Cook 
718ca01d6ddSTony Luck /*
7193a7d2fd1SKees Cook  * Read all the records from one persistent store backend. Create
7206dda9266SLuck, Tony  * files in our filesystem.  Don't warn about -EEXIST errors
7216dda9266SLuck, Tony  * when we are re-scanning the backing store looking to add new
7226dda9266SLuck, Tony  * error records.
723ca01d6ddSTony Luck  */
7243a7d2fd1SKees Cook void pstore_get_backend_records(struct pstore_info *psi,
7253a7d2fd1SKees Cook 				struct dentry *root, int quiet)
726ca01d6ddSTony Luck {
7272a2b0acfSKees Cook 	int failed = 0;
728656de42eSKees Cook 	unsigned int stop_loop = 65536;
729ca01d6ddSTony Luck 
7303a7d2fd1SKees Cook 	if (!psi || !root)
731ca01d6ddSTony Luck 		return;
732ca01d6ddSTony Luck 
733f6f82851SKees Cook 	mutex_lock(&psi->read_mutex);
7342174f6dfSKees Cook 	if (psi->open && psi->open(psi))
73506cf91b4SChen Gong 		goto out;
73606cf91b4SChen Gong 
7371dfff7ddSKees Cook 	/*
7381dfff7ddSKees Cook 	 * Backend callback read() allocates record.buf. decompress_record()
7391dfff7ddSKees Cook 	 * may reallocate record.buf. On success, pstore_mkfile() will keep
7401dfff7ddSKees Cook 	 * the record.buf, so free it only on failure.
7411dfff7ddSKees Cook 	 */
742656de42eSKees Cook 	for (; stop_loop; stop_loop--) {
7432a2b0acfSKees Cook 		struct pstore_record *record;
7442a2b0acfSKees Cook 		int rc;
7452a2b0acfSKees Cook 
7462a2b0acfSKees Cook 		record = kzalloc(sizeof(*record), GFP_KERNEL);
7472a2b0acfSKees Cook 		if (!record) {
7482a2b0acfSKees Cook 			pr_err("out of memory creating record\n");
7492a2b0acfSKees Cook 			break;
7502a2b0acfSKees Cook 		}
751e581ca81SKees Cook 		pstore_record_init(record, psi);
7522a2b0acfSKees Cook 
7532a2b0acfSKees Cook 		record->size = psi->read(record);
7542a2b0acfSKees Cook 
7552a2b0acfSKees Cook 		/* No more records left in backend? */
756f6525b96SDouglas Anderson 		if (record->size <= 0) {
757f6525b96SDouglas Anderson 			kfree(record);
7582a2b0acfSKees Cook 			break;
759f6525b96SDouglas Anderson 		}
7602a2b0acfSKees Cook 
7612a2b0acfSKees Cook 		decompress_record(record);
7623a7d2fd1SKees Cook 		rc = pstore_mkfile(root, record);
7631dfff7ddSKees Cook 		if (rc) {
76483f70f07SKees Cook 			/* pstore_mkfile() did not take record, so free it. */
7652a2b0acfSKees Cook 			kfree(record->buf);
76683f70f07SKees Cook 			kfree(record);
7671dfff7ddSKees Cook 			if (rc != -EEXIST || !quiet)
7681dfff7ddSKees Cook 				failed++;
7691dfff7ddSKees Cook 		}
770ca01d6ddSTony Luck 	}
7712174f6dfSKees Cook 	if (psi->close)
77206cf91b4SChen Gong 		psi->close(psi);
77306cf91b4SChen Gong out:
774f6f82851SKees Cook 	mutex_unlock(&psi->read_mutex);
775ca01d6ddSTony Luck 
776ca01d6ddSTony Luck 	if (failed)
777656de42eSKees Cook 		pr_warn("failed to create %d record(s) from '%s'\n",
778ca01d6ddSTony Luck 			failed, psi->name);
779656de42eSKees Cook 	if (!stop_loop)
780656de42eSKees Cook 		pr_err("looping? Too many records seen from '%s'\n",
781656de42eSKees Cook 			psi->name);
782ca01d6ddSTony Luck }
783ca01d6ddSTony Luck 
7846dda9266SLuck, Tony static void pstore_dowork(struct work_struct *work)
7856dda9266SLuck, Tony {
7866dda9266SLuck, Tony 	pstore_get_records(1);
7876dda9266SLuck, Tony }
7886dda9266SLuck, Tony 
78924ed960aSKees Cook static void pstore_timefunc(struct timer_list *unused)
7906dda9266SLuck, Tony {
7916dda9266SLuck, Tony 	if (pstore_new_entry) {
7926dda9266SLuck, Tony 		pstore_new_entry = 0;
7936dda9266SLuck, Tony 		schedule_work(&pstore_work);
7946dda9266SLuck, Tony 	}
7956dda9266SLuck, Tony 
7966330d553SKees Cook 	if (pstore_update_ms >= 0)
7976330d553SKees Cook 		mod_timer(&pstore_timer,
7986330d553SKees Cook 			  jiffies + msecs_to_jiffies(pstore_update_ms));
7996dda9266SLuck, Tony }
8006dda9266SLuck, Tony 
8018d82cee2SBen Dooks (Codethink) static void __init pstore_choose_compression(void)
802fe1d4758SKees Cook {
803fe1d4758SKees Cook 	const struct pstore_zbackend *step;
804fe1d4758SKees Cook 
805fe1d4758SKees Cook 	if (!compress)
806fe1d4758SKees Cook 		return;
807fe1d4758SKees Cook 
808fe1d4758SKees Cook 	for (step = zbackends; step->name; step++) {
809fe1d4758SKees Cook 		if (!strcmp(compress, step->name)) {
810fe1d4758SKees Cook 			zbackend = step;
811fe1d4758SKees Cook 			return;
812fe1d4758SKees Cook 		}
813fe1d4758SKees Cook 	}
814fe1d4758SKees Cook }
815fe1d4758SKees Cook 
816cb095afdSKees Cook static int __init pstore_init(void)
817cb095afdSKees Cook {
818cb095afdSKees Cook 	int ret;
819cb095afdSKees Cook 
820cb095afdSKees Cook 	pstore_choose_compression();
821cb095afdSKees Cook 
82241603165SJoel Fernandes (Google) 	/*
82341603165SJoel Fernandes (Google) 	 * Check if any pstore backends registered earlier but did not
82441603165SJoel Fernandes (Google) 	 * initialize compression because crypto was not ready. If so,
82541603165SJoel Fernandes (Google) 	 * initialize compression now.
82641603165SJoel Fernandes (Google) 	 */
82741603165SJoel Fernandes (Google) 	allocate_buf_for_compression();
82841603165SJoel Fernandes (Google) 
829cb095afdSKees Cook 	ret = pstore_init_fs();
830cb095afdSKees Cook 	if (ret)
8318a57d6d4Schenqiwu 		free_buf_for_compression();
832cb095afdSKees Cook 
8338a57d6d4Schenqiwu 	return ret;
834cb095afdSKees Cook }
83541603165SJoel Fernandes (Google) late_initcall(pstore_init);
836cb095afdSKees Cook 
837cb095afdSKees Cook static void __exit pstore_exit(void)
838cb095afdSKees Cook {
839cb095afdSKees Cook 	pstore_exit_fs();
840cb095afdSKees Cook }
841cb095afdSKees Cook module_exit(pstore_exit)
842cb095afdSKees Cook 
843fe1d4758SKees Cook module_param(compress, charp, 0444);
844fe1d4758SKees Cook MODULE_PARM_DESC(compress, "Pstore compression to use");
845fe1d4758SKees Cook 
846dee28e72SMatthew Garrett module_param(backend, charp, 0444);
847dee28e72SMatthew Garrett MODULE_PARM_DESC(backend, "Pstore backend to use");
848cb095afdSKees Cook 
849cb095afdSKees Cook MODULE_AUTHOR("Tony Luck <tony.luck@intel.com>");
850cb095afdSKees Cook MODULE_LICENSE("GPL");
851