1ca01d6ddSTony Luck /* 2ca01d6ddSTony Luck * Persistent Storage - platform driver interface parts. 3ca01d6ddSTony Luck * 4ca01d6ddSTony Luck * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com> 5ca01d6ddSTony Luck * 6ca01d6ddSTony Luck * This program is free software; you can redistribute it and/or modify 7ca01d6ddSTony Luck * it under the terms of the GNU General Public License version 2 as 8ca01d6ddSTony Luck * published by the Free Software Foundation. 9ca01d6ddSTony Luck * 10ca01d6ddSTony Luck * This program is distributed in the hope that it will be useful, 11ca01d6ddSTony Luck * but WITHOUT ANY WARRANTY; without even the implied warranty of 12ca01d6ddSTony Luck * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13ca01d6ddSTony Luck * GNU General Public License for more details. 14ca01d6ddSTony Luck * 15ca01d6ddSTony Luck * You should have received a copy of the GNU General Public License 16ca01d6ddSTony Luck * along with this program; if not, write to the Free Software 17ca01d6ddSTony Luck * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18ca01d6ddSTony Luck */ 19ca01d6ddSTony Luck 20ca01d6ddSTony Luck #include <linux/atomic.h> 21ca01d6ddSTony Luck #include <linux/types.h> 22ca01d6ddSTony Luck #include <linux/errno.h> 23ca01d6ddSTony Luck #include <linux/init.h> 24ca01d6ddSTony Luck #include <linux/kmsg_dump.h> 25ca01d6ddSTony Luck #include <linux/module.h> 26ca01d6ddSTony Luck #include <linux/pstore.h> 27ca01d6ddSTony Luck #include <linux/string.h> 28ca01d6ddSTony Luck #include <linux/slab.h> 29ca01d6ddSTony Luck #include <linux/uaccess.h> 30ca01d6ddSTony Luck 31ca01d6ddSTony Luck #include "internal.h" 32ca01d6ddSTony Luck 33ca01d6ddSTony Luck /* 34ca01d6ddSTony Luck * pstore_lock just protects "psinfo" during 35ca01d6ddSTony Luck * calls to pstore_register() 36ca01d6ddSTony Luck */ 37ca01d6ddSTony Luck static DEFINE_SPINLOCK(pstore_lock); 38ca01d6ddSTony Luck static struct pstore_info *psinfo; 39ca01d6ddSTony Luck 40*dee28e72SMatthew Garrett static char *backend; 41*dee28e72SMatthew Garrett 42366f7e7aSLuck, Tony /* How much of the console log to snapshot */ 43ca01d6ddSTony Luck static unsigned long kmsg_bytes = 10240; 44ca01d6ddSTony Luck 45366f7e7aSLuck, Tony void pstore_set_kmsg_bytes(int bytes) 46ca01d6ddSTony Luck { 47366f7e7aSLuck, Tony kmsg_bytes = bytes; 48ca01d6ddSTony Luck } 49ca01d6ddSTony Luck 50ca01d6ddSTony Luck /* Tag each group of saved records with a sequence number */ 51ca01d6ddSTony Luck static int oopscount; 52ca01d6ddSTony Luck 539f6af27fSTony Luck static char *reason_str[] = { 549f6af27fSTony Luck "Oops", "Panic", "Kexec", "Restart", "Halt", "Poweroff", "Emergency" 559f6af27fSTony Luck }; 569f6af27fSTony Luck 57ca01d6ddSTony Luck /* 58ca01d6ddSTony Luck * callback from kmsg_dump. (s2,l2) has the most recently 59ca01d6ddSTony Luck * written bytes, older bytes are in (s1,l1). Save as much 60ca01d6ddSTony Luck * as we can from the end of the buffer. 61ca01d6ddSTony Luck */ 62ca01d6ddSTony Luck static void pstore_dump(struct kmsg_dumper *dumper, 63ca01d6ddSTony Luck enum kmsg_dump_reason reason, 64ca01d6ddSTony Luck const char *s1, unsigned long l1, 65ca01d6ddSTony Luck const char *s2, unsigned long l2) 66ca01d6ddSTony Luck { 67ca01d6ddSTony Luck unsigned long s1_start, s2_start; 68ca01d6ddSTony Luck unsigned long l1_cpy, l2_cpy; 69ca01d6ddSTony Luck unsigned long size, total = 0; 709f6af27fSTony Luck char *dst, *why; 71ca01d6ddSTony Luck u64 id; 72b94fdd07SMatthew Garrett int hsize; 73b94fdd07SMatthew Garrett unsigned int part = 1; 74ca01d6ddSTony Luck 759f6af27fSTony Luck if (reason < ARRAY_SIZE(reason_str)) 769f6af27fSTony Luck why = reason_str[reason]; 779f6af27fSTony Luck else 789f6af27fSTony Luck why = "Unknown"; 799f6af27fSTony Luck 80ca01d6ddSTony Luck mutex_lock(&psinfo->buf_mutex); 81ca01d6ddSTony Luck oopscount++; 82ca01d6ddSTony Luck while (total < kmsg_bytes) { 83ca01d6ddSTony Luck dst = psinfo->buf; 8456280682SMatthew Garrett hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part); 85ca01d6ddSTony Luck size = psinfo->bufsize - hsize; 86ca01d6ddSTony Luck dst += hsize; 87ca01d6ddSTony Luck 88ca01d6ddSTony Luck l2_cpy = min(l2, size); 89ca01d6ddSTony Luck l1_cpy = min(l1, size - l2_cpy); 90ca01d6ddSTony Luck 91ca01d6ddSTony Luck if (l1_cpy + l2_cpy == 0) 92ca01d6ddSTony Luck break; 93ca01d6ddSTony Luck 94ca01d6ddSTony Luck s2_start = l2 - l2_cpy; 95ca01d6ddSTony Luck s1_start = l1 - l1_cpy; 96ca01d6ddSTony Luck 97ca01d6ddSTony Luck memcpy(dst, s1 + s1_start, l1_cpy); 98ca01d6ddSTony Luck memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy); 99ca01d6ddSTony Luck 10056280682SMatthew Garrett id = psinfo->write(PSTORE_TYPE_DMESG, part, 10156280682SMatthew Garrett hsize + l1_cpy + l2_cpy, psinfo); 1029f6af27fSTony Luck if (reason == KMSG_DUMP_OOPS && pstore_is_mounted()) 103ca01d6ddSTony Luck pstore_mkfile(PSTORE_TYPE_DMESG, psinfo->name, id, 104ca01d6ddSTony Luck psinfo->buf, hsize + l1_cpy + l2_cpy, 105638c1fd3SMatthew Garrett CURRENT_TIME, psinfo); 106ca01d6ddSTony Luck l1 -= l1_cpy; 107ca01d6ddSTony Luck l2 -= l2_cpy; 108ca01d6ddSTony Luck total += l1_cpy + l2_cpy; 10956280682SMatthew Garrett part++; 110ca01d6ddSTony Luck } 111ca01d6ddSTony Luck mutex_unlock(&psinfo->buf_mutex); 112ca01d6ddSTony Luck } 113ca01d6ddSTony Luck 114ca01d6ddSTony Luck static struct kmsg_dumper pstore_dumper = { 115ca01d6ddSTony Luck .dump = pstore_dump, 116ca01d6ddSTony Luck }; 117ca01d6ddSTony Luck 118ca01d6ddSTony Luck /* 119ca01d6ddSTony Luck * platform specific persistent storage driver registers with 120ca01d6ddSTony Luck * us here. If pstore is already mounted, call the platform 121ca01d6ddSTony Luck * read function right away to populate the file system. If not 122ca01d6ddSTony Luck * then the pstore mount code will call us later to fill out 123ca01d6ddSTony Luck * the file system. 124ca01d6ddSTony Luck * 125ca01d6ddSTony Luck * Register with kmsg_dump to save last part of console log on panic. 126ca01d6ddSTony Luck */ 127ca01d6ddSTony Luck int pstore_register(struct pstore_info *psi) 128ca01d6ddSTony Luck { 129ca01d6ddSTony Luck struct module *owner = psi->owner; 130ca01d6ddSTony Luck 131ca01d6ddSTony Luck spin_lock(&pstore_lock); 132ca01d6ddSTony Luck if (psinfo) { 133ca01d6ddSTony Luck spin_unlock(&pstore_lock); 134ca01d6ddSTony Luck return -EBUSY; 135ca01d6ddSTony Luck } 136*dee28e72SMatthew Garrett 137*dee28e72SMatthew Garrett if (backend && strcmp(backend, psi->name)) { 138*dee28e72SMatthew Garrett spin_unlock(&pstore_lock); 139*dee28e72SMatthew Garrett return -EINVAL; 140*dee28e72SMatthew Garrett } 141*dee28e72SMatthew Garrett 142ca01d6ddSTony Luck psinfo = psi; 143ca01d6ddSTony Luck spin_unlock(&pstore_lock); 144ca01d6ddSTony Luck 145ca01d6ddSTony Luck if (owner && !try_module_get(owner)) { 146ca01d6ddSTony Luck psinfo = NULL; 147ca01d6ddSTony Luck return -EINVAL; 148ca01d6ddSTony Luck } 149ca01d6ddSTony Luck 150ca01d6ddSTony Luck if (pstore_is_mounted()) 151ca01d6ddSTony Luck pstore_get_records(); 152ca01d6ddSTony Luck 153ca01d6ddSTony Luck kmsg_dump_register(&pstore_dumper); 154ca01d6ddSTony Luck 155ca01d6ddSTony Luck return 0; 156ca01d6ddSTony Luck } 157ca01d6ddSTony Luck EXPORT_SYMBOL_GPL(pstore_register); 158ca01d6ddSTony Luck 159ca01d6ddSTony Luck /* 160ca01d6ddSTony Luck * Read all the records from the persistent store. Create and 161ca01d6ddSTony Luck * file files in our filesystem. 162ca01d6ddSTony Luck */ 163ca01d6ddSTony Luck void pstore_get_records(void) 164ca01d6ddSTony Luck { 165ca01d6ddSTony Luck struct pstore_info *psi = psinfo; 1668d38d74bSChen Gong ssize_t size; 167ca01d6ddSTony Luck u64 id; 168ca01d6ddSTony Luck enum pstore_type_id type; 169ca01d6ddSTony Luck struct timespec time; 17006cf91b4SChen Gong int failed = 0, rc; 171ca01d6ddSTony Luck 172ca01d6ddSTony Luck if (!psi) 173ca01d6ddSTony Luck return; 174ca01d6ddSTony Luck 175ca01d6ddSTony Luck mutex_lock(&psinfo->buf_mutex); 17606cf91b4SChen Gong rc = psi->open(psi); 17706cf91b4SChen Gong if (rc) 17806cf91b4SChen Gong goto out; 17906cf91b4SChen Gong 180638c1fd3SMatthew Garrett while ((size = psi->read(&id, &type, &time, psi)) > 0) { 1818d38d74bSChen Gong if (pstore_mkfile(type, psi->name, id, psi->buf, (size_t)size, 182638c1fd3SMatthew Garrett time, psi)) 183ca01d6ddSTony Luck failed++; 184ca01d6ddSTony Luck } 18506cf91b4SChen Gong psi->close(psi); 18606cf91b4SChen Gong out: 187ca01d6ddSTony Luck mutex_unlock(&psinfo->buf_mutex); 188ca01d6ddSTony Luck 189ca01d6ddSTony Luck if (failed) 190ca01d6ddSTony Luck printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n", 191ca01d6ddSTony Luck failed, psi->name); 192ca01d6ddSTony Luck } 193ca01d6ddSTony Luck 194ca01d6ddSTony Luck /* 195ca01d6ddSTony Luck * Call platform driver to write a record to the 196ca01d6ddSTony Luck * persistent store. 197ca01d6ddSTony Luck */ 198ca01d6ddSTony Luck int pstore_write(enum pstore_type_id type, char *buf, size_t size) 199ca01d6ddSTony Luck { 200ca01d6ddSTony Luck u64 id; 201ca01d6ddSTony Luck 202ca01d6ddSTony Luck if (!psinfo) 203ca01d6ddSTony Luck return -ENODEV; 204ca01d6ddSTony Luck 205ca01d6ddSTony Luck if (size > psinfo->bufsize) 206ca01d6ddSTony Luck return -EFBIG; 207ca01d6ddSTony Luck 208ca01d6ddSTony Luck mutex_lock(&psinfo->buf_mutex); 209ca01d6ddSTony Luck memcpy(psinfo->buf, buf, size); 21056280682SMatthew Garrett id = psinfo->write(type, 0, size, psinfo); 211ca01d6ddSTony Luck if (pstore_is_mounted()) 212ca01d6ddSTony Luck pstore_mkfile(PSTORE_TYPE_DMESG, psinfo->name, id, psinfo->buf, 213638c1fd3SMatthew Garrett size, CURRENT_TIME, psinfo); 214ca01d6ddSTony Luck mutex_unlock(&psinfo->buf_mutex); 215ca01d6ddSTony Luck 216ca01d6ddSTony Luck return 0; 217ca01d6ddSTony Luck } 218ca01d6ddSTony Luck EXPORT_SYMBOL_GPL(pstore_write); 219*dee28e72SMatthew Garrett 220*dee28e72SMatthew Garrett module_param(backend, charp, 0444); 221*dee28e72SMatthew Garrett MODULE_PARM_DESC(backend, "Pstore backend to use"); 222