blob: 49ff1de2178aabe6d8e29ab79f703d0752c20256 [file] [log] [blame]
Tony Luckca01d6d2010-12-28 14:25:21 -08001/*
2 * Persistent Storage - platform driver interface parts.
3 *
4 * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/atomic.h>
21#include <linux/types.h>
22#include <linux/errno.h>
23#include <linux/init.h>
24#include <linux/kmsg_dump.h>
25#include <linux/module.h>
26#include <linux/pstore.h>
27#include <linux/string.h>
28#include <linux/slab.h>
29#include <linux/uaccess.h>
30
31#include "internal.h"
32
33/*
34 * pstore_lock just protects "psinfo" during
35 * calls to pstore_register()
36 */
37static DEFINE_SPINLOCK(pstore_lock);
38static struct pstore_info *psinfo;
39
Luck, Tony366f7e72011-03-18 15:33:43 -070040/* How much of the console log to snapshot */
Tony Luckca01d6d2010-12-28 14:25:21 -080041static unsigned long kmsg_bytes = 10240;
42
Luck, Tony366f7e72011-03-18 15:33:43 -070043void pstore_set_kmsg_bytes(int bytes)
Tony Luckca01d6d2010-12-28 14:25:21 -080044{
Luck, Tony366f7e72011-03-18 15:33:43 -070045 kmsg_bytes = bytes;
Tony Luckca01d6d2010-12-28 14:25:21 -080046}
47
Tony Luckca01d6d2010-12-28 14:25:21 -080048/* Tag each group of saved records with a sequence number */
49static int oopscount;
50
Tony Luck9f6af272011-03-22 16:01:49 -070051static char *reason_str[] = {
52 "Oops", "Panic", "Kexec", "Restart", "Halt", "Poweroff", "Emergency"
53};
54
Tony Luckca01d6d2010-12-28 14:25:21 -080055/*
56 * callback from kmsg_dump. (s2,l2) has the most recently
57 * written bytes, older bytes are in (s1,l1). Save as much
58 * as we can from the end of the buffer.
59 */
60static void pstore_dump(struct kmsg_dumper *dumper,
61 enum kmsg_dump_reason reason,
62 const char *s1, unsigned long l1,
63 const char *s2, unsigned long l2)
64{
65 unsigned long s1_start, s2_start;
66 unsigned long l1_cpy, l2_cpy;
67 unsigned long size, total = 0;
Tony Luck9f6af272011-03-22 16:01:49 -070068 char *dst, *why;
Tony Luckca01d6d2010-12-28 14:25:21 -080069 u64 id;
Matthew Garrettb94fdd02011-07-21 16:57:54 -040070 int hsize;
71 unsigned int part = 1;
Tony Luckca01d6d2010-12-28 14:25:21 -080072
Tony Luck9f6af272011-03-22 16:01:49 -070073 if (reason < ARRAY_SIZE(reason_str))
74 why = reason_str[reason];
75 else
76 why = "Unknown";
77
Tony Luckca01d6d2010-12-28 14:25:21 -080078 mutex_lock(&psinfo->buf_mutex);
79 oopscount++;
80 while (total < kmsg_bytes) {
81 dst = psinfo->buf;
Matthew Garrett56280682011-07-21 16:57:53 -040082 hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part);
Tony Luckca01d6d2010-12-28 14:25:21 -080083 size = psinfo->bufsize - hsize;
84 dst += hsize;
85
86 l2_cpy = min(l2, size);
87 l1_cpy = min(l1, size - l2_cpy);
88
89 if (l1_cpy + l2_cpy == 0)
90 break;
91
92 s2_start = l2 - l2_cpy;
93 s1_start = l1 - l1_cpy;
94
95 memcpy(dst, s1 + s1_start, l1_cpy);
96 memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy);
97
Matthew Garrett56280682011-07-21 16:57:53 -040098 id = psinfo->write(PSTORE_TYPE_DMESG, part,
99 hsize + l1_cpy + l2_cpy, psinfo);
Tony Luck9f6af272011-03-22 16:01:49 -0700100 if (reason == KMSG_DUMP_OOPS && pstore_is_mounted())
Tony Luckca01d6d2010-12-28 14:25:21 -0800101 pstore_mkfile(PSTORE_TYPE_DMESG, psinfo->name, id,
102 psinfo->buf, hsize + l1_cpy + l2_cpy,
Matthew Garrett638c1fd2011-07-21 16:57:52 -0400103 CURRENT_TIME, psinfo);
Tony Luckca01d6d2010-12-28 14:25:21 -0800104 l1 -= l1_cpy;
105 l2 -= l2_cpy;
106 total += l1_cpy + l2_cpy;
Matthew Garrett56280682011-07-21 16:57:53 -0400107 part++;
Tony Luckca01d6d2010-12-28 14:25:21 -0800108 }
109 mutex_unlock(&psinfo->buf_mutex);
110}
111
112static struct kmsg_dumper pstore_dumper = {
113 .dump = pstore_dump,
114};
115
116/*
117 * platform specific persistent storage driver registers with
118 * us here. If pstore is already mounted, call the platform
119 * read function right away to populate the file system. If not
120 * then the pstore mount code will call us later to fill out
121 * the file system.
122 *
123 * Register with kmsg_dump to save last part of console log on panic.
124 */
125int pstore_register(struct pstore_info *psi)
126{
127 struct module *owner = psi->owner;
128
129 spin_lock(&pstore_lock);
130 if (psinfo) {
131 spin_unlock(&pstore_lock);
132 return -EBUSY;
133 }
134 psinfo = psi;
135 spin_unlock(&pstore_lock);
136
137 if (owner && !try_module_get(owner)) {
138 psinfo = NULL;
139 return -EINVAL;
140 }
141
142 if (pstore_is_mounted())
143 pstore_get_records();
144
145 kmsg_dump_register(&pstore_dumper);
146
147 return 0;
148}
149EXPORT_SYMBOL_GPL(pstore_register);
150
151/*
152 * Read all the records from the persistent store. Create and
153 * file files in our filesystem.
154 */
155void pstore_get_records(void)
156{
157 struct pstore_info *psi = psinfo;
Chen Gong8d38d742011-05-16 10:58:57 -0700158 ssize_t size;
Tony Luckca01d6d2010-12-28 14:25:21 -0800159 u64 id;
160 enum pstore_type_id type;
161 struct timespec time;
Chen Gong06cf91b2011-05-16 11:00:27 -0700162 int failed = 0, rc;
Tony Luckca01d6d2010-12-28 14:25:21 -0800163
164 if (!psi)
165 return;
166
167 mutex_lock(&psinfo->buf_mutex);
Chen Gong06cf91b2011-05-16 11:00:27 -0700168 rc = psi->open(psi);
169 if (rc)
170 goto out;
171
Matthew Garrett638c1fd2011-07-21 16:57:52 -0400172 while ((size = psi->read(&id, &type, &time, psi)) > 0) {
Chen Gong8d38d742011-05-16 10:58:57 -0700173 if (pstore_mkfile(type, psi->name, id, psi->buf, (size_t)size,
Matthew Garrett638c1fd2011-07-21 16:57:52 -0400174 time, psi))
Tony Luckca01d6d2010-12-28 14:25:21 -0800175 failed++;
176 }
Chen Gong06cf91b2011-05-16 11:00:27 -0700177 psi->close(psi);
178out:
Tony Luckca01d6d2010-12-28 14:25:21 -0800179 mutex_unlock(&psinfo->buf_mutex);
180
181 if (failed)
182 printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n",
183 failed, psi->name);
184}
185
186/*
187 * Call platform driver to write a record to the
188 * persistent store.
189 */
190int pstore_write(enum pstore_type_id type, char *buf, size_t size)
191{
192 u64 id;
193
194 if (!psinfo)
195 return -ENODEV;
196
197 if (size > psinfo->bufsize)
198 return -EFBIG;
199
200 mutex_lock(&psinfo->buf_mutex);
201 memcpy(psinfo->buf, buf, size);
Matthew Garrett56280682011-07-21 16:57:53 -0400202 id = psinfo->write(type, 0, size, psinfo);
Tony Luckca01d6d2010-12-28 14:25:21 -0800203 if (pstore_is_mounted())
204 pstore_mkfile(PSTORE_TYPE_DMESG, psinfo->name, id, psinfo->buf,
Matthew Garrett638c1fd2011-07-21 16:57:52 -0400205 size, CURRENT_TIME, psinfo);
Tony Luckca01d6d2010-12-28 14:25:21 -0800206 mutex_unlock(&psinfo->buf_mutex);
207
208 return 0;
209}
210EXPORT_SYMBOL_GPL(pstore_write);