pstore: pass reason to backend write callback
[linux-2.6-block.git] / fs / pstore / platform.c
CommitLineData
ca01d6dd
TL
1/*
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>
6dda9266 28#include <linux/timer.h>
ca01d6dd
TL
29#include <linux/slab.h>
30#include <linux/uaccess.h>
abd4d558 31#include <linux/hardirq.h>
6dda9266 32#include <linux/workqueue.h>
ca01d6dd
TL
33
34#include "internal.h"
35
6dda9266
LT
36/*
37 * 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
ca01d6dd
TL
51/*
52 * pstore_lock just protects "psinfo" during
53 * calls to pstore_register()
54 */
55static DEFINE_SPINLOCK(pstore_lock);
56static struct pstore_info *psinfo;
57
dee28e72
MG
58static char *backend;
59
366f7e7a 60/* How much of the console log to snapshot */
ca01d6dd
TL
61static unsigned long kmsg_bytes = 10240;
62
366f7e7a 63void pstore_set_kmsg_bytes(int bytes)
ca01d6dd 64{
366f7e7a 65 kmsg_bytes = bytes;
ca01d6dd
TL
66}
67
ca01d6dd
TL
68/* Tag each group of saved records with a sequence number */
69static int oopscount;
70
9f6af27f
TL
71static char *reason_str[] = {
72 "Oops", "Panic", "Kexec", "Restart", "Halt", "Poweroff", "Emergency"
73};
74
ca01d6dd
TL
75/*
76 * callback from kmsg_dump. (s2,l2) has the most recently
77 * written bytes, older bytes are in (s1,l1). Save as much
78 * as we can from the end of the buffer.
79 */
80static void pstore_dump(struct kmsg_dumper *dumper,
81 enum kmsg_dump_reason reason,
82 const char *s1, unsigned long l1,
83 const char *s2, unsigned long l2)
84{
85 unsigned long s1_start, s2_start;
86 unsigned long l1_cpy, l2_cpy;
87 unsigned long size, total = 0;
9f6af27f 88 char *dst, *why;
ca01d6dd 89 u64 id;
b238b8fa 90 int hsize, ret;
b94fdd07 91 unsigned int part = 1;
abd4d558
DZ
92 unsigned long flags = 0;
93 int is_locked = 0;
ca01d6dd 94
9f6af27f
TL
95 if (reason < ARRAY_SIZE(reason_str))
96 why = reason_str[reason];
97 else
98 why = "Unknown";
99
abd4d558
DZ
100 if (in_nmi()) {
101 is_locked = spin_trylock(&psinfo->buf_lock);
102 if (!is_locked)
103 pr_err("pstore dump routine blocked in NMI, may corrupt error record\n");
104 } else
105 spin_lock_irqsave(&psinfo->buf_lock, flags);
ca01d6dd
TL
106 oopscount++;
107 while (total < kmsg_bytes) {
108 dst = psinfo->buf;
56280682 109 hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part);
ca01d6dd
TL
110 size = psinfo->bufsize - hsize;
111 dst += hsize;
112
113 l2_cpy = min(l2, size);
114 l1_cpy = min(l1, size - l2_cpy);
115
116 if (l1_cpy + l2_cpy == 0)
117 break;
118
119 s2_start = l2 - l2_cpy;
120 s1_start = l1 - l1_cpy;
121
122 memcpy(dst, s1 + s1_start, l1_cpy);
123 memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy);
124
3d6d8d20 125 ret = psinfo->write(PSTORE_TYPE_DMESG, reason, &id, part,
56280682 126 hsize + l1_cpy + l2_cpy, psinfo);
b238b8fa 127 if (ret == 0 && reason == KMSG_DUMP_OOPS && pstore_is_mounted())
6dda9266 128 pstore_new_entry = 1;
ca01d6dd
TL
129 l1 -= l1_cpy;
130 l2 -= l2_cpy;
131 total += l1_cpy + l2_cpy;
56280682 132 part++;
ca01d6dd 133 }
abd4d558
DZ
134 if (in_nmi()) {
135 if (is_locked)
136 spin_unlock(&psinfo->buf_lock);
137 } else
138 spin_unlock_irqrestore(&psinfo->buf_lock, flags);
ca01d6dd
TL
139}
140
141static struct kmsg_dumper pstore_dumper = {
142 .dump = pstore_dump,
143};
144
145/*
146 * platform specific persistent storage driver registers with
147 * us here. If pstore is already mounted, call the platform
148 * read function right away to populate the file system. If not
149 * then the pstore mount code will call us later to fill out
150 * the file system.
151 *
152 * Register with kmsg_dump to save last part of console log on panic.
153 */
154int pstore_register(struct pstore_info *psi)
155{
156 struct module *owner = psi->owner;
157
158 spin_lock(&pstore_lock);
159 if (psinfo) {
160 spin_unlock(&pstore_lock);
161 return -EBUSY;
162 }
dee28e72
MG
163
164 if (backend && strcmp(backend, psi->name)) {
165 spin_unlock(&pstore_lock);
166 return -EINVAL;
167 }
168
ca01d6dd 169 psinfo = psi;
f6f82851 170 mutex_init(&psinfo->read_mutex);
ca01d6dd
TL
171 spin_unlock(&pstore_lock);
172
173 if (owner && !try_module_get(owner)) {
174 psinfo = NULL;
175 return -EINVAL;
176 }
177
178 if (pstore_is_mounted())
6dda9266 179 pstore_get_records(0);
ca01d6dd
TL
180
181 kmsg_dump_register(&pstore_dumper);
182
6dda9266
LT
183 pstore_timer.expires = jiffies + PSTORE_INTERVAL;
184 add_timer(&pstore_timer);
185
ca01d6dd
TL
186 return 0;
187}
188EXPORT_SYMBOL_GPL(pstore_register);
189
190/*
6dda9266
LT
191 * Read all the records from the persistent store. Create
192 * files in our filesystem. Don't warn about -EEXIST errors
193 * when we are re-scanning the backing store looking to add new
194 * error records.
ca01d6dd 195 */
6dda9266 196void pstore_get_records(int quiet)
ca01d6dd
TL
197{
198 struct pstore_info *psi = psinfo;
f6f82851 199 char *buf = NULL;
8d38d74b 200 ssize_t size;
ca01d6dd
TL
201 u64 id;
202 enum pstore_type_id type;
203 struct timespec time;
06cf91b4 204 int failed = 0, rc;
ca01d6dd
TL
205
206 if (!psi)
207 return;
208
f6f82851 209 mutex_lock(&psi->read_mutex);
06cf91b4
CG
210 rc = psi->open(psi);
211 if (rc)
212 goto out;
213
f6f82851
KC
214 while ((size = psi->read(&id, &type, &time, &buf, psi)) > 0) {
215 rc = pstore_mkfile(type, psi->name, id, buf, (size_t)size,
6dda9266 216 time, psi);
f6f82851
KC
217 kfree(buf);
218 buf = NULL;
6dda9266 219 if (rc && (rc != -EEXIST || !quiet))
ca01d6dd
TL
220 failed++;
221 }
06cf91b4
CG
222 psi->close(psi);
223out:
f6f82851 224 mutex_unlock(&psi->read_mutex);
ca01d6dd
TL
225
226 if (failed)
227 printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n",
228 failed, psi->name);
229}
230
6dda9266
LT
231static void pstore_dowork(struct work_struct *work)
232{
233 pstore_get_records(1);
234}
235
236static void pstore_timefunc(unsigned long dummy)
237{
238 if (pstore_new_entry) {
239 pstore_new_entry = 0;
240 schedule_work(&pstore_work);
241 }
242
243 mod_timer(&pstore_timer, jiffies + PSTORE_INTERVAL);
244}
245
dee28e72
MG
246module_param(backend, charp, 0444);
247MODULE_PARM_DESC(backend, "Pstore backend to use");