Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ipmi_watchdog.c |
| 3 | * |
| 4 | * A watchdog timer based upon the IPMI interface. |
| 5 | * |
| 6 | * Author: MontaVista Software, Inc. |
| 7 | * Corey Minyard <minyard@mvista.com> |
| 8 | * source@mvista.com |
| 9 | * |
| 10 | * Copyright 2002 MontaVista Software Inc. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify it |
| 13 | * under the terms of the GNU General Public License as published by the |
| 14 | * Free Software Foundation; either version 2 of the License, or (at your |
| 15 | * option) any later version. |
| 16 | * |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 19 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 20 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 23 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 24 | * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR |
| 26 | * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
| 27 | * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | * |
| 29 | * You should have received a copy of the GNU General Public License along |
| 30 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 31 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 32 | */ |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/module.h> |
| 35 | #include <linux/moduleparam.h> |
| 36 | #include <linux/ipmi.h> |
| 37 | #include <linux/ipmi_smi.h> |
Arnd Bergmann | 609146f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 38 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/watchdog.h> |
| 40 | #include <linux/miscdevice.h> |
| 41 | #include <linux/init.h> |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 42 | #include <linux/completion.h> |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 43 | #include <linux/kdebug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <linux/rwsem.h> |
| 45 | #include <linux/errno.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 46 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/notifier.h> |
| 48 | #include <linux/nmi.h> |
| 49 | #include <linux/reboot.h> |
| 50 | #include <linux/wait.h> |
| 51 | #include <linux/poll.h> |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 52 | #include <linux/string.h> |
| 53 | #include <linux/ctype.h> |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 54 | #include <linux/delay.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 55 | #include <linux/atomic.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 56 | #include <linux/sched/signal.h> |
Corey Minyard | f64da95 | 2007-05-08 00:23:58 -0700 | [diff] [blame] | 57 | |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 58 | #ifdef CONFIG_X86 |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 59 | /* |
| 60 | * This is ugly, but I've determined that x86 is the only architecture |
| 61 | * that can reasonably support the IPMI NMI watchdog timeout at this |
| 62 | * time. If another architecture adds this capability somehow, it |
| 63 | * will have to be a somewhat different mechanism and I have no idea |
| 64 | * how it will work. So in the unlikely event that another |
| 65 | * architecture supports this, we can figure out a good generic |
| 66 | * mechanism for it at that time. |
| 67 | */ |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 68 | #include <asm/kdebug.h> |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 69 | #include <asm/nmi.h> |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 70 | #define HAVE_DIE_NMI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | #endif |
| 72 | |
| 73 | #define PFX "IPMI Watchdog: " |
| 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | /* |
| 76 | * The IPMI command/response information for the watchdog timer. |
| 77 | */ |
| 78 | |
| 79 | /* values for byte 1 of the set command, byte 2 of the get response. */ |
| 80 | #define WDOG_DONT_LOG (1 << 7) |
| 81 | #define WDOG_DONT_STOP_ON_SET (1 << 6) |
| 82 | #define WDOG_SET_TIMER_USE(byte, use) \ |
| 83 | byte = ((byte) & 0xf8) | ((use) & 0x7) |
| 84 | #define WDOG_GET_TIMER_USE(byte) ((byte) & 0x7) |
| 85 | #define WDOG_TIMER_USE_BIOS_FRB2 1 |
| 86 | #define WDOG_TIMER_USE_BIOS_POST 2 |
| 87 | #define WDOG_TIMER_USE_OS_LOAD 3 |
| 88 | #define WDOG_TIMER_USE_SMS_OS 4 |
| 89 | #define WDOG_TIMER_USE_OEM 5 |
| 90 | |
| 91 | /* values for byte 2 of the set command, byte 3 of the get response. */ |
| 92 | #define WDOG_SET_PRETIMEOUT_ACT(byte, use) \ |
| 93 | byte = ((byte) & 0x8f) | (((use) & 0x7) << 4) |
| 94 | #define WDOG_GET_PRETIMEOUT_ACT(byte) (((byte) >> 4) & 0x7) |
| 95 | #define WDOG_PRETIMEOUT_NONE 0 |
| 96 | #define WDOG_PRETIMEOUT_SMI 1 |
| 97 | #define WDOG_PRETIMEOUT_NMI 2 |
| 98 | #define WDOG_PRETIMEOUT_MSG_INT 3 |
| 99 | |
| 100 | /* Operations that can be performed on a pretimout. */ |
| 101 | #define WDOG_PREOP_NONE 0 |
| 102 | #define WDOG_PREOP_PANIC 1 |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 103 | /* Cause data to be available to read. Doesn't work in NMI mode. */ |
| 104 | #define WDOG_PREOP_GIVE_DATA 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | /* Actions to perform on a full timeout. */ |
| 107 | #define WDOG_SET_TIMEOUT_ACT(byte, use) \ |
| 108 | byte = ((byte) & 0xf8) | ((use) & 0x7) |
| 109 | #define WDOG_GET_TIMEOUT_ACT(byte) ((byte) & 0x7) |
| 110 | #define WDOG_TIMEOUT_NONE 0 |
| 111 | #define WDOG_TIMEOUT_RESET 1 |
| 112 | #define WDOG_TIMEOUT_POWER_DOWN 2 |
| 113 | #define WDOG_TIMEOUT_POWER_CYCLE 3 |
| 114 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 115 | /* |
| 116 | * Byte 3 of the get command, byte 4 of the get response is the |
| 117 | * pre-timeout in seconds. |
| 118 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
| 120 | /* Bits for setting byte 4 of the set command, byte 5 of the get response. */ |
| 121 | #define WDOG_EXPIRE_CLEAR_BIOS_FRB2 (1 << 1) |
| 122 | #define WDOG_EXPIRE_CLEAR_BIOS_POST (1 << 2) |
| 123 | #define WDOG_EXPIRE_CLEAR_OS_LOAD (1 << 3) |
| 124 | #define WDOG_EXPIRE_CLEAR_SMS_OS (1 << 4) |
| 125 | #define WDOG_EXPIRE_CLEAR_OEM (1 << 5) |
| 126 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 127 | /* |
| 128 | * Setting/getting the watchdog timer value. This is for bytes 5 and |
| 129 | * 6 (the timeout time) of the set command, and bytes 6 and 7 (the |
| 130 | * timeout time) and 8 and 9 (the current countdown value) of the |
| 131 | * response. The timeout value is given in seconds (in the command it |
| 132 | * is 100ms intervals). |
| 133 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | #define WDOG_SET_TIMEOUT(byte1, byte2, val) \ |
| 135 | (byte1) = (((val) * 10) & 0xff), (byte2) = (((val) * 10) >> 8) |
| 136 | #define WDOG_GET_TIMEOUT(byte1, byte2) \ |
| 137 | (((byte1) | ((byte2) << 8)) / 10) |
| 138 | |
| 139 | #define IPMI_WDOG_RESET_TIMER 0x22 |
| 140 | #define IPMI_WDOG_SET_TIMER 0x24 |
| 141 | #define IPMI_WDOG_GET_TIMER 0x25 |
| 142 | |
Corey Minyard | b75d91f | 2011-12-19 17:12:02 -0800 | [diff] [blame] | 143 | #define IPMI_WDOG_TIMER_NOT_INIT_RESP 0x80 |
| 144 | |
Arnd Bergmann | 609146f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 145 | static DEFINE_MUTEX(ipmi_watchdog_mutex); |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 146 | static bool nowayout = WATCHDOG_NOWAYOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 148 | static ipmi_user_t watchdog_user; |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 149 | static int watchdog_ifnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
| 151 | /* Default the timeout to 10 seconds. */ |
| 152 | static int timeout = 10; |
| 153 | |
| 154 | /* The pre-timeout is disabled by default. */ |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 155 | static int pretimeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Jean-Yves Faye | c7f42c6 | 2015-09-29 11:39:19 +0200 | [diff] [blame] | 157 | /* Default timeout to set on panic */ |
| 158 | static int panic_wdt_timeout = 255; |
| 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | /* Default action is to reset the board on a timeout. */ |
| 161 | static unsigned char action_val = WDOG_TIMEOUT_RESET; |
| 162 | |
| 163 | static char action[16] = "reset"; |
| 164 | |
| 165 | static unsigned char preaction_val = WDOG_PRETIMEOUT_NONE; |
| 166 | |
| 167 | static char preaction[16] = "pre_none"; |
| 168 | |
| 169 | static unsigned char preop_val = WDOG_PREOP_NONE; |
| 170 | |
| 171 | static char preop[16] = "preop_none"; |
| 172 | static DEFINE_SPINLOCK(ipmi_read_lock); |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 173 | static char data_to_read; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | static DECLARE_WAIT_QUEUE_HEAD(read_q); |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 175 | static struct fasync_struct *fasync_q; |
| 176 | static char pretimeout_since_last_heartbeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | static char expect_close; |
| 178 | |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 179 | static int ifnum_to_use = -1; |
| 180 | |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 181 | /* Parameters to ipmi_set_timeout */ |
| 182 | #define IPMI_SET_TIMEOUT_NO_HB 0 |
| 183 | #define IPMI_SET_TIMEOUT_HB_IF_NECESSARY 1 |
| 184 | #define IPMI_SET_TIMEOUT_FORCE_HB 2 |
| 185 | |
| 186 | static int ipmi_set_timeout(int do_heartbeat); |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 187 | static void ipmi_register_watchdog(int ipmi_intf); |
| 188 | static void ipmi_unregister_watchdog(int ipmi_intf); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 189 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 190 | /* |
| 191 | * If true, the driver will start running as soon as it is configured |
| 192 | * and ready. |
| 193 | */ |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 194 | static int start_now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 196 | static int set_param_timeout(const char *val, const struct kernel_param *kp) |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 197 | { |
| 198 | char *endp; |
| 199 | int l; |
| 200 | int rv = 0; |
| 201 | |
| 202 | if (!val) |
| 203 | return -EINVAL; |
| 204 | l = simple_strtoul(val, &endp, 0); |
| 205 | if (endp == val) |
| 206 | return -EINVAL; |
| 207 | |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 208 | *((int *)kp->arg) = l; |
| 209 | if (watchdog_user) |
| 210 | rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 211 | |
| 212 | return rv; |
| 213 | } |
| 214 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 215 | static const struct kernel_param_ops param_ops_timeout = { |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 216 | .set = set_param_timeout, |
| 217 | .get = param_get_int, |
| 218 | }; |
| 219 | #define param_check_timeout param_check_int |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 220 | |
| 221 | typedef int (*action_fn)(const char *intval, char *outval); |
| 222 | |
| 223 | static int action_op(const char *inval, char *outval); |
| 224 | static int preaction_op(const char *inval, char *outval); |
| 225 | static int preop_op(const char *inval, char *outval); |
| 226 | static void check_parms(void); |
| 227 | |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 228 | static int set_param_str(const char *val, const struct kernel_param *kp) |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 229 | { |
| 230 | action_fn fn = (action_fn) kp->arg; |
| 231 | int rv = 0; |
Sebastien Dugué | 43cdff9 | 2006-12-29 16:46:53 -0800 | [diff] [blame] | 232 | char valcp[16]; |
| 233 | char *s; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 234 | |
Sebastien Dugué | 43cdff9 | 2006-12-29 16:46:53 -0800 | [diff] [blame] | 235 | strncpy(valcp, val, 16); |
| 236 | valcp[15] = '\0'; |
Pekka Enberg | 66f969d | 2006-06-23 02:05:45 -0700 | [diff] [blame] | 237 | |
Sebastien Dugué | 43cdff9 | 2006-12-29 16:46:53 -0800 | [diff] [blame] | 238 | s = strstrip(valcp); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 239 | |
Pekka Enberg | 66f969d | 2006-06-23 02:05:45 -0700 | [diff] [blame] | 240 | rv = fn(s, NULL); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 241 | if (rv) |
Corey Minyard | f8fbcd3 | 2007-10-18 03:07:08 -0700 | [diff] [blame] | 242 | goto out; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 243 | |
| 244 | check_parms(); |
| 245 | if (watchdog_user) |
| 246 | rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY); |
| 247 | |
Corey Minyard | f8fbcd3 | 2007-10-18 03:07:08 -0700 | [diff] [blame] | 248 | out: |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 249 | return rv; |
| 250 | } |
| 251 | |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 252 | static int get_param_str(char *buffer, const struct kernel_param *kp) |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 253 | { |
| 254 | action_fn fn = (action_fn) kp->arg; |
| 255 | int rv; |
| 256 | |
| 257 | rv = fn(NULL, buffer); |
| 258 | if (rv) |
| 259 | return rv; |
| 260 | return strlen(buffer); |
| 261 | } |
| 262 | |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 263 | |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 264 | static int set_param_wdog_ifnum(const char *val, const struct kernel_param *kp) |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 265 | { |
| 266 | int rv = param_set_int(val, kp); |
| 267 | if (rv) |
| 268 | return rv; |
| 269 | if ((ifnum_to_use < 0) || (ifnum_to_use == watchdog_ifnum)) |
| 270 | return 0; |
| 271 | |
| 272 | ipmi_unregister_watchdog(watchdog_ifnum); |
| 273 | ipmi_register_watchdog(ifnum_to_use); |
| 274 | return 0; |
| 275 | } |
| 276 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 277 | static const struct kernel_param_ops param_ops_wdog_ifnum = { |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 278 | .set = set_param_wdog_ifnum, |
| 279 | .get = param_get_int, |
| 280 | }; |
| 281 | |
| 282 | #define param_check_wdog_ifnum param_check_int |
| 283 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 284 | static const struct kernel_param_ops param_ops_str = { |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 285 | .set = set_param_str, |
| 286 | .get = get_param_str, |
| 287 | }; |
| 288 | |
| 289 | module_param(ifnum_to_use, wdog_ifnum, 0644); |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 290 | MODULE_PARM_DESC(ifnum_to_use, "The interface number to use for the watchdog " |
| 291 | "timer. Setting to -1 defaults to the first registered " |
| 292 | "interface"); |
| 293 | |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 294 | module_param(timeout, timeout, 0644); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | MODULE_PARM_DESC(timeout, "Timeout value in seconds."); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 296 | |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 297 | module_param(pretimeout, timeout, 0644); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | MODULE_PARM_DESC(pretimeout, "Pretimeout value in seconds."); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 299 | |
Jean-Yves Faye | c7f42c6 | 2015-09-29 11:39:19 +0200 | [diff] [blame] | 300 | module_param(panic_wdt_timeout, timeout, 0644); |
| 301 | MODULE_PARM_DESC(timeout, "Timeout value on kernel panic in seconds."); |
| 302 | |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 303 | module_param_cb(action, ¶m_ops_str, action_op, 0644); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | MODULE_PARM_DESC(action, "Timeout action. One of: " |
| 305 | "reset, none, power_cycle, power_off."); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 306 | |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 307 | module_param_cb(preaction, ¶m_ops_str, preaction_op, 0644); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | MODULE_PARM_DESC(preaction, "Pretimeout action. One of: " |
| 309 | "pre_none, pre_smi, pre_nmi, pre_int."); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 310 | |
Rusty Russell | c8ba6c5 | 2010-08-11 23:04:37 -0600 | [diff] [blame] | 311 | module_param_cb(preop, ¶m_ops_str, preop_op, 0644); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | MODULE_PARM_DESC(preop, "Pretimeout driver operation. One of: " |
| 313 | "preop_none, preop_panic, preop_give_data."); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 314 | |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 315 | module_param(start_now, int, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | MODULE_PARM_DESC(start_now, "Set to 1 to start the watchdog as" |
| 317 | "soon as the driver is loaded."); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 318 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 319 | module_param(nowayout, bool, 0644); |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 320 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " |
| 321 | "(default=CONFIG_WATCHDOG_NOWAYOUT)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
| 323 | /* Default state of the timer. */ |
| 324 | static unsigned char ipmi_watchdog_state = WDOG_TIMEOUT_NONE; |
| 325 | |
| 326 | /* If shutting down via IPMI, we ignore the heartbeat. */ |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 327 | static int ipmi_ignore_heartbeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
| 329 | /* Is someone using the watchdog? Only one user is allowed. */ |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 330 | static unsigned long ipmi_wdog_open; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 332 | /* |
| 333 | * If set to 1, the heartbeat command will set the state to reset and |
| 334 | * start the timer. The timer doesn't normally run when the driver is |
| 335 | * first opened until the heartbeat is set the first time, this |
| 336 | * variable is used to accomplish this. |
| 337 | */ |
Randy Dunlap | 0c8204b | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 338 | static int ipmi_start_timer_on_heartbeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
| 340 | /* IPMI version of the BMC. */ |
| 341 | static unsigned char ipmi_version_major; |
| 342 | static unsigned char ipmi_version_minor; |
| 343 | |
Corey Minyard | b385676 | 2005-11-07 01:00:05 -0800 | [diff] [blame] | 344 | /* If a pretimeout occurs, this is used to allow only one panic to happen. */ |
| 345 | static atomic_t preop_panic_excl = ATOMIC_INIT(-1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 347 | #ifdef HAVE_DIE_NMI |
| 348 | static int testing_nmi; |
| 349 | static int nmi_handler_registered; |
| 350 | #endif |
| 351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | static int ipmi_heartbeat(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 354 | /* |
| 355 | * We use a mutex to make sure that only one thing can send a set |
| 356 | * timeout at one time, because we only have one copy of the data. |
| 357 | * The mutex is claimed when the set_timeout is sent and freed |
| 358 | * when both messages are free. |
| 359 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | static atomic_t set_timeout_tofree = ATOMIC_INIT(0); |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 361 | static DEFINE_MUTEX(set_timeout_lock); |
| 362 | static DECLARE_COMPLETION(set_timeout_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | static void set_timeout_free_smi(struct ipmi_smi_msg *msg) |
| 364 | { |
| 365 | if (atomic_dec_and_test(&set_timeout_tofree)) |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 366 | complete(&set_timeout_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | } |
| 368 | static void set_timeout_free_recv(struct ipmi_recv_msg *msg) |
| 369 | { |
| 370 | if (atomic_dec_and_test(&set_timeout_tofree)) |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 371 | complete(&set_timeout_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | } |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 373 | static struct ipmi_smi_msg set_timeout_smi_msg = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | .done = set_timeout_free_smi |
| 375 | }; |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 376 | static struct ipmi_recv_msg set_timeout_recv_msg = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | .done = set_timeout_free_recv |
| 378 | }; |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | static int i_ipmi_set_timeout(struct ipmi_smi_msg *smi_msg, |
| 381 | struct ipmi_recv_msg *recv_msg, |
| 382 | int *send_heartbeat_now) |
| 383 | { |
| 384 | struct kernel_ipmi_msg msg; |
| 385 | unsigned char data[6]; |
| 386 | int rv; |
| 387 | struct ipmi_system_interface_addr addr; |
| 388 | int hbnow = 0; |
| 389 | |
| 390 | |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 391 | /* These can be cleared as we are setting the timeout. */ |
| 392 | pretimeout_since_last_heartbeat = 0; |
| 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | data[0] = 0; |
| 395 | WDOG_SET_TIMER_USE(data[0], WDOG_TIMER_USE_SMS_OS); |
| 396 | |
| 397 | if ((ipmi_version_major > 1) |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 398 | || ((ipmi_version_major == 1) && (ipmi_version_minor >= 5))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | /* This is an IPMI 1.5-only feature. */ |
| 400 | data[0] |= WDOG_DONT_STOP_ON_SET; |
| 401 | } else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) { |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 402 | /* |
| 403 | * In ipmi 1.0, setting the timer stops the watchdog, we |
| 404 | * need to start it back up again. |
| 405 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | hbnow = 1; |
| 407 | } |
| 408 | |
| 409 | data[1] = 0; |
| 410 | WDOG_SET_TIMEOUT_ACT(data[1], ipmi_watchdog_state); |
Corey Minyard | 8f05ee9 | 2005-09-06 15:18:39 -0700 | [diff] [blame] | 411 | if ((pretimeout > 0) && (ipmi_watchdog_state != WDOG_TIMEOUT_NONE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | WDOG_SET_PRETIMEOUT_ACT(data[1], preaction_val); |
| 413 | data[2] = pretimeout; |
| 414 | } else { |
| 415 | WDOG_SET_PRETIMEOUT_ACT(data[1], WDOG_PRETIMEOUT_NONE); |
| 416 | data[2] = 0; /* No pretimeout. */ |
| 417 | } |
| 418 | data[3] = 0; |
| 419 | WDOG_SET_TIMEOUT(data[4], data[5], timeout); |
| 420 | |
| 421 | addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE; |
| 422 | addr.channel = IPMI_BMC_CHANNEL; |
| 423 | addr.lun = 0; |
| 424 | |
| 425 | msg.netfn = 0x06; |
| 426 | msg.cmd = IPMI_WDOG_SET_TIMER; |
| 427 | msg.data = data; |
| 428 | msg.data_len = sizeof(data); |
| 429 | rv = ipmi_request_supply_msgs(watchdog_user, |
| 430 | (struct ipmi_addr *) &addr, |
| 431 | 0, |
| 432 | &msg, |
| 433 | NULL, |
| 434 | smi_msg, |
| 435 | recv_msg, |
| 436 | 1); |
| 437 | if (rv) { |
| 438 | printk(KERN_WARNING PFX "set timeout error: %d\n", |
| 439 | rv); |
| 440 | } |
| 441 | |
| 442 | if (send_heartbeat_now) |
| 443 | *send_heartbeat_now = hbnow; |
| 444 | |
| 445 | return rv; |
| 446 | } |
| 447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | static int ipmi_set_timeout(int do_heartbeat) |
| 449 | { |
| 450 | int send_heartbeat_now; |
| 451 | int rv; |
| 452 | |
| 453 | |
| 454 | /* We can only send one of these at a time. */ |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 455 | mutex_lock(&set_timeout_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
| 457 | atomic_set(&set_timeout_tofree, 2); |
| 458 | |
| 459 | rv = i_ipmi_set_timeout(&set_timeout_smi_msg, |
| 460 | &set_timeout_recv_msg, |
| 461 | &send_heartbeat_now); |
| 462 | if (rv) { |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 463 | mutex_unlock(&set_timeout_lock); |
| 464 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
| 466 | |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 467 | wait_for_completion(&set_timeout_wait); |
| 468 | |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 469 | mutex_unlock(&set_timeout_lock); |
| 470 | |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 471 | if ((do_heartbeat == IPMI_SET_TIMEOUT_FORCE_HB) |
| 472 | || ((send_heartbeat_now) |
| 473 | && (do_heartbeat == IPMI_SET_TIMEOUT_HB_IF_NECESSARY))) |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 474 | rv = ipmi_heartbeat(); |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 475 | |
| 476 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | return rv; |
| 478 | } |
| 479 | |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 480 | static atomic_t panic_done_count = ATOMIC_INIT(0); |
| 481 | |
| 482 | static void panic_smi_free(struct ipmi_smi_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | { |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 484 | atomic_dec(&panic_done_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | } |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 486 | static void panic_recv_free(struct ipmi_recv_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | { |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 488 | atomic_dec(&panic_done_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | } |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 490 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 491 | static struct ipmi_smi_msg panic_halt_heartbeat_smi_msg = { |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 492 | .done = panic_smi_free |
| 493 | }; |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 494 | static struct ipmi_recv_msg panic_halt_heartbeat_recv_msg = { |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 495 | .done = panic_recv_free |
| 496 | }; |
| 497 | |
| 498 | static void panic_halt_ipmi_heartbeat(void) |
| 499 | { |
| 500 | struct kernel_ipmi_msg msg; |
| 501 | struct ipmi_system_interface_addr addr; |
| 502 | int rv; |
| 503 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 504 | /* |
| 505 | * Don't reset the timer if we have the timer turned off, that |
| 506 | * re-enables the watchdog. |
| 507 | */ |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 508 | if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE) |
| 509 | return; |
| 510 | |
| 511 | addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE; |
| 512 | addr.channel = IPMI_BMC_CHANNEL; |
| 513 | addr.lun = 0; |
| 514 | |
| 515 | msg.netfn = 0x06; |
| 516 | msg.cmd = IPMI_WDOG_RESET_TIMER; |
| 517 | msg.data = NULL; |
| 518 | msg.data_len = 0; |
Robert Lippert | 2c1175c | 2017-04-20 16:49:47 -0700 | [diff] [blame] | 519 | atomic_add(1, &panic_done_count); |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 520 | rv = ipmi_request_supply_msgs(watchdog_user, |
| 521 | (struct ipmi_addr *) &addr, |
| 522 | 0, |
| 523 | &msg, |
| 524 | NULL, |
| 525 | &panic_halt_heartbeat_smi_msg, |
| 526 | &panic_halt_heartbeat_recv_msg, |
| 527 | 1); |
Corey Minyard | 895dcfd | 2012-03-28 14:42:49 -0700 | [diff] [blame] | 528 | if (rv) |
Robert Lippert | 2c1175c | 2017-04-20 16:49:47 -0700 | [diff] [blame] | 529 | atomic_sub(1, &panic_done_count); |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 530 | } |
| 531 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 532 | static struct ipmi_smi_msg panic_halt_smi_msg = { |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 533 | .done = panic_smi_free |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | }; |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 535 | static struct ipmi_recv_msg panic_halt_recv_msg = { |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 536 | .done = panic_recv_free |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | }; |
| 538 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 539 | /* |
| 540 | * Special call, doesn't claim any locks. This is only to be called |
| 541 | * at panic or halt time, in run-to-completion mode, when the caller |
| 542 | * is the only CPU and the only thing that will be going is these IPMI |
| 543 | * calls. |
| 544 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | static void panic_halt_ipmi_set_timeout(void) |
| 546 | { |
| 547 | int send_heartbeat_now; |
| 548 | int rv; |
| 549 | |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 550 | /* Wait for the messages to be free. */ |
| 551 | while (atomic_read(&panic_done_count) != 0) |
| 552 | ipmi_poll_interface(watchdog_user); |
Robert Lippert | 2c1175c | 2017-04-20 16:49:47 -0700 | [diff] [blame] | 553 | atomic_add(1, &panic_done_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | rv = i_ipmi_set_timeout(&panic_halt_smi_msg, |
| 555 | &panic_halt_recv_msg, |
| 556 | &send_heartbeat_now); |
Corey Minyard | 895dcfd | 2012-03-28 14:42:49 -0700 | [diff] [blame] | 557 | if (rv) { |
Robert Lippert | 2c1175c | 2017-04-20 16:49:47 -0700 | [diff] [blame] | 558 | atomic_sub(1, &panic_done_count); |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 559 | printk(KERN_WARNING PFX |
| 560 | "Unable to extend the watchdog timeout."); |
Corey Minyard | 895dcfd | 2012-03-28 14:42:49 -0700 | [diff] [blame] | 561 | } else { |
| 562 | if (send_heartbeat_now) |
| 563 | panic_halt_ipmi_heartbeat(); |
| 564 | } |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 565 | while (atomic_read(&panic_done_count) != 0) |
| 566 | ipmi_poll_interface(watchdog_user); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 569 | /* |
| 570 | * We use a mutex to make sure that only one thing can send a |
| 571 | * heartbeat at one time, because we only have one copy of the data. |
| 572 | * The semaphore is claimed when the set_timeout is sent and freed |
| 573 | * when both messages are free. |
| 574 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | static atomic_t heartbeat_tofree = ATOMIC_INIT(0); |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 576 | static DEFINE_MUTEX(heartbeat_lock); |
| 577 | static DECLARE_COMPLETION(heartbeat_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | static void heartbeat_free_smi(struct ipmi_smi_msg *msg) |
| 579 | { |
| 580 | if (atomic_dec_and_test(&heartbeat_tofree)) |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 581 | complete(&heartbeat_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
| 583 | static void heartbeat_free_recv(struct ipmi_recv_msg *msg) |
| 584 | { |
| 585 | if (atomic_dec_and_test(&heartbeat_tofree)) |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 586 | complete(&heartbeat_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | } |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 588 | static struct ipmi_smi_msg heartbeat_smi_msg = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | .done = heartbeat_free_smi |
| 590 | }; |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 591 | static struct ipmi_recv_msg heartbeat_recv_msg = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | .done = heartbeat_free_recv |
| 593 | }; |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | static int ipmi_heartbeat(void) |
| 596 | { |
| 597 | struct kernel_ipmi_msg msg; |
| 598 | int rv; |
| 599 | struct ipmi_system_interface_addr addr; |
Corey Minyard | b75d91f | 2011-12-19 17:12:02 -0800 | [diff] [blame] | 600 | int timeout_retries = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 602 | if (ipmi_ignore_heartbeat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
| 605 | if (ipmi_start_timer_on_heartbeat) { |
Linus Torvalds | faa8b6c | 2007-05-14 15:24:24 -0700 | [diff] [blame] | 606 | ipmi_start_timer_on_heartbeat = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | ipmi_watchdog_state = action_val; |
| 608 | return ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB); |
| 609 | } else if (pretimeout_since_last_heartbeat) { |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 610 | /* |
| 611 | * A pretimeout occurred, make sure we set the timeout. |
| 612 | * We don't want to set the action, though, we want to |
| 613 | * leave that alone (thus it can't be combined with the |
| 614 | * above operation. |
| 615 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY); |
| 617 | } |
| 618 | |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 619 | mutex_lock(&heartbeat_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
Corey Minyard | b75d91f | 2011-12-19 17:12:02 -0800 | [diff] [blame] | 621 | restart: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | atomic_set(&heartbeat_tofree, 2); |
| 623 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 624 | /* |
| 625 | * Don't reset the timer if we have the timer turned off, that |
| 626 | * re-enables the watchdog. |
| 627 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE) { |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 629 | mutex_unlock(&heartbeat_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | return 0; |
| 631 | } |
| 632 | |
| 633 | addr.addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE; |
| 634 | addr.channel = IPMI_BMC_CHANNEL; |
| 635 | addr.lun = 0; |
| 636 | |
| 637 | msg.netfn = 0x06; |
| 638 | msg.cmd = IPMI_WDOG_RESET_TIMER; |
| 639 | msg.data = NULL; |
| 640 | msg.data_len = 0; |
| 641 | rv = ipmi_request_supply_msgs(watchdog_user, |
| 642 | (struct ipmi_addr *) &addr, |
| 643 | 0, |
| 644 | &msg, |
| 645 | NULL, |
| 646 | &heartbeat_smi_msg, |
| 647 | &heartbeat_recv_msg, |
| 648 | 1); |
| 649 | if (rv) { |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 650 | mutex_unlock(&heartbeat_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | printk(KERN_WARNING PFX "heartbeat failure: %d\n", |
| 652 | rv); |
| 653 | return rv; |
| 654 | } |
| 655 | |
| 656 | /* Wait for the heartbeat to be sent. */ |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 657 | wait_for_completion(&heartbeat_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | |
Corey Minyard | b75d91f | 2011-12-19 17:12:02 -0800 | [diff] [blame] | 659 | if (heartbeat_recv_msg.msg.data[0] == IPMI_WDOG_TIMER_NOT_INIT_RESP) { |
| 660 | timeout_retries++; |
| 661 | if (timeout_retries > 3) { |
| 662 | printk(KERN_ERR PFX ": Unable to restore the IPMI" |
| 663 | " watchdog's settings, giving up.\n"); |
| 664 | rv = -EIO; |
| 665 | goto out_unlock; |
| 666 | } |
| 667 | |
| 668 | /* |
| 669 | * The timer was not initialized, that means the BMC was |
| 670 | * probably reset and lost the watchdog information. Attempt |
| 671 | * to restore the timer's info. Note that we still hold |
| 672 | * the heartbeat lock, to keep a heartbeat from happening |
| 673 | * in this process, so must say no heartbeat to avoid a |
| 674 | * deadlock on this mutex. |
| 675 | */ |
| 676 | rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB); |
| 677 | if (rv) { |
| 678 | printk(KERN_ERR PFX ": Unable to send the command to" |
| 679 | " set the watchdog's settings, giving up.\n"); |
| 680 | goto out_unlock; |
| 681 | } |
| 682 | |
| 683 | /* We might need a new heartbeat, so do it now */ |
| 684 | goto restart; |
| 685 | } else if (heartbeat_recv_msg.msg.data[0] != 0) { |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 686 | /* |
| 687 | * Got an error in the heartbeat response. It was already |
| 688 | * reported in ipmi_wdog_msg_handler, but we should return |
| 689 | * an error here. |
| 690 | */ |
| 691 | rv = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | } |
| 693 | |
Corey Minyard | b75d91f | 2011-12-19 17:12:02 -0800 | [diff] [blame] | 694 | out_unlock: |
Corey Minyard | d6dfd13 | 2006-03-31 02:30:41 -0800 | [diff] [blame] | 695 | mutex_unlock(&heartbeat_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
| 697 | return rv; |
| 698 | } |
| 699 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 700 | static struct watchdog_info ident = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | .options = 0, /* WDIOF_SETTIMEOUT, */ |
| 702 | .firmware_version = 1, |
| 703 | .identity = "IPMI" |
| 704 | }; |
| 705 | |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 706 | static int ipmi_ioctl(struct file *file, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | unsigned int cmd, unsigned long arg) |
| 708 | { |
| 709 | void __user *argp = (void __user *)arg; |
| 710 | int i; |
| 711 | int val; |
| 712 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 713 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | case WDIOC_GETSUPPORT: |
| 715 | i = copy_to_user(argp, &ident, sizeof(ident)); |
| 716 | return i ? -EFAULT : 0; |
| 717 | |
| 718 | case WDIOC_SETTIMEOUT: |
| 719 | i = copy_from_user(&val, argp, sizeof(int)); |
| 720 | if (i) |
| 721 | return -EFAULT; |
| 722 | timeout = val; |
| 723 | return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY); |
| 724 | |
| 725 | case WDIOC_GETTIMEOUT: |
| 726 | i = copy_to_user(argp, &timeout, sizeof(timeout)); |
| 727 | if (i) |
| 728 | return -EFAULT; |
| 729 | return 0; |
| 730 | |
Corey Minyard | 783e6bc | 2007-11-20 12:14:46 -0800 | [diff] [blame] | 731 | case WDIOC_SETPRETIMEOUT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | i = copy_from_user(&val, argp, sizeof(int)); |
| 733 | if (i) |
| 734 | return -EFAULT; |
| 735 | pretimeout = val; |
| 736 | return ipmi_set_timeout(IPMI_SET_TIMEOUT_HB_IF_NECESSARY); |
| 737 | |
Corey Minyard | 783e6bc | 2007-11-20 12:14:46 -0800 | [diff] [blame] | 738 | case WDIOC_GETPRETIMEOUT: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | i = copy_to_user(argp, &pretimeout, sizeof(pretimeout)); |
| 740 | if (i) |
| 741 | return -EFAULT; |
| 742 | return 0; |
| 743 | |
| 744 | case WDIOC_KEEPALIVE: |
| 745 | return ipmi_heartbeat(); |
| 746 | |
| 747 | case WDIOC_SETOPTIONS: |
| 748 | i = copy_from_user(&val, argp, sizeof(int)); |
| 749 | if (i) |
| 750 | return -EFAULT; |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 751 | if (val & WDIOS_DISABLECARD) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | ipmi_watchdog_state = WDOG_TIMEOUT_NONE; |
| 753 | ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB); |
| 754 | ipmi_start_timer_on_heartbeat = 0; |
| 755 | } |
| 756 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 757 | if (val & WDIOS_ENABLECARD) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | ipmi_watchdog_state = action_val; |
| 759 | ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB); |
| 760 | } |
| 761 | return 0; |
| 762 | |
| 763 | case WDIOC_GETSTATUS: |
| 764 | val = 0; |
| 765 | i = copy_to_user(argp, &val, sizeof(val)); |
| 766 | if (i) |
| 767 | return -EFAULT; |
| 768 | return 0; |
| 769 | |
| 770 | default: |
| 771 | return -ENOIOCTLCMD; |
| 772 | } |
| 773 | } |
| 774 | |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 775 | static long ipmi_unlocked_ioctl(struct file *file, |
| 776 | unsigned int cmd, |
| 777 | unsigned long arg) |
| 778 | { |
| 779 | int ret; |
| 780 | |
Arnd Bergmann | 609146f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 781 | mutex_lock(&ipmi_watchdog_mutex); |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 782 | ret = ipmi_ioctl(file, cmd, arg); |
Arnd Bergmann | 609146f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 783 | mutex_unlock(&ipmi_watchdog_mutex); |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 784 | |
| 785 | return ret; |
| 786 | } |
| 787 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | static ssize_t ipmi_write(struct file *file, |
| 789 | const char __user *buf, |
| 790 | size_t len, |
| 791 | loff_t *ppos) |
| 792 | { |
| 793 | int rv; |
| 794 | |
| 795 | if (len) { |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 796 | if (!nowayout) { |
| 797 | size_t i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | |
| 799 | /* In case it was set long ago */ |
| 800 | expect_close = 0; |
| 801 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 802 | for (i = 0; i != len; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | char c; |
| 804 | |
| 805 | if (get_user(c, buf + i)) |
| 806 | return -EFAULT; |
| 807 | if (c == 'V') |
| 808 | expect_close = 42; |
| 809 | } |
| 810 | } |
| 811 | rv = ipmi_heartbeat(); |
| 812 | if (rv) |
| 813 | return rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | } |
Mark Rustad | 3976df9 | 2008-07-10 14:27:11 -0500 | [diff] [blame] | 815 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | static ssize_t ipmi_read(struct file *file, |
| 819 | char __user *buf, |
| 820 | size_t count, |
| 821 | loff_t *ppos) |
| 822 | { |
| 823 | int rv = 0; |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 824 | wait_queue_entry_t wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | |
| 826 | if (count <= 0) |
| 827 | return 0; |
| 828 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 829 | /* |
| 830 | * Reading returns if the pretimeout has gone off, and it only does |
| 831 | * it once per pretimeout. |
| 832 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | spin_lock(&ipmi_read_lock); |
| 834 | if (!data_to_read) { |
| 835 | if (file->f_flags & O_NONBLOCK) { |
| 836 | rv = -EAGAIN; |
| 837 | goto out; |
| 838 | } |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 839 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | init_waitqueue_entry(&wait, current); |
| 841 | add_wait_queue(&read_q, &wait); |
| 842 | while (!data_to_read) { |
| 843 | set_current_state(TASK_INTERRUPTIBLE); |
| 844 | spin_unlock(&ipmi_read_lock); |
| 845 | schedule(); |
| 846 | spin_lock(&ipmi_read_lock); |
| 847 | } |
| 848 | remove_wait_queue(&read_q, &wait); |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 849 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | if (signal_pending(current)) { |
| 851 | rv = -ERESTARTSYS; |
| 852 | goto out; |
| 853 | } |
| 854 | } |
| 855 | data_to_read = 0; |
| 856 | |
| 857 | out: |
| 858 | spin_unlock(&ipmi_read_lock); |
| 859 | |
| 860 | if (rv == 0) { |
| 861 | if (copy_to_user(buf, &data_to_read, 1)) |
| 862 | rv = -EFAULT; |
| 863 | else |
| 864 | rv = 1; |
| 865 | } |
| 866 | |
| 867 | return rv; |
| 868 | } |
| 869 | |
| 870 | static int ipmi_open(struct inode *ino, struct file *filep) |
| 871 | { |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 872 | switch (iminor(ino)) { |
| 873 | case WATCHDOG_MINOR: |
Corey Minyard | e8b3361 | 2005-09-06 15:18:45 -0700 | [diff] [blame] | 874 | if (test_and_set_bit(0, &ipmi_wdog_open)) |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 875 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | |
Arnd Bergmann | af96f01 | 2008-05-20 19:16:04 +0200 | [diff] [blame] | 877 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 878 | /* |
| 879 | * Don't start the timer now, let it start on the |
| 880 | * first heartbeat. |
| 881 | */ |
Corey Minyard | e8b3361 | 2005-09-06 15:18:45 -0700 | [diff] [blame] | 882 | ipmi_start_timer_on_heartbeat = 1; |
| 883 | return nonseekable_open(ino, filep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | |
Corey Minyard | e8b3361 | 2005-09-06 15:18:45 -0700 | [diff] [blame] | 885 | default: |
| 886 | return (-ENODEV); |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 887 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | } |
| 889 | |
| 890 | static unsigned int ipmi_poll(struct file *file, poll_table *wait) |
| 891 | { |
| 892 | unsigned int mask = 0; |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | poll_wait(file, &read_q, wait); |
| 895 | |
| 896 | spin_lock(&ipmi_read_lock); |
| 897 | if (data_to_read) |
| 898 | mask |= (POLLIN | POLLRDNORM); |
| 899 | spin_unlock(&ipmi_read_lock); |
| 900 | |
| 901 | return mask; |
| 902 | } |
| 903 | |
| 904 | static int ipmi_fasync(int fd, struct file *file, int on) |
| 905 | { |
| 906 | int result; |
| 907 | |
| 908 | result = fasync_helper(fd, file, on, &fasync_q); |
| 909 | |
| 910 | return (result); |
| 911 | } |
| 912 | |
| 913 | static int ipmi_close(struct inode *ino, struct file *filep) |
| 914 | { |
Corey Minyard | 8a3628d | 2006-03-31 02:30:40 -0800 | [diff] [blame] | 915 | if (iminor(ino) == WATCHDOG_MINOR) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | if (expect_close == 42) { |
| 917 | ipmi_watchdog_state = WDOG_TIMEOUT_NONE; |
| 918 | ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | } else { |
Corey Minyard | 8a3628d | 2006-03-31 02:30:40 -0800 | [diff] [blame] | 920 | printk(KERN_CRIT PFX |
| 921 | "Unexpected close, not stopping watchdog!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | ipmi_heartbeat(); |
| 923 | } |
Corey Minyard | ec26d79 | 2005-05-01 08:59:11 -0700 | [diff] [blame] | 924 | clear_bit(0, &ipmi_wdog_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | } |
| 926 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | expect_close = 0; |
| 928 | |
| 929 | return 0; |
| 930 | } |
| 931 | |
Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 932 | static const struct file_operations ipmi_wdog_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | .owner = THIS_MODULE, |
| 934 | .read = ipmi_read, |
| 935 | .poll = ipmi_poll, |
| 936 | .write = ipmi_write, |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 937 | .unlocked_ioctl = ipmi_unlocked_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | .open = ipmi_open, |
| 939 | .release = ipmi_close, |
| 940 | .fasync = ipmi_fasync, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 941 | .llseek = no_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | }; |
| 943 | |
| 944 | static struct miscdevice ipmi_wdog_miscdev = { |
| 945 | .minor = WATCHDOG_MINOR, |
| 946 | .name = "watchdog", |
| 947 | .fops = &ipmi_wdog_fops |
| 948 | }; |
| 949 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | static void ipmi_wdog_msg_handler(struct ipmi_recv_msg *msg, |
| 951 | void *handler_data) |
| 952 | { |
Corey Minyard | b75d91f | 2011-12-19 17:12:02 -0800 | [diff] [blame] | 953 | if (msg->msg.cmd == IPMI_WDOG_RESET_TIMER && |
| 954 | msg->msg.data[0] == IPMI_WDOG_TIMER_NOT_INIT_RESP) |
| 955 | printk(KERN_INFO PFX "response: The IPMI controller appears" |
| 956 | " to have been reset, will attempt to reinitialize" |
| 957 | " the watchdog timer\n"); |
| 958 | else if (msg->msg.data[0] != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | printk(KERN_ERR PFX "response: Error %x on cmd %x\n", |
| 960 | msg->msg.data[0], |
| 961 | msg->msg.cmd); |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 962 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | ipmi_free_recv_msg(msg); |
| 964 | } |
| 965 | |
| 966 | static void ipmi_wdog_pretimeout_handler(void *handler_data) |
| 967 | { |
| 968 | if (preaction_val != WDOG_PRETIMEOUT_NONE) { |
Corey Minyard | b385676 | 2005-11-07 01:00:05 -0800 | [diff] [blame] | 969 | if (preop_val == WDOG_PREOP_PANIC) { |
| 970 | if (atomic_inc_and_test(&preop_panic_excl)) |
| 971 | panic("Watchdog pre-timeout"); |
| 972 | } else if (preop_val == WDOG_PREOP_GIVE_DATA) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | spin_lock(&ipmi_read_lock); |
| 974 | data_to_read = 1; |
| 975 | wake_up_interruptible(&read_q); |
| 976 | kill_fasync(&fasync_q, SIGIO, POLL_IN); |
| 977 | |
| 978 | spin_unlock(&ipmi_read_lock); |
| 979 | } |
| 980 | } |
| 981 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 982 | /* |
| 983 | * On some machines, the heartbeat will give an error and not |
| 984 | * work unless we re-enable the timer. So do so. |
| 985 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | pretimeout_since_last_heartbeat = 1; |
| 987 | } |
| 988 | |
Corey Minyard | 210af2a | 2017-01-05 10:52:10 -0600 | [diff] [blame] | 989 | static const struct ipmi_user_hndl ipmi_hndlrs = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | .ipmi_recv_hndl = ipmi_wdog_msg_handler, |
| 991 | .ipmi_watchdog_pretimeout = ipmi_wdog_pretimeout_handler |
| 992 | }; |
| 993 | |
| 994 | static void ipmi_register_watchdog(int ipmi_intf) |
| 995 | { |
| 996 | int rv = -EBUSY; |
| 997 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | if (watchdog_user) |
| 999 | goto out; |
| 1000 | |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1001 | if ((ifnum_to_use >= 0) && (ifnum_to_use != ipmi_intf)) |
| 1002 | goto out; |
| 1003 | |
| 1004 | watchdog_ifnum = ipmi_intf; |
| 1005 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | rv = ipmi_create_user(ipmi_intf, &ipmi_hndlrs, NULL, &watchdog_user); |
| 1007 | if (rv < 0) { |
| 1008 | printk(KERN_CRIT PFX "Unable to register with ipmi\n"); |
| 1009 | goto out; |
| 1010 | } |
| 1011 | |
Corey Minyard | 511d57d | 2017-08-30 08:04:24 -0500 | [diff] [blame] | 1012 | rv = ipmi_get_version(watchdog_user, |
| 1013 | &ipmi_version_major, |
| 1014 | &ipmi_version_minor); |
| 1015 | if (rv) { |
| 1016 | pr_warn(PFX "Unable to get IPMI version, assuming 1.0\n"); |
| 1017 | ipmi_version_major = 1; |
| 1018 | ipmi_version_minor = 0; |
| 1019 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | |
| 1021 | rv = misc_register(&ipmi_wdog_miscdev); |
| 1022 | if (rv < 0) { |
| 1023 | ipmi_destroy_user(watchdog_user); |
| 1024 | watchdog_user = NULL; |
| 1025 | printk(KERN_CRIT PFX "Unable to register misc device\n"); |
| 1026 | } |
| 1027 | |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1028 | #ifdef HAVE_DIE_NMI |
| 1029 | if (nmi_handler_registered) { |
| 1030 | int old_pretimeout = pretimeout; |
| 1031 | int old_timeout = timeout; |
| 1032 | int old_preop_val = preop_val; |
| 1033 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 1034 | /* |
| 1035 | * Set the pretimeout to go off in a second and give |
| 1036 | * ourselves plenty of time to stop the timer. |
| 1037 | */ |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1038 | ipmi_watchdog_state = WDOG_TIMEOUT_RESET; |
| 1039 | preop_val = WDOG_PREOP_NONE; /* Make sure nothing happens */ |
| 1040 | pretimeout = 99; |
| 1041 | timeout = 100; |
| 1042 | |
| 1043 | testing_nmi = 1; |
| 1044 | |
| 1045 | rv = ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB); |
| 1046 | if (rv) { |
| 1047 | printk(KERN_WARNING PFX "Error starting timer to" |
| 1048 | " test NMI: 0x%x. The NMI pretimeout will" |
| 1049 | " likely not work\n", rv); |
| 1050 | rv = 0; |
| 1051 | goto out_restore; |
| 1052 | } |
| 1053 | |
| 1054 | msleep(1500); |
| 1055 | |
| 1056 | if (testing_nmi != 2) { |
| 1057 | printk(KERN_WARNING PFX "IPMI NMI didn't seem to" |
| 1058 | " occur. The NMI pretimeout will" |
| 1059 | " likely not work\n"); |
| 1060 | } |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 1061 | out_restore: |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1062 | testing_nmi = 0; |
| 1063 | preop_val = old_preop_val; |
| 1064 | pretimeout = old_pretimeout; |
| 1065 | timeout = old_timeout; |
| 1066 | } |
| 1067 | #endif |
| 1068 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | if ((start_now) && (rv == 0)) { |
| 1071 | /* Run from startup, so start the timer now. */ |
| 1072 | start_now = 0; /* Disable this function after first startup. */ |
| 1073 | ipmi_watchdog_state = action_val; |
| 1074 | ipmi_set_timeout(IPMI_SET_TIMEOUT_FORCE_HB); |
| 1075 | printk(KERN_INFO PFX "Starting now!\n"); |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1076 | } else { |
| 1077 | /* Stop the timer now. */ |
| 1078 | ipmi_watchdog_state = WDOG_TIMEOUT_NONE; |
| 1079 | ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | } |
| 1081 | } |
| 1082 | |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1083 | static void ipmi_unregister_watchdog(int ipmi_intf) |
| 1084 | { |
| 1085 | int rv; |
| 1086 | |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1087 | if (!watchdog_user) |
| 1088 | goto out; |
| 1089 | |
| 1090 | if (watchdog_ifnum != ipmi_intf) |
| 1091 | goto out; |
| 1092 | |
| 1093 | /* Make sure no one can call us any more. */ |
| 1094 | misc_deregister(&ipmi_wdog_miscdev); |
| 1095 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 1096 | /* |
| 1097 | * Wait to make sure the message makes it out. The lower layer has |
| 1098 | * pointers to our buffers, we want to make sure they are done before |
| 1099 | * we release our memory. |
| 1100 | */ |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1101 | while (atomic_read(&set_timeout_tofree)) |
| 1102 | schedule_timeout_uninterruptible(1); |
| 1103 | |
| 1104 | /* Disconnect from IPMI. */ |
| 1105 | rv = ipmi_destroy_user(watchdog_user); |
| 1106 | if (rv) { |
| 1107 | printk(KERN_WARNING PFX "error unlinking from IPMI: %d\n", |
| 1108 | rv); |
| 1109 | } |
| 1110 | watchdog_user = NULL; |
| 1111 | |
| 1112 | out: |
Corey Minyard | f8fbcd3 | 2007-10-18 03:07:08 -0700 | [diff] [blame] | 1113 | return; |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1114 | } |
| 1115 | |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1116 | #ifdef HAVE_DIE_NMI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | static int |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1118 | ipmi_nmi(unsigned int val, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | { |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1120 | /* |
| 1121 | * If we get here, it's an NMI that's not a memory or I/O |
| 1122 | * error. We can't truly tell if it's from IPMI or not |
| 1123 | * without sending a message, and sending a message is almost |
| 1124 | * impossible because of locking. |
| 1125 | */ |
| 1126 | |
| 1127 | if (testing_nmi) { |
| 1128 | testing_nmi = 2; |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1129 | return NMI_HANDLED; |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1130 | } |
| 1131 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 1132 | /* If we are not expecting a timeout, ignore it. */ |
Corey Minyard | 8f05ee9 | 2005-09-06 15:18:39 -0700 | [diff] [blame] | 1133 | if (ipmi_watchdog_state == WDOG_TIMEOUT_NONE) |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1134 | return NMI_DONE; |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1135 | |
| 1136 | if (preaction_val != WDOG_PRETIMEOUT_NMI) |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1137 | return NMI_DONE; |
Corey Minyard | 8f05ee9 | 2005-09-06 15:18:39 -0700 | [diff] [blame] | 1138 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 1139 | /* |
| 1140 | * If no one else handled the NMI, we assume it was the IPMI |
| 1141 | * watchdog. |
| 1142 | */ |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1143 | if (preop_val == WDOG_PREOP_PANIC) { |
Corey Minyard | 8f05ee9 | 2005-09-06 15:18:39 -0700 | [diff] [blame] | 1144 | /* On some machines, the heartbeat will give |
| 1145 | an error and not work unless we re-enable |
| 1146 | the timer. So do so. */ |
| 1147 | pretimeout_since_last_heartbeat = 1; |
Corey Minyard | b385676 | 2005-11-07 01:00:05 -0800 | [diff] [blame] | 1148 | if (atomic_inc_and_test(&preop_panic_excl)) |
Hidehiro Kawai | 73cbf4a | 2016-03-22 14:27:21 -0700 | [diff] [blame] | 1149 | nmi_panic(regs, PFX "pre-timeout"); |
Corey Minyard | 8f05ee9 | 2005-09-06 15:18:39 -0700 | [diff] [blame] | 1150 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1152 | return NMI_HANDLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | #endif |
| 1155 | |
| 1156 | static int wdog_reboot_handler(struct notifier_block *this, |
| 1157 | unsigned long code, |
| 1158 | void *unused) |
| 1159 | { |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 1160 | static int reboot_event_handled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | |
| 1162 | if ((watchdog_user) && (!reboot_event_handled)) { |
| 1163 | /* Make sure we only do this once. */ |
| 1164 | reboot_event_handled = 1; |
| 1165 | |
Corey Minyard | fcfa472 | 2007-10-18 03:07:09 -0700 | [diff] [blame] | 1166 | if (code == SYS_POWER_OFF || code == SYS_HALT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | /* Disable the WDT if we are shutting down. */ |
| 1168 | ipmi_watchdog_state = WDOG_TIMEOUT_NONE; |
Corey Minyard | 423a5bb | 2012-03-28 14:42:50 -0700 | [diff] [blame] | 1169 | ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB); |
Corey Minyard | 96febe9 | 2006-06-28 04:26:55 -0700 | [diff] [blame] | 1170 | } else if (ipmi_watchdog_state != WDOG_TIMEOUT_NONE) { |
Valentin Vidic | 860f01e | 2017-05-05 21:07:33 +0200 | [diff] [blame] | 1171 | /* Set a long timer to let the reboot happen or |
| 1172 | reset if it hangs, but only if the watchdog |
Corey Minyard | 96febe9 | 2006-06-28 04:26:55 -0700 | [diff] [blame] | 1173 | timer was already running. */ |
Valentin Vidic | 860f01e | 2017-05-05 21:07:33 +0200 | [diff] [blame] | 1174 | if (timeout < 120) |
| 1175 | timeout = 120; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | pretimeout = 0; |
| 1177 | ipmi_watchdog_state = WDOG_TIMEOUT_RESET; |
Corey Minyard | 423a5bb | 2012-03-28 14:42:50 -0700 | [diff] [blame] | 1178 | ipmi_set_timeout(IPMI_SET_TIMEOUT_NO_HB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | } |
| 1180 | } |
| 1181 | return NOTIFY_OK; |
| 1182 | } |
| 1183 | |
| 1184 | static struct notifier_block wdog_reboot_notifier = { |
| 1185 | .notifier_call = wdog_reboot_handler, |
| 1186 | .next = NULL, |
| 1187 | .priority = 0 |
| 1188 | }; |
| 1189 | |
| 1190 | static int wdog_panic_handler(struct notifier_block *this, |
| 1191 | unsigned long event, |
| 1192 | void *unused) |
| 1193 | { |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 1194 | static int panic_event_handled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | |
Corey Minyard | 96febe9 | 2006-06-28 04:26:55 -0700 | [diff] [blame] | 1196 | /* On a panic, if we have a panic timeout, make sure to extend |
| 1197 | the watchdog timer to a reasonable value to complete the |
| 1198 | panic, if the watchdog timer is running. Plus the |
| 1199 | pretimeout is meaningless at panic time. */ |
| 1200 | if (watchdog_user && !panic_event_handled && |
| 1201 | ipmi_watchdog_state != WDOG_TIMEOUT_NONE) { |
| 1202 | /* Make sure we do this only once. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | panic_event_handled = 1; |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 1204 | |
Jean-Yves Faye | c7f42c6 | 2015-09-29 11:39:19 +0200 | [diff] [blame] | 1205 | timeout = panic_wdt_timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | pretimeout = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | panic_halt_ipmi_set_timeout(); |
| 1208 | } |
| 1209 | |
| 1210 | return NOTIFY_OK; |
| 1211 | } |
| 1212 | |
| 1213 | static struct notifier_block wdog_panic_notifier = { |
| 1214 | .notifier_call = wdog_panic_handler, |
| 1215 | .next = NULL, |
| 1216 | .priority = 150 /* priority: INT_MAX >= x >= 0 */ |
| 1217 | }; |
| 1218 | |
| 1219 | |
Corey Minyard | 50c812b | 2006-03-26 01:37:21 -0800 | [diff] [blame] | 1220 | static void ipmi_new_smi(int if_num, struct device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | { |
| 1222 | ipmi_register_watchdog(if_num); |
| 1223 | } |
| 1224 | |
| 1225 | static void ipmi_smi_gone(int if_num) |
| 1226 | { |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1227 | ipmi_unregister_watchdog(if_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | } |
| 1229 | |
Corey Minyard | 36c7dc4 | 2008-04-29 01:01:12 -0700 | [diff] [blame] | 1230 | static struct ipmi_smi_watcher smi_watcher = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | .owner = THIS_MODULE, |
| 1232 | .new_smi = ipmi_new_smi, |
| 1233 | .smi_gone = ipmi_smi_gone |
| 1234 | }; |
| 1235 | |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1236 | static int action_op(const char *inval, char *outval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | { |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1238 | if (outval) |
| 1239 | strcpy(outval, action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1241 | if (!inval) |
| 1242 | return 0; |
| 1243 | |
| 1244 | if (strcmp(inval, "reset") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | action_val = WDOG_TIMEOUT_RESET; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1246 | else if (strcmp(inval, "none") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | action_val = WDOG_TIMEOUT_NONE; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1248 | else if (strcmp(inval, "power_cycle") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | action_val = WDOG_TIMEOUT_POWER_CYCLE; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1250 | else if (strcmp(inval, "power_off") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | action_val = WDOG_TIMEOUT_POWER_DOWN; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1252 | else |
| 1253 | return -EINVAL; |
| 1254 | strcpy(action, inval); |
| 1255 | return 0; |
| 1256 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1258 | static int preaction_op(const char *inval, char *outval) |
| 1259 | { |
| 1260 | if (outval) |
| 1261 | strcpy(outval, preaction); |
| 1262 | |
| 1263 | if (!inval) |
| 1264 | return 0; |
| 1265 | |
| 1266 | if (strcmp(inval, "pre_none") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | preaction_val = WDOG_PRETIMEOUT_NONE; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1268 | else if (strcmp(inval, "pre_smi") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | preaction_val = WDOG_PRETIMEOUT_SMI; |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1270 | #ifdef HAVE_DIE_NMI |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1271 | else if (strcmp(inval, "pre_nmi") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | preaction_val = WDOG_PRETIMEOUT_NMI; |
| 1273 | #endif |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1274 | else if (strcmp(inval, "pre_int") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | preaction_val = WDOG_PRETIMEOUT_MSG_INT; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1276 | else |
| 1277 | return -EINVAL; |
| 1278 | strcpy(preaction, inval); |
| 1279 | return 0; |
| 1280 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1282 | static int preop_op(const char *inval, char *outval) |
| 1283 | { |
| 1284 | if (outval) |
| 1285 | strcpy(outval, preop); |
| 1286 | |
| 1287 | if (!inval) |
| 1288 | return 0; |
| 1289 | |
| 1290 | if (strcmp(inval, "preop_none") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | preop_val = WDOG_PREOP_NONE; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1292 | else if (strcmp(inval, "preop_panic") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | preop_val = WDOG_PREOP_PANIC; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1294 | else if (strcmp(inval, "preop_give_data") == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | preop_val = WDOG_PREOP_GIVE_DATA; |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1296 | else |
| 1297 | return -EINVAL; |
| 1298 | strcpy(preop, inval); |
| 1299 | return 0; |
| 1300 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1302 | static void check_parms(void) |
| 1303 | { |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1304 | #ifdef HAVE_DIE_NMI |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1305 | int do_nmi = 0; |
| 1306 | int rv; |
| 1307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | if (preaction_val == WDOG_PRETIMEOUT_NMI) { |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1309 | do_nmi = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | if (preop_val == WDOG_PREOP_GIVE_DATA) { |
| 1311 | printk(KERN_WARNING PFX "Pretimeout op is to give data" |
| 1312 | " but NMI pretimeout is enabled, setting" |
| 1313 | " pretimeout op to none\n"); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1314 | preop_op("preop_none", NULL); |
| 1315 | do_nmi = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | } |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1318 | if (do_nmi && !nmi_handler_registered) { |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1319 | rv = register_nmi_handler(NMI_UNKNOWN, ipmi_nmi, 0, |
| 1320 | "ipmi"); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1321 | if (rv) { |
| 1322 | printk(KERN_WARNING PFX |
| 1323 | "Can't register nmi handler\n"); |
| 1324 | return; |
| 1325 | } else |
| 1326 | nmi_handler_registered = 1; |
| 1327 | } else if (!do_nmi && nmi_handler_registered) { |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1328 | unregister_nmi_handler(NMI_UNKNOWN, "ipmi"); |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1329 | nmi_handler_registered = 0; |
| 1330 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | #endif |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1332 | } |
| 1333 | |
| 1334 | static int __init ipmi_wdog_init(void) |
| 1335 | { |
| 1336 | int rv; |
| 1337 | |
| 1338 | if (action_op(action, NULL)) { |
| 1339 | action_op("reset", NULL); |
| 1340 | printk(KERN_INFO PFX "Unknown action '%s', defaulting to" |
| 1341 | " reset\n", action); |
| 1342 | } |
| 1343 | |
| 1344 | if (preaction_op(preaction, NULL)) { |
| 1345 | preaction_op("pre_none", NULL); |
| 1346 | printk(KERN_INFO PFX "Unknown preaction '%s', defaulting to" |
| 1347 | " none\n", preaction); |
| 1348 | } |
| 1349 | |
| 1350 | if (preop_op(preop, NULL)) { |
| 1351 | preop_op("preop_none", NULL); |
| 1352 | printk(KERN_INFO PFX "Unknown preop '%s', defaulting to" |
| 1353 | " none\n", preop); |
| 1354 | } |
| 1355 | |
| 1356 | check_parms(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1358 | register_reboot_notifier(&wdog_reboot_notifier); |
| 1359 | atomic_notifier_chain_register(&panic_notifier_list, |
| 1360 | &wdog_panic_notifier); |
| 1361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | rv = ipmi_smi_watcher_register(&smi_watcher); |
| 1363 | if (rv) { |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1364 | #ifdef HAVE_DIE_NMI |
| 1365 | if (nmi_handler_registered) |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1366 | unregister_nmi_handler(NMI_UNKNOWN, "ipmi"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | #endif |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1368 | atomic_notifier_chain_unregister(&panic_notifier_list, |
| 1369 | &wdog_panic_notifier); |
| 1370 | unregister_reboot_notifier(&wdog_reboot_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | printk(KERN_WARNING PFX "can't register smi watcher\n"); |
| 1372 | return rv; |
| 1373 | } |
| 1374 | |
Corey Minyard | 1fdd75b | 2005-09-06 15:18:42 -0700 | [diff] [blame] | 1375 | printk(KERN_INFO PFX "driver initialized\n"); |
| 1376 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | return 0; |
| 1378 | } |
| 1379 | |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1380 | static void __exit ipmi_wdog_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | { |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1382 | ipmi_smi_watcher_unregister(&smi_watcher); |
| 1383 | ipmi_unregister_watchdog(watchdog_ifnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | |
Corey Minyard | 612b5a8 | 2007-10-18 03:07:10 -0700 | [diff] [blame] | 1385 | #ifdef HAVE_DIE_NMI |
Corey Minyard | cc4673e | 2005-11-07 00:59:57 -0800 | [diff] [blame] | 1386 | if (nmi_handler_registered) |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1387 | unregister_nmi_handler(NMI_UNKNOWN, "ipmi"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | #endif |
| 1389 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1390 | atomic_notifier_chain_unregister(&panic_notifier_list, |
Corey Minyard | b2c0394 | 2006-12-06 20:41:00 -0800 | [diff] [blame] | 1391 | &wdog_panic_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | unregister_reboot_notifier(&wdog_reboot_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | } |
| 1394 | module_exit(ipmi_wdog_exit); |
| 1395 | module_init(ipmi_wdog_init); |
| 1396 | MODULE_LICENSE("GPL"); |
Corey Minyard | 1fdd75b | 2005-09-06 15:18:42 -0700 | [diff] [blame] | 1397 | MODULE_AUTHOR("Corey Minyard <minyard@mvista.com>"); |
| 1398 | MODULE_DESCRIPTION("watchdog timer based upon the IPMI interface."); |