| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 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> | 
|  | 28 | #include <linux/slab.h> | 
|  | 29 | #include <linux/uaccess.h> | 
|  | 30 |  | 
|  | 31 | #include "internal.h" | 
|  | 32 |  | 
|  | 33 | /* | 
|  | 34 | * pstore_lock just protects "psinfo" during | 
|  | 35 | * calls to pstore_register() | 
|  | 36 | */ | 
|  | 37 | static DEFINE_SPINLOCK(pstore_lock); | 
|  | 38 | static struct pstore_info *psinfo; | 
|  | 39 |  | 
| Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 40 | /* How much of the console log to snapshot */ | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 41 | static unsigned long kmsg_bytes = 10240; | 
|  | 42 |  | 
| Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 43 | void pstore_set_kmsg_bytes(int bytes) | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 44 | { | 
| Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 45 | kmsg_bytes = bytes; | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 46 | } | 
|  | 47 |  | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 48 | /* Tag each group of saved records with a sequence number */ | 
|  | 49 | static int	oopscount; | 
|  | 50 |  | 
| Tony Luck | 9f6af27 | 2011-03-22 16:01:49 -0700 | [diff] [blame] | 51 | static char *reason_str[] = { | 
|  | 52 | "Oops", "Panic", "Kexec", "Restart", "Halt", "Poweroff", "Emergency" | 
|  | 53 | }; | 
|  | 54 |  | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 55 | /* | 
|  | 56 | * callback from kmsg_dump. (s2,l2) has the most recently | 
|  | 57 | * written bytes, older bytes are in (s1,l1). Save as much | 
|  | 58 | * as we can from the end of the buffer. | 
|  | 59 | */ | 
|  | 60 | static void pstore_dump(struct kmsg_dumper *dumper, | 
|  | 61 | enum kmsg_dump_reason reason, | 
|  | 62 | const char *s1, unsigned long l1, | 
|  | 63 | const char *s2, unsigned long l2) | 
|  | 64 | { | 
|  | 65 | unsigned long	s1_start, s2_start; | 
|  | 66 | unsigned long	l1_cpy, l2_cpy; | 
|  | 67 | unsigned long	size, total = 0; | 
| Tony Luck | 9f6af27 | 2011-03-22 16:01:49 -0700 | [diff] [blame] | 68 | char		*dst, *why; | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 69 | u64		id; | 
|  | 70 | int		hsize, part = 1; | 
|  | 71 |  | 
| Tony Luck | 9f6af27 | 2011-03-22 16:01:49 -0700 | [diff] [blame] | 72 | if (reason < ARRAY_SIZE(reason_str)) | 
|  | 73 | why = reason_str[reason]; | 
|  | 74 | else | 
|  | 75 | why = "Unknown"; | 
|  | 76 |  | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 77 | mutex_lock(&psinfo->buf_mutex); | 
|  | 78 | oopscount++; | 
|  | 79 | while (total < kmsg_bytes) { | 
|  | 80 | dst = psinfo->buf; | 
| Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame^] | 81 | hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part); | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 82 | size = psinfo->bufsize - hsize; | 
|  | 83 | dst += hsize; | 
|  | 84 |  | 
|  | 85 | l2_cpy = min(l2, size); | 
|  | 86 | l1_cpy = min(l1, size - l2_cpy); | 
|  | 87 |  | 
|  | 88 | if (l1_cpy + l2_cpy == 0) | 
|  | 89 | break; | 
|  | 90 |  | 
|  | 91 | s2_start = l2 - l2_cpy; | 
|  | 92 | s1_start = l1 - l1_cpy; | 
|  | 93 |  | 
|  | 94 | memcpy(dst, s1 + s1_start, l1_cpy); | 
|  | 95 | memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy); | 
|  | 96 |  | 
| Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame^] | 97 | id = psinfo->write(PSTORE_TYPE_DMESG, part, | 
|  | 98 | hsize + l1_cpy + l2_cpy, psinfo); | 
| Tony Luck | 9f6af27 | 2011-03-22 16:01:49 -0700 | [diff] [blame] | 99 | if (reason == KMSG_DUMP_OOPS && pstore_is_mounted()) | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 100 | pstore_mkfile(PSTORE_TYPE_DMESG, psinfo->name, id, | 
|  | 101 | psinfo->buf, hsize + l1_cpy + l2_cpy, | 
| Matthew Garrett | 638c1fd | 2011-07-21 16:57:52 -0400 | [diff] [blame] | 102 | CURRENT_TIME, psinfo); | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 103 | l1 -= l1_cpy; | 
|  | 104 | l2 -= l2_cpy; | 
|  | 105 | total += l1_cpy + l2_cpy; | 
| Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame^] | 106 | part++; | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 107 | } | 
|  | 108 | mutex_unlock(&psinfo->buf_mutex); | 
|  | 109 | } | 
|  | 110 |  | 
|  | 111 | static struct kmsg_dumper pstore_dumper = { | 
|  | 112 | .dump = pstore_dump, | 
|  | 113 | }; | 
|  | 114 |  | 
|  | 115 | /* | 
|  | 116 | * platform specific persistent storage driver registers with | 
|  | 117 | * us here. If pstore is already mounted, call the platform | 
|  | 118 | * read function right away to populate the file system. If not | 
|  | 119 | * then the pstore mount code will call us later to fill out | 
|  | 120 | * the file system. | 
|  | 121 | * | 
|  | 122 | * Register with kmsg_dump to save last part of console log on panic. | 
|  | 123 | */ | 
|  | 124 | int pstore_register(struct pstore_info *psi) | 
|  | 125 | { | 
|  | 126 | struct module *owner = psi->owner; | 
|  | 127 |  | 
|  | 128 | spin_lock(&pstore_lock); | 
|  | 129 | if (psinfo) { | 
|  | 130 | spin_unlock(&pstore_lock); | 
|  | 131 | return -EBUSY; | 
|  | 132 | } | 
|  | 133 | psinfo = psi; | 
|  | 134 | spin_unlock(&pstore_lock); | 
|  | 135 |  | 
|  | 136 | if (owner && !try_module_get(owner)) { | 
|  | 137 | psinfo = NULL; | 
|  | 138 | return -EINVAL; | 
|  | 139 | } | 
|  | 140 |  | 
|  | 141 | if (pstore_is_mounted()) | 
|  | 142 | pstore_get_records(); | 
|  | 143 |  | 
|  | 144 | kmsg_dump_register(&pstore_dumper); | 
|  | 145 |  | 
|  | 146 | return 0; | 
|  | 147 | } | 
|  | 148 | EXPORT_SYMBOL_GPL(pstore_register); | 
|  | 149 |  | 
|  | 150 | /* | 
|  | 151 | * Read all the records from the persistent store. Create and | 
|  | 152 | * file files in our filesystem. | 
|  | 153 | */ | 
|  | 154 | void pstore_get_records(void) | 
|  | 155 | { | 
|  | 156 | struct pstore_info *psi = psinfo; | 
| Chen Gong | 8d38d74 | 2011-05-16 10:58:57 -0700 | [diff] [blame] | 157 | ssize_t			size; | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 158 | u64			id; | 
|  | 159 | enum pstore_type_id	type; | 
|  | 160 | struct timespec		time; | 
| Chen Gong | 06cf91b | 2011-05-16 11:00:27 -0700 | [diff] [blame] | 161 | int			failed = 0, rc; | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 162 |  | 
|  | 163 | if (!psi) | 
|  | 164 | return; | 
|  | 165 |  | 
|  | 166 | mutex_lock(&psinfo->buf_mutex); | 
| Chen Gong | 06cf91b | 2011-05-16 11:00:27 -0700 | [diff] [blame] | 167 | rc = psi->open(psi); | 
|  | 168 | if (rc) | 
|  | 169 | goto out; | 
|  | 170 |  | 
| Matthew Garrett | 638c1fd | 2011-07-21 16:57:52 -0400 | [diff] [blame] | 171 | while ((size = psi->read(&id, &type, &time, psi)) > 0) { | 
| Chen Gong | 8d38d74 | 2011-05-16 10:58:57 -0700 | [diff] [blame] | 172 | if (pstore_mkfile(type, psi->name, id, psi->buf, (size_t)size, | 
| Matthew Garrett | 638c1fd | 2011-07-21 16:57:52 -0400 | [diff] [blame] | 173 | time, psi)) | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 174 | failed++; | 
|  | 175 | } | 
| Chen Gong | 06cf91b | 2011-05-16 11:00:27 -0700 | [diff] [blame] | 176 | psi->close(psi); | 
|  | 177 | out: | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 178 | mutex_unlock(&psinfo->buf_mutex); | 
|  | 179 |  | 
|  | 180 | if (failed) | 
|  | 181 | printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n", | 
|  | 182 | failed, psi->name); | 
|  | 183 | } | 
|  | 184 |  | 
|  | 185 | /* | 
|  | 186 | * Call platform driver to write a record to the | 
|  | 187 | * persistent store. | 
|  | 188 | */ | 
|  | 189 | int pstore_write(enum pstore_type_id type, char *buf, size_t size) | 
|  | 190 | { | 
|  | 191 | u64	id; | 
|  | 192 |  | 
|  | 193 | if (!psinfo) | 
|  | 194 | return -ENODEV; | 
|  | 195 |  | 
|  | 196 | if (size > psinfo->bufsize) | 
|  | 197 | return -EFBIG; | 
|  | 198 |  | 
|  | 199 | mutex_lock(&psinfo->buf_mutex); | 
|  | 200 | memcpy(psinfo->buf, buf, size); | 
| Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame^] | 201 | id = psinfo->write(type, 0, size, psinfo); | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 202 | if (pstore_is_mounted()) | 
|  | 203 | pstore_mkfile(PSTORE_TYPE_DMESG, psinfo->name, id, psinfo->buf, | 
| Matthew Garrett | 638c1fd | 2011-07-21 16:57:52 -0400 | [diff] [blame] | 204 | size, CURRENT_TIME, psinfo); | 
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 205 | mutex_unlock(&psinfo->buf_mutex); | 
|  | 206 |  | 
|  | 207 | return 0; | 
|  | 208 | } | 
|  | 209 | EXPORT_SYMBOL_GPL(pstore_write); |