blob: 82c585f715e341c36666fdc378f75408e3ea3d14 [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>
Luck, Tony6dda9262011-08-11 15:14:39 -070028#include <linux/timer.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080029#include <linux/slab.h>
30#include <linux/uaccess.h>
Don Zickusabd4d552011-08-12 10:54:51 -070031#include <linux/hardirq.h>
Luck, Tony6dda9262011-08-11 15:14:39 -070032#include <linux/workqueue.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080033
34#include "internal.h"
35
36/*
Luck, Tony6dda9262011-08-11 15:14:39 -070037 * We defer making "oops" entries appear in pstore - see
38 * whether the system is actually still running well enough
39 * to let someone see the entry
40 */
41#define PSTORE_INTERVAL (60 * HZ)
42
43static int pstore_new_entry;
44
45static void pstore_timefunc(unsigned long);
46static DEFINE_TIMER(pstore_timer, pstore_timefunc, 0, 0);
47
48static void pstore_dowork(struct work_struct *);
49static DECLARE_WORK(pstore_work, pstore_dowork);
50
51/*
Tony Luckca01d6d2010-12-28 14:25:21 -080052 * pstore_lock just protects "psinfo" during
53 * calls to pstore_register()
54 */
55static DEFINE_SPINLOCK(pstore_lock);
56static struct pstore_info *psinfo;
57
Matthew Garrettdee28e72011-07-21 16:57:55 -040058static char *backend;
59
Luck, Tony366f7e72011-03-18 15:33:43 -070060/* How much of the console log to snapshot */
Tony Luckca01d6d2010-12-28 14:25:21 -080061static unsigned long kmsg_bytes = 10240;
62
Luck, Tony366f7e72011-03-18 15:33:43 -070063void pstore_set_kmsg_bytes(int bytes)
Tony Luckca01d6d2010-12-28 14:25:21 -080064{
Luck, Tony366f7e72011-03-18 15:33:43 -070065 kmsg_bytes = bytes;
Tony Luckca01d6d2010-12-28 14:25:21 -080066}
67
Tony Luckca01d6d2010-12-28 14:25:21 -080068/* Tag each group of saved records with a sequence number */
69static int oopscount;
70
Seiji Aguchi381b8722012-03-16 15:36:59 -070071static const char *get_reason_str(enum kmsg_dump_reason reason)
72{
73 switch (reason) {
74 case KMSG_DUMP_PANIC:
75 return "Panic";
76 case KMSG_DUMP_OOPS:
77 return "Oops";
78 case KMSG_DUMP_EMERG:
79 return "Emergency";
80 case KMSG_DUMP_RESTART:
81 return "Restart";
82 case KMSG_DUMP_HALT:
83 return "Halt";
84 case KMSG_DUMP_POWEROFF:
85 return "Poweroff";
86 default:
87 return "Unknown";
88 }
89}
Tony Luck9f6af272011-03-22 16:01:49 -070090
Tony Luckca01d6d2010-12-28 14:25:21 -080091/*
92 * callback from kmsg_dump. (s2,l2) has the most recently
93 * written bytes, older bytes are in (s1,l1). Save as much
94 * as we can from the end of the buffer.
95 */
96static void pstore_dump(struct kmsg_dumper *dumper,
97 enum kmsg_dump_reason reason,
98 const char *s1, unsigned long l1,
99 const char *s2, unsigned long l2)
100{
101 unsigned long s1_start, s2_start;
102 unsigned long l1_cpy, l2_cpy;
103 unsigned long size, total = 0;
Seiji Aguchi381b8722012-03-16 15:36:59 -0700104 char *dst;
105 const char *why;
Tony Luckca01d6d2010-12-28 14:25:21 -0800106 u64 id;
Chen Gongb238b8f2011-10-12 09:17:24 -0700107 int hsize, ret;
Matthew Garrettb94fdd02011-07-21 16:57:54 -0400108 unsigned int part = 1;
Don Zickusabd4d552011-08-12 10:54:51 -0700109 unsigned long flags = 0;
110 int is_locked = 0;
Tony Luckca01d6d2010-12-28 14:25:21 -0800111
Seiji Aguchi381b8722012-03-16 15:36:59 -0700112 why = get_reason_str(reason);
Tony Luck9f6af272011-03-22 16:01:49 -0700113
Don Zickusabd4d552011-08-12 10:54:51 -0700114 if (in_nmi()) {
115 is_locked = spin_trylock(&psinfo->buf_lock);
116 if (!is_locked)
117 pr_err("pstore dump routine blocked in NMI, may corrupt error record\n");
118 } else
119 spin_lock_irqsave(&psinfo->buf_lock, flags);
Tony Luckca01d6d2010-12-28 14:25:21 -0800120 oopscount++;
121 while (total < kmsg_bytes) {
122 dst = psinfo->buf;
Matthew Garrett56280682011-07-21 16:57:53 -0400123 hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part);
Tony Luckca01d6d2010-12-28 14:25:21 -0800124 size = psinfo->bufsize - hsize;
125 dst += hsize;
126
127 l2_cpy = min(l2, size);
128 l1_cpy = min(l1, size - l2_cpy);
129
130 if (l1_cpy + l2_cpy == 0)
131 break;
132
133 s2_start = l2 - l2_cpy;
134 s1_start = l1 - l1_cpy;
135
136 memcpy(dst, s1 + s1_start, l1_cpy);
137 memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy);
138
Kees Cook3d6d8d22011-11-17 13:13:29 -0800139 ret = psinfo->write(PSTORE_TYPE_DMESG, reason, &id, part,
Matthew Garrett56280682011-07-21 16:57:53 -0400140 hsize + l1_cpy + l2_cpy, psinfo);
Chen Gongb238b8f2011-10-12 09:17:24 -0700141 if (ret == 0 && reason == KMSG_DUMP_OOPS && pstore_is_mounted())
Luck, Tony6dda9262011-08-11 15:14:39 -0700142 pstore_new_entry = 1;
Tony Luckca01d6d2010-12-28 14:25:21 -0800143 l1 -= l1_cpy;
144 l2 -= l2_cpy;
145 total += l1_cpy + l2_cpy;
Matthew Garrett56280682011-07-21 16:57:53 -0400146 part++;
Tony Luckca01d6d2010-12-28 14:25:21 -0800147 }
Don Zickusabd4d552011-08-12 10:54:51 -0700148 if (in_nmi()) {
149 if (is_locked)
150 spin_unlock(&psinfo->buf_lock);
151 } else
152 spin_unlock_irqrestore(&psinfo->buf_lock, flags);
Tony Luckca01d6d2010-12-28 14:25:21 -0800153}
154
155static struct kmsg_dumper pstore_dumper = {
156 .dump = pstore_dump,
157};
158
159/*
160 * platform specific persistent storage driver registers with
161 * us here. If pstore is already mounted, call the platform
162 * read function right away to populate the file system. If not
163 * then the pstore mount code will call us later to fill out
164 * the file system.
165 *
166 * Register with kmsg_dump to save last part of console log on panic.
167 */
168int pstore_register(struct pstore_info *psi)
169{
170 struct module *owner = psi->owner;
171
172 spin_lock(&pstore_lock);
173 if (psinfo) {
174 spin_unlock(&pstore_lock);
175 return -EBUSY;
176 }
Matthew Garrettdee28e72011-07-21 16:57:55 -0400177
178 if (backend && strcmp(backend, psi->name)) {
179 spin_unlock(&pstore_lock);
180 return -EINVAL;
181 }
182
Tony Luckca01d6d2010-12-28 14:25:21 -0800183 psinfo = psi;
Kees Cookf6f82852011-11-17 12:58:07 -0800184 mutex_init(&psinfo->read_mutex);
Tony Luckca01d6d2010-12-28 14:25:21 -0800185 spin_unlock(&pstore_lock);
186
187 if (owner && !try_module_get(owner)) {
188 psinfo = NULL;
189 return -EINVAL;
190 }
191
192 if (pstore_is_mounted())
Luck, Tony6dda9262011-08-11 15:14:39 -0700193 pstore_get_records(0);
Tony Luckca01d6d2010-12-28 14:25:21 -0800194
195 kmsg_dump_register(&pstore_dumper);
196
Luck, Tony6dda9262011-08-11 15:14:39 -0700197 pstore_timer.expires = jiffies + PSTORE_INTERVAL;
198 add_timer(&pstore_timer);
199
Tony Luckca01d6d2010-12-28 14:25:21 -0800200 return 0;
201}
202EXPORT_SYMBOL_GPL(pstore_register);
203
204/*
Luck, Tony6dda9262011-08-11 15:14:39 -0700205 * Read all the records from the persistent store. Create
206 * files in our filesystem. Don't warn about -EEXIST errors
207 * when we are re-scanning the backing store looking to add new
208 * error records.
Tony Luckca01d6d2010-12-28 14:25:21 -0800209 */
Luck, Tony6dda9262011-08-11 15:14:39 -0700210void pstore_get_records(int quiet)
Tony Luckca01d6d2010-12-28 14:25:21 -0800211{
212 struct pstore_info *psi = psinfo;
Kees Cookf6f82852011-11-17 12:58:07 -0800213 char *buf = NULL;
Chen Gong8d38d742011-05-16 10:58:57 -0700214 ssize_t size;
Tony Luckca01d6d2010-12-28 14:25:21 -0800215 u64 id;
216 enum pstore_type_id type;
217 struct timespec time;
Chen Gong06cf91b2011-05-16 11:00:27 -0700218 int failed = 0, rc;
Tony Luckca01d6d2010-12-28 14:25:21 -0800219
220 if (!psi)
221 return;
222
Kees Cookf6f82852011-11-17 12:58:07 -0800223 mutex_lock(&psi->read_mutex);
Kees Cook2174f6d2011-11-18 13:49:00 -0800224 if (psi->open && psi->open(psi))
Chen Gong06cf91b2011-05-16 11:00:27 -0700225 goto out;
226
Kees Cookf6f82852011-11-17 12:58:07 -0800227 while ((size = psi->read(&id, &type, &time, &buf, psi)) > 0) {
228 rc = pstore_mkfile(type, psi->name, id, buf, (size_t)size,
Luck, Tony6dda9262011-08-11 15:14:39 -0700229 time, psi);
Kees Cookf6f82852011-11-17 12:58:07 -0800230 kfree(buf);
231 buf = NULL;
Luck, Tony6dda9262011-08-11 15:14:39 -0700232 if (rc && (rc != -EEXIST || !quiet))
Tony Luckca01d6d2010-12-28 14:25:21 -0800233 failed++;
234 }
Kees Cook2174f6d2011-11-18 13:49:00 -0800235 if (psi->close)
236 psi->close(psi);
Chen Gong06cf91b2011-05-16 11:00:27 -0700237out:
Kees Cookf6f82852011-11-17 12:58:07 -0800238 mutex_unlock(&psi->read_mutex);
Tony Luckca01d6d2010-12-28 14:25:21 -0800239
240 if (failed)
241 printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n",
242 failed, psi->name);
243}
244
Luck, Tony6dda9262011-08-11 15:14:39 -0700245static void pstore_dowork(struct work_struct *work)
246{
247 pstore_get_records(1);
248}
249
250static void pstore_timefunc(unsigned long dummy)
251{
252 if (pstore_new_entry) {
253 pstore_new_entry = 0;
254 schedule_work(&pstore_work);
255 }
256
257 mod_timer(&pstore_timer, jiffies + PSTORE_INTERVAL);
258}
259
Matthew Garrettdee28e72011-07-21 16:57:55 -0400260module_param(backend, charp, 0444);
261MODULE_PARM_DESC(backend, "Pstore backend to use");