145051539SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 2ca01d6ddSTony Luck /* 3ca01d6ddSTony Luck * Persistent Storage - platform driver interface parts. 4ca01d6ddSTony Luck * 5f29e5956SAnton Vorontsov * Copyright (C) 2007-2008 Google, Inc. 6ca01d6ddSTony Luck * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com> 7ca01d6ddSTony Luck */ 8ca01d6ddSTony Luck 9ef748853SFabian Frederick #define pr_fmt(fmt) "pstore: " fmt 10ef748853SFabian Frederick 11ca01d6ddSTony Luck #include <linux/atomic.h> 12ca01d6ddSTony Luck #include <linux/types.h> 13ca01d6ddSTony Luck #include <linux/errno.h> 14ca01d6ddSTony Luck #include <linux/init.h> 15ca01d6ddSTony Luck #include <linux/kmsg_dump.h> 16f29e5956SAnton Vorontsov #include <linux/console.h> 17ca01d6ddSTony Luck #include <linux/module.h> 18ca01d6ddSTony Luck #include <linux/pstore.h> 1958eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZO_COMPRESS) 208cfc8ddcSGeliang Tang #include <linux/lzo.h> 218cfc8ddcSGeliang Tang #endif 2258eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZ4_COMPRESS) || IS_ENABLED(CONFIG_PSTORE_LZ4HC_COMPRESS) 238cfc8ddcSGeliang Tang #include <linux/lz4.h> 248cfc8ddcSGeliang Tang #endif 251021bcf4SGeliang Tang #if IS_ENABLED(CONFIG_PSTORE_ZSTD_COMPRESS) 261021bcf4SGeliang Tang #include <linux/zstd.h> 271021bcf4SGeliang Tang #endif 28cb3bee03SGeliang Tang #include <linux/crypto.h> 29ca01d6ddSTony Luck #include <linux/string.h> 306dda9266SLuck, Tony #include <linux/timer.h> 31ca01d6ddSTony Luck #include <linux/slab.h> 32ca01d6ddSTony Luck #include <linux/uaccess.h> 33a3f5f075SAnton Vorontsov #include <linux/jiffies.h> 346dda9266SLuck, Tony #include <linux/workqueue.h> 35ca01d6ddSTony Luck 36ca01d6ddSTony Luck #include "internal.h" 37ca01d6ddSTony Luck 38ca01d6ddSTony Luck /* 396dda9266SLuck, Tony * We defer making "oops" entries appear in pstore - see 406dda9266SLuck, Tony * whether the system is actually still running well enough 416dda9266SLuck, Tony * to let someone see the entry 426dda9266SLuck, Tony */ 43521f7288SAnton Vorontsov static int pstore_update_ms = -1; 44a3f5f075SAnton Vorontsov module_param_named(update_ms, pstore_update_ms, int, 0600); 45a3f5f075SAnton Vorontsov MODULE_PARM_DESC(update_ms, "milliseconds before pstore updates its content " 46521f7288SAnton Vorontsov "(default is -1, which means runtime updates are disabled; " 4778c83c82SKees Cook "enabling this option may not be safe; it may lead to further " 48521f7288SAnton Vorontsov "corruption on Oopses)"); 496dda9266SLuck, Tony 50f0f23e54SJoel Fernandes (Google) /* Names should be in the same order as the enum pstore_type_id */ 51f0f23e54SJoel Fernandes (Google) static const char * const pstore_type_names[] = { 52f0f23e54SJoel Fernandes (Google) "dmesg", 53f0f23e54SJoel Fernandes (Google) "mce", 54f0f23e54SJoel Fernandes (Google) "console", 55f0f23e54SJoel Fernandes (Google) "ftrace", 56f0f23e54SJoel Fernandes (Google) "rtas", 57f0f23e54SJoel Fernandes (Google) "powerpc-ofw", 58f0f23e54SJoel Fernandes (Google) "powerpc-common", 59f0f23e54SJoel Fernandes (Google) "pmsg", 60f0f23e54SJoel Fernandes (Google) "powerpc-opal", 61f0f23e54SJoel Fernandes (Google) }; 62f0f23e54SJoel Fernandes (Google) 636dda9266SLuck, Tony static int pstore_new_entry; 646dda9266SLuck, Tony 6524ed960aSKees Cook static void pstore_timefunc(struct timer_list *); 661d27e3e2SKees Cook static DEFINE_TIMER(pstore_timer, pstore_timefunc); 676dda9266SLuck, Tony 686dda9266SLuck, Tony static void pstore_dowork(struct work_struct *); 696dda9266SLuck, Tony static DECLARE_WORK(pstore_work, pstore_dowork); 706dda9266SLuck, Tony 716dda9266SLuck, Tony /* 726248a066SKees Cook * psinfo_lock protects "psinfo" during calls to 736248a066SKees Cook * pstore_register(), pstore_unregister(), and 746248a066SKees Cook * the filesystem mount/unmount routines. 75ca01d6ddSTony Luck */ 76cab12fd0SKees Cook static DEFINE_MUTEX(psinfo_lock); 77060287b8SAnton Vorontsov struct pstore_info *psinfo; 78ca01d6ddSTony Luck 79dee28e72SMatthew Garrett static char *backend; 80d973f7d8SKees Cook module_param(backend, charp, 0444); 81d973f7d8SKees Cook MODULE_PARM_DESC(backend, "specific backend to use"); 82d973f7d8SKees Cook 83fe1d4758SKees Cook static char *compress = 84fe1d4758SKees Cook #ifdef CONFIG_PSTORE_COMPRESS_DEFAULT 85fe1d4758SKees Cook CONFIG_PSTORE_COMPRESS_DEFAULT; 86fe1d4758SKees Cook #else 87fe1d4758SKees Cook NULL; 88fe1d4758SKees Cook #endif 89d973f7d8SKees Cook module_param(compress, charp, 0444); 90d973f7d8SKees Cook MODULE_PARM_DESC(compress, "compression to use"); 91dee28e72SMatthew Garrett 92b0aad7a9SAruna Balakrishnaiah /* Compression parameters */ 93cb3bee03SGeliang Tang static struct crypto_comp *tfm; 948cfc8ddcSGeliang Tang 958cfc8ddcSGeliang Tang struct pstore_zbackend { 96cb3bee03SGeliang Tang int (*zbufsize)(size_t size); 978cfc8ddcSGeliang Tang const char *name; 988cfc8ddcSGeliang Tang }; 99b0aad7a9SAruna Balakrishnaiah 100b0aad7a9SAruna Balakrishnaiah static char *big_oops_buf; 101b0aad7a9SAruna Balakrishnaiah static size_t big_oops_buf_sz; 102b0aad7a9SAruna Balakrishnaiah 103366f7e7aSLuck, Tony /* How much of the console log to snapshot */ 10426fecbf7SVasile-Laurentiu Stanimir unsigned long kmsg_bytes = CONFIG_PSTORE_DEFAULT_KMSG_BYTES; 105ca01d6ddSTony Luck 106366f7e7aSLuck, Tony void pstore_set_kmsg_bytes(int bytes) 107ca01d6ddSTony Luck { 108366f7e7aSLuck, Tony kmsg_bytes = bytes; 109ca01d6ddSTony Luck } 110ca01d6ddSTony Luck 111ca01d6ddSTony Luck /* Tag each group of saved records with a sequence number */ 112ca01d6ddSTony Luck static int oopscount; 113ca01d6ddSTony Luck 114f0f23e54SJoel Fernandes (Google) const char *pstore_type_to_name(enum pstore_type_id type) 115f0f23e54SJoel Fernandes (Google) { 116f0f23e54SJoel Fernandes (Google) BUILD_BUG_ON(ARRAY_SIZE(pstore_type_names) != PSTORE_TYPE_MAX); 117f0f23e54SJoel Fernandes (Google) 118f0f23e54SJoel Fernandes (Google) if (WARN_ON_ONCE(type >= PSTORE_TYPE_MAX)) 119f0f23e54SJoel Fernandes (Google) return "unknown"; 120f0f23e54SJoel Fernandes (Google) 121f0f23e54SJoel Fernandes (Google) return pstore_type_names[type]; 122f0f23e54SJoel Fernandes (Google) } 123f0f23e54SJoel Fernandes (Google) EXPORT_SYMBOL_GPL(pstore_type_to_name); 124f0f23e54SJoel Fernandes (Google) 125f0f23e54SJoel Fernandes (Google) enum pstore_type_id pstore_name_to_type(const char *name) 126f0f23e54SJoel Fernandes (Google) { 127f0f23e54SJoel Fernandes (Google) int i; 128f0f23e54SJoel Fernandes (Google) 129f0f23e54SJoel Fernandes (Google) for (i = 0; i < PSTORE_TYPE_MAX; i++) { 130f0f23e54SJoel Fernandes (Google) if (!strcmp(pstore_type_names[i], name)) 131f0f23e54SJoel Fernandes (Google) return i; 132f0f23e54SJoel Fernandes (Google) } 133f0f23e54SJoel Fernandes (Google) 134f0f23e54SJoel Fernandes (Google) return PSTORE_TYPE_MAX; 135f0f23e54SJoel Fernandes (Google) } 136f0f23e54SJoel Fernandes (Google) EXPORT_SYMBOL_GPL(pstore_name_to_type); 137f0f23e54SJoel Fernandes (Google) 13878c83c82SKees Cook static void pstore_timer_kick(void) 13978c83c82SKees Cook { 14078c83c82SKees Cook if (pstore_update_ms < 0) 14178c83c82SKees Cook return; 14278c83c82SKees Cook 14378c83c82SKees Cook mod_timer(&pstore_timer, jiffies + msecs_to_jiffies(pstore_update_ms)); 14478c83c82SKees Cook } 14578c83c82SKees Cook 1469f244e9cSSeiji Aguchi /* 147ea84b580SKees Cook * Should pstore_dump() wait for a concurrent pstore_dump()? If 148ea84b580SKees Cook * not, the current pstore_dump() will report a failure to dump 149ea84b580SKees Cook * and return. 1509f244e9cSSeiji Aguchi */ 151ea84b580SKees Cook static bool pstore_cannot_wait(enum kmsg_dump_reason reason) 152ea84b580SKees Cook { 153ea84b580SKees Cook /* In NMI path, pstore shouldn't block regardless of reason. */ 1549f244e9cSSeiji Aguchi if (in_nmi()) 1559f244e9cSSeiji Aguchi return true; 1569f244e9cSSeiji Aguchi 1579f244e9cSSeiji Aguchi switch (reason) { 1589f244e9cSSeiji Aguchi /* In panic case, other cpus are stopped by smp_send_stop(). */ 1599f244e9cSSeiji Aguchi case KMSG_DUMP_PANIC: 160ea84b580SKees Cook /* Emergency restart shouldn't be blocked. */ 1619f244e9cSSeiji Aguchi case KMSG_DUMP_EMERG: 1629f244e9cSSeiji Aguchi return true; 1639f244e9cSSeiji Aguchi default: 1649f244e9cSSeiji Aguchi return false; 1659f244e9cSSeiji Aguchi } 1669f244e9cSSeiji Aguchi } 1679f244e9cSSeiji Aguchi 16858eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_DEFLATE_COMPRESS) 169cb3bee03SGeliang Tang static int zbufsize_deflate(size_t size) 170b0aad7a9SAruna Balakrishnaiah { 1717de8fe2fSAruna Balakrishnaiah size_t cmpr; 172b0aad7a9SAruna Balakrishnaiah 173cb3bee03SGeliang Tang switch (size) { 1747de8fe2fSAruna Balakrishnaiah /* buffer range for efivars */ 1757de8fe2fSAruna Balakrishnaiah case 1000 ... 2000: 1767de8fe2fSAruna Balakrishnaiah cmpr = 56; 1777de8fe2fSAruna Balakrishnaiah break; 1787de8fe2fSAruna Balakrishnaiah case 2001 ... 3000: 1797de8fe2fSAruna Balakrishnaiah cmpr = 54; 1807de8fe2fSAruna Balakrishnaiah break; 1817de8fe2fSAruna Balakrishnaiah case 3001 ... 3999: 1827de8fe2fSAruna Balakrishnaiah cmpr = 52; 1837de8fe2fSAruna Balakrishnaiah break; 1847de8fe2fSAruna Balakrishnaiah /* buffer range for nvram, erst */ 1857de8fe2fSAruna Balakrishnaiah case 4000 ... 10000: 1867de8fe2fSAruna Balakrishnaiah cmpr = 45; 1877de8fe2fSAruna Balakrishnaiah break; 1887de8fe2fSAruna Balakrishnaiah default: 1897de8fe2fSAruna Balakrishnaiah cmpr = 60; 1907de8fe2fSAruna Balakrishnaiah break; 1917de8fe2fSAruna Balakrishnaiah } 1927de8fe2fSAruna Balakrishnaiah 193cb3bee03SGeliang Tang return (size * 100) / cmpr; 1948cfc8ddcSGeliang Tang } 1958cfc8ddcSGeliang Tang #endif 1968cfc8ddcSGeliang Tang 19758eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZO_COMPRESS) 198cb3bee03SGeliang Tang static int zbufsize_lzo(size_t size) 1998cfc8ddcSGeliang Tang { 200cb3bee03SGeliang Tang return lzo1x_worst_compress(size); 2018cfc8ddcSGeliang Tang } 2028cfc8ddcSGeliang Tang #endif 2038cfc8ddcSGeliang Tang 20458eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZ4_COMPRESS) || IS_ENABLED(CONFIG_PSTORE_LZ4HC_COMPRESS) 205cb3bee03SGeliang Tang static int zbufsize_lz4(size_t size) 2068cfc8ddcSGeliang Tang { 207cb3bee03SGeliang Tang return LZ4_compressBound(size); 208239b7161SGeliang Tang } 209239b7161SGeliang Tang #endif 210239b7161SGeliang Tang 21158eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_842_COMPRESS) 212cb3bee03SGeliang Tang static int zbufsize_842(size_t size) 213239b7161SGeliang Tang { 21455597406SKees Cook return size; 215239b7161SGeliang Tang } 216fe1d4758SKees Cook #endif 2178cfc8ddcSGeliang Tang 2181021bcf4SGeliang Tang #if IS_ENABLED(CONFIG_PSTORE_ZSTD_COMPRESS) 2191021bcf4SGeliang Tang static int zbufsize_zstd(size_t size) 2201021bcf4SGeliang Tang { 221*cf30f6a5SNick Terrell return zstd_compress_bound(size); 2221021bcf4SGeliang Tang } 2231021bcf4SGeliang Tang #endif 2241021bcf4SGeliang Tang 225fe1d4758SKees Cook static const struct pstore_zbackend *zbackend __ro_after_init; 226fe1d4758SKees Cook 227fe1d4758SKees Cook static const struct pstore_zbackend zbackends[] = { 22858eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_DEFLATE_COMPRESS) 229fe1d4758SKees Cook { 230cb3bee03SGeliang Tang .zbufsize = zbufsize_deflate, 231cb3bee03SGeliang Tang .name = "deflate", 232fe1d4758SKees Cook }, 233fe1d4758SKees Cook #endif 23458eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZO_COMPRESS) 235fe1d4758SKees Cook { 236cb3bee03SGeliang Tang .zbufsize = zbufsize_lzo, 237fe1d4758SKees Cook .name = "lzo", 238fe1d4758SKees Cook }, 239fe1d4758SKees Cook #endif 24058eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZ4_COMPRESS) 241fe1d4758SKees Cook { 242cb3bee03SGeliang Tang .zbufsize = zbufsize_lz4, 243fe1d4758SKees Cook .name = "lz4", 244fe1d4758SKees Cook }, 245fe1d4758SKees Cook #endif 24658eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_LZ4HC_COMPRESS) 247fe1d4758SKees Cook { 248cb3bee03SGeliang Tang .zbufsize = zbufsize_lz4, 249fe1d4758SKees Cook .name = "lz4hc", 250fe1d4758SKees Cook }, 251fe1d4758SKees Cook #endif 25258eb5b67SArnd Bergmann #if IS_ENABLED(CONFIG_PSTORE_842_COMPRESS) 253fe1d4758SKees Cook { 254cb3bee03SGeliang Tang .zbufsize = zbufsize_842, 255239b7161SGeliang Tang .name = "842", 256fe1d4758SKees Cook }, 257fe1d4758SKees Cook #endif 2581021bcf4SGeliang Tang #if IS_ENABLED(CONFIG_PSTORE_ZSTD_COMPRESS) 2591021bcf4SGeliang Tang { 2601021bcf4SGeliang Tang .zbufsize = zbufsize_zstd, 2611021bcf4SGeliang Tang .name = "zstd", 2621021bcf4SGeliang Tang }, 2631021bcf4SGeliang Tang #endif 264fe1d4758SKees Cook { } 2658cfc8ddcSGeliang Tang }; 2668cfc8ddcSGeliang Tang 2678cfc8ddcSGeliang Tang static int pstore_compress(const void *in, void *out, 268cb3bee03SGeliang Tang unsigned int inlen, unsigned int outlen) 2698cfc8ddcSGeliang Tang { 270cb3bee03SGeliang Tang int ret; 271cb3bee03SGeliang Tang 27219d8e914SJiri Bohac if (!IS_ENABLED(CONFIG_PSTORE_COMPRESS)) 273fd49e032SMatteo Croce return -EINVAL; 274fd49e032SMatteo Croce 275cb3bee03SGeliang Tang ret = crypto_comp_compress(tfm, in, inlen, out, &outlen); 276cb3bee03SGeliang Tang if (ret) { 277cb3bee03SGeliang Tang pr_err("crypto_comp_compress failed, ret = %d!\n", ret); 278cb3bee03SGeliang Tang return ret; 2798cfc8ddcSGeliang Tang } 2808cfc8ddcSGeliang Tang 281cb3bee03SGeliang Tang return outlen; 282cb3bee03SGeliang Tang } 283cb3bee03SGeliang Tang 2848cfc8ddcSGeliang Tang static void allocate_buf_for_compression(void) 2858cfc8ddcSGeliang Tang { 28695047b05SKees Cook struct crypto_comp *ctx; 28795047b05SKees Cook int size; 28895047b05SKees Cook char *buf; 28995047b05SKees Cook 29095047b05SKees Cook /* Skip if not built-in or compression backend not selected yet. */ 291e698aaf3STobias Regnery if (!IS_ENABLED(CONFIG_PSTORE_COMPRESS) || !zbackend) 292cb3bee03SGeliang Tang return; 293cb3bee03SGeliang Tang 29495047b05SKees Cook /* Skip if no pstore backend yet or compression init already done. */ 29595047b05SKees Cook if (!psinfo || tfm) 29695047b05SKees Cook return; 29795047b05SKees Cook 298cb3bee03SGeliang Tang if (!crypto_has_comp(zbackend->name, 0, 0)) { 29995047b05SKees Cook pr_err("Unknown compression: %s\n", zbackend->name); 300cb3bee03SGeliang Tang return; 301cb3bee03SGeliang Tang } 302cb3bee03SGeliang Tang 30395047b05SKees Cook size = zbackend->zbufsize(psinfo->bufsize); 30495047b05SKees Cook if (size <= 0) { 30595047b05SKees Cook pr_err("Invalid compression size for %s: %d\n", 30695047b05SKees Cook zbackend->name, size); 307cb3bee03SGeliang Tang return; 308cb3bee03SGeliang Tang } 309cb3bee03SGeliang Tang 31095047b05SKees Cook buf = kmalloc(size, GFP_KERNEL); 31195047b05SKees Cook if (!buf) { 31295047b05SKees Cook pr_err("Failed %d byte compression buffer allocation for: %s\n", 31395047b05SKees Cook size, zbackend->name); 314cb3bee03SGeliang Tang return; 3158cfc8ddcSGeliang Tang } 31695047b05SKees Cook 31795047b05SKees Cook ctx = crypto_alloc_comp(zbackend->name, 0, 0); 31895047b05SKees Cook if (IS_ERR_OR_NULL(ctx)) { 31995047b05SKees Cook kfree(buf); 32095047b05SKees Cook pr_err("crypto_alloc_comp('%s') failed: %ld\n", zbackend->name, 32195047b05SKees Cook PTR_ERR(ctx)); 32295047b05SKees Cook return; 32395047b05SKees Cook } 32495047b05SKees Cook 32595047b05SKees Cook /* A non-NULL big_oops_buf indicates compression is available. */ 32695047b05SKees Cook tfm = ctx; 32795047b05SKees Cook big_oops_buf_sz = size; 32895047b05SKees Cook big_oops_buf = buf; 32995047b05SKees Cook 3300eed84ffSKees Cook pr_info("Using crash dump compression: %s\n", zbackend->name); 3318cfc8ddcSGeliang Tang } 3328cfc8ddcSGeliang Tang 3338cfc8ddcSGeliang Tang static void free_buf_for_compression(void) 3348cfc8ddcSGeliang Tang { 335a9fb94a9SPi-Hsun Shih if (IS_ENABLED(CONFIG_PSTORE_COMPRESS) && tfm) { 336cb3bee03SGeliang Tang crypto_free_comp(tfm); 337a9fb94a9SPi-Hsun Shih tfm = NULL; 338a9fb94a9SPi-Hsun Shih } 339cb3bee03SGeliang Tang kfree(big_oops_buf); 340cb3bee03SGeliang Tang big_oops_buf = NULL; 341cb3bee03SGeliang Tang big_oops_buf_sz = 0; 342ee1d2674SGeliang Tang } 343ee1d2674SGeliang Tang 344b0aad7a9SAruna Balakrishnaiah /* 345b0aad7a9SAruna Balakrishnaiah * Called when compression fails, since the printk buffer 346b0aad7a9SAruna Balakrishnaiah * would be fetched for compression calling it again when 347b0aad7a9SAruna Balakrishnaiah * compression fails would have moved the iterator of 348b0aad7a9SAruna Balakrishnaiah * printk buffer which results in fetching old contents. 349b0aad7a9SAruna Balakrishnaiah * Copy the recent messages from big_oops_buf to psinfo->buf 350b0aad7a9SAruna Balakrishnaiah */ 351b0aad7a9SAruna Balakrishnaiah static size_t copy_kmsg_to_buffer(int hsize, size_t len) 352b0aad7a9SAruna Balakrishnaiah { 353b0aad7a9SAruna Balakrishnaiah size_t total_len; 354b0aad7a9SAruna Balakrishnaiah size_t diff; 355b0aad7a9SAruna Balakrishnaiah 356b0aad7a9SAruna Balakrishnaiah total_len = hsize + len; 357b0aad7a9SAruna Balakrishnaiah 358b0aad7a9SAruna Balakrishnaiah if (total_len > psinfo->bufsize) { 359b0aad7a9SAruna Balakrishnaiah diff = total_len - psinfo->bufsize + hsize; 360b0aad7a9SAruna Balakrishnaiah memcpy(psinfo->buf, big_oops_buf, hsize); 361b0aad7a9SAruna Balakrishnaiah memcpy(psinfo->buf + hsize, big_oops_buf + diff, 362b0aad7a9SAruna Balakrishnaiah psinfo->bufsize - hsize); 363b0aad7a9SAruna Balakrishnaiah total_len = psinfo->bufsize; 364b0aad7a9SAruna Balakrishnaiah } else 365b0aad7a9SAruna Balakrishnaiah memcpy(psinfo->buf, big_oops_buf, total_len); 366b0aad7a9SAruna Balakrishnaiah 367b0aad7a9SAruna Balakrishnaiah return total_len; 368b0aad7a9SAruna Balakrishnaiah } 369b0aad7a9SAruna Balakrishnaiah 370e581ca81SKees Cook void pstore_record_init(struct pstore_record *record, 371e581ca81SKees Cook struct pstore_info *psinfo) 372e581ca81SKees Cook { 373e581ca81SKees Cook memset(record, 0, sizeof(*record)); 374e581ca81SKees Cook 375e581ca81SKees Cook record->psi = psinfo; 376c7f3c595SKees Cook 377c7f3c595SKees Cook /* Report zeroed timestamp if called before timekeeping has resumed. */ 3787aaa822eSKees Cook record->time = ns_to_timespec64(ktime_get_real_fast_ns()); 379e581ca81SKees Cook } 380e581ca81SKees Cook 381ca01d6ddSTony Luck /* 3820eed84ffSKees Cook * callback from kmsg_dump. Save as much as we can (up to kmsg_bytes) from the 3830eed84ffSKees Cook * end of the buffer. 384ca01d6ddSTony Luck */ 385ca01d6ddSTony Luck static void pstore_dump(struct kmsg_dumper *dumper, 386e2ae715dSKay Sievers enum kmsg_dump_reason reason) 387ca01d6ddSTony Luck { 388f9f3f02dSJohn Ogness struct kmsg_dump_iter iter; 389e2ae715dSKay Sievers unsigned long total = 0; 390381b872cSSeiji Aguchi const char *why; 391b94fdd07SMatthew Garrett unsigned int part = 1; 392e2ae715dSKay Sievers int ret; 393ca01d6ddSTony Luck 394fb13cb8aSKees Cook why = kmsg_dump_reason_str(reason); 3959f6af27fSTony Luck 396ea84b580SKees Cook if (down_trylock(&psinfo->buf_lock)) { 397ea84b580SKees Cook /* Failed to acquire lock: give up if we cannot wait. */ 398ea84b580SKees Cook if (pstore_cannot_wait(reason)) { 399ea84b580SKees Cook pr_err("dump skipped in %s path: may corrupt error record\n", 400ea84b580SKees Cook in_nmi() ? "NMI" : why); 401959217c8SLi Pengcheng return; 4029f244e9cSSeiji Aguchi } 403ea84b580SKees Cook if (down_interruptible(&psinfo->buf_lock)) { 404ea84b580SKees Cook pr_err("could not grab semaphore?!\n"); 405ea84b580SKees Cook return; 40698e44fdaSNamhyung Kim } 407ea84b580SKees Cook } 408ea84b580SKees Cook 409f9f3f02dSJohn Ogness kmsg_dump_rewind(&iter); 410f9f3f02dSJohn Ogness 411ca01d6ddSTony Luck oopscount++; 412ca01d6ddSTony Luck while (total < kmsg_bytes) { 413e2ae715dSKay Sievers char *dst; 41476cc9580SKees Cook size_t dst_size; 41576cc9580SKees Cook int header_size; 416b0aad7a9SAruna Balakrishnaiah int zipped_len = -1; 41776cc9580SKees Cook size_t dump_size; 418e581ca81SKees Cook struct pstore_record record; 419e581ca81SKees Cook 420e581ca81SKees Cook pstore_record_init(&record, psinfo); 421e581ca81SKees Cook record.type = PSTORE_TYPE_DMESG; 422e581ca81SKees Cook record.count = oopscount; 423e581ca81SKees Cook record.reason = reason; 424e581ca81SKees Cook record.part = part; 425e581ca81SKees Cook record.buf = psinfo->buf; 426e2ae715dSKay Sievers 427ea84b580SKees Cook if (big_oops_buf) { 428b0aad7a9SAruna Balakrishnaiah dst = big_oops_buf; 42976cc9580SKees Cook dst_size = big_oops_buf_sz; 430235f6d15SNamhyung Kim } else { 431235f6d15SNamhyung Kim dst = psinfo->buf; 43276cc9580SKees Cook dst_size = psinfo->bufsize; 433235f6d15SNamhyung Kim } 434235f6d15SNamhyung Kim 43576cc9580SKees Cook /* Write dump header. */ 43676cc9580SKees Cook header_size = snprintf(dst, dst_size, "%s#%d Part%u\n", why, 43776cc9580SKees Cook oopscount, part); 43876cc9580SKees Cook dst_size -= header_size; 439b0aad7a9SAruna Balakrishnaiah 44076cc9580SKees Cook /* Write dump contents. */ 441f9f3f02dSJohn Ogness if (!kmsg_dump_get_buffer(&iter, true, dst + header_size, 44276cc9580SKees Cook dst_size, &dump_size)) 443b0aad7a9SAruna Balakrishnaiah break; 444b0aad7a9SAruna Balakrishnaiah 445ea84b580SKees Cook if (big_oops_buf) { 446b0aad7a9SAruna Balakrishnaiah zipped_len = pstore_compress(dst, psinfo->buf, 44776cc9580SKees Cook header_size + dump_size, 44876cc9580SKees Cook psinfo->bufsize); 449b0aad7a9SAruna Balakrishnaiah 450b0aad7a9SAruna Balakrishnaiah if (zipped_len > 0) { 45176cc9580SKees Cook record.compressed = true; 45276cc9580SKees Cook record.size = zipped_len; 453b0aad7a9SAruna Balakrishnaiah } else { 45476cc9580SKees Cook record.size = copy_kmsg_to_buffer(header_size, 45576cc9580SKees Cook dump_size); 456b0aad7a9SAruna Balakrishnaiah } 457b0aad7a9SAruna Balakrishnaiah } else { 45876cc9580SKees Cook record.size = header_size + dump_size; 459b0aad7a9SAruna Balakrishnaiah } 460b0aad7a9SAruna Balakrishnaiah 46176cc9580SKees Cook ret = psinfo->write(&record); 46278c83c82SKees Cook if (ret == 0 && reason == KMSG_DUMP_OOPS) { 4636dda9266SLuck, Tony pstore_new_entry = 1; 46478c83c82SKees Cook pstore_timer_kick(); 46578c83c82SKees Cook } 466e2ae715dSKay Sievers 46776cc9580SKees Cook total += record.size; 46856280682SMatthew Garrett part++; 469ca01d6ddSTony Luck } 470ea84b580SKees Cook 471ea84b580SKees Cook up(&psinfo->buf_lock); 472ca01d6ddSTony Luck } 473ca01d6ddSTony Luck 474ca01d6ddSTony Luck static struct kmsg_dumper pstore_dumper = { 475ca01d6ddSTony Luck .dump = pstore_dump, 476ca01d6ddSTony Luck }; 477ca01d6ddSTony Luck 478306e5c2aSGeliang Tang /* 479306e5c2aSGeliang Tang * Register with kmsg_dump to save last part of console log on panic. 480306e5c2aSGeliang Tang */ 48118730411SGeliang Tang static void pstore_register_kmsg(void) 48218730411SGeliang Tang { 48318730411SGeliang Tang kmsg_dump_register(&pstore_dumper); 48418730411SGeliang Tang } 48518730411SGeliang Tang 486ee1d2674SGeliang Tang static void pstore_unregister_kmsg(void) 487ee1d2674SGeliang Tang { 488ee1d2674SGeliang Tang kmsg_dump_unregister(&pstore_dumper); 489ee1d2674SGeliang Tang } 490ee1d2674SGeliang Tang 491f29e5956SAnton Vorontsov #ifdef CONFIG_PSTORE_CONSOLE 492f29e5956SAnton Vorontsov static void pstore_console_write(struct console *con, const char *s, unsigned c) 493f29e5956SAnton Vorontsov { 494e581ca81SKees Cook struct pstore_record record; 495f29e5956SAnton Vorontsov 4964c6c4d34SYue Hu if (!c) 4974c6c4d34SYue Hu return; 4984c6c4d34SYue Hu 499e581ca81SKees Cook pstore_record_init(&record, psinfo); 500e581ca81SKees Cook record.type = PSTORE_TYPE_CONSOLE; 501e581ca81SKees Cook 502b10b4711SKees Cook record.buf = (char *)s; 503b10b4711SKees Cook record.size = c; 5044c9ec219SKees Cook psinfo->write(&record); 505f29e5956SAnton Vorontsov } 506f29e5956SAnton Vorontsov 507f29e5956SAnton Vorontsov static struct console pstore_console = { 508f29e5956SAnton Vorontsov .write = pstore_console_write, 509f29e5956SAnton Vorontsov .index = -1, 510f29e5956SAnton Vorontsov }; 511f29e5956SAnton Vorontsov 512f29e5956SAnton Vorontsov static void pstore_register_console(void) 513f29e5956SAnton Vorontsov { 514d195c390SKees Cook /* Show which backend is going to get console writes. */ 515d195c390SKees Cook strscpy(pstore_console.name, psinfo->name, 516d195c390SKees Cook sizeof(pstore_console.name)); 517b7753fc7SKees Cook /* 518b7753fc7SKees Cook * Always initialize flags here since prior unregister_console() 519b7753fc7SKees Cook * calls may have changed settings (specifically CON_ENABLED). 520b7753fc7SKees Cook */ 521b7753fc7SKees Cook pstore_console.flags = CON_PRINTBUFFER | CON_ENABLED | CON_ANYTIME; 522f29e5956SAnton Vorontsov register_console(&pstore_console); 523f29e5956SAnton Vorontsov } 524ee1d2674SGeliang Tang 525ee1d2674SGeliang Tang static void pstore_unregister_console(void) 526ee1d2674SGeliang Tang { 527ee1d2674SGeliang Tang unregister_console(&pstore_console); 528ee1d2674SGeliang Tang } 529f29e5956SAnton Vorontsov #else 530f29e5956SAnton Vorontsov static void pstore_register_console(void) {} 531ee1d2674SGeliang Tang static void pstore_unregister_console(void) {} 532f29e5956SAnton Vorontsov #endif 533f29e5956SAnton Vorontsov 5344c9ec219SKees Cook static int pstore_write_user_compat(struct pstore_record *record, 535fdd03118SKees Cook const char __user *buf) 5365bf6d1b9SMark Salyzyn { 53730800d99SKees Cook int ret = 0; 5385bf6d1b9SMark Salyzyn 53930800d99SKees Cook if (record->buf) 54030800d99SKees Cook return -EINVAL; 5415bf6d1b9SMark Salyzyn 542077090afSGeliang Tang record->buf = memdup_user(buf, record->size); 543dfd6fa39SHirofumi Nakagawa if (IS_ERR(record->buf)) { 544077090afSGeliang Tang ret = PTR_ERR(record->buf); 54530800d99SKees Cook goto out; 5465bf6d1b9SMark Salyzyn } 54730800d99SKees Cook 5484c9ec219SKees Cook ret = record->psi->write(record); 54930800d99SKees Cook 55030800d99SKees Cook kfree(record->buf); 551077090afSGeliang Tang out: 55230800d99SKees Cook record->buf = NULL; 55330800d99SKees Cook 55430800d99SKees Cook return unlikely(ret < 0) ? ret : record->size; 5555bf6d1b9SMark Salyzyn } 5565bf6d1b9SMark Salyzyn 557ca01d6ddSTony Luck /* 558ca01d6ddSTony Luck * platform specific persistent storage driver registers with 559ca01d6ddSTony Luck * us here. If pstore is already mounted, call the platform 560ca01d6ddSTony Luck * read function right away to populate the file system. If not 561ca01d6ddSTony Luck * then the pstore mount code will call us later to fill out 562ca01d6ddSTony Luck * the file system. 563ca01d6ddSTony Luck */ 564ca01d6ddSTony Luck int pstore_register(struct pstore_info *psi) 565ca01d6ddSTony Luck { 5660d7cd09aSKees Cook if (backend && strcmp(backend, psi->name)) { 5670d7cd09aSKees Cook pr_warn("ignoring unexpected backend '%s'\n", psi->name); 5688e48b1a8SLenny Szubowicz return -EPERM; 5690d7cd09aSKees Cook } 5708e48b1a8SLenny Szubowicz 5714c9ec219SKees Cook /* Sanity check flags. */ 5724c9ec219SKees Cook if (!psi->flags) { 5734c9ec219SKees Cook pr_warn("backend '%s' must support at least one frontend\n", 5744c9ec219SKees Cook psi->name); 5754c9ec219SKees Cook return -EINVAL; 5764c9ec219SKees Cook } 5774c9ec219SKees Cook 5784c9ec219SKees Cook /* Check for required functions. */ 5794c9ec219SKees Cook if (!psi->read || !psi->write) { 5804c9ec219SKees Cook pr_warn("backend '%s' must implement read() and write()\n", 5814c9ec219SKees Cook psi->name); 5824c9ec219SKees Cook return -EINVAL; 5834c9ec219SKees Cook } 5844c9ec219SKees Cook 585cab12fd0SKees Cook mutex_lock(&psinfo_lock); 586ca01d6ddSTony Luck if (psinfo) { 5870d7cd09aSKees Cook pr_warn("backend '%s' already loaded: ignoring '%s'\n", 5880d7cd09aSKees Cook psinfo->name, psi->name); 589cab12fd0SKees Cook mutex_unlock(&psinfo_lock); 590ca01d6ddSTony Luck return -EBUSY; 591ca01d6ddSTony Luck } 592dee28e72SMatthew Garrett 5934c9ec219SKees Cook if (!psi->write_user) 5944c9ec219SKees Cook psi->write_user = pstore_write_user_compat; 595ca01d6ddSTony Luck psinfo = psi; 596f6f82851SKees Cook mutex_init(&psinfo->read_mutex); 597ea84b580SKees Cook sema_init(&psinfo->buf_lock, 1); 598ca01d6ddSTony Luck 5998880fa32SKees Cook if (psi->flags & PSTORE_FLAGS_DMESG) 600b0aad7a9SAruna Balakrishnaiah allocate_buf_for_compression(); 601b0aad7a9SAruna Balakrishnaiah 6026dda9266SLuck, Tony pstore_get_records(0); 603ca01d6ddSTony Luck 6043524e688SPavel Tatashin if (psi->flags & PSTORE_FLAGS_DMESG) { 6053524e688SPavel Tatashin pstore_dumper.max_reason = psinfo->max_reason; 60618730411SGeliang Tang pstore_register_kmsg(); 6073524e688SPavel Tatashin } 608c950fd6fSNamhyung Kim if (psi->flags & PSTORE_FLAGS_CONSOLE) 609f29e5956SAnton Vorontsov pstore_register_console(); 610c950fd6fSNamhyung Kim if (psi->flags & PSTORE_FLAGS_FTRACE) 61165f8c95eSAnton Vorontsov pstore_register_ftrace(); 612c950fd6fSNamhyung Kim if (psi->flags & PSTORE_FLAGS_PMSG) 6139d5438f4SMark Salyzyn pstore_register_pmsg(); 614ca01d6ddSTony Luck 6156330d553SKees Cook /* Start watching for new records, if desired. */ 61678c83c82SKees Cook pstore_timer_kick(); 6176dda9266SLuck, Tony 61842222c2aSWang Long /* 61942222c2aSWang Long * Update the module parameter backend, so it is visible 62042222c2aSWang Long * through /sys/module/pstore/parameters/backend 62142222c2aSWang Long */ 622563ca40dSKees Cook backend = kstrdup(psi->name, GFP_KERNEL); 62342222c2aSWang Long 624ef748853SFabian Frederick pr_info("Registered %s as persistent store backend\n", psi->name); 6258e48b1a8SLenny Szubowicz 6266248a066SKees Cook mutex_unlock(&psinfo_lock); 627ca01d6ddSTony Luck return 0; 628ca01d6ddSTony Luck } 629ca01d6ddSTony Luck EXPORT_SYMBOL_GPL(pstore_register); 630ca01d6ddSTony Luck 631ee1d2674SGeliang Tang void pstore_unregister(struct pstore_info *psi) 632ee1d2674SGeliang Tang { 6336248a066SKees Cook /* It's okay to unregister nothing. */ 6346248a066SKees Cook if (!psi) 6356248a066SKees Cook return; 6366248a066SKees Cook 6376248a066SKees Cook mutex_lock(&psinfo_lock); 6386248a066SKees Cook 6396248a066SKees Cook /* Only one backend can be registered at a time. */ 6406248a066SKees Cook if (WARN_ON(psi != psinfo)) { 6416248a066SKees Cook mutex_unlock(&psinfo_lock); 6426248a066SKees Cook return; 6436248a066SKees Cook } 6446248a066SKees Cook 64578c83c82SKees Cook /* Unregister all callbacks. */ 646c950fd6fSNamhyung Kim if (psi->flags & PSTORE_FLAGS_PMSG) 647ee1d2674SGeliang Tang pstore_unregister_pmsg(); 648c950fd6fSNamhyung Kim if (psi->flags & PSTORE_FLAGS_FTRACE) 649ee1d2674SGeliang Tang pstore_unregister_ftrace(); 650c950fd6fSNamhyung Kim if (psi->flags & PSTORE_FLAGS_CONSOLE) 651ee1d2674SGeliang Tang pstore_unregister_console(); 652c950fd6fSNamhyung Kim if (psi->flags & PSTORE_FLAGS_DMESG) 653ee1d2674SGeliang Tang pstore_unregister_kmsg(); 654ee1d2674SGeliang Tang 65578c83c82SKees Cook /* Stop timer and make sure all work has finished. */ 65678c83c82SKees Cook del_timer_sync(&pstore_timer); 65778c83c82SKees Cook flush_work(&pstore_work); 65878c83c82SKees Cook 659609e28bbSKees Cook /* Remove all backend records from filesystem tree. */ 660609e28bbSKees Cook pstore_put_backend_records(psi); 661609e28bbSKees Cook 662ee1d2674SGeliang Tang free_buf_for_compression(); 663ee1d2674SGeliang Tang 664ee1d2674SGeliang Tang psinfo = NULL; 665563ca40dSKees Cook kfree(backend); 666ee1d2674SGeliang Tang backend = NULL; 6676248a066SKees Cook mutex_unlock(&psinfo_lock); 668ee1d2674SGeliang Tang } 669ee1d2674SGeliang Tang EXPORT_SYMBOL_GPL(pstore_unregister); 670ee1d2674SGeliang Tang 671634f8f51SKees Cook static void decompress_record(struct pstore_record *record) 672634f8f51SKees Cook { 673bdabc8e7SKees Cook int ret; 674634f8f51SKees Cook int unzipped_len; 675bdabc8e7SKees Cook char *unzipped, *workspace; 676634f8f51SKees Cook 67719d8e914SJiri Bohac if (!IS_ENABLED(CONFIG_PSTORE_COMPRESS) || !record->compressed) 6784a16d1cbSAnkit Kumar return; 6794a16d1cbSAnkit Kumar 680634f8f51SKees Cook /* Only PSTORE_TYPE_DMESG support compression. */ 6814a16d1cbSAnkit Kumar if (record->type != PSTORE_TYPE_DMESG) { 682634f8f51SKees Cook pr_warn("ignored compressed record type %d\n", record->type); 683634f8f51SKees Cook return; 684634f8f51SKees Cook } 685634f8f51SKees Cook 686bdabc8e7SKees Cook /* Missing compression buffer means compression was not initialized. */ 687634f8f51SKees Cook if (!big_oops_buf) { 688bdabc8e7SKees Cook pr_warn("no decompression method initialized!\n"); 689634f8f51SKees Cook return; 690634f8f51SKees Cook } 691634f8f51SKees Cook 692bdabc8e7SKees Cook /* Allocate enough space to hold max decompression and ECC. */ 693bdabc8e7SKees Cook unzipped_len = big_oops_buf_sz; 694bdabc8e7SKees Cook workspace = kmalloc(unzipped_len + record->ecc_notice_size, 6957e8cc8dcSKees Cook GFP_KERNEL); 696bdabc8e7SKees Cook if (!workspace) 697bdabc8e7SKees Cook return; 698bdabc8e7SKees Cook 699bdabc8e7SKees Cook /* After decompression "unzipped_len" is almost certainly smaller. */ 700bdabc8e7SKees Cook ret = crypto_comp_decompress(tfm, record->buf, record->size, 701bdabc8e7SKees Cook workspace, &unzipped_len); 702bdabc8e7SKees Cook if (ret) { 703bdabc8e7SKees Cook pr_err("crypto_comp_decompress failed, ret = %d!\n", ret); 704bdabc8e7SKees Cook kfree(workspace); 7057e8cc8dcSKees Cook return; 7067e8cc8dcSKees Cook } 7077e8cc8dcSKees Cook 7087e8cc8dcSKees Cook /* Append ECC notice to decompressed buffer. */ 709bdabc8e7SKees Cook memcpy(workspace + unzipped_len, record->buf + record->size, 710634f8f51SKees Cook record->ecc_notice_size); 7117e8cc8dcSKees Cook 712bdabc8e7SKees Cook /* Copy decompressed contents into an minimum-sized allocation. */ 713bdabc8e7SKees Cook unzipped = kmemdup(workspace, unzipped_len + record->ecc_notice_size, 714bdabc8e7SKees Cook GFP_KERNEL); 715bdabc8e7SKees Cook kfree(workspace); 716bdabc8e7SKees Cook if (!unzipped) 717bdabc8e7SKees Cook return; 718bdabc8e7SKees Cook 719bdabc8e7SKees Cook /* Swap out compressed contents with decompressed contents. */ 720634f8f51SKees Cook kfree(record->buf); 721bdabc8e7SKees Cook record->buf = unzipped; 722634f8f51SKees Cook record->size = unzipped_len; 723634f8f51SKees Cook record->compressed = false; 724634f8f51SKees Cook } 725634f8f51SKees Cook 726ca01d6ddSTony Luck /* 7273a7d2fd1SKees Cook * Read all the records from one persistent store backend. Create 7286dda9266SLuck, Tony * files in our filesystem. Don't warn about -EEXIST errors 7296dda9266SLuck, Tony * when we are re-scanning the backing store looking to add new 7306dda9266SLuck, Tony * error records. 731ca01d6ddSTony Luck */ 7323a7d2fd1SKees Cook void pstore_get_backend_records(struct pstore_info *psi, 7333a7d2fd1SKees Cook struct dentry *root, int quiet) 734ca01d6ddSTony Luck { 7352a2b0acfSKees Cook int failed = 0; 736656de42eSKees Cook unsigned int stop_loop = 65536; 737ca01d6ddSTony Luck 7383a7d2fd1SKees Cook if (!psi || !root) 739ca01d6ddSTony Luck return; 740ca01d6ddSTony Luck 741f6f82851SKees Cook mutex_lock(&psi->read_mutex); 7422174f6dfSKees Cook if (psi->open && psi->open(psi)) 74306cf91b4SChen Gong goto out; 74406cf91b4SChen Gong 7451dfff7ddSKees Cook /* 7461dfff7ddSKees Cook * Backend callback read() allocates record.buf. decompress_record() 7471dfff7ddSKees Cook * may reallocate record.buf. On success, pstore_mkfile() will keep 7481dfff7ddSKees Cook * the record.buf, so free it only on failure. 7491dfff7ddSKees Cook */ 750656de42eSKees Cook for (; stop_loop; stop_loop--) { 7512a2b0acfSKees Cook struct pstore_record *record; 7522a2b0acfSKees Cook int rc; 7532a2b0acfSKees Cook 7542a2b0acfSKees Cook record = kzalloc(sizeof(*record), GFP_KERNEL); 7552a2b0acfSKees Cook if (!record) { 7562a2b0acfSKees Cook pr_err("out of memory creating record\n"); 7572a2b0acfSKees Cook break; 7582a2b0acfSKees Cook } 759e581ca81SKees Cook pstore_record_init(record, psi); 7602a2b0acfSKees Cook 7612a2b0acfSKees Cook record->size = psi->read(record); 7622a2b0acfSKees Cook 7632a2b0acfSKees Cook /* No more records left in backend? */ 764f6525b96SDouglas Anderson if (record->size <= 0) { 765f6525b96SDouglas Anderson kfree(record); 7662a2b0acfSKees Cook break; 767f6525b96SDouglas Anderson } 7682a2b0acfSKees Cook 7692a2b0acfSKees Cook decompress_record(record); 7703a7d2fd1SKees Cook rc = pstore_mkfile(root, record); 7711dfff7ddSKees Cook if (rc) { 77283f70f07SKees Cook /* pstore_mkfile() did not take record, so free it. */ 7732a2b0acfSKees Cook kfree(record->buf); 77483f70f07SKees Cook kfree(record); 7751dfff7ddSKees Cook if (rc != -EEXIST || !quiet) 7761dfff7ddSKees Cook failed++; 7771dfff7ddSKees Cook } 778ca01d6ddSTony Luck } 7792174f6dfSKees Cook if (psi->close) 78006cf91b4SChen Gong psi->close(psi); 78106cf91b4SChen Gong out: 782f6f82851SKees Cook mutex_unlock(&psi->read_mutex); 783ca01d6ddSTony Luck 784ca01d6ddSTony Luck if (failed) 785656de42eSKees Cook pr_warn("failed to create %d record(s) from '%s'\n", 786ca01d6ddSTony Luck failed, psi->name); 787656de42eSKees Cook if (!stop_loop) 788656de42eSKees Cook pr_err("looping? Too many records seen from '%s'\n", 789656de42eSKees Cook psi->name); 790ca01d6ddSTony Luck } 791ca01d6ddSTony Luck 7926dda9266SLuck, Tony static void pstore_dowork(struct work_struct *work) 7936dda9266SLuck, Tony { 7946dda9266SLuck, Tony pstore_get_records(1); 7956dda9266SLuck, Tony } 7966dda9266SLuck, Tony 79724ed960aSKees Cook static void pstore_timefunc(struct timer_list *unused) 7986dda9266SLuck, Tony { 7996dda9266SLuck, Tony if (pstore_new_entry) { 8006dda9266SLuck, Tony pstore_new_entry = 0; 8016dda9266SLuck, Tony schedule_work(&pstore_work); 8026dda9266SLuck, Tony } 8036dda9266SLuck, Tony 80478c83c82SKees Cook pstore_timer_kick(); 8056dda9266SLuck, Tony } 8066dda9266SLuck, Tony 8078d82cee2SBen Dooks (Codethink) static void __init pstore_choose_compression(void) 808fe1d4758SKees Cook { 809fe1d4758SKees Cook const struct pstore_zbackend *step; 810fe1d4758SKees Cook 811fe1d4758SKees Cook if (!compress) 812fe1d4758SKees Cook return; 813fe1d4758SKees Cook 814fe1d4758SKees Cook for (step = zbackends; step->name; step++) { 815fe1d4758SKees Cook if (!strcmp(compress, step->name)) { 816fe1d4758SKees Cook zbackend = step; 817fe1d4758SKees Cook return; 818fe1d4758SKees Cook } 819fe1d4758SKees Cook } 820fe1d4758SKees Cook } 821fe1d4758SKees Cook 822cb095afdSKees Cook static int __init pstore_init(void) 823cb095afdSKees Cook { 824cb095afdSKees Cook int ret; 825cb095afdSKees Cook 826cb095afdSKees Cook pstore_choose_compression(); 827cb095afdSKees Cook 82841603165SJoel Fernandes (Google) /* 82941603165SJoel Fernandes (Google) * Check if any pstore backends registered earlier but did not 83041603165SJoel Fernandes (Google) * initialize compression because crypto was not ready. If so, 83141603165SJoel Fernandes (Google) * initialize compression now. 83241603165SJoel Fernandes (Google) */ 83341603165SJoel Fernandes (Google) allocate_buf_for_compression(); 83441603165SJoel Fernandes (Google) 835cb095afdSKees Cook ret = pstore_init_fs(); 836cb095afdSKees Cook if (ret) 8378a57d6d4Schenqiwu free_buf_for_compression(); 838cb095afdSKees Cook 8398a57d6d4Schenqiwu return ret; 840cb095afdSKees Cook } 84141603165SJoel Fernandes (Google) late_initcall(pstore_init); 842cb095afdSKees Cook 843cb095afdSKees Cook static void __exit pstore_exit(void) 844cb095afdSKees Cook { 845cb095afdSKees Cook pstore_exit_fs(); 846cb095afdSKees Cook } 847cb095afdSKees Cook module_exit(pstore_exit) 848cb095afdSKees Cook 849cb095afdSKees Cook MODULE_AUTHOR("Tony Luck <tony.luck@intel.com>"); 850cb095afdSKees Cook MODULE_LICENSE("GPL"); 851