]> git.proxmox.com Git - mirror_spl-debian.git/blame - module/spl/spl-err.c
Merge tag 'upstream/0.7.8'
[mirror_spl-debian.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 22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
34ee731f 23 *
716154c5
BB
24 * Solaris Porting Layer (SPL) Error Implementation.
25\*****************************************************************************/
715f6251 26
05ae387b 27#include <sys/sysmacros.h>
28#include <sys/cmn_err.h>
10946b02 29#include <linux/ratelimit.h>
05ae387b 30
ec06701b
AX
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 */
34ee731f 37/* BEGIN CSTYLED */
ec06701b
AX
38unsigned int spl_panic_halt;
39module_param(spl_panic_halt, uint, 0644);
34ee731f
AX
40MODULE_PARM_DESC(spl_panic_halt, "Cause kernel panic on assertion failures");
41/* END CSTYLED */
ec06701b 42
10946b02
AX
43/*
44 * Limit the number of stack traces dumped to not more than 5 every
45 * 60 seconds to prevent denial-of-service attacks from debug code.
46 */
47DEFINE_RATELIMIT_STATE(dumpstack_ratelimit_state, 60 * HZ, 5);
937879f1 48
10946b02
AX
49void
50spl_dumpstack(void)
51{
52 if (__ratelimit(&dumpstack_ratelimit_state)) {
53 printk("Showing stack for process %d\n", current->pid);
54 dump_stack();
55 }
56}
57EXPORT_SYMBOL(spl_dumpstack);
05ae387b 58
9e4fb5c2 59int
34ee731f
AX
60spl_panic(const char *file, const char *func, int line, const char *fmt, ...)
61{
10946b02 62 const char *newfile;
9e4fb5c2
LG
63 char msg[MAXMSGLEN];
64 va_list ap;
65
10946b02
AX
66 newfile = strrchr(file, '/');
67 if (newfile != NULL)
68 newfile = newfile + 1;
69 else
70 newfile = file;
71
9e4fb5c2 72 va_start(ap, fmt);
10946b02 73 (void) vsnprintf(msg, sizeof (msg), fmt, ap);
9e4fb5c2 74 va_end(ap);
10946b02 75
9e4fb5c2 76 printk(KERN_EMERG "%s", msg);
10946b02 77 printk(KERN_EMERG "PANIC at %s:%d:%s()\n", newfile, line, func);
ec06701b
AX
78 if (spl_panic_halt)
79 panic("%s", msg);
80
10946b02 81 spl_dumpstack();
9e4fb5c2 82
10946b02 83 /* Halt the thread to facilitate further debugging */
2ea56c1d 84 set_current_state(TASK_UNINTERRUPTIBLE);
10946b02
AX
85 while (1)
86 schedule();
05ae387b 87
10946b02
AX
88 /* Unreachable */
89 return (1);
90}
91EXPORT_SYMBOL(spl_panic);
05ae387b 92
05ae387b 93void
94vcmn_err(int ce, const char *fmt, va_list ap)
95{
96 char msg[MAXMSGLEN];
97
10946b02 98 vsnprintf(msg, MAXMSGLEN - 1, fmt, ap);
05ae387b 99
10946b02
AX
100 switch (ce) {
101 case CE_IGNORE:
102 break;
103 case CE_CONT:
104 printk("%s", msg);
105 break;
106 case CE_NOTE:
107 printk(KERN_NOTICE "NOTICE: %s\n", msg);
108 break;
109 case CE_WARN:
110 printk(KERN_WARNING "WARNING: %s\n", msg);
111 break;
112 case CE_PANIC:
113 printk(KERN_EMERG "PANIC: %s\n", msg);
114 spl_dumpstack();
4bd577d0 115
10946b02 116 /* Halt the thread to facilitate further debugging */
2ea56c1d 117 set_current_state(TASK_UNINTERRUPTIBLE);
10946b02
AX
118 while (1)
119 schedule();
f7e8739c 120 }
05ae387b 121} /* vcmn_err() */
122EXPORT_SYMBOL(vcmn_err);
4bd577d0
BB
123
124void
125cmn_err(int ce, const char *fmt, ...)
126{
127 va_list ap;
128
129 va_start(ap, fmt);
130 vcmn_err(ce, fmt, ap);
131 va_end(ap);
132} /* cmn_err() */
133EXPORT_SYMBOL(cmn_err);