2 * Persistent Storage - platform driver interface parts.
4 * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com>
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.
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.
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
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>
34 * pstore_lock just protects "psinfo" during
35 * calls to pstore_register()
37 static DEFINE_SPINLOCK(pstore_lock
);
38 static struct pstore_info
*psinfo
;
42 /* How much of the console log to snapshot */
43 static unsigned long kmsg_bytes
= 10240;
45 void pstore_set_kmsg_bytes(int bytes
)
50 /* Tag each group of saved records with a sequence number */
53 static char *reason_str
[] = {
54 "Oops", "Panic", "Kexec", "Restart", "Halt", "Poweroff", "Emergency"
58 * callback from kmsg_dump. (s2,l2) has the most recently
59 * written bytes, older bytes are in (s1,l1). Save as much
60 * as we can from the end of the buffer.
62 static void pstore_dump(struct kmsg_dumper
*dumper
,
63 enum kmsg_dump_reason reason
,
64 const char *s1
, unsigned long l1
,
65 const char *s2
, unsigned long l2
)
67 unsigned long s1_start
, s2_start
;
68 unsigned long l1_cpy
, l2_cpy
;
69 unsigned long size
, total
= 0;
73 unsigned int part
= 1;
75 if (reason
< ARRAY_SIZE(reason_str
))
76 why
= reason_str
[reason
];
80 mutex_lock(&psinfo
->buf_mutex
);
82 while (total
< kmsg_bytes
) {
84 hsize
= sprintf(dst
, "%s#%d Part%d\n", why
, oopscount
, part
);
85 size
= psinfo
->bufsize
- hsize
;
88 l2_cpy
= min(l2
, size
);
89 l1_cpy
= min(l1
, size
- l2_cpy
);
91 if (l1_cpy
+ l2_cpy
== 0)
94 s2_start
= l2
- l2_cpy
;
95 s1_start
= l1
- l1_cpy
;
97 memcpy(dst
, s1
+ s1_start
, l1_cpy
);
98 memcpy(dst
+ l1_cpy
, s2
+ s2_start
, l2_cpy
);
100 id
= psinfo
->write(PSTORE_TYPE_DMESG
, part
,
101 hsize
+ l1_cpy
+ l2_cpy
, psinfo
);
102 if (reason
== KMSG_DUMP_OOPS
&& pstore_is_mounted())
103 pstore_mkfile(PSTORE_TYPE_DMESG
, psinfo
->name
, id
,
104 psinfo
->buf
, hsize
+ l1_cpy
+ l2_cpy
,
105 CURRENT_TIME
, psinfo
);
108 total
+= l1_cpy
+ l2_cpy
;
111 mutex_unlock(&psinfo
->buf_mutex
);
114 static struct kmsg_dumper pstore_dumper
= {
119 * platform specific persistent storage driver registers with
120 * us here. If pstore is already mounted, call the platform
121 * read function right away to populate the file system. If not
122 * then the pstore mount code will call us later to fill out
125 * Register with kmsg_dump to save last part of console log on panic.
127 int pstore_register(struct pstore_info
*psi
)
129 struct module
*owner
= psi
->owner
;
131 spin_lock(&pstore_lock
);
133 spin_unlock(&pstore_lock
);
137 if (backend
&& strcmp(backend
, psi
->name
)) {
138 spin_unlock(&pstore_lock
);
143 spin_unlock(&pstore_lock
);
145 if (owner
&& !try_module_get(owner
)) {
150 if (pstore_is_mounted())
151 pstore_get_records();
153 kmsg_dump_register(&pstore_dumper
);
157 EXPORT_SYMBOL_GPL(pstore_register
);
160 * Read all the records from the persistent store. Create and
161 * file files in our filesystem.
163 void pstore_get_records(void)
165 struct pstore_info
*psi
= psinfo
;
168 enum pstore_type_id type
;
169 struct timespec time
;
175 mutex_lock(&psinfo
->buf_mutex
);
180 while ((size
= psi
->read(&id
, &type
, &time
, psi
)) > 0) {
181 if (pstore_mkfile(type
, psi
->name
, id
, psi
->buf
, (size_t)size
,
187 mutex_unlock(&psinfo
->buf_mutex
);
190 printk(KERN_WARNING
"pstore: failed to load %d record(s) from '%s'\n",
195 * Call platform driver to write a record to the
198 int pstore_write(enum pstore_type_id type
, char *buf
, size_t size
)
205 if (size
> psinfo
->bufsize
)
208 mutex_lock(&psinfo
->buf_mutex
);
209 memcpy(psinfo
->buf
, buf
, size
);
210 id
= psinfo
->write(type
, 0, size
, psinfo
);
211 if (pstore_is_mounted())
212 pstore_mkfile(PSTORE_TYPE_DMESG
, psinfo
->name
, id
, psinfo
->buf
,
213 size
, CURRENT_TIME
, psinfo
);
214 mutex_unlock(&psinfo
->buf_mutex
);
218 EXPORT_SYMBOL_GPL(pstore_write
);
220 module_param(backend
, charp
, 0444);
221 MODULE_PARM_DESC(backend
, "Pstore backend to use");