xref: /openbmc/linux/fs/pstore/platform.c (revision 56280682ceeef74b692b3e21d1872049eea7c887)
1ca01d6ddSTony Luck /*
2ca01d6ddSTony Luck  * Persistent Storage - platform driver interface parts.
3ca01d6ddSTony Luck  *
4ca01d6ddSTony Luck  * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com>
5ca01d6ddSTony Luck  *
6ca01d6ddSTony Luck  *  This program is free software; you can redistribute it and/or modify
7ca01d6ddSTony Luck  *  it under the terms of the GNU General Public License version 2 as
8ca01d6ddSTony Luck  *  published by the Free Software Foundation.
9ca01d6ddSTony Luck  *
10ca01d6ddSTony Luck  *  This program is distributed in the hope that it will be useful,
11ca01d6ddSTony Luck  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12ca01d6ddSTony Luck  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13ca01d6ddSTony Luck  *  GNU General Public License for more details.
14ca01d6ddSTony Luck  *
15ca01d6ddSTony Luck  *  You should have received a copy of the GNU General Public License
16ca01d6ddSTony Luck  *  along with this program; if not, write to the Free Software
17ca01d6ddSTony Luck  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18ca01d6ddSTony Luck  */
19ca01d6ddSTony Luck 
20ca01d6ddSTony Luck #include <linux/atomic.h>
21ca01d6ddSTony Luck #include <linux/types.h>
22ca01d6ddSTony Luck #include <linux/errno.h>
23ca01d6ddSTony Luck #include <linux/init.h>
24ca01d6ddSTony Luck #include <linux/kmsg_dump.h>
25ca01d6ddSTony Luck #include <linux/module.h>
26ca01d6ddSTony Luck #include <linux/pstore.h>
27ca01d6ddSTony Luck #include <linux/string.h>
28ca01d6ddSTony Luck #include <linux/slab.h>
29ca01d6ddSTony Luck #include <linux/uaccess.h>
30ca01d6ddSTony Luck 
31ca01d6ddSTony Luck #include "internal.h"
32ca01d6ddSTony Luck 
33ca01d6ddSTony Luck /*
34ca01d6ddSTony Luck  * pstore_lock just protects "psinfo" during
35ca01d6ddSTony Luck  * calls to pstore_register()
36ca01d6ddSTony Luck  */
37ca01d6ddSTony Luck static DEFINE_SPINLOCK(pstore_lock);
38ca01d6ddSTony Luck static struct pstore_info *psinfo;
39ca01d6ddSTony Luck 
40366f7e7aSLuck, Tony /* How much of the console log to snapshot */
41ca01d6ddSTony Luck static unsigned long kmsg_bytes = 10240;
42ca01d6ddSTony Luck 
43366f7e7aSLuck, Tony void pstore_set_kmsg_bytes(int bytes)
44ca01d6ddSTony Luck {
45366f7e7aSLuck, Tony 	kmsg_bytes = bytes;
46ca01d6ddSTony Luck }
47ca01d6ddSTony Luck 
48ca01d6ddSTony Luck /* Tag each group of saved records with a sequence number */
49ca01d6ddSTony Luck static int	oopscount;
50ca01d6ddSTony Luck 
519f6af27fSTony Luck static char *reason_str[] = {
529f6af27fSTony Luck 	"Oops", "Panic", "Kexec", "Restart", "Halt", "Poweroff", "Emergency"
539f6af27fSTony Luck };
549f6af27fSTony Luck 
55ca01d6ddSTony Luck /*
56ca01d6ddSTony Luck  * callback from kmsg_dump. (s2,l2) has the most recently
57ca01d6ddSTony Luck  * written bytes, older bytes are in (s1,l1). Save as much
58ca01d6ddSTony Luck  * as we can from the end of the buffer.
59ca01d6ddSTony Luck  */
60ca01d6ddSTony Luck static void pstore_dump(struct kmsg_dumper *dumper,
61ca01d6ddSTony Luck 	    enum kmsg_dump_reason reason,
62ca01d6ddSTony Luck 	    const char *s1, unsigned long l1,
63ca01d6ddSTony Luck 	    const char *s2, unsigned long l2)
64ca01d6ddSTony Luck {
65ca01d6ddSTony Luck 	unsigned long	s1_start, s2_start;
66ca01d6ddSTony Luck 	unsigned long	l1_cpy, l2_cpy;
67ca01d6ddSTony Luck 	unsigned long	size, total = 0;
689f6af27fSTony Luck 	char		*dst, *why;
69ca01d6ddSTony Luck 	u64		id;
70ca01d6ddSTony Luck 	int		hsize, part = 1;
71ca01d6ddSTony Luck 
729f6af27fSTony Luck 	if (reason < ARRAY_SIZE(reason_str))
739f6af27fSTony Luck 		why = reason_str[reason];
749f6af27fSTony Luck 	else
759f6af27fSTony Luck 		why = "Unknown";
769f6af27fSTony Luck 
77ca01d6ddSTony Luck 	mutex_lock(&psinfo->buf_mutex);
78ca01d6ddSTony Luck 	oopscount++;
79ca01d6ddSTony Luck 	while (total < kmsg_bytes) {
80ca01d6ddSTony Luck 		dst = psinfo->buf;
81*56280682SMatthew Garrett 		hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part);
82ca01d6ddSTony Luck 		size = psinfo->bufsize - hsize;
83ca01d6ddSTony Luck 		dst += hsize;
84ca01d6ddSTony Luck 
85ca01d6ddSTony Luck 		l2_cpy = min(l2, size);
86ca01d6ddSTony Luck 		l1_cpy = min(l1, size - l2_cpy);
87ca01d6ddSTony Luck 
88ca01d6ddSTony Luck 		if (l1_cpy + l2_cpy == 0)
89ca01d6ddSTony Luck 			break;
90ca01d6ddSTony Luck 
91ca01d6ddSTony Luck 		s2_start = l2 - l2_cpy;
92ca01d6ddSTony Luck 		s1_start = l1 - l1_cpy;
93ca01d6ddSTony Luck 
94ca01d6ddSTony Luck 		memcpy(dst, s1 + s1_start, l1_cpy);
95ca01d6ddSTony Luck 		memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy);
96ca01d6ddSTony Luck 
97*56280682SMatthew Garrett 		id = psinfo->write(PSTORE_TYPE_DMESG, part,
98*56280682SMatthew Garrett 				   hsize + l1_cpy + l2_cpy, psinfo);
999f6af27fSTony Luck 		if (reason == KMSG_DUMP_OOPS && pstore_is_mounted())
100ca01d6ddSTony Luck 			pstore_mkfile(PSTORE_TYPE_DMESG, psinfo->name, id,
101ca01d6ddSTony Luck 				      psinfo->buf, hsize + l1_cpy + l2_cpy,
102638c1fd3SMatthew Garrett 				      CURRENT_TIME, psinfo);
103ca01d6ddSTony Luck 		l1 -= l1_cpy;
104ca01d6ddSTony Luck 		l2 -= l2_cpy;
105ca01d6ddSTony Luck 		total += l1_cpy + l2_cpy;
106*56280682SMatthew Garrett 		part++;
107ca01d6ddSTony Luck 	}
108ca01d6ddSTony Luck 	mutex_unlock(&psinfo->buf_mutex);
109ca01d6ddSTony Luck }
110ca01d6ddSTony Luck 
111ca01d6ddSTony Luck static struct kmsg_dumper pstore_dumper = {
112ca01d6ddSTony Luck 	.dump = pstore_dump,
113ca01d6ddSTony Luck };
114ca01d6ddSTony Luck 
115ca01d6ddSTony Luck /*
116ca01d6ddSTony Luck  * platform specific persistent storage driver registers with
117ca01d6ddSTony Luck  * us here. If pstore is already mounted, call the platform
118ca01d6ddSTony Luck  * read function right away to populate the file system. If not
119ca01d6ddSTony Luck  * then the pstore mount code will call us later to fill out
120ca01d6ddSTony Luck  * the file system.
121ca01d6ddSTony Luck  *
122ca01d6ddSTony Luck  * Register with kmsg_dump to save last part of console log on panic.
123ca01d6ddSTony Luck  */
124ca01d6ddSTony Luck int pstore_register(struct pstore_info *psi)
125ca01d6ddSTony Luck {
126ca01d6ddSTony Luck 	struct module *owner = psi->owner;
127ca01d6ddSTony Luck 
128ca01d6ddSTony Luck 	spin_lock(&pstore_lock);
129ca01d6ddSTony Luck 	if (psinfo) {
130ca01d6ddSTony Luck 		spin_unlock(&pstore_lock);
131ca01d6ddSTony Luck 		return -EBUSY;
132ca01d6ddSTony Luck 	}
133ca01d6ddSTony Luck 	psinfo = psi;
134ca01d6ddSTony Luck 	spin_unlock(&pstore_lock);
135ca01d6ddSTony Luck 
136ca01d6ddSTony Luck 	if (owner && !try_module_get(owner)) {
137ca01d6ddSTony Luck 		psinfo = NULL;
138ca01d6ddSTony Luck 		return -EINVAL;
139ca01d6ddSTony Luck 	}
140ca01d6ddSTony Luck 
141ca01d6ddSTony Luck 	if (pstore_is_mounted())
142ca01d6ddSTony Luck 		pstore_get_records();
143ca01d6ddSTony Luck 
144ca01d6ddSTony Luck 	kmsg_dump_register(&pstore_dumper);
145ca01d6ddSTony Luck 
146ca01d6ddSTony Luck 	return 0;
147ca01d6ddSTony Luck }
148ca01d6ddSTony Luck EXPORT_SYMBOL_GPL(pstore_register);
149ca01d6ddSTony Luck 
150ca01d6ddSTony Luck /*
151ca01d6ddSTony Luck  * Read all the records from the persistent store. Create and
152ca01d6ddSTony Luck  * file files in our filesystem.
153ca01d6ddSTony Luck  */
154ca01d6ddSTony Luck void pstore_get_records(void)
155ca01d6ddSTony Luck {
156ca01d6ddSTony Luck 	struct pstore_info *psi = psinfo;
1578d38d74bSChen Gong 	ssize_t			size;
158ca01d6ddSTony Luck 	u64			id;
159ca01d6ddSTony Luck 	enum pstore_type_id	type;
160ca01d6ddSTony Luck 	struct timespec		time;
16106cf91b4SChen Gong 	int			failed = 0, rc;
162ca01d6ddSTony Luck 
163ca01d6ddSTony Luck 	if (!psi)
164ca01d6ddSTony Luck 		return;
165ca01d6ddSTony Luck 
166ca01d6ddSTony Luck 	mutex_lock(&psinfo->buf_mutex);
16706cf91b4SChen Gong 	rc = psi->open(psi);
16806cf91b4SChen Gong 	if (rc)
16906cf91b4SChen Gong 		goto out;
17006cf91b4SChen Gong 
171638c1fd3SMatthew Garrett 	while ((size = psi->read(&id, &type, &time, psi)) > 0) {
1728d38d74bSChen Gong 		if (pstore_mkfile(type, psi->name, id, psi->buf, (size_t)size,
173638c1fd3SMatthew Garrett 				  time, psi))
174ca01d6ddSTony Luck 			failed++;
175ca01d6ddSTony Luck 	}
17606cf91b4SChen Gong 	psi->close(psi);
17706cf91b4SChen Gong out:
178ca01d6ddSTony Luck 	mutex_unlock(&psinfo->buf_mutex);
179ca01d6ddSTony Luck 
180ca01d6ddSTony Luck 	if (failed)
181ca01d6ddSTony Luck 		printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n",
182ca01d6ddSTony Luck 		       failed, psi->name);
183ca01d6ddSTony Luck }
184ca01d6ddSTony Luck 
185ca01d6ddSTony Luck /*
186ca01d6ddSTony Luck  * Call platform driver to write a record to the
187ca01d6ddSTony Luck  * persistent store.
188ca01d6ddSTony Luck  */
189ca01d6ddSTony Luck int pstore_write(enum pstore_type_id type, char *buf, size_t size)
190ca01d6ddSTony Luck {
191ca01d6ddSTony Luck 	u64	id;
192ca01d6ddSTony Luck 
193ca01d6ddSTony Luck 	if (!psinfo)
194ca01d6ddSTony Luck 		return -ENODEV;
195ca01d6ddSTony Luck 
196ca01d6ddSTony Luck 	if (size > psinfo->bufsize)
197ca01d6ddSTony Luck 		return -EFBIG;
198ca01d6ddSTony Luck 
199ca01d6ddSTony Luck 	mutex_lock(&psinfo->buf_mutex);
200ca01d6ddSTony Luck 	memcpy(psinfo->buf, buf, size);
201*56280682SMatthew Garrett 	id = psinfo->write(type, 0, size, psinfo);
202ca01d6ddSTony Luck 	if (pstore_is_mounted())
203ca01d6ddSTony Luck 		pstore_mkfile(PSTORE_TYPE_DMESG, psinfo->name, id, psinfo->buf,
204638c1fd3SMatthew Garrett 			      size, CURRENT_TIME, psinfo);
205ca01d6ddSTony Luck 	mutex_unlock(&psinfo->buf_mutex);
206ca01d6ddSTony Luck 
207ca01d6ddSTony Luck 	return 0;
208ca01d6ddSTony Luck }
209ca01d6ddSTony Luck EXPORT_SYMBOL_GPL(pstore_write);
210