pstore: Improve and update some comments and status output
[linux-block.git] / fs / pstore / platform.c
CommitLineData
ca01d6dd
TL
1/*
2 * Persistent Storage - platform driver interface parts.
3 *
f29e5956 4 * Copyright (C) 2007-2008 Google, Inc.
ca01d6dd
TL
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
ef748853
FF
21#define pr_fmt(fmt) "pstore: " fmt
22
ca01d6dd
TL
23#include <linux/atomic.h>
24#include <linux/types.h>
25#include <linux/errno.h>
26#include <linux/init.h>
27#include <linux/kmsg_dump.h>
f29e5956 28#include <linux/console.h>
ca01d6dd
TL
29#include <linux/module.h>
30#include <linux/pstore.h>
58eb5b67 31#if IS_ENABLED(CONFIG_PSTORE_LZO_COMPRESS)
8cfc8ddc
GT
32#include <linux/lzo.h>
33#endif
58eb5b67 34#if IS_ENABLED(CONFIG_PSTORE_LZ4_COMPRESS) || IS_ENABLED(CONFIG_PSTORE_LZ4HC_COMPRESS)
8cfc8ddc
GT
35#include <linux/lz4.h>
36#endif
1021bcf4
GT
37#if IS_ENABLED(CONFIG_PSTORE_ZSTD_COMPRESS)
38#include <linux/zstd.h>
39#endif
cb3bee03 40#include <linux/crypto.h>
ca01d6dd 41#include <linux/string.h>
6dda9266 42#include <linux/timer.h>
ca01d6dd
TL
43#include <linux/slab.h>
44#include <linux/uaccess.h>
a3f5f075 45#include <linux/jiffies.h>
6dda9266 46#include <linux/workqueue.h>
ca01d6dd
TL
47
48#include "internal.h"
49
6dda9266
LT
50/*
51 * We defer making "oops" entries appear in pstore - see
52 * whether the system is actually still running well enough
53 * to let someone see the entry
54 */
521f7288 55static int pstore_update_ms = -1;
a3f5f075
AV
56module_param_named(update_ms, pstore_update_ms, int, 0600);
57MODULE_PARM_DESC(update_ms, "milliseconds before pstore updates its content "
521f7288
AV
58 "(default is -1, which means runtime updates are disabled; "
59 "enabling this option is not safe, it may lead to further "
60 "corruption on Oopses)");
6dda9266
LT
61
62static int pstore_new_entry;
63
24ed960a 64static void pstore_timefunc(struct timer_list *);
1d27e3e2 65static DEFINE_TIMER(pstore_timer, pstore_timefunc);
6dda9266
LT
66
67static void pstore_dowork(struct work_struct *);
68static DECLARE_WORK(pstore_work, pstore_dowork);
69
ca01d6dd
TL
70/*
71 * pstore_lock just protects "psinfo" during
72 * calls to pstore_register()
73 */
74static DEFINE_SPINLOCK(pstore_lock);
060287b8 75struct pstore_info *psinfo;
ca01d6dd 76
dee28e72 77static char *backend;
fe1d4758
KC
78static char *compress =
79#ifdef CONFIG_PSTORE_COMPRESS_DEFAULT
80 CONFIG_PSTORE_COMPRESS_DEFAULT;
81#else
82 NULL;
83#endif
dee28e72 84
b0aad7a9 85/* Compression parameters */
cb3bee03 86static struct crypto_comp *tfm;
8cfc8ddc
GT
87
88struct pstore_zbackend {
cb3bee03 89 int (*zbufsize)(size_t size);
8cfc8ddc
GT
90 const char *name;
91};
b0aad7a9
AB
92
93static char *big_oops_buf;
94static size_t big_oops_buf_sz;
95
366f7e7a 96/* How much of the console log to snapshot */
349d7438 97unsigned long kmsg_bytes = PSTORE_DEFAULT_KMSG_BYTES;
ca01d6dd 98
366f7e7a 99void pstore_set_kmsg_bytes(int bytes)
ca01d6dd 100{
366f7e7a 101 kmsg_bytes = bytes;
ca01d6dd
TL
102}
103
ca01d6dd
TL
104/* Tag each group of saved records with a sequence number */
105static int oopscount;
106
381b872c
SA
107static const char *get_reason_str(enum kmsg_dump_reason reason)
108{
109 switch (reason) {
110 case KMSG_DUMP_PANIC:
111 return "Panic";
112 case KMSG_DUMP_OOPS:
113 return "Oops";
114 case KMSG_DUMP_EMERG:
115 return "Emergency";
116 case KMSG_DUMP_RESTART:
117 return "Restart";
118 case KMSG_DUMP_HALT:
119 return "Halt";
120 case KMSG_DUMP_POWEROFF:
121 return "Poweroff";
122 default:
123 return "Unknown";
124 }
125}
9f6af27f 126
9f244e9c
SA
127bool pstore_cannot_block_path(enum kmsg_dump_reason reason)
128{
129 /*
130 * In case of NMI path, pstore shouldn't be blocked
131 * regardless of reason.
132 */
133 if (in_nmi())
134 return true;
135
136 switch (reason) {
137 /* In panic case, other cpus are stopped by smp_send_stop(). */
138 case KMSG_DUMP_PANIC:
139 /* Emergency restart shouldn't be blocked by spin lock. */
140 case KMSG_DUMP_EMERG:
141 return true;
142 default:
143 return false;
144 }
145}
146EXPORT_SYMBOL_GPL(pstore_cannot_block_path);
147
58eb5b67 148#if IS_ENABLED(CONFIG_PSTORE_DEFLATE_COMPRESS)
cb3bee03 149static int zbufsize_deflate(size_t size)
adb42f5e 150{
7de8fe2f
AB
151 size_t cmpr;
152
cb3bee03 153 switch (size) {
7de8fe2f
AB
154 /* buffer range for efivars */
155 case 1000 ... 2000:
156 cmpr = 56;
157 break;
158 case 2001 ... 3000:
159 cmpr = 54;
160 break;
161 case 3001 ... 3999:
162 cmpr = 52;
163 break;
164 /* buffer range for nvram, erst */
165 case 4000 ... 10000:
166 cmpr = 45;
167 break;
168 default:
169 cmpr = 60;
170 break;
171 }
b0aad7a9 172
cb3bee03 173 return (size * 100) / cmpr;
8cfc8ddc 174}
8cfc8ddc
GT
175#endif
176
58eb5b67 177#if IS_ENABLED(CONFIG_PSTORE_LZO_COMPRESS)
cb3bee03 178static int zbufsize_lzo(size_t size)
8cfc8ddc 179{
cb3bee03 180 return lzo1x_worst_compress(size);
8cfc8ddc 181}
8cfc8ddc
GT
182#endif
183
58eb5b67 184#if IS_ENABLED(CONFIG_PSTORE_LZ4_COMPRESS) || IS_ENABLED(CONFIG_PSTORE_LZ4HC_COMPRESS)
cb3bee03 185static int zbufsize_lz4(size_t size)
8cfc8ddc 186{
cb3bee03 187 return LZ4_compressBound(size);
8cfc8ddc 188}
239b7161
GT
189#endif
190
58eb5b67 191#if IS_ENABLED(CONFIG_PSTORE_842_COMPRESS)
cb3bee03 192static int zbufsize_842(size_t size)
239b7161 193{
55597406 194 return size;
239b7161 195}
8cfc8ddc
GT
196#endif
197
1021bcf4
GT
198#if IS_ENABLED(CONFIG_PSTORE_ZSTD_COMPRESS)
199static int zbufsize_zstd(size_t size)
200{
201 return ZSTD_compressBound(size);
202}
203#endif
204
fe1d4758
KC
205static const struct pstore_zbackend *zbackend __ro_after_init;
206
207static const struct pstore_zbackend zbackends[] = {
58eb5b67 208#if IS_ENABLED(CONFIG_PSTORE_DEFLATE_COMPRESS)
fe1d4758 209 {
cb3bee03
GT
210 .zbufsize = zbufsize_deflate,
211 .name = "deflate",
fe1d4758
KC
212 },
213#endif
58eb5b67 214#if IS_ENABLED(CONFIG_PSTORE_LZO_COMPRESS)
fe1d4758 215 {
cb3bee03 216 .zbufsize = zbufsize_lzo,
fe1d4758
KC
217 .name = "lzo",
218 },
219#endif
58eb5b67 220#if IS_ENABLED(CONFIG_PSTORE_LZ4_COMPRESS)
fe1d4758 221 {
cb3bee03 222 .zbufsize = zbufsize_lz4,
fe1d4758
KC
223 .name = "lz4",
224 },
225#endif
58eb5b67 226#if IS_ENABLED(CONFIG_PSTORE_LZ4HC_COMPRESS)
fe1d4758 227 {
cb3bee03 228 .zbufsize = zbufsize_lz4,
fe1d4758
KC
229 .name = "lz4hc",
230 },
8cfc8ddc 231#endif
58eb5b67 232#if IS_ENABLED(CONFIG_PSTORE_842_COMPRESS)
fe1d4758 233 {
cb3bee03 234 .zbufsize = zbufsize_842,
fe1d4758
KC
235 .name = "842",
236 },
1021bcf4
GT
237#endif
238#if IS_ENABLED(CONFIG_PSTORE_ZSTD_COMPRESS)
239 {
240 .zbufsize = zbufsize_zstd,
241 .name = "zstd",
242 },
fe1d4758
KC
243#endif
244 { }
245};
8cfc8ddc
GT
246
247static int pstore_compress(const void *in, void *out,
cb3bee03 248 unsigned int inlen, unsigned int outlen)
8cfc8ddc 249{
cb3bee03
GT
250 int ret;
251
252 ret = crypto_comp_compress(tfm, in, inlen, out, &outlen);
253 if (ret) {
254 pr_err("crypto_comp_compress failed, ret = %d!\n", ret);
255 return ret;
256 }
257
258 return outlen;
8cfc8ddc
GT
259}
260
8cfc8ddc
GT
261static void allocate_buf_for_compression(void)
262{
95047b05
KC
263 struct crypto_comp *ctx;
264 int size;
265 char *buf;
266
267 /* Skip if not built-in or compression backend not selected yet. */
e698aaf3 268 if (!IS_ENABLED(CONFIG_PSTORE_COMPRESS) || !zbackend)
cb3bee03
GT
269 return;
270
95047b05
KC
271 /* Skip if no pstore backend yet or compression init already done. */
272 if (!psinfo || tfm)
273 return;
274
cb3bee03 275 if (!crypto_has_comp(zbackend->name, 0, 0)) {
95047b05 276 pr_err("Unknown compression: %s\n", zbackend->name);
cb3bee03
GT
277 return;
278 }
279
95047b05
KC
280 size = zbackend->zbufsize(psinfo->bufsize);
281 if (size <= 0) {
282 pr_err("Invalid compression size for %s: %d\n",
283 zbackend->name, size);
cb3bee03 284 return;
95047b05 285 }
cb3bee03 286
95047b05
KC
287 buf = kmalloc(size, GFP_KERNEL);
288 if (!buf) {
289 pr_err("Failed %d byte compression buffer allocation for: %s\n",
290 size, zbackend->name);
cb3bee03
GT
291 return;
292 }
293
95047b05
KC
294 ctx = crypto_alloc_comp(zbackend->name, 0, 0);
295 if (IS_ERR_OR_NULL(ctx)) {
296 kfree(buf);
297 pr_err("crypto_alloc_comp('%s') failed: %ld\n", zbackend->name,
298 PTR_ERR(ctx));
cb3bee03 299 return;
8cfc8ddc 300 }
95047b05
KC
301
302 /* A non-NULL big_oops_buf indicates compression is available. */
303 tfm = ctx;
304 big_oops_buf_sz = size;
305 big_oops_buf = buf;
306
0eed84ff 307 pr_info("Using crash dump compression: %s\n", zbackend->name);
8cfc8ddc
GT
308}
309
310static void free_buf_for_compression(void)
311{
95047b05 312 if (IS_ENABLED(CONFIG_PSTORE_COMPRESS) && tfm)
cb3bee03
GT
313 crypto_free_comp(tfm);
314 kfree(big_oops_buf);
315 big_oops_buf = NULL;
316 big_oops_buf_sz = 0;
ee1d2674
GT
317}
318
b0aad7a9
AB
319/*
320 * Called when compression fails, since the printk buffer
321 * would be fetched for compression calling it again when
322 * compression fails would have moved the iterator of
323 * printk buffer which results in fetching old contents.
324 * Copy the recent messages from big_oops_buf to psinfo->buf
325 */
326static size_t copy_kmsg_to_buffer(int hsize, size_t len)
327{
328 size_t total_len;
329 size_t diff;
330
331 total_len = hsize + len;
332
333 if (total_len > psinfo->bufsize) {
334 diff = total_len - psinfo->bufsize + hsize;
335 memcpy(psinfo->buf, big_oops_buf, hsize);
336 memcpy(psinfo->buf + hsize, big_oops_buf + diff,
337 psinfo->bufsize - hsize);
338 total_len = psinfo->bufsize;
339 } else
340 memcpy(psinfo->buf, big_oops_buf, total_len);
341
342 return total_len;
343}
344
e581ca81
KC
345void pstore_record_init(struct pstore_record *record,
346 struct pstore_info *psinfo)
347{
348 memset(record, 0, sizeof(*record));
349
350 record->psi = psinfo;
c7f3c595
KC
351
352 /* Report zeroed timestamp if called before timekeeping has resumed. */
7aaa822e 353 record->time = ns_to_timespec64(ktime_get_real_fast_ns());
e581ca81
KC
354}
355
ca01d6dd 356/*
0eed84ff
KC
357 * callback from kmsg_dump. Save as much as we can (up to kmsg_bytes) from the
358 * end of the buffer.
ca01d6dd
TL
359 */
360static void pstore_dump(struct kmsg_dumper *dumper,
e2ae715d 361 enum kmsg_dump_reason reason)
ca01d6dd 362{
e2ae715d 363 unsigned long total = 0;
381b872c 364 const char *why;
b94fdd07 365 unsigned int part = 1;
abd4d558 366 unsigned long flags = 0;
98e44fda 367 int is_locked;
e2ae715d 368 int ret;
ca01d6dd 369
381b872c 370 why = get_reason_str(reason);
9f6af27f 371
9f244e9c
SA
372 if (pstore_cannot_block_path(reason)) {
373 is_locked = spin_trylock_irqsave(&psinfo->buf_lock, flags);
374 if (!is_locked) {
375 pr_err("pstore dump routine blocked in %s path, may corrupt error record\n"
376 , in_nmi() ? "NMI" : why);
959217c8 377 return;
9f244e9c 378 }
98e44fda 379 } else {
abd4d558 380 spin_lock_irqsave(&psinfo->buf_lock, flags);
98e44fda
NK
381 is_locked = 1;
382 }
ca01d6dd
TL
383 oopscount++;
384 while (total < kmsg_bytes) {
e2ae715d 385 char *dst;
76cc9580
KC
386 size_t dst_size;
387 int header_size;
b0aad7a9 388 int zipped_len = -1;
76cc9580 389 size_t dump_size;
e581ca81
KC
390 struct pstore_record record;
391
392 pstore_record_init(&record, psinfo);
393 record.type = PSTORE_TYPE_DMESG;
394 record.count = oopscount;
395 record.reason = reason;
396 record.part = part;
397 record.buf = psinfo->buf;
e2ae715d 398
f0e2efcf 399 if (big_oops_buf && is_locked) {
b0aad7a9 400 dst = big_oops_buf;
76cc9580 401 dst_size = big_oops_buf_sz;
235f6d15
NK
402 } else {
403 dst = psinfo->buf;
76cc9580 404 dst_size = psinfo->bufsize;
235f6d15
NK
405 }
406
76cc9580
KC
407 /* Write dump header. */
408 header_size = snprintf(dst, dst_size, "%s#%d Part%u\n", why,
409 oopscount, part);
410 dst_size -= header_size;
ca01d6dd 411
76cc9580
KC
412 /* Write dump contents. */
413 if (!kmsg_dump_get_buffer(dumper, true, dst + header_size,
414 dst_size, &dump_size))
235f6d15 415 break;
b0aad7a9 416
235f6d15 417 if (big_oops_buf && is_locked) {
b0aad7a9 418 zipped_len = pstore_compress(dst, psinfo->buf,
76cc9580
KC
419 header_size + dump_size,
420 psinfo->bufsize);
b0aad7a9
AB
421
422 if (zipped_len > 0) {
76cc9580
KC
423 record.compressed = true;
424 record.size = zipped_len;
b0aad7a9 425 } else {
76cc9580
KC
426 record.size = copy_kmsg_to_buffer(header_size,
427 dump_size);
b0aad7a9
AB
428 }
429 } else {
76cc9580 430 record.size = header_size + dump_size;
b0aad7a9 431 }
ca01d6dd 432
76cc9580 433 ret = psinfo->write(&record);
b238b8fa 434 if (ret == 0 && reason == KMSG_DUMP_OOPS && pstore_is_mounted())
6dda9266 435 pstore_new_entry = 1;
e2ae715d 436
76cc9580 437 total += record.size;
56280682 438 part++;
ca01d6dd 439 }
98e44fda 440 if (is_locked)
abd4d558 441 spin_unlock_irqrestore(&psinfo->buf_lock, flags);
ca01d6dd
TL
442}
443
444static struct kmsg_dumper pstore_dumper = {
445 .dump = pstore_dump,
446};
447
306e5c2a
GT
448/*
449 * Register with kmsg_dump to save last part of console log on panic.
450 */
18730411
GT
451static void pstore_register_kmsg(void)
452{
453 kmsg_dump_register(&pstore_dumper);
454}
455
ee1d2674
GT
456static void pstore_unregister_kmsg(void)
457{
458 kmsg_dump_unregister(&pstore_dumper);
459}
460
f29e5956
AV
461#ifdef CONFIG_PSTORE_CONSOLE
462static void pstore_console_write(struct console *con, const char *s, unsigned c)
463{
b77fa617 464 struct pstore_record record;
f29e5956 465
b77fa617
KC
466 pstore_record_init(&record, psinfo);
467 record.type = PSTORE_TYPE_CONSOLE;
80c9d03c 468
b77fa617
KC
469 record.buf = (char *)s;
470 record.size = c;
471 psinfo->write(&record);
f29e5956
AV
472}
473
474static struct console pstore_console = {
475 .name = "pstore",
476 .write = pstore_console_write,
477 .flags = CON_PRINTBUFFER | CON_ENABLED | CON_ANYTIME,
478 .index = -1,
479};
480
481static void pstore_register_console(void)
482{
483 register_console(&pstore_console);
484}
ee1d2674
GT
485
486static void pstore_unregister_console(void)
487{
488 unregister_console(&pstore_console);
489}
f29e5956
AV
490#else
491static void pstore_register_console(void) {}
ee1d2674 492static void pstore_unregister_console(void) {}
f29e5956
AV
493#endif
494
4c9ec219
KC
495static int pstore_write_user_compat(struct pstore_record *record,
496 const char __user *buf)
5bf6d1b9 497{
30800d99
KC
498 int ret = 0;
499
500 if (record->buf)
501 return -EINVAL;
502
077090af 503 record->buf = memdup_user(buf, record->size);
dfd6fa39 504 if (IS_ERR(record->buf)) {
077090af 505 ret = PTR_ERR(record->buf);
30800d99 506 goto out;
5bf6d1b9 507 }
30800d99
KC
508
509 ret = record->psi->write(record);
510
30800d99 511 kfree(record->buf);
077090af 512out:
30800d99
KC
513 record->buf = NULL;
514
515 return unlikely(ret < 0) ? ret : record->size;
5bf6d1b9
MS
516}
517
ca01d6dd
TL
518/*
519 * platform specific persistent storage driver registers with
520 * us here. If pstore is already mounted, call the platform
521 * read function right away to populate the file system. If not
522 * then the pstore mount code will call us later to fill out
523 * the file system.
ca01d6dd
TL
524 */
525int pstore_register(struct pstore_info *psi)
526{
527 struct module *owner = psi->owner;
528
0d7cd09a
KC
529 if (backend && strcmp(backend, psi->name)) {
530 pr_warn("ignoring unexpected backend '%s'\n", psi->name);
8e48b1a8 531 return -EPERM;
0d7cd09a 532 }
8e48b1a8 533
4c9ec219
KC
534 /* Sanity check flags. */
535 if (!psi->flags) {
536 pr_warn("backend '%s' must support at least one frontend\n",
537 psi->name);
538 return -EINVAL;
539 }
540
541 /* Check for required functions. */
542 if (!psi->read || !psi->write) {
543 pr_warn("backend '%s' must implement read() and write()\n",
544 psi->name);
545 return -EINVAL;
546 }
547
ca01d6dd
TL
548 spin_lock(&pstore_lock);
549 if (psinfo) {
0d7cd09a
KC
550 pr_warn("backend '%s' already loaded: ignoring '%s'\n",
551 psinfo->name, psi->name);
ca01d6dd
TL
552 spin_unlock(&pstore_lock);
553 return -EBUSY;
554 }
dee28e72 555
4c9ec219
KC
556 if (!psi->write_user)
557 psi->write_user = pstore_write_user_compat;
ca01d6dd 558 psinfo = psi;
f6f82851 559 mutex_init(&psinfo->read_mutex);
ca01d6dd
TL
560 spin_unlock(&pstore_lock);
561
562 if (owner && !try_module_get(owner)) {
563 psinfo = NULL;
564 return -EINVAL;
565 }
566
b0aad7a9
AB
567 allocate_buf_for_compression();
568
ca01d6dd 569 if (pstore_is_mounted())
6dda9266 570 pstore_get_records(0);
ca01d6dd 571
c950fd6f
NK
572 if (psi->flags & PSTORE_FLAGS_DMESG)
573 pstore_register_kmsg();
574 if (psi->flags & PSTORE_FLAGS_CONSOLE)
df36ac1b 575 pstore_register_console();
c950fd6f 576 if (psi->flags & PSTORE_FLAGS_FTRACE)
df36ac1b 577 pstore_register_ftrace();
c950fd6f 578 if (psi->flags & PSTORE_FLAGS_PMSG)
9d5438f4 579 pstore_register_pmsg();
ca01d6dd 580
6330d553 581 /* Start watching for new records, if desired. */
a3f5f075
AV
582 if (pstore_update_ms >= 0) {
583 pstore_timer.expires = jiffies +
584 msecs_to_jiffies(pstore_update_ms);
585 add_timer(&pstore_timer);
586 }
6dda9266 587
42222c2a
WL
588 /*
589 * Update the module parameter backend, so it is visible
590 * through /sys/module/pstore/parameters/backend
591 */
592 backend = psi->name;
593
ef748853 594 pr_info("Registered %s as persistent store backend\n", psi->name);
8e48b1a8 595
1344dd86
KC
596 module_put(owner);
597
ca01d6dd
TL
598 return 0;
599}
600EXPORT_SYMBOL_GPL(pstore_register);
601
ee1d2674
GT
602void pstore_unregister(struct pstore_info *psi)
603{
6330d553
KC
604 /* Stop timer and make sure all work has finished. */
605 pstore_update_ms = -1;
606 del_timer_sync(&pstore_timer);
607 flush_work(&pstore_work);
608
c950fd6f 609 if (psi->flags & PSTORE_FLAGS_PMSG)
a1db8060 610 pstore_unregister_pmsg();
c950fd6f 611 if (psi->flags & PSTORE_FLAGS_FTRACE)
a1db8060 612 pstore_unregister_ftrace();
c950fd6f 613 if (psi->flags & PSTORE_FLAGS_CONSOLE)
a1db8060 614 pstore_unregister_console();
c950fd6f
NK
615 if (psi->flags & PSTORE_FLAGS_DMESG)
616 pstore_unregister_kmsg();
ee1d2674
GT
617
618 free_buf_for_compression();
619
620 psinfo = NULL;
621 backend = NULL;
622}
623EXPORT_SYMBOL_GPL(pstore_unregister);
624
634f8f51
KC
625static void decompress_record(struct pstore_record *record)
626{
bdabc8e7 627 int ret;
634f8f51 628 int unzipped_len;
bdabc8e7 629 char *unzipped, *workspace;
634f8f51 630
4a16d1cb
AK
631 if (!record->compressed)
632 return;
633
634f8f51 634 /* Only PSTORE_TYPE_DMESG support compression. */
4a16d1cb 635 if (record->type != PSTORE_TYPE_DMESG) {
634f8f51
KC
636 pr_warn("ignored compressed record type %d\n", record->type);
637 return;
638 }
639
bdabc8e7 640 /* Missing compression buffer means compression was not initialized. */
634f8f51 641 if (!big_oops_buf) {
bdabc8e7 642 pr_warn("no decompression method initialized!\n");
634f8f51
KC
643 return;
644 }
645
bdabc8e7
KC
646 /* Allocate enough space to hold max decompression and ECC. */
647 unzipped_len = big_oops_buf_sz;
648 workspace = kmalloc(unzipped_len + record->ecc_notice_size,
649 GFP_KERNEL);
650 if (!workspace)
7e8cc8dc 651 return;
7e8cc8dc 652
bdabc8e7
KC
653 /* After decompression "unzipped_len" is almost certainly smaller. */
654 ret = crypto_comp_decompress(tfm, record->buf, record->size,
655 workspace, &unzipped_len);
656 if (ret) {
657 pr_err("crypto_comp_decompress failed, ret = %d!\n", ret);
658 kfree(workspace);
7e8cc8dc
KC
659 return;
660 }
7e8cc8dc
KC
661
662 /* Append ECC notice to decompressed buffer. */
bdabc8e7 663 memcpy(workspace + unzipped_len, record->buf + record->size,
7e8cc8dc
KC
664 record->ecc_notice_size);
665
bdabc8e7
KC
666 /* Copy decompressed contents into an minimum-sized allocation. */
667 unzipped = kmemdup(workspace, unzipped_len + record->ecc_notice_size,
668 GFP_KERNEL);
669 kfree(workspace);
670 if (!unzipped)
671 return;
672
673 /* Swap out compressed contents with decompressed contents. */
7e8cc8dc 674 kfree(record->buf);
bdabc8e7 675 record->buf = unzipped;
7e8cc8dc
KC
676 record->size = unzipped_len;
677 record->compressed = false;
634f8f51
KC
678}
679
ca01d6dd 680/*
3a7d2fd1 681 * Read all the records from one persistent store backend. Create
6dda9266
LT
682 * files in our filesystem. Don't warn about -EEXIST errors
683 * when we are re-scanning the backing store looking to add new
684 * error records.
ca01d6dd 685 */
3a7d2fd1
KC
686void pstore_get_backend_records(struct pstore_info *psi,
687 struct dentry *root, int quiet)
ca01d6dd 688{
2a2b0acf 689 int failed = 0;
656de42e 690 unsigned int stop_loop = 65536;
ca01d6dd 691
3a7d2fd1 692 if (!psi || !root)
ca01d6dd
TL
693 return;
694
f6f82851 695 mutex_lock(&psi->read_mutex);
2174f6df 696 if (psi->open && psi->open(psi))
06cf91b4
CG
697 goto out;
698
1dfff7dd
KC
699 /*
700 * Backend callback read() allocates record.buf. decompress_record()
701 * may reallocate record.buf. On success, pstore_mkfile() will keep
702 * the record.buf, so free it only on failure.
703 */
656de42e 704 for (; stop_loop; stop_loop--) {
2a2b0acf
KC
705 struct pstore_record *record;
706 int rc;
707
708 record = kzalloc(sizeof(*record), GFP_KERNEL);
709 if (!record) {
710 pr_err("out of memory creating record\n");
711 break;
712 }
e581ca81 713 pstore_record_init(record, psi);
2a2b0acf
KC
714
715 record->size = psi->read(record);
716
717 /* No more records left in backend? */
f6525b96
DA
718 if (record->size <= 0) {
719 kfree(record);
2a2b0acf 720 break;
f6525b96 721 }
2a2b0acf
KC
722
723 decompress_record(record);
3a7d2fd1 724 rc = pstore_mkfile(root, record);
1dfff7dd 725 if (rc) {
83f70f07 726 /* pstore_mkfile() did not take record, so free it. */
2a2b0acf 727 kfree(record->buf);
83f70f07 728 kfree(record);
1dfff7dd
KC
729 if (rc != -EEXIST || !quiet)
730 failed++;
731 }
ca01d6dd 732 }
2174f6df
KC
733 if (psi->close)
734 psi->close(psi);
06cf91b4 735out:
f6f82851 736 mutex_unlock(&psi->read_mutex);
ca01d6dd
TL
737
738 if (failed)
656de42e 739 pr_warn("failed to create %d record(s) from '%s'\n",
ef748853 740 failed, psi->name);
656de42e
KC
741 if (!stop_loop)
742 pr_err("looping? Too many records seen from '%s'\n",
743 psi->name);
ca01d6dd
TL
744}
745
6dda9266
LT
746static void pstore_dowork(struct work_struct *work)
747{
748 pstore_get_records(1);
749}
750
24ed960a 751static void pstore_timefunc(struct timer_list *unused)
6dda9266
LT
752{
753 if (pstore_new_entry) {
754 pstore_new_entry = 0;
755 schedule_work(&pstore_work);
756 }
757
6330d553
KC
758 if (pstore_update_ms >= 0)
759 mod_timer(&pstore_timer,
760 jiffies + msecs_to_jiffies(pstore_update_ms));
6dda9266
LT
761}
762
fe1d4758
KC
763void __init pstore_choose_compression(void)
764{
765 const struct pstore_zbackend *step;
766
767 if (!compress)
768 return;
769
770 for (step = zbackends; step->name; step++) {
771 if (!strcmp(compress, step->name)) {
772 zbackend = step;
fe1d4758
KC
773 return;
774 }
775 }
776}
777
cb095afd
KC
778static int __init pstore_init(void)
779{
780 int ret;
781
782 pstore_choose_compression();
783
41603165
JFG
784 /*
785 * Check if any pstore backends registered earlier but did not
786 * initialize compression because crypto was not ready. If so,
787 * initialize compression now.
788 */
95047b05 789 allocate_buf_for_compression();
41603165 790
cb095afd
KC
791 ret = pstore_init_fs();
792 if (ret)
793 return ret;
794
795 return 0;
796}
41603165 797late_initcall(pstore_init);
cb095afd
KC
798
799static void __exit pstore_exit(void)
800{
801 pstore_exit_fs();
802}
803module_exit(pstore_exit)
804
fe1d4758
KC
805module_param(compress, charp, 0444);
806MODULE_PARM_DESC(compress, "Pstore compression to use");
807
dee28e72
MG
808module_param(backend, charp, 0444);
809MODULE_PARM_DESC(backend, "Pstore backend to use");
cb095afd
KC
810
811MODULE_AUTHOR("Tony Luck <tony.luck@intel.com>");
812MODULE_LICENSE("GPL");