| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Persistent Storage - platform driver interface parts. |
| 3 | * |
| Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame^] | 4 | * Copyright (C) 2007-2008 Google, Inc. |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 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> |
| Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame^] | 26 | #include <linux/console.h> |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 27 | #include <linux/module.h> |
| 28 | #include <linux/pstore.h> |
| 29 | #include <linux/string.h> |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 30 | #include <linux/timer.h> |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 31 | #include <linux/slab.h> |
| 32 | #include <linux/uaccess.h> |
| Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 33 | #include <linux/hardirq.h> |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 34 | #include <linux/workqueue.h> |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 35 | |
| 36 | #include "internal.h" |
| 37 | |
| 38 | /* |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 39 | * We defer making "oops" entries appear in pstore - see |
| 40 | * whether the system is actually still running well enough |
| 41 | * to let someone see the entry |
| 42 | */ |
| 43 | #define PSTORE_INTERVAL (60 * HZ) |
| 44 | |
| 45 | static int pstore_new_entry; |
| 46 | |
| 47 | static void pstore_timefunc(unsigned long); |
| 48 | static DEFINE_TIMER(pstore_timer, pstore_timefunc, 0, 0); |
| 49 | |
| 50 | static void pstore_dowork(struct work_struct *); |
| 51 | static DECLARE_WORK(pstore_work, pstore_dowork); |
| 52 | |
| 53 | /* |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 54 | * pstore_lock just protects "psinfo" during |
| 55 | * calls to pstore_register() |
| 56 | */ |
| 57 | static DEFINE_SPINLOCK(pstore_lock); |
| 58 | static struct pstore_info *psinfo; |
| 59 | |
| Matthew Garrett | dee28e7 | 2011-07-21 16:57:55 -0400 | [diff] [blame] | 60 | static char *backend; |
| 61 | |
| Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 62 | /* How much of the console log to snapshot */ |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 63 | static unsigned long kmsg_bytes = 10240; |
| 64 | |
| Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 65 | void pstore_set_kmsg_bytes(int bytes) |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 66 | { |
| Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 67 | kmsg_bytes = bytes; |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 68 | } |
| 69 | |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 70 | /* Tag each group of saved records with a sequence number */ |
| 71 | static int oopscount; |
| 72 | |
| Seiji Aguchi | 381b872 | 2012-03-16 15:36:59 -0700 | [diff] [blame] | 73 | static const char *get_reason_str(enum kmsg_dump_reason reason) |
| 74 | { |
| 75 | switch (reason) { |
| 76 | case KMSG_DUMP_PANIC: |
| 77 | return "Panic"; |
| 78 | case KMSG_DUMP_OOPS: |
| 79 | return "Oops"; |
| 80 | case KMSG_DUMP_EMERG: |
| 81 | return "Emergency"; |
| 82 | case KMSG_DUMP_RESTART: |
| 83 | return "Restart"; |
| 84 | case KMSG_DUMP_HALT: |
| 85 | return "Halt"; |
| 86 | case KMSG_DUMP_POWEROFF: |
| 87 | return "Poweroff"; |
| 88 | default: |
| 89 | return "Unknown"; |
| 90 | } |
| 91 | } |
| Tony Luck | 9f6af27 | 2011-03-22 16:01:49 -0700 | [diff] [blame] | 92 | |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 93 | /* |
| 94 | * callback from kmsg_dump. (s2,l2) has the most recently |
| 95 | * written bytes, older bytes are in (s1,l1). Save as much |
| 96 | * as we can from the end of the buffer. |
| 97 | */ |
| 98 | static void pstore_dump(struct kmsg_dumper *dumper, |
| 99 | enum kmsg_dump_reason reason, |
| 100 | const char *s1, unsigned long l1, |
| 101 | const char *s2, unsigned long l2) |
| 102 | { |
| 103 | unsigned long s1_start, s2_start; |
| 104 | unsigned long l1_cpy, l2_cpy; |
| 105 | unsigned long size, total = 0; |
| Seiji Aguchi | 381b872 | 2012-03-16 15:36:59 -0700 | [diff] [blame] | 106 | char *dst; |
| 107 | const char *why; |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 108 | u64 id; |
| Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 109 | int hsize, ret; |
| Matthew Garrett | b94fdd0 | 2011-07-21 16:57:54 -0400 | [diff] [blame] | 110 | unsigned int part = 1; |
| Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 111 | unsigned long flags = 0; |
| 112 | int is_locked = 0; |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 113 | |
| Seiji Aguchi | 381b872 | 2012-03-16 15:36:59 -0700 | [diff] [blame] | 114 | why = get_reason_str(reason); |
| Tony Luck | 9f6af27 | 2011-03-22 16:01:49 -0700 | [diff] [blame] | 115 | |
| Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 116 | if (in_nmi()) { |
| 117 | is_locked = spin_trylock(&psinfo->buf_lock); |
| 118 | if (!is_locked) |
| 119 | pr_err("pstore dump routine blocked in NMI, may corrupt error record\n"); |
| 120 | } else |
| 121 | spin_lock_irqsave(&psinfo->buf_lock, flags); |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 122 | oopscount++; |
| 123 | while (total < kmsg_bytes) { |
| 124 | dst = psinfo->buf; |
| Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame] | 125 | hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part); |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 126 | size = psinfo->bufsize - hsize; |
| 127 | dst += hsize; |
| 128 | |
| 129 | l2_cpy = min(l2, size); |
| 130 | l1_cpy = min(l1, size - l2_cpy); |
| 131 | |
| 132 | if (l1_cpy + l2_cpy == 0) |
| 133 | break; |
| 134 | |
| 135 | s2_start = l2 - l2_cpy; |
| 136 | s1_start = l1 - l1_cpy; |
| 137 | |
| 138 | memcpy(dst, s1 + s1_start, l1_cpy); |
| 139 | memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy); |
| 140 | |
| Kees Cook | 3d6d8d2 | 2011-11-17 13:13:29 -0800 | [diff] [blame] | 141 | ret = psinfo->write(PSTORE_TYPE_DMESG, reason, &id, part, |
| Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame] | 142 | hsize + l1_cpy + l2_cpy, psinfo); |
| Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 143 | if (ret == 0 && reason == KMSG_DUMP_OOPS && pstore_is_mounted()) |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 144 | pstore_new_entry = 1; |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 145 | l1 -= l1_cpy; |
| 146 | l2 -= l2_cpy; |
| 147 | total += l1_cpy + l2_cpy; |
| Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame] | 148 | part++; |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 149 | } |
| Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 150 | if (in_nmi()) { |
| 151 | if (is_locked) |
| 152 | spin_unlock(&psinfo->buf_lock); |
| 153 | } else |
| 154 | spin_unlock_irqrestore(&psinfo->buf_lock, flags); |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | static struct kmsg_dumper pstore_dumper = { |
| 158 | .dump = pstore_dump, |
| 159 | }; |
| 160 | |
| Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame^] | 161 | #ifdef CONFIG_PSTORE_CONSOLE |
| 162 | static void pstore_console_write(struct console *con, const char *s, unsigned c) |
| 163 | { |
| 164 | const char *e = s + c; |
| 165 | |
| 166 | while (s < e) { |
| 167 | unsigned long flags; |
| 168 | |
| 169 | if (c > psinfo->bufsize) |
| 170 | c = psinfo->bufsize; |
| 171 | spin_lock_irqsave(&psinfo->buf_lock, flags); |
| 172 | memcpy(psinfo->buf, s, c); |
| 173 | psinfo->write(PSTORE_TYPE_CONSOLE, 0, NULL, 0, c, psinfo); |
| 174 | spin_unlock_irqrestore(&psinfo->buf_lock, flags); |
| 175 | s += c; |
| 176 | c = e - s; |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | static struct console pstore_console = { |
| 181 | .name = "pstore", |
| 182 | .write = pstore_console_write, |
| 183 | .flags = CON_PRINTBUFFER | CON_ENABLED | CON_ANYTIME, |
| 184 | .index = -1, |
| 185 | }; |
| 186 | |
| 187 | static void pstore_register_console(void) |
| 188 | { |
| 189 | register_console(&pstore_console); |
| 190 | } |
| 191 | #else |
| 192 | static void pstore_register_console(void) {} |
| 193 | #endif |
| 194 | |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 195 | /* |
| 196 | * platform specific persistent storage driver registers with |
| 197 | * us here. If pstore is already mounted, call the platform |
| 198 | * read function right away to populate the file system. If not |
| 199 | * then the pstore mount code will call us later to fill out |
| 200 | * the file system. |
| 201 | * |
| 202 | * Register with kmsg_dump to save last part of console log on panic. |
| 203 | */ |
| 204 | int pstore_register(struct pstore_info *psi) |
| 205 | { |
| 206 | struct module *owner = psi->owner; |
| 207 | |
| 208 | spin_lock(&pstore_lock); |
| 209 | if (psinfo) { |
| 210 | spin_unlock(&pstore_lock); |
| 211 | return -EBUSY; |
| 212 | } |
| Matthew Garrett | dee28e7 | 2011-07-21 16:57:55 -0400 | [diff] [blame] | 213 | |
| 214 | if (backend && strcmp(backend, psi->name)) { |
| 215 | spin_unlock(&pstore_lock); |
| 216 | return -EINVAL; |
| 217 | } |
| 218 | |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 219 | psinfo = psi; |
| Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 220 | mutex_init(&psinfo->read_mutex); |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 221 | spin_unlock(&pstore_lock); |
| 222 | |
| 223 | if (owner && !try_module_get(owner)) { |
| 224 | psinfo = NULL; |
| 225 | return -EINVAL; |
| 226 | } |
| 227 | |
| 228 | if (pstore_is_mounted()) |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 229 | pstore_get_records(0); |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 230 | |
| 231 | kmsg_dump_register(&pstore_dumper); |
| Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame^] | 232 | pstore_register_console(); |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 233 | |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 234 | pstore_timer.expires = jiffies + PSTORE_INTERVAL; |
| 235 | add_timer(&pstore_timer); |
| 236 | |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 237 | return 0; |
| 238 | } |
| 239 | EXPORT_SYMBOL_GPL(pstore_register); |
| 240 | |
| 241 | /* |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 242 | * Read all the records from the persistent store. Create |
| 243 | * files in our filesystem. Don't warn about -EEXIST errors |
| 244 | * when we are re-scanning the backing store looking to add new |
| 245 | * error records. |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 246 | */ |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 247 | void pstore_get_records(int quiet) |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 248 | { |
| 249 | struct pstore_info *psi = psinfo; |
| Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 250 | char *buf = NULL; |
| Chen Gong | 8d38d74 | 2011-05-16 10:58:57 -0700 | [diff] [blame] | 251 | ssize_t size; |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 252 | u64 id; |
| 253 | enum pstore_type_id type; |
| 254 | struct timespec time; |
| Chen Gong | 06cf91b | 2011-05-16 11:00:27 -0700 | [diff] [blame] | 255 | int failed = 0, rc; |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 256 | |
| 257 | if (!psi) |
| 258 | return; |
| 259 | |
| Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 260 | mutex_lock(&psi->read_mutex); |
| Kees Cook | 2174f6d | 2011-11-18 13:49:00 -0800 | [diff] [blame] | 261 | if (psi->open && psi->open(psi)) |
| Chen Gong | 06cf91b | 2011-05-16 11:00:27 -0700 | [diff] [blame] | 262 | goto out; |
| 263 | |
| Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 264 | while ((size = psi->read(&id, &type, &time, &buf, psi)) > 0) { |
| 265 | rc = pstore_mkfile(type, psi->name, id, buf, (size_t)size, |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 266 | time, psi); |
| Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 267 | kfree(buf); |
| 268 | buf = NULL; |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 269 | if (rc && (rc != -EEXIST || !quiet)) |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 270 | failed++; |
| 271 | } |
| Kees Cook | 2174f6d | 2011-11-18 13:49:00 -0800 | [diff] [blame] | 272 | if (psi->close) |
| 273 | psi->close(psi); |
| Chen Gong | 06cf91b | 2011-05-16 11:00:27 -0700 | [diff] [blame] | 274 | out: |
| Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 275 | mutex_unlock(&psi->read_mutex); |
| Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 276 | |
| 277 | if (failed) |
| 278 | printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n", |
| 279 | failed, psi->name); |
| 280 | } |
| 281 | |
| Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 282 | static void pstore_dowork(struct work_struct *work) |
| 283 | { |
| 284 | pstore_get_records(1); |
| 285 | } |
| 286 | |
| 287 | static void pstore_timefunc(unsigned long dummy) |
| 288 | { |
| 289 | if (pstore_new_entry) { |
| 290 | pstore_new_entry = 0; |
| 291 | schedule_work(&pstore_work); |
| 292 | } |
| 293 | |
| 294 | mod_timer(&pstore_timer, jiffies + PSTORE_INTERVAL); |
| 295 | } |
| 296 | |
| Matthew Garrett | dee28e7 | 2011-07-21 16:57:55 -0400 | [diff] [blame] | 297 | module_param(backend, charp, 0444); |
| 298 | MODULE_PARM_DESC(backend, "Pstore backend to use"); |