blob: be4614f24a2ff6fb99f04d052c0b3f5a4a6ee4fb [file] [log] [blame]
Tony Luckca01d6d2010-12-28 14:25:21 -08001/*
2 * Persistent Storage - platform driver interface parts.
3 *
Anton Vorontsovf29e5952012-05-26 06:20:19 -07004 * Copyright (C) 2007-2008 Google, Inc.
Tony Luckca01d6d2010-12-28 14:25:21 -08005 * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/atomic.h>
22#include <linux/types.h>
23#include <linux/errno.h>
24#include <linux/init.h>
25#include <linux/kmsg_dump.h>
Anton Vorontsovf29e5952012-05-26 06:20:19 -070026#include <linux/console.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080027#include <linux/module.h>
28#include <linux/pstore.h>
29#include <linux/string.h>
Luck, Tony6dda9262011-08-11 15:14:39 -070030#include <linux/timer.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080031#include <linux/slab.h>
32#include <linux/uaccess.h>
Don Zickusabd4d552011-08-12 10:54:51 -070033#include <linux/hardirq.h>
Anton Vorontsova3f5f072012-05-26 06:20:28 -070034#include <linux/jiffies.h>
Luck, Tony6dda9262011-08-11 15:14:39 -070035#include <linux/workqueue.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080036
37#include "internal.h"
38
39/*
Luck, Tony6dda9262011-08-11 15:14:39 -070040 * We defer making "oops" entries appear in pstore - see
41 * whether the system is actually still running well enough
42 * to let someone see the entry
43 */
Anton Vorontsov521f72882012-05-26 06:20:29 -070044static int pstore_update_ms = -1;
Anton Vorontsova3f5f072012-05-26 06:20:28 -070045module_param_named(update_ms, pstore_update_ms, int, 0600);
46MODULE_PARM_DESC(update_ms, "milliseconds before pstore updates its content "
Anton Vorontsov521f72882012-05-26 06:20:29 -070047 "(default is -1, which means runtime updates are disabled; "
48 "enabling this option is not safe, it may lead to further "
49 "corruption on Oopses)");
Luck, Tony6dda9262011-08-11 15:14:39 -070050
51static int pstore_new_entry;
52
53static void pstore_timefunc(unsigned long);
54static DEFINE_TIMER(pstore_timer, pstore_timefunc, 0, 0);
55
56static void pstore_dowork(struct work_struct *);
57static DECLARE_WORK(pstore_work, pstore_dowork);
58
59/*
Tony Luckca01d6d2010-12-28 14:25:21 -080060 * pstore_lock just protects "psinfo" during
61 * calls to pstore_register()
62 */
63static DEFINE_SPINLOCK(pstore_lock);
64static struct pstore_info *psinfo;
65
Matthew Garrettdee28e72011-07-21 16:57:55 -040066static char *backend;
67
Luck, Tony366f7e72011-03-18 15:33:43 -070068/* How much of the console log to snapshot */
Tony Luckca01d6d2010-12-28 14:25:21 -080069static unsigned long kmsg_bytes = 10240;
70
Luck, Tony366f7e72011-03-18 15:33:43 -070071void pstore_set_kmsg_bytes(int bytes)
Tony Luckca01d6d2010-12-28 14:25:21 -080072{
Luck, Tony366f7e72011-03-18 15:33:43 -070073 kmsg_bytes = bytes;
Tony Luckca01d6d2010-12-28 14:25:21 -080074}
75
Tony Luckca01d6d2010-12-28 14:25:21 -080076/* Tag each group of saved records with a sequence number */
77static int oopscount;
78
Seiji Aguchi381b8722012-03-16 15:36:59 -070079static const char *get_reason_str(enum kmsg_dump_reason reason)
80{
81 switch (reason) {
82 case KMSG_DUMP_PANIC:
83 return "Panic";
84 case KMSG_DUMP_OOPS:
85 return "Oops";
86 case KMSG_DUMP_EMERG:
87 return "Emergency";
88 case KMSG_DUMP_RESTART:
89 return "Restart";
90 case KMSG_DUMP_HALT:
91 return "Halt";
92 case KMSG_DUMP_POWEROFF:
93 return "Poweroff";
94 default:
95 return "Unknown";
96 }
97}
Tony Luck9f6af272011-03-22 16:01:49 -070098
Tony Luckca01d6d2010-12-28 14:25:21 -080099/*
100 * callback from kmsg_dump. (s2,l2) has the most recently
101 * written bytes, older bytes are in (s1,l1). Save as much
102 * as we can from the end of the buffer.
103 */
104static void pstore_dump(struct kmsg_dumper *dumper,
105 enum kmsg_dump_reason reason,
106 const char *s1, unsigned long l1,
107 const char *s2, unsigned long l2)
108{
109 unsigned long s1_start, s2_start;
110 unsigned long l1_cpy, l2_cpy;
111 unsigned long size, total = 0;
Seiji Aguchi381b8722012-03-16 15:36:59 -0700112 char *dst;
113 const char *why;
Tony Luckca01d6d2010-12-28 14:25:21 -0800114 u64 id;
Chen Gongb238b8f2011-10-12 09:17:24 -0700115 int hsize, ret;
Matthew Garrettb94fdd02011-07-21 16:57:54 -0400116 unsigned int part = 1;
Don Zickusabd4d552011-08-12 10:54:51 -0700117 unsigned long flags = 0;
118 int is_locked = 0;
Tony Luckca01d6d2010-12-28 14:25:21 -0800119
Seiji Aguchi381b8722012-03-16 15:36:59 -0700120 why = get_reason_str(reason);
Tony Luck9f6af272011-03-22 16:01:49 -0700121
Don Zickusabd4d552011-08-12 10:54:51 -0700122 if (in_nmi()) {
123 is_locked = spin_trylock(&psinfo->buf_lock);
124 if (!is_locked)
125 pr_err("pstore dump routine blocked in NMI, may corrupt error record\n");
126 } else
127 spin_lock_irqsave(&psinfo->buf_lock, flags);
Tony Luckca01d6d2010-12-28 14:25:21 -0800128 oopscount++;
129 while (total < kmsg_bytes) {
130 dst = psinfo->buf;
Matthew Garrett56280682011-07-21 16:57:53 -0400131 hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part);
Tony Luckca01d6d2010-12-28 14:25:21 -0800132 size = psinfo->bufsize - hsize;
133 dst += hsize;
134
135 l2_cpy = min(l2, size);
136 l1_cpy = min(l1, size - l2_cpy);
137
138 if (l1_cpy + l2_cpy == 0)
139 break;
140
141 s2_start = l2 - l2_cpy;
142 s1_start = l1 - l1_cpy;
143
144 memcpy(dst, s1 + s1_start, l1_cpy);
145 memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy);
146
Kees Cook3d6d8d22011-11-17 13:13:29 -0800147 ret = psinfo->write(PSTORE_TYPE_DMESG, reason, &id, part,
Matthew Garrett56280682011-07-21 16:57:53 -0400148 hsize + l1_cpy + l2_cpy, psinfo);
Chen Gongb238b8f2011-10-12 09:17:24 -0700149 if (ret == 0 && reason == KMSG_DUMP_OOPS && pstore_is_mounted())
Luck, Tony6dda9262011-08-11 15:14:39 -0700150 pstore_new_entry = 1;
Tony Luckca01d6d2010-12-28 14:25:21 -0800151 l1 -= l1_cpy;
152 l2 -= l2_cpy;
153 total += l1_cpy + l2_cpy;
Matthew Garrett56280682011-07-21 16:57:53 -0400154 part++;
Tony Luckca01d6d2010-12-28 14:25:21 -0800155 }
Don Zickusabd4d552011-08-12 10:54:51 -0700156 if (in_nmi()) {
157 if (is_locked)
158 spin_unlock(&psinfo->buf_lock);
159 } else
160 spin_unlock_irqrestore(&psinfo->buf_lock, flags);
Tony Luckca01d6d2010-12-28 14:25:21 -0800161}
162
163static struct kmsg_dumper pstore_dumper = {
164 .dump = pstore_dump,
165};
166
Anton Vorontsovf29e5952012-05-26 06:20:19 -0700167#ifdef CONFIG_PSTORE_CONSOLE
168static void pstore_console_write(struct console *con, const char *s, unsigned c)
169{
170 const char *e = s + c;
171
172 while (s < e) {
173 unsigned long flags;
174
175 if (c > psinfo->bufsize)
176 c = psinfo->bufsize;
177 spin_lock_irqsave(&psinfo->buf_lock, flags);
178 memcpy(psinfo->buf, s, c);
179 psinfo->write(PSTORE_TYPE_CONSOLE, 0, NULL, 0, c, psinfo);
180 spin_unlock_irqrestore(&psinfo->buf_lock, flags);
181 s += c;
182 c = e - s;
183 }
184}
185
186static struct console pstore_console = {
187 .name = "pstore",
188 .write = pstore_console_write,
189 .flags = CON_PRINTBUFFER | CON_ENABLED | CON_ANYTIME,
190 .index = -1,
191};
192
193static void pstore_register_console(void)
194{
195 register_console(&pstore_console);
196}
197#else
198static void pstore_register_console(void) {}
199#endif
200
Tony Luckca01d6d2010-12-28 14:25:21 -0800201/*
202 * platform specific persistent storage driver registers with
203 * us here. If pstore is already mounted, call the platform
204 * read function right away to populate the file system. If not
205 * then the pstore mount code will call us later to fill out
206 * the file system.
207 *
208 * Register with kmsg_dump to save last part of console log on panic.
209 */
210int pstore_register(struct pstore_info *psi)
211{
212 struct module *owner = psi->owner;
213
214 spin_lock(&pstore_lock);
215 if (psinfo) {
216 spin_unlock(&pstore_lock);
217 return -EBUSY;
218 }
Matthew Garrettdee28e72011-07-21 16:57:55 -0400219
220 if (backend && strcmp(backend, psi->name)) {
221 spin_unlock(&pstore_lock);
222 return -EINVAL;
223 }
224
Tony Luckca01d6d2010-12-28 14:25:21 -0800225 psinfo = psi;
Kees Cookf6f82852011-11-17 12:58:07 -0800226 mutex_init(&psinfo->read_mutex);
Tony Luckca01d6d2010-12-28 14:25:21 -0800227 spin_unlock(&pstore_lock);
228
229 if (owner && !try_module_get(owner)) {
230 psinfo = NULL;
231 return -EINVAL;
232 }
233
234 if (pstore_is_mounted())
Luck, Tony6dda9262011-08-11 15:14:39 -0700235 pstore_get_records(0);
Tony Luckca01d6d2010-12-28 14:25:21 -0800236
237 kmsg_dump_register(&pstore_dumper);
Anton Vorontsovf29e5952012-05-26 06:20:19 -0700238 pstore_register_console();
Tony Luckca01d6d2010-12-28 14:25:21 -0800239
Anton Vorontsova3f5f072012-05-26 06:20:28 -0700240 if (pstore_update_ms >= 0) {
241 pstore_timer.expires = jiffies +
242 msecs_to_jiffies(pstore_update_ms);
243 add_timer(&pstore_timer);
244 }
Luck, Tony6dda9262011-08-11 15:14:39 -0700245
Tony Luckca01d6d2010-12-28 14:25:21 -0800246 return 0;
247}
248EXPORT_SYMBOL_GPL(pstore_register);
249
250/*
Luck, Tony6dda9262011-08-11 15:14:39 -0700251 * Read all the records from the persistent store. Create
252 * files in our filesystem. Don't warn about -EEXIST errors
253 * when we are re-scanning the backing store looking to add new
254 * error records.
Tony Luckca01d6d2010-12-28 14:25:21 -0800255 */
Luck, Tony6dda9262011-08-11 15:14:39 -0700256void pstore_get_records(int quiet)
Tony Luckca01d6d2010-12-28 14:25:21 -0800257{
258 struct pstore_info *psi = psinfo;
Kees Cookf6f82852011-11-17 12:58:07 -0800259 char *buf = NULL;
Chen Gong8d38d742011-05-16 10:58:57 -0700260 ssize_t size;
Tony Luckca01d6d2010-12-28 14:25:21 -0800261 u64 id;
262 enum pstore_type_id type;
263 struct timespec time;
Chen Gong06cf91b2011-05-16 11:00:27 -0700264 int failed = 0, rc;
Tony Luckca01d6d2010-12-28 14:25:21 -0800265
266 if (!psi)
267 return;
268
Kees Cookf6f82852011-11-17 12:58:07 -0800269 mutex_lock(&psi->read_mutex);
Kees Cook2174f6d2011-11-18 13:49:00 -0800270 if (psi->open && psi->open(psi))
Chen Gong06cf91b2011-05-16 11:00:27 -0700271 goto out;
272
Kees Cookf6f82852011-11-17 12:58:07 -0800273 while ((size = psi->read(&id, &type, &time, &buf, psi)) > 0) {
274 rc = pstore_mkfile(type, psi->name, id, buf, (size_t)size,
Luck, Tony6dda9262011-08-11 15:14:39 -0700275 time, psi);
Kees Cookf6f82852011-11-17 12:58:07 -0800276 kfree(buf);
277 buf = NULL;
Luck, Tony6dda9262011-08-11 15:14:39 -0700278 if (rc && (rc != -EEXIST || !quiet))
Tony Luckca01d6d2010-12-28 14:25:21 -0800279 failed++;
280 }
Kees Cook2174f6d2011-11-18 13:49:00 -0800281 if (psi->close)
282 psi->close(psi);
Chen Gong06cf91b2011-05-16 11:00:27 -0700283out:
Kees Cookf6f82852011-11-17 12:58:07 -0800284 mutex_unlock(&psi->read_mutex);
Tony Luckca01d6d2010-12-28 14:25:21 -0800285
286 if (failed)
287 printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n",
288 failed, psi->name);
289}
290
Luck, Tony6dda9262011-08-11 15:14:39 -0700291static void pstore_dowork(struct work_struct *work)
292{
293 pstore_get_records(1);
294}
295
296static void pstore_timefunc(unsigned long dummy)
297{
298 if (pstore_new_entry) {
299 pstore_new_entry = 0;
300 schedule_work(&pstore_work);
301 }
302
Anton Vorontsova3f5f072012-05-26 06:20:28 -0700303 mod_timer(&pstore_timer, jiffies + msecs_to_jiffies(pstore_update_ms));
Luck, Tony6dda9262011-08-11 15:14:39 -0700304}
305
Matthew Garrettdee28e72011-07-21 16:57:55 -0400306module_param(backend, charp, 0444);
307MODULE_PARM_DESC(backend, "Pstore backend to use");