pstore/platform: Disable automatic updates by default
[firefly-linux-kernel-4.4.55.git] / fs / pstore / platform.c
1 /*
2  * Persistent Storage - platform driver interface parts.
3  *
4  * Copyright (C) 2007-2008 Google, Inc.
5  * 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>
26 #include <linux/console.h>
27 #include <linux/module.h>
28 #include <linux/pstore.h>
29 #include <linux/string.h>
30 #include <linux/timer.h>
31 #include <linux/slab.h>
32 #include <linux/uaccess.h>
33 #include <linux/hardirq.h>
34 #include <linux/jiffies.h>
35 #include <linux/workqueue.h>
36
37 #include "internal.h"
38
39 /*
40  * 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  */
44 static int pstore_update_ms = -1;
45 module_param_named(update_ms, pstore_update_ms, int, 0600);
46 MODULE_PARM_DESC(update_ms, "milliseconds before pstore updates its content "
47                  "(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)");
50
51 static int pstore_new_entry;
52
53 static void pstore_timefunc(unsigned long);
54 static DEFINE_TIMER(pstore_timer, pstore_timefunc, 0, 0);
55
56 static void pstore_dowork(struct work_struct *);
57 static DECLARE_WORK(pstore_work, pstore_dowork);
58
59 /*
60  * pstore_lock just protects "psinfo" during
61  * calls to pstore_register()
62  */
63 static DEFINE_SPINLOCK(pstore_lock);
64 static struct pstore_info *psinfo;
65
66 static char *backend;
67
68 /* How much of the console log to snapshot */
69 static unsigned long kmsg_bytes = 10240;
70
71 void pstore_set_kmsg_bytes(int bytes)
72 {
73         kmsg_bytes = bytes;
74 }
75
76 /* Tag each group of saved records with a sequence number */
77 static int      oopscount;
78
79 static 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 }
98
99 /*
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  */
104 static 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;
112         char            *dst;
113         const char      *why;
114         u64             id;
115         int             hsize, ret;
116         unsigned int    part = 1;
117         unsigned long   flags = 0;
118         int             is_locked = 0;
119
120         why = get_reason_str(reason);
121
122         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);
128         oopscount++;
129         while (total < kmsg_bytes) {
130                 dst = psinfo->buf;
131                 hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part);
132                 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
147                 ret = psinfo->write(PSTORE_TYPE_DMESG, reason, &id, part,
148                                    hsize + l1_cpy + l2_cpy, psinfo);
149                 if (ret == 0 && reason == KMSG_DUMP_OOPS && pstore_is_mounted())
150                         pstore_new_entry = 1;
151                 l1 -= l1_cpy;
152                 l2 -= l2_cpy;
153                 total += l1_cpy + l2_cpy;
154                 part++;
155         }
156         if (in_nmi()) {
157                 if (is_locked)
158                         spin_unlock(&psinfo->buf_lock);
159         } else
160                 spin_unlock_irqrestore(&psinfo->buf_lock, flags);
161 }
162
163 static struct kmsg_dumper pstore_dumper = {
164         .dump = pstore_dump,
165 };
166
167 #ifdef CONFIG_PSTORE_CONSOLE
168 static 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
186 static 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
193 static void pstore_register_console(void)
194 {
195         register_console(&pstore_console);
196 }
197 #else
198 static void pstore_register_console(void) {}
199 #endif
200
201 /*
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  */
210 int 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         }
219
220         if (backend && strcmp(backend, psi->name)) {
221                 spin_unlock(&pstore_lock);
222                 return -EINVAL;
223         }
224
225         psinfo = psi;
226         mutex_init(&psinfo->read_mutex);
227         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())
235                 pstore_get_records(0);
236
237         kmsg_dump_register(&pstore_dumper);
238         pstore_register_console();
239
240         if (pstore_update_ms >= 0) {
241                 pstore_timer.expires = jiffies +
242                         msecs_to_jiffies(pstore_update_ms);
243                 add_timer(&pstore_timer);
244         }
245
246         return 0;
247 }
248 EXPORT_SYMBOL_GPL(pstore_register);
249
250 /*
251  * 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.
255  */
256 void pstore_get_records(int quiet)
257 {
258         struct pstore_info *psi = psinfo;
259         char                    *buf = NULL;
260         ssize_t                 size;
261         u64                     id;
262         enum pstore_type_id     type;
263         struct timespec         time;
264         int                     failed = 0, rc;
265
266         if (!psi)
267                 return;
268
269         mutex_lock(&psi->read_mutex);
270         if (psi->open && psi->open(psi))
271                 goto out;
272
273         while ((size = psi->read(&id, &type, &time, &buf, psi)) > 0) {
274                 rc = pstore_mkfile(type, psi->name, id, buf, (size_t)size,
275                                   time, psi);
276                 kfree(buf);
277                 buf = NULL;
278                 if (rc && (rc != -EEXIST || !quiet))
279                         failed++;
280         }
281         if (psi->close)
282                 psi->close(psi);
283 out:
284         mutex_unlock(&psi->read_mutex);
285
286         if (failed)
287                 printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n",
288                        failed, psi->name);
289 }
290
291 static void pstore_dowork(struct work_struct *work)
292 {
293         pstore_get_records(1);
294 }
295
296 static void pstore_timefunc(unsigned long dummy)
297 {
298         if (pstore_new_entry) {
299                 pstore_new_entry = 0;
300                 schedule_work(&pstore_work);
301         }
302
303         mod_timer(&pstore_timer, jiffies + msecs_to_jiffies(pstore_update_ms));
304 }
305
306 module_param(backend, charp, 0444);
307 MODULE_PARM_DESC(backend, "Pstore backend to use");