xref: /openbmc/linux/fs/pstore/platform.c (revision 638c1fd3033c76778e6d9975ad8a4a9cdd5b96d9)
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;
819f6af27fSTony Luck 		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*638c1fd3SMatthew Garrett 		id = psinfo->write(PSTORE_TYPE_DMESG, hsize + l1_cpy + l2_cpy,
98*638c1fd3SMatthew Garrett 				   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,
102*638c1fd3SMatthew Garrett 				      CURRENT_TIME, psinfo);
103ca01d6ddSTony Luck 		l1 -= l1_cpy;
104ca01d6ddSTony Luck 		l2 -= l2_cpy;
105ca01d6ddSTony Luck 		total += l1_cpy + l2_cpy;
106ca01d6ddSTony Luck 	}
107ca01d6ddSTony Luck 	mutex_unlock(&psinfo->buf_mutex);
108ca01d6ddSTony Luck }
109ca01d6ddSTony Luck 
110ca01d6ddSTony Luck static struct kmsg_dumper pstore_dumper = {
111ca01d6ddSTony Luck 	.dump = pstore_dump,
112ca01d6ddSTony Luck };
113ca01d6ddSTony Luck 
114ca01d6ddSTony Luck /*
115ca01d6ddSTony Luck  * platform specific persistent storage driver registers with
116ca01d6ddSTony Luck  * us here. If pstore is already mounted, call the platform
117ca01d6ddSTony Luck  * read function right away to populate the file system. If not
118ca01d6ddSTony Luck  * then the pstore mount code will call us later to fill out
119ca01d6ddSTony Luck  * the file system.
120ca01d6ddSTony Luck  *
121ca01d6ddSTony Luck  * Register with kmsg_dump to save last part of console log on panic.
122ca01d6ddSTony Luck  */
123ca01d6ddSTony Luck int pstore_register(struct pstore_info *psi)
124ca01d6ddSTony Luck {
125ca01d6ddSTony Luck 	struct module *owner = psi->owner;
126ca01d6ddSTony Luck 
127ca01d6ddSTony Luck 	spin_lock(&pstore_lock);
128ca01d6ddSTony Luck 	if (psinfo) {
129ca01d6ddSTony Luck 		spin_unlock(&pstore_lock);
130ca01d6ddSTony Luck 		return -EBUSY;
131ca01d6ddSTony Luck 	}
132ca01d6ddSTony Luck 	psinfo = psi;
133ca01d6ddSTony Luck 	spin_unlock(&pstore_lock);
134ca01d6ddSTony Luck 
135ca01d6ddSTony Luck 	if (owner && !try_module_get(owner)) {
136ca01d6ddSTony Luck 		psinfo = NULL;
137ca01d6ddSTony Luck 		return -EINVAL;
138ca01d6ddSTony Luck 	}
139ca01d6ddSTony Luck 
140ca01d6ddSTony Luck 	if (pstore_is_mounted())
141ca01d6ddSTony Luck 		pstore_get_records();
142ca01d6ddSTony Luck 
143ca01d6ddSTony Luck 	kmsg_dump_register(&pstore_dumper);
144ca01d6ddSTony Luck 
145ca01d6ddSTony Luck 	return 0;
146ca01d6ddSTony Luck }
147ca01d6ddSTony Luck EXPORT_SYMBOL_GPL(pstore_register);
148ca01d6ddSTony Luck 
149ca01d6ddSTony Luck /*
150ca01d6ddSTony Luck  * Read all the records from the persistent store. Create and
151ca01d6ddSTony Luck  * file files in our filesystem.
152ca01d6ddSTony Luck  */
153ca01d6ddSTony Luck void pstore_get_records(void)
154ca01d6ddSTony Luck {
155ca01d6ddSTony Luck 	struct pstore_info *psi = psinfo;
1568d38d74bSChen Gong 	ssize_t			size;
157ca01d6ddSTony Luck 	u64			id;
158ca01d6ddSTony Luck 	enum pstore_type_id	type;
159ca01d6ddSTony Luck 	struct timespec		time;
16006cf91b4SChen Gong 	int			failed = 0, rc;
161ca01d6ddSTony Luck 
162ca01d6ddSTony Luck 	if (!psi)
163ca01d6ddSTony Luck 		return;
164ca01d6ddSTony Luck 
165ca01d6ddSTony Luck 	mutex_lock(&psinfo->buf_mutex);
16606cf91b4SChen Gong 	rc = psi->open(psi);
16706cf91b4SChen Gong 	if (rc)
16806cf91b4SChen Gong 		goto out;
16906cf91b4SChen Gong 
170*638c1fd3SMatthew Garrett 	while ((size = psi->read(&id, &type, &time, psi)) > 0) {
1718d38d74bSChen Gong 		if (pstore_mkfile(type, psi->name, id, psi->buf, (size_t)size,
172*638c1fd3SMatthew Garrett 				  time, psi))
173ca01d6ddSTony Luck 			failed++;
174ca01d6ddSTony Luck 	}
17506cf91b4SChen Gong 	psi->close(psi);
17606cf91b4SChen Gong out:
177ca01d6ddSTony Luck 	mutex_unlock(&psinfo->buf_mutex);
178ca01d6ddSTony Luck 
179ca01d6ddSTony Luck 	if (failed)
180ca01d6ddSTony Luck 		printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n",
181ca01d6ddSTony Luck 		       failed, psi->name);
182ca01d6ddSTony Luck }
183ca01d6ddSTony Luck 
184ca01d6ddSTony Luck /*
185ca01d6ddSTony Luck  * Call platform driver to write a record to the
186ca01d6ddSTony Luck  * persistent store.
187ca01d6ddSTony Luck  */
188ca01d6ddSTony Luck int pstore_write(enum pstore_type_id type, char *buf, size_t size)
189ca01d6ddSTony Luck {
190ca01d6ddSTony Luck 	u64	id;
191ca01d6ddSTony Luck 
192ca01d6ddSTony Luck 	if (!psinfo)
193ca01d6ddSTony Luck 		return -ENODEV;
194ca01d6ddSTony Luck 
195ca01d6ddSTony Luck 	if (size > psinfo->bufsize)
196ca01d6ddSTony Luck 		return -EFBIG;
197ca01d6ddSTony Luck 
198ca01d6ddSTony Luck 	mutex_lock(&psinfo->buf_mutex);
199ca01d6ddSTony Luck 	memcpy(psinfo->buf, buf, size);
200*638c1fd3SMatthew Garrett 	id = psinfo->write(type, size, psinfo);
201ca01d6ddSTony Luck 	if (pstore_is_mounted())
202ca01d6ddSTony Luck 		pstore_mkfile(PSTORE_TYPE_DMESG, psinfo->name, id, psinfo->buf,
203*638c1fd3SMatthew Garrett 			      size, CURRENT_TIME, psinfo);
204ca01d6ddSTony Luck 	mutex_unlock(&psinfo->buf_mutex);
205ca01d6ddSTony Luck 
206ca01d6ddSTony Luck 	return 0;
207ca01d6ddSTony Luck }
208ca01d6ddSTony Luck EXPORT_SYMBOL_GPL(pstore_write);
209