]> git.proxmox.com Git - mirror_spl.git/blame - module/spl/spl-err.c
Module parameter to enable spl_panic() to panic the kernel
[mirror_spl.git] / module / spl / spl-err.c
CommitLineData
716154c5
BB
1/*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5 8 * This file is part of the SPL, Solaris Porting Layer.
3d6af2dd 9 * For details, see <http://zfsonlinux.org/>.
716154c5
BB
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
715f6251 15 *
716154c5 16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
715f6251 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
716154c5
BB
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *****************************************************************************
24 * Solaris Porting Layer (SPL) Error Implementation.
25\*****************************************************************************/
715f6251 26
05ae387b 27#include <sys/sysmacros.h>
28#include <sys/cmn_err.h>
8d9a23e8 29#include <linux/ratelimit.h>
05ae387b 30
410f7ab5
OD
31/*
32 * It is often useful to actually have the panic crash the node so you
33 * can then get notified of the event, get the crashdump for later
34 * analysis and other such goodies.
35 * But we would still default to the current default of not to do that.
36 */
37unsigned int spl_panic_halt;
38module_param(spl_panic_halt, uint, 0644);
39MODULE_PARM_DESC(spl_panic_halt,
40 "Cause kernel panic on assertion failures");
41
8d9a23e8
BB
42/*
43 * Limit the number of stack traces dumped to not more than 5 every
44 * 60 seconds to prevent denial-of-service attacks from debug code.
45 */
46DEFINE_RATELIMIT_STATE(dumpstack_ratelimit_state, 60 * HZ, 5);
937879f1 47
8d9a23e8
BB
48void
49spl_dumpstack(void)
50{
51 if (__ratelimit(&dumpstack_ratelimit_state)) {
52 printk("Showing stack for process %d\n", current->pid);
53 dump_stack();
54 }
55}
56EXPORT_SYMBOL(spl_dumpstack);
05ae387b 57
f6a86961 58int
8d9a23e8
BB
59spl_panic(const char *file, const char *func, int line, const char *fmt, ...) {
60 const char *newfile;
f6a86961
TC
61 char msg[MAXMSGLEN];
62 va_list ap;
63
8d9a23e8
BB
64 newfile = strrchr(file, '/');
65 if (newfile != NULL)
66 newfile = newfile + 1;
67 else
68 newfile = file;
69
f6a86961 70 va_start(ap, fmt);
8d9a23e8 71 (void) vsnprintf(msg, sizeof (msg), fmt, ap);
f6a86961 72 va_end(ap);
8d9a23e8 73
f6a86961 74 printk(KERN_EMERG "%s", msg);
8d9a23e8 75 printk(KERN_EMERG "PANIC at %s:%d:%s()\n", newfile, line, func);
410f7ab5
OD
76 if (spl_panic_halt)
77 panic("%s", msg);
78
8d9a23e8 79 spl_dumpstack();
f6a86961 80
8d9a23e8 81 /* Halt the thread to facilitate further debugging */
8d5feeca 82 set_current_state(TASK_UNINTERRUPTIBLE);
8d9a23e8
BB
83 while (1)
84 schedule();
05ae387b 85
8d9a23e8
BB
86 /* Unreachable */
87 return (1);
88}
89EXPORT_SYMBOL(spl_panic);
05ae387b 90
05ae387b 91void
92vcmn_err(int ce, const char *fmt, va_list ap)
93{
94 char msg[MAXMSGLEN];
95
8d9a23e8 96 vsnprintf(msg, MAXMSGLEN - 1, fmt, ap);
05ae387b 97
8d9a23e8
BB
98 switch (ce) {
99 case CE_IGNORE:
100 break;
101 case CE_CONT:
102 printk("%s", msg);
103 break;
104 case CE_NOTE:
105 printk(KERN_NOTICE "NOTICE: %s\n", msg);
106 break;
107 case CE_WARN:
108 printk(KERN_WARNING "WARNING: %s\n", msg);
109 break;
110 case CE_PANIC:
111 printk(KERN_EMERG "PANIC: %s\n", msg);
112 spl_dumpstack();
4bd577d0 113
8d9a23e8 114 /* Halt the thread to facilitate further debugging */
8d5feeca 115 set_current_state(TASK_UNINTERRUPTIBLE);
8d9a23e8
BB
116 while (1)
117 schedule();
f7e8739c 118 }
05ae387b 119} /* vcmn_err() */
120EXPORT_SYMBOL(vcmn_err);
4bd577d0
BB
121
122void
123cmn_err(int ce, const char *fmt, ...)
124{
125 va_list ap;
126
127 va_start(ap, fmt);
128 vcmn_err(ce, fmt, ap);
129 va_end(ap);
130} /* cmn_err() */
131EXPORT_SYMBOL(cmn_err);